/* ============================================================
   IN DA KITCHEN WIT KEMP — style.css
   Path B: DARK, matched to Kemp's real flyer — warm near-black
   base + honey-gold accent + white. His brand identity is already
   established (black/gold, chef logo, food in dark containers), so
   the site honors it rather than diverging. Differentiated from the
   other dark studio sites by a warm brown-black base (not the shared
   charcoal), a brighter flyer-gold, and this layout skeleton.
   Vanilla CSS. All color/space/type through :root tokens.
   ============================================================ */

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  /* Palette — flyer black + gold */
  --bg:            #0B0A07;   /* warm near-black */
  --bg-alt:        #12100A;   /* alternating band */
  --surface:       #17130C;   /* cards */
  --surface-2:     #201A11;   /* raised / chips */
  --text:          #F6F0E2;   /* warm white */
  --text-secondary:#B6AA93;   /* muted */
  --gold:          #E8A62C;   /* flyer honey-gold (lead accent) */
  --gold-bright:   #F4BA3E;
  --gold-deep:     #C4851A;
  --on-gold:       #140F06;   /* near-black text on gold */

  /* alias so shared rules read naturally */
  --accent:        var(--gold);
  --accent-dark:   var(--gold-deep);

  /* alpha tokens (no raw rgba scattered in rules) */
  --text-a70:      rgba(246, 240, 226, 0.70);
  --text-a45:      rgba(246, 240, 226, 0.45);
  --line:          rgba(232, 166, 44, 0.24);  /* gold hairline */
  --line-soft:     rgba(246, 240, 226, 0.10); /* faint white hairline */
  --bg-a92:        rgba(11, 10, 7, 0.92);
  --bg-a70:        rgba(11, 10, 7, 0.70);
  --gold-a40:      rgba(232, 166, 44, 0.40);
  --gold-a15:      rgba(232, 166, 44, 0.15);
  --gold-a08:      rgba(232, 166, 44, 0.08);
  --shadow:        rgba(0, 0, 0, 0.45);
  --shadow-lg:     rgba(0, 0, 0, 0.6);

  /* Status */
  --success:       #6CCB8E;
  --success-bg:    rgba(108, 203, 142, 0.14);
  --error:         #E8776A;
  --error-bg:      rgba(232, 119, 106, 0.14);

  /* Typography */
  --font-display: 'Bricolage Grotesque', 'Georgia', serif;
  --font-body:    'Hanken Grotesk', system-ui, -apple-system, sans-serif;

  /* Type scale */
  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.25rem;
  --text-2xl:  1.5rem;
  --text-3xl:  1.875rem;
  --text-4xl:  2.25rem;
  --text-5xl:  clamp(2.5rem, 5vw, 3.5rem);
  --text-6xl:  clamp(3rem, 7.5vw, 5.5rem);
  --price-num: clamp(4.5rem, 14vw, 9rem);

  /* Spacing (8px grid) */
  --space-1:  0.25rem;  --space-2:  0.5rem;  --space-3:  0.75rem;
  --space-4:  1rem;     --space-5:  1.25rem; --space-6:  1.5rem;
  --space-8:  2rem;     --space-10: 2.5rem;  --space-12: 3rem;
  --space-16: 4rem;     --space-20: 5rem;    --space-24: 6rem;  --space-32: 8rem;

  /* Layout */
  --max-width:  1200px;
  --nav-height: 72px;

  /* Motion */
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.45, 0, 0.55, 1);
  --duration-fast: 180ms;
  --duration-base: 320ms;
  --duration-slow: 560ms;

  /* Radius */
  --radius-sm:   6px;  --radius-md: 12px; --radius-lg: 20px;
  --radius-xl:   28px; --radius-full: 9999px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

[hidden] { display: none !important; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--text);
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
.img-frame img { font-size: 0; color: transparent; }

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: var(--radius-sm); }
::selection { background: var(--gold-a40); color: var(--text); }

/* ============================================================
   TYPOGRAPHY HELPERS
   ============================================================ */
.display { font-family: var(--font-display); font-weight: 800; line-height: 1.02; letter-spacing: -0.02em; }

.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--gold); border-radius: var(--radius-full); }
.eyebrow--center { justify-content: center; }

