/* ============================================================
   Abbaee Soondae — semi-premium revamp
   Palette built up from the real brand red (#ff0000 seal),
   elevated to a deep gochujang red on warm ink + hanji cream.
   ============================================================ */

:root {
  --ink:        #1c1512;   /* warm near-black */
  --ink-soft:   #2a201c;
  --paper:      #f6efe3;   /* hanji cream */
  --paper-2:    #efe6d6;
  --cream-card: #fbf6ec;
  --red:        #a81e1e;   /* elevated brand red */
  --red-deep:   #861414;
  --red-bright: #d8321f;   /* appetite accent */
  --gold:       #c2a14e;   /* brass */
  --clay:       #7c3a2d;
  --muted:      #6b5d52;
  --line:       rgba(28,21,18,0.12);

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Hanken Grotesk", system-ui, sans-serif;
  --font-kr: "Noto Serif KR", var(--font-display);

  --maxw: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --nav-h: 58px; /* live-measured in script.js so the hero fills the exact remainder */
}

* { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

:where(a, button):focus-visible {
  outline: 2px solid var(--red-bright);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--ink); color: var(--paper); padding: .6rem 1rem;
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* ---------- Buttons ---------- */
.btn {
  --btn-fg: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
  gap: .5em;
  font-family: var(--font-body);
  font-weight: 600; font-size: .93rem; letter-spacing: .01em;
  padding: .8em 1.5em; border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer; white-space: nowrap;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--lg { padding: 1em 1.9em; font-size: 1rem; }
.btn--block { display: flex; width: 100%; }

.btn--red { background: var(--red); color: #fff; box-shadow: 0 8px 24px -10px rgba(168,30,30,.7); }
.btn--red:hover { background: var(--red-bright); box-shadow: 0 12px 30px -10px rgba(216,50,31,.75); }

.btn--dark { background: var(--ink); color: var(--paper); }
.btn--dark:hover { background: var(--ink-soft); }

.btn--ghost { background: transparent; color: var(--paper); border-color: rgba(246,239,227,.28); }
.btn--ghost:hover { border-color: rgba(246,239,227,.6); background: rgba(246,239,227,.06); }

.btn--outline { background: transparent; color: currentColor; border-color: currentColor; }
.btn--outline:hover { background: currentColor; }
/* invert text when outline fills — handled per context */
.hero .btn--outline { color: var(--paper); }
.hero .btn--outline:hover { color: var(--ink); background: var(--paper); }
.menu__foot .btn--outline, .cta .btn--outline { color: var(--ink); }
.cta .btn--outline { color: var(--paper); }
.cta .btn--outline:hover { color: var(--ink); background: var(--paper); }
.menu__foot .btn--outline:hover { color: var(--paper); background: var(--ink); border-color: var(--ink); }

/* ---------- Typographic helpers ---------- */
.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase; letter-spacing: .28em;
  font-size: .72rem; font-weight: 600;
  color: var(--gold);
}
.eyebrow--dark { color: var(--clay); }

.section__title {
  font-family: var(--font-display);
  font-weight: 500; font-optical-sizing: auto;
  font-size: clamp(2.1rem, 5.2vw, 3.6rem);
  line-height: 1.02; letter-spacing: -.01em;
}
.ital { font-style: italic; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(28,21,18,.82);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid rgba(246,239,227,.08);
  transition: background .3s var(--ease), box-shadow .3s var(--ease);
}
.nav.is-scrolled { background: rgba(28,21,18,.96); box-shadow: 0 10px 30px -18px rgba(0,0,0,.6); }

.nav__inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: .7rem clamp(1rem, 4vw, 2rem);
  display: flex; align-items: center; gap: 1.5rem;
}
.nav__brand { display: flex; align-items: center; }
.nav__logo { height: 34px; width: auto; }

.nav__links {
  display: flex; gap: 1.9rem; margin-left: auto;
}
.nav__links a {
  color: rgba(246,239,227,.82); font-weight: 500; font-size: .95rem;
  position: relative; padding: .2rem 0;
  transition: color .2s var(--ease);
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 1.5px; width: 0;
  background: var(--gold); transition: width .3s var(--ease);
}
.nav__links a:hover { color: #fff; }
.nav__links a:hover::after { width: 100%; }

.nav__cta { display: flex; align-items: center; gap: .6rem; }
.nav__cta .btn { padding: .6em 1.1em; font-size: .85rem; }

.nav__toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
}
.nav__toggle span {
  width: 24px; height: 2px; background: var(--paper); border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu — default hidden via display:none (not just [hidden]) */
.mobile-menu {
  display: none;
  flex-direction: column; gap: .3rem;
  padding: 1rem clamp(1rem, 4vw, 2rem) 1.6rem;
  background: rgba(28,21,18,.98);
  border-top: 1px solid rgba(246,239,227,.08);
}
.mobile-menu.is-open { display: flex; }
.mobile-menu a:not(.btn) {
  color: rgba(246,239,227,.9); font-family: var(--font-display); font-size: 1.4rem;
  padding: .55rem 0; border-bottom: 1px solid rgba(246,239,227,.08);
}
.mobile-menu .btn { margin-top: .6rem; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; overflow: hidden;
  /* Lock to the exact viewport remainder under the nav, and become a SIZE
     container so every metric below can scale off the hero box (cqi/cqh).
     This guarantees the CTA buttons + rating/review proof stay in the fold. */
  container-type: size;
  container-name: hero;
  min-height: calc(100svh - var(--nav-h));
  height: calc(100svh - var(--nav-h));
  display: flex; align-items: center;
  background: radial-gradient(120% 120% at 15% 0%, #2c1f1a 0%, var(--ink) 45%, #150f0d 100%);
  color: var(--paper);
  padding: clamp(1rem, 5cqh, 3rem) clamp(1rem, 4vw, 2rem);
}
.hero__mesh {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(40% 55% at 82% 18%, rgba(216,50,31,.30), transparent 70%),
    radial-gradient(35% 45% at 90% 85%, rgba(194,161,78,.18), transparent 70%),
    radial-gradient(45% 50% at 8% 95%, rgba(124,58,45,.28), transparent 70%);
  mix-blend-mode: screen;
}
.hero__grain, .cta__grain {
  position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
}
.hero__inner {
  position: relative; z-index: 1;
  width: 100%; max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1fr; align-content: center;
  row-gap: clamp(.5rem, 2.4cqh, 1.5rem);
}
.hero__main {
  display: flex; flex-direction: column; justify-content: center;
  gap: clamp(.5rem, 2.4cqh, 1.5rem);
}

/* Right-hand signature card + watermark fill the empty half on wide screens */
.hero__aside { display: none; }

.hero__watermark {
  position: absolute; z-index: 0; pointer-events: none;
  top: 50%; right: -2%; transform: translateY(-50%);
  font-family: var(--font-kr); font-weight: 600;
  font-size: min(46cqh, 34cqi); line-height: .8;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(194,161,78,.10);
  text-stroke: 1.5px rgba(194,161,78,.10);
  display: none;
}

.feature-card {
  position: relative;
  background: rgba(246,239,227,.045);
  border: 1px solid rgba(246,239,227,.14);
  border-radius: 18px;
  padding: clamp(1.1rem, 3cqh, 1.9rem) clamp(1.2rem, 3cqi, 1.9rem);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 30px 60px -40px rgba(0,0,0,.8);
}
.feature-card__top { display: flex; align-items: center; gap: 1rem; margin-bottom: clamp(.8rem, 2cqh, 1.3rem); }
.feature-card__label {
  text-transform: uppercase; letter-spacing: .22em; font-size: .72rem; font-weight: 600;
  color: var(--gold); white-space: nowrap;
}
.feature-card__rule { flex: 1; height: 1px; background: linear-gradient(90deg, rgba(194,161,78,.5), transparent); }
.feature-card__list { list-style: none; display: flex; flex-direction: column; }
.feature-card__list li {
  display: flex; align-items: baseline; justify-content: space-between; gap: 1rem;
  padding: clamp(.55rem, 1.4cqh, .8rem) 0;
  border-bottom: 1px dashed rgba(246,239,227,.14);
}
.feature-card__list li:last-child { border-bottom: 0; }
.fc-name { font-family: var(--font-display); font-size: clamp(1rem, 2cqh, 1.2rem); color: var(--paper); }
.fc-name em { font-family: var(--font-kr); font-style: normal; color: rgba(194,161,78,.85); font-size: .82em; margin-left: .4em; }
.fc-price { font-family: var(--font-display); font-weight: 600; color: var(--gold); white-space: nowrap; }
.feature-card__link {
  display: inline-block; margin-top: clamp(.8rem, 2cqh, 1.2rem);
  color: rgba(246,239,227,.82); font-weight: 600; font-size: .92rem;
  border-bottom: 1px solid transparent; transition: color .2s var(--ease), border-color .2s var(--ease);
}
.feature-card__link:hover { color: #fff; border-color: var(--gold); }

@media (min-width: 960px) {
  .hero__inner {
    grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.82fr);
    grid-template-areas: "main aside" "proof proof";
    align-items: center;
    column-gap: clamp(2rem, 5vw, 5rem);
    row-gap: clamp(1rem, 3cqh, 2.2rem);
  }
  .hero__main  { grid-area: main; }
  .hero__aside { grid-area: aside; display: block; }
  .hero__proof { grid-area: proof; }
  .hero__watermark { display: block; }
}

.hero .eyebrow {
  margin-bottom: 0; font-family: var(--font-kr); letter-spacing: .18em;
  font-size: clamp(.62rem, min(1.6cqi, 1.8cqh), .78rem);
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 500; font-optical-sizing: auto;
  /* capped by BOTH width (cqi) and height (cqh) — the height cap is what
     keeps the 4-line headline from pushing the fold content off-screen */
  font-size: clamp(2.1rem, min(10.5cqi, 12.5cqh), 6.5rem);
  line-height: .9; letter-spacing: -.02em;
  text-wrap: balance;
}
.hero__title .ital { color: var(--gold); }

.hero__lede {
  max-width: 34ch; margin: 0;
  font-size: clamp(.92rem, min(2.3cqi, 2.9cqh), 1.25rem);
  color: rgba(246,239,227,.78);
}

.hero__actions { display: flex; flex-wrap: wrap; gap: .7rem; margin: 0; }
.hero .btn--lg { padding: clamp(.7em, 1.4cqh, 1em) clamp(1.3em, 3cqi, 1.9em); }

.hero__proof {
  display: flex; align-items: center; gap: clamp(.8rem, 2cqi, 1.5rem); flex-wrap: wrap;
  margin: 0; padding-top: clamp(.7rem, 2.2cqh, 1.8rem);
  border-top: 1px solid rgba(246,239,227,.14);
}
.proof { display: flex; align-items: baseline; gap: .55rem; }
.proof__stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 1px; position: relative; }
.proof__half { position: relative; }
.proof__half::before {
  content: "★"; position: absolute; left: 0; top: 0; width: 50%; overflow: hidden; color: rgba(246,239,227,.28);
}
.proof__num { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; }
.proof__label { color: rgba(246,239,227,.62); font-size: .9rem; }
.proof__divider { width: 1px; height: 34px; background: rgba(246,239,227,.18); }
.proof__quote { font-family: var(--font-display); font-style: italic; color: rgba(246,239,227,.85); font-size: 1.05rem; }

/* ---------- Marquee strip ---------- */
.strip {
  background: var(--red); color: #fff; overflow: hidden;
  border-block: 3px solid var(--red-deep);
  padding: .7rem 0;
}
.strip__track {
  display: flex; align-items: center; gap: 1.4rem; width: max-content;
  font-family: var(--font-display); font-style: italic; font-size: 1.15rem;
  animation: marquee 32s linear infinite;
}
.strip__track .dot { opacity: .55; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .strip__track { animation: none; } }

/* ============================================================
   SECTIONS
   ============================================================ */
.section {
  max-width: var(--maxw); margin: 0 auto;
  padding: clamp(4rem, 9vw, 7rem) clamp(1rem, 4vw, 2rem);
}
.section__head { max-width: 46rem; margin-bottom: 3rem; }
.section__head .eyebrow { margin-bottom: 1rem; }
.section__intro { margin-top: 1.2rem; color: var(--muted); font-size: 1.08rem; max-width: 44ch; }

/* ---------- Menu ---------- */
.menu__grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem;
}
.menu-card {
  background: var(--cream-card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: clamp(1.4rem, 3vw, 2.2rem);
  box-shadow: 0 1px 0 rgba(255,255,255,.6) inset;
}
.menu-card__head {
  display: flex; align-items: baseline; justify-content: space-between; gap: 1rem;
  padding-bottom: 1rem; margin-bottom: 1rem;
  border-bottom: 1.5px solid var(--red);
}
.menu-card__head h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.5rem; }
.menu-card__kr { font-family: var(--font-kr); color: var(--clay); font-size: 1.15rem; }

.menu-list { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.menu-list li { display: flex; gap: 1rem; align-items: baseline; justify-content: space-between; }
.mi { display: flex; flex-direction: column; gap: .15rem; }
.mi__name { font-weight: 600; font-size: 1.02rem; }
.mi__name em { font-family: var(--font-kr); font-style: normal; font-weight: 500; color: var(--clay); font-size: .92em; margin-left: .35em; }
.mi__desc { color: var(--muted); font-size: .88rem; line-height: 1.45; max-width: 42ch; }
.mi__price {
  font-family: var(--font-display); font-weight: 600; font-size: 1.05rem;
  color: var(--red-deep); white-space: nowrap;
  position: relative; top: 1px;
}

.setmenu {
  margin-top: 1.4rem;
  background: var(--ink); color: var(--paper);
  border-radius: 18px; padding: clamp(1.6rem, 3.5vw, 2.6rem);
}
.setmenu__head { display: flex; flex-direction: column; gap: .3rem; margin-bottom: 1.4rem; }
.setmenu__head h3 { font-family: var(--font-display); font-weight: 500; font-size: 1.7rem; }
.setmenu__head h3 em { font-family: var(--font-kr); font-style: normal; color: var(--gold); margin-left: .4em; font-size: .8em; }
.setmenu__head p { color: rgba(246,239,227,.7); }
.setmenu__list { list-style: none; display: grid; grid-template-columns: repeat(2,1fr); gap: .7rem 2.5rem; }
.setmenu__list li { display: flex; justify-content: space-between; gap: 1rem; align-items: baseline; padding: .5rem 0; border-bottom: 1px dashed rgba(246,239,227,.18); }
.setmenu__list li span em { font-family: var(--font-kr); font-style: normal; color: var(--gold); margin-left: .4em; font-size: .9em; }
.setmenu__list li b { font-family: var(--font-display); color: var(--gold); }
.setmenu__note { margin-top: 1.3rem; color: rgba(246,239,227,.6); font-size: .86rem; }

.menu__foot { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center; margin-top: 2.6rem; }

/* ---------- Story ---------- */
.story { padding-block: clamp(3rem, 7vw, 5rem); }
.story__grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.story__copy p { color: var(--muted); font-size: 1.08rem; margin-top: 1.2rem; max-width: 46ch; }
.story__copy .section__title { margin-top: 1rem; }
.story__copy .btn { margin-top: 1.8rem; }

.story__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.stat {
  background: var(--cream-card); border: 1px solid var(--line); border-radius: 16px;
  padding: 1.6rem 1.4rem; display: flex; flex-direction: column; gap: .4rem;
}
.stat__num {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(2rem, 4vw, 2.7rem); line-height: 1; color: var(--red);
  display: inline-flex; align-items: baseline; gap: .1em;
}
.stat__star { color: var(--gold); font-size: .6em; }
.stat__label { color: var(--muted); font-size: .9rem; }

/* ---------- Reviews ---------- */
.reviews { background: linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%); max-width: none; }
.reviews > .section__head, .reviews__grid { max-width: var(--maxw); margin-inline: auto; }
.reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
.review {
  background: var(--cream-card); border: 1px solid var(--line);
  border-radius: 16px; padding: 1.7rem;
  display: flex; flex-direction: column; gap: 1rem;
}
.review__stars { color: var(--red-bright); letter-spacing: 2px; font-size: .95rem; }
.review blockquote { font-family: var(--font-display); font-size: 1.12rem; line-height: 1.4; }
.review figcaption { margin-top: auto; font-weight: 600; }
.review figcaption span { color: var(--muted); font-weight: 400; font-size: .88rem; }

/* ---------- Visit ---------- */
.visit__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); align-items: stretch; }
.visit__info .section__title { margin: 1rem 0 2rem; }
.visit__block { margin-bottom: 1.6rem; }
.visit__block h4 {
  font-family: var(--font-body); text-transform: uppercase; letter-spacing: .16em;
  font-size: .75rem; color: var(--clay); margin-bottom: .5rem;
}
.visit__block p { font-size: 1.05rem; }
.hours { border-collapse: collapse; width: 100%; max-width: 22rem; }
.hours td { padding: .45rem 0; border-bottom: 1px solid var(--line); font-size: 1rem; }
.hours td:last-child { text-align: right; font-variant-numeric: tabular-nums; color: var(--muted); }
.link-arrow { color: var(--red); font-weight: 600; display: inline-block; margin-top: .5rem; }
.link-arrow:hover { color: var(--red-bright); }
.visit__socials { display: flex; gap: 1.2rem; }
.visit__socials a { color: var(--red); font-weight: 600; }
.visit__socials a:hover { color: var(--red-bright); }

