/* ===== Design tokens ===== */
:root {
  --teal-900: #0a2e2e;
  --teal-800: #0f3d3d;
  --teal-700: #14504d;
  --teal-500: #1f7a73;
  --cream:    #f7f1e6;
  --cream-2:  #efe6d4;
  --paper:    #fffdf8;
  --amber:    #f4a531;
  --amber-2:  #e8902a;
  --coral:    #e8633f;
  --ink:      #1c2421;
  --muted:    #5d6b66;
  --line:     rgba(20, 80, 77, 0.14);

  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 18px 40px -22px rgba(10, 46, 46, 0.45);
  --shadow-lg: 0 30px 70px -30px rgba(10, 46, 46, 0.55);
  --maxw: 1160px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; -webkit-text-size-adjust: 100%; }
::selection { background: var(--amber); color: var(--teal-900); }
body {
  font-family: "Inter", system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, h5 { font-family: "Fraunces", Georgia, serif; line-height: 1.08; font-weight: 700; letter-spacing: -0.01em; }
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.eyebrow {
  font-family: "Inter", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--teal-500);
  margin-bottom: 14px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 600; font-size: 0.98rem;
  padding: 14px 26px; border-radius: 100px; border: none; cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s;
  white-space: nowrap;
}
.btn--primary { background: var(--amber); color: var(--teal-900); box-shadow: 0 10px 22px -10px rgba(244,165,49,.8); }
.btn--primary:hover { background: var(--amber-2); transform: translateY(-2px); box-shadow: 0 16px 30px -12px rgba(244,165,49,.9); }
.btn--ghost { background: transparent; color: var(--cream); border: 1.5px solid rgba(247,241,230,.4); }
.btn--ghost:hover { background: rgba(247,241,230,.12); transform: translateY(-2px); }
.btn--small { padding: 10px 20px; font-size: .9rem; }
.btn--block { width: 100%; }

/* ===== Strip marquee keyframes (shared) ===== */
@keyframes ticker { to { transform: translateX(-50%); } }

/* ===== Floating announcement badge (bottom-left corner) ===== */
.notice {
  position: fixed; left: 22px; bottom: 22px; z-index: 80;
  display: flex; align-items: center; gap: 11px;
  max-width: min(360px, calc(100vw - 44px));
  padding: 13px 16px 13px 17px;
  background: rgba(10, 46, 46, .9);
  color: var(--cream); border: 1px solid rgba(247,241,230,.14);
  border-radius: 100px; font-size: .86rem; font-weight: 500;
  box-shadow: var(--shadow-lg); backdrop-filter: saturate(160%) blur(14px);
  transform: translateY(0); opacity: 1;
  transition: transform .5s var(--ease), opacity .5s var(--ease);
}
.notice--hidden { transform: translateY(140%); opacity: 0; pointer-events: none; }
.notice__dot {
  width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; background: var(--amber);
  box-shadow: 0 0 0 0 rgba(244,165,49,.6); animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(244,165,49,.55); }
  70%  { box-shadow: 0 0 0 10px rgba(244,165,49,0); }
  100% { box-shadow: 0 0 0 0 rgba(244,165,49,0); }
}
.notice__text { line-height: 1.35; transition: opacity .35s var(--ease); }
.notice__text.fade { opacity: 0; }
.notice__close {
  flex-shrink: 0; margin-left: 2px; width: 22px; height: 22px; line-height: 1;
  display: grid; place-items: center; border: none; cursor: pointer; border-radius: 50%;
  background: rgba(247,241,230,.12); color: var(--cream); font-size: 1.1rem; transition: background .2s;
}
.notice__close:hover { background: rgba(247,241,230,.26); }
@media (max-width: 520px) { .notice { left: 14px; right: 14px; bottom: 14px; max-width: none; } }

/* ===== Header ===== */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: transparent; border-bottom: 1px solid transparent;
  transition: background .35s var(--ease), border-color .35s var(--ease), backdrop-filter .35s;
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 80px; }
.brand { display: flex; align-items: center; }
.brand__logo { height: 44px; width: auto; filter: brightness(0) invert(1); transition: filter .35s var(--ease); }

