/* ==========================================================================
   Ocean Buffet, Waco TX
   Hand-written CSS, no framework, no build step.

   System rules (keep these consistent when editing):
   - Color:  ocean teal neutrals + ONE accent (vermilion). Accent is for
             primary actions and small highlights only.
   - Shape:  buttons and chips are full pills; cards and photos use --r-md /
             --r-lg; small inner elements use --r-sm.
   - Motion: transform and opacity only, and only when the visitor has not
             asked for reduced motion.
   - Layers: see the z-index scale in :root.
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  color-scheme: light dark;

  --bg: #f4f8f8;
  --surface: #fcfefe;
  --tint: #e4eff0;
  --ink: #0b2a31;
  --ink-2: #41595f;
  --line: #d5e2e4;
  --ocean: #0b3a45;
  --ocean-2: #124e5c;
  --on-ocean: #eef7f8;
  --on-ocean-2: #b9d2d6;
  --accent: #c8371f;
  --accent-strong: #a92c17;
  --accent-text: #b5301a;
  --on-accent: #fffaf8;
  --open: #17754d;
  --focus: #157a8f;

  --font-display: "Bricolage Grotesque", "Avenir Next", "Segoe UI", system-ui, sans-serif;
  --font-body: "Figtree", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --r-sm: 12px;
  --r-md: 20px;
  --r-lg: 28px;
  --r-pill: 999px;

  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --container: 1240px;
  --section-y: clamp(4.5rem, 9vw, 8rem);
  --header-h: 72px;

  --shadow-sm: 0 1px 2px rgb(11 58 69 / 0.06), 0 6px 18px -8px rgb(11 58 69 / 0.16);
  --shadow-lg: 0 2px 4px rgb(11 58 69 / 0.05), 0 28px 60px -24px rgb(11 58 69 / 0.35);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);

  /* z-index scale */
  --z-header: 100;
  --z-nav: 90;
  --z-action-bar: 80;
  --z-skip: 200;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #06191e;
    --surface: #0c262d;
    --tint: #0f2f38;
    --ink: #e9f3f4;
    --ink-2: #a5bcc1;
    --line: #1c3c45;
    --ocean: #0e3540;
    --ocean-2: #15505e;
    --accent-text: #ff8d73;
    --open: #4cc38a;
    --focus: #6fd0e2;
    --shadow-sm: 0 1px 2px rgb(0 0 0 / 0.3), 0 6px 18px -8px rgb(0 0 0 / 0.5);
    --shadow-lg: 0 2px 4px rgb(0 0 0 / 0.3), 0 28px 60px -24px rgb(0 0 0 / 0.7);
  }
}

@media (max-width: 720px) {
  :root { --header-h: 64px; }
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-padding-top: calc(var(--header-h) + 1rem);
}

@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Lock scrolling on the root only: overflow on <body> as well would make body the
   scroll container and the sticky header would scroll away with the open menu. */
html.nav-open { overflow: hidden; }

h1, h2, h3, h4, p, ul, ol, dl, dd, figure, table { margin: 0; }
/* :where() keeps this reset at zero specificity so any component rule can add padding back. */
:where(ul[class], ol[class], .site-footer ul, .order-band__menu ul, .carry ul, .info-grid ul) { list-style: none; padding: 0; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.6rem, 1.35rem + 4.7vw, 4.6rem); line-height: 1; letter-spacing: -0.04em; }
h2 { font-size: clamp(2.05rem, 1.35rem + 2.7vw, 3.3rem); }
h3 { font-size: clamp(1.3rem, 1.15rem + 0.5vw, 1.55rem); letter-spacing: -0.02em; line-height: 1.15; }
h4 { font-size: 1.0625rem; letter-spacing: -0.01em; line-height: 1.3; }

p { text-wrap: pretty; }

img, picture, svg, iframe { display: block; max-width: 100%; }
img { height: auto; }

a { color: inherit; text-decoration-thickness: 0.08em; text-underline-offset: 0.18em; }

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
  border-radius: 6px;
}

::selection { background: var(--ocean); color: var(--on-ocean); }

.container {
  width: min(100% - (var(--gutter) * 2), var(--container));
  margin-inline: auto;
}

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0; border: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.skip-link {
  position: absolute;
  left: 1rem; top: -4rem;
  z-index: var(--z-skip);
  padding: 0.75rem 1.1rem;
  background: var(--ocean);
  color: var(--on-ocean);
  border-radius: var(--r-pill);
  font-weight: 600;
  text-decoration: none;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 1rem; }