.section { padding: clamp(var(--space-16), 9vw, var(--space-32)) var(--space-6); }
.section__inner { max-width: var(--max-width); margin: 0 auto; }
.section--band { background: var(--bg-alt); }
.section__head { max-width: 720px; margin: 0 auto var(--space-12); text-align: center; }
.section__title { font-family: var(--font-display); font-weight: 800; font-size: var(--text-5xl); line-height: 1.05; letter-spacing: -0.02em; margin-top: var(--space-3); }
.section__lead { color: var(--text-secondary); font-size: var(--text-lg); margin-top: var(--space-4); }

.skip-link {
  position: absolute; left: var(--space-4); top: -60px;
  background: var(--gold); color: var(--on-gold);
  padding: var(--space-3) var(--space-5); border-radius: var(--radius-md);
  z-index: 200; font-weight: 700;
  transition: top var(--duration-fast) var(--ease-out);
}
.skip-link:focus { top: var(--space-4); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--space-2);
  min-height: 52px; padding: var(--space-4) var(--space-8);
  border-radius: var(--radius-full);
  font-family: var(--font-body); font-weight: 700; font-size: var(--text-base); letter-spacing: 0.01em;
  transition: transform var(--duration-fast) var(--ease-out),
              background-color var(--duration-fast) var(--ease-out),
              box-shadow var(--duration-fast) var(--ease-out),
              color var(--duration-fast) var(--ease-out);
  will-change: transform; -webkit-tap-highlight-color: transparent;
}
.btn:active { transform: translateY(1px); }

.btn--primary {
  background: var(--gold); color: var(--on-gold);
  box-shadow: 0 12px 28px -12px var(--gold-a40);
}
@media (hover: hover) {
  .btn--primary:hover { background: var(--gold-bright); transform: translateY(-2px); box-shadow: 0 18px 34px -12px var(--gold-a40); }
}

.btn--ghost { background: transparent; color: var(--text); box-shadow: inset 0 0 0 2px var(--line); }
@media (hover: hover) {
  .btn--ghost:hover { box-shadow: inset 0 0 0 2px var(--gold); color: var(--gold); transform: translateY(-2px); }
}

.btn--gold { background: transparent; color: var(--gold); box-shadow: inset 0 0 0 2px var(--gold); }
@media (hover: hover) {
  .btn--gold:hover { background: var(--gold); color: var(--on-gold); transform: translateY(-2px); }
}

.btn--full { width: 100%; }
.btn__icon { width: 18px; height: 18px; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; inset: 0 0 auto 0; height: var(--nav-height); z-index: 100;
  display: flex; align-items: center;
  transition: background-color var(--duration-base) var(--ease-out), box-shadow var(--duration-base) var(--ease-out);
}
.nav--scrolled {
  background: var(--bg-a92);
  backdrop-filter: saturate(1.3) blur(12px);
  -webkit-backdrop-filter: saturate(1.3) blur(12px);
  box-shadow: 0 1px 0 var(--line);
}
.nav__inner {
  max-width: var(--max-width); margin: 0 auto; width: 100%; padding: 0 var(--space-6);
  display: flex; align-items: center; justify-content: space-between;
}
.nav__wordmark {
  font-family: var(--font-display); font-weight: 800; font-size: var(--text-xl); letter-spacing: -0.01em;
  color: var(--text); display: inline-flex; align-items: baseline; gap: 0.35em;
}
.nav__wordmark b { color: var(--gold); font-weight: 800; }
.nav__wordmark span { color: var(--gold); }
/* logo image variant (drop-in when the real logo file is added) */
.nav__logo { height: 46px; width: auto; display: block; }

.nav__links { display: flex; align-items: center; gap: var(--space-2); }
.nav__link {
  padding: var(--space-2) var(--space-3); font-weight: 600; font-size: var(--text-sm);
  color: var(--text); border-radius: var(--radius-full); min-height: 44px;
  display: inline-flex; align-items: center; transition: color var(--duration-fast) var(--ease-out);
}
.nav__link[aria-current="page"] { color: var(--gold); }
@media (hover: hover) { .nav__link:hover { color: var(--gold); } }

.nav__cta {
  margin-left: var(--space-2); background: var(--gold); color: var(--on-gold);
  padding: var(--space-2) var(--space-5); border-radius: var(--radius-full);
  font-weight: 700; font-size: var(--text-sm); min-height: 44px;
  display: inline-flex; align-items: center;
  transition: background-color var(--duration-fast) var(--ease-out), transform var(--duration-fast) var(--ease-out);
}
@media (hover: hover) { .nav__cta:hover { background: var(--gold-bright); transform: translateY(-1px); } }

