/* =========================================================================
   Serendib — premium editorial design system
   Hand-written CSS, no build step. Everything is driven by the custom
   properties in :root, so re-skinning is a matter of changing tokens.
   ========================================================================= */

/* ----- Design tokens ---------------------------------------------------- */
:root {
  /* Palette: cream paper, deep jungle/tea green, warm brass, terracotta clay */
  --cream:        #f7f3ea;
  --cream-2:      #efe8d8;
  --ink:          #15241d;   /* near-black green, body text */
  --ink-soft:     #3c4a42;
  --emerald:      #154d3a;   /* primary brand green */
  --emerald-deep: #0d2c22;
  --gold:         #b78a3e;   /* brass accent */
  --gold-soft:    #cdab6a;
  --clay:         #b5542f;   /* warm secondary, used sparingly */
  --line:         rgba(21, 36, 29, 0.14);
  --line-light:   rgba(247, 243, 234, 0.18);

  /* Typography */
  --font-display: "Fraunces", "Cormorant Garamond", Georgia, serif;
  --font-body:    "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Spacing / layout */
  --container: 1200px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --section-y: clamp(4.5rem, 9vw, 8.5rem);
  --radius: 4px;
  --radius-lg: 14px;

  --shadow-soft: 0 18px 50px -28px rgba(13, 44, 34, 0.45);
  --shadow-card: 0 26px 60px -34px rgba(13, 44, 34, 0.55);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  /* Hero photo (assets/img/hero.jpg). Remove this line to fall back to the gradient. */
  --hero-img: url("/assets/img/hero.jpg");
}

/* ----- Reset ------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 92px; /* offset for fixed header on anchor jumps */
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.075rem);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; padding: 0; }

/* ----- Typography ------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.display {
  font-size: clamp(2.6rem, 1.4rem + 5.4vw, 5.6rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
}
.h2 { font-size: clamp(2rem, 1.3rem + 2.6vw, 3.4rem); }
.h3 { font-size: clamp(1.35rem, 1.1rem + 1vw, 1.85rem); }
em, .italic { font-style: italic; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}
.eyebrow::before {
  content: "";
  width: 1.8rem;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}
.eyebrow.is-centered { justify-content: center; }
.lead {
  font-size: clamp(1.1rem, 1rem + 0.6vw, 1.4rem);
  line-height: 1.55;
  color: var(--ink-soft);
}

/* ----- Layout ----------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section { padding-block: var(--section-y); }
.section-head { max-width: 56ch; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head.is-centered { margin-inline: auto; text-align: center; }
.section-head .h2 { margin-top: 1rem; }
.section-head .lead { margin-top: 1.25rem; }

/* ----- Buttons ---------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.7rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform 0.4s var(--ease), background 0.3s, color 0.3s, box-shadow 0.3s;
  will-change: transform;
}
.btn .arrow { transition: transform 0.4s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--gold);
  color: var(--emerald-deep);
  box-shadow: 0 12px 30px -14px rgba(183, 138, 62, 0.8);
}
.btn-primary:hover { background: var(--gold-soft); }
.btn-dark { background: var(--emerald); color: var(--cream); }
.btn-dark:hover { background: var(--emerald-deep); }
.btn-ghost {
  border: 1px solid var(--line);
  color: var(--ink);
  background: transparent;
}
.btn-ghost:hover { border-color: var(--ink); background: rgba(21, 36, 29, 0.04); }
.btn-ghost.on-dark { border-color: var(--line-light); color: var(--cream); }
.btn-ghost.on-dark:hover { border-color: var(--cream); background: rgba(247, 243, 234, 0.08); }

/* ----- Header / nav ----------------------------------------------------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding-block: 1.1rem;
  transition: background 0.4s var(--ease), box-shadow 0.4s, padding 0.4s;
}
.site-header.is-scrolled {
  background: rgba(247, 243, 234, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line);
  padding-block: 0.7rem;
}
/* Dark top scrim so header text (esp. the gold eyebrow) stays legible
   over bright hero photos. Fades out once the solid header kicks in. */
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(8, 28, 21, 0.6), rgba(8, 28, 21, 0));
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
}
.site-header.is-scrolled::before { opacity: 0; }
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.brand { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.01em;
  color: var(--ink);
  transition: color 0.4s;
}
.brand-eyebrow {
  font-size: 0.62rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.28rem;
}
/* On the hero (before scroll) the header sits on an image: lighten text,
   brighten the gold eyebrow, and add a subtle shadow for contrast. */