.icon {
  width: 1.25em; height: 1.25em;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ---------- Sections ---------- */
.section { padding-block: var(--section-y); }
.section--tint { background: var(--tint); }
.section--flush-top { padding-top: 0; }

.section-head { max-width: 46rem; margin-bottom: clamp(2rem, 4vw, 3.5rem); }
.section-head p {
  margin-top: 1.1rem;
  color: var(--ink-2);
  font-size: clamp(1.0625rem, 1rem + 0.35vw, 1.25rem);
  max-width: 38rem;
}

.eyebrow {
  display: block;
  margin-bottom: 1.1rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
  color: var(--accent-text);
}

.lead {
  color: var(--ink-2);
  font-size: clamp(1.125rem, 1.02rem + 0.5vw, 1.35rem);
  line-height: 1.55;
  max-width: 36rem;
}

.section-more { margin-top: clamp(1.75rem, 3vw, 2.5rem); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 0.2rem;
}
.link-arrow .icon { transition: transform 0.35s var(--ease); }
.link-arrow:hover .icon { transform: translateX(4px); }

.fineprint { color: var(--ink-2); font-size: 0.9375rem; }
.nowrap { white-space: nowrap; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 52px;
  padding: 0 1.6rem;
  border: 1.5px solid transparent;
  border-radius: var(--r-pill);
  font: 700 1rem/1 var(--font-body);
  letter-spacing: 0.005em;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 0.25s var(--ease), color 0.25s var(--ease),
              border-color 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.btn:active { transform: scale(0.97); }
.btn--sm { min-height: 44px; padding: 0 1.2rem; font-size: 0.9375rem; }

.btn--accent { background: var(--accent); color: var(--on-accent); box-shadow: 0 10px 24px -12px rgb(200 55 31 / 0.7); }
.btn--accent:hover { background: var(--accent-strong); transform: translateY(-2px); }
.btn--accent:active { transform: scale(0.97); }

.btn--outline { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn--outline:hover { background: var(--ink); color: var(--bg); }

.btn--light { background: var(--on-accent); color: #0b2a31; }
.btn--light:hover { background: #ffffff; transform: translateY(-2px); }

.btn--ghost-light { border-color: rgb(255 255 255 / 0.65); color: #ffffff; background: transparent; }
.btn--ghost-light:hover { background: #ffffff; color: #0b2a31; border-color: #ffffff; }

.btn-row { display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* ---------- Announcement ---------- */
.announcement {
  background: var(--ocean);
  color: var(--on-ocean);
  font-size: 0.9375rem;
  font-weight: 500;
  text-align: center;
  padding: 0.6rem var(--gutter);
}
.announcement a { font-weight: 700; margin-left: 0.4rem; }

/* ---------- Header ---------- */
.top-sentinel { position: absolute; top: 0; left: 0; width: 1px; height: 8px; pointer-events: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
/* The header background lives on a pseudo-element. A backdrop-filter on the header
   itself would make it the containing block for the fixed mobile menu inside it. */
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--bg);
  transition: background-color 0.3s var(--ease);
}
.site-header.is-stuck {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 24px -18px rgb(11 58 69 / 0.4);
}
@supports ((backdrop-filter: blur(12px)) or (-webkit-backdrop-filter: blur(12px))) {
  .site-header.is-stuck::before {
    background: color-mix(in srgb, var(--bg) 86%, transparent);
    -webkit-backdrop-filter: saturate(160%) blur(14px);
    backdrop-filter: saturate(160%) blur(14px);
  }
  html.nav-open .site-header::before { background: var(--bg); -webkit-backdrop-filter: none; backdrop-filter: none; }
}

.site-header__inner {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2.5rem);
  height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  margin-right: auto;
}
.brand__mark { width: 40px; height: 40px; flex: none; }
.brand__name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  white-space: nowrap;
}

.site-nav__list { display: flex; align-items: center; gap: clamp(0.25rem, 1.2vw, 1rem); }
.site-nav__list a {
  position: relative;
  display: block;
  padding: 0.6rem 0.7rem;
  font-size: 0.9875rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  color: var(--ink-2);
  transition: color 0.25s var(--ease);
}
.site-nav__list a::after {
  content: "";
  position: absolute;
  left: 0.7rem; right: 0.7rem; bottom: 0.3rem;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.site-nav__list a:hover, .site-nav__list a[aria-current="page"] { color: var(--ink); }
.site-nav__list a:hover::after, .site-nav__list a[aria-current="page"]::after { transform: scaleX(1); }

.site-nav__extra { display: none; }

.site-header__actions { display: flex; align-items: center; gap: 0.75rem; }

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 44px;
  padding: 0 0.5rem;
  font-weight: 700;
  font-size: 0.9875rem;
  text-decoration: none;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.header-phone:hover { color: var(--accent-text); }

.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  padding: 0;
  border: 1.5px solid var(--line);
  border-radius: var(--r-pill);
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.nav-toggle__bars { position: relative; width: 18px; height: 12px; }
.nav-toggle__bars::before, .nav-toggle__bars::after {
  content: "";
  position: absolute; left: 0; right: 0;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.35s var(--ease), top 0.35s var(--ease);
}
.nav-toggle__bars::before { top: 0; }
.nav-toggle__bars::after { top: 10px; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::before { top: 5px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::after { top: 5px; transform: rotate(-45deg); }

@media (min-width: 1025px) {
  .site-nav__item--order { display: none; }
}
@media (max-width: 1180px) {
  .header-phone span { display: none; }
  .header-phone { width: 46px; justify-content: center; padding: 0; border: 1.5px solid var(--line); border-radius: var(--r-pill); background: var(--surface); }
}

@media (max-width: 1024px) {
  .nav-toggle { display: inline-flex; }
  .site-header__actions .btn { display: none; }

  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 0 0;
    z-index: var(--z-nav);
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 1.5rem var(--gutter) calc(2rem + env(safe-area-inset-bottom));
    background: var(--bg);
    overflow-y: auto;
    overscroll-behavior: contain;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0s linear 0.3s;
  }
  html.nav-open .site-nav {
    visibility: visible;
    opacity: 1;
    transform: none;
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0s;
  }
  .site-nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .site-nav__list li { border-bottom: 1px solid var(--line); }
  .site-nav__list a {
    padding: 1.05rem 0;
    font-family: var(--font-display);
    font-size: 1.65rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--ink);
  }
  .site-nav__list a::after { display: none; }
  .site-nav__list a[aria-current="page"] { color: var(--accent-text); }

  .site-nav__extra { display: grid; gap: 1rem; }
  .site-nav__extra .btn-row .btn { flex: 1 1 10rem; }
  .site-nav__hours { color: var(--ink-2); font-size: 0.9875rem; font-variant-numeric: tabular-nums; }
  .site-nav__hours li { display: flex; justify-content: space-between; gap: 1rem; padding-block: 0.2rem; }
}

/* ---------- Status (open / closed) ---------- */
.status { display: inline-flex; align-items: center; gap: 0.55rem; font-weight: 600; }
.status[hidden] { display: none; }
.status__dot {
  width: 0.6rem; height: 0.6rem;
  border-radius: 50%;
  background: var(--ink-2);
  flex: none;
}
.status.is-open .status__dot { background: var(--open); box-shadow: 0 0 0 4px color-mix(in srgb, var(--open) 22%, transparent); }

/* ---------- Hero ---------- */
.hero { padding-block: clamp(2rem, 4.5vw, 4.5rem) clamp(3.5rem, 7vw, 6.5rem); overflow: clip; }

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
}

.hero__title .eyebrow { margin-bottom: 1.4rem; }
.hero__title-line { display: block; }

.hero .lead { margin-top: 1.6rem; }

.hero__cta { margin-top: 2.25rem; }

.hero__quick {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1.75rem;
  margin-top: 1.75rem;
  font-size: 0.9875rem;
}
.hero__quick a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 44px;
  font-weight: 700;
  text-decoration: none;
}
.hero__quick a span { border-bottom: 2px solid var(--line); padding-bottom: 0.1rem; transition: border-color 0.25s var(--ease); }
.hero__quick a:hover span { border-bottom-color: var(--accent); }
.hero__quick .icon { color: var(--accent-text); }
.hero__quick .status { color: var(--ink-2); }

.hero__media {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(12, 1fr);
  aspect-ratio: 1 / 1.03;
}
.hero__img {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--tint);
  box-shadow: var(--shadow-lg);
}
.hero__img img { width: 100%; height: 100%; object-fit: cover; }
.hero__img--a { grid-column: 1 / 11; grid-row: 1 / 8; }
.hero__img--b { grid-column: 7 / 13; grid-row: 5 / 13; box-shadow: 0 0 0 8px var(--bg), var(--shadow-lg); z-index: 1; }
.hero__img--c { grid-column: 2 / 7; grid-row: 8 / 13; margin-top: clamp(0.75rem, 1.6vw, 1.5rem); }

/* Two-column hero on narrower screens (iPad landscape, small laptops): size the
   headline so each sentence stays on one line. */
@media (min-width: 901px) and (max-width: 1240px) {
  .hero__title { font-size: clamp(2.75rem, 5.2vw, 3.9rem); }
}
@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { aspect-ratio: 1 / 0.8; }
}
@media (max-width: 560px) {
  .hero__media { aspect-ratio: 1 / 0.92; }
}
@media (max-width: 480px) {
  .hero__cta .btn { flex: 1 1 100%; }
}
@media (max-width: 360px) {
  .hero__title { font-size: 2.25rem; }   /* keeps "Over 200 dishes." on one line on the smallest phones */
}

/* ---------- Ticker ---------- */
.ticker {
  background: var(--ocean);
  color: var(--on-ocean);
  overflow: hidden;
  padding-block: 1.15rem;
  border-block: 1px solid var(--ocean-2);
}
.ticker__track { display: flex; width: max-content; }
.ticker__list {
  display: flex;
  align-items: center;
  flex: none;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 0.95rem + 0.6vw, 1.45rem);
  font-weight: 600;
  letter-spacing: -0.015em;
  white-space: nowrap;
}
.ticker__list li { display: inline-flex; align-items: center; }
.ticker__list li::after {
  content: "";
  width: 1.5rem; height: 0.6rem;
  margin-inline: clamp(1.25rem, 2.5vw, 2.25rem);
  background: #ff8d73;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 10'%3E%3Cpath d='M1 6.5q3.7-7 7.3 0t7.4 0 7.3 0' fill='none' stroke='%23000' stroke-width='2.2' stroke-linecap='round'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 10'%3E%3Cpath d='M1 6.5q3.7-7 7.3 0t7.4 0 7.3 0' fill='none' stroke='%23000' stroke-width='2.2' stroke-linecap='round'/%3E%3C/svg%3E") center / contain no-repeat;
}

@media (prefers-reduced-motion: no-preference) {
  .ticker__track { animation: ticker 46s linear infinite; }
  .ticker:hover .ticker__track { animation-play-state: paused; }
}
@media (prefers-reduced-motion: reduce) {
  .ticker__track { width: auto; }
  .ticker__list { flex-wrap: wrap; justify-content: center; row-gap: 0.4rem; white-space: normal; padding-inline: var(--gutter); }
  .ticker__list[aria-hidden="true"] { display: none; }
}
@keyframes ticker { to { transform: translateX(-50%); } }

/* ---------- Statement + facts ---------- */
.statement__text {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 1.1rem + 2.1vw, 2.75rem);
  font-weight: 600;
  line-height: 1.16;
  letter-spacing: -0.03em;
  max-width: 54rem;
  text-wrap: balance;
}
.statement__text em { font-style: normal; color: var(--accent-text); }

.facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.5rem, 3vw, 3rem);
  margin-top: clamp(2.5rem, 5vw, 4.5rem);
  padding-top: clamp(1.75rem, 3vw, 2.5rem);
  border-top: 1px solid var(--line);
}
.facts strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 1.5rem + 1.8vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.facts span { display: block; margin-top: 0.6rem; color: var(--ink-2); font-size: 0.9875rem; max-width: 14rem; }
@media (max-width: 760px) { .facts { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Price board ---------- */
.board {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.board__col {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(1.5rem, 2.2vw, 2.25rem);
  padding-top: 3rem;               /* room for the "Serving now" tag */
  border-left: 1px solid var(--line);
}
.board__col:first-child { border-left: 0; }

/* Subgrid lines up name / time / price / badge / kids across all columns,
   even when one name wraps. Browsers without it keep the flex fallback above. */
@supports (grid-template-rows: subgrid) {
  .board__col { display: grid; grid-row: span 5; grid-template-rows: subgrid; align-content: start; }
  .board__badge { grid-row: 4; justify-self: start; }
  .board__kids { grid-row: 5; align-self: end; }
}

.board__name { font-size: clamp(1.2rem, 1.05rem + 0.5vw, 1.45rem); }
.board__when { margin-top: 0.7rem; color: var(--ink-2); font-size: 0.9375rem; line-height: 1.45; }
.board__when b { display: block; color: var(--ink); font-weight: 700; }

.board__price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-top: 1.75rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.6rem, 2rem + 1.9vw, 3.6rem);
  letter-spacing: -0.045em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.board__price sup { font-size: 0.45em; letter-spacing: 0; align-self: flex-start; margin-top: 0.25em; }
.board__price small {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0;
  color: var(--ink-2);
}

.board__badge {
  align-self: flex-start;
  margin-top: 0.9rem;
  padding: 0.35rem 0.8rem;
  border-radius: var(--r-pill);
  background: var(--accent);
  color: var(--on-accent);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.board__kids { margin-top: auto; padding-top: 2.1rem; display: grid; gap: 0.55rem; }

.board__now {
  position: absolute;
  top: 1.35rem;
  left: clamp(1.5rem, 2.2vw, 2.25rem);
  display: none;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--open);
}
.board__now::before { content: ""; width: 0.5rem; height: 0.5rem; border-radius: 50%; background: currentColor; }
.board__col.is-now .board__now { display: inline-flex; }

.board__col.is-featured { background: var(--ocean); color: var(--on-ocean); border-left-color: var(--ocean); }
.board__col.is-featured + .board__col { border-left-color: transparent; }
.board__col.is-featured .board__when, .board__col.is-featured .board__price small { color: var(--on-ocean-2); }
.board__col.is-featured .board__when b { color: var(--on-ocean); }
.board__col.is-featured .board__now { color: #6fe0a6; }
.board__col.is-featured .leader { color: var(--on-ocean); }
.board__col.is-featured .leader::before { border-bottom-color: rgb(255 255 255 / 0.28); }

/* Menu-style row: label ........ price */
.leader {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  font-size: 1rem;
}
.leader::before {
  content: "";
  order: 1;
  flex: 1;
  border-bottom: 2px dotted var(--line);
  transform: translateY(-0.25em);
  min-width: 1.5rem;
}
.leader__label { order: 0; }
.leader__label small { display: block; color: var(--ink-2); font-size: 0.875rem; }
.leader__price { order: 2; font-weight: 700; font-variant-numeric: tabular-nums; white-space: nowrap; }
.leader__price small { font-weight: 500; color: var(--ink-2); font-size: 0.875em; }

@media (max-width: 1080px) {
  .board { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .board__col:nth-child(odd) { border-left: 0; }
  .board__col:nth-child(n+3) { border-top: 1px solid var(--line); }
  .board__col.is-featured + .board__col { border-left-color: var(--line); }
}
@media (max-width: 620px) {
  .board { grid-template-columns: 1fr; }
  .board__col { border-left: 0; }
  .board__col:nth-child(n+2) { border-top: 1px solid var(--line); }
  .board__kids { padding-top: 1.9rem; }
}

/* Everyday savings row */
.offers {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1.25rem, 2.5vw, 2.5rem);
  margin-top: clamp(2rem, 3.5vw, 3rem);
}
.offers li { padding-top: 1.1rem; border-top: 2px solid var(--ink); }
.offers strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 1.3rem + 0.8vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.05;
}
.offers span { display: block; margin-top: 0.35rem; font-weight: 600; }
.offers small { display: block; color: var(--ink-2); font-size: 0.9375rem; }
@media (max-width: 760px) { .offers { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

/* ---------- Food tiles (home) ---------- */
.tiles {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(1.5rem, 2.4vw, 2.25rem) clamp(1rem, 2vw, 1.75rem);
}
.tile { display: block; text-decoration: none; grid-column: span 4; }
.tile:nth-child(1), .tile:nth-child(4) { grid-column: span 7; }
.tile:nth-child(2), .tile:nth-child(3) { grid-column: span 5; }

.tile__media {
  height: clamp(210px, 22vw, 310px);
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--tint);
}
.tile:nth-child(-n+4) .tile__media { height: clamp(260px, 31vw, 440px); }
.tile__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }
.tile:hover .tile__media img { transform: scale(1.045); }

.tile h3 { margin-top: 1.1rem; display: flex; align-items: center; gap: 0.5rem; }
.tile h3 .icon { width: 1em; height: 1em; opacity: 0; transform: translateX(-6px); transition: opacity 0.3s var(--ease), transform 0.3s var(--ease); color: var(--accent-text); }
.tile:hover h3 .icon, .tile:focus-visible h3 .icon { opacity: 1; transform: none; }
.tile p { margin-top: 0.45rem; color: var(--ink-2); font-size: 1rem; max-width: 34rem; }

@media (max-width: 720px) {
  .tiles {
    display: flex;
    gap: 1rem;
    margin-inline: calc(var(--gutter) * -1);
    padding-inline: var(--gutter);
    padding-bottom: 0.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: var(--gutter);
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .tiles::-webkit-scrollbar { display: none; }
  .tile { flex: 0 0 78%; scroll-snap-align: start; }
  .tile .tile__media, .tile:nth-child(-n+4) .tile__media { height: 64vw; max-height: 340px; }
}

/* ---------- Party band (home) ---------- */
.party { position: relative; display: grid; align-items: end; min-height: clamp(560px, 62vw, 760px); padding-block: clamp(2rem, 5vw, 5rem); overflow: clip; }
.party__bg { position: absolute; inset: 0; }
.party__bg img { width: 100%; height: 100%; object-fit: cover; }
.party__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgb(6 25 30 / 0) 35%, rgb(6 25 30 / 0.45)); }
.party .container { position: relative; }
.party__card {
  max-width: 35rem;
  margin-left: auto;
  padding: clamp(1.75rem, 3.2vw, 3rem);
  background: var(--surface);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
}
.party__card p { margin-top: 1rem; color: var(--ink-2); }
.party__card .btn-row { margin-top: 1.75rem; align-items: center; gap: 0.75rem 1.5rem; }

.chips { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.5rem; }
.chips li {
  padding: 0.45rem 0.95rem;
  border-radius: var(--r-pill);
  background: var(--tint);
  font-size: 0.9375rem;
  font-weight: 600;
}

@media (max-width: 720px) {
  .party { min-height: 0; padding-block: 0; display: block; }
  .party__bg { position: relative; height: 62vw; }
  .party__bg::after { display: none; }
  .party__card { margin: -3rem 0 0; position: relative; max-width: none; }
  .party { padding-bottom: clamp(3rem, 8vw, 4rem); }
}

/* ---------- Order band ---------- */
.order-band { background: var(--accent); color: var(--on-accent); overflow: clip; }
.order-band :focus-visible { outline-color: #ffffff; }
.order-band__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  padding-block: clamp(3.5rem, 7vw, 6rem);
}
.order-band h2 { max-width: 12ch; }
.order-band__lead { margin-top: 1.25rem; font-size: clamp(1.0625rem, 1rem + 0.4vw, 1.25rem); max-width: 32rem; }
.order-band .btn-row { margin-top: 2rem; }

.order-band__menu {
  padding: clamp(1.5rem, 2.6vw, 2.25rem);
  border-radius: var(--r-lg);
  background: rgb(0 0 0 / 0.16);
  border: 1px solid rgb(255 255 255 / 0.22);
}
.order-band__menu h3 { font-size: 1.15rem; letter-spacing: -0.01em; }
.order-band__menu .fineprint { margin-top: 0.35rem; color: rgb(255 250 248 / 0.94); }
.order-band__menu ul { display: grid; gap: 0.7rem; margin-top: 1.4rem; }
.order-band .leader::before { border-bottom-color: rgb(255 255 255 / 0.45); }
.order-band .leader__label small, .order-band .leader__price small { color: rgb(255 250 248 / 0.94); }

@media (max-width: 860px) { .order-band__grid { grid-template-columns: 1fr; } }

/* ---------- Location ---------- */
.location__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: stretch;
}
.location__address { margin-top: 1.75rem; font-style: normal; font-size: 1.2rem; line-height: 1.5; font-weight: 600; }
.location__address small { display: block; margin-top: 0.3rem; font-size: 0.9875rem; font-weight: 500; color: var(--ink-2); }
.location__phone {
  display: inline-flex; align-items: center; gap: 0.6rem;
  margin-top: 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 1.4rem + 0.8vw, 2.1rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  text-decoration: none;
  font-variant-numeric: tabular-nums;
}
.location__phone .icon { color: var(--accent-text); width: 0.85em; height: 0.85em; }
.location__phone:hover { color: var(--accent-text); }
.location__info .status { display: flex; margin-top: 1.25rem; }
.location__info .status[hidden] { display: none; }
.location__info .btn-row { margin-top: 2rem; }

