/* =============================================
   WANDERLUST AUSTRALIA – STYLESHEET
   Design: Editorial Luxury with warm earth tones
   ============================================= */

/* ── CSS VARIABLES ── */
:root {
  --gold:       #C9A84C;
  --gold-light: #E2C880;
  --dark:       #1A1612;
  --mid:        #3D3530;
  --warm-grey:  #7A706A;
  --sand:       #F5EFE6;
  --cream:      #FDFAF5;
  --white:      #FFFFFF;
  --text:       #2E2926;
  --text-light: #6B635D;
  --border:     rgba(201,168,76,0.2);
  --radius:     8px;
  --shadow:     0 4px 24px rgba(26,22,18,0.10);
  --shadow-lg:  0 12px 48px rgba(26,22,18,0.16);
  --transition: 0.3s ease;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'DM Sans', 'Helvetica Neue', sans-serif;
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }
ul { list-style: none; }
address { font-style: normal; }

/* ── LAYOUT ── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}
section { padding: 96px 0; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { font-family: var(--font-serif); line-height: 1.2; font-weight: 400; }
h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); color: var(--white); }
h2 { font-size: clamp(2rem, 4vw, 3rem); color: var(--dark); }
h3 { font-size: 1.35rem; }
p { margin-bottom: 1rem; }
em { font-style: italic; color: var(--gold); }
.section-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.center { text-align: center; }
.section-intro {
  max-width: 600px;
  margin: 0 auto 56px;
  color: var(--text-light);
  font-size: 1.05rem;
}

/* ── BUTTONS ── */
.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 14px 32px;
  border-radius: var(--radius);
  border: 2px solid var(--gold);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); color: var(--dark); transform: translateY(-1px); }
.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 14px 32px;
  border-radius: var(--radius);
  border: 2px solid rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all var(--transition);
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: var(--white); color: var(--white); }
.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 13px 32px;
  border-radius: var(--radius);
  border: 2px solid var(--gold);
  cursor: pointer;
  transition: all var(--transition);
}
.btn-outline:hover { background: var(--gold); color: var(--dark); }
.btn-outline-sm {
  display: inline-block;
  background: transparent;
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  cursor: pointer;
  transition: all var(--transition);
}
.btn-outline-sm:hover { border-color: var(--warm-grey); }
.full-width { width: 100%; justify-content: center; text-align: center; }

/* ── COOKIE POPUP ── */
.cookie-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(26,22,18,0.4);
  z-index: 1000;
}
.cookie-popup {
  display: none;
  position: fixed;
  bottom: 24px; left: 24px;
  max-width: 480px;
  background: var(--white);
  border-radius: 12px;
  padding: 28px 32px;
  z-index: 1001;
  box-shadow: var(--shadow-lg);
  border-top: 3px solid var(--gold);
}
.cookie-popup.active, .cookie-overlay.active { display: block; }
.cookie-popup p { font-size: 0.9rem; color: var(--text); margin-bottom: 20px; line-height: 1.6; }
.cookie-btns { display: flex; gap: 12px; }

/* ── HEADER ── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 500;
  padding: 18px 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  background: var(--dark);
  padding: 12px 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  text-decoration: none;
}
.logo-icon { font-size: 1.4rem; }
.logo-text {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1.1;
  display: flex;
  flex-direction: column;
}
.logo-text em { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); font-style: normal; }
.logo-light .logo-text { color: var(--white); }
.main-nav ul { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(255,255,255,0.88);
  padding: 8px 14px;
  border-radius: 4px;
  transition: color var(--transition), background var(--transition);
}
.main-nav a:hover { color: var(--white); }
.main-nav .nav-cta {
  background: var(--gold);
  color: var(--dark);
  font-weight: 500;
  padding: 9px 18px;
  border-radius: var(--radius);
  margin-left: 8px;
}
.main-nav .nav-cta:hover { background: var(--gold-light); color: var(--dark); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0;
}
.hero-bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26,22,18,0.78) 0%,
    rgba(26,22,18,0.45) 60%,
    rgba(26,22,18,0.25) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding-top: 80px;
}
.hero-sub {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.hero h1 { margin-bottom: 24px; }
.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  max-width: 520px;
  margin-bottom: 40px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 64px; }
.hero-stats { display: flex; gap: 40px; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; }
.stat strong { font-family: var(--font-serif); font-size: 2rem; color: var(--white); }
.stat span { font-size: 0.78rem; letter-spacing: 0.08em; color: rgba(255,255,255,0.65); text-transform: uppercase; }
.scroll-hint {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: rgba(255,255,255,0.6);
  font-size: 1.5rem;
  animation: bounce 2s infinite;
  text-decoration: none;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ── ABOUT ── */
