/* ============================================================
   CASA DE LEO  ·  Carolina Beach, NC
   Design language: "Pleasure Island Modern"
   Vintage boardwalk warmth, modern editorial confidence.
   Deep Atlantic petrol + warm shell sand + boardwalk coral.
   Type: Fraunces (display) / Archivo (text)
   ============================================================ */

:root {
  /* palette */
  --ink: #11343a;          /* deep Atlantic petrol, primary text */
  --deep: #0b252b;         /* darkest teal, hero overlay + footer */
  --teal: #19565e;         /* mid teal */
  --foam: #8fd0c2;         /* seafoam */
  --foam-soft: #d6ece5;
  --sand: #f6f0e2;         /* warm shell, page background */
  --sand-2: #efe5cf;       /* deeper sand band */
  --cream: #fcf9f1;
  --coral: #ee5436;        /* boardwalk coral, decorative accents */
  --coral-dark: #d23f23;   /* CTA fill: white text passes WCAG AA on this */
  --coral-deeper: #b53a20;
  --gold: #e8a33d;         /* boardwalk lights, stars */
  --line: rgba(17, 52, 58, 0.14);

  /* type */
  --font-display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --font-text: "Archivo", "Helvetica Neue", Arial, sans-serif;

  /* rhythm */
  --pad: clamp(20px, 4.5vw, 56px);
  --section: clamp(72px, 10vw, 140px);
  --radius: 18px;
  --radius-lg: 28px;

  --shadow-card: 0 2px 6px rgba(11, 37, 43, 0.06), 0 18px 44px -18px rgba(11, 37, 43, 0.28);
  --shadow-pop: 0 4px 10px rgba(11, 37, 43, 0.10), 0 30px 70px -24px rgba(11, 37, 43, 0.45);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-text);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--sand);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); font-weight: 600; line-height: 1.04; letter-spacing: -0.01em; }
p { margin: 0 0 1em; }
::selection { background: var(--coral); color: var(--cream); }

/* grain overlay for the whole page */
body::after {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 2000;
  opacity: 0.05;
  background-image: 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.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.7'/%3E%3C/svg%3E");
}

.wrap { max-width: 1240px; margin: 0 auto; padding-inline: var(--pad); }
.wrap--narrow { max-width: 880px; }

/* ---------- shared text styles ---------- */
.eyebrow {
  font-family: var(--font-text);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
}
.eyebrow::before {
  content: "";
  width: 34px; height: 2px;
  background: var(--coral);
  flex: none;
}
.eyebrow--center { justify-content: center; }
.eyebrow--center::after { content: ""; width: 34px; height: 2px; background: var(--coral); flex: none; }
.eyebrow--light { color: var(--foam); }