.hours { width: 100%; margin-top: 1rem; border-collapse: collapse; font-variant-numeric: tabular-nums; }
.hours caption { text-align: left; font-weight: 700; padding-bottom: 0.6rem; }
.hours th, .hours td { padding: 0.5rem 0.75rem; text-align: left; font-weight: 500; }
.hours td { text-align: right; color: var(--ink-2); }
.hours th:first-child { border-radius: var(--r-sm) 0 0 var(--r-sm); }
.hours td:last-child { border-radius: 0 var(--r-sm) var(--r-sm) 0; }
.hours tr.is-today th, .hours tr.is-today td { background: var(--tint); color: var(--ink); font-weight: 700; }
.hours-note { margin-top: 0.9rem; }

.map {
  position: relative;
  min-height: 420px;
  height: 100%;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--tint);
  border: 1px solid var(--line);
}
.map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

@media (max-width: 900px) {
  .location__grid { grid-template-columns: 1fr; }
  .map { min-height: 360px; height: 360px; }
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero { padding-block: clamp(2.25rem, 5vw, 4.5rem) clamp(2.5rem, 5vw, 4.5rem); }
.page-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
}
.page-hero .lead { margin-top: 1.5rem; }
.page-hero .btn-row { margin-top: 2rem; }
.page-hero__media { border-radius: var(--r-lg); overflow: hidden; background: var(--tint); box-shadow: var(--shadow-lg); aspect-ratio: 3 / 2; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero--plain .page-hero__grid { grid-template-columns: 1fr; }
@media (max-width: 900px) { .page-hero__grid { grid-template-columns: 1fr; } }

/* ---------- Split feature (crab legs, birthdays) ---------- */
.feature {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
}
.feature--flip .feature__media { order: 2; }
.feature__media { border-radius: var(--r-lg); overflow: hidden; background: var(--tint); aspect-ratio: 3 / 2; }
.feature__media img { width: 100%; height: 100%; object-fit: cover; }
.feature__body p { margin-top: 1.1rem; color: var(--ink-2); max-width: 32rem; }
.feature__body .btn-row { margin-top: 1.75rem; }
.feature__price {
  display: flex; align-items: baseline; gap: 0.6rem;
  margin-top: 1.5rem;
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2.4rem, 2rem + 1.6vw, 3.4rem);
  letter-spacing: -0.045em; line-height: 1;
}
.feature__body .feature__price { color: var(--ink); }
.feature__price small { font-family: var(--font-body); font-size: 1rem; font-weight: 600; letter-spacing: 0; color: var(--ink-2); }
@media (max-width: 860px) {
  .feature { grid-template-columns: 1fr; }
  .feature--flip .feature__media { order: 0; }
}

