/* ================ TOKENS ================ */
:root {
  /* Light sand-cream theme */
  --bg: #f7f0df;
  --bg-2: #ebe0c7;
  --bg-3: #ffffff;
  --ink: #0a1f33;
  --ink-2: #3e5063;
  --ink-3: #7a8896;
  --line: rgba(10,31,51,0.10);
  --line-2: rgba(10,31,51,0.20);

  /* Dark surfaces — used by hero, footer, gate, marquee */
  --dark: #06121d;
  --dark-2: #0a1f33;
  --dark-ink: #f4f1ea;
  --dark-ink-2: #c9d4de;
  --dark-ink-3: #8aa0b3;
  --dark-line: rgba(255,255,255,0.10);
  --dark-line-2: rgba(255,255,255,0.18);

  --accent: #ff8a3d;
  --accent-2: #ffb070;
  --accent-dark: #e56a1c;
  --teal: #1aa8d8;
  --teal-2: #58b7d8;
  --sand: #e8d5b7;
  --good: #2e9d6a;
  --bad: #d44848;

  --radius: 8px;
  --radius-lg: 8px;
  --shadow-sm: 0 4px 14px -6px rgba(10,31,51,.20), 0 2px 6px -3px rgba(10,31,51,.10);
  --shadow: 0 30px 80px -30px rgba(10,31,51,.30), 0 10px 30px -15px rgba(10,31,51,.18);
  --shadow-lg: 0 40px 100px -30px rgba(10,31,51,.40), 0 20px 50px -20px rgba(10,31,51,.22);
  --shadow-dark: 0 30px 80px -30px rgba(0,0,0,.6), 0 10px 30px -15px rgba(0,0,0,.4);

  --container: 1180px;
  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
}

/* ================ RESET ================ */
*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Custom scrollbar (desktop) */
@media (pointer: fine) {
  ::-webkit-scrollbar { width: 12px; height: 12px; }
  ::-webkit-scrollbar-track { background: var(--bg-2); }
  ::-webkit-scrollbar-thumb { background: linear-gradient(180deg, var(--accent), var(--accent-dark)); border-radius: 6px; border: 2px solid var(--bg-2); }
  ::-webkit-scrollbar-thumb:hover { background: linear-gradient(180deg, var(--accent-2), var(--accent)); }
}

/* Selection */
::selection { background: var(--accent); color: var(--dark); }
img,svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
h1,h2,h3,h4,h5 { font-family: 'Fraunces', Georgia, serif; font-weight: 700; letter-spacing: 0; line-height: 1.1; margin: 0 0 .5em; overflow-wrap: normal; text-wrap: balance; }
h1 { font-size: clamp(2.6rem, 6vw, 5rem); font-weight: 900; letter-spacing: 0; }
h2 { font-size: clamp(2rem, 3.8vw, 3rem); letter-spacing: 0; }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.05rem; }
p { margin: 0 0 1em; color: var(--ink-2); }
small, .fineprint { color: var(--ink-3); font-size: .9rem; }

/* Reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease-out), transform .9s var(--ease-out); }
.reveal.is-in { opacity: 1; transform: translateY(0); }
.reveal.reveal--delay-1 { transition-delay: .08s; }
.reveal.reveal--delay-2 { transition-delay: .16s; }
.reveal.reveal--delay-3 { transition-delay: .24s; }
.reveal.reveal--delay-4 { transition-delay: .32s; }
.visually-hidden { position: absolute !important; clip: rect(1px,1px,1px,1px); width: 1px; height: 1px; overflow: hidden; }

/* ================ LAYOUT ================ */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; min-width: 0; }
.container--narrow { max-width: 820px; }
.section { padding: clamp(64px, 9vw, 110px) 0; position: relative; }
#pitch.section { padding-top: clamp(12px, 2vw, 24px); }
#pitch .reveal { opacity: 1; transform: none; }
.section--alt { background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%); position: relative; }
.section__head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section__head .lead { font-size: 1.1rem; color: var(--ink-2); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .78rem; font-weight: 700; letter-spacing: 0;
  text-transform: uppercase; color: var(--accent-dark); margin-bottom: 14px;
}
.eyebrow::before {
  content: ""; width: 28px; height: 2px; background: var(--accent); border-radius: 2px;
}
.section__head .eyebrow, .center .eyebrow { justify-content: center; }
.section__head .eyebrow::before, .center .eyebrow::before { display: inline-block; }
.lead { font-size: 1.15rem; color: var(--ink-2); }
.prose p { font-size: 1.05rem; }
.two-col { display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: start; }
@media (max-width: 760px) { .two-col { grid-template-columns: 1fr; gap: 24px; } }

/* ================ BUTTONS ================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 24px; border-radius: 999px;
  font-weight: 600; font-size: .98rem; letter-spacing: 0;
  border: 1.5px solid transparent; transition: all .2s var(--ease);
  text-align: center; white-space: nowrap;
}
.btn--primary { background: var(--accent); color: #1a0d04; border-color: var(--accent); }
.btn--primary:hover { background: var(--accent-2); border-color: var(--accent-2); transform: translateY(-1px); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn--ghost:hover { background: rgba(255,255,255,0.05); border-color: var(--ink); }
.btn--block { width: 100%; }

/* ================ NAV ================ */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 12px 28px;
  background: rgba(250, 245, 232, .82);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid rgba(10,31,51,.08);
  transition: background .3s, box-shadow .3s, padding .3s;
}
.nav.is-scrolled {
  background: rgba(250, 245, 232, .95);
  box-shadow: 0 6px 24px -12px rgba(10,31,51,.18);
  padding: 8px 28px;
}
.nav__brand {
  display: inline-flex; align-items: center;
  transition: transform .15s;
}
.nav__brand:hover { transform: translateY(-1px); }
.brand-logo { display: block; width: auto; height: 52px; }
@media (max-width: 540px) { .brand-logo { height: 40px; } }
.nav__links { display: flex; gap: 28px; }
.nav__links a { font-size: .94rem; color: var(--ink-2); transition: color .15s; position: relative; padding: 6px 0; font-weight: 500; }
.nav__links a:hover { color: var(--ink); }
.nav__links a::after {
  content: ""; position: absolute; left: 50%; right: 50%; bottom: -2px; height: 2px;
  background: var(--accent); border-radius: 2px;
  transition: left .25s var(--ease-out), right .25s var(--ease-out);
}
.nav__links a:hover::after { left: 0; right: 0; }
.nav__links a[aria-current="page"] { color: var(--ink); font-weight: 600; }
.nav__links a[aria-current="page"]::after { left: 0; right: 0; }
.nav__cta { padding: 10px 18px; font-size: .9rem; }
@media (max-width: 820px) { .nav__links { display: none; } }
@media (max-width: 480px) { .nav__cta { display: none; } }

