/* ============================================================
   FISHING WITH DYNAMITE — eatfwd.com
   "Coastal Editorial with a Bang"
   ============================================================ */

/* ---------- Brand fonts (self-hosted) ---------- */
@font-face {
  font-family: "Old MacDonald Wide";
  src: url("../fonts/OldMacDonaldWide.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lora";
  src: url("../fonts/Lora-Variable.ttf") format("truetype");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lulo One";
  src: url("../fonts/LuloOne.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lulo One";
  src: url("../fonts/LuloOneBold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Brand palette */
  --ocean: #7db3ce;
  --teal: #015764;
  --teal-deep: #013d46;
  --red: #af272f;
  --maroon: #5c2624;

  /* Canvas */
  --paper: #fbf7ef;
  --paper-warm: #f4ecdd;
  --sand: #e9ddc6;
  --ink: #11343a;

  /* Type */
  --font-display: "Old MacDonald Wide", "Georgia", serif;
  --font-body: "Lora", "Georgia", serif;
  --font-caps: "Lulo One", "Helvetica Neue", sans-serif;
  --font-hand: "Caveat", cursive;

  --max-w: 1320px;
  --gutter: clamp(1.25rem, 4vw, 3.5rem);
  --radius: 14px;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.45, 0, 0.15, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; background: none; border: none; cursor: pointer; color: inherit; }

::selection { background: var(--red); color: var(--paper); }

/* Grain overlay for atmosphere */
body::after {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 9000;
  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.6'/%3E%3C/svg%3E");
}

/* ---------- Preloader ---------- */
.preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--paper);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1rem;
  transition: clip-path 0.9s var(--ease-soft);
  clip-path: inset(0 0 0% 0);
}
.preloader.done { clip-path: inset(0 0 100% 0); pointer-events: none; }
.preloader img { width: clamp(70px, 9vw, 110px); }
.preloader .boom {
  font-family: var(--font-hand);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--red);
  transform: rotate(-6deg);
  animation: boomPulse 0.9s var(--ease-out) infinite alternate;
}
@keyframes boomPulse { from { transform: rotate(-6deg) scale(1); } to { transform: rotate(-4deg) scale(1.12); } }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1100;
  padding: 1.1rem var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.45s var(--ease-soft), padding 0.45s var(--ease-soft),
              box-shadow 0.45s var(--ease-soft);
}
.site-header.scrolled {
  background: rgba(251, 247, 239, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 0.65rem var(--gutter);
  box-shadow: 0 1px 0 rgba(1, 87, 100, 0.12);
}
.brand { display: flex; align-items: center; gap: 0.75rem; }
.brand img { height: 44px; width: auto; transition: height 0.45s var(--ease-soft); }
.site-header.scrolled .brand img { height: 36px; }

.nav-desktop { display: flex; align-items: center; gap: 2.2rem; }
.nav-desktop a.nav-link {
  font-family: var(--font-caps);
  font-size: 0.66rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  position: relative;
  padding: 0.3rem 0;
}
/* Over the hero photo (pre-scroll) the header is transparent —
   switch links to paper white with a soft shadow for contrast */
.site-header:not(.scrolled) .nav-desktop a.nav-link {
  color: var(--paper);
  text-shadow: 0 1px 14px rgba(1, 61, 70, 0.65);
}
.site-header:not(.scrolled) .brand img,
.site-header:not(.scrolled) .nav-toggle span {
  filter: drop-shadow(0 2px 10px rgba(1, 61, 70, 0.5));
}
.site-header:not(.scrolled) .nav-toggle span { background: var(--paper); }
.nav-link::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease-out);
}
.nav-link:hover::after, .nav-link[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: var(--font-caps);
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.95em 1.9em;
  border-radius: 999px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease-out), background 0.3s, color 0.3s, border-color 0.3s;
  will-change: transform;
}
.btn--red { background: var(--red); color: #fff; }
.btn--red:hover { background: var(--maroon); }
.btn--outline {
  border: 2px solid var(--teal);
  color: var(--teal);
}
.btn--outline:hover { background: var(--teal); color: var(--paper); }
.btn--paper { background: var(--paper); color: var(--teal); }
.btn--paper:hover { background: var(--sand); }
.btn .arrow { transition: transform 0.3s var(--ease-out); }
.btn:hover .arrow { transform: translateX(4px); }

/* Mobile nav */
.nav-toggle {
  display: none;
  z-index: 1300;
  width: 44px; height: 44px;
  position: relative;
}
.nav-toggle span {
  position: absolute; left: 10px; right: 10px;
  height: 2px; background: var(--teal);
  transition: transform 0.4s var(--ease-out), opacity 0.3s, background 0.3s;
}
.nav-toggle span:nth-child(1) { top: 16px; }
.nav-toggle span:nth-child(2) { top: 22px; }
.nav-toggle span:nth-child(3) { top: 28px; }
body.nav-open .nav-toggle span { background: var(--paper); }
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

body.nav-open { overflow: hidden; }
body.nav-open .site-header {
  z-index: 1300;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
body.nav-open .site-header .brand img { filter: brightness(0) invert(1); }
.nav-mobile {
  position: fixed; inset: 0; z-index: 1250;
  background: var(--teal);
  display: flex; flex-direction: column; justify-content: center;
  padding: var(--gutter);
  clip-path: circle(0% at calc(100% - 2.4rem) 2.2rem);
  transition: clip-path 0.7s var(--ease-soft);
  visibility: hidden;
}
body.nav-open .nav-mobile { clip-path: circle(150% at calc(100% - 2.4rem) 2.2rem); visibility: visible; }
.nav-mobile a.mnav-link {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 6.5vw, 2.2rem);
  font-weight: normal;
  color: var(--paper);
  line-height: 1.25;
  display: inline-block;
  transition: color 0.3s, transform 0.4s var(--ease-out);
}
.nav-mobile a.mnav-link:hover { color: var(--ocean); transform: translateX(10px); }
.nav-mobile .mnav-meta {
  margin-top: 2.5rem;
  color: var(--ocean);
  font-size: 0.95rem;
  line-height: 1.9;
}
.nav-mobile .mnav-meta a { color: var(--paper); border-bottom: 1px solid var(--ocean); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: flex-end;
  color: var(--paper);
  overflow: clip;
}
.hero__media { position: absolute; inset: -12% 0; z-index: -2; }
.hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform-origin: center;
}
.hero::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(1, 61, 70, 0.42) 0%, rgba(1, 61, 70, 0.06) 38%, rgba(1, 61, 70, 0.78) 100%);
}
.hero__inner {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter) clamp(3.5rem, 8vh, 6rem);
}
.hero__kicker {
  display: flex; align-items: center; gap: 0.9rem;
  font-family: var(--font-caps);
  font-size: 0.66rem; font-weight: 400;
  letter-spacing: 0.14em; text-transform: uppercase;
  margin-bottom: 1.4rem;
}
.hero__kicker::before { content: ""; width: 46px; height: 2px; background: var(--ocean); }
.hero__title {
  font-family: var(--font-display);
  font-weight: normal;
  font-size: clamp(1.9rem, 4.6vw, 4rem);
  line-height: 1.14;
  letter-spacing: 0.01em;
  max-width: 17ch;
}
.hero__boom {
  position: relative;
  display: inline-block;
  font-family: var(--font-hand);
  font-weight: 700;
  font-size: clamp(1.7rem, 3.4vw, 3rem);
  color: #ffb37a;
  transform: rotate(-6deg);
  margin-left: 0.25em;
}
.hero__sub {
  margin-top: 1.6rem;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  max-width: 46ch;
  color: rgba(251, 247, 239, 0.92);
  text-shadow: 0 1px 14px rgba(1, 61, 70, 0.55);
}
.hero__kicker, .hero__title { text-shadow: 0 1px 16px rgba(1, 61, 70, 0.45); }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.2rem; }
.hero__badge {
  position: absolute;
  right: clamp(1rem, 5vw, 5rem);
  bottom: clamp(7rem, 18vh, 11rem);
  width: clamp(96px, 11vw, 150px);
  aspect-ratio: 1;
  display: grid; place-items: center;
  pointer-events: none;
}
.hero__badge svg { position: absolute; inset: 0; animation: spin 26s linear infinite; }
.hero__badge svg text { fill: var(--paper); font-size: 9.5px; font-weight: 400; letter-spacing: 0.32em; font-family: var(--font-caps); text-transform: uppercase; }
.hero__badge img { width: 38%; filter: brightness(0) invert(1); opacity: 0.95; }
@keyframes spin { to { transform: rotate(360deg); } }