.about { background: var(--sand); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-images { position: relative; }
.about-img-main {
  width: 100%;
  border-radius: 12px;
  aspect-ratio: 4/5;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}
.about-img-accent {
  position: absolute;
  bottom: -40px; right: -40px;
  width: 55%;
  border-radius: 8px;
  border: 6px solid var(--sand);
  box-shadow: var(--shadow);
  aspect-ratio: 3/2;
  object-fit: cover;
}
.about-badge {
  position: absolute;
  top: 24px; right: -20px;
  background: var(--gold);
  color: var(--dark);
  border-radius: 50%;
  width: 100px; height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow);
}
.about-badge strong { font-family: var(--font-serif); font-size: 2.2rem; font-weight: 600; line-height: 1; }
.about-badge span { font-size: 0.6rem; font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; }
.about-text h2 { margin-bottom: 24px; }
.about-text p { color: var(--text-light); }
.about-hours {
  background: var(--white);
  border-radius: 12px;
  padding: 28px;
  margin: 32px 0;
  border: 1px solid var(--border);
}
.about-hours h3 { font-family: var(--font-sans); font-size: 1rem; font-weight: 500; margin-bottom: 16px; color: var(--dark); }
.about-hours ul { display: flex; flex-direction: column; gap: 10px; }
.about-hours li { display: flex; justify-content: space-between; font-size: 0.9rem; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.about-hours li:last-child { border-bottom: none; }
.about-hours li span { color: var(--text-light); }
.about-hours li strong { color: var(--dark); }
.hours-note { font-size: 0.8rem; color: var(--warm-grey); margin-top: 12px; margin-bottom: 0; }

/* ── SERVICES ── */
.services { background: var(--cream); }
.services h2 { margin-bottom: 16px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: 12px;
  padding: 36px 28px;
  border: 1px solid var(--border);
  transition: box-shadow var(--transition), transform var(--transition);
}
.service-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.service-icon { font-size: 2.5rem; margin-bottom: 16px; }
.service-card h3 { font-family: var(--font-serif); font-size: 1.4rem; margin-bottom: 12px; color: var(--dark); }
.service-card p { font-size: 0.92rem; color: var(--text-light); margin: 0; line-height: 1.7; }

/* ── WHY US ── */
.why-us { background: var(--dark); }
.why-us .section-label { color: var(--gold); }
.why-us h2 { color: var(--white); margin-bottom: 56px; }
.why-us h2 em { color: var(--gold); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--mid);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform var(--transition), box-shadow var(--transition);
}
.why-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.3); }
.why-img-wrap { overflow: hidden; height: 200px; }
.why-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.why-card:hover .why-img-wrap img { transform: scale(1.04); }
.why-body { padding: 24px; }
.why-body h3 { font-family: var(--font-serif); font-size: 1.2rem; color: var(--white); margin-bottom: 10px; }
.why-body p { font-size: 0.88rem; color: rgba(255,255,255,0.6); margin: 0; line-height: 1.7; }

/* ── REVIEWS ── */
.reviews { background: var(--sand); }
.reviews h2 { margin-bottom: 56px; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.review-card {
  background: var(--white);
  border-radius: 12px;
  padding: 36px 28px;
  border: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.review-card:hover { box-shadow: var(--shadow); }
.review-card.featured {
  background: var(--dark);
  border-color: var(--gold);
  transform: scale(1.02);
}
.review-stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 20px; }
.review-text { font-family: var(--font-serif); font-size: 1.05rem; font-style: italic; line-height: 1.75; margin-bottom: 28px; color: var(--text); }
.review-card.featured .review-text { color: rgba(255,255,255,0.9); }
.reviewer { display: flex; align-items: center; gap: 14px; }
.reviewer img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.reviewer strong { display: block; font-size: 0.9rem; color: var(--dark); }
.review-card.featured .reviewer strong { color: var(--white); }
.reviewer span { font-size: 0.8rem; color: var(--warm-grey); }
.review-card.featured .reviewer span { color: rgba(255,255,255,0.5); }

/* ── PRICING ── */
.pricing { background: var(--cream); }
.pricing h2 { margin-bottom: 16px; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
  margin-bottom: 32px;
}
.price-card {
  background: var(--white);
  border-radius: 12px;
  padding: 40px 32px;
  border: 1px solid var(--border);
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition);
}
.price-card:hover { box-shadow: var(--shadow); }
.price-card.featured {
  background: var(--dark);
  border: 2px solid var(--gold);
  transform: scale(1.03);
}
.price-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--dark);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 20px;
  white-space: nowrap;
}
.price-tier {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 12px;
}
.price-card.featured .price-tier { color: var(--white); }
.price-amount {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 16px;
}
.price-card.featured .price-amount { color: var(--gold); }
.price-amount sup { font-size: 1rem; vertical-align: super; }
.price-amount sub { font-size: 0.9rem; color: var(--warm-grey); }
.price-desc { font-size: 0.88rem; color: var(--text-light); margin-bottom: 28px; line-height: 1.6; }
.price-card.featured .price-desc { color: rgba(255,255,255,0.6); }
.price-features { margin-bottom: 32px; display: flex; flex-direction: column; gap: 10px; }
.price-features li { font-size: 0.88rem; color: var(--text-light); }
.price-card.featured .price-features li { color: rgba(255,255,255,0.75); }
.pricing-note { font-size: 0.85rem; color: var(--warm-grey); text-align: center; max-width: 640px; margin: 0 auto; }
.pricing-note a { color: var(--gold); }

