/* =========================================================
   Kodoufii Tapawatra Resort - one-page site
   Design: dark jungle-river editorial. Brand dark green + turquoise.
   ========================================================= */

:root {
  --green-900: #102a13;
  --green-800: #195712;
  --green-700: #1f6b1b;
  --green-600: #2e7d32;
  --leaf:      #1fb6a8;
  --turquoise: #1fb6a8;
  --turquoise-soft: #54d6c9;
  --gold:      var(--turquoise);
  --gold-soft: var(--turquoise-soft);
  --sand:      #edf8f5;
  --cream:     #f7fbf8;
  --leaf-mist: #e0f5ef;
  --ink:       #13231f;
  --muted:     #566962;
  --line:      rgba(6, 54, 47, 0.13);
  --white:     #ffffff;

  --maxw: 1600px;
  --maxw-wide: 1600px;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 18px 50px -20px rgba(16, 42, 19, 0.45);
  --shadow-soft: 0 10px 30px -16px rgba(16, 42, 19, 0.35);

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Manrope", Arial, sans-serif;
  --section-title-size: clamp(2.1rem, 5vw, 4.8rem);
  --section-title-measure: 11ch;

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

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--green-900);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: hidden;
}

img, video { max-width: 100%; display: block; }
img { height: auto; }

a { color: inherit; text-decoration: none; }

:where(a, button, summary):focus-visible {
  outline: 3px solid var(--gold-soft);
  outline-offset: 4px;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 650;
  line-height: 1.08;
  margin: 0 0 0.4em;
  letter-spacing: 0;
}

p { margin: 0 0 1em; }

.container { width: min(100% - 44px, var(--maxw)); margin-inline: auto; }
.container-wide { width: min(100% - 44px, var(--maxw-wide)); margin-inline: auto; }

.skip-link {
  position: fixed; top: 16px; left: 16px; z-index: 300;
  transform: translateY(-150%);
  padding: 10px 14px; border-radius: 999px;
  background: var(--gold-soft); color: var(--green-900);
  font-weight: 750; box-shadow: var(--shadow-soft);
  transition: transform 0.2s var(--ease);
}
.skip-link:focus { transform: translateY(0); }

.section {
  padding: clamp(64px, 9vw, 120px) 0;
  background: var(--green-900);
  color: var(--white);
}
.section--tight { padding: clamp(48px, 7vw, 88px) 0; }
.section--sand {
  background: var(--turquoise);
  color: var(--green-900);
}
.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  color: rgba(255,255,255,0.84);
  max-width: 62ch;
}
.section--sand .lead,
.host-panel .lead,
.practical .lead,
.reserve .lead {
  color: var(--green-900);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.55em;
  font-weight: 600; font-size: 0.95rem;
  padding: 0.85em 1.5em; border-radius: 100px;
  border: 1.5px solid transparent; cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), box-shadow 0.25s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--green-800); color: var(--white); box-shadow: var(--shadow-soft); }