.nav__hamburger { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 44px; height: 44px; padding: 10px; }
.nav__hamburger span { display: block; height: 2px; width: 100%; background: var(--text); border-radius: var(--radius-full);
  transition: transform var(--duration-base) var(--ease-out), opacity var(--duration-fast) var(--ease-out); }
.nav__hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 760px) {
  .nav__hamburger { display: flex; }
  .nav__links {
    position: fixed; inset: var(--nav-height) 0 auto 0; flex-direction: column; align-items: stretch; gap: 0;
    background: var(--bg-a92); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    padding: var(--space-4) var(--space-6) var(--space-8);
    box-shadow: 0 20px 30px -18px var(--shadow-lg); border-bottom: 1px solid var(--line);
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: opacity var(--duration-base) var(--ease-out), transform var(--duration-base) var(--ease-out);
  }
  .nav__links.nav--open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav__link { min-height: 52px; border-bottom: 1px solid var(--line-soft); }
  .nav__cta { margin: var(--space-4) 0 0; justify-content: center; min-height: 52px; }
}

/* ============================================================
   IAB BANNER
   ============================================================ */
.iab-banner {
  position: fixed; inset: auto 0 0 0; z-index: 150;
  display: flex; align-items: center; justify-content: center; gap: var(--space-3);
  padding: var(--space-3) var(--space-5);
  background: var(--gold); color: var(--on-gold); font-size: var(--text-sm); font-weight: 600; text-align: center;
}
.iab-close { display: inline-flex; color: var(--on-gold); padding: var(--space-1); opacity: 0.9; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100vh; min-height: 100dvh;
  display: grid; grid-template-columns: 1.05fr 0.95fr; align-items: center;
  gap: clamp(var(--space-8), 5vw, var(--space-20));
  max-width: var(--max-width); margin: 0 auto;
  padding: calc(var(--nav-height) + var(--space-12)) var(--space-6) var(--space-16);
}
.hero__content { position: relative; z-index: 2; }
.hero__headline {
  font-family: var(--font-display); font-weight: 800; font-size: var(--text-6xl);
  line-height: 0.98; letter-spacing: -0.03em; margin: var(--space-5) 0 var(--space-5);
  text-transform: uppercase;
}
.hero__headline .line { display: block; }
.hero__headline .accent { color: var(--gold); }
.hero__sub { font-size: var(--text-lg); color: var(--text-secondary); max-width: 32ch; margin-bottom: var(--space-8); }
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--space-4); }
.hero__note { margin-top: var(--space-6); font-size: var(--text-sm); color: var(--text-secondary); display: inline-flex; align-items: center; gap: var(--space-2); }
.hero__note svg { color: var(--gold); width: 18px; height: 18px; flex-shrink: 0; }

.hero__media { position: relative; z-index: 1; }
.hero__photo {
  position: relative; border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: 0 40px 80px -30px var(--shadow-lg); aspect-ratio: 4 / 5; background: var(--surface);
}
.hero__photo img { width: 100%; height: 100%; object-fit: cover; }
.hero__photo::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px var(--line); border-radius: var(--radius-xl); pointer-events: none; }

.hero__pill {
  position: absolute; left: var(--space-5); bottom: var(--space-5);
  background: var(--bg-a92); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: var(--space-4) var(--space-5); box-shadow: 0 16px 30px -16px var(--shadow-lg);
  display: flex; align-items: center; gap: var(--space-4);
}
.hero__pill-num { font-family: var(--font-display); font-weight: 800; font-size: var(--text-3xl); color: var(--gold); line-height: 1; }
.hero__pill-txt { font-size: var(--text-xs); text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-secondary); line-height: 1.3; }

