/* ==========================================================================
   SOCIAL PIZZA — site styles
   Vintage neighborhood social club meets modern artisan pizzeria.
   Mobile-first. No frameworks.
   ========================================================================== */

/* ---------- 1. Tokens ---------- */
:root {
  /* Brand foundation (from the logo) */
  --social-red: #6B150F;
  --social-gold: #BB9100;
  --social-black: #000000;

  /* Derived shades */
  --red-deep: #4E0F0B;
  --red-darker: #2B0806;
  --gold-light: #D9B23A;   /* small gold text on red/black — passes AA */
  --gold-pale: #E9CF7A;
  --cream: #F5ECDA;
  --parchment: #EADBBE;
  --charcoal: #121010;
  --ink: #1A1210;

  /* Type */
  --font-display: "Cormorant Garamond", "Cormorant", Garamond, "Times New Roman", serif;
  --font-body: "Manrope", "Helvetica Neue", Arial, sans-serif;

  --fs-eyebrow: 0.75rem;
  --fs-body: clamp(1rem, 0.96rem + 0.2vw, 1.0625rem);
  --fs-lede: clamp(1.0625rem, 1rem + 0.35vw, 1.25rem);
  --fs-h1: clamp(2.75rem, 1.6rem + 5.6vw, 6.25rem);
  --fs-h2: clamp(2.25rem, 1.5rem + 3.4vw, 4.25rem);
  --fs-h3: clamp(1.5rem, 1.3rem + 0.8vw, 1.875rem);

  /* Layout */
  --container: 1200px;
  --gutter: clamp(16px, 4vw, 40px);
  --section-pad: clamp(72px, 9vw, 136px);
  --header-h: 76px;
  --radius: 2px;

  --ease: cubic-bezier(.2, .7, .2, 1);

  /* Grain texture (inline SVG noise — no extra request) */
  --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .6 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Section themes: each sets colors its children read from */
.theme-red   { --bg: var(--social-red); --fg: var(--cream); --heading: var(--social-gold); --accent: var(--gold-light); --muted: rgba(245,236,218,.82); --rule: rgba(187,145,0,.55); --focus: var(--gold-pale); }
.theme-black { --bg: var(--charcoal);   --fg: var(--cream); --heading: var(--social-gold); --accent: var(--gold-light); --muted: rgba(245,236,218,.74); --rule: rgba(187,145,0,.45); --focus: var(--gold-pale); }
.theme-cream { --bg: var(--cream);      --fg: var(--ink);   --heading: var(--social-red);  --accent: var(--social-red); --muted: #4A3A34;               --rule: rgba(107,21,15,.35); --focus: var(--social-red); }
.theme-gold  { --bg: var(--social-gold);--fg: var(--social-black); --heading: var(--social-black); --accent: var(--red-darker); --muted: #1E1507; --rule: rgba(0,0,0,.45); --focus: var(--social-black); }

/* ---------- 2. Base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-padding-top: calc(var(--header-h) + 12px);
}
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--cream);
  background: var(--social-black);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
@supports (overflow: clip) { body { overflow-x: clip; } }

img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; font-weight: 600; }
address { font-style: normal; }

:focus-visible {
  outline: 3px solid var(--focus, var(--gold-pale));
  outline-offset: 3px;
  border-radius: 1px;
}

.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: 16px; top: -100px; z-index: 200;
  padding: 12px 18px;
  background: var(--social-gold); color: var(--social-black);
  font-weight: 700; text-decoration: none;
}
.skip-link:focus { top: 12px; }

.icon { width: 1.25em; height: 1.25em; flex: none; }

.container {
  width: 100%;
  max-width: calc(var(--container) + var(--gutter) * 2);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  position: relative;
  padding-block: var(--section-pad);
  background: var(--bg);
  color: var(--fg);
  isolation: isolate;
}

/* Grain layer sits behind content */
.grain::before {
  content: "";
  position: absolute; inset: 0;
  z-index: -1;
  background-image: var(--grain);
  opacity: .22;
  mix-blend-mode: multiply;
  pointer-events: none;
}
.theme-cream.grain::before { opacity: .12; }
.hero.grain::before, .page-hero.grain::before { opacity: .1; }

/* ---------- 3. Typography ---------- */
.display {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .015em;
  line-height: .95;
  color: var(--heading);
}
.h2 { font-size: var(--fs-h2); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  margin: 0 0 20px;
  font-family: var(--font-body);
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--accent);
}
.eyebrow::before, .eyebrow::after {
  content: ""; width: 28px; height: 1px; background: currentColor; opacity: .7;
}
.eyebrow--left::after { display: none; }

.lede { font-size: var(--fs-lede); color: var(--muted); max-width: 38rem; }

.ornament-divider {
  width: 200px; height: 20px; margin: 22px auto 0;
  color: var(--social-gold);
}

/* ---------- 4. Buttons ---------- */
.btn {
  --btn-bg: transparent; --btn-fg: var(--cream); --btn-bd: var(--social-gold); --btn-shadow: transparent;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 50px;
  padding: 12px 26px;
  font-family: var(--font-body);
  font-size: .8125rem;
  font-weight: 800;
  letter-spacing: .16em;
  line-height: 1.2;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  color: var(--btn-fg);
  background: var(--btn-bg);
  border: 2px solid var(--btn-bd);
  border-radius: var(--radius);
  box-shadow: 4px 4px 0 var(--btn-shadow);
  cursor: pointer;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background-color .2s var(--ease), color .2s var(--ease);
}
.btn .icon { width: 18px; height: 18px; }
.btn:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--btn-shadow); }
.btn:active { transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--btn-shadow); }

