/* =========================================================
   Panda Express Chinese Takeaway — Redesign
   Premium dark · crimson · gold theme
   ========================================================= */

:root {
  --ink:        #0d0a09;
  --ink-2:      #141010;
  --ink-3:      #1d1716;
  --cream:      #fdf3e7;
  --cream-dim:  #c9bcae;
  --crimson:    #e02424;
  --crimson-2:  #b3121f;
  --gold:       #e8b85c;
  --gold-2:     #d49b3c;
  --line:       rgba(253, 243, 231, 0.10);
  --line-2:     rgba(253, 243, 231, 0.18);

  --font-display: "Fraunces", Georgia, serif;
  --font-body:    "Plus Jakarta Sans", system-ui, sans-serif;

  --maxw: 1240px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
::selection { background: var(--gold); color: var(--ink); }

/* ---------- helpers ---------- */
.wrap { width: min(100% - 2.6rem, var(--maxw)); margin-inline: auto; }
.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .72rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--gold); font-weight: 600;
}
.eyebrow::before {
  content: ""; width: 26px; height: 1px; background: var(--gold); opacity: .7;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2rem, 5.2vw, 3.6rem);
  line-height: 1.04;
  letter-spacing: -0.01em;
}
.section-title em { font-style: italic; color: var(--gold); }
.muted { color: var(--cream-dim); }

section { position: relative; padding: clamp(4.5rem, 9vw, 8rem) 0; }

/* reveal base — JS toggles .is-in */
.reveal { opacity: 0; transform: translateY(34px); }
.reveal.is-in { opacity: 1; transform: none; transition: opacity .9s var(--ease), transform .9s var(--ease); }

/* ===========================================================
   Custom cursor
   =========================================================== */