.site-header:not(.is-scrolled) .brand-name { color: var(--cream); }
.site-header:not(.is-scrolled) .brand-eyebrow { color: var(--gold-soft); }
.site-header:not(.is-scrolled) .brand-name,
.site-header:not(.is-scrolled) .brand-eyebrow { text-shadow: 0 1px 12px rgba(8, 28, 21, 0.55); }
.site-header:not(.is-scrolled) .nav-links a { color: rgba(247, 243, 234, 0.88); text-shadow: 0 1px 10px rgba(8, 28, 21, 0.45); }
.site-header:not(.is-scrolled) .nav-links a:hover { color: #fff; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  position: relative;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color 0.3s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width 0.35s var(--ease);
}
.nav-links a:hover::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 1.1rem; }

/* Language switcher */
.lang-switch { display: flex; align-items: center; gap: 0.15rem; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.05em; }
.lang-switch a { padding: 0.2rem 0.4rem; border-radius: 999px; color: var(--ink-soft); transition: color 0.3s; }
.lang-switch a:hover { color: var(--ink); }
.lang-switch a.is-active { color: var(--emerald); }
.lang-switch .sep { color: var(--line); }
.site-header:not(.is-scrolled) .lang-switch a { color: rgba(247, 243, 234, 0.72); }
.site-header:not(.is-scrolled) .lang-switch a:hover,
.site-header:not(.is-scrolled) .lang-switch a.is-active { color: #fff; }
.site-header:not(.is-scrolled) .lang-switch .sep { color: var(--line-light); }

.nav-toggle { display: none; }

/* ----- Hero ------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-top: 8rem;
  padding-bottom: clamp(3rem, 6vw, 5rem);
  color: var(--cream);
  isolation: isolate;
  overflow: hidden;
}
.hero::before { /* image layer (auto-upgrades when assets/img/hero.jpg exists) */
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    var(--hero-img, none),
    radial-gradient(120% 90% at 75% 15%, #1c6149 0%, transparent 55%),
    linear-gradient(160deg, #0d2c22 0%, #154d3a 48%, #0a241b 100%);
  background-size: cover;
  background-position: center;
}
.hero::after { /* readability + grain overlay */
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(8,28,21,0.45) 0%, rgba(8,28,21,0.05) 30%, rgba(8,28,21,0.78) 100%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
}
.hero-inner { max-width: 60rem; }
.hero .display {
  color: var(--cream);
  margin-top: 1.4rem;
  text-shadow: 0 2px 28px rgba(8, 28, 21, 0.45); /* lift off bright photos */
}
.hero .display em { color: var(--gold-soft); }
.hero-lead {
  margin-top: 1.6rem;
  max-width: 42ch;
  font-size: clamp(1.05rem, 1rem + 0.5vw, 1.3rem);
  color: rgba(247, 243, 234, 0.9);
  text-shadow: 0 1px 18px rgba(8, 28, 21, 0.5);
}
.hero-actions { margin-top: 2.2rem; display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-eyebrow {
  color: var(--gold-soft);
  /* drop-shadow covers both the text and the decorative dash (::before) */
  filter: drop-shadow(0 1px 10px rgba(8, 28, 21, 0.75));
}
.hero-eyebrow::before { background: var(--gold-soft); }

.hero-trust {
  margin-top: clamp(2.5rem, 6vw, 4rem);
  padding-top: 1.6rem;
  border-top: 1px solid var(--line-light);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2.4rem;
}
.hero-trust li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.86rem;
  letter-spacing: 0.02em;
  color: rgba(247, 243, 234, 0.82);
}
.hero-trust li::before {
  content: "✦";
  color: var(--gold-soft);
  font-size: 0.8rem;
}

/* ----- Positioning / statement ------------------------------------------ */
.statement {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: end;
}
.statement .big {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 1.2rem + 2.4vw, 3rem);
  line-height: 1.15;
}
.statement .big b { color: var(--emerald); font-weight: 400; }
.statement .note {
  border-left: 2px solid var(--gold);
  padding-left: 1.5rem;
}
.statement .note p + p { margin-top: 1rem; }
.tag-free {
  display: inline-block;
  margin-bottom: 1.1rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(21, 77, 58, 0.1);
  color: var(--emerald);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* ----- Experiences grid ------------------------------------------------- */
.exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.exp-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 2rem 1.9rem 2.1rem;
  background: var(--cream-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.5s var(--ease), box-shadow 0.5s;
  min-height: 19rem;
}
.exp-card::before { /* gradient wash that intensifies on hover */
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, var(--c1, #1c6149), var(--c2, #0d2c22));
  opacity: 0;
  transition: opacity 0.5s var(--ease);
  z-index: 0;
}
.exp-card > * { position: relative; z-index: 1; transition: color 0.5s; }
.exp-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.exp-card:hover::before { opacity: 1; }
.exp-card:hover :is(.exp-num, .exp-title, .exp-desc, .exp-more) { color: var(--cream); }
.exp-card:hover .exp-num { color: var(--gold-soft); }
.exp-num {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: 0.05em;
}
.exp-title { margin-top: auto; padding-top: 2.5rem; font-size: 1.5rem; }
.exp-desc { margin-top: 0.8rem; color: var(--ink-soft); font-size: 0.96rem; }
.exp-more {
  margin-top: 1.2rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--emerald);
  display: inline-flex;
  gap: 0.5rem;
}

/* ----- Destinations ----------------------------------------------------- */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 14rem;
  gap: 1.1rem;
}
.dest {
  position: relative;
  grid-column: span 2;
  border-radius: var(--radius-lg);
  overflow: hidden;
  isolation: isolate;
  color: var(--cream);
  display: flex;
  align-items: flex-end;
  padding: 1.4rem;
}
.dest.is-wide { grid-column: span 3; }
.dest.is-tall { grid-row: span 2; }
.dest::before { /* image layer + duotone fallback */
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    var(--img, none),
    linear-gradient(155deg, var(--c1, #1c6149), var(--c2, #0a241b));
  background-size: cover;
  background-position: center;
  transition: transform 0.7s var(--ease);
}
.dest::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  /* Stronger, taller scrim so labels read over bright images (e.g. green hills) */
  background: linear-gradient(180deg, rgba(8,28,21,0) 30%, rgba(8,28,21,0.5) 66%, rgba(8,28,21,0.86) 100%);
}
.dest:hover::before { transform: scale(1.06); }
.dest-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1.1;
  color: #fff;
  text-shadow: 0 1px 14px rgba(8, 28, 21, 0.7);
}
.dest-region {
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 0.35rem;
  text-shadow: 0 1px 10px rgba(8, 28, 21, 0.75);
}

/* ----- How it works (steps) --------------------------------------------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  counter-reset: step;
}
.step {
  position: relative;
  padding-top: 2.4rem;
  border-top: 1px solid var(--line);
}
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  position: absolute;
  top: 1.2rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--gold);
}
.step h3 { font-size: 1.25rem; margin-bottom: 0.6rem; }
.step p { color: var(--ink-soft); font-size: 0.95rem; }

/* ----- Why us band ------------------------------------------------------ */
.band {
  background: var(--emerald-deep);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.band::before { /* faint topographic motif */
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/assets/img/topo.svg");
  background-size: cover;
  opacity: 0.12;
  pointer-events: none;
}
.band .container { position: relative; }
.band .eyebrow { color: var(--gold-soft); }
.band .eyebrow::before { background: var(--gold-soft); }
.band-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.band .h2 { color: var(--cream); }
.quote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 1.1rem + 1.6vw, 2.3rem);
  line-height: 1.25;
  font-style: italic;
}
.quote .by { display: block; font-style: normal; font-family: var(--font-body); font-size: 0.85rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-soft); margin-top: 1.4rem; }
.values { display: grid; gap: 1.6rem; }
.value { display: flex; gap: 1.1rem; }
.value .v-mark {
  flex: none;
  width: 2.6rem; height: 2.6rem;
  border-radius: 50%;
  display: grid; place-items: center;
  border: 1px solid var(--line-light);
  color: var(--gold-soft);
  font-size: 1.1rem;
}
.value h3 { color: var(--cream); font-size: 1.15rem; margin-bottom: 0.3rem; }
.value p { color: rgba(247, 243, 234, 0.74); font-size: 0.94rem; }