/* Primary: gold with a black keyline + offset "print" shadow, like the logo's outlined gold */
.btn--primary { --btn-bg: var(--social-gold); --btn-fg: var(--social-black); --btn-bd: var(--social-black); --btn-shadow: var(--social-black); }
.btn--primary:hover { --btn-bg: #C99E0A; }

/* Secondary: transparent with gold border */
.btn--ghost { --btn-fg: var(--cream); --btn-bd: var(--social-gold); }
.btn--ghost:hover { --btn-bg: rgba(187,145,0,.14); box-shadow: none; }
.theme-cream .btn--ghost { --btn-fg: var(--social-red); --btn-bd: var(--social-red); }
.theme-cream .btn--ghost:hover { --btn-bg: rgba(107,21,15,.07); }

/* Dark: for gold & cream backgrounds */
.btn--dark { --btn-bg: var(--social-black); --btn-fg: var(--gold-pale); --btn-bd: var(--social-black); --btn-shadow: var(--social-red); }
.btn--red { --btn-bg: var(--social-red); --btn-fg: var(--cream); --btn-bd: var(--social-black); --btn-shadow: var(--social-black); }
.btn--red:hover { --btn-bg: #7d1a12; }

.btn--sm { min-height: 44px; padding: 8px 16px; font-size: .75rem; letter-spacing: .14em; box-shadow: 3px 3px 0 var(--btn-shadow); }

.btn-row { display: flex; flex-wrap: wrap; gap: 16px 18px; }

.text-link {
  display: inline-flex; align-items: center; gap: 8px;
  min-height: 44px;
  font-size: .8125rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase;
  text-decoration: none; color: var(--accent);
  border-bottom: 1px solid transparent;
}
.text-link .icon { width: 16px; height: 16px; transition: transform .2s var(--ease); }
.text-link:hover .icon { transform: translateX(4px); }
.text-link:hover span:not(.sr-only) { text-decoration: underline; text-underline-offset: 5px; text-decoration-thickness: 1px; }

/* ---------- 5. Live hours status pill ---------- */
.status {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: .75rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase;
  white-space: nowrap;
}
.status__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: currentColor; opacity: .6; flex: none;
}
.status[data-state="open"] .status__dot { background: #6BD68A; opacity: 1; box-shadow: 0 0 0 3px rgba(107,214,138,.22); }
.status[data-state="closed"] .status__dot { background: #E58A7A; opacity: 1; }
@media (prefers-reduced-motion: no-preference) {
  .status[data-state="open"] .status__dot { animation: pulse 2.4s ease-in-out infinite; }
}
@keyframes pulse { 50% { box-shadow: 0 0 0 6px rgba(107,214,138,0); } }

.status--pill {
  padding: 9px 16px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  color: var(--fg);
}
.theme-cream .status[data-state="open"] .status__dot { background: #1F7A3A; box-shadow: 0 0 0 3px rgba(31,122,58,.18); }
.theme-cream .status[data-state="closed"] .status__dot { background: var(--social-red); }

/* ---------- 6. Utility bar ---------- */
.utility-bar {
  background: var(--social-black);
  color: var(--gold-light);
  font-size: .6875rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  border-bottom: 1px solid rgba(187,145,0,.35);
}
.utility-bar__inner {
  display: flex; align-items: center; justify-content: center; gap: 20px;
  min-height: 40px;
}
.utility-bar p { margin: 0; }
.utility-bar .sep { margin-inline: .6em; opacity: .7; }
.utility-bar__right { display: none; align-items: center; gap: 22px; }
.utility-bar__right .status { color: var(--cream); font-size: .6875rem; }
.utility-bar__link {
  display: inline-flex; align-items: center; gap: 6px; min-height: 40px;
  text-decoration: none; color: var(--gold-light);
}
.utility-bar__link:hover { color: var(--gold-pale); text-decoration: underline; text-underline-offset: 4px; }
.utility-bar__link .icon { width: 14px; height: 14px; }
@media (min-width: 760px) {
  .utility-bar__inner { justify-content: space-between; }
  .utility-bar__right { display: flex; }
}

/* ---------- 7. Header / Navigation ---------- */
.site-header {
  --focus: var(--gold-pale);
  position: sticky; top: 0; z-index: 100;
  background: var(--social-red);
  border-bottom: 1px solid rgba(187,145,0,.4);
  transition: box-shadow .3s var(--ease), background-color .3s var(--ease);
}
.site-header.is-scrolled { box-shadow: 0 10px 30px -12px rgba(0,0,0,.7); }
.site-header::after { /* thin second keyline, like a double rule */
  content: ""; position: absolute; left: 0; right: 0; bottom: -4px; height: 1px;
  background: rgba(187,145,0,.25); pointer-events: none;
}

.site-header__inner {
  display: flex; align-items: center; gap: 12px;
  min-height: var(--header-h);
}

.brand {
  display: inline-flex; align-items: center; gap: 12px;
  margin-right: auto;
  text-decoration: none; color: var(--cream);
  min-height: 44px;
}
.brand img {
  width: 54px; height: 54px;
  outline: 1px solid rgba(187,145,0,.55); outline-offset: 3px;
}
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  white-space: nowrap;
  font-family: var(--font-display); font-weight: 700; font-size: 1.125rem;
  letter-spacing: .08em; text-transform: uppercase; color: var(--social-gold);
}
.brand__sub {
  margin-top: 5px;
  font-size: .625rem; font-weight: 700; letter-spacing: .3em; text-transform: uppercase; color: var(--cream); opacity: .85;
}

.nav-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; padding: 0;
  color: var(--social-gold);
  background: transparent;
  border: 1px solid rgba(187,145,0,.6);
  border-radius: var(--radius);
  cursor: pointer;
}
.nav-toggle .icon { width: 24px; height: 24px; }
.nav-toggle .icon--close { display: none; }
.nav-toggle[aria-expanded="true"] .icon--open { display: none; }
.nav-toggle[aria-expanded="true"] .icon--close { display: block; }

.header-order { order: 0; }
.header-order .label-long { display: none; }

/* Mobile nav panel */
.site-nav {
  position: absolute; left: 0; right: 0; top: 100%;
  background: var(--red-deep);
  border-bottom: 1px solid rgba(187,145,0,.45);
  box-shadow: 0 24px 40px -20px rgba(0,0,0,.8);
  visibility: hidden; opacity: 0; transform: translateY(-8px);
  transition: opacity .25s var(--ease), transform .25s var(--ease), visibility 0s linear .25s;
}
.site-nav.is-open {
  visibility: visible; opacity: 1; transform: none;
  transition: opacity .25s var(--ease), transform .25s var(--ease), visibility 0s;
}
.site-nav ul { padding: 8px var(--gutter) 20px; }
.site-nav a {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 60px;
  font-family: var(--font-display); font-size: 1.75rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  text-decoration: none; color: var(--cream);
  border-bottom: 1px solid rgba(187,145,0,.25);
}
.site-nav a[aria-current="page"] { color: var(--social-gold); }
.site-nav a .icon { width: 20px; height: 20px; color: var(--social-gold); }

@media (max-width: 419px) {
  .brand { gap: 10px; }
  .brand img { width: 46px; height: 46px; }
  .brand__name { font-size: 1rem; letter-spacing: .05em; }
  .brand__sub { letter-spacing: .22em; }
}
@media (min-width: 420px) {
  .brand__name { font-size: 1.375rem; }
  .header-order .label-long { display: inline; }
  .header-order .label-short { display: none; }
}

@media (min-width: 900px) {
  :root { --header-h: 88px; }
  .nav-toggle { display: none; }
  .brand img { width: 60px; height: 60px; }
  .brand__name { font-size: 1.625rem; }
  .site-nav {
    position: static; order: 0;
    visibility: visible; opacity: 1; transform: none;
    background: none; border: 0; box-shadow: none;
    transition: none;
  }
  .site-nav ul { display: flex; gap: 8px; padding: 0; margin-right: 18px; }
  .site-nav a {
    min-height: 44px; padding: 0 14px;
    font-family: var(--font-body); font-size: .8125rem; font-weight: 800; letter-spacing: .22em;
    border: 0; position: relative;
  }
  .site-nav a .icon { display: none; }
  .site-nav a::after {
    content: ""; position: absolute; left: 14px; right: 14px; bottom: 6px; height: 1px;
    background: var(--social-gold);
    transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease);
  }
  .site-nav a:hover::after, .site-nav a[aria-current="page"]::after { transform: scaleX(1); }
  .site-nav a[aria-current="page"] { color: var(--gold-light); }
  .header-order { order: 1; }
}

/* ---------- 8. Framing ornaments ---------- */
.frame { position: relative; }
.frame__corner {
  position: absolute; width: 44px; height: 44px; color: var(--social-gold); pointer-events: none;
}
.frame__corner--tl { top: 0; left: 0; }
.frame__corner--tr { top: 0; right: 0; transform: scaleX(-1); }
.frame__corner--bl { bottom: 0; left: 0; transform: scaleY(-1); }
.frame__corner--br { bottom: 0; right: 0; transform: scale(-1, -1); }
@media (min-width: 768px) { .frame__corner { width: 60px; height: 60px; } }

/* ---------- 9. Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding-block: clamp(32px, 7vw, 96px) clamp(56px, 8vw, 110px);
  /* Flat brand red where the logo sits (the logo file's own background is this red),
     with a vignette pushed out to the edges for depth. */
  background: var(--social-red);
  color: var(--cream);
  text-align: center;
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background: radial-gradient(ellipse at 50% 45%, transparent 55%, rgba(20,4,2,.55) 100%);
  pointer-events: none;
}
.hero__frame {
  position: absolute; inset: 12px; z-index: -1;
  border: 1px solid rgba(187,145,0,.55);
  pointer-events: none;
}
.hero__frame::before {
  content: ""; position: absolute; inset: 6px; border: 1px solid rgba(187,145,0,.25);
}
.hero__side {
  display: none;
  position: absolute; top: 50%; z-index: -1;
  width: 64px; height: 360px; margin-top: -180px;
  color: var(--social-gold); opacity: .55;
}
.hero__side--left { left: clamp(28px, 3vw, 56px); }
.hero__side--right { right: clamp(28px, 3vw, 56px); transform: scaleX(-1); }
.hero__vert {
  display: none;
  position: absolute; top: 50%; z-index: -1;
  font-size: .6875rem; font-weight: 700; letter-spacing: .4em; text-transform: uppercase;
  color: var(--gold-light); opacity: .85;
  writing-mode: vertical-rl;
}
.hero__vert--left { left: clamp(100px, 8vw, 136px); transform: translateY(-50%) rotate(180deg); }
.hero__vert--right { right: clamp(100px, 8vw, 136px); transform: translateY(-50%); }

