:root {
  --ink: #173a38;
  --ink-deep: #0e2b29;
  --ink-soft: #526763;
  --paper: #f7f3eb;
  --paper-deep: #eee8dc;
  --white: #fffdf8;
  --sea: #2c7974;
  --sage: #6a765e;
  --sun: #d98961;
  --sand: #d8c4a4;
  --line: rgba(23, 58, 56, .15);
  --shadow: 0 30px 80px rgba(12, 44, 41, .16);
  --display: "Cormorant Garamond", Georgia, serif;
  --body: "Inter", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.no-scroll { overflow: hidden; }
img { display: block; width: 100%; }
a { color: inherit; }
button, input, select { font: inherit; }
button { color: inherit; }
.skip-link { position: fixed; left: -999px; top: 1rem; z-index: 1000; }
.skip-link:focus { left: 1rem; padding: .8rem 1rem; background: white; border-radius: 4px; }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  min-height: 88px;
  padding: 0 max(24px, calc((100vw - 1280px) / 2));
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  color: white;
  transition: min-height .35s ease, color .35s ease, background .35s ease, border-color .35s ease;
}
.site-header::after {
  content: "";
  position: absolute;
  left: max(24px, calc((100vw - 1280px) / 2));
  right: max(24px, calc((100vw - 1280px) / 2));
  bottom: 0;
  height: 1px;
  background: rgba(255,255,255,.25);
}
.site-header.is-scrolled {
  min-height: 72px;
  color: var(--ink);
  background: rgba(247,243,235,.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.site-header.is-scrolled::after { display: none; }
.brand {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  width: max-content;
  text-decoration: none;
}
.brand-seal {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: .69rem;
  font-weight: 600;
  letter-spacing: .12em;
}
.brand-text { display: flex; flex-direction: column; }
.brand-text strong, .footer-brand strong { font: 600 1.25rem/1 var(--display); letter-spacing: .01em; }
.brand-text small, .footer-brand small { margin-top: .25rem; font-size: .62rem; opacity: .7; }
.site-header nav { display: flex; gap: 2.1rem; }
.site-header nav a {
  position: relative;
  text-decoration: none;
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.site-header nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: -.5rem;
  height: 1px;
  background: currentColor;
  transition: right .25s ease;
}
.site-header nav a:hover::after { right: 0; }
.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: .2rem;
}
.language-switcher a {
  min-width: 31px;
  padding: .42rem .35rem;
  border: 1px solid transparent;
  border-radius: 999px;
  text-align: center;
  text-decoration: none;
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .08em;
}
.language-switcher a:hover { border-color: currentColor; }
.language-switcher a[aria-current="page"] { color: var(--ink); background: var(--white); }
.is-scrolled .language-switcher a[aria-current="page"] { color: var(--white); background: var(--ink); }
.header-cta {
  padding: .78rem 1rem;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 2px;
  text-decoration: none;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: background .25s ease, color .25s ease;
}
.header-cta:hover { background: white; color: var(--ink); }
.is-scrolled .header-cta { border-color: var(--ink); }
.is-scrolled .header-cta:hover { background: var(--ink); color: var(--white); }
.menu-button, .mobile-menu { display: none; }

.hero {
  min-height: 100svh;
  position: relative;
  display: grid;
  align-items: end;
  isolation: isolate;
  color: white;
  overflow: hidden;
}
.hero-media, .hero-media img, .hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-media { z-index: -3; }
.hero-media img {
  object-fit: cover;
  object-position: center 46%;
  animation: heroZoom 2.4s cubic-bezier(.16,1,.3,1) both;
}
.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(7,26,25,.78) 0%, rgba(7,26,25,.4) 48%, rgba(7,26,25,.1) 75%),
    linear-gradient(0deg, rgba(7,26,25,.78) 0%, transparent 42%),
    linear-gradient(180deg, rgba(7,26,25,.36), transparent 32%);
}
.hero-content {
  width: min(1280px, calc(100% - 48px));
  margin: auto auto 132px;
}
.hero-badges { display: flex; flex-wrap: wrap; gap: .55rem; margin-bottom: 1.6rem; }
.hero-badges span {
  padding: .48rem .72rem;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 999px;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(10px);
  font-size: .68rem;
  letter-spacing: .04em;
}
.eyebrow {
  margin: 0 0 1rem;
  color: var(--sun);
  font-size: .67rem;
  font-weight: 600;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.eyebrow-light { color: #f0c6ad; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--display); font-weight: 500; letter-spacing: -.035em; }
h1 { max-width: 850px; margin-bottom: 1.2rem; font-size: clamp(4rem, 8vw, 7.8rem); line-height: .79; }
h1 em, h2 em { font-weight: 500; }
.hero-lead { max-width: 610px; margin: 0; font-size: clamp(1rem, 1.5vw, 1.2rem); line-height: 1.65; color: rgba(255,255,255,.83); }
.hero-actions { display: flex; gap: .8rem; margin-top: 2rem; }
.button {
  min-height: 52px;
  padding: 0 1.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  border: 0;
  border-radius: 2px;
  text-decoration: none;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: transform .25s ease, background .25s ease, color .25s ease;
}
.button:hover { transform: translateY(-2px); }
.button-sun { color: white; background: var(--sun); }
.button-sun:hover { background: #c87851; }
.button-ghost { color: white; border: 1px solid rgba(255,255,255,.5); background: transparent; }
.button-ghost:hover { background: white; color: var(--ink); }
.button-dark { color: var(--white); background: var(--ink); }
.button-dark:hover { background: var(--sea); }
.hero-facts {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  min-height: 86px;
  padding: 0 max(24px, calc((100vw - 1280px) / 2));
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  border-top: 1px solid rgba(255,255,255,.22);
  background: rgba(7,26,25,.42);
  backdrop-filter: blur(10px);
}
.hero-facts div { padding: 0 1.5rem; border-right: 1px solid rgba(255,255,255,.18); }
.hero-facts div:first-child { padding-left: 0; }
.hero-facts div:last-child { border: 0; }
.hero-facts strong { display: block; font: 500 1.4rem var(--display); }
.hero-facts span { display: block; margin-top: .18rem; color: rgba(255,255,255,.66); font-size: .66rem; }
.scroll-cue {
  position: absolute;
  right: max(24px, calc((100vw - 1280px) / 2));
  bottom: 105px;
  display: flex;
  align-items: center;
  gap: .75rem;
  color: rgba(255,255,255,.72);
  text-decoration: none;
  font-size: .62rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.scroll-cue i { width: 30px; height: 30px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.38); border-radius: 50%; font-style: normal; }
.hero-enter { animation: heroRise .9s cubic-bezier(.16,1,.3,1) both; }
.hero-enter:nth-child(1) { animation-delay: .25s; }
.hero-enter:nth-child(2) { animation-delay: .35s; }
.hero-enter:nth-child(3) { animation-delay: .45s; }
.hero-enter:nth-child(4) { animation-delay: .55s; }
.hero-enter:nth-child(5) { animation-delay: .65s; }
@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1); } }
@keyframes heroRise { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }

.experience { padding: 130px max(24px, calc((100vw - 1280px) / 2)); background: var(--paper); }
.section-intro {
  display: grid;
  grid-template-columns: 1.05fr .65fr;
  align-items: end;
  gap: clamp(3rem, 9vw, 8rem);
}
.section-intro h2, .gallery-heading h2, .planner-copy h2, .faq-panel h2 {
  margin-bottom: 0;
  font-size: clamp(3rem, 5vw, 5.4rem);
  line-height: .95;
}
.section-intro > p {
  margin: 0 0 .45rem;
  color: var(--ink-soft);
  font-size: .96rem;
  line-height: 1.85;
}
.story-layout {
  margin-top: 7rem;
  display: grid;
  grid-template-columns: 1.05fr .85fr;
  gap: clamp(3rem, 8vw, 7rem);
  align-items: start;
}
.story-visual {
  position: sticky;
  top: 94px;
  height: calc(100svh - 122px);
  min-height: 560px;
  overflow: hidden;
  background: var(--paper-deep);
}
.story-visual picture, .story-visual img { width: 100%; height: 100%; }
.story-visual img { object-fit: cover; transition: opacity .35s ease, transform .8s cubic-bezier(.16,1,.3,1); }
.story-visual.is-changing img { opacity: .2; transform: scale(1.03); }
.story-caption {
  position: absolute;
  left: 1.25rem; right: 1.25rem; bottom: 1.25rem;
  padding: 1rem 1.15rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: white;
  background: rgba(10,39,37,.82);
  backdrop-filter: blur(12px);
}
.story-caption span { width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; font-size: .65rem; }
.story-caption p { margin: 0; font-size: .75rem; letter-spacing: .07em; text-transform: uppercase; }
.story-copy { padding-bottom: 12vh; }
.story-chapter {
  min-height: 75vh;
  padding: 11vh 0 7vh 2.1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid var(--line);
  opacity: .46;
  transition: opacity .45s ease, border-color .45s ease;
}
.story-chapter.is-active { opacity: 1; border-left-color: var(--sun); }
.chapter-label {
  margin-bottom: 1rem;
  color: var(--sun);
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.story-chapter h3 { max-width: 560px; margin-bottom: 1.2rem; font-size: clamp(2.5rem, 4vw, 4.2rem); line-height: .98; }
.story-chapter > p { max-width: 570px; margin-bottom: 2rem; color: var(--ink-soft); line-height: 1.8; }
.chapter-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .65rem;
}
.chapter-list li {
  padding: .85rem 0;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: .74rem;
}
.chapter-list li::before { content: "✓"; margin-right: .55rem; color: var(--sun); }
.coast-feature {
  min-height: 690px;
  position: relative;
  margin-top: 4rem;
  display: flex;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
  color: white;
  background: var(--ink);
}
.coast-feature picture, .coast-feature picture img, .coast-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.coast-feature picture { z-index: -2; }
.coast-feature img { object-fit: cover; object-position: center; transition: transform 1.2s cubic-bezier(.16,1,.3,1); }
.coast-feature:hover img { transform: scale(1.025); }
.coast-shade {
  z-index: -1;
  background: linear-gradient(0deg, rgba(7,26,25,.88) 0%, rgba(7,26,25,.32) 54%, rgba(7,26,25,.06) 78%);
}
.coast-copy { width: min(820px, calc(100% - 4rem)); padding: clamp(2rem, 6vw, 5rem); }
.coast-copy h3 { margin-bottom: 1.2rem; font-size: clamp(3rem, 5.3vw, 5.6rem); line-height: .88; }
.coast-copy > p:not(.eyebrow) { max-width: 620px; margin-bottom: 1.7rem; color: rgba(255,255,255,.75); line-height: 1.7; }
.coast-facts { display: flex; flex-wrap: wrap; gap: .7rem; }
.coast-facts span { padding: .75rem 1rem; border: 1px solid rgba(255,255,255,.3); background: rgba(255,255,255,.08); backdrop-filter: blur(8px); font-size: .68rem; }
.coast-facts strong { margin-right: .35rem; font: 500 1.15rem var(--display); }
.meal-banner {
  margin-top: 4rem;
  padding: clamp(2rem, 5vw, 4.5rem);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(1.5rem, 5vw, 4rem);
  color: white;
  background: var(--ink);
}
.meal-number {
  width: 84px; height: 84px;
  display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 50%;
  font: 500 2rem var(--display);
}
.meal-banner h3 { margin-bottom: .7rem; font-size: clamp(1.8rem, 3vw, 3rem); line-height: 1.05; }
.meal-banner p:last-child { max-width: 760px; margin-bottom: 0; color: rgba(255,255,255,.66); line-height: 1.7; font-size: .82rem; }
.meal-banner > a { color: white; text-decoration: none; font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; white-space: nowrap; }
.meal-banner > a span { margin-left: .5rem; color: var(--sun); }
.gallery { padding-top: 140px; }
.gallery-heading { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 2rem; margin-bottom: 3rem; }
.gallery-heading .eyebrow { grid-column: 1 / -1; margin-bottom: -1rem; }
.gallery-heading h2 { max-width: 760px; }
.gallery-heading > p { margin: 0 0 .5rem; color: var(--ink-soft); font-size: .78rem; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 260px;
  gap: .75rem;
}
.gallery-item {
  position: relative;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: var(--paper-deep);
  cursor: zoom-in;
}
.gallery-wide { grid-column: span 2; }
.gallery-feature { grid-column: span 2; grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s cubic-bezier(.16,1,.3,1), filter .4s ease; }
.gallery-item:hover img { transform: scale(1.045); filter: brightness(.82); }
.gallery-item span {
  position: absolute;
  left: 1rem; bottom: 1rem;
  padding: .58rem .75rem;
  color: white;
  background: rgba(10,39,37,.75);
  backdrop-filter: blur(8px);
  font-size: .63rem;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.plan { background: var(--white); }
.trust-band {
  padding: 100px max(24px, calc((100vw - 1280px) / 2));
  display: grid;
  grid-template-columns: 1.5fr .72fr .72fr 1fr;
  align-items: stretch;
  gap: .75rem;
  color: white;
  background: var(--ink);
}
.trust-copy { padding-right: 2rem; }
.trust-copy h2 { margin-bottom: 1.25rem; font-size: clamp(2.8rem, 4vw, 4.5rem); line-height: .96; }
.trust-copy > p:last-child { max-width: 520px; margin-bottom: 0; color: rgba(255,255,255,.63); line-height: 1.7; font-size: .85rem; }
.rating-card {
  min-height: 220px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: end;
  border: 1px solid rgba(255,255,255,.18);
}
.rating-card strong { font: 500 clamp(3rem, 5vw, 4.5rem)/.9 var(--display); }
.rating-card span { margin-top: 1rem; font: 500 1.35rem var(--display); }
.rating-card small { margin-top: .25rem; color: rgba(255,255,255,.5); font-size: .65rem; }
.rating-themes { background: rgba(255,255,255,.06); }
.rating-themes span { margin: 0 0 auto; color: #f0c6ad; font: 600 .62rem var(--body); letter-spacing: .13em; text-transform: uppercase; }
.rating-themes p { margin: 0; font: 500 1.5rem/1.3 var(--display); }
.planner-wrap {
  padding: 130px max(24px, calc((100vw - 1180px) / 2));
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(3rem, 9vw, 8rem);
  align-items: center;
}
.planner-copy h2 { margin-bottom: 1.6rem; }
.planner-copy > p { max-width: 500px; color: var(--ink-soft); line-height: 1.8; }
.host-note { margin-top: 2.1rem; padding-top: 1.7rem; display: flex; align-items: center; gap: 1rem; border-top: 1px solid var(--line); }
.host-monogram { width: 50px; height: 50px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 50%; color: white; background: var(--sun); font: 500 .78rem var(--display); }
.host-note p { margin: 0; color: var(--ink-soft); font-size: .73rem; line-height: 1.55; }
.host-note strong { color: var(--ink); }
.planner-card { padding: clamp(1.5rem, 4vw, 3.1rem); background: var(--paper); box-shadow: var(--shadow); }
.field-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .75rem; }
label { display: flex; flex-direction: column; gap: .55rem; color: var(--ink-soft); font-size: .65rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
select {
  min-height: 54px;
  padding: 0 .9rem;
  border: 1px solid var(--line);
  border-radius: 0;
  color: var(--ink);
  background: var(--white);
}
.fit-result { margin: 1rem 0; padding: 1.2rem; display: flex; align-items: flex-start; gap: 1rem; background: #e2eee8; }
.fit-result.fit-warning { background: #f3e3da; }
.fit-icon { width: 38px; height: 38px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 50%; color: white; background: var(--sea); font-weight: 600; }
.fit-warning .fit-icon { background: var(--sun); }
.fit-result small { display: block; margin-bottom: .28rem; color: var(--sea); font-size: .61rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.fit-warning small { color: #a65e40; }
.fit-result h3 { margin-bottom: .3rem; font-size: 1.4rem; }
.fit-result p { margin: 0; color: var(--ink-soft); font-size: .73rem; line-height: 1.5; }
.booking-actions { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 1rem; }
.platform-link { color: var(--ink); font-size: .7rem; font-weight: 600; text-underline-offset: 5px; }
.copy-plan { margin-top: .9rem; padding: .5rem 0; border: 0; border-bottom: 1px solid var(--line); background: transparent; font-size: .66rem; cursor: pointer; }
.copy-status { min-height: 1rem; margin: .35rem 0 0; color: var(--sea); font-size: .62rem; }
.arrival-times { margin-top: 1.2rem; padding-top: 1.2rem; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.arrival-times div { padding: 0 .8rem; border-right: 1px solid var(--line); }
.arrival-times div:first-child { padding-left: 0; }
.arrival-times div:last-child { border: 0; }
.arrival-times span, .arrival-times strong { display: block; }
.arrival-times span { color: var(--ink-soft); font-size: .6rem; text-transform: uppercase; letter-spacing: .08em; }
.arrival-times strong { margin-top: .25rem; font: 500 1.1rem var(--display); }
.essentials-grid {
  padding: 0 max(24px, calc((100vw - 1280px) / 2)) 130px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.faq-panel, .location-panel { min-height: 650px; background: var(--paper); }
.faq-panel { padding: clamp(2rem, 5vw, 4.5rem); }
.faq-panel h2 { margin-bottom: 2.4rem; font-size: clamp(2.6rem, 4vw, 4.3rem); }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary {
  position: relative;
  padding: 1.3rem 2.2rem 1.3rem 0;
  list-style: none;
  cursor: pointer;
  font: 500 1.15rem var(--display);
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: .25rem; top: 1.25rem; color: var(--sun); font: 400 1.4rem var(--body); }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { padding: 0 2rem 1.3rem 0; margin: 0; color: var(--ink-soft); font-size: .78rem; line-height: 1.65; }
.location-panel { position: relative; overflow: hidden; }
.location-panel iframe { width: 100%; height: 100%; min-height: 650px; border: 0; filter: grayscale(.35) saturate(.75); }
.location-card {
  position: absolute;
  left: 1.2rem; right: 1.2rem; bottom: 1.2rem;
  padding: 1.5rem;
  background: rgba(255,253,248,.94);
  backdrop-filter: blur(12px);
}
.location-card h3 { margin-bottom: .4rem; font-size: 2rem; }
.location-card > p:not(.eyebrow) { color: var(--ink-soft); font-size: .75rem; }
.location-card > div { margin-top: 1.1rem; padding-top: 1rem; display: flex; flex-wrap: wrap; justify-content: space-between; gap: .75rem; border-top: 1px solid var(--line); }
.location-card a { font-size: .68rem; font-weight: 600; text-underline-offset: 5px; }
.final-cta {
  min-height: 680px;
  position: relative;
  padding: 6rem max(24px, calc((100vw - 1280px) / 2));
  display: flex;
  align-items: center;
  isolation: isolate;
  color: white;
  overflow: hidden;
}
.final-cta picture, .final-cta picture img, .final-overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.final-cta picture { z-index: -2; }
.final-cta img { object-fit: cover; object-position: center; }
.final-overlay { z-index: -1; background: linear-gradient(90deg, rgba(7,26,25,.82), rgba(7,26,25,.2)); }
.final-cta > div:last-child { max-width: 700px; }
.final-cta h2 { margin-bottom: 2rem; font-size: clamp(4rem, 7vw, 7rem); line-height: .82; }

footer {
  min-height: 135px;
  padding: 2rem max(24px, calc((100vw - 1280px) / 2));
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  color: white;
  background: var(--ink-deep);
}
.footer-brand { display: flex; align-items: center; gap: .75rem; }
.footer-brand > div { display: flex; flex-direction: column; }
footer > p { margin: 0; color: rgba(255,255,255,.45); font-size: .63rem; text-align: center; }
footer > div:last-child { justify-self: end; display: flex; gap: 1.4rem; }
footer a { font-size: .68rem; text-underline-offset: 5px; }
.mobile-book-bar { display: none; }

.lightbox {
  width: min(1000px, calc(100% - 32px));
  padding: 0;
  border: 0;
  background: transparent;
  overflow: visible;
}
.lightbox::backdrop { background: rgba(5,22,21,.9); backdrop-filter: blur(8px); }
.lightbox img { max-height: 80vh; object-fit: contain; background: #0b2624; }
.lightbox p { margin: .8rem 0 0; color: white; text-align: center; font-size: .72rem; letter-spacing: .06em; }
.lightbox button { position: absolute; right: 0; top: -48px; width: 38px; height: 38px; border: 1px solid rgba(255,255,255,.45); border-radius: 50%; color: white; background: transparent; font-size: 1.4rem; cursor: pointer; }

.reveal { opacity: 0; transform: translateY(34px); transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.gallery-item:nth-child(2) { transition-delay: .08s; }
.gallery-item:nth-child(3) { transition-delay: .14s; }
.gallery-item:nth-child(4) { transition-delay: .08s; }
.gallery-item:nth-child(5) { transition-delay: .14s; }
.gallery-item:nth-child(6) { transition-delay: .2s; }
.gallery-item:nth-child(8) { transition-delay: .08s; }
.gallery-item:nth-child(9) { transition-delay: .14s; }
.gallery-item:nth-child(10) { transition-delay: .2s; }

@media (max-width: 1080px) {
  .site-header { grid-template-columns: 1fr auto; }
  .site-header nav, .site-header .header-actions { display: none; }
  .menu-button {
    justify-self: end;
    width: 42px; height: 42px;
    padding: 0;
    display: grid;
    align-content: center;
    gap: 6px;
    border: 0;
    background: transparent;
    cursor: pointer;
  }
  .menu-button span { width: 24px; height: 1px; background: currentColor; transition: transform .25s ease; }
  .menu-button[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .mobile-menu {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    padding: 1rem 24px 1.5rem;
    display: flex;
    flex-direction: column;
    color: var(--ink);
    background: var(--paper);
    border-bottom: 1px solid var(--line);
  }
  .mobile-menu[hidden] { display: none; }
  .mobile-menu a { padding: .9rem 0; border-bottom: 1px solid var(--line); text-decoration: none; font: 500 1.25rem var(--display); }
  .mobile-languages { padding-top: 1rem; display: flex; gap: .55rem; }
  .mobile-languages a { min-width: 88px; padding: .7rem .8rem; border: 1px solid var(--line); font: 600 .68rem var(--body); letter-spacing: .08em; text-align: center; text-transform: uppercase; }
  .mobile-languages a[aria-current="page"] { color: white; background: var(--ink); }
  .story-layout { grid-template-columns: .9fr 1.1fr; gap: 3rem; }
  .trust-band { grid-template-columns: 1.5fr 1fr 1fr; }
  .rating-themes { grid-column: 2 / -1; min-height: 130px; }
  .planner-wrap { grid-template-columns: 1fr; }
  .planner-copy { max-width: 750px; }
}

@media (max-width: 760px) {
  .site-header { min-height: 74px; padding-left: 16px; padding-right: 16px; }
  .brand-seal { width: 38px; height: 38px; }
  .brand-text strong { font-size: 1.12rem; }
  .hero { min-height: 760px; }
  .hero-media img { object-position: 61% center; }
  .hero-shade { background: linear-gradient(0deg, rgba(7,26,25,.88) 0%, rgba(7,26,25,.25) 72%), linear-gradient(180deg, rgba(7,26,25,.4), transparent 35%); }
  .hero-content { width: calc(100% - 32px); margin-bottom: 148px; }
  .hero-badges span:nth-child(3) { display: none; }
  h1 { font-size: clamp(3.7rem, 16vw, 5.2rem); line-height: .82; }
  .hero-lead { max-width: 92%; font-size: .95rem; }
  .hero-actions { align-items: stretch; flex-direction: column; max-width: 300px; }
  .hero-facts { min-height: 106px; padding: 0 16px; grid-template-columns: repeat(2, 1fr); gap: .55rem 0; }
  .hero-facts div { padding: 0 .7rem; }
  .hero-facts div:nth-child(2) { border: 0; }
  .hero-facts div:nth-child(3) { padding-left: 0; }
  .hero-facts strong { font-size: 1.02rem; }
  .hero-facts span { font-size: .56rem; }
  .scroll-cue { display: none; }
  .experience { padding: 90px 16px; }
  .section-intro { grid-template-columns: 1fr; gap: 1.5rem; }
  .section-intro h2, .gallery-heading h2, .planner-copy h2, .faq-panel h2 { font-size: clamp(2.8rem, 13vw, 4rem); }
  .story-layout { margin-top: 4rem; grid-template-columns: 1fr; gap: 0; }
  .story-visual { top: 74px; height: 48vh; min-height: 330px; z-index: 2; }
  .story-copy { padding: 0; }
  .story-chapter { min-height: auto; padding: 4.5rem 0 4.5rem 1.2rem; opacity: 1; }
  .story-chapter h3 { font-size: 2.9rem; }
  .chapter-list { grid-template-columns: 1fr; }
  .meal-banner { margin-top: 2rem; grid-template-columns: auto 1fr; align-items: start; }
  .meal-number { width: 62px; height: 62px; font-size: 1.5rem; }
  .meal-banner > a { grid-column: 2; }
  .coast-feature { min-height: 540px; margin: 1rem -16px 0; }
  .coast-feature img { object-position: 54% center; }
  .coast-copy { width: 100%; padding: 2rem 16px; }
  .coast-copy h3 { font-size: 3.15rem; }
  .gallery { padding-top: 100px; }
  .gallery-heading { grid-template-columns: 1fr; }
  .gallery-heading .eyebrow { margin-bottom: 0; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 210px; }
  .gallery-wide { grid-column: span 2; }
  .gallery-feature { grid-column: span 2; grid-row: span 2; }
  .trust-band { padding: 84px 16px; grid-template-columns: repeat(2, 1fr); }
  .trust-copy { grid-column: 1 / -1; padding: 0 0 1.5rem; }
  .trust-copy h2 { font-size: 3.4rem; }
  .rating-card { min-height: 180px; padding: 1.1rem; }
  .rating-card strong { font-size: 3.2rem; }
  .rating-card span { font-size: 1.1rem; }
  .rating-themes { grid-column: 1 / -1; min-height: 140px; }
  .planner-wrap { padding: 90px 16px; gap: 2.5rem; }
  .planner-card { padding: 1rem; }
  .field-grid { grid-template-columns: 1fr; }
  .booking-actions { grid-template-columns: 1fr; }
  .button-dark { width: 100%; }
  .platform-link { padding: .7rem 0; text-align: center; }
  .arrival-times { grid-template-columns: repeat(3, 1fr); }
  .arrival-times div { padding: 0 .45rem; }
  .arrival-times strong { font-size: .9rem; }
  .essentials-grid { padding: 0 16px 90px; grid-template-columns: 1fr; }
  .faq-panel, .location-panel { min-height: auto; }
  .faq-panel { padding: 2rem 1.25rem; }
  .location-panel iframe { min-height: 560px; }
  .final-cta { min-height: 650px; padding: 5rem 16px; }
  .final-cta img { object-position: 60% center; }
  .final-cta h2 { font-size: 4.3rem; }
  footer { padding: 2rem 16px 100px; grid-template-columns: 1fr; }
  footer > p { text-align: left; }
  footer > div:last-child { justify-self: start; }
  .mobile-book-bar {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 45;
    padding: .7rem;
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    gap: .5rem;
    background: rgba(247,243,235,.96);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--line);
    transform: translateY(110%);
    transition: transform .35s ease;
  }
  .mobile-book-bar.is-visible { transform: translateY(0); }
  .mobile-book-bar a { min-height: 48px; display: grid; place-items: center; border: 1px solid var(--ink); text-decoration: none; font-size: .67rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
  .mobile-book-bar a:last-child { color: white; background: var(--ink); }
}

@media (max-width: 430px) {
  .gallery-grid { grid-auto-rows: 175px; }
  .meal-banner { padding: 1.5rem 1rem; }
  .meal-banner h3 { font-size: 1.85rem; }
  .story-caption { left: .75rem; right: .75rem; bottom: .75rem; }
}

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