.h-display { font-size: clamp(38px, 5.4vw, 72px); }
.h-section { font-size: clamp(31px, 4vw, 52px); }
.h-card { font-size: clamp(21px, 2.2vw, 26px); }
.lede { font-size: clamp(17px, 1.6vw, 20px); line-height: 1.65; color: rgba(17, 52, 58, 0.86); }
.swash { font-style: italic; font-weight: 500; color: var(--coral); }
.center { text-align: center; }
.measure { max-width: 62ch; }
.measure--center { margin-inline: auto; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 999px;
  border: 2px solid transparent;
  font-weight: 700;
  font-size: 15.5px;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--coral {
  background: var(--coral-dark);
  color: #fff;
  box-shadow: 0 10px 26px -10px rgba(210, 63, 35, 0.65);
}
.btn--coral:hover { background: var(--coral-deeper); transform: translateY(-2px); box-shadow: 0 16px 32px -12px rgba(210, 63, 35, 0.75); }
.btn--ghost-light {
  border-color: rgba(252, 249, 241, 0.55);
  color: var(--cream);
  background: rgba(11, 37, 43, 0.18);
  backdrop-filter: blur(6px);
}
.btn--ghost-light:hover { border-color: var(--cream); background: rgba(252, 249, 241, 0.14); transform: translateY(-2px); }
.btn--ghost-dark { border-color: rgba(17, 52, 58, 0.35); color: var(--ink); background: transparent; }
.btn--ghost-dark:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn--small { padding: 11px 20px; font-size: 14px; }

/* ---------- header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 900;
  transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  color: var(--cream);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 14px;
  max-width: 1380px;
}
.site-header.is-solid {
  background: rgba(246, 240, 226, 0.92);
  backdrop-filter: blur(12px);
  color: var(--ink);
  box-shadow: 0 1px 0 var(--line);
}
.site-header.is-hidden { transform: translateY(-110%); }

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.01em;
}
.brand svg { width: 40px; height: 40px; flex: none; }
.brand small {
  display: block;
  font-family: var(--font-text);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  opacity: 0.75;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.8vw, 28px);
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  opacity: 0.92;
  transition: opacity 0.15s ease;
}
.nav-links a:hover { opacity: 1; text-decoration: underline; text-underline-offset: 5px; text-decoration-color: var(--coral); text-decoration-thickness: 2px; }

.nav-cta { flex: none; }
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
  color: inherit;
}
.nav-toggle svg { width: 26px; height: 26px; display: block; }

@media (max-width: 980px) {
  .nav-links {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    gap: 8vh;
    background: var(--deep);
    color: var(--cream);
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.32s cubic-bezier(0.6, 0, 0.2, 1), visibility 0.32s;
    z-index: 950;
  }
  .nav-links a { font-size: 24px; font-family: var(--font-display); }
  body.nav-open .nav-links { transform: translateX(0); visibility: visible; }
  .nav-toggle { display: block; z-index: 960; position: relative; }
  .nav-cta { display: none; }
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  color: var(--cream);
  overflow: hidden;
  background: var(--deep);
}
.hero__media, .hero__media video, .hero__media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero__media::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(11, 37, 43, 0.92) 0%, rgba(11, 37, 43, 0.42) 36%, rgba(11, 37, 43, 0.18) 60%, rgba(11, 37, 43, 0.38) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-block: clamp(110px, 14vh, 150px) clamp(48px, 7vh, 84px);
}
.hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--foam);
  text-shadow: 0 1px 10px rgba(11, 37, 43, 0.65);
  margin-bottom: 22px;
}
.hero__kicker svg { width: 18px; height: 18px; }
.hero h1 { color: var(--cream); max-width: 13ch; }
.hero h1 em { font-style: italic; color: var(--foam); }
.hero__sub {
  max-width: 52ch;
  margin-top: 22px;
  font-size: clamp(16.5px, 1.7vw, 19px);
  color: rgba(252, 249, 241, 0.88);
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}
.hero__proof {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 22px;
  margin-top: 26px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(252, 249, 241, 0.85);
}
.hero__proof .star { color: var(--gold); }
.hero__proof span { display: inline-flex; align-items: center; gap: 7px; }
.hero__scroll {
  position: absolute;
  right: clamp(18px, 3vw, 44px);
  bottom: clamp(20px, 4vh, 40px);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(252, 249, 241, 0.7);
  writing-mode: vertical-rl;
  text-decoration: none;
}
.hero__scroll::after {
  content: "";
  width: 2px; height: 54px;
  background: linear-gradient(var(--coral), transparent);
  animation: drip 2.2s ease-in-out infinite;
}
@keyframes drip {
  0% { transform: scaleY(0); transform-origin: top; }
  55% { transform: scaleY(1); transform-origin: top; }
  100% { transform: scaleY(1); opacity: 0; }
}

/* staggered hero entrance */
.hero [data-stagger] { opacity: 0; transform: translateY(26px); animation: rise 0.85s cubic-bezier(0.2, 0.7, 0.2, 1) forwards; }
.hero [data-stagger="1"] { animation-delay: 0.15s; }
.hero [data-stagger="2"] { animation-delay: 0.3s; }
.hero [data-stagger="3"] { animation-delay: 0.48s; }
.hero [data-stagger="4"] { animation-delay: 0.66s; }
.hero [data-stagger="5"] { animation-delay: 0.84s; }
@keyframes rise { to { opacity: 1; transform: none; } }

/* ---------- wave divider ---------- */
.wave-divider { display: block; width: 100%; height: clamp(34px, 5vw, 70px); }

/* ---------- stats band ---------- */
.stats {
  background: var(--sand);
  padding-block: clamp(46px, 6vw, 84px) var(--section);
}
.stats__title { text-align: center; margin-bottom: clamp(34px, 5vw, 60px); }
.stats__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.stat {
  text-align: center;
  padding: 26px 10px 22px;
  border-radius: var(--radius);
  border: 1.5px solid var(--line);
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.stat::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 44px; height: 4px;
  border-radius: 0 0 6px 6px;
  background: var(--coral);
}
.stat:nth-child(2n)::before { background: var(--foam); }
.stat:nth-child(3n)::before { background: var(--gold); }
.stat b {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(38px, 4.6vw, 60px);
  font-weight: 600;
  line-height: 1;
  color: var(--ink);
}
.stat span {
  display: block;
  margin-top: 8px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
}
@media (max-width: 920px) { .stats__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 520px) { .stats__grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- generic section ---------- */
.section { padding-block: var(--section); position: relative; }
.section--cream { background: var(--cream); }
.section--sand2 { background: var(--sand-2); }
.section--deep { background: var(--deep); color: var(--cream); }
.section__head { max-width: 760px; margin-bottom: clamp(40px, 5.5vw, 72px); }
.section__head--center { margin-inline: auto; text-align: center; }

/* ---------- bathroom advantage / suites ---------- */
.suites__claim {
  font-size: clamp(17px, 1.7vw, 20px);
  color: rgba(17, 52, 58, 0.86);
}
.suite-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
@media (max-width: 1080px) { .suite-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .suite-grid { grid-template-columns: 1fr; } }

.suite {
  background: var(--cream);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1.5px solid var(--line);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.suite:hover { transform: translateY(-6px); box-shadow: var(--shadow-pop); }
.suite__img { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.suite__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.suite:hover .suite__img img { transform: scale(1.05); }
.suite__floor {
  position: absolute;
  top: 12px; left: 12px;
  background: rgba(11, 37, 43, 0.82);
  color: var(--cream);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}
.suite__body { padding: 20px 20px 22px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.suite__body h3 { font-size: 21px; }
.suite__bed { font-size: 14.5px; color: rgba(17, 52, 58, 0.78); }
.suite__bath {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--teal);
  background: var(--foam-soft);
  border-radius: 999px;
  padding: 8px 14px;
  align-self: flex-start;
}
.suite__bath svg { width: 15px; height: 15px; flex: none; }

.suites__note {
  margin-top: 26px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15px;
  color: rgba(17, 52, 58, 0.8);
  max-width: 70ch;
}
.suites__note svg { width: 20px; height: 20px; flex: none; color: var(--coral); margin-top: 2px; }

/* ---------- CTA ribbon (repeats through page) ---------- */
.cta-ribbon {
  margin-top: clamp(44px, 6vw, 64px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: var(--deep);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: clamp(22px, 3.4vw, 34px) clamp(22px, 3.6vw, 40px);
  position: relative;
  overflow: hidden;
}
.cta-ribbon::before {
  content: "";
  position: absolute;
  inset: -40% -10% auto auto;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(143, 208, 194, 0.25), transparent 65%);
}
.cta-ribbon__text b { font-family: var(--font-display); font-size: clamp(19px, 2vw, 24px); font-weight: 600; display: block; }
.cta-ribbon__text span { font-size: 14px; color: rgba(252, 249, 241, 0.75); }
.cta-ribbon__btns { display: flex; flex-wrap: wrap; gap: 12px; position: relative; }

/* ---------- the walk ---------- */
.walk { overflow: hidden; }
.walk__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(28px, 4.5vw, 64px);
  align-items: center;
}
@media (max-width: 980px) { .walk__grid { grid-template-columns: 1fr; } }

.video-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-pop);
  aspect-ratio: 16 / 9;
  background: var(--deep);
}
.video-frame video { width: 100%; height: 100%; object-fit: cover; }
.video-frame__play {
  position: absolute; inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
  border: 0;
  background: linear-gradient(to top, rgba(11, 37, 43, 0.75), rgba(11, 37, 43, 0.15) 55%);
  color: var(--cream);
  transition: background 0.25s ease;
}
.video-frame__play:hover { background: linear-gradient(to top, rgba(11, 37, 43, 0.85), rgba(11, 37, 43, 0.3) 60%); }
.video-frame__play .ring {
  width: 84px; height: 84px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--coral);
  box-shadow: 0 0 0 10px rgba(238, 84, 54, 0.3);
  transition: transform 0.2s ease;
}
.video-frame__play:hover .ring { transform: scale(1.08); }
.video-frame__play .ring svg { width: 30px; height: 30px; margin-left: 4px; color: #fff; }
.video-frame__play .video-frame__label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.video-frame.is-playing .video-frame__play { display: none; }

.walk__steps { list-style: none; margin: 28px 0 0; padding: 0; display: grid; gap: 0; position: relative; }
.walk__steps li {
  position: relative;
  padding: 0 0 22px 44px;
  font-size: 15.5px;
  color: rgba(17, 52, 58, 0.85);
}
.walk__steps li::before {
  content: "";
  position: absolute;
  left: 11px; top: 26px; bottom: 0;
  width: 2px;
  background-image: linear-gradient(var(--teal) 50%, transparent 50%);
  background-size: 2px 9px;
  opacity: 0.5;
}
.walk__steps li:last-child::before { display: none; }
.walk__steps li > svg {
  position: absolute;
  left: 0; top: 1px;
  width: 24px; height: 24px;
  color: var(--coral);
}
.walk__steps b { color: var(--ink); }

.gear-card {
  margin-top: 30px;
  background: var(--cream);
  border: 1.5px dashed rgba(17, 52, 58, 0.3);
  border-radius: var(--radius);
  padding: 24px 26px;
}
.gear-card h3 { font-size: 19px; margin-bottom: 4px; }
.gear-card p { font-size: 14px; color: rgba(17, 52, 58, 0.7); margin-bottom: 14px; }
.gear-card ul {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px 18px;
  font-size: 14.5px;
  font-weight: 600;
}
.gear-card li { display: flex; align-items: center; gap: 9px; }
.gear-card li svg { width: 16px; height: 16px; color: var(--coral); flex: none; }
@media (max-width: 460px) { .gear-card ul { grid-template-columns: 1fr; } }

/* ---------- inside / features ---------- */
.feature-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: clamp(40px, 6vw, 64px);
}
@media (max-width: 900px) { .feature-row { grid-template-columns: 1fr; } }
.feature {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4 / 4.6;
  color: var(--cream);
  display: flex;
  align-items: flex-end;
  box-shadow: var(--shadow-card);
}
.feature img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.feature:hover img { transform: scale(1.06); }
.feature::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11, 37, 43, 0.88), rgba(11, 37, 43, 0.05) 55%);
}
.feature figcaption { position: relative; z-index: 2; padding: 24px; }
.feature figcaption b { font-family: var(--font-display); font-size: 22px; font-weight: 600; display: block; margin-bottom: 6px; }
.feature figcaption span { font-size: 14px; color: rgba(252, 249, 241, 0.85); }