.hero__inner { position: relative; display: grid; justify-items: center; gap: 0; }

.hero__badge {
  position: relative;
  width: min(54vw, 220px);
  aspect-ratio: 1;
  margin: 0 auto 20px;
}
.hero__logo {
  position: absolute; inset: 11%;
  width: 78%; height: 78%;
}
/* Fade only the empty red corners of the square logo file so it sits seamlessly
   on textured backgrounds. The ornamental frame (max ~0.54 × width from center)
   is fully inside the opaque zone, so no logo artwork is altered. */
.logo-blend {
  -webkit-mask-image: radial-gradient(circle at center, #000 80%, transparent 96%);
          mask-image: radial-gradient(circle at center, #000 80%, transparent 96%);
}
.hero__ring {
  position: absolute; inset: 0; width: 100%; height: 100%;
  color: var(--gold-light);
  overflow: visible;
}
.hero__ring text {
  font-family: var(--font-body); font-size: 8.4px; font-weight: 700; letter-spacing: 2px;
  fill: currentColor; text-transform: uppercase;
}
.hero__ring circle { fill: none; stroke: var(--social-gold); stroke-width: .6; }
@media (prefers-reduced-motion: no-preference) {
  .hero__ring-text { transform-origin: 100px 100px; animation: spin 90s linear infinite; }
}
@keyframes spin { to { transform: rotate(360deg); } }

.hero__title {
  font-size: var(--fs-h1);
  line-height: .9;
  color: var(--cream);
  text-shadow: 0 2px 0 rgba(0,0,0,.35);
}
.hero__title .line { display: block; }
.hero__title .gold { color: var(--social-gold); font-style: italic; font-weight: 600; letter-spacing: .01em; }

.hero__lede { margin: 20px auto 0; max-width: 34rem; color: rgba(245,236,218,.88); font-size: var(--fs-lede); }

.hero__meta {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 26px;
  margin: 26px 0 0;
  font-size: .75rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold-light);
}
.hero__meta li { display: inline-flex; align-items: center; gap: 8px; }
.hero__meta a { text-decoration: none; min-height: 32px; display: inline-flex; align-items: center; gap: 8px; }
.hero__meta a:hover { text-decoration: underline; text-underline-offset: 4px; }
.hero__meta .icon { width: 16px; height: 16px; }

.hero .btn-row { justify-content: center; margin-top: 32px; }
.hero__status { margin-top: 22px; color: var(--cream); }

@media (min-width: 1000px) {
  .hero { text-align: left; padding-block: 88px 100px; }
  .hero__inner {
    grid-template-columns: minmax(280px, 400px) minmax(0, 1fr);
    align-items: center; justify-items: start;
    column-gap: clamp(40px, 5vw, 88px);
  }
  .hero__badge { grid-row: 1 / span 6; align-self: center; width: 100%; margin: 0; }
  .hero__title { font-size: clamp(3.25rem, 5.4vw, 6.25rem); }
  .hero__lede { margin-left: 0; }
  .hero__meta, .hero .btn-row { justify-content: flex-start; }
  .hero .eyebrow::after { display: none; }
}
/* Decorative side fragments only where there's room for them */
@media (min-width: 1320px) {
  .hero__side, .hero__vert { display: block; }
  .hero__inner { padding-inline: clamp(72px, 7vw, 128px); }
}

/* ---------- 10. Intro / brand statement ---------- */
.intro__grid { display: grid; gap: 36px; }
.intro__title { font-size: var(--fs-h2); }
.intro__body { font-size: var(--fs-lede); color: var(--muted); }
.intro__body p { max-width: 36rem; }
.intro__body .btn { margin-top: 12px; }
.intro__mark {
  display: flex; align-items: center; gap: 18px; margin-top: clamp(40px, 5vw, 64px);
  color: var(--social-red);
  font-size: .6875rem; font-weight: 800; letter-spacing: .3em; text-transform: uppercase;
}
.intro__mark::before, .intro__mark::after { content: ""; height: 1px; flex: 1; background: var(--rule); }
.intro__mark--inline::after { display: none; }
.intro__rule { width: 72px; height: 3px; margin: 26px 0 0; border-top: 1px solid var(--social-gold); border-bottom: 1px solid var(--social-gold); }

@media (min-width: 900px) {
  .intro__grid { grid-template-columns: 1.05fr 1fr; gap: clamp(48px, 7vw, 110px); align-items: end; }
}

/* ---------- 11. Featured pizzas — vintage printed menu ---------- */
.menu {
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(107,21,15,.55), transparent 70%),
    var(--charcoal);
}
.menu__head { text-align: center; margin-bottom: clamp(40px, 5vw, 64px); }
.menu__head .lede { margin: 20px auto 0; text-align: center; }