.cursor, .cursor-dot {
  position: fixed; top: 0; left: 0; z-index: 9999; pointer-events: none;
  border-radius: 50%; mix-blend-mode: difference;
  transform: translate(-50%, -50%);
}
.cursor { width: 38px; height: 38px; border: 1.5px solid #fff; transition: width .3s, height .3s, background .3s; }
.cursor-dot { width: 6px; height: 6px; background: #fff; }
.cursor.is-hover { width: 64px; height: 64px; background: rgba(255,255,255,.15); }
@media (hover: none) { .cursor, .cursor-dot { display: none; } }

/* ===========================================================
   Preloader
   =========================================================== */
.loader {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--ink);
  display: grid; place-items: center;
}
.loader__inner { text-align: center; }
.loader__logo {
  font-family: var(--font-display); font-size: clamp(2rem, 7vw, 4rem);
  letter-spacing: .02em; color: var(--cream);
}
.loader__logo span { color: var(--gold); }
.loader__bar {
  margin: 1.4rem auto 0; width: 220px; height: 2px; background: var(--line-2);
  border-radius: 2px; overflow: hidden;
}
.loader__fill { height: 100%; width: 0; background: linear-gradient(90deg, var(--crimson), var(--gold)); }
.loader__pct { margin-top: .8rem; font-size: .8rem; letter-spacing: .2em; color: var(--cream-dim); }

/* ===========================================================
   Navbar
   =========================================================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem clamp(1.3rem, 4vw, 3rem);
  transition: background .4s var(--ease), padding .4s var(--ease), border-color .4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(13, 10, 9, 0.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  padding-top: .75rem; padding-bottom: .75rem;
}
.brand { display: flex; align-items: center; gap: .7rem; font-family: var(--font-display); font-size: 1.25rem; letter-spacing: .01em; }
.brand__mark {
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center;
  background: radial-gradient(circle at 30% 30%, #fff, #efe4d4);
  color: var(--ink); font-size: 1.3rem; box-shadow: 0 6px 18px rgba(0,0,0,.4);
}
.brand strong { font-weight: 600; }
.brand span { color: var(--gold); }
.nav__links { display: flex; align-items: center; gap: 2.1rem; }
.nav__links a { font-size: .9rem; font-weight: 500; position: relative; color: var(--cream-dim); transition: color .3s; }
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 1.5px; width: 0;
  background: var(--gold); transition: width .35s var(--ease);
}
.nav__links a:hover { color: var(--cream); }
.nav__links a:hover::after { width: 100%; }
.nav__cta { display: flex; align-items: center; gap: 1rem; }
.nav__burger { display: none; flex-direction: column; gap: 5px; width: 30px; }
.nav__burger span { height: 2px; background: var(--cream); border-radius: 2px; transition: .3s; }

/* button */
.btn {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .85rem 1.5rem; border-radius: 100px;
  font-weight: 600; font-size: .9rem; letter-spacing: .01em;
  position: relative; overflow: hidden; transition: transform .3s var(--ease), color .3s;
}
.btn--gold { background: linear-gradient(120deg, var(--gold), var(--gold-2)); color: var(--ink); }
.btn--gold::before {
  content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, #fff, var(--gold));
  opacity: 0; transition: opacity .35s;
}
.btn--gold span, .btn--gold svg { position: relative; z-index: 1; }
.btn--gold:hover::before { opacity: 1; }
.btn--ghost { border: 1px solid var(--line-2); color: var(--cream); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn--lg { padding: 1.05rem 2rem; font-size: 1rem; }
.btn:active { transform: scale(.96); }

/* ===========================================================
   Hero
   =========================================================== */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center;
  padding-top: 7rem; overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 120%; object-fit: cover; will-change: transform; }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(13,10,9,.55) 0%, rgba(13,10,9,.35) 35%, rgba(13,10,9,.92) 100%),
    radial-gradient(120% 80% at 75% 30%, transparent 30%, rgba(13,10,9,.7) 100%);
}
.hero__content { position: relative; z-index: 2; max-width: 760px; }
.hero h1 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(2.8rem, 8.4vw, 6.5rem); line-height: .98;
  letter-spacing: -0.02em; margin: 1.3rem 0 1.4rem;
}
.hero h1 em { font-style: italic; color: var(--gold); }
.hero h1 .line { display: block; overflow: hidden; }
.hero h1 .line > span { display: block; }
.hero__sub { font-size: clamp(1rem, 1.4vw, 1.18rem); max-width: 48ch; color: var(--cream-dim); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.2rem; }
.hero__scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: .6rem;
  font-size: .68rem; letter-spacing: .25em; text-transform: uppercase; color: var(--cream-dim);
}
.hero__scroll .mouse {
  width: 22px; height: 36px; border: 1.5px solid var(--line-2); border-radius: 12px;
  position: relative;
}
.hero__scroll .mouse::after {
  content: ""; position: absolute; top: 6px; left: 50%; transform: translateX(-50%);
  width: 3px; height: 7px; border-radius: 2px; background: var(--gold);
  animation: wheel 1.6s infinite;
}
@keyframes wheel { 0%{opacity:0;transform:translate(-50%,0)} 30%{opacity:1} 100%{opacity:0;transform:translate(-50%,12px)} }

.hero__badges {
  position: relative; z-index: 2;
  display: flex; flex-wrap: wrap; gap: 1.8rem 2.6rem; margin-top: 2.8rem;
}
.hero__badge { display: flex; align-items: center; gap: .6rem; font-size: .85rem; color: var(--cream-dim); }
.hero__badge svg { color: var(--gold); flex: none; }

/* ===========================================================
   Marquee
   =========================================================== */
.marquee {
  padding: 1.6rem 0; border-block: 1px solid var(--line);
  background: linear-gradient(90deg, var(--crimson-2), #7d0c14);
  overflow: hidden; white-space: nowrap;
}
.marquee__track { display: inline-flex; gap: 3rem; will-change: transform; }
.marquee__track span {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(1.3rem, 2.6vw, 2rem); color: var(--cream);
  display: inline-flex; align-items: center; gap: 3rem;
}
.marquee__track span::after { content: "✦"; color: var(--gold); font-style: normal; font-size: .8em; }

/* ===========================================================
   Popular dishes
   =========================================================== */
.sec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; flex-wrap: wrap; margin-bottom: 3rem; }
.sec-head p { max-width: 42ch; margin-top: 1rem; }