/* hero statement effect: gentle steam wisps (single effect, reduced-motion safe) */
.hero__steam { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 1; }
.hero__steam span {
  position: absolute; bottom: 20%; width: 10px; height: 120px;
  background: linear-gradient(to top, transparent, rgba(246,240,226,0.5));
  filter: blur(9px); border-radius: 50%; opacity: 0; animation: steam 7s var(--ease-in-out) infinite;
}
.hero__steam span:nth-child(1) { left: 30%; animation-delay: 0s; }
.hero__steam span:nth-child(2) { left: 50%; animation-delay: 2.2s; height: 150px; }
.hero__steam span:nth-child(3) { left: 68%; animation-delay: 4s; height: 100px; }
@keyframes steam {
  0%   { transform: translateY(0) scaleX(1); opacity: 0; }
  25%  { opacity: 0.55; }
  100% { transform: translateY(-140px) scaleX(1.6); opacity: 0; }
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; text-align: center; gap: var(--space-10); min-height: auto; padding-top: calc(var(--nav-height) + var(--space-10)); }
  .hero__content { order: 2; }
  .hero__media { order: 1; max-width: 460px; margin: 0 auto; width: 100%; }
  .hero__sub { max-width: 40ch; margin-inline: auto; }
  .hero__actions { justify-content: center; }
  .hero__note { justify-content: center; }
  .hero__photo { aspect-ratio: 16 / 12; }
}

/* ============================================================
   BADGE ROW — flyer-style bordered strip
   ============================================================ */
.badges { background: var(--bg-alt); border-block: 1px solid var(--line); }
.badges__inner {
  max-width: var(--max-width); margin: 0 auto; padding: var(--space-8) var(--space-6);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-6);
}
.badge { display: flex; align-items: center; gap: var(--space-3); justify-content: center; text-align: left; }
.badge:not(:last-child) { border-right: 1px solid var(--line-soft); }
.badge__icon {
  width: 42px; height: 42px; flex-shrink: 0; display: grid; place-items: center;
  border-radius: var(--radius-full); border: 1.5px solid var(--gold); color: var(--gold);
}
.badge__icon svg { width: 22px; height: 22px; }
.badge__label { font-weight: 700; font-size: var(--text-sm); line-height: 1.25; color: var(--text); }
@media (max-width: 760px) {
  .badges__inner { grid-template-columns: repeat(2, 1fr); gap: var(--space-5); }
  .badge:nth-child(2) { border-right: none; }
}
@media (max-width: 380px) { .badges__inner { grid-template-columns: 1fr; } .badge { border-right: none !important; } }

/* ============================================================
   PLANS
   ============================================================ */
.plans__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-6); align-items: stretch; }
.plan {
  position: relative; background: var(--surface); border-radius: var(--radius-lg);
  padding: var(--space-10) var(--space-8) var(--space-8);
  box-shadow: 0 24px 44px -30px var(--shadow-lg); border: 1px solid var(--line-soft);
  display: flex; flex-direction: column;
  transition: transform var(--duration-base) var(--ease-out), box-shadow var(--duration-base) var(--ease-out), border-color var(--duration-base) var(--ease-out);
}
@media (hover: hover) { .plan:hover { transform: translateY(-6px); border-color: var(--line); box-shadow: 0 32px 54px -28px var(--shadow-lg); } }
.plan--featured { border-color: var(--gold); box-shadow: 0 30px 60px -26px var(--gold-a40); }
.plan__badge {
  position: absolute; top: calc(-1 * var(--space-3)); left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--on-gold); font-size: var(--text-xs); font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.1em; padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full); white-space: nowrap;
}
.plan__count { font-family: var(--font-body); font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; font-size: var(--text-sm); color: var(--gold); }
.plan__price {
  font-family: var(--font-display); font-weight: 800; font-size: var(--price-num);
  line-height: 0.9; letter-spacing: -0.04em; color: var(--text);
  margin: var(--space-3) 0 var(--space-1); display: flex; align-items: flex-start; gap: 0.05em;
}
.plan__price sup { font-size: 0.32em; margin-top: 0.55em; color: var(--gold); font-weight: 800; }
.plan__unit { color: var(--text-secondary); font-weight: 600; font-size: var(--text-base); margin-bottom: var(--space-6); }
.plan__list { display: flex; flex-direction: column; gap: var(--space-3); margin-bottom: var(--space-8); flex: 1; }
.plan__item { display: flex; align-items: flex-start; gap: var(--space-3); font-size: var(--text-base); color: var(--text); }
.plan__item svg { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }

/* featured = the 10-meal, glowing gold outline; custom = solid gold card */
.plan--custom { background: linear-gradient(160deg, var(--gold), var(--gold-deep)); color: var(--on-gold); border-color: var(--gold-deep); }
.plan--custom .plan__count { color: var(--on-gold); opacity: 0.8; }
.plan--custom .plan__price { color: var(--on-gold); font-size: var(--text-5xl); align-items: baseline; }
.plan--custom .plan__unit { color: rgba(20, 15, 6, 0.7); }
.plan--custom .plan__item { color: var(--on-gold); }
.plan--custom .plan__item svg { color: var(--on-gold); }
.plan--custom .btn--gold { background: var(--on-gold); color: var(--gold); box-shadow: none; }
@media (hover: hover) { .plan--custom .btn--gold:hover { background: #000; color: var(--gold-bright); } }

@media (max-width: 900px) { .plans__grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; } }

/* ============================================================
   MENU SNAPSHOT (home)
   ============================================================ */
.snapshot__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-5); }
.dish {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; background: var(--surface);
  border: 1px solid var(--line-soft); box-shadow: 0 18px 36px -26px var(--shadow-lg);
}
.dish .img-frame { aspect-ratio: 1 / 1; overflow: hidden; }
.dish img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--duration-slow) var(--ease-out); }
@media (hover: hover) { .dish:hover img { transform: scale(1.05); } }
.dish__label {
  position: absolute; inset: auto 0 0 0; padding: var(--space-8) var(--space-4) var(--space-4);
  background: linear-gradient(to top, rgba(6, 5, 3, 0.9), transparent);
  color: var(--text); font-family: var(--font-display); font-weight: 700; font-size: var(--text-lg);
}
@media (max-width: 760px) { .snapshot__grid { grid-template-columns: repeat(2, 1fr); } }
.snapshot__cta { text-align: center; margin-top: var(--space-12); }

/* ============================================================
   CLOSER
   ============================================================ */
.closer { background: #060503; border-top: 1px solid var(--line); text-align: center; }
.closer__inner { max-width: 860px; margin: 0 auto; padding: clamp(var(--space-20), 12vw, var(--space-32)) var(--space-6); }
.closer__line { font-family: var(--font-display); font-weight: 800; font-size: var(--text-5xl); line-height: 1.05; letter-spacing: -0.02em; text-transform: uppercase; }
.closer__line em { font-style: normal; color: var(--gold); }
.closer__sub { color: var(--text-secondary); font-size: var(--text-lg); margin: var(--space-5) 0 var(--space-8); }

/* ============================================================
   CUSTOM ORDERS — flyer-style callout band
   ============================================================ */
.custom { padding: clamp(var(--space-16), 9vw, var(--space-24)) var(--space-6); background: var(--bg-alt); }
.custom__card {
  max-width: 820px; margin: 0 auto; text-align: center;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(var(--space-8), 5vw, var(--space-16)) clamp(var(--space-6), 4vw, var(--space-12));
  box-shadow: 0 30px 60px -40px var(--shadow-lg);
}
.custom__icon {
  width: 56px; height: 56px; margin: 0 auto var(--space-5); display: grid; place-items: center;
  border-radius: var(--radius-full); border: 1.5px solid var(--gold); color: var(--gold);
}
.custom__icon svg { width: 28px; height: 28px; }
.custom__title { font-family: var(--font-display); font-weight: 800; font-size: var(--text-4xl); letter-spacing: -0.02em; line-height: 1.05; text-transform: uppercase; }
.custom__sub { color: var(--text-secondary); font-size: var(--text-lg); margin: var(--space-4) auto var(--space-8); max-width: 52ch; }
.custom__points { display: flex; flex-wrap: wrap; justify-content: center; gap: var(--space-4) var(--space-8); margin-bottom: var(--space-8); }
.custom__point { display: inline-flex; align-items: center; gap: var(--space-3); font-weight: 600; color: var(--text); }
.custom__point svg { width: 22px; height: 22px; color: var(--gold); flex-shrink: 0; }
@media (max-width: 520px) {
  .custom__points { flex-direction: column; align-items: flex-start; max-width: 320px; margin-inline: auto; }
}

/* ============================================================
   MENU PAGE
   ============================================================ */
.page-hero { padding: calc(var(--nav-height) + var(--space-16)) var(--space-6) var(--space-12); text-align: center; max-width: 760px; margin: 0 auto; }
.page-hero__title { font-family: var(--font-display); font-weight: 800; font-size: var(--text-6xl); line-height: 1; letter-spacing: -0.03em; margin: var(--space-4) 0 var(--space-4); text-transform: uppercase; }
.page-hero__sub { color: var(--text-secondary); font-size: var(--text-lg); }

.menu-cat { padding: var(--space-12) var(--space-6); max-width: var(--max-width); margin: 0 auto; }
.menu-cat__layout { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(var(--space-8), 5vw, var(--space-16)); align-items: start; }
.menu-cat:nth-child(even) .menu-cat__media { order: 2; }
.menu-cat__media { position: sticky; top: calc(var(--nav-height) + var(--space-6)); }
.menu-cat__photo { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4 / 3; box-shadow: 0 24px 44px -30px var(--shadow-lg); border: 1px solid var(--line-soft); background: var(--surface); }
.menu-cat__photo img { width: 100%; height: 100%; object-fit: cover; }
.menu-cat__title { font-family: var(--font-display); font-weight: 800; font-size: var(--text-4xl); letter-spacing: -0.02em; margin: var(--space-3) 0 var(--space-6); text-transform: uppercase; }

.menu-list { display: flex; flex-direction: column; }
.menu-item { display: flex; align-items: baseline; gap: var(--space-3); padding: var(--space-4) 0; border-bottom: 1px solid var(--line-soft); }
.menu-item__name { font-family: var(--font-display); font-weight: 600; font-size: var(--text-xl); color: var(--text); }
.menu-item__dots { flex: 1; border-bottom: 2px dotted var(--gold-a40); transform: translateY(-4px); }
.menu-item__tag { font-size: var(--text-xs); font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); white-space: nowrap; }
.menu-note { margin-top: var(--space-6); padding: var(--space-4) var(--space-5); background: var(--gold-a08); border-left: 3px solid var(--gold); border-radius: var(--radius-sm); font-size: var(--text-sm); color: var(--text-secondary); }
.menu-note strong { color: var(--gold); }