.scroll-cue {
  position: absolute; left: 50%; bottom: 1.4rem;
  transform: translateX(-50%);
  width: 1px; height: 56px;
  background: rgba(251, 247, 239, 0.35);
  overflow: hidden;
}
.scroll-cue::after {
  content: "";
  position: absolute; left: 0; top: -50%;
  width: 100%; height: 50%;
  background: var(--paper);
  animation: cueDrop 1.8s var(--ease-soft) infinite;
}
@keyframes cueDrop { to { top: 110%; } }

/* ---------- Ticker marquee ---------- */
.ticker {
  background: var(--red);
  color: var(--paper);
  overflow: hidden;
  padding: 0.85rem 0;
  position: relative;
  z-index: 2;
}
.ticker--sand { background: var(--teal); }
.ticker__track {
  display: flex; width: max-content;
  white-space: nowrap;
  animation: tickerScroll var(--ticker-speed, 28s) linear infinite;
}
.ticker:hover .ticker__track { animation-play-state: paused; }
.ticker__item {
  font-family: var(--font-display);
  font-weight: normal;
  font-size: clamp(0.85rem, 1.3vw, 1.1rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0 1.4rem;
  display: flex; align-items: center; gap: 2.8rem;
}
.ticker__item .o { color: rgba(251, 247, 239, 0.72); }
.ticker__item .dot { font-size: 0.6em; opacity: 0.7; }
@keyframes tickerScroll { to { transform: translateX(-50%); } }

/* ---------- Generic section scaffolding ---------- */
.section { padding: clamp(4.5rem, 11vh, 8.5rem) 0; position: relative; }
.section--teal { background: var(--teal); color: var(--paper); }
.section--warm { background: var(--paper-warm); }
.section--sand { background: var(--sand); }
.wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); }