/* ---------- gallery ---------- */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 28px;
}
.chip {
  border: 1.5px solid rgba(17, 52, 58, 0.25);
  background: transparent;
  color: var(--ink);
  border-radius: 999px;
  padding: 12px 19px;
  font-size: 13.5px;
  font-weight: 700;
  transition: all 0.18s ease;
}
.chip:hover { border-color: var(--ink); }
.chip.is-active { background: var(--ink); color: var(--cream); border-color: var(--ink); }

.gallery {
  columns: 3;
  column-gap: 14px;
}
@media (max-width: 980px) { .gallery { columns: 2; } }
@media (max-width: 540px) { .gallery { columns: 1; } }
.gallery__item {
  break-inside: avoid;
  margin-bottom: 14px;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: var(--sand-2);
  cursor: zoom-in;
}
.gallery__item img { width: 100%; transition: transform 0.5s ease, filter 0.5s ease; }
.gallery__item:hover img { transform: scale(1.04); }
.gallery__item .gallery__cap {
  position: absolute;
  inset: auto 0 0 0;
  padding: 30px 14px 12px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--cream);
  background: linear-gradient(to top, rgba(11, 37, 43, 0.8), transparent);
  opacity: 0;
  transition: opacity 0.25s ease;
  text-align: left;
}
.gallery__item:hover .gallery__cap { opacity: 1; }
.gallery__item.is-hidden { display: none; }