/* ----- Testimonials ----------------------------------------------------- */
.quotes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.tcard {
  padding: 2rem 1.9rem;
  background: var(--cream-2);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
}
.tcard .stars { color: var(--gold); letter-spacing: 0.2em; margin-bottom: 1rem; }
.tcard blockquote { font-family: var(--font-display); font-size: 1.2rem; line-height: 1.35; }
.tcard .who { margin-top: auto; padding-top: 1.5rem; font-size: 0.86rem; color: var(--ink-soft); }
.tcard .who b { color: var(--ink); font-weight: 600; }

/* ----- FAQ -------------------------------------------------------------- */
.faq { max-width: 60rem; }
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 1.4rem 0;
}
.faq summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1rem + 0.5vw, 1.4rem);
  list-style: none;
  cursor: pointer;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .ic {
  flex: none;
  width: 1.7rem; height: 1.7rem;
  position: relative;
  transition: transform 0.4s var(--ease);
}
.faq summary .ic::before,
.faq summary .ic::after {
  content: "";
  position: absolute;
  background: var(--gold);
  inset: 0; margin: auto;
}
.faq summary .ic::before { width: 100%; height: 1.5px; }
.faq summary .ic::after { width: 1.5px; height: 100%; transition: transform 0.4s var(--ease); }
.faq details[open] summary .ic::after { transform: scaleY(0); }
.faq details p {
  color: var(--ink-soft);
  max-width: 62ch;
  margin-top: 0.9rem;
  font-size: 0.98rem;
}