.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.card {
  background: var(--ink-2); border: 1px solid var(--line);
  border-radius: 20px; overflow: hidden; position: relative;
  transition: transform .5s var(--ease), border-color .5s;
}
.card:hover { transform: translateY(-8px); border-color: var(--line-2); }
.card__img { aspect-ratio: 4/3.4; overflow: hidden; position: relative; }
.card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.card:hover .card__img img { transform: scale(1.08); }
.card__tag {
  position: absolute; top: .9rem; left: .9rem; z-index: 2;
  background: var(--gold); color: var(--ink); font-size: .68rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; padding: .3rem .7rem; border-radius: 100px;
}
.card__body { padding: 1.2rem 1.3rem 1.4rem; }
.card__body h3 { font-family: var(--font-display); font-size: 1.22rem; font-weight: 500; }
.card__body p { font-size: .85rem; color: var(--cream-dim); margin-top: .35rem; min-height: 2.6em; }
.card__foot { display: flex; align-items: center; justify-content: space-between; margin-top: 1rem; }
.card__price { font-family: var(--font-display); font-size: 1.3rem; color: var(--gold); }
.card__add {
  width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center;
  background: var(--ink-3); border: 1px solid var(--line-2); color: var(--cream);
  transition: background .3s, color .3s, transform .3s;
}
.card__add:hover { background: var(--gold); color: var(--ink); transform: rotate(90deg); }

/* ===========================================================
   About / story (split)
   =========================================================== */
.about { background: var(--ink-2); }
.about__grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.about__media { position: relative; }
.about__media img { width: 100%; border-radius: 22px; object-fit: cover; aspect-ratio: 4/5; }
.about__media .float {
  position: absolute; bottom: -1.4rem; left: -1.4rem;
  background: var(--ink); border: 1px solid var(--line-2); border-radius: 18px;
  padding: 1.1rem 1.4rem; display: flex; align-items: center; gap: .9rem;
  box-shadow: 0 24px 50px rgba(0,0,0,.5);
}
.about__media .float .big { font-family: var(--font-display); font-size: 2rem; color: var(--gold); line-height: 1; }
.about__media .float small { font-size: .75rem; color: var(--cream-dim); display: block; max-width: 14ch; }
.about__text h2 { margin: 1rem 0 1.4rem; }
.about__text p { color: var(--cream-dim); margin-bottom: 1.1rem; }
.stats { display: flex; gap: 2.4rem; margin: 2rem 0; flex-wrap: wrap; }
.stat .num { font-family: var(--font-display); font-size: clamp(2rem,4vw,2.8rem); color: var(--cream); line-height: 1; }
.stat .num span { color: var(--gold); }
.stat .lbl { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--cream-dim); margin-top: .4rem; }

/* ===========================================================
   Menu preview (tabs)
   =========================================================== */
.menu__tabs { display: flex; flex-wrap: wrap; gap: .6rem; margin: 2.4rem 0 2.6rem; }
.menu__tab {
  padding: .6rem 1.2rem; border-radius: 100px; border: 1px solid var(--line-2);
  font-size: .85rem; font-weight: 600; color: var(--cream-dim); transition: .3s;
}
.menu__tab.active, .menu__tab:hover { background: var(--crimson); border-color: var(--crimson); color: #fff; }
.menu__list { display: grid; grid-template-columns: 1fr 1fr; gap: .2rem 3.5rem; }
.menu__item {
  display: flex; align-items: baseline; gap: 1rem; padding: 1.05rem 0;
  border-bottom: 1px dashed var(--line);
}
.menu__item .leader { flex: 1; border-bottom: 1px dotted var(--line-2); transform: translateY(-4px); }
.menu__item h4 { font-size: 1rem; font-weight: 600; }
.menu__item h4 .vtag { color: var(--gold); font-size: .75rem; margin-left: .4rem; }
.menu__item .desc { display: block; font-size: .8rem; color: var(--cream-dim); font-weight: 400; margin-top: .15rem; }
.menu__item .price { font-family: var(--font-display); font-size: 1.15rem; color: var(--gold); flex: none; }
.menu__cta { text-align: center; margin-top: 3rem; }

/* ===========================================================
   Steps / how it works
   =========================================================== */
.steps__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin-top: 3rem; }
.step {
  padding: 2rem 1.8rem; border: 1px solid var(--line); border-radius: 20px;
  background: var(--ink-2); position: relative; overflow: hidden;
}
.step__no { font-family: var(--font-display); font-size: 3.4rem; color: var(--line-2); line-height: 1; }
.step h3 { font-size: 1.25rem; margin: .6rem 0 .5rem; font-family: var(--font-display); font-weight: 500; }
.step p { color: var(--cream-dim); font-size: .9rem; }
.step__ic { position: absolute; top: 1.6rem; right: 1.6rem; color: var(--crimson); }

