/* ===================================================================
   Heading South — styles
   =================================================================== */

:root {
  --c-deep: #0e3a45;        /* deep teal / southern sea at dusk */
  --c-deep-2: #0a2c34;
  --c-terra: #c8703f;       /* terracotta */
  --c-terra-d: #a85a2e;
  --c-gold: #d9a566;        /* warm sun */
  --c-sand: #f6efe6;        /* sand / cream */
  --c-sand-2: #efe5d6;
  --c-ink: #1d2a2d;
  --c-muted: #5c6b6e;
  --c-line: rgba(14, 58, 69, 0.12);
  --c-white: #ffffff;

  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", system-ui, -apple-system, sans-serif;

  --container: 1180px;
  --radius: 16px;
  --shadow: 0 24px 60px -28px rgba(10, 44, 52, 0.45);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 90px; }

body {
  font-family: var(--sans);
  color: var(--c-ink);
  background: var(--c-sand);
  line-height: 1.65;
  font-weight: 400;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* Accessibility helpers */
.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 200;
  background: var(--c-terra); color: #fff; padding: 10px 18px; border-radius: 0 0 10px 10px;
  font-weight: 600; font-size: 0.9rem; transition: top .25s var(--ease);
}
.skip-link:focus { top: 0; }
:focus-visible { outline: 3px solid var(--c-terra); outline-offset: 3px; border-radius: 4px; }
.hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; opacity: 0; pointer-events: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: clamp(64px, 10vw, 130px) 0; }

/* ---- Typography ---- */
h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.08; letter-spacing: -0.01em; }
h2 { font-size: clamp(2rem, 4.4vw, 3.4rem); color: var(--c-deep); }
h3 { font-size: 1.4rem; }
em { font-style: italic; }

.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--c-terra);
  margin-bottom: 18px;
}

.section-head { max-width: 640px; margin: 0 auto clamp(40px, 6vw, 72px); text-align: center; }
.section-head__lead { color: var(--c-muted); margin-top: 18px; font-size: 1.05rem; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .4s var(--ease), background .3s, color .3s, box-shadow .4s;
}
.btn--primary { background: var(--c-terra); color: #fff; box-shadow: 0 14px 30px -12px rgba(200,112,63,.6); }
.btn--primary:hover { background: var(--c-terra-d); transform: translateY(-3px); }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn--ghost:hover { background: rgba(255,255,255,.12); transform: translateY(-3px); }
.btn--full { width: 100%; }

/* ===================================================================
   Header
   =================================================================== */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 22px 0;
  transition: padding .4s var(--ease), background .4s, box-shadow .4s;
}
.site-header.scrolled {
  background: rgba(246, 239, 230, 0.92);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: 0 1px 0 var(--c-line);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; }