.h2 {
  font-family: var(--font-display);
  font-weight: normal;
  font-size: clamp(1.6rem, 3.2vw, 2.7rem);
  line-height: 1.18;
  letter-spacing: 0.005em;
  color: var(--teal);
  max-width: 20ch;
}
.section--teal .h2 { color: var(--paper); }
.h2 em { font-style: normal; color: var(--red); }
.section--teal .h2 em { color: var(--ocean); }

.lead { font-size: clamp(1.05rem, 1.5vw, 1.25rem); max-width: 56ch; color: rgba(17, 52, 58, 0.82); }
.section--teal .lead { color: rgba(251, 247, 239, 0.85); }

.hand-note {
  font-family: var(--font-hand);
  font-weight: 600;
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  color: var(--red);
  transform: rotate(-3deg);
  display: inline-block;
}
.section--teal .hand-note { color: var(--ocean); }

/* Reveal primitives (animated by JS) */
.reveal { opacity: 0; transform: translateY(46px); filter: blur(8px); }
html.no-motion .reveal { opacity: 1; transform: none; filter: none; }

/* Scroll-linked word reveal (manifesto) */
.manifesto { text-align: left; }
.manifesto p {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(1.4rem, 2.8vw, 2.3rem);
  line-height: 1.42;
  letter-spacing: -0.005em;
  color: var(--teal);
  max-width: 34ch;
}
.manifesto .w { opacity: 0.13; transition: opacity 0.25s linear; }
.manifesto .w.lit { opacity: 1; }
.manifesto .accent { color: var(--red); }

/* ---------- Intro split (home) ---------- */
.intro-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.intro-figures { position: relative; min-height: 540px; }
.intro-figures figure {
  position: absolute;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 60px -22px rgba(1, 61, 70, 0.45);
}
.intro-figures img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease-soft); }
.intro-figures figure:hover img { transform: scale(1.05); }
.fig-a { width: 62%; aspect-ratio: 3 / 4; left: 0; top: 0; z-index: 2; }
.fig-b { width: 52%; aspect-ratio: 4 / 5; right: 0; bottom: 0; z-index: 3; transform: rotate(2.5deg); }
.fig-caption {
  position: absolute;
  left: 58%; top: -1.6rem;
  z-index: 4;
}

/* Stat chips */
.stat-row { display: flex; flex-wrap: wrap; gap: 2.4rem; margin-top: 2.6rem; }
.stat .stat__num {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  font-weight: normal;
  color: var(--red);
  line-height: 1;
}
.stat .stat__label {
  font-family: var(--font-caps);
  font-size: 0.6rem; font-weight: 400;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(17, 52, 58, 0.6);
  margin-top: 0.5rem;
}

/* ---------- Old School / New School ---------- */
.schools { display: grid; grid-template-columns: 1fr 1fr; }
.school {
  position: relative;
  min-height: clamp(440px, 64vh, 620px);
  display: flex; align-items: flex-end;
  overflow: clip;
  color: var(--paper);
}
.school__media { position: absolute; inset: 0; z-index: 0; }
.school__media img { width: 100%; height: 110%; object-fit: cover; transition: transform 1.2s var(--ease-soft); }
.school:hover .school__media img { transform: scale(1.045); }
.school::before {
  content: "";
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(1, 61, 70, 0) 30%, rgba(1, 61, 70, 0.82) 100%);
  transition: background 0.5s;
}
.school__body { position: relative; z-index: 2; padding: clamp(1.6rem, 3.5vw, 3rem); width: 100%; }
.school__tag {
  font-family: var(--font-hand);
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  color: var(--ocean);
}
.school--new .school__tag { color: #ffb37a; }
.school__name {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.4vw, 2.2rem);
  font-weight: normal;
  line-height: 1.15;
}
.school__desc {
  max-width: 44ch;
  margin-top: 0.7rem;
  color: rgba(251, 247, 239, 0.85);
  font-size: 0.98rem;
  max-height: 0; opacity: 0;
  overflow: hidden;
  transition: max-height 0.6s var(--ease-soft), opacity 0.5s 0.08s;
}
.school:hover .school__desc, .school:focus-within .school__desc { max-height: 200px; opacity: 1; }
.school__dishes {
  margin-top: 0.9rem;
  font-family: var(--font-caps);
  font-size: 0.6rem; font-weight: 400;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ocean);
}