/* ================ HERO ================ */
.hero {
  position: relative;
  min-height: clamp(540px, calc(100svh - 172px), 700px);
  display: flex; align-items: center; justify-content: flex-start;
  overflow: hidden;
  padding: clamp(54px, 6vw, 84px) 24px clamp(70px, 7vw, 94px);
  text-align: left;
  color: var(--ink);
  isolation: isolate;
}
.hero h1, .hero h2 { color: var(--ink); }
.hero p { color: var(--ink-2); }
.hero__bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(90deg, rgba(247,240,223,.98) 0%, rgba(247,240,223,.88) 38%, rgba(247,240,223,.32) 66%, rgba(6,18,29,.32) 100%),
    linear-gradient(180deg, rgba(247,240,223,.10) 0%, rgba(247,240,223,.06) 58%, rgba(247,240,223,.92) 100%),
    url("assets/4.jpg") center / cover no-repeat;
}
.hero__bg::before {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(115deg, transparent 0 62%, rgba(255,255,255,.22) 62% 62.4%, transparent 62.4%),
    radial-gradient(circle at 20% 80%, rgba(10,31,51,.06) 1px, transparent 1px) 0 0 / 64px 64px;
  opacity: .55;
  animation: drift 70s linear infinite;
}
@keyframes drift {
  from { background-position: 0 0, 0 0; }
  to { background-position: 60px 60px, 80px 80px; }
}
/* Wave silhouettes */
.hero__bg::after {
  content: ""; position: absolute; left: -10%; right: -10%; bottom: -2px; height: 112px;
  background:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 160' preserveAspectRatio='none'><path d='M0,90 C240,150 480,20 720,60 C960,100 1200,150 1440,80 L1440,160 L0,160 Z' fill='%23f7f0df' opacity='.94'/><path d='M0,110 C260,170 500,40 720,80 C960,120 1200,170 1440,100 L1440,160 L0,160 Z' fill='%23ebe0c7' opacity='.72'/></svg>") no-repeat center bottom / 100% 100%;
}
.hero__inner { position: relative; z-index: 2; width: 100%; max-width: min(760px, 60vw); margin-left: max(0px, calc((100vw - var(--container)) / 2)); }
.hero__logo {
  display: block;
  width: auto;
  max-width: min(330px, 86%);
  height: auto;
  margin: 0 0 26px;
  filter: drop-shadow(0 16px 34px rgba(247,240,223,.65)) drop-shadow(0 10px 26px rgba(10,31,51,.18));
}
@media (max-width: 600px) { .hero__logo { margin-bottom: 24px; } }
.hero h1 { font-size: clamp(2.45rem, 4.55vw, 3.95rem); margin-top: 8px; margin-bottom: .34em; }
.hero__sub { font-size: clamp(1.03rem, 1.35vw, 1.22rem); color: var(--ink-2); max-width: 610px; margin: 0 0 28px; line-height: 1.52; }
.hero__cta { display: flex; gap: 14px; justify-content: flex-start; flex-wrap: wrap; margin-bottom: 32px; }
.hero__chips { list-style: none; padding: 0; margin: 0; display: flex; gap: 10px; flex-wrap: wrap; justify-content: flex-start; max-width: 760px; }
.hero__chips li {
  padding: 9px 14px; border-radius: 999px; font-size: .84rem; color: var(--ink);
  border: 1px solid var(--line-2); background: rgba(255,255,255,.6); backdrop-filter: blur(8px);
  font-weight: 500; box-shadow: var(--shadow-sm);
}
.hero__chips li::before { content: "★"; margin-right: 6px; color: var(--accent); }
.hero__scroll {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  z-index: 3; opacity: .85; font-size: 1.3rem; color: var(--ink);
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.7); border: 1px solid var(--line-2);
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-sm);
  animation: bob 2s ease-in-out infinite;
  transition: background .15s, box-shadow .2s;
}
.hero__scroll:hover { background: #fff; box-shadow: var(--shadow); }
@keyframes bob { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(6px); } }

/* ================ PAGE HERO (inner pages) ================ */
.page-hero {
  position: relative;
  padding: clamp(64px, 7vw, 96px) 0 clamp(38px, 5vw, 56px);
  overflow: hidden;
  text-align: center;
  isolation: isolate;
  min-height: clamp(260px, 32vw, 360px);
  display: flex;
  align-items: center;
}
.page-hero--short {
  min-height: clamp(240px, 29vw, 320px);
  padding: clamp(58px, 6vw, 84px) 0 clamp(34px, 4vw, 52px);
}
.page-hero__bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(247,240,223,.84) 0%, rgba(247,240,223,.70) 55%, rgba(247,240,223,.98) 100%),
    linear-gradient(90deg, rgba(247,240,223,.95) 0%, rgba(247,240,223,.68) 48%, rgba(6,18,29,.18) 100%),
    url("assets/2.jpg") center 42% / cover no-repeat;
}
.page-hero__bg::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(115deg, transparent 0 58%, rgba(255,255,255,.22) 58% 58.4%, transparent 58.4%),
    radial-gradient(circle at 10% 20%, rgba(255,255,255,.45) 1px, transparent 1px),
    radial-gradient(circle at 60% 80%, rgba(10,31,51,.05) 1px, transparent 1px);
  background-size: auto, 82px 82px, 104px 104px;
  opacity: .72;
}
.page-hero__bg::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 60px;
  background: linear-gradient(180deg, transparent 0%, var(--bg) 100%);
}
.page-hero__inner { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }
.page-hero h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); margin: 8px 0 18px; letter-spacing: 0; }
.page-hero__sub { font-size: clamp(1.05rem, 1.5vw, 1.2rem); color: var(--ink-2); margin: 0; }
.page-hero--experience .page-hero__bg {
  background:
    linear-gradient(180deg, rgba(247,240,223,.76) 0%, rgba(247,240,223,.52) 54%, rgba(247,240,223,.96) 100%),
    linear-gradient(90deg, rgba(247,240,223,.96) 0%, rgba(247,240,223,.66) 46%, rgba(6,18,29,.16) 100%),
    url("assets/1.jpg") center 42% / cover no-repeat;
}
.page-hero--packages .page-hero__bg {
  background:
    linear-gradient(180deg, rgba(247,240,223,.82) 0%, rgba(247,240,223,.64) 55%, rgba(247,240,223,.96) 100%),
    linear-gradient(90deg, rgba(247,240,223,.96) 0%, rgba(247,240,223,.70) 48%, rgba(6,18,29,.18) 100%),
    url("assets/6.jpg") center 36% / cover no-repeat;
}
.page-hero--booking .page-hero__bg {
  background:
    linear-gradient(180deg, rgba(247,240,223,.88) 0%, rgba(247,240,223,.72) 54%, rgba(247,240,223,.98) 100%),
    linear-gradient(90deg, rgba(247,240,223,.96) 0%, rgba(247,240,223,.70) 48%, rgba(6,18,29,.16) 100%),
    url("assets/5.jpg") center 45% / cover no-repeat;
}
.page-hero--faq .page-hero__bg {
  background:
    linear-gradient(180deg, rgba(247,240,223,.84) 0%, rgba(247,240,223,.64) 55%, rgba(247,240,223,.96) 100%),
    linear-gradient(90deg, rgba(247,240,223,.96) 0%, rgba(247,240,223,.72) 48%, rgba(6,18,29,.14) 100%),
    url("assets/4.jpg") center 50% / cover no-repeat;
}

