/* ============================================================
   TONIO'S — Menu Pages Stylesheet
   Light palette · Editorial · Vintage fish camp
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,100..900;1,9..144,100..900&family=Syne:wght@400;500;600;700;800&family=Space+Grotesk:wght@300;400;500;600;700&family=Caveat:wght@600;700&display=swap');

:root {
  --navy:   #102F34;
  --aqua:   #6FA3A0;
  --pool:   #2B4A3E;
  --coral:  #C2532E;
  --pink:   #C2532E;
  --yellow: #F3C74F;
  --cream:  #F5E8CF;
  --brown:  #4B3025;
  --dark:   #080e10;
  --sand:   #F0DFC0;
  --white:  #FDFAF5;

  --f-display: 'Fraunces', Georgia, serif;
  --f-sans:    'Syne', system-ui, sans-serif;
  --f-body:    'Space Grotesk', system-ui, sans-serif;
  --f-hand:    'Caveat', cursive;

  --max: 1360px;
  --ease-out: cubic-bezier(.16,1,.3,1);
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--f-body);
  background: var(--white);
  color: var(--navy);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ── Announcement bar ────────────────────────────────────────── */
#bar {
  background: var(--coral);
  color: var(--white);
  height: 38px;
  overflow: hidden;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 100;
}
.marquee {
  display: flex;
  width: max-content;
  animation: tick 35s linear infinite;
  gap: 5rem;
  align-items: center;
  white-space: nowrap;
}
.marquee span {
  font-family: var(--f-sans);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.marquee-dot { opacity: .45; margin: 0 .5rem; }
@keyframes tick { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── Navigation ──────────────────────────────────────────────── */
#nav {
  position: sticky;
  top: 0;
  z-index: 99;
  background: var(--white);
  border-bottom: 1px solid rgba(16,47,52,.1);
  box-shadow: 0 2px 20px rgba(16,47,52,.06);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 130px;
  padding: 0 clamp(1.2rem,4vw,2.5rem);
  max-width: 1360px;
  margin: 0 auto;
}
.nav-mascot   { height: 120px !important; }
.nav-logo-img { height: 110px !important; }
@media (max-width: 767px) {
  .nav-wrap     { height: 80px; }
  .nav-mascot   { height: 70px !important; }
  .nav-logo-img { height: 64px !important; }
}
.nav-logo-name {
  font-family: var(--f-display);
  font-size: 1.3rem;
  font-weight: 900;
  font-style: italic;
  color: var(--navy);
  letter-spacing: -.01em;
}
.nav-logo-sub {
  font-family: var(--f-sans);
  font-size: .48rem;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--aqua);
  display: block;
}
.nav-links {
  display: none;
  align-items: center;
  gap: .25rem;
}
.nav-links a {
  font-family: var(--f-sans);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(16,47,52,.6);
  padding: .5rem 1rem;
  transition: color .2s;
}
.nav-links a:hover { color: var(--navy); }
.nav-links .has-drop { position: relative; }
.nav-drop {
  display: none;
  position: absolute;
  top: calc(100% + .5rem);
  left: 0;
  background: var(--white);
  border: 1px solid rgba(16,47,52,.1);
  min-width: 190px;
  padding: .5rem 0;
  box-shadow: 0 12px 40px rgba(16,47,52,.12);
}
.has-drop:hover .nav-drop { display: block; }
.nav-drop a { display: block; padding: .6rem 1.4rem; font-size: .9rem; color: var(--navy); }
.nav-cta {
  background: var(--coral) !important;
  color: var(--white) !important;
  padding: .5rem 1.1rem !important;
  font-weight: 700 !important;
}
.nav-cta:hover { background: var(--navy) !important; }
.burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 26px;
  cursor: pointer;
}
.burger span { display: block; height: 1.5px; background: var(--navy); transition: all .3s; }
.burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
@media (min-width: 920px) { .nav-links { display: flex; } .burger { display: none; } }