@media (max-width: 820px) {
  .menu-cat__layout { grid-template-columns: 1fr; gap: var(--space-8); }
  .menu-cat:nth-child(even) .menu-cat__media { order: 0; }
  .menu-cat__media { position: static; max-width: 460px; }
}

/* ============================================================
   ORDER / CONTACT PAGE
   ============================================================ */
.order-layout {
  max-width: var(--max-width); margin: 0 auto;
  padding: calc(var(--nav-height) + var(--space-12)) var(--space-6) var(--space-20);
  display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(var(--space-8), 5vw, var(--space-16)); align-items: start;
}
.order-aside__title { font-family: var(--font-display); font-weight: 800; font-size: var(--text-5xl); line-height: 1.02; letter-spacing: -0.02em; margin: var(--space-4) 0 var(--space-4); text-transform: uppercase; }
.order-aside__sub { color: var(--text-secondary); font-size: var(--text-lg); margin-bottom: var(--space-8); }
.order-aside__photo { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4 / 3; margin-bottom: var(--space-8); box-shadow: 0 24px 44px -30px var(--shadow-lg); border: 1px solid var(--line-soft); background: var(--surface); }
.order-aside__photo img { width: 100%; height: 100%; object-fit: cover; }

.contact-methods { display: flex; flex-direction: column; gap: var(--space-3); }
.contact-method {
  display: flex; align-items: center; gap: var(--space-4); padding: var(--space-4) var(--space-5);
  background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius-md);
  transition: transform var(--duration-fast) var(--ease-out), border-color var(--duration-fast) var(--ease-out); min-height: 52px;
}
@media (hover: hover) { .contact-method:hover { transform: translateY(-2px); border-color: var(--gold); } }
.contact-method__icon { width: 40px; height: 40px; flex-shrink: 0; display: grid; place-items: center; border-radius: var(--radius-full); background: var(--gold-a15); color: var(--gold); }
.contact-method__icon svg { width: 20px; height: 20px; }
.contact-method__label { font-size: var(--text-xs); text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-secondary); }
.contact-method__value { font-weight: 700; font-size: var(--text-base); color: var(--text); }

.order-form { background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius-lg); padding: clamp(var(--space-6), 4vw, var(--space-10)); box-shadow: 0 24px 48px -32px var(--shadow-lg); }
.form-group { margin-bottom: var(--space-5); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); }
.form-group label { display: block; font-weight: 700; font-size: var(--text-sm); margin-bottom: var(--space-2); color: var(--text); }
.label-optional { color: var(--text-a45); font-weight: 500; }
.form-legend { font-family: var(--font-display); font-weight: 700; font-size: var(--text-lg); color: var(--gold); margin: var(--space-8) 0 var(--space-4); padding-top: var(--space-6); border-top: 1px solid var(--line-soft); }
.form-legend:first-of-type { border-top: none; padding-top: 0; margin-top: 0; }