/* Over the hero: links & hamburger are light, sitting on the photo */
.header .nav__links > li > a:not(.btn) { color: var(--cream); }
.header .nav__links > li > a:not(.btn):hover { color: var(--amber); }
.nav__links .btn--small { background: var(--amber); color: var(--teal-900); }
.nav__links .btn--small:hover { background: var(--amber-2); }
.header .nav__toggle span { background: var(--cream); }

/* Scrolled past the hero: solid frosted bar with dark content */
.header--solid {
  background: rgba(247,241,230,.88);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.header--solid .brand__logo { filter: none; }
.header--solid .nav__links > li > a:not(.btn) { color: var(--teal-800); }
.header--solid .nav__links > li > a:not(.btn):hover { color: var(--coral); }
.header--solid .nav__toggle span { background: var(--teal-800); }
.nav__links { list-style: none; display: flex; align-items: center; gap: 30px; }
.nav__links a { font-weight: 600; font-size: .96rem; color: var(--teal-800); transition: color .2s; }
.nav__links a:not(.btn):hover { color: var(--coral); }
.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav__toggle span { width: 24px; height: 2.5px; background: var(--teal-800); border-radius: 2px; transition: .3s var(--ease); }

/* ===== Hero ===== */
.hero {
  position: relative; color: var(--cream); overflow: hidden;
  min-height: 100vh; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 120px 0 90px;
}
.hero__bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(105deg, var(--teal-900) 0%, rgba(15,61,61,.92) 38%, rgba(10,46,46,.55) 70%, rgba(10,46,46,.35) 100%),
    url("images/slider2.jpg") center / cover no-repeat;
}
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(247,241,230,.05) 1px, transparent 1px);
  background-size: 22px 22px; mask-image: linear-gradient(to bottom, #000, transparent);
}
.hero__inner { max-width: 760px; }
.hero .eyebrow { color: var(--amber); }
.hero__title { font-size: clamp(2.6rem, 7vw, 5rem); font-weight: 900; margin-bottom: 22px; }
.hero__title .accent { color: var(--amber); }
.hero__lead { font-size: 1.18rem; max-width: 560px; color: rgba(247,241,230,.85); margin-bottom: 34px; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px; }
.hero__stats { list-style: none; display: flex; gap: 44px; flex-wrap: wrap; }
.hero__stats li { display: flex; flex-direction: column; }
.hero__stats strong { font-family: "Fraunces", serif; font-size: 2.1rem; color: var(--cream); }
.hero__stats span { font-size: .82rem; text-transform: uppercase; letter-spacing: .1em; color: rgba(247,241,230,.6); }
.hero__scroll {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  font-size: .72rem; letter-spacing: .25em; text-transform: uppercase; color: rgba(247,241,230,.5);
  animation: bob 2s ease-in-out infinite;
}
@keyframes bob { 50% { transform: translate(-50%, 8px); } }

/* ===== Strip marquee ===== */
.strip { background: var(--amber); color: var(--teal-900); overflow: hidden; border-top: 3px solid var(--teal-900); border-bottom: 3px solid var(--teal-900); }
.strip__track { display: flex; gap: 26px; white-space: nowrap; width: max-content; padding: 13px 0; animation: ticker 30s linear infinite; }
.strip__track span { font-family: "Fraunces", serif; font-weight: 900; font-size: 1.1rem; letter-spacing: .04em; }

/* ===== Sections ===== */
.section { padding: clamp(64px, 9vw, 110px) 0; }
.section__head { max-width: 620px; margin-bottom: 50px; }
.section__head h2 { font-size: clamp(2rem, 4.5vw, 3rem); color: var(--teal-900); }
.section__sub { color: var(--muted); margin-top: 12px; font-size: 1.05rem; }