/* ===========================================================
   Hours + Contact
   =========================================================== */
.info { background: var(--ink-2); }
.info__grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(2rem,5vw,4.5rem); }
.hours { background: var(--ink); border: 1px solid var(--line); border-radius: 22px; overflow: hidden; }
.hours__head {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; padding: 1.1rem 1.5rem;
  background: linear-gradient(90deg, var(--crimson-2), #7d0c14);
  font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--cream);
}
.hours__row {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; padding: .95rem 1.5rem;
  border-bottom: 1px solid var(--line); font-size: .92rem; align-items: center;
}
.hours__row:last-child { border-bottom: none; }
.hours__row.today { background: rgba(232,184,92,.08); }
.hours__row .day { font-weight: 600; }
.hours__row .day .pin { color: var(--gold); font-size: .68rem; margin-left: .4rem; letter-spacing: .1em; }
.hours__row .closed { color: var(--crimson); font-style: italic; }
.hours__row time { color: var(--cream-dim); }

.contact-card {
  display: flex; align-items: flex-start; gap: 1.1rem; padding: 1.4rem 1.5rem;
  border: 1px solid var(--line); border-radius: 18px; background: var(--ink);
  margin-bottom: 1.1rem; transition: border-color .3s, transform .3s;
}
.contact-card:hover { border-color: var(--gold); transform: translateX(4px); }
.contact-card .ic {
  width: 46px; height: 46px; border-radius: 12px; flex: none; display: grid; place-items: center;
  background: var(--ink-3); color: var(--gold);
}
.contact-card h4 { font-size: .76rem; letter-spacing: .14em; text-transform: uppercase; color: var(--cream-dim); margin-bottom: .25rem; }
.contact-card p { font-size: 1.05rem; }
.map {
  position: relative; display: block; margin-top: 1.4rem; height: 240px;
  border-radius: 18px; overflow: hidden; border: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 42%, rgba(232,184,92,.18), transparent 45%),
    repeating-linear-gradient(0deg,  rgba(253,243,231,.07) 0 1px, transparent 1px 34px),
    repeating-linear-gradient(90deg, rgba(253,243,231,.07) 0 1px, transparent 1px 34px),
    linear-gradient(135deg, #181312, #221917);
  transition: border-color .3s, transform .4s var(--ease);
}
.map:hover { border-color: var(--gold); }
/* stylised "roads" */
.map__roads { position: absolute; inset: 0; }
.map__roads::before, .map__roads::after {
  content: ""; position: absolute; background: rgba(232,184,92,.22);
}
.map__roads::before { top: 60%; left: -10%; right: -10%; height: 6px; transform: rotate(-8deg); box-shadow: 0 80px 0 rgba(253,243,231,.06); }
.map__roads::after  { top: -10%; bottom: -10%; left: 38%; width: 6px; transform: rotate(10deg); background: rgba(253,243,231,.10); }
.map__pin {
  position: absolute; top: 42%; left: 50%; transform: translate(-50%, -70%);
  color: var(--gold); filter: drop-shadow(0 6px 10px rgba(0,0,0,.7)); z-index: 2;
}
.map__pin::after {
  content: ""; position: absolute; left: 50%; bottom: -4px; transform: translateX(-50%);
  width: 26px; height: 26px; border-radius: 50%; background: rgba(232,184,92,.35);
  animation: ping 2s var(--ease) infinite;
}
@keyframes ping { 0% { transform: translateX(-50%) scale(.4); opacity: .8; } 100% { transform: translateX(-50%) scale(2.4); opacity: 0; } }
.map__bar {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: .85rem 1.1rem; font-size: .85rem;
  background: linear-gradient(transparent, rgba(8,6,5,.92));
}
.map__bar .open { color: var(--gold); font-weight: 600; white-space: nowrap; }

