/* ============================================================
   nuka bistro — shared stylesheet
   Palette drawn from the real interior: powder-blue panelling,
   beige plaster, exposed brick, sage chairs, logo brown.
   ============================================================ */

:root {
  --plaster: #F2ECDF;
  --plaster-soft: #EAE2D0;
  --cream: #FAF6EC;
  --ink: #3E332B;
  --ink-dim: rgba(62, 51, 43, 0.68);
  --brown: #4A3931;
  --blue: #7FA6BE;
  --blue-deep: #55829F;
  --blue-bright: #4FA3C4;
  --brick: #A9614C;
  --brick-deep: #96543F;
  --sage: #97A379;
  --hairline: rgba(62, 51, 43, 0.14);
  --ease: cubic-bezier(0.3, 0.7, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.4, 0.44, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-padding-top: 100px; }

body {
  font-family: 'Karla', sans-serif;
  font-size: 17px;
  line-height: 1.68;
  color: var(--ink);
  background: var(--plaster);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3 { font-family: 'Fraunces', serif; line-height: 1.05; }
a { color: var(--blue-deep); }
img { max-width: 100%; display: block; }
:focus-visible { outline: 3px solid var(--blue-deep); outline-offset: 3px; border-radius: 4px; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 26px; }

.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 100;
  background: var(--brown); color: var(--cream);
  padding: 12px 20px; border-radius: 10px; text-decoration: none; font-weight: 700;
  transition: top 200ms var(--ease);
}
.skip-link:focus { top: 16px; }

/* ---------- nav ---------- */
.nav {
  position: fixed;
  top: 14px; left: 14px; right: 14px;
  z-index: 50;
  background: rgba(250, 246, 236, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--hairline);
  border-radius: 18px;
  max-width: 1140px;
  margin: 0 auto;
  box-shadow: 0 4px 24px rgba(62, 51, 43, 0.08);
}
.nav-inner { display: flex; align-items: center; flex-wrap: wrap; gap: 4px; padding: 8px 18px; }
.nav-brand { text-decoration: none; margin-right: auto; display: flex; align-items: center; gap: 12px; min-height: 44px; }
.logo-chip {
  background: var(--brown);
  color: #F2E9DC;
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.35rem;
  letter-spacing: 1px;
  padding: 4px 16px 7px;
  border-radius: 10px;
  line-height: 1;
}
.logo-tag { font-size: 0.68rem; font-weight: 600; letter-spacing: 2.5px; text-transform: lowercase; color: var(--ink-dim); }

.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 8px 14px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.93rem;
  border-radius: 10px;
  transition: color 200ms var(--ease);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 6px;
  height: 2px;
  background: var(--blue-deep);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 260ms var(--ease);
}
.nav-links a:hover { color: var(--blue-deep); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.current { color: var(--blue-deep); }
.nav-links a.current::after { transform: scaleX(1); }
.nav-links .nav-cta {
  background: var(--blue-deep);
  color: var(--cream);
  padding: 8px 20px;
  margin-left: 10px;
  border-radius: 999px;
  transition: background-color 220ms var(--ease), box-shadow 220ms var(--ease);
}
.nav-links .nav-cta::after { display: none; }
.nav-links .nav-cta:hover { background: var(--blue-bright); box-shadow: 0 4px 20px rgba(79, 163, 196, 0.45); color: var(--cream); }

.lang-switch { display: flex; background: rgba(62, 51, 43, 0.08); border-radius: 999px; padding: 3px; margin-left: 12px; }
.lang-switch button {
  background: none; border: none; cursor: pointer;
  font-family: 'Karla', sans-serif;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 1px;
  color: var(--ink-dim);
  padding: 6px 12px; min-height: 34px;
  border-radius: 999px;
  transition: color 200ms var(--ease), background-color 200ms var(--ease);
}
.lang-switch button:hover { color: var(--ink); }
.lang-switch button.active { background: var(--brown); color: var(--cream); }

.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  color: var(--ink); border-radius: 10px;
  margin-left: 6px;
}
.nav-toggle svg { width: 26px; height: 26px; }
.nav-toggle .icon-close { display: none; }
.nav.open .nav-toggle .icon-menu { display: none; }
.nav.open .nav-toggle .icon-close { display: block; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 14px 34px;
  border-radius: 999px;
  font-family: 'Karla', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background-color 220ms var(--ease), color 220ms var(--ease), border-color 220ms var(--ease), box-shadow 300ms var(--ease);
}
.btn svg { width: 19px; height: 19px; }
.btn-blue { background: var(--blue-deep); color: var(--cream); box-shadow: 0 8px 28px rgba(85, 130, 159, 0.4); }
.btn-blue:hover { background: var(--blue-bright); box-shadow: 0 10px 40px rgba(79, 163, 196, 0.5); }
.btn-ghost { background: transparent; color: var(--ink); border-color: rgba(62, 51, 43, 0.3); }
.btn-ghost:hover { border-color: var(--blue-deep); color: var(--blue-deep); }