/* Inline link inside prose */
.link {
  color: var(--accent-dark);
  border-bottom: 1px solid rgba(229,106,28,.35);
  padding-bottom: 1px;
  transition: color .15s, border-color .15s;
}
.link:hover { color: var(--accent); border-color: var(--accent); }

.center { text-align: center; }
.center > p { margin-left: auto; margin-right: auto; }
.center .lead { max-width: 540px; }

/* Dark button variant for orange CTA strip etc. */
.btn--dark { background: #1a0d04; color: var(--accent); border-color: #1a0d04; }
.btn--dark:hover { background: #2a1608; border-color: #2a1608; color: var(--accent-2); transform: translateY(-1px); }

/* ================ PACKAGES ================ */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 32px; }
@media (max-width: 880px) { .cards { grid-template-columns: 1fr; } }
.card {
  position: relative;
  background: var(--bg-3);
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 36px 30px; display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), border-color .25s;
}
.card:hover { transform: translateY(-8px); border-color: rgba(10,31,51,.18); box-shadow: var(--shadow-lg); }
.card__media {
  height: 176px;
  margin: -36px -30px 28px;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
  background: linear-gradient(135deg, #d8eef7, #fef0dc);
  border-bottom: 1px solid var(--line);
}
.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .7s var(--ease-out);
}
.card:hover .card__media img { transform: scale(1.05); }
.card--featured .card__media {
  box-shadow: inset 0 -1px 0 rgba(255,138,61,.24);
}
.card--featured {
  background: linear-gradient(180deg, #fff5ea 0%, #ffffff 100%);
  border-color: rgba(255,138,61,.45);
  box-shadow: 0 30px 80px -30px rgba(255,138,61,.30), 0 10px 30px -15px rgba(10,31,51,.18);
}
.card--featured:hover {
  box-shadow: 0 40px 100px -30px rgba(255,138,61,.40), 0 20px 50px -20px rgba(10,31,51,.22);
}
.card__ribbon {
  position: absolute; top: -12px; left: 24px;
  background: var(--accent); color: #1a0d04;
  font-size: .72rem; font-weight: 700; letter-spacing: 0; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px;
  z-index: 2;
}
.card__head h3 { margin-bottom: 4px; }
.card__tag { color: var(--ink-3); font-size: .92rem; margin-bottom: 24px; }
.card__price { margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px dashed var(--line); }
.card__amount { display: block; font-family: 'Fraunces', serif; font-size: 2.6rem; font-weight: 900; color: var(--ink); line-height: 1; margin-bottom: 6px; }
.card__unit { font-size: .88rem; color: var(--ink-3); }
.card__list { list-style: none; padding: 0; margin: 0 0 28px; flex-grow: 1; }
.card__list li {
  position: relative; padding: 6px 0 6px 24px; font-size: .94rem; color: var(--ink-2);
}
.card__list li::before {
  content: ""; position: absolute; left: 0; top: 14px; width: 14px; height: 8px;
  border-left: 2px solid var(--accent); border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}
.card__cta { width: 100%; }

.fineprint { text-align: center; max-width: 820px; margin: 24px auto 0; line-height: 1.7; }
.fineprint strong { color: var(--ink); }

/* ================ ADD-ONS + POLICY (packages page) ================ */
.addons { margin: 56px auto 0; max-width: 900px; }
.addons h3 { text-align: center; margin-bottom: 24px; }
.addons__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
@media (max-width: 620px) { .addons__grid { grid-template-columns: 1fr; } }
.addon {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 24px; border-radius: var(--radius);
  background: var(--bg-3); border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.addon strong {
  font-family: 'Fraunces', serif; font-size: 1.5rem; color: var(--accent);
  flex-shrink: 0; min-width: 76px;
}
.addon span { color: var(--ink-2); font-size: .96rem; }

.policy {
  margin: 64px auto 0; max-width: 800px;
  padding: 40px; border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #ecf6fb 0%, #f4fafd 100%);
  border: 1px solid rgba(26,168,216,.25);
  color: var(--ink);
  box-shadow: 0 20px 50px -25px rgba(26,168,216,.25);
}
.policy h3 { margin-bottom: 18px; color: var(--ink); }
.policy ul { list-style: none; padding: 0; margin: 0; }
.policy li {
  padding: 14px 0 14px 32px; color: var(--ink-2); position: relative;
  border-bottom: 1px solid rgba(26,168,216,.18);
}
.policy li:last-child { border-bottom: none; }
.policy li::before {
  content: ""; position: absolute; left: 0; top: 20px;
  width: 14px; height: 8px;
  border-left: 2px solid var(--accent); border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}
.policy strong { color: var(--ink); }

/* ================ INCLUDED GRID ================ */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 980px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .grid-4 { grid-template-columns: 1fr; } }
.feat {
  padding: 28px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--bg-3);
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease-out), box-shadow .25s, border-color .2s;
}
.feat:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(10,31,51,.16); }
.feat__ico {
  font-size: 1.8rem; margin-bottom: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px;
  background: linear-gradient(135deg, rgba(255,138,61,.12), rgba(26,168,216,.10));
  border-radius: var(--radius);
}