.btn--primary:hover { background: var(--green-700); }
.btn--gold { background: var(--gold); color: var(--green-900); }
.btn--gold:hover { background: var(--gold-soft); }
.btn--ghost { background: transparent; border-color: rgba(255,255,255,0.6); color: var(--white); }
.btn--ghost:hover { background: rgba(255,255,255,0.14); }
.btn--whatsapp { background: #25d366; color: #04361a; }
.btn--whatsapp:hover { background: #38e078; }
.btn--block { width: 100%; justify-content: center; }
.btn svg { width: 1.15em; height: 1.15em; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px max(clamp(20px, 4vw, 48px), calc((100vw - var(--maxw-wide)) / 2));
  transition: background 0.35s var(--ease), padding 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.site-header.scrolled {
  background: rgba(31, 182, 168, 0.94);
  backdrop-filter: saturate(140%) blur(10px);
  box-shadow: 0 1px 0 var(--line);
  padding-top: 12px; padding-bottom: 12px;
}
.brand { display: flex; align-items: center; gap: 11px; color: var(--white); transition: color 0.35s var(--ease); }
.brand--logo {
  flex: none;
  min-width: 0;
  text-decoration: none;
}
.brand-logo-img {
  display: block;
  width: auto;
  height: clamp(48px, 4.4vw, 66px);
  aspect-ratio: 2048 / 865;
  object-fit: contain;
}
.brand-symbol {
  display: block;
  width: auto;
  height: clamp(48px, 4vw, 62px);
  flex: none;
  object-fit: contain;
}
.site-header .brand-symbol--normal { display: none; }
.site-header.scrolled .brand-symbol--reverse { display: none; }
.site-header.scrolled .brand-symbol--normal { display: block; }
.brand-wordmark {
  display: block;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 1.6vw, 1.65rem);
  font-weight: 750;
  letter-spacing: 0;
  line-height: 0.88;
  text-shadow: 0 1px 14px rgba(0,0,0,0.45);
}
.brand-wordmark small {
  display: block;
  margin-top: 0.48em;
  color: var(--gold-soft);
  font-family: var(--font-body);
  font-size: 0.34em;
  font-weight: 750;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}
.scrolled .brand { color: var(--ink); }
.scrolled .brand-wordmark {
  color: var(--green-900);
  text-shadow: none;
}
.scrolled .brand-wordmark small { color: var(--gold); }

.header-actions { display: flex; align-items: center; gap: 14px; }

.nav { display: flex; gap: 26px; margin-right: 8px; }
.nav a {
  color: rgba(255,255,255,0.92); font-size: 0.9rem; font-weight: 500;
  position: relative; transition: color 0.3s var(--ease);
}
.scrolled .nav a { color: var(--green-900); }
.nav a:hover { color: var(--white); }
.scrolled .nav a:hover { color: var(--green-800); }
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -5px; height: 2px; width: 0;
  background: var(--gold); transition: width 0.3s var(--ease);
}
.nav a:hover::after { width: 100%; }

/* Language toggle */
.lang {
  display: inline-flex; align-items: center; border-radius: 100px;
  border: 1.5px solid rgba(255,255,255,0.5); overflow: hidden; backdrop-filter: blur(4px);
}
.scrolled .lang { border-color: var(--line); }
.lang button {
  appearance: none; background: transparent; border: 0; cursor: pointer;
  font-family: var(--font-body); font-weight: 700; font-size: 0.74rem; letter-spacing: 0.05em;
  padding: 6px 12px; color: rgba(255,255,255,0.85); transition: background 0.25s, color 0.25s;
}
.lang button.active { background: var(--gold); color: var(--green-900); }
.scrolled .lang button { color: var(--green-900); }
.scrolled .lang button.active { background: var(--green-900); color: var(--white); }

/* ---------- Hero ---------- */
.hero {
  position: relative; isolation: isolate; min-height: clamp(40rem, 90vh, 48rem); display: flex; align-items: flex-end;
  color: var(--white); overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img, .hero__media video {
  width: 100%; height: 100%; object-fit: cover;
}
.hero__media video { display: none; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(16,42,19,0.28) 0%, rgba(16,42,19,0.05) 32%, rgba(16,42,19,0.0) 50%, rgba(16,42,19,0.55) 84%, rgba(16,42,19,0.82) 100%);
}
.hero__inner { padding-bottom: clamp(40px, 5vw, 64px); padding-top: 140px; }
.hero h1 {
  font-size: clamp(2.8rem, 7vw, 6rem); font-weight: 650; max-width: 16.5ch;
  text-shadow: 0 2px 30px rgba(0,0,0,0.35);
}
.hero h1 em { font-style: italic; color: var(--white); }
.hero__sub {
  font-size: clamp(1.05rem, 1.8vw, 1.35rem); max-width: 46ch; margin-top: 0.4em;
  color: rgba(255,255,255,0.92); text-shadow: 0 1px 16px rgba(0,0,0,0.4);
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 2em; }
.hero__scroll {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase; opacity: 0.8;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.hero__scroll span.line { width: 1px; height: 34px; background: rgba(255,255,255,0.7); animation: drop 1.8s var(--ease) infinite; transform-origin: top; }
@keyframes drop { 0%,100% { transform: scaleY(0.4); opacity: 0.4; } 50% { transform: scaleY(1); opacity: 1; } }

/* ---------- Story ---------- */
.story__grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.story__media { position: relative; }
.story__media img { border-radius: var(--radius); box-shadow: var(--shadow); aspect-ratio: 4/5; object-fit: cover; }
.story__media .badge {
  position: absolute; bottom: -22px; left: -22px; background: var(--turquoise);
  color: var(--green-900);
  border-radius: 14px; padding: 16px 20px; box-shadow: var(--shadow-soft); max-width: 220px;
}
.story__media .badge b { font-family: var(--font-display); color: var(--green-900); }
.story__text h2 { font-size: var(--section-title-size); max-width: var(--section-title-measure); }
.story__text .btn--primary { background: var(--turquoise); color: var(--green-900); }
.story__text .btn--primary:hover { background: var(--turquoise-soft); }

/* ---------- Host ---------- */
.host-panel { background: var(--turquoise); color: var(--green-900); }
.host__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(32px, 6vw, 76px); align-items: center; }
.host__media { margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.host__media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.host__copy h2 { font-size: var(--section-title-size); max-width: var(--section-title-measure); }
.host__copy p { color: var(--green-900); font-size: 1.02rem; max-width: 62ch; }
.host__copy p + p { margin-top: -0.25em; }

/* ---------- Feature (sula) ---------- */
.feature { position: relative; isolation: isolate; color: var(--white); }
.feature__media { position: absolute; inset: 0; z-index: -2; }
.feature__media img, .feature__media video {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.feature.feature--motion-fallback .feature__media img { display: block; }
.feature.feature--motion-fallback .feature__media video { display: none; }
.feature__media video::-webkit-media-controls,
.feature__media video::-webkit-media-controls-panel,
.feature__media video::-webkit-media-controls-play-button,
.feature__media video::-webkit-media-controls-start-playback-button,
.feature__media video::-webkit-media-controls-overlay-play-button {
  display: none !important;
  opacity: 0 !important;
  -webkit-appearance: none;
}
.feature::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(16,42,19,0.86) 0%, rgba(16,42,19,0.55) 48%, rgba(16,42,19,0.12) 100%); }
.feature__inner { padding: clamp(90px, 14vw, 180px) 0; max-width: 540px; }
.feature h2 { font-size: var(--section-title-size); max-width: var(--section-title-measure); }
.feature p { color: rgba(255,255,255,0.9); font-size: 1.08rem; }

/* ---------- Stay / cards ---------- */
.section-head { max-width: 60ch; margin-bottom: clamp(36px, 5vw, 56px); }
.section-head h2 { font-size: var(--section-title-size); max-width: var(--section-title-measure); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center h2 { margin-inline: auto; }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.card {
  background: var(--turquoise); color: var(--green-900); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-soft); transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card__img { aspect-ratio: 4/3; overflow: hidden; }
.card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.card:hover .card__img img { transform: scale(1.06); }
.card__body { padding: 22px 24px 26px; }
.card__body h3 { font-size: 1.3rem; color: var(--green-900); }
.card__body p { color: var(--green-900); margin: 0; font-size: 0.97rem; }

/* ---------- Practical ---------- */
.practical { background: var(--turquoise); color: var(--green-900); }
.practical__layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(460px, 1.22fr);
  gap: clamp(40px, 7vw, 110px);
  align-items: start;
}
.practical__intro {
  position: sticky;
  top: 118px;
  margin-bottom: 0;
}
.practical .lead { color: var(--green-900); }
.practical__grid { display: grid; gap: clamp(16px, 1.8vw, 24px); }
.practical-card {
  position: sticky;
  top: calc(112px + var(--card-offset, 0px));
  z-index: var(--card-layer, 1);
  min-height: clamp(140px, 14vh, 180px);
  padding: clamp(24px, 3.2vw, 38px);
  border: 1px solid rgba(255,255,255,0.18); border-radius: var(--radius);
  background: var(--green-900); color: var(--white);
  box-shadow: 0 22px 60px -30px rgba(16, 42, 19, 0.58);
}
.practical-card:nth-child(1) { --card-offset: 0px; --card-layer: 1; }
.practical-card:nth-child(2) { --card-offset: 18px; --card-layer: 2; }
.practical-card:nth-child(3) { --card-offset: 36px; --card-layer: 3; }
.practical-card:nth-child(4) { --card-offset: 54px; --card-layer: 4; }
.practical-card h3 { color: var(--turquoise-soft); font-size: clamp(1.45rem, 2.2vw, 2rem); }
.practical-card p { margin: 0; color: rgba(255,255,255,0.84); font-size: clamp(1rem, 1.2vw, 1.12rem); max-width: 56ch; }

/* ---------- Experiences ---------- */
.exp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.exp {
  position: relative; isolation: isolate; border-radius: var(--radius); overflow: hidden; min-height: 230px;
  display: flex; align-items: flex-end; color: var(--white); box-shadow: var(--shadow-soft);
}
.exp img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform 0.7s var(--ease); }
.exp::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(16,42,19,0) 35%, rgba(16,42,19,0.78) 100%); }
.exp:hover img { transform: scale(1.07); }
.exp span { padding: 18px 20px; font-family: var(--font-display); font-size: 1.25rem; font-weight: 500; }
.exp--tall { grid-row: span 2; }