/* ---------- hero (home) ---------- */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 140px 0 120px;
}
.blob { position: absolute; border-radius: 50%; filter: blur(70px); opacity: 0.5; will-change: transform; }
.blob-1 { width: 500px; height: 500px; background: radial-gradient(circle, rgba(127, 166, 190, 0.55), transparent 70%); top: 6%; left: -10%; animation: drift1 16s ease-in-out infinite alternate; }
.blob-2 { width: 420px; height: 420px; background: radial-gradient(circle, rgba(169, 97, 76, 0.32), transparent 70%); bottom: -8%; right: -6%; animation: drift2 20s ease-in-out infinite alternate; }
.blob-3 { width: 300px; height: 300px; background: radial-gradient(circle, rgba(151, 163, 121, 0.35), transparent 70%); top: 42%; right: 20%; animation: drift1 24s ease-in-out infinite alternate-reverse; }
@keyframes drift1 { from { transform: translate(0,0) scale(1);} to { transform: translate(60px,40px) scale(1.15);} }
@keyframes drift2 { from { transform: translate(0,0) scale(1.1);} to { transform: translate(-70px,-50px) scale(0.95);} }

.hero-content { position: relative; z-index: 2; max-width: 860px; }
.hero-kicker {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(127, 166, 190, 0.16);
  border: 1px solid rgba(127, 166, 190, 0.4);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 0.82rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--blue-deep);
  margin-bottom: 34px;
}
.hero-kicker svg { width: 14px; height: 14px; }
.hero h1 { font-size: clamp(3.2rem, 10vw, 7rem); font-weight: 700; color: var(--ink); margin-bottom: 30px; }
.hero h1 .word { display: inline-block; overflow: hidden; vertical-align: bottom; }
.hero h1 .word > span { display: inline-block; transform: translateY(110%); animation: riseUp 800ms var(--ease) forwards; }
.hero h1 .word:nth-child(2) > span { animation-delay: 120ms; }
.hero h1 .word:nth-child(3) > span { animation-delay: 240ms; }
.hero h1 em { font-style: italic; color: var(--blue-deep); }
@keyframes riseUp { to { transform: translateY(0); } }

.hero-sub { font-size: 1.15rem; color: var(--ink-dim); max-width: 520px; margin-bottom: 44px; opacity: 0; animation: fadeIn 700ms var(--ease) 500ms forwards; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; opacity: 0; animation: fadeIn 700ms var(--ease) 680ms forwards; }
@keyframes fadeIn { to { opacity: 1; } }

/* ---------- page hero (subpages) ---------- */
.page-hero {
  position: relative;
  padding: 170px 0 70px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 80% at 85% 0%, rgba(127, 166, 190, 0.28), transparent 60%),
    radial-gradient(ellipse 60% 70% at 0% 100%, rgba(169, 97, 76, 0.18), transparent 60%),
    var(--plaster);
  border-bottom: 1px solid var(--hairline);
}
.page-hero .kicker { display: block; font-size: 0.82rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--brick-deep); margin-bottom: 14px; }
.page-hero h1 { font-size: clamp(2.6rem, 7vw, 4.4rem); color: var(--ink); margin-bottom: 16px; }
.page-hero h1 em { font-style: italic; color: var(--blue-deep); }
.page-hero p { color: var(--ink-dim); max-width: 560px; font-size: 1.08rem; }