/* Mobile menu */
#mob-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 98;
  background: var(--white);
  flex-direction: column;
  padding: 6rem 2rem 4rem;
  overflow-y: auto;
}
#mob-menu.open { display: flex; }
#mob-menu > a {
  font-family: var(--f-display);
  font-size: clamp(1.8rem,8vw,3rem);
  font-weight: 900;
  font-style: italic;
  color: var(--navy);
  padding: .6rem 0;
  border-bottom: 1px solid rgba(16,47,52,.08);
  transition: color .2s;
}
#mob-menu > a:hover { color: var(--coral); }
.mob-sub { display: flex; flex-direction: column; padding: .4rem 0 .4rem 1.5rem; }
.mob-sub a { font-size: 1.1rem !important; color: rgba(16,47,52,.55) !important; border: none !important; padding: .25rem 0 !important; font-style: normal !important; }
.mob-social { display: flex; gap: 1.5rem; margin-top: 2rem; }
.mob-social a {
  font-family: var(--f-sans);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--aqua);
}

/* ── Menu Page Hero/Header ────────────────────────────────── */
.menu-page-hero {
  background: var(--navy);
  color: var(--cream);
  padding: clamp(5rem,12vw,9rem) clamp(1.2rem,5vw,3rem) clamp(4rem,8vw,6rem);
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 4vw), 0 100%);
}
.menu-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 80%, rgba(77,174,177,.2) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(233,111,97,.15) 0%, transparent 50%);
}
.menu-page-hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
}

.menu-page-hero-text {
  flex: 1 1 0;
  min-width: 0;
}
.menu-page-eyebrow {
  font-family: var(--f-sans);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--aqua);
  display: block;
  margin-bottom: .85rem;
}
.menu-page-title {
  font-family: var(--f-display);
  font-size: clamp(3rem,10vw,8rem);
  font-weight: 900;
  font-style: italic;
  line-height: .88;
  letter-spacing: -.03em;
  color: var(--cream);
  margin-bottom: 1.5rem;
}
.menu-page-title em { font-style: normal; color: var(--coral); }
.menu-page-sub {
  font-family: var(--f-hand);
  font-size: clamp(1rem,2.5vw,1.3rem);
  color: var(--yellow);
  max-width: 500px;
  line-height: 1.5;
}
/* Large ghost category letter */
.menu-page-hero-letter {
  position: absolute;
  right: -3%;
  bottom: -10%;
  font-family: var(--f-display);
  font-size: clamp(12rem,30vw,22rem);
  font-weight: 900;
  font-style: italic;
  line-height: 1;
  opacity: .05;
  pointer-events: none;
  letter-spacing: -.05em;
  color: var(--cream);
}
/* Menu page hero mascot — sits between left side and title */
.menu-page-hero-mascot {
  position: static;
  flex-shrink: 0;
  width: clamp(130px, 18vw, 240px);
  height: auto;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
  /* subtle drop shadow to lift it off the dark hero */
  filter: drop-shadow(0 4px 24px rgba(0,0,0,.35));
}
@media (max-width: 640px) {
  .menu-page-hero-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }
  .menu-page-hero-mascot { width: 90px; }
}

/* Menu page nav row — tabs to sibling pages */
.menu-page-nav {
  background: var(--cream);
  border-bottom: 1px solid rgba(16,47,52,.1);
  overflow-x: auto;
  scrollbar-width: none;
}
.menu-page-nav::-webkit-scrollbar { display: none; }
.menu-page-nav-inner {
  display: flex;
  gap: 0;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(1.2rem,4vw,2.5rem);
  white-space: nowrap;
}
.menu-tab {
  font-family: var(--f-sans);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(16,47,52,.5);
  padding: 1rem 1.1rem;
  border-bottom: 2.5px solid transparent;
  transition: all .2s;
  flex-shrink: 0;
  display: block;
}
.menu-tab:hover { color: var(--navy); border-color: rgba(16,47,52,.2); }
.menu-tab.active { color: var(--navy); border-color: var(--coral); }

/* ── Menu Content Area ───────────────────────────────────── */
.menu-body {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(3rem,6vw,5rem) clamp(1.2rem,5vw,3rem) clamp(5rem,10vw,8rem);
}

/* Section heading within a menu */
.menu-section {
  margin-bottom: clamp(4rem,8vw,6rem);
}
.menu-section + .menu-section {
  padding-top: clamp(3rem,6vw,5rem);
  border-top: 1px solid rgba(16,47,52,.1);
}
.menu-section-label {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: clamp(1.5rem,3vw,2.5rem);
}
.menu-section-name {
  font-family: var(--f-display);
  font-size: clamp(1.8rem,5vw,3.5rem);
  font-weight: 900;
  font-style: italic;
  letter-spacing: -.02em;
  line-height: 1;
  color: var(--navy);
}
.menu-section-note {
  font-family: var(--f-hand);
  font-size: 1.15rem;
  color: var(--coral);
  margin-bottom: 1.5rem;
  display: block;
}
/* Divider line next to section heading */
.menu-section-line {
  flex: 1;
  height: 1px;
  background: rgba(16,47,52,.12);
  display: none;
}
@media (min-width: 600px) { .menu-section-line { display: block; } }