/* ---------- Raw bar feature ---------- */
.rawbar-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}
.rawbar-figure {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 32px 70px -28px rgba(0, 0, 0, 0.55);
}
.rawbar-figure img { width: 100%; height: 116%; object-fit: cover; }
.rawbar-list { margin-top: 2rem; border-top: 1px solid rgba(251, 247, 239, 0.22); }
.rawbar-list li {
  display: flex; justify-content: space-between; align-items: baseline; gap: 1rem;
  padding: 0.95rem 0;
  border-bottom: 1px solid rgba(251, 247, 239, 0.22);
  transition: padding-left 0.35s var(--ease-out);
}
.rawbar-list li:hover { padding-left: 0.7rem; }
.rawbar-list .nm { font-family: var(--font-display); font-size: 0.92rem; font-weight: normal; }
.rawbar-list .ds { font-size: 0.88rem; color: rgba(251, 247, 239, 0.62); }
.rawbar-list .pr { font-weight: 700; color: var(--ocean); white-space: nowrap; }

/* ---------- Photo marquee gallery ---------- */
.gallery-marquee { overflow: hidden; padding: clamp(2.5rem, 6vh, 4rem) 0; }
.gallery-marquee__track {
  display: flex; gap: clamp(0.9rem, 1.6vw, 1.4rem);
  width: max-content;
  animation: tickerScroll 46s linear infinite;
}
.gallery-marquee:hover .gallery-marquee__track { animation-play-state: paused; }
.gcard {
  position: relative;
  width: clamp(220px, 24vw, 330px);
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  overflow: hidden;
  flex-shrink: 0;
  transition: transform 0.45s var(--ease-out);
}
.gcard:nth-child(odd) { transform: rotate(-1.3deg); }
.gcard:nth-child(even) { transform: rotate(1.2deg) translateY(14px); }
.gcard:hover { transform: rotate(0deg) scale(1.03); z-index: 2; }
.gcard img { width: 100%; height: 100%; object-fit: cover; }
.gcard figcaption {
  position: absolute; inset: auto 0 0 0;
  padding: 2.4rem 1.1rem 1rem;
  background: linear-gradient(180deg, transparent, rgba(1, 61, 70, 0.85));
  color: var(--paper);
  font-family: var(--font-hand);
  font-size: 1.35rem;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s, transform 0.4s var(--ease-out);
}
.gcard:hover figcaption { opacity: 1; transform: translateY(0); }

/* ---------- Live video cards ---------- */
.gcard video,
.intro-figures figure video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.live-chip {
  position: absolute; top: 0.9rem; left: 0.9rem;
  z-index: 2;
  display: inline-flex; align-items: center; gap: 0.45em;
  background: rgba(251, 247, 239, 0.92);
  color: var(--red);
  font-family: var(--font-caps);
  font-size: 0.54rem; font-weight: 400;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.45em 0.9em;
  border-radius: 999px;
  pointer-events: none;
}
.live-chip::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--red);
  animation: blink 1.6s ease-in-out infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.25; } }

/* Menu page: vertical dish loop bands */
.menu-live {
  display: flex; align-items: center;
  gap: clamp(1.6rem, 4vw, 3.5rem);
  margin-bottom: 2.2rem;
}
.menu-live .vcard {
  position: relative;
  width: clamp(190px, 22vw, 260px);
  aspect-ratio: 9 / 16;
  flex-shrink: 0;
  border-radius: var(--radius);
  overflow: hidden;
  transform: rotate(-2deg);
  box-shadow: 0 26px 54px -22px rgba(1, 61, 70, 0.45);
}
.menu-live .vcard video { width: 100%; height: 100%; object-fit: cover; display: block; }
.menu-live .blurb .hand-note { font-size: clamp(1.6rem, 2.6vw, 2.2rem); }
.menu-live .blurb p { margin-top: 0.7rem; max-width: 40ch; color: rgba(17, 52, 58, 0.72); }
@media (max-width: 640px) {
  .menu-live { flex-direction: column; align-items: flex-start; }
}

/* ---------- Accolades ---------- */
.accolades { text-align: center; }
.accolades .h2 { margin: 0 auto; }
.accolade-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin-top: 3.4rem;
}
.accolade {
  border: 1px solid rgba(1, 87, 100, 0.2);
  border-radius: var(--radius);
  padding: 2rem 1.4rem 1.8rem;
  background: rgba(251, 247, 239, 0.55);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s, border-color 0.4s;
}
.accolade:hover {
  transform: translateY(-6px) rotate(-0.5deg);
  border-color: var(--red);
  box-shadow: 0 22px 44px -20px rgba(175, 39, 47, 0.35);
}
.accolade .yr {
  font-family: var(--font-hand);
  font-size: 1.35rem;
  color: var(--red);
}
.accolade .ttl {
  font-family: var(--font-display);
  font-weight: normal;
  font-size: 1rem;
  line-height: 1.3;
  color: var(--teal);
  margin-top: 0.3rem;
}
.accolade .src {
  margin-top: 0.55rem;
  font-family: var(--font-caps);
  font-size: 0.58rem; font-weight: 400;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(17, 52, 58, 0.55);
}