.menu-board {
  position: relative;
  padding: clamp(30px, 5vw, 72px) clamp(20px, 5vw, 72px);
  border: 1px solid rgba(187,145,0,.6);
  outline: 1px solid rgba(187,145,0,.25);
  outline-offset: -9px;
  background: rgba(0,0,0,.25);
}
.menu-board .frame__corner { margin: -1px; }

/* Featured "namesake" pies */
.menu__featured { display: grid; gap: 24px; margin-bottom: clamp(32px, 4vw, 48px); }
.dish {
  position: relative;
  padding-block: 22px;
  border-bottom: 1px solid rgba(187,145,0,.25);
}
.dish__head { display: flex; align-items: baseline; gap: 12px; }
.dish__no {
  flex: none;
  font-family: var(--font-display); font-style: italic; font-size: 1.125rem; font-weight: 600;
  color: var(--gold-light);
  min-width: 2.6em;
}
.dish__name {
  font-family: var(--font-display); font-weight: 700;
  font-size: var(--fs-h3); line-height: 1.05;
  letter-spacing: .03em; text-transform: uppercase;
  color: var(--cream);
}
.dish__variant {
  display: block; margin-top: 4px;
  font-family: var(--font-body); font-size: .6875rem; font-weight: 700; letter-spacing: .2em;
  color: var(--gold-light);
}
.dish__leader {
  flex: 1; min-width: 20px;
  border-bottom: 2px dotted rgba(187,145,0,.55);
  transform: translateY(-6px);
}
.dish__price {
  flex: none;
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 700;
  color: var(--social-gold);
}
.dish__desc { margin: 10px 0 0; color: var(--muted); font-size: .9688rem; max-width: 40rem; }
.dish__foot { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 18px; margin-top: 12px; }
.dish__foot .text-link { color: var(--gold-light); }