/* ---------- Gran Dan callout ---------- */
.grandan { background: var(--turquoise); color: var(--green-900); border-radius: var(--radius); overflow: hidden; }
.grandan__grid { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; }
.grandan__media { min-height: 320px; position: relative; }
.grandan__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.grandan__body { padding: clamp(32px, 5vw, 64px); align-self: center; }
.grandan__body h2 { font-size: var(--section-title-size); max-width: var(--section-title-measure); }
.grandan__body p { color: var(--green-900); }
.grandan .btn--gold { background: var(--green-900); color: var(--white); }
.grandan .btn--gold:hover { background: var(--green-800); }

/* ---------- Itinerary ---------- */
.route-plan { background: var(--green-900); color: var(--white); }
.route-plan__grid { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: clamp(32px, 6vw, 80px); align-items: start; }
.route-plan__intro { position: sticky; top: 110px; }
.route-plan__intro h2 { font-size: var(--section-title-size); max-width: var(--section-title-measure); }
.route-plan__intro p { color: rgba(255,255,255,0.82); font-size: 1.05rem; }
.route-timeline { list-style: none; padding: 0; margin: 0; display: grid; gap: 0; }
.route-timeline li {
  display: grid; grid-template-columns: 92px 1fr; gap: 22px;
  padding: 24px 0; border-top: 1px solid rgba(255,255,255,0.16);
}
.route-timeline li:last-child { border-bottom: 1px solid rgba(255,255,255,0.16); }
.route-timeline strong { color: var(--gold-soft); font-family: var(--font-display); font-size: 1.25rem; }
.route-timeline span { color: rgba(255,255,255,0.86); }