/* ===== Menu ===== */
.menu { background: var(--cream); }
.menu__group {
  font-size: 1.05rem; text-transform: uppercase; letter-spacing: .14em; color: var(--coral);
  margin: 46px 0 22px; padding-bottom: 12px; border-bottom: 2px dashed var(--line); font-weight: 600;
}
.menu__group:first-of-type { margin-top: 0; }
.menu__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 22px; }
.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card__img {
  aspect-ratio: 16/10; background-size: cover; background-position: center;
  position: relative; transition: transform .5s var(--ease);
}
.card:hover .card__img { transform: scale(1.05); }
.card__img--ph {
  background: radial-gradient(120% 100% at 30% 10%, rgba(244,165,49,.35), transparent 55%), linear-gradient(150deg, var(--teal-700), var(--teal-900));
  display: grid; place-items: center;
}
.card__img--ph::after { content: attr(data-emoji); font-size: 3.4rem; opacity: .92; }
.card__body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.card__top { display: flex; justify-content: space-between; align-items: baseline; gap: 14px; margin-bottom: 10px; }
.card h4 { font-size: 1.22rem; color: var(--teal-900); }
.price { font-family: "Fraunces", serif; font-weight: 900; font-size: 1.3rem; color: var(--coral); flex-shrink: 0; }
.card p { color: var(--muted); font-size: .96rem; margin-bottom: 16px; flex: 1; }
.card .tag { align-self: flex-start; }
.tag {
  display: inline-block; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em;
  padding: 5px 12px; border-radius: 100px; background: var(--cream-2); color: var(--teal-700);
}
.tag--gold { background: rgba(244,165,49,.22); color: var(--amber-2); }
.tag--green { background: rgba(31,122,115,.16); color: var(--teal-500); }
.card--feature .card__body { background: linear-gradient(150deg, var(--teal-800), var(--teal-900)); }
.card--feature h4 { color: var(--cream); }
.card--feature .price { color: var(--amber); }
.card--feature p { color: rgba(247,241,230,.78); }
.card--feature .card__img--ph { background: radial-gradient(120% 100% at 30% 10%, rgba(232,99,63,.4), transparent 55%), linear-gradient(150deg, var(--coral), var(--teal-800)); }

/* ===== Story ===== */
.story { background: var(--teal-900); color: var(--cream); }
.story__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.story .eyebrow { color: var(--amber); }
.story h2 { color: var(--cream); font-size: clamp(2rem, 4.5vw, 3rem); margin-bottom: 18px; }
.story__text p { color: rgba(247,241,230,.82); margin-bottom: 18px; max-width: 46ch; }
.story__media { position: relative; max-width: 460px; }
.story__photo {
  aspect-ratio: 4/5; border-radius: 24px; overflow: hidden;
  box-shadow: var(--shadow-lg); position: relative;
}
.story__photo img { width: 100%; height: 100%; object-fit: cover; }
.story__badge {
  position: absolute; bottom: -22px; left: -22px; background: var(--amber); color: var(--teal-900);
  border-radius: 16px; padding: 16px 20px; box-shadow: var(--shadow); display: flex; flex-direction: column; line-height: 1.15;
}
.story__badge strong { font-family: "Fraunces", serif; font-size: 1.6rem; }
.story__badge span { font-size: .74rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }

/* ===== Find ===== */
.find { background: var(--cream); }
.find__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; }
.find__card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 28px;
  box-shadow: var(--shadow); transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  display: flex; flex-direction: column; gap: 8px;
}
.find__card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.find__icon { font-size: 2.2rem; }
.find__card h4 { font-size: 1.3rem; color: var(--teal-900); }
.find__card p { color: var(--muted); font-size: .95rem; }
.find__link { margin-top: auto; padding-top: 10px; font-weight: 700; color: var(--coral); }