/* ----- Contact ---------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2.5rem, 6vw, 5rem);
}
.contact-aside .h2 { margin: 1rem 0 1.3rem; }
.contact-points { margin-top: 2.2rem; display: grid; gap: 1.2rem; }
.contact-points a, .contact-points span { display: flex; align-items: center; gap: 0.9rem; font-size: 1.02rem; }
.contact-points .ic { color: var(--gold); flex: none; }
.contact-reassure {
  margin-top: 2.2rem;
  padding: 1.3rem 1.4rem;
  background: rgba(21, 77, 58, 0.08);
  border-radius: var(--radius-lg);
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.form { display: grid; gap: 1.2rem; }
.field { display: flex; flex-direction: column; gap: 0.45rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.field label { font-size: 0.82rem; font-weight: 600; letter-spacing: 0.04em; color: var(--ink-soft); }
.field label .req { color: var(--clay); }
.field input,
.field select,
.field textarea {
  font: inherit;
  font-size: 0.98rem;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.field textarea { resize: vertical; min-height: 7rem; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--emerald);
  box-shadow: 0 0 0 3px rgba(21, 77, 58, 0.12);
}
.field.has-error input,
.field.has-error select,
.field.has-error textarea { border-color: var(--clay); }
.field .err { color: var(--clay); font-size: 0.8rem; }
.consent { display: flex; gap: 0.7rem; align-items: flex-start; font-size: 0.86rem; color: var(--ink-soft); }
.consent input { margin-top: 0.25rem; accent-color: var(--emerald); }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-submit { margin-top: 0.4rem; }

.flash {
  padding: 1.1rem 1.3rem;
  border-radius: var(--radius-lg);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}
.flash-ok { background: rgba(21, 77, 58, 0.12); color: var(--emerald); border: 1px solid rgba(21,77,58,0.25); }
.flash-err { background: rgba(181, 84, 47, 0.1); color: var(--clay); border: 1px solid rgba(181,84,47,0.3); }

/* ----- Footer ----------------------------------------------------------- */
.site-footer {
  background: var(--emerald-deep);
  color: rgba(247, 243, 234, 0.72);
  padding-block: clamp(3.5rem, 7vw, 5.5rem) 2.5rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--line-light);
}
.footer-brand .brand-name { color: var(--cream); font-size: 1.9rem; }
.footer-brand p { margin-top: 1rem; max-width: 34ch; font-size: 0.95rem; }
.footer-col h4 { color: var(--cream); font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 1.1rem; font-family: var(--font-body); font-weight: 600; }
.footer-col li { margin-bottom: 0.7rem; }
.footer-col a:hover { color: var(--gold-soft); }
.footer-bottom {
  margin-top: 2.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
}
.footer-disclaimer {
  margin-top: 1.5rem;
  font-size: 0.78rem;
  line-height: 1.6;
  color: rgba(247, 243, 234, 0.5);
  max-width: 70ch;
}