/* ---------- Gallery ---------- */
.gallery { columns: 4; column-gap: 14px; }
.gallery a { display: block; margin-bottom: 14px; border-radius: var(--radius-sm); overflow: hidden; break-inside: avoid; }
.gallery img { width: 100%; height: auto; transition: transform 0.6s var(--ease), filter 0.4s var(--ease); }
.gallery a:hover img { transform: scale(1.05); filter: saturate(1.1); }

/* ---------- FAQ ---------- */
.faq { background: var(--green-900); color: var(--white); }
.faq__grid { display: grid; grid-template-columns: 0.78fr 1.22fr; gap: clamp(32px, 6vw, 72px); align-items: start; }
.faq__intro { position: sticky; top: 110px; }
.faq__intro h2 { font-size: var(--section-title-size); max-width: var(--section-title-measure); }
.faq__items { display: grid; gap: 12px; }
.faq-item {
  border: 1px solid rgba(255,255,255,0.16); border-radius: var(--radius-sm);
  background: var(--turquoise); color: var(--green-900); box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer; list-style: none;
  padding: 18px 22px;
  font-family: var(--font-display); font-size: 1.18rem; font-weight: 650;
  color: var(--green-900);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  float: right;
  font-family: var(--font-body); font-weight: 750; color: var(--green-900);
}
.faq-item[open] summary::after { content: "−"; }
.faq-item p {
  margin: 0; padding: 0 22px 20px;
  color: var(--green-900); font-size: 0.98rem;
}