/* ---------- Carry-out panel ---------- */
.carry {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.5rem, 4vw, 4rem);
  padding: clamp(1.75rem, 3.5vw, 3.25rem);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
}
.carry h3 { margin-bottom: 1.25rem; }
.carry ul { display: grid; gap: 0.85rem; }
.carry__rule {
  grid-column: 1 / -1;
  display: flex; align-items: center; gap: 0.6rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
}
.carry__rule .icon { color: var(--accent-text); }
@media (max-width: 720px) { .carry { grid-template-columns: 1fr; } }

/* ---------- Food page ---------- */
.dish-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
  align-items: center;
  gap: clamp(1.75rem, 4vw, 4rem);
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}
.dish-feature .dish__media { aspect-ratio: 3 / 2; }

.dishes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2.5rem, 5vw, 4.5rem) clamp(1.5rem, 3vw, 3rem);
}
.dish { scroll-margin-top: calc(var(--header-h) + 1.5rem); }
.dish__media { border-radius: var(--r-lg); overflow: hidden; background: var(--tint); aspect-ratio: 4 / 3; }
.dish__media img { width: 100%; height: 100%; object-fit: cover; }
.dishes .dish:nth-child(even) { margin-top: clamp(0rem, 5vw, 4.5rem); }
.dish h2 { font-size: clamp(1.7rem, 1.35rem + 1.3vw, 2.4rem); margin-top: 1.4rem; }
.dish-feature .dish h2, .dish-feature h2 { margin-top: 0; }
.dish p { margin-top: 0.8rem; color: var(--ink-2); max-width: 34rem; }
.dish p + p { margin-top: 0.6rem; }
.dish .chips { margin-top: 1.2rem; }