/* Photo-icon variant: image fills the icon slot edge-to-edge */
.feat--photo {
  padding: 0 0 26px 0;
  overflow: hidden;
}
.feat--photo .feat__ico {
  display: block;
  width: 100%;
  height: 150px;
  margin: 0 0 18px;
  background: linear-gradient(135deg, #d8eef7, #fef0dc);
  border-radius: 0;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 0;
}
.feat--photo .feat__ico img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(.95);
  transition: transform .6s var(--ease-out), filter .35s var(--ease-out);
}
.feat--photo:hover .feat__ico img {
  transform: scale(1.05);
  filter: saturate(1.05);
}
.feat--photo h4 { padding: 0 24px; margin-top: 4px; }
.feat--photo p { padding: 0 24px; }
@media (max-width: 520px) {
  .feat--photo .feat__ico { height: 200px; }
}
.feat h4 { margin: 6px 0; }
.feat p { font-size: .92rem; margin: 0; }

/* ================ STEPS ================ */
.steps { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; position: relative; }
.steps::before {
  content: "";
  position: absolute;
  left: 7%;
  right: 7%;
  top: 46px;
  height: 2px;
  background: linear-gradient(90deg, rgba(255,138,61,.15), rgba(26,168,216,.45), rgba(255,138,61,.15));
}
@media (max-width: 880px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }
@media (max-width: 880px) { .steps::before { display: none; } }
.steps li {
  padding: 28px 24px; border-radius: var(--radius);
  background: var(--bg-3); border: 1px solid var(--line);
  position: relative; box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease-out), box-shadow .25s;
  z-index: 1;
}
.steps li:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.steps__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--accent); color: #1a0d04;
  font-family: 'Fraunces', serif; font-weight: 900; font-size: 1.1rem;
  margin-bottom: 12px;
}
.steps li h4 { margin-bottom: 6px; }
.steps li p { margin: 0; font-size: .92rem; }

/* ================ BOOKING ================ */
.book { background: var(--bg); }
.book__grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 56px; align-items: start; }
@media (max-width: 920px) { .book__grid { grid-template-columns: 1fr; gap: 32px; } }
.book__intro h2 { margin-bottom: 16px; }
.book__steps { list-style: none; counter-reset: step; padding: 0; margin: 0 0 24px; display: grid; gap: 14px; }
.book__steps li {
  counter-increment: step;
  position: relative; padding: 18px 20px 18px 64px;
  border-radius: var(--radius);
  background: var(--bg-3); border: 1px solid var(--line);
  color: var(--ink-2); font-size: .96rem;
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease-out), box-shadow .25s;
}
.book__steps li:hover { transform: translateX(4px); box-shadow: var(--shadow); }
.book__steps li::before {
  content: counter(step);
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--accent); color: #1a0d04;
  font-family: 'Fraunces', serif; font-weight: 900; font-size: .95rem;
  display: flex; align-items: center; justify-content: center;
}
.book__steps strong { color: var(--ink); font-weight: 700; }
.book__assure { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 8px; color: var(--ink-2); font-size: .96rem; }

.book__photo {
  margin: 28px 0 0;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--bg-3);
}
.book__photo img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  object-position: center;
}
.book__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(3,9,14,.64) 100%);
  pointer-events: none;
}
.book__photo figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 1;
  color: #fff;
  font-size: .88rem;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0,0,0,.45);
}

.book__form {
  background: var(--bg-3);
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
  position: relative;
}
.book__form::before {
  content: ""; position: absolute; inset: -1px;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(135deg, rgba(255,138,61,.4), rgba(26,168,216,.3), transparent 60%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.field { margin-bottom: 18px; }
.field > label, .field > legend {
  display: block; font-size: .85rem; font-weight: 600; color: var(--ink-2);
  margin-bottom: 8px; letter-spacing: 0;
}
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 14px; font: inherit; color: var(--ink);
  background: #fff;
  border: 1.5px solid var(--line-2); border-radius: var(--radius);
  transition: border-color .2s, box-shadow .2s, background .15s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-3); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(255,138,61,.15);
}
.field textarea { resize: vertical; min-height: 88px; }
.field .hint { display: block; color: var(--ink-3); font-size: .82rem; margin-top: 6px; }
.row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 540px) { .row { grid-template-columns: 1fr; } }

fieldset.field { border: none; padding: 0; margin-bottom: 18px; }
fieldset.field legend { padding: 0; }