/* lightbox */
.lightbox {
  position: fixed; inset: 0;
  z-index: 1500;
  background: rgba(11, 37, 43, 0.96);
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 56px);
}
.lightbox.is-open { display: flex; }
.lightbox img {
  max-width: 100%;
  max-height: 82vh;
  border-radius: 10px;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.6);
}
.lightbox figcaption {
  position: absolute;
  bottom: clamp(18px, 4vh, 38px);
  left: 50%;
  transform: translateX(-50%);
  color: rgba(252, 249, 241, 0.85);
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  width: max-content;
  max-width: 86vw;
}
.lightbox button {
  position: absolute;
  background: rgba(252, 249, 241, 0.1);
  border: 1.5px solid rgba(252, 249, 241, 0.3);
  color: var(--cream);
  width: 52px; height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: background 0.15s ease;
}
.lightbox button:hover { background: rgba(252, 249, 241, 0.22); }
.lightbox button svg { width: 22px; height: 22px; }
.lightbox__close { top: 22px; right: 22px; }
.lightbox__prev { left: 18px; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 18px; top: 50%; transform: translateY(-50%); }

/* ---------- orbit band ---------- */
.orbit {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: center;
  color: var(--cream);
  overflow: hidden;
  background: var(--deep);
}
.orbit video, .orbit > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.55;
}
.orbit::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(11, 37, 43, 0.85) 18%, rgba(11, 37, 43, 0.2) 70%);
}
.orbit .wrap { position: relative; z-index: 2; padding-block: clamp(70px, 10vw, 120px); }
.orbit h2 { color: var(--cream); }
.orbit p { max-width: 50ch; color: rgba(252, 249, 241, 0.85); }