/* ----- Scroll reveal ---------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }
.reveal[data-delay="5"] { transition-delay: 0.40s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ----- Mobile menu element (hidden on desktop) -------------------------- */
.mobile-menu { display: none; }

/* ======================================================================== */
/* Responsive                                                               */
/* ======================================================================== */
@media (max-width: 980px) {
  .exp-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .quotes-grid { grid-template-columns: 1fr; }
  .statement,
  .band-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .band-grid .quote { order: -1; }
  .dest-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 12rem; }
  .dest, .dest.is-wide { grid-column: span 1; }
  .dest.is-tall { grid-row: span 1; }
}

@media (max-width: 640px) {
  :root { scroll-padding-top: 76px; }
  .nav-links, .nav-actions .btn, .nav-actions .lang-switch { display: none; }
  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    gap: 5px;
    padding: 0.4rem;
    z-index: 120;
  }
  .nav-toggle span {
    width: 26px; height: 2px;
    background: var(--ink);
    transition: transform 0.4s var(--ease), opacity 0.3s;
  }
  .site-header:not(.is-scrolled) .nav-toggle span { background: var(--cream); }

  /* full-screen mobile menu */
  .mobile-menu {
    display: flex;
    position: fixed;
    inset: 0;
    z-index: 110;
    flex-direction: column;
    justify-content: center;
    gap: 1.4rem;
    padding: var(--gutter);
    background: var(--emerald-deep);
    color: var(--cream);
    transform: translateY(-100%);
    transition: transform 0.5s var(--ease);
  }
  .mobile-menu a {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--cream);
  }
  .mobile-menu .btn { margin-top: 1rem; align-self: flex-start; }
  .mobile-menu .lang-switch { margin-top: 1.6rem; }
  .mobile-menu .lang-switch a { font-family: var(--font-body); font-size: 1.05rem; color: rgba(247, 243, 234, 0.7); }
  .mobile-menu .lang-switch a.is-active { color: #fff; }
  .mobile-menu .lang-switch .sep { color: var(--line-light); }
  body.menu-open .mobile-menu { transform: translateY(0); }
  body.menu-open { overflow: hidden; }
  body.menu-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); background: var(--cream); }
  body.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
  body.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: var(--cream); }

  .exp-grid, .steps { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .hero { min-height: 92svh; }
}