/* ---------- Press quote ---------- */
.quote-band { text-align: center; }
.quote-band blockquote {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.35rem, 2.6vw, 2.1rem);
  line-height: 1.4;
  color: var(--teal);
  max-width: 30ch;
  margin: 0 auto;
}
.quote-band cite {
  display: block;
  margin-top: 1.4rem;
  font-style: normal;
  font-family: var(--font-caps);
  font-size: 0.6rem; font-weight: 400;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--red);
}

/* ---------- Picnic kit promo (home) + landing page ---------- */
.promo-kit__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.promo-kit__art {
  border-radius: var(--radius);
  overflow: hidden;
  transform: rotate(-2deg);
  box-shadow: 0 28px 60px -24px rgba(1, 61, 70, 0.45);
  max-width: 460px;
}
.promo-kit__art img { width: 100%; display: block; }
.promo-kit__price {
  font-family: var(--font-caps);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-top: 1.2rem;
}

.kit-intro {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.kit-poster {
  border-radius: var(--radius);
  overflow: hidden;
  transform: rotate(-2deg);
  box-shadow: 0 28px 60px -24px rgba(1, 61, 70, 0.45);
}
.kit-poster img { width: 100%; display: block; }

.kit-days {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 3rem;
}
.kit-card {
  background: rgba(251, 247, 239, 0.06);
  border: 1px solid rgba(251, 247, 239, 0.22);
  border-radius: var(--radius);
  padding: 2.2rem 1.6rem;
  text-align: center;
  transition: transform 0.4s var(--ease-out), border-color 0.4s, background 0.4s;
}
.kit-card:hover { transform: translateY(-6px); border-color: var(--ocean); background: rgba(251, 247, 239, 0.1); }
.kit-card__day {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--paper);
}
.kit-card__date {
  font-family: var(--font-caps);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ocean);
  margin-top: 0.5rem;
}
.kit-card__qty {
  margin: 1.6rem auto 1.4rem;
  display: inline-flex; align-items: center; gap: 1rem;
  border: 1px solid rgba(251, 247, 239, 0.3);
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
}
.kit-card__qty button {
  width: 32px; height: 32px;
  border-radius: 50%;
  font-size: 1.2rem;
  line-height: 1;
  color: var(--paper);
  transition: background 0.25s;
}
.kit-card__qty button:hover { background: rgba(251, 247, 239, 0.15); }
.qty-num {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--paper);
  min-width: 1.6ch;
}
.kit-card .btn { width: 100%; }
.kit-note {
  margin-top: 2.4rem;
  font-size: 0.92rem;
  color: rgba(251, 247, 239, 0.75);
  max-width: 62ch;
}
.kit-note a { border-bottom: 1px solid var(--ocean); }
@media (max-width: 860px) {
  .promo-kit__grid, .kit-intro { grid-template-columns: 1fr; }
  .promo-kit__art, .kit-poster { max-width: 420px; margin: 0 auto; }
  .kit-days { grid-template-columns: 1fr; }
}