.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px;
  font-size: .625rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid rgba(187,145,0,.55);
  border-radius: 999px;
}
.badge::before { content: ""; width: 5px; height: 5px; background: currentColor; transform: rotate(45deg); }
.badge--veg { color: #BFD9A3; border-color: rgba(191,217,163,.5); }

/* Large featured blocks */
.dish--feature {
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid rgba(187,145,0,.45);
  background: linear-gradient(180deg, rgba(107,21,15,.55), rgba(78,15,11,.35));
}
.dish--feature .dish__name { font-size: clamp(2rem, 1.5rem + 2vw, 2.875rem); color: var(--social-gold); }
.dish--feature .dish__desc { font-size: 1rem; color: rgba(245,236,218,.86); }
.dish--feature .dish__head { flex-direction: column; align-items: flex-start; gap: 6px; }
.dish--feature .dish__leader { display: none; }
.dish--feature .dish__price {
  display: inline-flex; align-items: center; gap: 12px; margin-top: 4px; font-size: 1.75rem; color: var(--gold-pale);
}
.dish--feature .dish__price::before { content: ""; width: 36px; height: 1px; background: var(--social-gold); }

.menu__list { display: grid; column-gap: clamp(40px, 6vw, 88px); }

.menu__notes {
  display: grid; gap: 22px; margin-top: clamp(32px, 4vw, 48px);
  text-align: center;
}
.menu__notes p { margin: 0 auto; max-width: 44rem; font-size: .875rem; color: var(--muted); }
.menu__notes .note-strong { font-family: var(--font-display); font-style: italic; font-size: 1.25rem; color: var(--cream); }
.menu__notes .btn-row { justify-content: center; }

@media (min-width: 820px) {
  .menu__featured { grid-template-columns: 1fr 1fr; gap: 28px; }
  .menu__list { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 479px) {
  .dish__head { flex-wrap: wrap; }
  .dish__leader { display: none; }
  .dish__price { width: 100%; padding-left: 0; font-size: 1.375rem; }
  .dish__no { min-width: 0; }
}

/* ---------- 12. Build your own ---------- */
.byo {
  overflow: hidden;
  background:
    radial-gradient(ellipse 50% 70% at 0% 50%, rgba(0,0,0,.28), transparent 70%),
    var(--social-red);
}
.byo__grid { display: grid; gap: 44px; align-items: center; }
.byo__arc { width: min(100%, 340px); height: auto; color: var(--gold-light); margin: 0 0 6px -8px; }
.byo__arc text { font-family: var(--font-body); font-size: 15px; font-weight: 800; letter-spacing: 4px; fill: currentColor; }
.byo__title { font-size: clamp(3rem, 2rem + 5vw, 6rem); color: var(--social-gold); }
.byo__copy { margin-top: 22px; }
.byo__price {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 6px 16px;
  margin: 28px 0 0; padding: 18px 0;
  border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
}
.byo__price-label { font-size: .75rem; font-weight: 800; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-light); }
.byo__price-value { font-family: var(--font-display); font-size: 2.5rem; font-weight: 700; line-height: 1; color: var(--cream); }
.byo__price-note { width: 100%; font-size: .9375rem; color: var(--muted); }
.byo .btn-row { margin-top: 30px; }

/* The "order ticket" card */
.ticket {
  position: relative;
  padding: clamp(28px, 4vw, 44px) clamp(20px, 4vw, 44px);
  background: var(--cream);
  color: var(--ink);
  box-shadow: 10px 10px 0 var(--social-black);
  border: 1px solid var(--social-black);
}
.ticket::before { /* inner keyline */
  content: ""; position: absolute; inset: 8px; border: 1px solid rgba(107,21,15,.35); pointer-events: none;
}
.ticket .frame__corner { color: var(--social-red); width: 36px; height: 36px; margin: 8px; }
.ticket__title {
  font-family: var(--font-display); font-size: clamp(1.75rem, 1.4rem + 1.2vw, 2.25rem); font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em; text-align: center; color: var(--social-red); line-height: 1;
}
.ticket__sub { text-align: center; margin: 10px 0 0; font-size: .75rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: #5b4a42; }
.ticket__group { margin-top: 26px; }
.ticket__group h4 {
  display: flex; align-items: center; gap: 12px; margin-bottom: 10px;
  font-size: .6875rem; font-weight: 800; letter-spacing: .26em; text-transform: uppercase; color: var(--social-red);
}
.ticket__group h4::after { content: ""; flex: 1; height: 1px; background: rgba(107,21,15,.3); }
.ticket__list { display: grid; gap: 2px 28px; }
.ticket__list li { display: flex; align-items: baseline; gap: 8px; font-size: .9375rem; line-height: 1.5; padding-block: 3px; }
.ticket__list li::after { content: ""; order: 1; flex: 1; border-bottom: 1px dotted rgba(26,18,16,.35); transform: translateY(-4px); min-width: 12px; }
.ticket__list .p { order: 2; font-weight: 700; font-variant-numeric: tabular-nums; color: var(--social-red); }
.ticket { container-type: inline-size; }
@container (min-width: 500px) { .ticket__list--2 { grid-template-columns: 1fr 1fr; } }

@media (min-width: 960px) {
  .byo__grid { grid-template-columns: 1fr 1.1fr; gap: clamp(48px, 6vw, 96px); }
}

/* ---------- 13. Social / good vibes ---------- */
.vibes {
  overflow: hidden;
  text-align: center;
  background:
    radial-gradient(ellipse 60% 60% at 50% 100%, rgba(107,21,15,.5), transparent 70%),
    var(--social-black);
}
.marquee {
  display: flex; overflow: hidden;
  margin-bottom: clamp(48px, 7vw, 88px);
  border-top: 1px solid rgba(187,145,0,.4); border-bottom: 1px solid rgba(187,145,0,.4);
  padding-block: 14px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.marquee__track {
  display: flex; flex: none; gap: 40px; padding-right: 40px;
  font-family: var(--font-display); font-weight: 600; text-transform: uppercase; letter-spacing: .06em;
  font-size: clamp(1.75rem, 1.2rem + 2.4vw, 3.25rem); line-height: 1.1;
  color: transparent;
  -webkit-text-stroke: 1px var(--social-gold);
  white-space: nowrap;
}
.marquee__track span:nth-child(3n+2) { color: var(--social-gold); -webkit-text-stroke: 0; font-style: italic; }
@media (prefers-reduced-motion: no-preference) {
  .marquee__track { animation: marquee 40s linear infinite; }
}
@keyframes marquee { to { transform: translateX(-100%); } }

.vibes__title { font-size: clamp(2.75rem, 1.4rem + 6vw, 7rem); color: var(--cream); line-height: .9; }
.vibes__title em { color: var(--social-gold); font-style: italic; }
.vibes .lede { margin: 26px auto 0; }
.vibes .btn-row { justify-content: center; margin-top: 36px; }

/* ---------- 14. Location / hours ---------- */
.visit__card {
  position: relative;
  padding: clamp(36px, 5vw, 72px) clamp(20px, 5vw, 64px);
  border: 1px solid var(--social-red);
  outline: 1px solid rgba(107,21,15,.3); outline-offset: -9px;
  background: #FBF5E8;
  text-align: center;
}
.visit__card .frame__corner { color: var(--social-red); margin: 10px; }
.visit__title { font-size: var(--fs-h2); }
.visit__cols { display: grid; gap: 30px; margin-top: 40px; }
.visit__col h3 {
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 14px;
  font-size: .75rem; font-weight: 800; letter-spacing: .26em; text-transform: uppercase; color: var(--social-red);
}
.visit__col h3 .icon { width: 18px; height: 18px; }
.visit__big {
  font-family: var(--font-display); font-size: clamp(1.625rem, 1.3rem + 1vw, 2.125rem); font-weight: 600; line-height: 1.15; color: var(--ink);
}
.visit__big a { text-decoration: none; }
.visit__big a:hover { text-decoration: underline; text-underline-offset: 5px; text-decoration-thickness: 1px; }
.visit__col .status { margin-top: 14px; color: var(--ink); }
.visit__card .btn-row { justify-content: center; margin-top: 40px; }

@media (min-width: 860px) {
  .visit__cols { grid-template-columns: repeat(3, 1fr); gap: 0; }
  .visit__col { padding-inline: 20px; }
  .visit__col + .visit__col { border-left: 1px solid rgba(107,21,15,.25); }
}

/* ---------- 15. Final CTA ---------- */
.final { text-align: center; overflow: hidden; }
.final__title { font-size: clamp(2.5rem, 1.4rem + 5vw, 5.75rem); line-height: .92; }
.final .lede { margin: 22px auto 0; color: var(--muted); }
.final .btn-row { justify-content: center; margin-top: 34px; }
.final .ornament-divider { color: var(--social-black); opacity: .8; margin-bottom: 26px; margin-top: 0; }

/* ---------- 16. Footer ---------- */
.site-footer {
  --focus: var(--gold-pale);
  background: var(--social-black);
  color: rgba(245,236,218,.8);
  padding: clamp(56px, 7vw, 88px) 0 28px;
  border-top: 3px double rgba(187,145,0,.6);
  font-size: .9375rem;
}
.footer__grid { display: grid; gap: 40px; }
.footer__brand img { width: 120px; height: 120px; outline: 1px solid rgba(187,145,0,.55); outline-offset: 5px; }
.footer__name { margin-top: 22px; font-family: var(--font-display); font-size: 1.75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--social-gold); }
.footer__h { margin-bottom: 14px; font-size: .6875rem; font-weight: 800; letter-spacing: .26em; text-transform: uppercase; color: var(--gold-light); }
.site-footer address p { margin: 0; }
.site-footer a { text-decoration: none; }
.site-footer a:hover { color: var(--gold-pale); text-decoration: underline; text-underline-offset: 4px; }
.footer__links li a, .footer__contact a { display: inline-flex; align-items: center; min-height: 44px; }
.footer__social { display: flex; gap: 12px; margin-top: 8px; }
.social-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px;
  color: var(--social-gold);
  border: 1px solid rgba(187,145,0,.55);
  border-radius: 50%;
  transition: background-color .2s var(--ease), color .2s var(--ease), transform .2s var(--ease);
}
.social-icon .icon { width: 20px; height: 20px; }
.social-icon:hover { background: var(--social-gold); color: var(--social-black); transform: translateY(-2px); text-decoration: none !important; }
.footer__bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px 24px;
  margin-top: 56px; padding-top: 24px;
  border-top: 1px solid rgba(187,145,0,.25);
  font-size: .75rem; letter-spacing: .08em; color: rgba(245,236,218,.62);
}
.footer__bottom p { margin: 0; }
.footer__tag { font-weight: 700; letter-spacing: .26em; text-transform: uppercase; color: var(--gold-light); }