/* ── CONTACT ── */
.contact { background: var(--sand); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 24px; }
.contact-info > p { color: var(--text-light); margin-bottom: 40px; }
.contact-details { display: flex; flex-direction: column; gap: 24px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.ci-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.contact-item strong { display: block; font-size: 0.9rem; font-weight: 500; margin-bottom: 4px; color: var(--dark); }
.contact-item p { font-size: 0.88rem; color: var(--text-light); margin: 0; }
.contact-item a { color: var(--text-light); }
.contact-item a:hover { color: var(--gold); }

/* ── FORM ── */
.contact-form-wrap {
  background: var(--white);
  border-radius: 16px;
  padding: 48px 40px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.82rem; font-weight: 500; color: var(--mid); letter-spacing: 0.03em; }
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--dark);
  padding: 12px 16px;
  border: 1.5px solid #DDD;
  border-radius: var(--radius);
  background: var(--cream);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}
.form-group textarea { resize: vertical; }
.form-check { display: flex; align-items: flex-start; gap: 10px; font-size: 0.85rem; color: var(--text-light); }
.form-check input[type="checkbox"] { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; accent-color: var(--gold); }
.form-note { font-size: 0.8rem; color: var(--warm-grey); text-align: center; margin: 0; }
.form-success { text-align: center; padding: 40px 0; }
.success-icon { width: 64px; height: 64px; background: var(--gold); color: var(--dark); border-radius: 50%; font-size: 1.8rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.form-success h3 { font-family: var(--font-serif); font-size: 1.8rem; margin-bottom: 12px; }
.form-success p { color: var(--text-light); }

/* ── FOOTER ── */
.site-footer {
  background: var(--dark);
  padding: 72px 0 0;
  color: rgba(255,255,255,0.6);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand p { font-size: 0.88rem; line-height: 1.7; max-width: 260px; margin-top: 20px; }
.footer-social { display: flex; gap: 12px; margin-top: 24px; }
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  transition: all var(--transition);
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-col h4 { font-family: var(--font-sans); font-size: 0.8rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: var(--white); margin-bottom: 20px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a, .footer-col address { font-size: 0.88rem; color: rgba(255,255,255,0.55); transition: color var(--transition); line-height: 1.8; }
.footer-col ul a:hover { color: var(--gold); }
.footer-col address a:hover { color: var(--gold); }
.footer-bottom {
  padding: 24px 0;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}
.footer-bottom p { margin-bottom: 6px; }
.footer-bottom a { color: rgba(255,255,255,0.45); }
.footer-bottom a:hover { color: var(--gold); }

/* ── POLICY PAGES ── */
.policy-page {
  min-height: 100vh;
  background: var(--cream);
}
.policy-hero {
  background: var(--dark);
  padding: 140px 0 80px;
  text-align: center;
}
.policy-hero h1 { font-size: clamp(2rem, 4vw, 3.5rem); }
.policy-hero p { color: rgba(255,255,255,0.6); margin-top: 12px; }
.policy-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 72px 24px;
}
.policy-content h2 { font-size: 1.5rem; margin: 40px 0 16px; border-bottom: 1px solid var(--border); padding-bottom: 12px; }
.policy-content h3 { font-size: 1.1rem; margin: 24px 0 10px; font-family: var(--font-sans); font-weight: 500; }
.policy-content p { color: var(--text-light); line-height: 1.8; font-size: 0.95rem; }
.policy-content ul { padding-left: 20px; list-style: disc; color: var(--text-light); font-size: 0.95rem; line-height: 1.8; margin-bottom: 1rem; }
.policy-content a { color: var(--gold); }
.policy-updated { font-size: 0.82rem; color: var(--warm-grey); margin-bottom: 40px; }
.back-link { display: inline-flex; align-items: center; gap: 6px; color: var(--gold); font-size: 0.9rem; font-weight: 500; margin-bottom: 40px; }
.back-link:hover { color: var(--gold-light); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-images { max-width: 480px; margin: 0 auto; }
  .about-img-accent { right: -20px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .review-card.featured { transform: none; }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .price-card.featured { transform: none; grid-column: 1 / -1; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  section { padding: 72px 0; }
  .hamburger { display: flex; }
  .main-nav {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--dark);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 400;
  }
  .main-nav.open { display: flex; }
  .main-nav ul { flex-direction: column; gap: 8px; text-align: center; }
  .main-nav a { font-size: 1.3rem; padding: 12px 24px; }
  .main-nav .nav-cta { margin-left: 0; margin-top: 8px; }
  .hero-stats { gap: 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; grid-column: auto; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-brand p { max-width: 100%; }
  .cookie-popup { left: 16px; right: 16px; max-width: none; }
  .contact-form-wrap { padding: 32px 24px; }
  .about-img-accent { display: none; }
  .about-badge { right: 12px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  h2 { font-size: 1.8rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-content { padding-top: 100px; }
  h1 { font-size: 2.4rem; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .stat strong { font-size: 1.5rem; }
  .about-hours li { flex-direction: column; gap: 2px; }
}