/* ---------- Guest reviews (editorial carousel) ---------- */
.reviews-inner { max-width: 780px; }
.review-stage { display: flex; align-items: flex-start; gap: clamp(1.2rem, 3vw, 2.4rem); }
.review-index {
  font-family: var(--font-display);
  font-size: clamp(4rem, 9vw, 7rem);
  line-height: 1;
  color: rgba(1, 87, 100, 0.1);
  user-select: none;
  flex-shrink: 0;
}
.review-body { flex: 1; padding-top: clamp(0.4rem, 1.5vw, 1.2rem); }
.review-quote {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(1.25rem, 2.4vw, 1.9rem);
  line-height: 1.45;
  color: var(--teal);
  transition: opacity 0.3s var(--ease-soft), transform 0.3s var(--ease-soft);
}
.review-quote::before { content: "\201C"; }
.review-quote::after { content: "\201D"; }
.reviews.is-switching .review-quote,
.reviews.is-switching .review-author { opacity: 0; transform: translateX(14px); }
.review-author {
  margin-top: 2.2rem;
  display: flex; align-items: center; gap: 1rem;
  transition: opacity 0.3s var(--ease-soft) 0.06s, transform 0.3s var(--ease-soft) 0.06s;
}
.review-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--paper);
  display: grid; place-items: center;
  font-family: var(--font-caps);
  font-size: 0.85rem;
}
.review-name { font-weight: 600; color: var(--ink); }
.review-meta {
  font-family: var(--font-caps);
  font-size: 0.56rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(17, 52, 58, 0.55);
  margin-top: 0.35rem;
}
.review-meta .stars { color: var(--red); letter-spacing: 0.2em; }
.review-nav {
  margin-top: clamp(2.4rem, 5vh, 4rem);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.review-nav__left { display: flex; align-items: center; gap: 1.4rem; }
.review-lines { display: flex; align-items: center; gap: 0.8rem; }
.review-line { padding: 1rem 0; }
.review-line span {
  display: block;
  height: 2px; width: 24px;
  background: rgba(1, 87, 100, 0.2);
  transition: width 0.45s var(--ease-out), background 0.45s;
}
.review-line:hover span { width: 32px; background: rgba(1, 87, 100, 0.4); }
.review-line.active span { width: 48px; background: var(--red); }
.review-count {
  font-family: var(--font-caps);
  font-size: 0.56rem;
  letter-spacing: 0.16em;
  color: rgba(17, 52, 58, 0.5);
}
.review-arrows { display: flex; gap: 0.4rem; }
.review-arrow {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: rgba(1, 87, 100, 0.45);
  font-size: 1.1rem;
  transition: color 0.3s, background 0.3s;
}
.review-arrow:hover { color: var(--teal); background: rgba(1, 87, 100, 0.07); }
.review-rating {
  margin-top: 2rem;
  font-family: var(--font-caps);
  font-size: 0.56rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(17, 52, 58, 0.45);
}
@media (max-width: 560px) {
  .review-stage { flex-direction: column; gap: 0.4rem; }
  .review-index { font-size: 3.4rem; }
}

/* ---------- Visit strip (home) ---------- */
.visit-strip { position: relative; overflow: clip; color: var(--paper); }
.visit-strip__bg { position: absolute; inset: -14% 0; z-index: 0; }
.visit-strip__bg img { width: 100%; height: 100%; object-fit: cover; }
.visit-strip::before {
  content: "";
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg, rgba(1, 61, 70, 0.88) 0%, rgba(1, 61, 70, 0.55) 55%, rgba(1, 61, 70, 0.25) 100%);
}
.visit-strip .wrap { position: relative; z-index: 2; }
.visit-cols {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: end;
}
.hours-table { margin-top: 1.8rem; max-width: 420px; }
.hours-table div {
  display: flex; justify-content: space-between;
  padding: 0.7rem 0;
  border-bottom: 1px dashed rgba(251, 247, 239, 0.3);
  font-size: 0.98rem;
}
.hours-table dt { font-weight: 700; letter-spacing: 0.05em; }
.visit-address {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(1.15rem, 1.7vw, 1.45rem);
  line-height: 1.5;
}
.visit-address a { border-bottom: 1px solid var(--ocean); transition: color 0.3s; }
.visit-address a:hover { color: var(--ocean); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--teal-deep);
  color: rgba(251, 247, 239, 0.8);
  padding: clamp(3.5rem, 8vh, 6rem) 0 2rem;
  position: relative;
  overflow: clip;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
}
.footer-brand img { height: 56px; filter: brightness(0) invert(1); opacity: 0.95; }
.footer-brand p { margin-top: 1.2rem; max-width: 30ch; font-size: 0.95rem; }
.footer-col h4 {
  font-family: var(--font-caps);
  font-size: 0.62rem; font-weight: 400;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ocean);
  margin-bottom: 1.1rem;
}
.footer-col li { margin-bottom: 0.6rem; }
.footer-col a { transition: color 0.25s; font-size: 0.97rem; }
.footer-col a:hover { color: #fff; }
.footer-script {
  margin-top: clamp(2.5rem, 6vh, 4.5rem);
  display: flex; justify-content: center;
  opacity: 0.13;
  pointer-events: none;
}
.footer-script img { width: min(760px, 86%); filter: brightness(0) invert(1); }
.footer-base {
  margin-top: 2.2rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(251, 247, 239, 0.14);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.8rem;
  font-size: 0.82rem;
  color: rgba(251, 247, 239, 0.5);
}
.footer-base .boom { font-family: var(--font-hand); color: var(--red); font-size: 1.05rem; }
.footer-base a { border-bottom: 1px solid rgba(251, 247, 239, 0.35); transition: color 0.25s, border-color 0.25s; }
.footer-base a:hover { color: #fff; border-color: var(--ocean); }

/* ============================================================
   INTERIOR PAGES
   ============================================================ */

/* Page hero (short) */
.page-hero {
  position: relative;
  min-height: clamp(380px, 56vh, 560px);
  display: flex; align-items: flex-end;
  color: var(--paper);
  overflow: clip;
}
.page-hero__media { position: absolute; inset: -12% 0; z-index: -2; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(1, 61, 70, 0.45), rgba(1, 61, 70, 0.78));
}
.page-hero .wrap { padding-bottom: clamp(2.4rem, 6vh, 4rem); width: 100%; }
.page-hero h1 {
  font-family: var(--font-display);
  font-weight: normal;
  font-size: clamp(1.8rem, 4vw, 3.4rem);
  line-height: 1.16;
}
.page-hero h1 em { font-style: normal; color: var(--ocean); }
.page-hero .lead { color: rgba(251, 247, 239, 0.85); margin-top: 1rem; }

/* ---------- Menu page ---------- */
.menu-nav {
  position: sticky; top: 64px;
  z-index: 900;
  background: rgba(251, 247, 239, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(1, 87, 100, 0.14);
}
.menu-nav .wrap {
  display: flex; gap: 0.4rem;
  overflow-x: auto;
  padding-top: 0.7rem; padding-bottom: 0.7rem;
  scrollbar-width: none;
}
.menu-nav .wrap::-webkit-scrollbar { display: none; }
.menu-nav a {
  flex-shrink: 0;
  font-family: var(--font-caps);
  font-size: 0.6rem; font-weight: 400;
  letter-spacing: 0.05em; text-transform: uppercase;
  padding: 0.55em 1.2em;
  border-radius: 999px;
  color: var(--teal);
  border: 1px solid transparent;
  transition: all 0.3s;
}
.menu-nav a:hover { border-color: rgba(1, 87, 100, 0.35); }
.menu-nav a.active { background: var(--teal); color: var(--paper); }

.menu-section { padding: clamp(3.2rem, 7vh, 5.5rem) 0; scroll-margin-top: 130px; }
.menu-section + .menu-section { border-top: 1px dashed rgba(1, 87, 100, 0.25); }
.menu-section__head { display: flex; align-items: baseline; justify-content: space-between; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 2.2rem; }
.menu-section__head .hand-note { font-size: clamp(1.2rem, 1.8vw, 1.5rem); }
.menu-items {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0.4rem clamp(2rem, 5vw, 4.5rem);
}
.menu-item { min-width: 0; }
.menu-item { padding: 1.05rem 0.6rem; border-radius: 10px; transition: background 0.3s; position: relative; }
.menu-item:hover { background: rgba(125, 179, 206, 0.13); }
.menu-item__row {
  display: flex; align-items: baseline; gap: 0.7rem;
}
.menu-item__name {
  font-family: var(--font-display);
  font-weight: normal;
  font-size: 0.95rem;
  color: var(--teal);
}
.menu-item__dots {
  flex: 1;
  border-bottom: 2px dotted rgba(1, 87, 100, 0.3);
  transform: translateY(-4px);
}
.menu-item__price { font-weight: 700; color: var(--red); white-space: nowrap; }
.menu-item__desc { font-size: 0.92rem; color: rgba(17, 52, 58, 0.66); margin-top: 0.3rem; max-width: 52ch; }
.menu-item .tag {
  display: inline-block;
  font-family: var(--font-caps);
  font-size: 0.5rem; font-weight: 400;
  letter-spacing: 0.08em; text-transform: uppercase;
  background: var(--ocean); color: var(--teal-deep);
  border-radius: 4px;
  padding: 0.15em 0.5em;
  margin-left: 0.5em;
  transform: translateY(-2px);
}
.menu-note {
  margin-top: 2.2rem;
  font-size: 0.88rem;
  color: rgba(17, 52, 58, 0.6);
  font-style: italic;
}
.menu-feature {
  margin: 0 0 1.8rem;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16 / 7;
}
.menu-feature img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Story page ---------- */
.story-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.4rem, 6vw, 6rem);
  align-items: center;
}
.story-block + .story-block { margin-top: clamp(4rem, 10vh, 7rem); }
.story-block:nth-child(even) .story-media { order: 2; }
.story-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 30px 64px -26px rgba(1, 61, 70, 0.5);
}
.story-media img { width: 100%; height: 114%; object-fit: cover; }
.story-media .polaroid-note {
  position: absolute; bottom: 1rem; left: 1rem;
  background: var(--paper);
  color: var(--teal);
  font-family: var(--font-hand);
  font-size: 1.25rem;
  padding: 0.4em 0.9em;
  border-radius: 8px;
  transform: rotate(-2.5deg);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}