/* ===== Book ===== */
.book { background: linear-gradient(160deg, var(--cream-2), var(--cream)); }
.book__inner { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: start; }
.book__intro h2 { font-size: clamp(2rem, 4.5vw, 3rem); color: var(--teal-900); margin-bottom: 16px; }
.book__intro p { color: var(--muted); margin-bottom: 16px; }
.book__note {
  background: rgba(244,165,49,.16); border-left: 4px solid var(--amber);
  padding: 14px 18px; border-radius: 0 12px 12px 0; color: var(--teal-800) !important; font-size: .92rem;
}
.book__form { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow); display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field--full { grid-column: 1 / -1; }
.field label { font-weight: 600; font-size: .9rem; color: var(--teal-800); }
.field .muted { color: var(--muted); font-weight: 400; }
.field input, .field textarea {
  font: inherit; font-size: .98rem; padding: 13px 15px; border: 1.5px solid var(--line);
  border-radius: var(--radius-sm); background: var(--cream); color: var(--ink); transition: border-color .2s, box-shadow .2s; resize: vertical;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--amber); box-shadow: 0 0 0 4px rgba(244,165,49,.16); }
.book__form .btn { grid-column: 1 / -1; }

/* ===== Footer ===== */
.footer { background: var(--teal-900); color: var(--cream); padding: 64px 0 26px; }
.footer__inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; }
.footer__logo { height: 48px; width: auto; background: var(--cream); padding: 12px 16px; border-radius: 12px; }
.footer__brand p { color: rgba(247,241,230,.6); margin-top: 16px; max-width: 34ch; font-size: .95rem; }
.footer__col h5 { font-family: "Inter", sans-serif; text-transform: uppercase; letter-spacing: .12em; font-size: .8rem; color: var(--amber); margin-bottom: 16px; }
.footer__col a { display: block; color: rgba(247,241,230,.78); padding: 5px 0; transition: color .2s; }
.footer__col a:hover { color: var(--amber); }
.footer__bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  margin-top: 48px; padding-top: 22px; border-top: 1px solid rgba(247,241,230,.12);
  font-size: .85rem; color: rgba(247,241,230,.55);
}

/* ===== Reveal on scroll — food surges up & settles ===== */
.reveal { opacity: 0; transform: translateY(48px) scale(.94); transition: opacity .8s var(--ease), transform .9s var(--ease); will-change: transform, opacity; }
.reveal.in { opacity: 1; transform: none; }

/* ===== Responsive ===== */
@media (max-width: 860px) {
  .story__inner, .book__inner { grid-template-columns: 1fr; gap: 44px; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 680px) {
  .nav__toggle { display: flex; position: relative; z-index: 70; }
  .nav__toggle[aria-expanded="true"] span { background: var(--cream) !important; }
  .nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(.2); }
  .nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

  /* full-screen frosted overlay menu */
  .nav__links {
    position: fixed; inset: 0; z-index: 65;
    flex-direction: column; justify-content: center; align-items: stretch; gap: 0;
    padding: 90px 32px 44px;
    background: rgba(10, 46, 46, .94);
    -webkit-backdrop-filter: saturate(140%) blur(18px);
    backdrop-filter: saturate(140%) blur(18px);
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity .45s var(--ease), visibility 0s linear .45s;
  }
  .nav__links.open {
    opacity: 1; visibility: visible; pointer-events: auto;
    transition: opacity .45s var(--ease);
  }
  .nav__links li { opacity: 0; transform: translateY(22px); transition: opacity .55s var(--ease), transform .55s var(--ease); }
  .nav__links.open li { opacity: 1; transform: none; }
  .nav__links.open li:nth-child(1) { transition-delay: .1s; }
  .nav__links.open li:nth-child(2) { transition-delay: .18s; }
  .nav__links.open li:nth-child(3) { transition-delay: .26s; }
  .nav__links.open li:nth-child(4) { transition-delay: .34s; }
  .nav__links a:not(.btn) { display: block; padding: 14px 0; font-family: "Fraunces", Georgia, serif; font-size: 1.9rem; font-weight: 700; }
  .header .nav__links > li > a:not(.btn),
  .header--solid .nav__links > li > a:not(.btn) { color: var(--cream); }
  .header .nav__links > li > a:not(.btn):hover,
  .header--solid .nav__links > li > a:not(.btn):hover { color: var(--amber); }
  .nav__links > li > a:not(.btn)::after { display: none; }
  .nav__links .btn { margin-top: 20px; justify-content: center; font-size: 1.05rem; padding: 15px 26px; }
  body.nav-open { overflow: hidden; }

  .book__form { grid-template-columns: 1fr; }
  .hero__stats { gap: 26px; }
}
/* ============================================================
   "FOOD COMING OUT DELICIOUSLY" — flowing scroll & hover layer
   ============================================================ */