input, select, textarea {
  width: 100%; font-family: var(--font-body); font-size: 16px; color: var(--text);
  background: var(--bg); border: 1px solid var(--line-soft); border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-4); min-height: 52px;
  transition: border-color var(--duration-fast) var(--ease-out), box-shadow var(--duration-fast) var(--ease-out);
}
textarea { min-height: 120px; resize: vertical; line-height: 1.6; }
input::placeholder, textarea::placeholder { color: var(--text-a45); }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-a15); }
select { appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M4 6l4 4 4-4' stroke='%23E8A62C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right var(--space-4) center; padding-right: var(--space-10); }

.chip-grid { display: flex; flex-wrap: wrap; gap: var(--space-2); }
.chip { position: relative; display: inline-flex; }
.chip input { position: absolute; opacity: 0; width: 1px; height: 1px; min-height: 0; }
.chip span {
  display: inline-flex; align-items: center; min-height: 44px; padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full); border: 1px solid var(--line-soft); background: var(--surface-2);
  font-size: var(--text-sm); font-weight: 600; color: var(--text);
  transition: all var(--duration-fast) var(--ease-out); -webkit-tap-highlight-color: transparent;
}
@media (hover: hover) { .chip span:hover { border-color: var(--gold); } }
.chip input:checked + span { background: var(--gold); color: var(--on-gold); border-color: var(--gold); }
.chip input:focus-visible + span { outline: 3px solid var(--gold); outline-offset: 2px; }

.form-status { margin-top: var(--space-4); padding: var(--space-3) var(--space-4); border-radius: var(--radius-md); font-size: var(--text-sm); font-weight: 600; display: none; }
.form-status.is-success { display: block; background: var(--success-bg); color: var(--success); }
.form-status.is-error   { display: block; background: var(--error-bg); color: var(--error); }

@media (max-width: 900px) { .order-layout { grid-template-columns: 1fr; } .order-aside { max-width: 560px; } }
@media (max-width: 520px) { .form-row { grid-template-columns: 1fr; } }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #060503; border-top: 1px solid var(--line); color: var(--text); }
.footer__inner { max-width: var(--max-width); margin: 0 auto; padding: var(--space-16) var(--space-6) var(--space-12); display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: var(--space-10); }
.footer__brand-name { font-family: var(--font-display); font-weight: 800; font-size: var(--text-2xl); }
.footer__brand-name b, .footer__brand-name span { color: var(--gold); }
.footer__tagline { color: var(--text-secondary); margin-top: var(--space-3); max-width: 34ch; }
.footer__col h4 { font-size: var(--text-xs); text-transform: uppercase; letter-spacing: 0.14em; color: var(--gold); margin-bottom: var(--space-4); }
.footer__col a, .footer__col p { display: block; color: var(--text-a70); font-size: var(--text-sm); padding: var(--space-1) 0; }
@media (hover: hover) { .footer__col a:hover { color: var(--gold); } }
.footer__bottom { border-top: 1px solid var(--line-soft); padding: var(--space-6); text-align: center; font-size: var(--text-xs); color: var(--text-a45); }
@media (max-width: 760px) { .footer__inner { grid-template-columns: 1fr; gap: var(--space-8); } }

/* ============================================================
   STICKY MOBILE ORDER CTA
   ============================================================ */
.sticky-order {
  position: fixed; inset: auto var(--space-4) var(--space-4) var(--space-4); z-index: 90; display: none;
  justify-content: center; align-items: center; background: var(--gold); color: var(--on-gold);
  padding: var(--space-4); border-radius: var(--radius-full); font-weight: 700;
  box-shadow: 0 16px 30px -12px rgba(0,0,0,0.6); min-height: 52px;
}
@media (max-width: 760px) { .sticky-order { display: flex; } }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity var(--duration-slow) var(--ease-out), transform var(--duration-slow) var(--ease-out); will-change: opacity, transform; }
.reveal--right { transform: translateX(28px); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .hero__steam { display: none; }
}