.story-copy p + p { margin-top: 1.2rem; }
.story-copy .drop::first-letter {
  font-family: var(--font-display);
  font-size: 3.4em;
  float: left;
  line-height: 0.85;
  padding-right: 0.12em;
  color: var(--red);
}

.family-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin-top: 3rem;
}
.family-card {
  background: var(--paper);
  border: 1px solid rgba(1, 87, 100, 0.16);
  border-radius: var(--radius);
  padding: 1.9rem 1.5rem;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s;
}
.family-card:hover { transform: translateY(-6px); box-shadow: 0 24px 48px -22px rgba(1, 61, 70, 0.4); }
.family-card .yr { font-family: var(--font-hand); color: var(--red); font-size: 1.2rem; }
.family-card h3 { font-family: var(--font-display); font-size: 1.02rem; font-weight: normal; color: var(--teal); margin-top: 0.4rem; line-height: 1.3; }
.family-card p { font-size: 0.92rem; color: rgba(17, 52, 58, 0.68); margin-top: 0.6rem; }
.family-card.current { background: var(--teal); border-color: var(--teal); }
.family-card.current h3 { color: var(--paper); }
.family-card.current p { color: rgba(251, 247, 239, 0.78); }
.family-card.current .yr { color: var(--ocean); }

/* ---------- Visit page ---------- */
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.4rem, 6vw, 5rem);
  align-items: start;
}
.visit-card {
  background: var(--paper);
  border: 1px solid rgba(1, 87, 100, 0.16);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 3vw, 2.4rem);
}
.visit-card + .visit-card { margin-top: 1.4rem; }
.visit-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem; font-weight: normal;
  color: var(--teal);
  margin-bottom: 0.9rem;
  display: flex; align-items: center; gap: 0.6rem;
}
.visit-card .hours-table { margin-top: 0.4rem; max-width: none; }
.visit-card .hours-table div { border-color: rgba(1, 87, 100, 0.2); }
.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(1, 87, 100, 0.2);
  aspect-ratio: 4 / 4.6;
  position: sticky; top: 110px;
}
.map-frame iframe { width: 100%; height: 100%; border: 0; filter: saturate(0.82); }