/* Individual menu item */
.menu-items {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.menu-item-row {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas: "info price";
  column-gap: 1.5rem;
  row-gap: .5rem;
  align-items: start;
  padding: clamp(1.25rem,2.5vw,1.75rem) 0;
  border-bottom: 1px solid rgba(16,47,52,.07);
  transition: all .2s;
  position: relative;
}
.menu-item-row:has(.menu-item-photo) {
  grid-template-areas: "photo photo" "info price";
}
.menu-item-photo {
  grid-area: photo;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 6px;
  margin-bottom: .5rem;
}
.menu-item-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.menu-item-row:first-child { border-top: 1px solid rgba(16,47,52,.07); }
.menu-item-row:hover { padding-left: .5rem; }
.menu-item-row::before {
  content: '';
  position: absolute;
  left: -1.5rem; right: -1.5rem;
  top: 0; bottom: 0;
  background: rgba(77,174,177,.04);
  opacity: 0;
  transition: opacity .2s;
}
.menu-item-row:hover::before { opacity: 1; }
.menu-item-info { grid-area: info; min-width: 0; }
.menu-item-name {
  font-family: var(--f-display);
  font-size: clamp(1.5rem,3vw,2.1rem);
  font-weight: 700;
  font-style: italic;
  letter-spacing: -.01em;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: .2rem;
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-wrap: wrap;
}
.item-badge {
  font-family: var(--f-sans);
  font-size: .52rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: .1rem .45rem;
  border-radius: 2px;
  flex-shrink: 0;
  font-style: normal;
}
.badge-catch  { background: rgba(77,174,177,.15);  color: var(--aqua); }
.badge-popular{ background: rgba(233,111,97,.12);  color: var(--coral); }
.badge-new    { background: rgba(243,199,79,.2);   color: #8a6a00; }
.badge-gf     { background: rgba(16,47,52,.08);    color: var(--navy); }
.badge-spicy  { background: rgba(232,90,136,.12);  color: var(--pink); }
.menu-item-desc {
  font-family: var(--f-body);
  font-size: clamp(1rem,1.8vw,1.3rem);
  font-weight: 400;
  color: rgba(16,47,52,.55);
  line-height: 1.6;
}
.menu-item-price {
  grid-area: price;
  font-family: var(--f-display);
  font-size: clamp(1.2rem,2.5vw,1.6rem);
  font-weight: 700;
  font-style: italic;
  color: var(--navy);
  white-space: nowrap;
}
.menu-item-price .price-note {
  font-family: var(--f-body);
  font-size: .72rem;
  font-style: normal;
  font-weight: 400;
  color: rgba(16,47,52,.4);
  display: block;
  text-align: right;
}

/* Three-column menu grid (matches special-menus layout) */
.menu-items-2col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0 2rem;
}
@media (min-width: 640px) { .menu-items-2col { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .menu-items-2col { grid-template-columns: repeat(3, 1fr); } }
.menu-items-2col .menu-item-row:first-child { border-top: none; }

/* Market board style list (Fresh Catch) */
.market-board {
  background: var(--navy);
  color: var(--cream);
  padding: 2rem 2rem;
  margin-top: 1.5rem;
}
.market-board-title {
  font-family: var(--f-sans);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--aqua);
  margin-bottom: 1.5rem;
  display: block;
}
.market-board-items {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.market-board-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .7rem 0;
  border-bottom: 1px solid rgba(245,232,207,.08);
  gap: 1rem;
}
.market-board-name {
  font-family: var(--f-display);
  font-size: clamp(1rem,2.5vw,1.4rem);
  font-weight: 700;
  font-style: italic;
  letter-spacing: -.01em;
}
.market-board-status {
  font-family: var(--f-sans);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #4cd137;
}
.market-board-row.out .market-board-status { color: rgba(245,232,207,.25); }
.market-board-row.call .market-board-status { color: var(--yellow); }

/* Special callout box */
.menu-callout {
  background: var(--cream);
  border-left: 4px solid var(--coral);
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  position: relative;
}
.menu-callout-title {
  font-family: var(--f-display);
  font-size: 1.2rem;
  font-weight: 900;
  font-style: italic;
  color: var(--coral);
  margin-bottom: .4rem;
}
.menu-callout p {
  font-size: .9rem;
  line-height: 1.6;
  color: var(--brown);
}

/* Happy Hour special table */
.hh-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.5rem;
}
.hh-table th {
  font-family: var(--f-sans);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(16,47,52,.4);
  text-align: left;
  padding: .6rem 0;
  border-bottom: 2px solid rgba(16,47,52,.12);
}
.hh-table td {
  padding: .9rem 0;
  border-bottom: 1px solid rgba(16,47,52,.07);
  font-size: .95rem;
  vertical-align: top;
}
.hh-table td:first-child { font-weight: 600; width: 55%; }
.hh-table td:last-child {
  font-family: var(--f-display);
  font-size: 1.1rem;
  font-weight: 700;
  font-style: italic;
  color: var(--coral);
  text-align: right;
}