/* --- 3D stage for the menu so cards can lean toward the cursor --- */
.menu__grid { perspective: 1100px; }
.card {
  transform-style: preserve-3d;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .3s;
}

/* The dish image now lives in a clipped well; on hover it lifts & pops
   *out* of that well like it's being served up to you. */
.card__img { overflow: visible; will-change: transform; transform-origin: center 65%; }
.card { isolation: isolate; }
.card__img::before {
  /* glossy light sweep — a sheen that glides across the food */
  content: ""; position: absolute; inset: 0; z-index: 3;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,.55) 48%, transparent 66%);
  transform: translateX(-130%); transition: transform .8s var(--ease); pointer-events: none;
}
.card:hover .card__img::before { transform: translateX(130%); }
.card:hover .card__img {
  transform: scale(1.14) translateY(-10px) translateZ(40px);
  filter: saturate(1.12) contrast(1.04) brightness(1.03);
  box-shadow: 0 26px 40px -20px rgba(10,46,46,.7);
}
.card:hover {
  box-shadow: 0 40px 80px -34px rgba(10,46,46,.6), 0 0 0 1px rgba(244,165,49,.25);
}
/* warm glow blooming under a hovered dish */
.card__body { position: relative; z-index: 2; }
.card::after {
  content: ""; position: absolute; left: 50%; top: 38%; width: 70%; height: 55%;
  transform: translateX(-50%); border-radius: 50%; z-index: 0;
  background: radial-gradient(closest-side, rgba(244,165,49,.45), transparent 70%);
  opacity: 0; filter: blur(26px); transition: opacity .45s var(--ease); pointer-events: none;
}
.card:hover::after { opacity: 1; }

/* price gives a little hop on hover */
.price { display: inline-block; transition: transform .35s var(--ease), color .35s; }
.card:hover .price { transform: translateY(-3px) scale(1.12); }

/* --- Steam rising off the hot dishes --- */
.steam { position: absolute; left: 0; right: 0; top: 0; height: 60px; z-index: 4; pointer-events: none; }
.steam i {
  position: absolute; bottom: 0; width: 12px; height: 12px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.8), rgba(255,255,255,0) 70%);
  filter: blur(5px); opacity: 0; transform: translateY(0) scale(.6);
}
.card:hover .steam i { animation: steam 2.6s ease-in infinite; }
.steam i:nth-child(1) { left: 24%; animation-delay: 0s !important; }
.steam i:nth-child(2) { left: 48%; animation-delay: .6s !important; }
.steam i:nth-child(3) { left: 70%; animation-delay: 1.2s !important; }
@keyframes steam {
  0%   { opacity: 0; transform: translateY(6px) scale(.5); }
  35%  { opacity: .85; }
  100% { opacity: 0; transform: translateY(-46px) scale(1.5); }
}

/* --- Buttons: liquid sheen + magnetic-ready --- */
.btn { position: relative; overflow: hidden; will-change: transform; }
.btn::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(115deg, transparent 35%, rgba(255,255,255,.4) 50%, transparent 65%);
  transform: translateX(-120%); transition: transform .7s var(--ease);
}
.btn:hover::after { transform: translateX(120%); }

/* --- Hero: floating garnishes + parallax hooks --- */
.hero__bg { will-change: transform; }
/* Garnish field with depth-of-field: --d (0 = far, 1 = near the camera)
   drives size, focus, opacity, drift speed and cursor-parallax strength.
   Outer .g takes the parallax transform; inner i keeps the drift loop. */