/* ---------- island guide ---------- */
.island-intro { max-width: 70ch; }
.postcard-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 1020px) { .postcard-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .postcard-grid { grid-template-columns: 1fr; } }

.postcard {
  background: var(--cream);
  border-radius: var(--radius);
  border: 1.5px solid var(--line);
  padding: 26px 26px 24px;
  position: relative;
  box-shadow: var(--shadow-card);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.postcard:hover { transform: translateY(-5px) rotate(-0.4deg); box-shadow: var(--shadow-pop); }
.postcard__dist {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  align-self: flex-start;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral-dark);
}
.postcard__dist svg { width: 14px; height: 14px; }
.postcard h3 { font-size: 21px; }
.postcard p { font-size: 14.5px; color: rgba(17, 52, 58, 0.8); margin: 0; }
.postcard__tip {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1.5px dashed rgba(17, 52, 58, 0.18);
  font-size: 13.5px;
  font-style: italic;
  color: var(--teal);
}
.postcard__tip b { font-style: normal; font-weight: 700; font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase; display: block; margin-bottom: 4px; color: var(--gold); }

.island-more { margin-top: clamp(36px, 5vw, 52px); text-align: center; }

/* ---------- reviews ---------- */
.reviews { background: var(--deep); color: var(--cream); }
.reviews__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(36px, 5vw, 80px);
  align-items: center;
}
@media (max-width: 900px) { .reviews__grid { grid-template-columns: 1fr; } }
.reviews__score b {
  font-family: var(--font-display);
  font-size: clamp(96px, 13vw, 170px);
  font-weight: 600;
  line-height: 0.9;
  display: block;
  color: var(--cream);
}
.reviews__stars { color: var(--gold); font-size: 24px; letter-spacing: 4px; margin-top: 12px; display: block; }
.reviews__score span.sub { display: block; margin-top: 10px; font-size: 15px; color: rgba(252, 249, 241, 0.75); }
.review-bars { display: grid; gap: 14px; }
.review-bar { display: grid; grid-template-columns: 130px 1fr 44px; align-items: center; gap: 14px; font-size: 14px; font-weight: 600; }
.review-bar .track { height: 6px; border-radius: 4px; background: rgba(252, 249, 241, 0.16); overflow: hidden; }
.review-bar .fill { height: 100%; border-radius: 4px; background: linear-gradient(90deg, var(--foam), var(--gold)); width: 0; transition: width 1.1s cubic-bezier(0.2, 0.7, 0.2, 1); }
.review-bar .num { text-align: right; color: rgba(252, 249, 241, 0.85); font-variant-numeric: tabular-nums; }
.review-tags { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 26px; }
.review-tags span {
  font-size: 13px;
  font-weight: 600;
  padding: 8px 15px;
  border-radius: 999px;
  border: 1.5px solid rgba(252, 249, 241, 0.25);
  color: rgba(252, 249, 241, 0.9);
}
.review-tags b { color: var(--foam); font-weight: 700; }
.reviews__foot { margin-top: 18px; font-size: 13.5px; color: rgba(252, 249, 241, 0.6); }