.visit__map { position: relative; }
.map-frame {
  height: 100%; min-height: 340px; border-radius: 18px; overflow: hidden;
  border: 1px solid var(--line); box-shadow: 0 20px 50px -30px rgba(28,21,18,.5);
  filter: saturate(.9) contrast(1.02);
}
.map-frame iframe { width: 100%; height: 100%; min-height: 340px; border: 0; display: block; }
.seal {
  position: absolute; bottom: -18px; right: 18px;
  background: var(--red); color: #fff; border: 3px solid var(--red-deep);
  border-radius: 50%; width: 118px; height: 118px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
  transform: rotate(-8deg); box-shadow: 0 12px 30px -12px rgba(134,20,20,.7);
}
.seal__kr { font-family: var(--font-kr); font-size: 1.05rem; line-height: 1.1; }
.seal__en { font-size: .58rem; letter-spacing: .1em; text-transform: uppercase; opacity: .85; margin-top: .3rem; }

/* ---------- Gallery (when enabled) ---------- */
.gallery__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.gallery__grid img { border-radius: 14px; aspect-ratio: 1; object-fit: cover; }

/* ---------- Final CTA ---------- */
.cta {
  position: relative; overflow: hidden;
  background: radial-gradient(120% 140% at 50% 0%, #2c1f1a, var(--ink) 60%, #140e0c);
  color: var(--paper); text-align: center;
}
.cta__inner { position: relative; max-width: 40rem; margin: 0 auto; padding: clamp(4rem, 9vw, 7rem) 1.5rem; }
.cta h2 { font-family: var(--font-display); font-weight: 500; font-size: clamp(2.6rem, 7vw, 4.5rem); line-height: 1; }
.cta p { color: rgba(246,239,227,.75); font-size: 1.1rem; margin-top: 1rem; }
.cta__actions { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center; margin-top: 2rem; }

/* ---------- Footer ---------- */
.footer { background: #140e0c; color: rgba(246,239,227,.75); }
.footer__inner {
  max-width: var(--maxw); margin: 0 auto; padding: clamp(3rem, 6vw, 4.5rem) clamp(1rem, 4vw, 2rem) 2rem;
  display: grid; grid-template-columns: 1.2fr 2fr; gap: 2.5rem;
}
.footer__brand img { height: 40px; width: auto; margin-bottom: 1rem; }
.footer__brand p { max-width: 28ch; font-size: .95rem; }
.footer__cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.footer__cols h5 {
  font-family: var(--font-body); text-transform: uppercase; letter-spacing: .14em;
  font-size: .72rem; color: var(--gold); margin-bottom: .7rem;
}
.footer__cols p { font-size: .92rem; margin-bottom: .4rem; }
.footer__cols a:hover { color: #fff; }
.footer__bar {
  border-top: 1px solid rgba(246,239,227,.1);
  max-width: var(--maxw); margin: 0 auto; padding: 1.3rem clamp(1rem, 4vw, 2rem);
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  font-size: .82rem; color: rgba(246,239,227,.5);
}

/* ============================================================
   Scroll reveal
   ============================================================ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 900px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .menu__grid { grid-template-columns: 1fr; }
  .story__grid { grid-template-columns: 1fr; }
  .reviews__grid { grid-template-columns: 1fr 1fr; }
  .visit__grid { grid-template-columns: 1fr; }
  .setmenu__list { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .reviews__grid { grid-template-columns: 1fr; }
  .footer__cols { grid-template-columns: 1fr 1fr; }
  .hero__proof { gap: 1rem; }
  .proof__divider { display: none; }
  .footer__bar { justify-content: flex-start; }
  .menu-list li { flex-wrap: wrap; }
}