/* Bottom menu CTA strip */
.menu-cta-strip {
  background: var(--navy);
  color: var(--cream);
  padding: clamp(3rem,7vw,5rem) clamp(1.2rem,5vw,3rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.menu-cta-left h2 {
  font-family: var(--f-display);
  font-size: clamp(1.5rem,4vw,3rem);
  font-weight: 900;
  font-style: italic;
  line-height: 1;
  margin-bottom: .4rem;
}
.menu-cta-left p {
  font-size: .9rem;
  opacity: .6;
  max-width: 360px;
}
.menu-cta-btns { display: flex; gap: .85rem; flex-wrap: wrap; }

/* Drinks category pills */
.drink-category {
  margin-bottom: clamp(2rem,5vw,3.5rem);
}
.drink-cat-label {
  font-family: var(--f-hand);
  font-size: 1.3rem;
  color: var(--coral);
  display: block;
  margin-bottom: .5rem;
}
.drinks-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media (min-width: 600px) { .drinks-grid { grid-template-columns: 1fr 1fr; gap: 0 3rem; } }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--f-sans);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .9rem 2rem;
  border: 1.5px solid transparent;
  transition: all .25s var(--ease-out);
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary { background: var(--coral); color: var(--white); border-color: var(--coral); }
.btn-primary:hover { background: var(--navy); border-color: var(--navy); transform: translateY(-2px); }
.btn-ghost-dark { background: transparent; color: var(--cream); border-color: rgba(245,232,207,.3); }
.btn-ghost-dark:hover { border-color: var(--cream); background: rgba(245,232,207,.08); }
.btn-outline-navy { background: transparent; color: var(--navy); border-color: rgba(16,47,52,.3); }
.btn-outline-navy:hover { background: var(--navy); color: var(--cream); }
.btn-yellow { background: var(--yellow); color: var(--dark); border-color: var(--yellow); }
.btn-yellow:hover { background: var(--cream); border-color: var(--navy); color: var(--navy); }

/* ── Footer ──────────────────────────────────────────────── */
.menu-footer {
  background: var(--dark);
  color: var(--cream);
  padding: clamp(3rem,6vw,5rem) clamp(1.2rem,5vw,3rem) clamp(2rem,4vw,3rem);
}
.menu-footer-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 768px) { .menu-footer-inner { grid-template-columns: 2fr 1fr 1fr; } }
.foot-brand-name {
  font-family: var(--f-display);
  font-size: 2rem;
  font-weight: 900;
  font-style: italic;
  color: var(--yellow);
  letter-spacing: -.01em;
}
.foot-brand-sub {
  font-family: var(--f-sans);
  font-size: .5rem;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--aqua);
  margin-bottom: 1rem;
}
.foot-tagline { font-size: .88rem; opacity: .55; line-height: 1.6; max-width: 280px; margin-bottom: 1.25rem; }
.foot-soc { display: flex; gap: .6rem; }
.foot-soc a {
  font-family: var(--f-sans);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .4rem .85rem;
  border: 1px solid rgba(245,232,207,.15);
  color: rgba(245,232,207,.6);
  transition: all .2s;
}
.foot-soc a:hover { background: var(--coral); color: var(--dark); border-color: var(--coral); }
.foot-col h4 {
  font-family: var(--f-sans);
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: .85rem;
}
.foot-col li { margin-bottom: .4rem; }
.foot-col a { font-size: .83rem; opacity: .5; transition: opacity .2s; }
.foot-col a:hover { opacity: 1; color: var(--aqua); }
.foot-bottom {
  border-top: 1px solid rgba(245,232,207,.07);
  padding: 1.25rem clamp(1.2rem,5vw,3rem);
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
}
.foot-bottom p { font-size: .7rem; opacity: .3; letter-spacing: .05em; }
.foot-bottom a { font-size: .7rem; opacity: .3; transition: opacity .2s; }
.foot-bottom a:hover { opacity: .7; }