@media (max-width: 760px) {
  .dish-feature, .dishes { grid-template-columns: 1fr; }
  .dishes .dish:nth-child(even) { margin-top: 0; }
}

/* ---------- Occasions (party page) ---------- */
.occasions {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
}
.occasion {
  grid-column: span 2;
  padding: clamp(1.4rem, 2.4vw, 2rem);
  border-radius: var(--r-md);
  background: var(--surface);
  border: 1px solid var(--line);
}
.occasion:nth-child(1), .occasion:nth-child(2) { grid-column: span 3; }
.occasion:nth-child(1) { background: var(--ocean); color: var(--on-ocean); border-color: var(--ocean); }
.occasion:nth-child(1) p { color: var(--on-ocean-2); }
.occasion p { margin-top: 0.6rem; color: var(--ink-2); font-size: 1rem; }
@media (max-width: 860px) {
  .occasions { grid-template-columns: 1fr; }
  .occasion, .occasion:nth-child(1), .occasion:nth-child(2) { grid-column: auto; }
}

/* ---------- Steps (order page) ---------- */
.steps-title { margin: clamp(2.5rem, 5vw, 4rem) 0 clamp(1.5rem, 3vw, 2.5rem); }
.steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(1.5rem, 3vw, 3rem); counter-reset: step; }
.steps li { counter-increment: step; padding-top: 1.25rem; border-top: 2px solid var(--ink); }
.steps li::before {
  content: counter(step);
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem; font-weight: 700; letter-spacing: -0.04em; line-height: 1;
  color: var(--accent-text);
  margin-bottom: 0.9rem;
}
.steps p { margin-top: 0.5rem; color: var(--ink-2); }
@media (max-width: 760px) { .steps { grid-template-columns: 1fr; } }