/* ===========================================================
   CTA banner
   =========================================================== */
.cta {
  position: relative; overflow: hidden;
  background: linear-gradient(120deg, #7d0c14, var(--crimson-2));
  text-align: center;
}
.cta__inner { position: relative; z-index: 2; }
.cta h2 { font-family: var(--font-display); font-weight: 400; font-size: clamp(2.2rem,6vw,4.4rem); line-height: 1.02; }
.cta h2 em { font-style: italic; color: var(--gold); }
.cta p { max-width: 46ch; margin: 1.2rem auto 2rem; color: rgba(253,243,231,.85); }
.cta__glow { position: absolute; width: 460px; height: 460px; border-radius: 50%; filter: blur(120px); background: var(--gold); opacity: .22; }
.cta__glow.g1 { top: -160px; left: -120px; }
.cta__glow.g2 { bottom: -200px; right: -120px; background: #fff; opacity: .12; }

/* ===========================================================
   Footer
   =========================================================== */
.footer { background: var(--ink); padding-top: clamp(3.5rem,7vw,6rem); }
.footer__top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2rem; padding-bottom: 3rem; border-bottom: 1px solid var(--line); }
.footer__brand p { color: var(--cream-dim); max-width: 30ch; margin: 1.1rem 0 1.4rem; font-size: .92rem; }
.footer__col h5 { font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.1rem; }
.footer__col a { display: block; color: var(--cream-dim); font-size: .92rem; padding: .35rem 0; transition: color .3s, padding .3s; }
.footer__col a:hover { color: var(--cream); padding-left: 6px; }
.socials { display: flex; gap: .7rem; }
.socials a {
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line-2);
  display: grid; place-items: center; color: var(--cream); transition: .3s;
}
.socials a:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; padding: 1.8rem 0; font-size: .82rem; color: var(--cream-dim); }
.footer__bottom a:hover { color: var(--gold); }

/* ===========================================================
   Login modal
   =========================================================== */
.modal { position: fixed; inset: 0; z-index: 1000; display: none; }
.modal.open { display: grid; place-items: center; }
.modal__overlay { position: absolute; inset: 0; background: rgba(8,6,5,.7); backdrop-filter: blur(6px); }
.modal__box {
  position: relative; z-index: 1; width: min(92vw, 440px);
  background: var(--ink-2); border: 1px solid var(--line-2); border-radius: 22px;
  padding: 2.2rem; transform: translateY(20px) scale(.96); opacity: 0;
}
.modal.open .modal__box { animation: pop .5s var(--ease) forwards; }
@keyframes pop { to { transform: none; opacity: 1; } }
.modal__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.6rem; }
.modal__head h3 { font-family: var(--font-display); font-size: 1.6rem; font-weight: 500; }
.modal__close { width: 36px; height: 36px; border-radius: 50%; background: var(--ink-3); display: grid; place-items: center; transition: .3s; }
.modal__close:hover { background: var(--crimson); }
.field { position: relative; margin-bottom: 1rem; }
.field input {
  width: 100%; padding: 1.1rem 1rem .6rem; border-radius: 12px; background: var(--ink-3);
  border: 1px solid var(--line); color: var(--cream); font-size: .95rem; outline: none; transition: border-color .3s;
}
.field input:focus { border-color: var(--gold); }
.field label { position: absolute; top: .55rem; left: 1rem; font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--cream-dim); }
.field--check { display: flex; align-items: center; justify-content: space-between; font-size: .85rem; color: var(--cream-dim); }
.field--check a { color: var(--gold); }
.modal .btn--gold { width: 100%; justify-content: center; margin-top: .6rem; }
.modal__alt { text-align: center; margin-top: 1.2rem; font-size: .88rem; color: var(--cream-dim); }
.modal__alt a { color: var(--gold); }
.modal__div { display: flex; align-items: center; gap: 1rem; margin: 1.3rem 0; color: var(--cream-dim); font-size: .8rem; }
.modal__div::before, .modal__div::after { content: ""; height: 1px; flex: 1; background: var(--line); }
.modal__social { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; }
.modal__social button { display: flex; align-items: center; justify-content: center; gap: .5rem; padding: .8rem; border-radius: 12px; border: 1px solid var(--line-2); font-size: .85rem; font-weight: 600; transition: .3s; }
.modal__social button:hover { border-color: var(--gold); }