/* Mobile bar */
#mob-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 97;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  background: var(--white);
  border-top: 1px solid rgba(16,47,52,.12);
  padding-bottom: env(safe-area-inset-bottom);
  box-shadow: 0 -4px 20px rgba(16,47,52,.08);
}
@media (min-width: 768px) { #mob-bar { display: none; } }
.mbb {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: .65rem .4rem;
  color: rgba(16,47,52,.5);
  font-family: var(--f-sans);
  font-size: .52rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: color .2s;
  -webkit-tap-highlight-color: transparent;
  text-decoration: none;
}
.mbb:hover { color: var(--navy); }
.mbb svg { width: 20px; height: 20px; }
.mbb.mbb-call { background: var(--coral); color: var(--white); }
.mbb.mbb-call:hover { background: var(--navy); }

/* Dietary key */
.dietary-key {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.5rem;
  margin-bottom: 2.5rem;
  padding: 1rem 1.25rem;
  background: var(--cream);
  border-left: 3px solid var(--aqua);
}
.key-item {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .75rem;
  color: rgba(16,47,52,.65);
}
.key-badge { display: inline-block; }

/* Spacer for mobile bar */
@media (max-width: 767px) { .menu-footer { padding-bottom: 80px; } }

/* Reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s cubic-bezier(.16,1,.3,1), transform .65s cubic-bezier(.16,1,.3,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .08s; }
.reveal-d2 { transition-delay: .16s; }
.reveal-d3 { transition-delay: .24s; }

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

/* ── Menu font sizes ── */
.menu-section-note { font-size: 1rem; margin-bottom: 1.5rem; display: block; }
.menu-tab { font-size: .8rem; padding: 1.1rem 1.5rem; }

/* ── White header & footer overrides (menu pages) ── */
#nav { background: #fff !important; border-bottom: 1px solid rgba(0,0,0,.1) !important; box-shadow: 0 2px 12px rgba(0,0,0,.06) !important; }
#nav.scrolled { background: #fff !important; backdrop-filter: none !important; -webkit-backdrop-filter: none !important; }
.nav-links a { color: rgba(0,0,0,.75) !important; }
.nav-links a:hover { color: #000 !important; }
.nav-drop { background: #fff !important; border: 1px solid rgba(0,0,0,.1) !important; box-shadow: 0 8px 32px rgba(0,0,0,.1) !important; }
.nav-drop a { color: #000 !important; }
.burger span { background: #000 !important; }
#mob-menu { background: #fff !important; }
#mob-menu > a { color: #000 !important; border-bottom-color: rgba(0,0,0,.08) !important; }
.mob-sub a { color: rgba(0,0,0,.55) !important; }

#footer { background: #fff !important; color: #000 !important; border-top: 1px solid rgba(0,0,0,.1) !important; }
.foot-tagline { color: #000 !important; opacity: .7 !important; }
.foot-soc a { color: rgba(0,0,0,.65) !important; border-color: rgba(0,0,0,.2) !important; }
.foot-soc a:hover { background: #000 !important; color: #fff !important; border-color: #000 !important; }
.foot-col h4 { color: #000 !important; }
.foot-col a { color: rgba(0,0,0,.6) !important; opacity: 1 !important; }
.foot-col a:hover { color: #000 !important; }
.footer-bottom { border-top-color: rgba(0,0,0,.1) !important; }
.footer-bottom p, .footer-bottom a { color: rgba(0,0,0,.45) !important; opacity: 1 !important; }
.credit-bar { background: #f5f5f5 !important; color: #000 !important; }
.credit-bar a { color: #000 !important; }