.hero__float { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; --mx: 0; --my: 0; }
.hero__float .g {
  position: absolute;
  font-size: calc(clamp(1.5rem, 2.6vw, 2.4rem) * (0.55 + var(--d) * 0.8));
  opacity: calc(.3 + var(--d) * .55);
  filter: blur(calc((1 - var(--d)) * 2.6px)) drop-shadow(0 10px 16px rgba(0, 0, 0, .35));
  transform:
    translate3d(calc(var(--mx) * var(--d) * 46px), calc(var(--my) * var(--d) * 34px), 0)
    rotate(calc(var(--mx) * var(--d) * 7deg));
  will-change: transform;
}
.hero__float .g i {
  display: inline-block; font-style: normal;
  animation: drift calc(17s - var(--d) * 7s) ease-in-out infinite;
}
.hero__float .g:nth-child(1) { top: 18%; right: 12%; }
.hero__float .g:nth-child(2) { top: 62%; right: 26%; }
.hero__float .g:nth-child(3) { top: 38%; right: 6%;  }
.hero__float .g:nth-child(4) { top: 78%; right: 44%; }
.hero__float .g:nth-child(5) { top: 26%; right: 36%; }
.hero__float .g:nth-child(6) { top: 72%; right: 9%;  }
.hero__float .g:nth-child(1) i { animation-delay: 0s; }
.hero__float .g:nth-child(2) i { animation-delay: 2.4s; }
.hero__float .g:nth-child(3) i { animation-delay: 4.6s; }
.hero__float .g:nth-child(4) i { animation-delay: 1.3s; }
.hero__float .g:nth-child(5) i { animation-delay: 3.4s; }
.hero__float .g:nth-child(6) i { animation-delay: 5.2s; }
@keyframes drift {
  0%,100% { transform: translateY(0) rotate(-6deg); }
  50%     { transform: translateY(-26px) rotate(8deg); }
}
.hero__inner { position: relative; z-index: 1; }

/* sizzle underline that sweeps under the hero accent word */
.hero__title .accent { position: relative; }
.hero__title .accent::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: .04em; height: 4px; border-radius: 4px;
  background: linear-gradient(90deg, var(--coral), var(--amber));
  transform: scaleX(0); transform-origin: left; animation: sizzle 1s var(--ease) 1.35s forwards;
}
@keyframes sizzle { to { transform: scaleX(1); } }

/* --- Story photo parallax + float --- */
.story__photo { will-change: transform; }
.story__photo img { transition: transform .6s var(--ease); }
.story__media:hover .story__photo img { transform: scale(1.06); }
.story__badge { animation: badgeFloat 5s ease-in-out infinite; }
@keyframes badgeFloat { 50% { transform: translateY(-8px); } }

/* --- Find cards: icon bounce + lift --- */
.find__icon { display: inline-block; transition: transform .4s var(--ease); }
.find__card:hover .find__icon { transform: translateY(-6px) scale(1.18) rotate(-6deg); }

/* --- Section headings sweep up word-feel via reveal already handles it --- */

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

/* ============================================================
   FABLE UPGRADE — entrance choreography, waves & polish layer
   ============================================================ */

/* --- Scroll progress bar --- */
.progress { position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 100; pointer-events: none; }
.progress span {
  display: block; height: 100%;
  background: linear-gradient(90deg, var(--amber), var(--coral));
  transform: scaleX(0); transform-origin: left;
}

/* --- Hero entrance choreography --- */
.hero .eyebrow, .hero__lead, .hero__actions, .hero__stats {
  opacity: 0; animation: riseIn .9s var(--ease) forwards;
}
.hero .eyebrow   { animation-delay: .1s; }
.hero__lead      { animation-delay: .55s; }
.hero__actions   { animation-delay: .7s; }
.hero__stats     { animation-delay: .85s; }
@keyframes riseIn {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: none; }
}