.seg { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.seg--two { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 540px) { .seg { grid-template-columns: 1fr; } }
.seg__opt { position: relative; }
.seg__opt input { position: absolute; opacity: 0; inset: 0; }
.seg__opt span {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 16px 8px; border-radius: var(--radius); cursor: pointer;
  border: 1.5px solid var(--line-2); background: #fff;
  font-size: .94rem; font-weight: 600; gap: 4px;
  transition: all .2s var(--ease-out);
}
.seg__opt span small { color: var(--ink-3); font-size: .82rem; font-weight: 500; }
.seg__opt:hover span { border-color: rgba(10,31,51,.28); }
.seg__opt input:checked + span {
  border-color: var(--accent); background: linear-gradient(180deg, #fff7ee, #fff);
  color: var(--ink);
  box-shadow: 0 6px 16px -8px rgba(255,138,61,.45);
}
.seg__opt input:checked + span small { color: var(--accent-dark); font-weight: 700; }

.check { display: flex; align-items: flex-start; gap: 10px; padding: 8px 0; cursor: pointer; font-size: .94rem; color: var(--ink-2); }
.check input { width: 18px; height: 18px; accent-color: var(--accent); margin-top: 2px; flex-shrink: 0; }
.check em { color: var(--accent-2); font-style: normal; font-weight: 600; }
.check--full { margin: 8px 0 16px; padding: 14px; border-radius: var(--radius); background: #fdfaf4; border: 1px solid var(--line); }

.summary {
  margin: 20px 0;
  padding: 22px 24px; border-radius: var(--radius);
  background: linear-gradient(135deg, #fff7ee 0%, #fef0dc 100%);
  border: 1px solid rgba(255,138,61,.25);
  color: var(--ink);
  box-shadow: 0 10px 30px -15px rgba(255,138,61,.25);
}
.summary__row { display: flex; justify-content: space-between; padding: 6px 0; color: var(--ink-2); font-size: .95rem; }
.summary__row strong { color: var(--ink); font-weight: 700; }
.summary__row--total { padding-top: 14px; margin-top: 6px; border-top: 1px solid rgba(255,138,61,.25); font-size: 1.05rem; }
.summary__row--total strong { font-family: 'Fraunces', serif; font-size: 1.55rem; }
.summary__deposit { color: var(--accent-dark); padding-top: 6px; }
.summary__deposit strong { color: var(--accent-dark); font-family: 'Fraunces', serif; font-size: 1.25rem; }

.book__legal { font-size: .82rem; color: var(--ink-3); text-align: center; margin: 16px 0 0; }

.book__error {
  color: var(--bad);
  background: rgba(212,72,72,.08);
  border: 1px solid rgba(212,72,72,.25);
  border-radius: var(--radius);
  font-size: .92rem;
  font-weight: 500;
  padding: 12px 14px;
  margin: 0 0 14px;
  text-align: center;
  min-height: 0;
}
.book__error:empty {
  display: none;
}
#bookSubmit:disabled {
  opacity: .7;
  cursor: progress;
  transform: none !important;
}

/* ================ TRUST ================ */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 820px) { .grid-3 { grid-template-columns: 1fr; } }
.trust__card {
  padding: 32px 28px; border-radius: var(--radius);
  border: 1px solid var(--line); background: var(--bg-3);
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease-out), box-shadow .25s;
}
.trust__card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.trust__card h4 { color: var(--accent-dark); margin-bottom: 10px; font-size: 1.15rem; }

/* ================ FAQ ================ */
.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 32px;
  align-items: start;
}
.faq-visual {
  position: sticky;
  top: 104px;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--bg-3);
  box-shadow: var(--shadow);
}
.faq-visual img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.faq-visual > div {
  padding: 26px 24px 28px;
}
.faq-visual h3 {
  margin-bottom: 12px;
  font-size: 1.45rem;
}
.faq-visual p {
  margin: 0;
  font-size: .94rem;
}
.faq details {
  border: 1px solid var(--line); border-radius: var(--radius);
  margin-bottom: 12px; background: var(--bg-3);
  box-shadow: var(--shadow-sm);
  transition: background .15s, box-shadow .25s, border-color .2s;
}
.faq details[open] { border-color: rgba(255,138,61,.35); box-shadow: var(--shadow); }
.faq summary {
  list-style: none; cursor: pointer; padding: 18px 22px;
  font-weight: 600; font-size: 1rem; color: var(--ink);
  position: relative; padding-right: 50px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 22px; top: 50%;
  transform: translateY(-50%); font-size: 1.4rem; color: var(--accent);
  transition: transform .2s;
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq details p { padding: 0 22px 18px; margin: 0; color: var(--ink-2); }

/* ================ CTA STRIP ================ */
.cta-strip {
  background: linear-gradient(135deg, var(--accent) 0%, #ff6b35 100%);
  padding: 56px 0; color: #1a0d04;
}
.cta-strip__inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-strip h2 { color: #1a0d04; margin-bottom: 4px; }
.cta-strip p { color: rgba(26,13,4,.75); margin: 0; }
.cta-strip__btns { display: flex; gap: 10px; flex-wrap: wrap; }
.cta-strip .btn--primary { background: #1a0d04; color: var(--accent); border-color: #1a0d04; }
.cta-strip .btn--primary:hover { background: #2a1608; border-color: #2a1608; color: var(--accent-2); }
.cta-strip .btn--dark { background: transparent; color: #1a0d04; border-color: rgba(26,13,4,.4); }
.cta-strip .btn--dark:hover { background: rgba(26,13,4,.1); border-color: #1a0d04; color: #1a0d04; }

/* ================ FOOTER ================ */
.foot {
  padding: 88px 0 28px;
  background: linear-gradient(180deg, #f3ebd5 0%, #ebe2cb 100%);
  color: var(--ink);
  position: relative;
  border-top: 1px solid var(--line);
}
.foot::before {
  content: ""; position: absolute; top: -1px; left: 0; right: 0; height: 60px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60' preserveAspectRatio='none'><path d='M0,0 C240,40 480,-10 720,20 C960,50 1200,5 1440,25 L1440,60 L0,60 Z' fill='%23f3ebd5'/></svg>") no-repeat center top / 100% 100%;
  transform: translateY(-59px);
  pointer-events: none;
}
.foot__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
@media (max-width: 820px) { .foot__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .foot__grid { grid-template-columns: 1fr; } }
.foot h5 { font-family: 'Inter', sans-serif; font-size: .8rem; text-transform: uppercase; letter-spacing: 0; color: var(--accent-dark); margin-bottom: 14px; font-weight: 700; }
.foot p { font-size: .92rem; margin-bottom: 6px; color: var(--ink-2); }
.foot a { color: var(--ink-2); transition: color .15s; }
.foot a:hover { color: var(--accent-dark); }
.foot__small { font-size: .9rem; color: var(--ink-3); max-width: 300px; margin-top: 16px; line-height: 1.6; }
.foot__bottom { padding-top: 28px; border-top: 1px solid var(--line); }
.foot__bottom p { text-align: center; font-size: .82rem; color: var(--ink-3); margin: 0; }
.foot .nav__brand:hover { transform: none; }

/* ================ GATE ================ */
.gate {
  position: fixed; inset: 0; z-index: 100;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  background:
    radial-gradient(ellipse at 30% 0%, rgba(26,168,216,.35) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 100%, rgba(255,138,61,.30) 0%, transparent 55%),
    linear-gradient(180deg, #d8eef7 0%, #faf5e8 60%, #f3ebd5 100%);
}
.gate.is-hidden { opacity: 0; pointer-events: none; transition: opacity .4s var(--ease); }
.gate__card {
  width: 100%; max-width: 460px;
  background: #ffffff;
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 44px 36px;
  box-shadow: 0 40px 100px -20px rgba(10,31,51,.22), 0 20px 50px -20px rgba(255,138,61,.22);
  text-align: center;
}
.gate__brand {
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 28px;
}
.brand-logo--gate { height: 72px; max-width: 100%; }
@media (max-width: 420px) { .brand-logo--gate { height: 56px; } }
.gate__title { font-size: 1.8rem; margin-bottom: 10px; color: var(--ink); }
.gate__sub { color: var(--ink-2); margin-bottom: 26px; font-size: .98rem; }
.gate__form { display: grid; gap: 12px; }
.gate__form input {
  padding: 15px 18px; font: inherit; color: var(--ink);
  background: #fff; border: 1.5px solid var(--line-2); border-radius: var(--radius);
  text-align: center; letter-spacing: 0;
  transition: border-color .2s, box-shadow .2s;
}
.gate__form input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px rgba(255,138,61,.18); }
.gate__form button {
  padding: 15px; border-radius: var(--radius); border: none;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff; font-weight: 700; font-size: 1rem;
  cursor: pointer; transition: transform .15s, box-shadow .2s;
  box-shadow: 0 10px 24px -10px rgba(255,138,61,.55);
}
.gate__form button:hover { transform: translateY(-1px); box-shadow: 0 14px 30px -10px rgba(255,138,61,.7); }
.gate__error { color: var(--bad); font-size: .9rem; margin: 14px 0 0; min-height: 1.2em; font-weight: 500; }
.gate__hint { color: var(--ink-3); font-size: .82rem; margin: 26px 0 0; }

/* ================ MODAL ================ */
.modal {
  position: fixed; inset: 0; z-index: 90;
  display: none; align-items: center; justify-content: center;
  padding: 24px;
  background: rgba(3,9,14,.75); backdrop-filter: blur(8px);
}
.modal.is-open { display: flex; animation: fadeIn .25s var(--ease); }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal__card {
  position: relative;
  width: 100%; max-width: 500px;
  background: var(--bg-3); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: 0 40px 100px -20px rgba(0,0,0,.4), 0 20px 50px -20px rgba(0,0,0,.25);
  animation: rise .35s var(--ease);
  color: var(--ink);
}
.modal__card h3 { color: var(--ink); margin-bottom: 12px; }
.modal__card p { color: var(--ink-2); }
@keyframes rise { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.modal__close {
  position: absolute; top: 12px; right: 16px;
  background: transparent; border: none; color: var(--ink-3);
  font-size: 1.8rem; line-height: 1; padding: 6px;
}
.modal__close:hover { color: var(--ink); }
.modal__steps { padding-left: 20px; margin: 12px 0 20px; color: var(--ink-2); }
.modal__steps li { margin-bottom: 8px; }
.modal__totals {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  padding: 22px; margin-bottom: 22px;
  background: linear-gradient(135deg, #fff7ee 0%, #fef0dc 100%);
  border: 1px solid rgba(255,138,61,.25);
  color: var(--ink);
  border-radius: var(--radius);
}
.modal__totals > div { text-align: center; }
.modal__totals span { display: block; font-size: .78rem; color: var(--ink-3); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0; font-weight: 600; }
.modal__totals strong { font-family: 'Fraunces', serif; font-size: 1.7rem; color: var(--accent-dark); }
.modal__small { font-size: .82rem; color: var(--ink-3); text-align: center; margin: 12px 0 0; }

/* ================ WAVE DIVIDER ================ */
.wave-divider {
  display: block; width: 100%; height: 80px;
  position: relative; margin: 0; line-height: 0;
}
.wave-divider svg { display: block; width: 100%; height: 100%; }
.wave-divider--up { transform: rotate(180deg); }

/* ================ VISUAL PROOF ================ */
.section--visual-proof {
  padding: clamp(72px, 9vw, 118px) 0;
  background:
    linear-gradient(135deg, #06121d 0%, #09243a 54%, #0b3150 100%);
  color: var(--dark-ink);
  overflow: hidden;
}
.section--visual-proof::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0 56%, rgba(255,255,255,.08) 56% 56.35%, transparent 56.35%),
    radial-gradient(circle at 18% 76%, rgba(88,183,216,.16) 1px, transparent 1px) 0 0 / 72px 72px;
  opacity: .78;
  pointer-events: none;
}
.proof-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(36px, 6vw, 76px);
  align-items: center;
}
.proof-copy h2 { color: #fff; }
.proof-copy p {
  color: var(--dark-ink-2);
  font-size: 1.08rem;
  max-width: 520px;
}
.proof-copy .eyebrow { color: var(--accent-2); }
.proof-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}
.proof-metrics div {
  padding: 18px 16px;
  border: 1px solid var(--dark-line-2);
  border-radius: var(--radius);
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(10px);
}
.proof-metrics strong {
  display: block;
  color: #fff;
  font-family: 'Fraunces', serif;
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
  line-height: 1;
  margin-bottom: 8px;
}
.proof-metrics span {
  display: block;
  color: var(--dark-ink-3);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  line-height: 1.35;
}
.proof-media {
  position: relative;
  min-height: clamp(420px, 44vw, 560px);
}
.proof-card {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: var(--shadow-dark);
  background: #10283f;
}
.proof-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.proof-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(3,9,14,.64) 100%);
  pointer-events: none;
}
.proof-card figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 1;
  color: #fff;
  font-size: .84rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 2px 10px rgba(0,0,0,.45);
}
.proof-card--main {
  inset: 0 10% 7% 0;
}
.proof-card--small {
  right: 0;
  bottom: 0;
  width: 44%;
  height: 46%;
}

/* ================ STATS ================ */
.stats {
  padding: 88px 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(255,138,61,.10) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(26,168,216,.10) 0%, transparent 50%),
    linear-gradient(180deg, #fff9ec 0%, #faf5e8 100%);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stats__grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  text-align: center;
}
@media (max-width: 820px) { .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 40px; } }
.stat__num {
  font-family: 'Fraunces', serif; font-weight: 900;
  font-size: clamp(2.8rem, 5.5vw, 4rem);
  line-height: 1; letter-spacing: 0;
  background: linear-gradient(135deg, #ff8a3d, #e56a1c);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}
.stat__label { color: var(--ink-2); font-size: .94rem; font-weight: 600; letter-spacing: 0; text-transform: uppercase; }

/* ================ MARQUEE ================ */
.marquee {
  padding: 22px 0;
  background: var(--bg-3);
  color: var(--ink);
  overflow: hidden; position: relative;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.marquee__track {
  display: flex; gap: 64px;
  animation: marquee 40s linear infinite;
  width: max-content;
}
.marquee__item {
  display: inline-flex; align-items: center; gap: 16px;
  font-family: 'Fraunces', serif; font-size: 1.2rem; font-weight: 700;
  white-space: nowrap;
}
.marquee__item::after {
  content: "✦"; color: var(--accent); margin-left: 64px; font-size: 1rem;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; } }

/* ================ TESTIMONIALS ================ */
.testimonials__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
@media (max-width: 880px) { .testimonials__grid { grid-template-columns: 1fr; } }
.testimonial {
  position: relative;
  padding: 40px 32px 32px;
  background: var(--bg-3);
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease-out), box-shadow .25s;
}
.testimonial:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.testimonial::before {
  content: "\201C";
  position: absolute; top: -12px; left: 28px;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff; font-family: 'Fraunces', serif; font-size: 2.6rem; font-weight: 900;
  border-radius: 50%; line-height: 0; padding-top: 18px;
  box-shadow: 0 8px 20px -6px rgba(255,138,61,.5);
}
.testimonial__stars { color: var(--accent); margin-bottom: 14px; letter-spacing: 0; }
.testimonial__quote { font-size: 1.02rem; line-height: 1.6; color: var(--ink); margin-bottom: 20px; font-style: italic; }
.testimonial__author { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid var(--line); }
.testimonial__avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, #58b7d8, #1aa8d8);
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .96rem;
}
.testimonial__name { font-weight: 700; color: var(--ink); }
.testimonial__role { font-size: .84rem; color: var(--ink-3); }

/* ================ GALLERY ================ */
.gallery {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
}
@media (max-width: 880px) { .gallery { grid-template-columns: repeat(2, 1fr); } }
.gallery__tile {
  position: relative; aspect-ratio: 1 / 1;
  border-radius: var(--radius); overflow: hidden;
  background: linear-gradient(135deg, #d8eef7, #fef0dc);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease-out), box-shadow .35s;
  cursor: pointer;
}
.gallery__tile:hover { transform: translateY(-4px) scale(1.02); box-shadow: var(--shadow); }
.gallery__tile img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
  transition: transform .6s var(--ease-out);
}
.gallery__tile:hover img { transform: scale(1.05); }
.gallery__tile::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(10,31,51,0) 45%, rgba(10,31,51,.55) 100%);
  pointer-events: none;
}
.gallery__tile--wide { grid-column: span 2; aspect-ratio: 2 / 1; }
.gallery__tile--tall { grid-row: span 2; aspect-ratio: 1 / 2; }
@media (max-width: 880px) {
  .gallery__tile--wide { grid-column: span 2; }
  .gallery__tile--tall { grid-row: span 1; aspect-ratio: 1 / 1; }
}
.gallery__label {
  position: absolute; left: 20px; right: 20px; bottom: 18px; z-index: 2;
  color: #fff; font-weight: 700; font-size: .98rem; letter-spacing: 0;
  text-shadow: 0 2px 8px rgba(0,0,0,.55);
}
.gallery__badge {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  font-size: .68rem; font-weight: 700; letter-spacing: 0; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px;
  background: rgba(255,255,255,.92); color: var(--accent-dark);
  backdrop-filter: blur(8px); border: 1px solid rgba(255,138,61,.3);
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
}

/* ================ BUTTON GLOW (primary upgrade) ================ */
.btn--primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #fff; border-color: transparent;
  box-shadow: 0 10px 24px -10px rgba(255,138,61,.55);
}
.btn--primary:hover {
  background: linear-gradient(135deg, var(--accent-2) 0%, var(--accent) 100%);
  box-shadow: 0 14px 30px -10px rgba(255,138,61,.7);
  transform: translateY(-2px);
}

.btn--ghost {
  color: var(--ink); border-color: rgba(10,31,51,.2);
}
.btn--ghost:hover { background: rgba(10,31,51,.04); border-color: var(--ink); }

/* Section head needs slight bump on light theme */
.section__head { text-align: center; max-width: 720px; margin: 0 auto 64px; }
.section__head h2 { color: var(--ink); }

/* Card price color refresh on light */
.card__amount { color: var(--ink); }
.card__list li { color: var(--ink-2); }
.card__list li strong { color: var(--ink); }

/* CTA strip enhancement */
.cta-strip {
  background:
    radial-gradient(ellipse at 0% 100%, rgba(255,255,255,.15) 0%, transparent 50%),
    linear-gradient(135deg, #ff8a3d 0%, #ff6b35 60%, #e56a1c 100%);
  position: relative; overflow: hidden;
}
.cta-strip::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}
.cta-strip__inner { position: relative; z-index: 1; }

/* ================ HERO STATUS PILL ================ */
.hero__status {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 14px 7px 12px;
  margin-bottom: 18px;
  font-size: .78rem; font-weight: 600;
  color: var(--ink); letter-spacing: 0;
  background: rgba(255,255,255,.78);
  border: 1px solid var(--line-2);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-sm);
}
.hero__status-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--good);
  box-shadow: 0 0 0 4px rgba(46,157,106,.18);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(46,157,106,.18); }
  50% { box-shadow: 0 0 0 7px rgba(46,157,106,.10); }
}