/* ---------- Reserve ---------- */
.reserve { background: var(--turquoise); color: var(--green-900); }
.reserve__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(32px, 6vw, 72px); align-items: start; }
.reserve__aside h2 { font-size: var(--section-title-size); max-width: var(--section-title-measure); }
.contact-list { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 14px; }
.contact-list li { display: flex; gap: 14px; align-items: center; }
.contact-list .ic {
  width: 42px; height: 42px;
  display: grid; place-items: center; flex: none;
  color: var(--green-800);
}
.contact-list .ic svg { width: 30px; height: 30px; }
.contact-list b { display: block; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--green-900); font-weight: 700; }
.contact-list a, .contact-list span.val { font-size: 1.05rem; color: var(--green-900); }

.form-card { background: var(--green-900); color: var(--white); border-radius: var(--radius); padding: clamp(24px, 4vw, 40px); box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.04em; margin-bottom: 6px; color: rgba(255,255,255,0.78); }
.field input, .field textarea, .field select {
  width: 100%; font-family: inherit; font-size: 1rem; color: var(--ink);
  padding: 12px 14px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.94); transition: border-color 0.25s, box-shadow 0.25s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--leaf); box-shadow: 0 0 0 3px rgba(31,182,168,0.18);
}
.field input[aria-invalid="true"],
.field textarea[aria-invalid="true"],
.field select[aria-invalid="true"] {
  border-color: #b3261e;
  box-shadow: 0 0 0 3px rgba(179, 38, 30, 0.14);
}
.field textarea { resize: vertical; min-height: 96px; }
.form-actions { display: grid; gap: 12px; margin-top: 8px; }
.form-or { text-align: center; font-size: 0.82rem; color: rgba(255,255,255,0.72); position: relative; }
.form-note { font-size: 0.8rem; color: rgba(255,255,255,0.72); margin: 14px 0 0; }
.form-status { margin-top: 12px; font-size: 0.95rem; font-weight: 600; display: none; }
.form-status.ok { display: block; color: var(--turquoise-soft); }
.form-status.err { display: block; color: #ffb4ab; }
.form-card .btn--primary { background: var(--turquoise); color: var(--green-900); }
.form-card .btn--primary:hover { background: var(--turquoise-soft); }

/* ---------- Footer ---------- */
.site-footer { background: var(--green-900); color: rgba(255,255,255,0.82); padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.site-footer h4 { font-family: var(--font-body); text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.74rem; color: var(--gold-soft); margin: 0 0 16px; }
.site-footer a:hover { color: var(--white); }
.footer-brand__logo { color: var(--white); }
.footer-brand__logo .brand-logo-img {
  height: clamp(68px, 6vw, 92px);
}
.footer-brand__logo .brand-symbol { height: clamp(62px, 5.4vw, 82px); }
.footer-brand__logo .brand-wordmark {
  color: var(--cream);
  font-size: clamp(1.5rem, 2.3vw, 2.05rem);
  text-shadow: none;
}
.footer-brand__logo .brand-wordmark small { color: var(--gold-soft); }
.footer-brand__text { margin-top: 18px; max-width: 34ch; }
.footer-muted { opacity: 0.72; }
.footer-socials { display: flex; gap: 12px; margin-top: 22px; }
.social-link {
  width: 44px; height: 44px; border-radius: 999px;
  display: inline-grid; place-items: center;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease);
}
.social-link svg { width: 21px; height: 21px; fill: currentColor; }
.social-link:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.42);
  background: rgba(255,255,255,0.14);
}
.footer-bottom {
  margin-top: 48px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.14);
  display: flex; justify-content: space-between; align-items: center;
  gap: 18px; flex-wrap: wrap; font-size: 0.82rem;
  color: rgba(255,255,255,0.72);
}
.mixxd-credit {
  display: inline-flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.76);
}
.mixxd-credit img { width: auto; height: 20px; opacity: 0.94; }
.mixxd-credit:hover img { opacity: 1; }