@media (min-width: 700px) { .footer__grid { grid-template-columns: 1.2fr 1fr 1fr; } }
@media (min-width: 1000px) { .footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }

/* ---------- 17. Mobile sticky order bar ---------- */
.mobile-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: flex; gap: 10px;
  padding: 10px var(--gutter) calc(10px + env(safe-area-inset-bottom));
  background: rgba(20, 6, 4, .94);
  border-top: 1px solid rgba(187,145,0,.5);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  transform: translateY(110%);
  transition: transform .35s var(--ease);
}
.mobile-cta.is-visible { transform: none; }
.mobile-cta .btn { flex: 1; box-shadow: none; }
.mobile-cta .btn--ghost { flex: 0 0 auto; padding-inline: 16px; }
@media (max-width: 899px) { .site-footer { padding-bottom: 96px; } }
@media (min-width: 900px) { .mobile-cta { display: none; } }

/* ---------- 18. Contact page ---------- */
.page-hero {
  position: relative; overflow: hidden; isolation: isolate;
  padding-block: clamp(56px, 8vw, 112px);
  background: var(--social-red);
}
.page-hero::after {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background: radial-gradient(ellipse at 50% 50%, transparent 55%, rgba(20,4,2,.5) 100%);
  pointer-events: none;
}
.page-hero__grid { display: grid; gap: 36px; align-items: center; }
.page-hero__title { font-size: var(--fs-h1); color: var(--cream); line-height: .9; }
.page-hero__title em { color: var(--social-gold); font-style: italic; }
.page-hero .lede { margin-top: 24px; color: rgba(245,236,218,.88); }
.page-hero .status { margin-top: 26px; }
.page-hero__logo { width: min(64vw, 300px); aspect-ratio: 1; justify-self: center; }
.page-hero__logo img { width: 100%; height: 100%; }
@media (min-width: 900px) {
  .page-hero__grid { grid-template-columns: 1.4fr 1fr; gap: 64px; }
  .page-hero__logo { width: min(100%, 360px); }
}