/* ================ BUTTON ARROW ================ */
.btn--arrow { padding-right: 22px; }
.btn--arrow::after {
  content: "→";
  display: inline-block;
  margin-left: 10px;
  transition: transform .25s var(--ease-out);
}
.btn--arrow:hover::after { transform: translateX(4px); }

/* Apply arrow affordance to card CTAs */
.card__cta::after {
  content: "→";
  display: inline-block;
  margin-left: 10px;
  transition: transform .25s var(--ease-out);
}
.card:hover .card__cta::after { transform: translateX(4px); }

/* ================ MARQUEE EDGE FADES ================ */
.marquee::before,
.marquee::after {
  content: "";
  position: absolute; top: 0; bottom: 0; width: 80px;
  z-index: 2; pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(90deg, var(--bg-3), rgba(255,255,255,0)); }
.marquee::after { right: 0; background: linear-gradient(-90deg, var(--bg-3), rgba(255,255,255,0)); }
@media (max-width: 600px) {
  .marquee::before, .marquee::after { width: 40px; }
}

/* ================ STATS REFINEMENT ================ */
.stat__num { position: relative; }
.stat__num::after {
  content: "";
  display: block;
  width: 36px; height: 3px;
  margin: 12px auto 0;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  opacity: .65;
}

/* ================ GALLERY HOVER AFFORDANCE ================ */
.gallery__tile::before {
  content: "+";
  position: absolute; top: 12px; left: 12px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(229,106,28,.35);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-dark);
  font-weight: 700; font-size: 1.4rem; line-height: 1;
  padding-bottom: 2px;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 12px rgba(10,31,51,.16);
  opacity: 0;
  transform: scale(.8);
  transition: opacity .3s var(--ease-out), transform .3s var(--ease-out);
  z-index: 2;
}
.gallery__tile:hover::before {
  opacity: 1;
  transform: scale(1);
}