/* ===========================================================
   Menu page specific
   =========================================================== */
.page-hero {
  padding-top: 9rem; padding-bottom: 3rem; text-align: center; position: relative; overflow: hidden;
}
.page-hero h1 { font-family: var(--font-display); font-weight: 400; font-size: clamp(2.6rem,7vw,5rem); line-height: 1; }
.page-hero h1 em { font-style: italic; color: var(--gold); }
.page-hero p { color: var(--cream-dim); max-width: 50ch; margin: 1.2rem auto 0; }
.page-hero .crumbs { font-size: .8rem; color: var(--cream-dim); margin-bottom: 1.2rem; letter-spacing: .1em; }
.page-hero .crumbs a:hover { color: var(--gold); }

.menu-layout { display: grid; grid-template-columns: 230px 1fr; gap: 3rem; align-items: start; }
.menu-nav { position: sticky; top: 6rem; }
.menu-nav h5 { font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.menu-nav a { display: block; padding: .5rem 0; font-size: .9rem; color: var(--cream-dim); transition: color .3s, padding .3s; border-left: 2px solid transparent; padding-left: .9rem; }
.menu-nav a:hover, .menu-nav a.active { color: var(--cream); border-color: var(--gold); }

.menu-cat { margin-bottom: 3.4rem; scroll-margin-top: 6rem; }
.menu-cat__head { display: flex; align-items: baseline; gap: 1rem; margin-bottom: 1.4rem; }
.menu-cat__head h2 { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.6rem,3.2vw,2.3rem); }
.menu-cat__head .rule { flex: 1; height: 1px; background: var(--line); }
.menu-cat__note { font-size: .82rem; color: var(--cream-dim); margin: -.8rem 0 1.4rem; }
.menu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .1rem 3rem; }

/* ===========================================================
   Responsive
   =========================================================== */
@media (max-width: 1080px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .nav__links, .nav__cta .btn--ghost { display: none; }
  .nav__burger { display: flex; }
  .about__grid, .info__grid, .menu-layout { grid-template-columns: 1fr; }
  .menu-nav { position: static; display: flex; gap: .5rem; overflow-x: auto; padding-bottom: .5rem; }
  .menu-nav h5 { display: none; }
  .menu-nav a { white-space: nowrap; border-left: none; border-bottom: 2px solid transparent; padding: .5rem .2rem; }
  .menu__list, .menu-grid { grid-template-columns: 1fr; gap: 0; }
  .steps__grid { grid-template-columns: 1fr; }
  .about__media .float { left: 1rem; }

  /* mobile menu drawer */
  .nav__drawer {
    position: fixed; inset: 0; z-index: 950; background: var(--ink);
    display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 1.6rem;
    transform: translateX(100%); transition: transform .5s var(--ease);
  }
  .nav__drawer.open { transform: none; }
  .nav__drawer a { font-family: var(--font-display); font-size: 2rem; color: var(--cream); }
  .nav__drawer .btn { margin-top: 1rem; }
  .nav__drawer .close { position: absolute; top: 1.5rem; right: 1.5rem; font-size: 2rem; }
}
@media (min-width: 901px) { .nav__drawer { display: none; } }
@media (max-width: 560px) {
  .cards { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .hours__head, .hours__row { grid-template-columns: 1.2fr 1fr 1fr; padding-inline: 1rem; font-size: .82rem; }
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