/* ---------- booking ---------- */
.booking { background: var(--sand); }
.booking__urgency {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(238, 84, 54, 0.1);
  border: 1.5px solid rgba(238, 84, 54, 0.35);
  color: var(--coral-dark);
  font-size: 14px;
  font-weight: 700;
  border-radius: 999px;
  padding: 10px 20px;
  margin-bottom: 26px;
}
.booking__urgency svg { width: 17px; height: 17px; flex: none; }
.book-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.25fr;
  gap: 18px;
  align-items: stretch;
}
@media (max-width: 1040px) { .book-grid { grid-template-columns: 1fr; max-width: 620px; margin-inline: auto; } }

.book-card {
  background: var(--cream);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: var(--shadow-card);
}
.book-card__logo { font-family: var(--font-display); font-weight: 700; font-size: 24px; }
.book-card__logo small { display: block; font-family: var(--font-text); font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--teal); margin-top: 4px; }
.book-card p { font-size: 14.5px; color: rgba(17, 52, 58, 0.8); margin: 0; }
.book-card ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; font-size: 14px; }
.book-card li { display: flex; gap: 9px; align-items: flex-start; }
.book-card li svg { width: 15px; height: 15px; color: var(--coral); flex: none; margin-top: 4px; }
.book-card .btn { margin-top: auto; }

.book-card--direct {
  background: var(--deep);
  color: var(--cream);
  border-color: var(--deep);
  box-shadow: var(--shadow-pop);
  position: relative;
  overflow: hidden;
}
.book-card--direct::before {
  content: "";
  position: absolute;
  top: -90px; right: -90px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(238, 84, 54, 0.35), transparent 65%);
}
.book-card--direct .book-card__logo small { color: var(--foam); }
.book-card--direct p { color: rgba(252, 249, 241, 0.82); }
.book-card--direct .badge {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--coral-dark);
  color: #fff;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 7px 13px;
  border-radius: 999px;
}