.info-cards { display: grid; gap: 22px; }
.info-card {
  position: relative;
  display: flex; flex-direction: column; align-items: flex-start;
  padding: 40px 30px 34px;
  background: #FBF5E8;
  border: 1px solid rgba(107,21,15,.55);
  outline: 1px solid rgba(107,21,15,.2); outline-offset: -8px;
}
.info-card .frame__corner { color: var(--social-red); width: 34px; height: 34px; margin: 7px; }
.info-card__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; margin-bottom: 20px;
  border-radius: 50%; color: var(--social-gold); background: var(--social-red);
  box-shadow: 0 0 0 1px var(--social-red), 0 0 0 4px #FBF5E8, 0 0 0 5px rgba(107,21,15,.4);
}
.info-card__icon .icon { width: 22px; height: 22px; }
.info-card h2 {
  font-size: .75rem; font-weight: 800; letter-spacing: .3em; text-transform: uppercase; color: var(--social-red); margin-bottom: 10px;
}
.info-card__big {
  font-family: var(--font-display); font-weight: 600; font-size: clamp(1.75rem, 1.4rem + 1vw, 2.25rem); line-height: 1.12; color: var(--ink);
  margin-bottom: 22px;
}
.info-card__big a { text-decoration: none; }
.info-card__big a:hover { text-decoration: underline; text-underline-offset: 5px; text-decoration-thickness: 1px; }
.info-card .status { color: var(--ink); margin-top: auto; }
.info-card .btn { margin-top: auto; }
@media (min-width: 900px) { .info-cards { grid-template-columns: repeat(3, 1fr); } }