.brand { display: inline-flex; align-items: center; gap: 11px; color: #fff; transition: color .4s; }
.site-header.scrolled .brand { color: var(--c-deep); }
.brand__mark { width: 40px; height: 40px; display: block; border-radius: 50%; box-shadow: 0 6px 18px -8px rgba(0,0,0,.5); transition: width .4s var(--ease), height .4s var(--ease); }
.site-header.scrolled .brand__mark { width: 34px; height: 34px; }
.brand__text { font-family: var(--serif); font-size: 1.5rem; font-weight: 600; letter-spacing: .01em; }
.brand__text span { color: var(--c-gold); }

.nav { display: flex; align-items: center; gap: 34px; }
.nav a { color: #fff; font-size: 0.92rem; font-weight: 500; transition: color .3s; position: relative; }
.site-header.scrolled .nav a { color: var(--c-ink); }
.nav a:not(.nav__cta)::after {
  content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 1.5px;
  background: var(--c-terra); transition: width .35s var(--ease);
}
.nav a:not(.nav__cta):hover::after,
.nav a.active:not(.nav__cta)::after { width: 100%; }
.nav a.active:not(.nav__cta) { color: var(--c-terra); }
.site-header.scrolled .nav a.active:not(.nav__cta) { color: var(--c-terra); }
.nav__cta {
  padding: 10px 22px; border-radius: 100px; background: var(--c-terra); color: #fff !important;
  font-weight: 600; transition: background .3s, transform .3s;
}
.nav__cta:hover { background: var(--c-terra-d); transform: translateY(-2px); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 26px; height: 2px; background: #fff; transition: .3s; }
.site-header.scrolled .nav-toggle span { background: var(--c-ink); }

/* ===================================================================
   Hero
   =================================================================== */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; color: #fff; overflow: hidden; }
.hero__bg {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=2000&q=80') center/cover no-repeat;
  transform: scale(1.08);
  animation: heroZoom 18s ease-out forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,44,52,.55) 0%, rgba(10,44,52,.25) 35%, rgba(10,44,52,.75) 100%),
    radial-gradient(120% 80% at 70% 20%, rgba(217,165,102,.20), transparent 60%);
}
.hero__content { position: relative; z-index: 2; max-width: 760px; padding-top: 80px; padding-bottom: 60px; }
.hero__eyebrow { text-transform: uppercase; letter-spacing: 0.24em; font-size: 0.78rem; font-weight: 600; color: var(--c-gold); margin-bottom: 22px; }
.hero__title { font-size: clamp(2.6rem, 6.4vw, 5rem); margin-bottom: 24px; text-shadow: 0 2px 30px rgba(0,0,0,.25); }
.hero__title em { color: var(--c-gold); }
.hero__lead { font-size: clamp(1.02rem, 1.6vw, 1.22rem); max-width: 560px; color: rgba(255,255,255,.9); margin-bottom: 38px; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }

.hero__stats { display: flex; gap: clamp(28px, 5vw, 60px); }
.hero__stats div { display: flex; flex-direction: column; }
.hero__stats strong { font-family: var(--serif); font-size: 2.2rem; line-height: 1; color: var(--c-gold); }
.hero__stats span { font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,.78); margin-top: 6px; }