/* ---------- Mobile sticky reserve ---------- */
.mobile-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: none; gap: 10px; padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(31,182,168,0.96); backdrop-filter: blur(8px); box-shadow: 0 -1px 0 rgba(16,42,19,0.14);
}
.mobile-cta .btn { flex: 1; padding-top: 0.95em; padding-bottom: 0.95em; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Lightbox ---------- */
.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(8,16,9,0.92); display: none; align-items: center; justify-content: center; padding: 24px; cursor: zoom-out; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 88vh; border-radius: 10px; box-shadow: 0 30px 80px rgba(0,0,0,0.6); }
.lightbox__close { position: absolute; top: 20px; right: 24px; color: #fff; font-size: 2rem; background: none; border: 0; cursor: pointer; line-height: 1; }
.lightbox__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px; border-radius: 999px;
  display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.12);
  color: #fff; cursor: pointer;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease), border-color 0.25s var(--ease);
}
.lightbox__nav:hover {
  transform: translateY(-50%) scale(1.04);
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.2);
}
.lightbox__nav svg { width: 30px; height: 30px; fill: none; stroke: currentColor; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.lightbox__prev { left: clamp(18px, 4vw, 48px); }
.lightbox__next { right: clamp(18px, 4vw, 48px); }

/* ---------- Language visibility ---------- */
[data-lang-show] { display: none; }
html[lang="nl"] [data-lang-show="nl"] { display: revert; }
html[lang="en"] [data-lang-show="en"] { display: revert; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .story__grid { grid-template-columns: 1fr; }
  .story__media { order: -1; }
  .story__media img { aspect-ratio: 16/10; }
  .story__media .badge { left: auto; right: 16px; bottom: 16px; }
  .host__grid,
  .route-plan__grid { grid-template-columns: 1fr; }
  .route-plan__intro { position: static; }
  .practical__layout { grid-template-columns: 1fr; }
  .practical__intro { position: static; }
  .practical__grid { grid-template-columns: repeat(2, 1fr); }
  .practical-card { position: static; min-height: 0; }
  .reserve__grid { grid-template-columns: 1fr; }
  .faq__grid { grid-template-columns: 1fr; }
  .faq__intro { position: static; }
  .grandan__grid { grid-template-columns: 1fr; }
  .grandan__media { min-height: 260px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery { columns: 3; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .hero h1 { font-size: clamp(2.25rem, 10.4vw, 2.75rem); }
  .brand-logo-img { height: 44px; }
  .brand-symbol { height: 42px; }
  .brand-wordmark { font-size: 1.12rem; }
  .brand-wordmark small { font-size: 0.32em; letter-spacing: 0.13em; }
  .footer-brand__logo .brand-symbol { height: 58px; }
  .footer-brand__logo .brand-logo-img { height: 64px; }
  .footer-brand__logo .brand-wordmark { font-size: 1.45rem; }
  .nav { display: none; }
  .cards { grid-template-columns: 1fr; }
  .practical__grid { grid-template-columns: 1fr; }
  .exp-grid { grid-template-columns: 1fr 1fr; }
  .exp span { font-size: 1.05rem; overflow-wrap: anywhere; }
  .exp--tall { grid-row: span 1; }
  .route-timeline li { grid-template-columns: 1fr; gap: 6px; }
  .form-row { grid-template-columns: 1fr; }
  .gallery { columns: 2; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .mobile-cta { display: flex; }
  .site-footer { padding-bottom: 96px; }
  .hero__scroll { display: none; }
  .header-actions .btn--primary { display: none; }
  .lightbox { padding-inline: 14px; }
  .lightbox img { max-width: 100%; max-height: 80vh; }
  .lightbox__nav { width: 44px; height: 44px; background: rgba(8,16,9,0.5); }
  .lightbox__prev { left: 12px; }
  .lightbox__next { right: 12px; }
}

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