.questions__grid { display: grid; gap: 32px; align-items: end; }
.questions__title { font-size: var(--fs-h2); }
.questions__title .line { display: block; }
.questions__title em { color: var(--cream); font-style: italic; }
.questions__body { color: var(--muted); font-size: var(--fs-lede); }
.questions__body .btn-row { margin-top: 28px; }
@media (min-width: 900px) { .questions__grid { grid-template-columns: 1fr 1fr; gap: 80px; } }

.map__grid { display: grid; gap: 28px; }
.map__frame {
  position: relative;
  padding: 10px;
  border: 1px solid var(--social-gold);
  background: var(--social-black);
  box-shadow: 10px 10px 0 var(--social-black);
}
.map__frame iframe {
  display: block; width: 100%; height: clamp(320px, 50vw, 480px); border: 0;
  filter: sepia(.2) saturate(.9) contrast(1.02);
}
.map__card {
  position: relative;
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(32px, 4vw, 48px) clamp(24px, 3vw, 40px);
  border: 1px solid rgba(187,145,0,.6);
  outline: 1px solid rgba(187,145,0,.25); outline-offset: -8px;
}
.map__card .frame__corner { width: 36px; height: 36px; margin: 7px; }
.map__card h2 { font-size: clamp(2rem, 1.5rem + 2vw, 3rem); }
.map__card address { margin-top: 18px; font-family: var(--font-display); font-size: 1.625rem; line-height: 1.2; color: var(--cream); }
.map__card .btn-row { margin-top: 28px; }
@media (min-width: 900px) { .map__grid { grid-template-columns: 1.6fr 1fr; gap: 40px; } }

.follow { text-align: center; }
.follow__title { font-size: var(--fs-h2); }
.follow .lede { margin: 20px auto 0; }
.follow .btn-row { justify-content: center; margin-top: 32px; }

/* ---------- 19. Reveal on scroll ---------- */
@media (prefers-reduced-motion: no-preference) {
  .js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
  .js .reveal.is-visible { opacity: 1; transform: none; }
  .js .reveal-delay-1 { transition-delay: .1s; }
  .js .reveal-delay-2 { transition-delay: .2s; }
}

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

/* Very small screens (320px) */
@media (max-width: 359px) {
  .brand__text { display: none; }
  .btn { padding-inline: 18px; letter-spacing: .12em; }
  .eyebrow { letter-spacing: .18em; }
  .eyebrow::before, .eyebrow::after { display: none; }
  .utility-bar { font-size: .625rem; letter-spacing: .14em; }
}