/* title lines rise out of a clipped well, one after the other */
.hero__title .line { display: block; overflow: hidden; }
.hero__title .line i {
  display: inline-block; font-style: normal;
  transform: translateY(112%);
  animation: lineUp .95s var(--ease) forwards;
}
.hero__title .line:nth-child(1) i { animation-delay: .2s; }
.hero__title .line:nth-child(2) i { animation-delay: .34s; }
@keyframes lineUp { to { transform: translateY(0); } }

/* shimmering gradient on the accent words */
.hero__title .accent {
  background: linear-gradient(100deg, var(--amber) 20%, #ffe3a3 38%, var(--amber) 55%, var(--coral) 90%);
  background-size: 220% 100%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 6s ease-in-out 2s infinite;
}
@keyframes shimmer {
  0%, 100% { background-position: 0% 0; }
  50%      { background-position: 100% 0; }
}

/* count-up stats shouldn't jitter while ticking */
.hero__stats strong { font-variant-numeric: tabular-nums; }

/* cursor-following warm glow over the hero */
.hero__glow {
  position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: 0;
  background: radial-gradient(560px circle at var(--gx, 70%) var(--gy, 40%), rgba(244, 165, 49, .16), transparent 60%);
  transition: opacity .6s var(--ease);
}
.hero:hover .hero__glow { opacity: 1; }

/* scroll cue gets a fading tail */
.hero__scroll::after {
  content: ""; display: block; width: 1px; height: 32px; margin: 8px auto 0;
  background: linear-gradient(rgba(247, 241, 230, .55), transparent);
}

/* --- Ocean wave section dividers --- */
.wave { position: relative; height: clamp(46px, 7vw, 90px); overflow: hidden; line-height: 0; }
.wave svg { position: absolute; top: 0; left: -6%; width: 112%; height: 100%; }
.wave path { animation: waveDrift 14s ease-in-out infinite alternate; will-change: transform; }
.wave .wave__back { opacity: .35; animation-duration: 21s; animation-direction: alternate-reverse; }
@keyframes waveDrift { from { transform: translateX(0); } to { transform: translateX(-46px); } }
.wave--cream-teal { background: var(--cream); color: var(--teal-900); }
.wave--teal-cream { background: var(--teal-900); color: var(--cream); }

/* --- Desktop nav links: sliding underline --- */
.nav__links > li > a:not(.btn) { position: relative; }
.nav__links > li > a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: -6px; width: 100%; height: 2px; border-radius: 2px;
  background: var(--amber);
  transform: scaleX(0); transform-origin: 100% 50%;
  transition: transform .35s var(--ease);
}
.nav__links > li > a:not(.btn):hover::after { transform: scaleX(1); transform-origin: 0 50%; }
.header--solid .nav__links > li > a:not(.btn)::after { background: var(--coral); }

/* --- Marquee: pause while reading --- */
.strip:hover .strip__track { animation-play-state: paused; }

/* --- Find cards: link nudges forward --- */
.find__link { transition: transform .3s var(--ease), color .3s; }
.find__card:hover .find__link { transform: translateX(5px); color: var(--amber-2); }

/* --- Back to top --- */
.totop {
  position: fixed; right: 22px; bottom: 22px; z-index: 80;
  width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(10, 46, 46, .9); color: var(--cream);
  border: 1px solid rgba(247, 241, 230, .14);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  backdrop-filter: saturate(160%) blur(14px);
  box-shadow: var(--shadow-lg); cursor: pointer;
  opacity: 0; transform: translateY(16px); pointer-events: none;
  transition: opacity .4s var(--ease), transform .4s var(--ease), background .25s, color .25s;
}
.totop.show { opacity: 1; transform: none; pointer-events: auto; }
.totop:hover { background: var(--amber); color: var(--teal-900); transform: translateY(-3px); }
@media (max-width: 520px) { .totop { right: 14px; bottom: 76px; } }

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

/* --- Reduced motion: entrance states must still be visible --- */
@media (prefers-reduced-motion: reduce) {
  .hero .eyebrow, .hero__lead, .hero__actions, .hero__stats { opacity: 1 !important; }
  .hero__title .line i { transform: none !important; }
  .hero__title .accent { animation: none !important; }
  .progress { display: none; }
}