.faq { max-width: 820px; margin: 0 auto; }
.faq details {
  border-bottom: 1px solid rgba(1, 87, 100, 0.18);
  padding: 1.1rem 0;
}
.faq summary {
  font-family: var(--font-body);
  font-size: 1.12rem; font-weight: 600;
  color: var(--teal);
  cursor: pointer;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: var(--font-body);
  font-size: 1.5rem;
  color: var(--red);
  transition: transform 0.35s var(--ease-out);
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0.8rem 0 0.4rem; color: rgba(17, 52, 58, 0.75); max-width: 64ch; }

/* CTA band */
.cta-band {
  background: var(--red);
  color: var(--paper);
  text-align: center;
  position: relative;
  overflow: clip;
}
.cta-band .h2 { color: var(--paper); margin: 0 auto; }
.cta-band .hand-note { color: #ffd9a0; }
.cta-band::before, .cta-band::after {
  content: "";
  position: absolute;
  width: 340px; height: 340px;
  border-radius: 50%;
  border: 2px dashed rgba(251, 247, 239, 0.25);
}
.cta-band::before { left: -130px; top: -130px; }
.cta-band::after { right: -110px; bottom: -150px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1020px) {
  .accolade-row { grid-template-columns: repeat(2, 1fr); }
  .family-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: block; }
  .intro-grid, .rawbar-grid, .visit-cols, .story-block, .visit-grid { grid-template-columns: 1fr; }
  .story-block:nth-child(even) .story-media { order: 0; }
  .schools { grid-template-columns: 1fr; }
  .school__desc { max-height: none; opacity: 1; }
  /* Text sits over the photo full-time on mobile — deepen the scrim */
  .school::before {
    background: linear-gradient(180deg, rgba(1, 61, 70, 0.05) 0%, rgba(1, 61, 70, 0.55) 45%, rgba(1, 61, 70, 0.92) 100%);
  }
  .menu-items { grid-template-columns: minmax(0, 1fr); }
  .intro-figures { min-height: 0; height: auto; display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .intro-figures figure { position: relative; inset: auto; width: 100%; }
  .fig-b { transform: rotate(0); }
  .fig-caption { position: static; display: inline-block; margin-bottom: 0.6rem; }
  .map-frame { position: static; aspect-ratio: 4 / 3; }
  .hero__badge { display: none; }
  .menu-nav { top: 56px; }
}

@media (max-width: 560px) {
  .accolade-row { grid-template-columns: 1fr; }
  .family-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero__ctas .btn { width: 100%; }

  /* Hero text sits over a busy photo — darker scrim, tighter kicker */
  .hero::before {
    background: linear-gradient(180deg, rgba(1, 61, 70, 0.5) 0%, rgba(1, 61, 70, 0.22) 32%, rgba(1, 61, 70, 0.88) 72%, rgba(1, 61, 70, 0.95) 100%);
  }
  .hero__kicker { font-size: 0.54rem; letter-spacing: 0.08em; }

  /* Menu rows: stack name over price so long price strings never
     force horizontal scrolling */
  .menu-item__row { display: block; }
  .menu-item__dots { display: none; }
  .menu-item__name { display: block; }
  .menu-item__price { display: block; margin-top: 0.4rem; white-space: normal; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.15s !important;
  }
  .ticker__track, .gallery-marquee__track { animation: none !important; }
}