/* ---------- marquee ---------- */
.marquee { overflow: hidden; padding: 22px 0; background: var(--blue); border-top: 1px solid rgba(62,51,43,0.12); border-bottom: 1px solid rgba(62,51,43,0.12); }
.marquee-track { display: flex; gap: 48px; width: max-content; animation: scrollX 28s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes scrollX { to { transform: translateX(-50%); } }
.marquee-item { display: inline-flex; align-items: center; gap: 48px; font-family: 'Fraunces', serif; font-style: italic; font-size: 1.35rem; color: #2E3E4A; white-space: nowrap; }
.marquee-item .spark { color: var(--cream); font-style: normal; }

/* ---------- sections ---------- */
section { padding: 100px 0; position: relative; }
.sec-kicker { display: block; font-size: 0.82rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--brick-deep); margin-bottom: 14px; }
.sec-title { font-size: clamp(2.2rem, 5.5vw, 3.6rem); font-weight: 700; color: var(--ink); margin-bottom: 20px; }
.sec-title em { font-style: italic; color: var(--blue-deep); }
.sec-lead { color: var(--ink-dim); max-width: 620px; }

.reveal { opacity: 0; transform: translateY(30px); transition: opacity 700ms var(--ease), transform 700ms var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
.stagger > * { opacity: 0; transform: translateY(26px); transition: opacity 600ms var(--ease), transform 600ms var(--ease); }
.stagger.visible > * { opacity: 1; transform: none; }
.stagger.visible > *:nth-child(2) { transition-delay: 90ms; }
.stagger.visible > *:nth-child(3) { transition-delay: 180ms; }
.stagger.visible > *:nth-child(4) { transition-delay: 270ms; }
.stagger.visible > *:nth-child(5) { transition-delay: 360ms; }
.stagger.visible > *:nth-child(6) { transition-delay: 450ms; }
.stagger.visible > *:nth-child(7) { transition-delay: 540ms; }
.stagger.visible > *:nth-child(8) { transition-delay: 630ms; }

/* ---------- about ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-copy p { color: var(--ink-dim); margin-bottom: 18px; }
.about-copy p strong { color: var(--ink); }
.about-stats { display: flex; gap: 40px; margin-top: 36px; flex-wrap: wrap; }
.stat h3 { font-family: 'Fraunces', serif; font-size: 2.2rem; color: var(--brick); }
.stat p { font-size: 0.85rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--ink-dim); }

.about-cardstack { position: relative; height: 480px; }
.a-card {
  position: absolute;
  border-radius: 22px;
  border: 1px solid var(--hairline);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 14px; text-align: center; padding: 28px;
  color: var(--cream); overflow: hidden;
  will-change: transform;
  box-shadow: 0 12px 36px rgba(62,51,43,0.16);
  transition: transform 400ms var(--ease-spring), box-shadow 400ms var(--ease);
}
.a-card:hover { box-shadow: 0 24px 60px rgba(62,51,43,0.3); }
.a-card svg { width: 34px; height: 34px; color: var(--cream); }
.a-card h3 { font-size: 1.15rem; color: var(--cream); }
.a-card p { font-size: 0.85rem; color: rgba(250,246,236,0.8); }
.a-card-1 { width: 58%; height: 62%; top: 0; left: 0; z-index: 3;
  background: linear-gradient(rgba(46,62,74,0.25), rgba(46,62,74,0.55)), url('assets/nuka-interior.jpg') center / cover, linear-gradient(160deg, #7FA6BE, #55829F); }
.a-card-2 { width: 52%; height: 50%; top: 24%; right: 0; z-index: 2; background: linear-gradient(160deg, #B26B54, #96543F); }
.a-card-3 { width: 48%; height: 42%; bottom: 0; left: 14%; z-index: 4;
  background: linear-gradient(rgba(62,51,43,0.2), rgba(62,51,43,0.5)), url('assets/nuka-food.jpg') center / cover, linear-gradient(160deg, #97A379, #6F7C55); }

/* ---------- menu teaser (home) & full menu ---------- */
.menu-band { background: var(--plaster-soft); border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
.menu-head { text-align: center; max-width: 640px; margin: 0 auto 26px; }
.menu-head .sec-lead { margin: 0 auto; }

.diet-legend { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }
.diet-badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 18px; border-radius: 999px; font-size: 0.83rem; font-weight: 700; border: 1px solid; transition: transform 250ms var(--ease-spring); }
.diet-badge:hover { transform: translateY(-3px); }
.diet-v { color: #5D6B41; border-color: rgba(151,163,121,0.6); background: rgba(151,163,121,0.14); }
.diet-vg { color: #3F6B6C; border-color: rgba(74,123,124,0.5); background: rgba(74,123,124,0.1); }
.diet-gf { color: var(--brick-deep); border-color: rgba(169,97,76,0.5); background: rgba(169,97,76,0.1); }

.dish-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; max-width: 960px; margin: 0 auto; }
.dish-card {
  position: relative; background: var(--cream); border: 1px solid var(--hairline); border-radius: 18px;
  padding: 26px 26px 22px; overflow: hidden;
  box-shadow: 0 2px 12px rgba(62,51,43,0.06);
  transition: transform 350ms var(--ease-spring), border-color 300ms var(--ease), box-shadow 300ms var(--ease);
}
.dish-card::before { content: ""; position: absolute; top: 0; left: -80%; width: 60%; height: 100%; background: linear-gradient(105deg, transparent, rgba(127,166,190,0.12), transparent); transform: skewX(-20deg); transition: left 600ms var(--ease); }
.dish-card:hover { transform: translateY(-5px); border-color: rgba(127,166,190,0.6); box-shadow: 0 14px 34px rgba(62,51,43,0.14); }
.dish-card:hover::before { left: 130%; }
.dish-top { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; margin-bottom: 6px; }
.dish-top h4 { font-family: 'Fraunces', serif; font-size: 1.3rem; font-weight: 600; color: var(--ink); }
.dish-top .price { font-family: 'Fraunces', serif; font-size: 1.2rem; font-style: italic; color: var(--blue-deep); white-space: nowrap; }
.dish-card p { font-size: 0.93rem; color: var(--ink-dim); }
.dish-tags { display: flex; gap: 6px; margin-top: 14px; }
.dish-tags i { font-style: normal; font-size: 0.62rem; font-weight: 800; letter-spacing: 1px; padding: 3px 9px; border-radius: 999px; border: 1px solid; }
.t-v { color: #5D6B41; border-color: rgba(151,163,121,0.6); }
.t-vg { color: #3F6B6C; border-color: rgba(74,123,124,0.55); }
.t-gf { color: var(--brick-deep); border-color: rgba(169,97,76,0.5); }

.menu-note { text-align: center; margin-top: 42px; font-size: 0.9rem; color: var(--ink-dim); font-style: italic; }

/* full menu page: category blocks */
.menu-cat-block { max-width: 960px; margin: 0 auto; }
.menu-cat-block + .menu-cat-block { margin-top: 64px; }
.menu-cat-title { display: flex; align-items: center; gap: 14px; margin-bottom: 26px; }
.menu-cat-title svg { width: 24px; height: 24px; color: var(--brick-deep); flex-shrink: 0; }
.menu-cat-title h2 { font-size: 1.9rem; color: var(--ink); white-space: nowrap; }
.menu-cat-title .line { flex: 1; height: 1px; background: var(--hairline); }

.center-cta { text-align: center; margin-top: 60px; }

/* ---------- gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 54px; }
.g-tile {
  aspect-ratio: 1; border-radius: 18px; overflow: hidden; position: relative;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
  color: rgba(250,246,236,0.9); border: 1px solid var(--hairline);
  box-shadow: 0 4px 18px rgba(62,51,43,0.12);
  transition: transform 400ms var(--ease-spring), box-shadow 300ms var(--ease);
  will-change: transform;
}
.g-tile:hover { transform: scale(1.03) rotate(-1deg); box-shadow: 0 14px 38px rgba(62,51,43,0.22); }
.g-tile svg { width: 30px; height: 30px; opacity: 0.85; }
.g-tile span { font-size: 0.72rem; letter-spacing: 2.5px; text-transform: uppercase; background: rgba(62,51,43,0.55); padding: 4px 12px; border-radius: 999px; }
.g-tile.has-photo svg { display: none; }
.g-tile:nth-child(1) { background: url('assets/nuka-interior.jpg') center / cover, linear-gradient(160deg, #7FA6BE, #55829F); }
.g-tile:nth-child(2) { background: linear-gradient(160deg, #B26B54, #8A4C39); margin-top: 26px; }
.g-tile:nth-child(3) { background: url('assets/nuka-food.jpg') center / cover, linear-gradient(160deg, #97A379, #6F7C55); }
.g-tile:nth-child(4) { background: linear-gradient(160deg, #8FA8BC, #5E7E94); margin-top: 26px; }

/* ---------- cta band ---------- */
.cta-band {
  background:
    radial-gradient(ellipse 80% 120% at 50% 0%, rgba(127,166,190,0.3), transparent 60%),
    var(--brown);
  color: var(--cream);
  text-align: center;
}
.cta-band h2 { font-size: clamp(2rem, 5vw, 3.2rem); color: var(--cream); margin-bottom: 16px; }
.cta-band h2 em { font-style: italic; color: var(--blue); }
.cta-band p { color: rgba(250,246,236,0.72); max-width: 520px; margin: 0 auto 34px; }
.cta-band .btn-blue { background: var(--blue); color: #26333D; }
.cta-band .btn-blue:hover { background: var(--blue-bright); color: #1E2E38; }

/* ---------- visit page ---------- */
.visit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.visit-info { list-style: none; display: grid; gap: 22px; }
.visit-info li { display: flex; gap: 16px; align-items: flex-start; }
.v-icon { flex-shrink: 0; width: 46px; height: 46px; border-radius: 14px; background: rgba(127,166,190,0.14); border: 1px solid rgba(127,166,190,0.35); display: flex; align-items: center; justify-content: center; color: var(--blue-deep); }
.v-icon svg { width: 22px; height: 22px; }
.visit-info h3 { font-family: 'Karla', sans-serif; font-size: 0.8rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--brick-deep); margin-bottom: 3px; }
.visit-info p, .visit-info a { color: var(--ink); font-size: 1.02rem; }
.visit-info a { text-decoration: none; border-bottom: 1px solid rgba(127,166,190,0.5); transition: color 200ms var(--ease); }
.visit-info a:hover { color: var(--blue-deep); }
.visit-info .sub { font-size: 0.88rem; color: var(--ink-dim); }

.hours-panel { background: var(--brown); color: var(--cream); border-radius: 24px; padding: 44px 40px; }
.hours-panel h2 { font-size: 1.6rem; color: var(--cream); margin-bottom: 20px; display: flex; align-items: center; gap: 12px; }
.hours-panel h2 svg { width: 24px; height: 24px; color: var(--blue); }
.hours-row { display: flex; justify-content: space-between; align-items: baseline; padding: 12px 0; border-bottom: 1px solid rgba(250,246,236,0.14); }
.hours-row:last-of-type { border-bottom: none; }
.hours-row .day { color: rgba(250,246,236,0.8); }
.hours-row .time { font-family: 'Fraunces', serif; font-size: 1.1rem; color: var(--blue); }
.hours-panel .btn { width: 100%; margin-top: 24px; }
.hours-panel .btn-blue { background: var(--blue); color: #26333D; }
.hours-panel .btn-blue:hover { background: var(--blue-bright); color: #1E2E38; }
.hours-panel .note { text-align: center; margin-top: 14px; font-size: 0.85rem; color: rgba(250,246,236,0.6); }

.map-frame { margin-top: 60px; border-radius: 22px; overflow: hidden; border: 1px solid var(--hairline); box-shadow: 0 8px 30px rgba(62,51,43,0.14); line-height: 0; }
.map-frame iframe { width: 100%; height: 420px; border: 0; display: block; filter: saturate(0.9) contrast(1.02); }

/* ---------- footer ---------- */
.footer { background: #3A2C25; padding: 44px 0 34px; font-size: 0.92rem; color: rgba(250,246,236,0.65); }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 30px; padding-bottom: 28px; border-bottom: 1px solid rgba(250,246,236,0.12); }
.footer-top h4 { font-family: 'Karla', sans-serif; font-size: 0.78rem; letter-spacing: 2px; text-transform: uppercase; color: var(--blue); margin-bottom: 14px; }
.footer-brand .logo-chip { background: rgba(250,246,236,0.1); font-size: 1.15rem; margin-bottom: 14px; display: inline-block; }
.footer-brand p { max-width: 260px; }
.footer-col a, .footer-col p { color: rgba(250,246,236,0.72); text-decoration: none; display: block; margin-bottom: 8px; }
.footer-col a:hover { color: var(--blue); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; padding-top: 22px; }

/* ---------- responsive ---------- */
@media (max-width: 960px) {
  section { padding: 76px 0; }
  .about-grid, .visit-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-cardstack { height: 420px; max-width: 480px; }
  .dish-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .g-tile { margin-top: 0 !important; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 880px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none; flex-direction: column; align-items: stretch; width: 100%;
    order: 10; padding: 8px 0 10px; gap: 2px; border-top: 1px solid var(--hairline); margin-top: 8px;
  }
  .nav.open .nav-links { display: flex; }
  .nav-links a { min-height: 48px; }
  .nav-links a::after { display: none; }
  .nav-links .nav-cta { margin: 8px 0 0; justify-content: center; }
  .logo-tag { display: none; }
}
@media (max-width: 520px) {
  body { font-size: 16px; }
  .hero-actions .btn { width: 100%; }
  .hours-panel { padding: 34px 24px; }
  .about-cardstack { height: 360px; }
  .marquee-item { font-size: 1.1rem; }
  .page-hero { padding: 140px 0 56px; }
  .footer-top { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal, .stagger > * { opacity: 1 !important; transform: none !important; }
  .hero h1 .word > span { transform: none; animation: none; }
  .hero-sub, .hero-actions { opacity: 1; animation: none; }
  .marquee-track { animation: none; }
  .blob { animation: none; }
}