.hero__scroll { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); z-index: 2; width: 26px; height: 42px; border: 2px solid rgba(255,255,255,.6); border-radius: 14px; }
.hero__scroll span { position: absolute; top: 8px; left: 50%; width: 4px; height: 8px; margin-left: -2px; background: #fff; border-radius: 2px; animation: scrollDot 1.6s infinite; }
@keyframes scrollDot { 0%{opacity:0;transform:translateY(0)} 40%{opacity:1} 80%{opacity:0;transform:translateY(14px)} 100%{opacity:0} }

/* ===================================================================
   About
   =================================================================== */
.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.about__media { position: relative; height: 520px; }
.about__img { position: absolute; border-radius: var(--radius); background-size: cover; background-position: center; background-color: var(--c-deep); box-shadow: var(--shadow); }
.about__img--1 { width: 68%; height: 78%; top: 0; left: 0; background-image: url('https://images.unsplash.com/photo-1502680390469-be75c86b636f?auto=format&fit=crop&w=900&q=80'); }
.about__img--2 { width: 54%; height: 56%; bottom: 0; right: 0; background-image: url('https://images.unsplash.com/photo-1469854523086-cc02fe5d8800?auto=format&fit=crop&w=800&q=80'); border: 8px solid var(--c-sand); }
.about__badge { position: absolute; top: 14%; right: 4%; background: var(--c-terra); color: #fff; border-radius: 50%; width: 110px; height: 110px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; box-shadow: var(--shadow); }
.about__badge strong { font-family: var(--serif); font-size: 1.9rem; line-height: 1; }
.about__badge span { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; margin-top: 4px; }

.about__text h2 { margin-bottom: 22px; }
.about__text p { color: var(--c-muted); margin-bottom: 18px; }
.about__list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; margin-top: 28px; }
.about__list li { position: relative; padding-left: 26px; font-weight: 500; color: var(--c-ink); font-size: 0.96rem; }
.about__list li::before { content: ""; position: absolute; left: 0; top: 8px; width: 14px; height: 14px; border-radius: 50%; background: var(--c-gold); box-shadow: 0 0 0 4px rgba(217,165,102,.22); }

/* ===================================================================
   Destinations
   =================================================================== */
.destinations { background: var(--c-sand-2); }
.dest-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 230px; gap: 18px; }
.dest-card { position: relative; border-radius: var(--radius); overflow: hidden; grid-column: span 1; cursor: pointer; isolation: isolate; box-shadow: var(--shadow); background: linear-gradient(160deg, var(--c-deep), var(--c-deep-2)); }
.dest-card--lg { grid-column: span 2; grid-row: span 2; }
.dest-card--wide { grid-column: span 2; }
.dest-card::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background-image: var(--img); background-size: cover; background-position: center;
  transition: transform 1s var(--ease);
}
.dest-card::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, transparent 30%, rgba(10,44,52,.85) 100%); }
.dest-card:hover::before { transform: scale(1.09); }
.dest-card__body { position: absolute; inset: auto 0 0 0; padding: 24px; color: #fff; }
.dest-card__tag { display: inline-block; font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.16em; font-weight: 600; color: var(--c-gold); margin-bottom: 8px; }
.dest-card__body h3 { font-size: 1.5rem; margin-bottom: 6px; }
.dest-card__body p { font-size: 0.9rem; color: rgba(255,255,255,.85); max-height: 0; opacity: 0; overflow: hidden; transition: max-height .5s var(--ease), opacity .4s, margin .4s; }
.dest-card:hover .dest-card__body p { max-height: 80px; opacity: 1; margin-bottom: 8px; }
.dest-card__link { font-size: 0.85rem; font-weight: 600; color: #fff; opacity: .9; }
.trail-meta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 10px; font-size: 0.74rem; font-weight: 600; letter-spacing: 0.04em; color: var(--c-gold); }
.trail-meta span { white-space: nowrap; }

/* ===================================================================
   Experiences
   =================================================================== */
.exp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.exp-card { padding: 36px 28px; background: var(--c-white); border-radius: var(--radius); border: 1px solid var(--c-line); transition: transform .5s var(--ease), box-shadow .5s; }
.exp-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.exp-card__num { font-family: var(--serif); font-size: 2.6rem; color: var(--c-gold); display: block; margin-bottom: 14px; line-height: 1; }
.exp-card h3 { font-size: 1.25rem; margin-bottom: 10px; color: var(--c-deep); }
.exp-card p { font-size: 0.94rem; color: var(--c-muted); }

/* ===================================================================
   Quote banner
   =================================================================== */
.quote { background: var(--c-deep); color: #fff; padding: clamp(70px, 9vw, 120px) 0; position: relative; overflow: hidden; }
.quote::before { content: "“"; position: absolute; top: -40px; left: 4%; font-family: var(--serif); font-size: 18rem; color: rgba(217,165,102,.16); line-height: 1; }
.quote__inner { max-width: 860px; margin: 0 auto; text-align: center; position: relative; }
.quote__text { font-family: var(--serif); font-size: clamp(1.6rem, 3.6vw, 2.8rem); line-height: 1.25; font-style: italic; }
.quote__author { margin-top: 24px; letter-spacing: 0.1em; text-transform: uppercase; font-size: 0.8rem; color: var(--c-gold); }

/* ===================================================================
   Testimonials
   =================================================================== */
.test-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.test-card { background: var(--c-white); border-radius: var(--radius); padding: 34px 30px; border: 1px solid var(--c-line); display: flex; flex-direction: column; gap: 16px; }
.stars { color: var(--c-gold); letter-spacing: 3px; font-size: 1rem; }
.test-card blockquote { font-family: var(--serif); font-size: 1.2rem; line-height: 1.45; color: var(--c-ink); }
.test-card figcaption { margin-top: auto; }
.test-card figcaption strong { display: block; color: var(--c-deep); }
.test-card figcaption span { font-size: 0.85rem; color: var(--c-muted); }

/* ===================================================================
   App CTA banner
   =================================================================== */
.appcta { background: var(--c-deep); color: #fff; overflow: hidden; }
.appcta__inner { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(30px, 6vw, 70px); align-items: center; }
.appcta__text .eyebrow { color: var(--c-gold); }
.appcta__text h2 { color: #fff; margin-bottom: 18px; }
.appcta__text > p { color: rgba(255,255,255,.85); max-width: 480px; margin-bottom: 28px; }
.appcta__actions { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.appcta__hint { font-size: .82rem; color: rgba(255,255,255,.6); }

/* phone mockup */
.appcta__phone { display: flex; justify-content: center; }
.phone { position: relative; width: 240px; height: 480px; background: #0b242b; border-radius: 38px; padding: 12px; box-shadow: 0 40px 70px -30px rgba(0,0,0,.7), inset 0 0 0 2px rgba(255,255,255,.06); }
.phone__notch { position: absolute; top: 12px; left: 50%; transform: translateX(-50%); width: 110px; height: 22px; background: #0b242b; border-radius: 0 0 14px 14px; z-index: 3; }
.phone__screen { position: relative; width: 100%; height: 100%; border-radius: 28px; overflow: hidden; background: #cfe3e6; }
.phone__map {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 25%, #dbe9d6 0 18%, transparent 18%),
    radial-gradient(circle at 75% 60%, #cfe0c8 0 22%, transparent 22%),
    linear-gradient(135deg, #d9e7e9, #c2dadd 60%, #a9cdd1);
}
.phone__map::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 46%; background: linear-gradient(180deg, transparent, #a9cdd1); }
.phone__route { position: absolute; left: 18%; top: 22%; width: 60%; height: 52%; border-left: 4px dashed var(--c-terra); border-bottom: 4px dashed var(--c-terra); border-bottom-left-radius: 60px; transform: rotate(8deg); opacity: .9; }
.phone__dot { position: absolute; left: 22%; top: 70%; width: 16px; height: 16px; border-radius: 50%; background: #2f7df6; border: 3px solid #fff; box-shadow: 0 0 0 5px rgba(47,125,246,.3); }
.phone__card { position: absolute; left: 12px; right: 12px; bottom: 12px; background: #fff; color: var(--c-ink); border-radius: 14px; padding: 12px 14px; box-shadow: 0 10px 24px -10px rgba(0,0,0,.4); }
.phone__card strong { display: block; font-family: var(--serif); font-size: 1.1rem; color: var(--c-deep); }
.phone__card span { font-size: .78rem; color: var(--c-muted); font-weight: 600; }

/* ===================================================================
   Contact
   =================================================================== */
.contact { background: var(--c-sand-2); }
.contact__grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(40px, 6vw, 80px); align-items: start; }
.contact__intro h2 { margin-bottom: 20px; }
.contact__intro > p { color: var(--c-muted); }
.contact__info { list-style: none; margin-top: 34px; display: grid; gap: 18px; }
.contact__info li { display: flex; flex-direction: column; }
.contact__info span { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--c-terra); font-weight: 600; margin-bottom: 4px; }
.contact__info a, .contact__info li { font-size: 1.05rem; color: var(--c-deep); }

.contact__form { background: var(--c-white); padding: clamp(28px, 4vw, 44px); border-radius: var(--radius); box-shadow: var(--shadow); }
.field { margin-bottom: 20px; }
.field label { display: block; font-size: 0.82rem; font-weight: 600; margin-bottom: 8px; color: var(--c-ink); }
.field input, .field textarea {
  width: 100%; padding: 14px 16px; border: 1px solid var(--c-line); border-radius: 12px;
  font-family: var(--sans); font-size: 0.98rem; color: var(--c-ink); background: var(--c-sand);
  transition: border .3s, box-shadow .3s; resize: vertical;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--c-terra); box-shadow: 0 0 0 4px rgba(200,112,63,.14); background: #fff; }
.form-note { margin-top: 14px; font-size: 0.9rem; min-height: 1.2em; }
.form-note.ok { color: #1f7a4d; }
.form-note.err { color: #b23b3b; }

/* ===================================================================
   Footer
   =================================================================== */
.footer { background: var(--c-deep-2); color: rgba(255,255,255,.78); padding: 64px 0 28px; }
.footer__inner { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer__logo { filter: brightness(0) invert(1); opacity: .92; }
.footer__brand p { margin-top: 14px; max-width: 280px; font-size: 0.92rem; }
.footer__nav, .footer__social { display: flex; gap: 22px; flex-wrap: wrap; }
.footer__nav a, .footer__social a { font-size: 0.92rem; transition: color .3s; }
.footer__nav a:hover, .footer__social a:hover { color: var(--c-gold); }
.footer__bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 22px; font-size: 0.82rem; color: rgba(255,255,255,.55); }

/* ===================================================================
   How it works
   =================================================================== */
.how__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.how__step { text-align: center; padding: 0 12px; position: relative; }
.how__step:not(:last-child)::after {
  content: ""; position: absolute; top: 32px; right: -14px; width: 28px; height: 2px;
  background: repeating-linear-gradient(90deg, var(--c-gold) 0 5px, transparent 5px 10px);
}
.how__icon {
  width: 72px; height: 72px; margin: 0 auto 22px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--c-sand-2); color: var(--c-terra); border: 1px solid var(--c-line);
}
.how__step h3 { font-size: 1.3rem; color: var(--c-deep); margin-bottom: 10px; }
.how__step p { color: var(--c-muted); font-size: 0.96rem; max-width: 300px; margin: 0 auto; }

/* ===================================================================
   FAQ
   =================================================================== */
.faq { background: var(--c-sand-2); }
.faq__list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq__item { background: var(--c-white); border: 1px solid var(--c-line); border-radius: 14px; overflow: hidden; transition: box-shadow .3s; }
.faq__item[open] { box-shadow: var(--shadow); }
.faq__item summary {
  list-style: none; cursor: pointer; padding: 20px 24px; font-weight: 600; font-size: 1.05rem;
  color: var(--c-deep); display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+"; font-family: var(--sans); font-weight: 400; font-size: 1.6rem; line-height: 1;
  color: var(--c-terra); transition: transform .3s var(--ease); flex: none;
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__answer { padding: 0 24px 22px; }
.faq__answer p { color: var(--c-muted); }

/* ===================================================================
   Back to top
   =================================================================== */
.to-top {
  position: fixed; bottom: 24px; right: 24px; z-index: 90;
  width: 48px; height: 48px; border-radius: 50%; border: 0; cursor: pointer;
  background: var(--c-terra); color: #fff; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 26px -10px rgba(200,112,63,.7);
  opacity: 0; visibility: hidden; transform: translateY(14px);
  transition: opacity .35s var(--ease), transform .35s var(--ease), background .3s, visibility .35s;
}
.to-top.show { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--c-terra-d); transform: translateY(-3px); }

/* ===================================================================
   Reveal animation
   =================================================================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ===================================================================
   Responsive
   =================================================================== */
@media (max-width: 980px) {
  .about__grid, .contact__grid { grid-template-columns: 1fr; }
  .about__media { height: 440px; max-width: 480px; }
  .dest-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
  .dest-card--lg, .dest-card--wide { grid-column: span 2; grid-row: span 1; }
  .exp-grid { grid-template-columns: repeat(2, 1fr); }
  .test-grid { grid-template-columns: 1fr; max-width: 540px; margin: 0 auto; }
  .how__grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; gap: 36px; }
  .how__step::after { display: none; }
  .appcta__inner { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .appcta__text > p { margin-left: auto; margin-right: auto; }
  .appcta__actions { justify-content: center; }
  .appcta__phone { order: -1; }
}

@media (max-width: 760px) {
  .nav {
    position: fixed; inset: 0 0 0 auto; width: min(78vw, 320px);
    background: var(--c-deep); flex-direction: column; align-items: flex-start;
    justify-content: center; gap: 28px; padding: 40px; transform: translateX(100%);
    transition: transform .45s var(--ease); box-shadow: -20px 0 60px rgba(0,0,0,.3);
  }
  .nav.open { transform: none; }
  .nav a, .site-header.scrolled .nav a { color: #fff; font-size: 1.1rem; }
  .nav-toggle { display: flex; z-index: 101; }
  .nav.open ~ .nav-toggle span { background: #fff; }
  body.nav-open { overflow: hidden; }
}

@media (max-width: 560px) {
  .dest-grid { grid-template-columns: 1fr; }
  .dest-card, .dest-card--lg, .dest-card--wide { grid-column: span 1; }
  .exp-grid { grid-template-columns: 1fr; }
  .hero__stats { gap: 22px; }
  .hero__stats strong { font-size: 1.7rem; }
  .btn { width: 100%; }
  .hero__actions { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