/* ---------- Notice ---------- */
.notice {
  display: flex; gap: 0.9rem; align-items: flex-start;
  padding: 1.15rem 1.35rem;
  border-radius: var(--r-md);
  background: var(--tint);
  font-weight: 500;
  max-width: 44rem;
}
.notice .icon { margin-top: 0.15rem; color: var(--accent-text); }

/* ---------- FAQ ---------- */
.faq { max-width: 52rem; }
.faq details { border-bottom: 1px solid var(--line); }
.faq details:first-of-type { border-top: 1px solid var(--line); }
.faq summary {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: 1.35rem 0;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1rem + 0.45vw, 1.35rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
  cursor: pointer;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  flex: none;
  width: 0.7rem; height: 0.7rem;
  border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform 0.35s var(--ease);
}
.faq details[open] summary::after { transform: rotate(225deg) translate(-2px, -2px); }
.faq details p { padding: 0 0 1.5rem; color: var(--ink-2); max-width: 44rem; }

/* ---------- Info list (location page) ---------- */
.info-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(1.5rem, 3vw, 3rem); }
.info-grid > div { padding-top: 1.25rem; border-top: 2px solid var(--ink); }
.info-grid p, .info-grid ul { margin-top: 0.6rem; color: var(--ink-2); }
.info-grid li + li { margin-top: 0.25rem; }
@media (max-width: 760px) { .info-grid { grid-template-columns: 1fr; } }