/* direct form */
.direct-form { display: grid; gap: 12px; position: relative; }
.direct-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 460px) { .direct-form .row { grid-template-columns: 1fr; } }
.direct-form label { font-size: 11.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--foam); display: grid; gap: 6px; }
.direct-form input, .direct-form textarea, .direct-form select {
  width: 100%;
  font: inherit;
  font-size: 15px;
  color: var(--cream);
  background: rgba(252, 249, 241, 0.08);
  border: 1.5px solid rgba(252, 249, 241, 0.25);
  border-radius: 12px;
  padding: 12px 14px;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.direct-form input:focus, .direct-form textarea:focus, .direct-form select:focus {
  outline: none;
  border-color: var(--foam);
  background: rgba(252, 249, 241, 0.12);
}
.direct-form input::placeholder, .direct-form textarea::placeholder { color: rgba(252, 249, 241, 0.4); }
.direct-form textarea { resize: vertical; min-height: 84px; }
.direct-form select { appearance: none; }
.direct-form option { color: var(--ink); }
.form-status { font-size: 14px; font-weight: 600; min-height: 20px; }
.form-status.ok { color: var(--foam); }
.form-status.err { color: #ffb4a4; }
.direct-form .mailto-alt { font-size: 13px; color: rgba(252, 249, 241, 0.65); }
.direct-form .mailto-alt a { color: var(--foam); }

.direct-trust { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; font-size: 13.5px; color: rgba(252, 249, 241, 0.85); }
.direct-trust li { display: flex; gap: 9px; align-items: flex-start; }
.direct-trust li svg { width: 15px; height: 15px; color: var(--foam); flex: none; margin-top: 3px; }
.direct-steps {
  font-size: 13px;
  color: rgba(252, 249, 241, 0.7);
  border-top: 1.5px dashed rgba(252, 249, 241, 0.25);
  padding-top: 12px;
  margin: 4px 0 0;
}
.direct-steps b { color: var(--foam); font-weight: 700; }

/* ---------- good to know ---------- */
.know-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 56px);
}
@media (max-width: 860px) { .know-grid { grid-template-columns: 1fr; } }
.know-col h3 { font-size: 22px; margin-bottom: 18px; display: flex; align-items: center; gap: 10px; }
.know-col h3 svg { width: 22px; height: 22px; color: var(--coral); }
.know-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 13px; }
.know-list li {
  display: flex;
  gap: 12px;
  font-size: 15px;
  color: rgba(17, 52, 58, 0.85);
  padding-bottom: 13px;
  border-bottom: 1.5px solid rgba(17, 52, 58, 0.08);
}
.know-list li svg { width: 18px; height: 18px; flex: none; color: var(--teal); margin-top: 3px; }
.know-list b { color: var(--ink); }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin-inline: auto; }
.faq details {
  border-bottom: 1.5px solid var(--line);
  padding-block: 6px;
}
.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-block: 16px;
  font-family: var(--font-display);
  font-size: clamp(17px, 1.9vw, 21px);
  font-weight: 600;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .plus {
  flex: none;
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1.5px solid rgba(17, 52, 58, 0.3);
  display: grid;
  place-items: center;
  transition: transform 0.25s ease, background 0.25s ease;
}
.faq summary .plus svg { width: 14px; height: 14px; }
.faq details[open] summary .plus { transform: rotate(45deg); background: var(--coral); border-color: var(--coral); color: #fff; }
.faq details p { font-size: 15.5px; color: rgba(17, 52, 58, 0.82); max-width: 64ch; padding-bottom: 16px; margin: 0; }

/* ---------- footer ---------- */
.site-footer {
  background: var(--deep);
  color: var(--cream);
  padding: clamp(56px, 8vw, 96px) 0 36px;
  position: relative;
  overflow: hidden;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(28px, 5vw, 72px);
  margin-bottom: clamp(40px, 6vw, 64px);
}
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer .brand { font-size: 24px; margin-bottom: 16px; }
.site-footer p { font-size: 14.5px; color: rgba(252, 249, 241, 0.7); max-width: 38ch; }
.footer-col h3 { font-size: 12px; font-family: var(--font-text); font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--foam); margin-bottom: 16px; }
.footer-col a { padding-block: 4px; display: inline-block; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-col a { color: rgba(252, 249, 241, 0.85); text-decoration: none; font-size: 15px; }
.footer-col a:hover { color: var(--cream); text-decoration: underline; text-underline-offset: 4px; text-decoration-color: var(--coral); }
.footer-bottom {
  border-top: 1px solid rgba(252, 249, 241, 0.14);
  padding-top: 26px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  color: rgba(252, 249, 241, 0.5);
}
.footer-sun {
  position: absolute;
  bottom: -120px; right: -60px;
  width: 340px; height: 340px;
  opacity: 0.07;
  pointer-events: none;
}

/* ---------- sticky mobile CTA ---------- */
.sticky-cta {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 800;
  display: none;
  gap: 10px;
  padding: 12px 14px calc(12px + env(safe-area-inset-bottom));
  background: rgba(246, 240, 226, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 -8px 30px rgba(11, 37, 43, 0.15);
  transform: translateY(110%);
  visibility: hidden;
  transition: transform 0.3s ease, visibility 0.3s;
}
.sticky-cta.is-visible { transform: none; visibility: visible; }
.sticky-cta .btn { flex: 1; padding: 13px 10px; font-size: 14px; }
@media (max-width: 760px) { .sticky-cta { display: flex; } }

/* ---------- reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.8s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }

/* ---------- guide page ---------- */
.guide-hero {
  position: relative;
  min-height: 64vh;
  display: flex;
  align-items: flex-end;
  color: var(--cream);
  background: var(--deep);
  overflow: hidden;
}
.guide-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.65; }
.guide-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(11, 37, 43, 0.9), rgba(11, 37, 43, 0.15) 60%); }
.guide-hero .wrap { position: relative; z-index: 2; padding-block: 140px 64px; }
.guide-hero h1 { color: var(--cream); }

.glossary { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 40px; }
@media (max-width: 760px) { .glossary { grid-template-columns: 1fr; } }
.glossary dt { font-family: var(--font-display); font-weight: 600; font-size: 19px; color: var(--coral-dark); }
.glossary dd { margin: 4px 0 18px; font-size: 14.5px; color: rgba(17, 52, 58, 0.8); }

.season-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.season-list li {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 18px;
  background: var(--cream);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 24px;
}
@media (max-width: 620px) { .season-list li { grid-template-columns: 1fr; gap: 6px; } }
.season-list .when { font-weight: 800; font-size: 12.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--coral-dark); padding-top: 3px; }
.season-list b { font-family: var(--font-display); font-size: 18px; font-weight: 600; display: block; }
.season-list p { font-size: 14.5px; color: rgba(17, 52, 58, 0.8); margin: 4px 0 0; }

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .hero [data-stagger] { opacity: 1; transform: none; animation: none; }
}

/* ---------- focus ---------- */
:focus-visible { outline: 3px solid var(--coral); outline-offset: 3px; border-radius: 4px; }