/* Subtle image vibrance on hover */
.gallery__tile img,
.card__media img,
.proof-card img {
  filter: saturate(.95);
  transition: transform .6s var(--ease-out), filter .35s var(--ease-out);
}
.gallery__tile:hover img,
.card:hover .card__media img,
.proof-card:hover img { filter: saturate(1.05); }

/* ================ LOCATIONS STRIP ================ */
.locations { margin-top: clamp(40px, 5vw, 64px); }
.locations__label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .78rem; font-weight: 700; letter-spacing: 0;
  text-transform: uppercase; color: var(--accent-dark);
  margin-bottom: 18px;
}
.locations__label::before {
  content: ""; width: 28px; height: 2px; background: var(--accent); border-radius: 2px;
}
.locations__list {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
}
@media (max-width: 880px) { .locations__list { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .locations__list { grid-template-columns: 1fr; } }
.locations__list li {
  position: relative;
  padding: 20px 18px 20px 50px;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 4px;
  transition: transform .25s var(--ease-out), box-shadow .25s, border-color .2s;
}
.locations__list li:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: rgba(255,138,61,.3);
}
.locations__list li::before {
  content: "";
  position: absolute; left: 18px; top: 20px;
  width: 18px; height: 22px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23e56a1c'><path d='M12 2C8 2 5 5 5 9c0 5 7 13 7 13s7-8 7-13c0-4-3-7-7-7zm0 9.5a2.5 2.5 0 1 1 0-5 2.5 2.5 0 0 1 0 5z'/></svg>") center / contain no-repeat;
}
.locations__name { font-family: 'Fraunces', serif; font-weight: 700; font-size: 1.1rem; color: var(--ink); line-height: 1.2; }
.locations__tag { font-size: .82rem; color: var(--ink-3); }