/* ---------- Closing CTA ---------- */
.cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 2rem;
  padding: clamp(2rem, 4.5vw, 4rem);
  border-radius: var(--r-lg);
  background: var(--ocean);
  color: var(--on-ocean);
}
.cta :focus-visible { outline-color: #ffffff; }
.cta p { margin-top: 0.9rem; color: var(--on-ocean-2); max-width: 34rem; }
@media (max-width: 860px) { .cta { grid-template-columns: 1fr; align-items: start; } }

/* ---------- Footer ---------- */
.site-footer { background: var(--ocean); color: var(--on-ocean); }
.site-footer :focus-visible { outline-color: #ffffff; }
.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr));
  gap: clamp(2rem, 4vw, 4rem);
  padding-block: clamp(3.5rem, 6vw, 5.5rem) clamp(2.5rem, 4vw, 3.5rem);
}
.site-footer .brand__name { font-size: 1.5rem; }
.site-footer__blurb { margin-top: 1.25rem; color: var(--on-ocean-2); max-width: 24rem; font-size: 1rem; }
.site-footer .btn-row { margin-top: 1.75rem; }
.site-footer h2 {
  font-family: var(--font-body);
  font-size: 0.8125rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--on-ocean-2);
  margin-bottom: 1.1rem;
}
.site-footer address { font-style: normal; line-height: 1.6; }
.site-footer li + li { margin-top: 0.5rem; }
.site-footer a { text-decoration: none; }
.site-footer a:not(.btn):hover { text-decoration: underline; text-decoration-color: #ff8d73; text-decoration-thickness: 2px; }
.site-footer__hours li { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0 1rem; font-variant-numeric: tabular-nums; }
.site-footer__hours span { white-space: nowrap; }
.site-footer__hours span:last-child { color: var(--on-ocean-2); white-space: nowrap; }
.site-footer__phone { display: inline-block; margin-top: 0.75rem; font-weight: 700; font-size: 1.15rem; font-variant-numeric: tabular-nums; }

.site-footer__bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.75rem 2rem;
  padding-block: 1.5rem;
  border-top: 1px solid rgb(255 255 255 / 0.14);
  color: var(--on-ocean-2);
  font-size: 0.9375rem;
}
.site-footer__bottom ul { display: flex; gap: 1.5rem; }
.site-footer__bottom li + li { margin-top: 0; }

@media (max-width: 980px) { .site-footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .site-footer__grid { grid-template-columns: 1fr; } }

/* ---------- Mobile action bar ---------- */
.action-bar { display: none; }
@media (max-width: 720px) {
  .action-bar {
    position: fixed;
    left: 0.75rem; right: 0.75rem;
    bottom: calc(0.75rem + env(safe-area-inset-bottom));
    z-index: var(--z-action-bar);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.25rem;
    padding: 0.3rem;
    border-radius: var(--r-pill);
    background: var(--ocean);
    color: var(--on-ocean);
    box-shadow: 0 16px 40px -12px rgb(0 0 0 / 0.55);
    transform: translateY(160%);
    transition: transform 0.5s var(--ease);
  }
  .action-bar.is-visible { transform: none; }
  html:not(.js) .action-bar { transform: none; }
  html.nav-open .action-bar { transform: translateY(160%); }
  .action-bar a {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.45rem;
    min-height: 48px;
    border-radius: var(--r-pill);
    font-size: 0.9375rem; font-weight: 700;
    text-decoration: none;
  }
  .action-bar a:first-child { background: var(--accent); color: var(--on-accent); }
  .action-bar :focus-visible { outline-color: #ffffff; outline-offset: -3px; border-radius: var(--r-pill); }
  body { padding-bottom: calc(5rem + env(safe-area-inset-bottom)); }
  .site-footer { margin-bottom: calc((5rem + env(safe-area-inset-bottom)) * -1); padding-bottom: calc(5rem + env(safe-area-inset-bottom)); }
}

/* ---------- 404 ---------- */
.not-found { min-height: 60vh; display: grid; align-content: center; }
.not-found .lead { margin-top: 1.25rem; }
.not-found .btn-row { margin-top: 2rem; }

/* ---------- Motion ---------- */
@media (prefers-reduced-motion: no-preference) {
  .js [data-reveal] {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
    transition-delay: calc(var(--i, 0) * 70ms);
  }
  .js [data-reveal].is-in { opacity: 1; transform: none; }

  .hero__copy > * { animation: rise 0.9s var(--ease) both; }
  .hero__copy > :nth-child(2) { animation-delay: 0.08s; }
  .hero__copy > :nth-child(3) { animation-delay: 0.16s; }
  .hero__copy > :nth-child(4) { animation-delay: 0.24s; }
  .hero__img { animation: bloom 1.1s var(--ease) both; }
  .hero__img--a { animation-delay: 0.1s; }
  .hero__img--b { animation-delay: 0.24s; }
  .hero__img--c { animation-delay: 0.36s; }

  .page-hero__copy > * { animation: rise 0.9s var(--ease) both; }
  .page-hero__copy > :nth-child(2) { animation-delay: 0.08s; }
  .page-hero__copy > :nth-child(3) { animation-delay: 0.16s; }
  .page-hero__media { animation: bloom 1.1s var(--ease) 0.12s both; }
}
@keyframes rise { from { opacity: 0; transform: translateY(20px); } }
@keyframes bloom { from { opacity: 0; transform: scale(0.94) translateY(14px); } }

@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; }
}

/* ---------- Print ---------- */
@media print {
  .site-header, .action-bar, .ticker, .map, .btn, .skip-link { display: none !important; }
  body { background: #fff; color: #000; padding: 0; }
  .site-footer { background: none; color: #000; margin: 0; }
}