/* ================ CATCH / SPECIES STRIP ================ */
.catch { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%); }
.species {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
}
@media (max-width: 880px) { .species { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .species { grid-template-columns: 1fr; } }
.species li {
  position: relative;
  padding: 18px 18px 18px 22px;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 4px;
  transition: transform .25s var(--ease-out), box-shadow .25s, border-color .2s;
}
.species li::before {
  content: "";
  position: absolute; left: 0; top: 16px; bottom: 16px; width: 3px;
  background: linear-gradient(180deg, var(--accent), var(--teal));
  border-radius: 2px;
}
.species li:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: rgba(255,138,61,.3);
}
.species__name { font-family: 'Fraunces', serif; font-weight: 700; font-size: 1.1rem; color: var(--ink); line-height: 1.2; }
.species__tag { font-size: .82rem; color: var(--ink-3); }

/* ================ FOOTER SOCIALS ================ */
.foot__socials {
  display: flex; gap: 8px; margin-top: 14px;
}
.foot__social {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  background: var(--bg-3);
  color: var(--ink) !important;
  font-size: .72rem; font-weight: 700; letter-spacing: 0;
  text-transform: uppercase;
  transition: transform .2s var(--ease-out), background .2s, border-color .2s, color .2s;
}
.foot__social:hover {
  background: var(--accent);
  color: #fff !important;
  border-color: var(--accent);
  transform: translateY(-2px);
}

/* ================ FAQ SMOOTHER OPEN ================ */
.faq details p {
  transform: translateY(-4px);
  opacity: 0;
  transition: opacity .25s var(--ease-out), transform .3s var(--ease-out);
}
.faq details[open] p {
  transform: translateY(0);
  opacity: 1;
}
.faq summary { transition: color .15s; }
.faq summary:hover { color: var(--accent-dark); }

/* ================ NAV LOGO LIFT ON LIGHT THEME ================ */
.nav .brand-logo {
  filter: drop-shadow(0 2px 6px rgba(10,31,51,.12));
  transition: filter .2s;
}
.nav__brand:hover .brand-logo {
  filter: drop-shadow(0 4px 10px rgba(10,31,51,.18));
}

/* ================ FOCUS RINGS ================ */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}
.btn:focus-visible { outline-offset: 4px; }

/* ================ RESPONSIVE POLISH ================ */
@media (max-width: 980px) {
  .hero {
    justify-content: center;
    text-align: center;
    min-height: auto;
    padding-top: 72px;
  }
  .hero__bg {
    background:
      linear-gradient(180deg, rgba(247,240,223,.94) 0%, rgba(247,240,223,.80) 52%, rgba(247,240,223,.96) 100%),
      linear-gradient(90deg, rgba(247,240,223,.92) 0%, rgba(247,240,223,.50) 100%),
      url("assets/4.jpg") 58% center / cover no-repeat;
  }
  .hero__inner {
    max-width: 760px;
    margin: 0 auto;
  }
  .hero__logo { margin-left: auto; margin-right: auto; }
  .hero__sub { margin-left: auto; margin-right: auto; }
  .hero__cta,
  .hero__chips { justify-content: center; }

  .proof-grid,
  .faq-layout {
    grid-template-columns: 1fr;
  }
  .faq-visual {
    position: relative;
    top: auto;
    display: grid;
    grid-template-columns: minmax(220px, .65fr) 1fr;
  }
  .faq-visual img {
    height: 100%;
    aspect-ratio: auto;
  }
}

@media (max-width: 640px) {
  h1 { font-size: clamp(2.35rem, 13vw, 3.4rem); }
  h2 { font-size: clamp(2rem, 10vw, 2.55rem); }
  .container { padding-inline: 24px; }
  .page-hero {
    min-height: auto;
    padding: 62px 0 48px;
  }
  .page-hero--short {
    min-height: auto;
    padding: 56px 0 44px;
  }
  .page-hero h1 {
    max-width: 310px;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(2rem, 9vw, 2.32rem);
    line-height: 1.08;
  }
  .page-hero__sub {
    max-width: 318px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1rem;
  }
  .page-hero .eyebrow {
    justify-content: center;
    gap: 8px;
    font-size: .68rem;
    letter-spacing: 0;
  }
  .page-hero .eyebrow::before {
    width: 22px;
  }
  .two-col,
  .book__grid,
  .faq-layout {
    min-width: 0;
  }
  .two-col > *,
  .book__grid > *,
  .faq-layout > * {
    min-width: 0;
  }
  .book__intro h2,
  .two-col h2 {
    max-width: 330px;
    font-size: clamp(2rem, 10vw, 2.45rem);
  }
  .book__steps li {
    padding: 18px 18px 18px 58px;
    overflow-wrap: break-word;
  }
  .hero {
    padding-inline: 18px;
    padding-bottom: 92px;
  }
  .hero__inner {
    max-width: 100%;
    min-width: 0;
  }
  .hero__logo {
    width: min(100%, 260px);
    max-width: 260px;
  }
  .hero__sub {
    max-width: 320px;
  }
  .hero__cta .btn {
    width: min(100%, 300px);
  }
  .hero__chips {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: min(100%, 300px);
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero__chips li {
    width: 100%;
    flex: none;
    text-align: center;
  }
  .hero .eyebrow {
    justify-content: center;
    gap: 8px;
    font-size: .66rem;
    letter-spacing: 0;
  }
  .hero .eyebrow::before {
    width: 20px;
  }
  .proof-metrics {
    grid-template-columns: 1fr;
  }
  .proof-media {
    display: grid;
    gap: 14px;
    min-height: auto;
  }
  .proof-card,
  .proof-card--main,
  .proof-card--small {
    position: relative;
    inset: auto;
    width: auto;
    height: auto;
  }
  .proof-card img {
    aspect-ratio: 4 / 3;
  }
  .faq-visual {
    display: block;
  }
  .faq-visual img {
    aspect-ratio: 16 / 10;
  }
  .card__media {
    height: 150px;
  }
}

/* ================ REDUCED MOTION ================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}
