/* =========================================================
   Wilbo Burgers Brats & Beers — Theme Styles
   Single source of truth, shared across all pages.
   Built for WordPress; works in static preview too.
   ========================================================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img { max-width: 100%; height: auto; display: block; }
button { font: inherit; border: none; background: none; cursor: pointer; color: inherit; }
a { color: inherit; text-decoration: none; }

:root {
  --paper:#F4EBD7; --paper-soft:#FAF3E2; --paper-dark:#E8DBBE;
  --ink:#1A100A; --ink-soft:#3E2C1F; --ink-mute:#6B5640;
  --red:#B43525; --red-deep:#8C2517;
  --mustard:#E5A41C; --mustard-deep:#C68712;
  --cream-on-dark:#F4EBD7;
  --night:#14100C; --night-soft:#1F1812;
  --font-display:'Anton','Impact',sans-serif;
  --font-script:'Caveat',cursive;
  --font-serif:'DM Serif Display','Georgia',serif;
  --font-body:'Manrope',system-ui,-apple-system,sans-serif;
  --container:1240px; --gutter:clamp(20px,4vw,40px);
}

body {
  font-family: var(--font-body);
  color: var(--ink); background: var(--paper);
  font-size: 17px; line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body::before {
  content:''; position:fixed; inset:0; pointer-events:none; z-index:1;
  background-image:
    radial-gradient(rgba(60,40,20,0.045) 1px, transparent 1px),
    radial-gradient(rgba(60,40,20,0.025) 1px, transparent 1px);
  background-size: 3px 3px, 7px 7px;
  background-position: 0 0, 1px 2px;
  opacity: 0.5; mix-blend-mode: multiply;
}
main { position: relative; z-index: 2; }
.container {
  width: 100%; max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter); padding-right: var(--gutter);
}

.skip-link {
  position: absolute; top: -100px; left: 8px;
  background: var(--ink); color: var(--mustard);
  padding: 10px 14px; z-index: 1000; border-radius: 2px;
  font-weight: 700; letter-spacing: 0.08em; font-size: 13px; text-transform: uppercase;
  transition: top 180ms ease;
}
.skip-link:focus { top: 8px; }

/* =========================================================
   TYPOGRAPHY — All line-heights set generously so wrapping
   never causes ascenders/descenders to clip.
   ========================================================= */

.eyebrow {
  font-family: var(--font-body); font-weight: 700;
  font-size: 13px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--red);
  display: inline-flex; align-items: center; gap: 10px;
  line-height: 1.3;
}
.eyebrow::before { content:''; width:28px; height:2px; background: var(--red); display:inline-block; flex-shrink: 0; }
.eyebrow.on-dark { color: var(--mustard); }
.eyebrow.on-dark::before { background: var(--mustard); }
.eyebrow.centered { justify-content: center; }
.eyebrow.centered::after { content:''; width:28px; height:2px; background: var(--red); display:inline-block; flex-shrink: 0; }
.eyebrow.centered.on-dark::after { background: var(--mustard); }

.h-display {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(2.6rem, 6.5vw, 6rem);
  line-height: 1.0;           /* was 0.92 — now safe for wraps */
  letter-spacing: 0.01em; text-transform: uppercase;
  color: var(--ink);
}

.h-section {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(2rem, 4.6vw, 4rem);
  line-height: 1.08;          /* was 0.96 — now safe for multi-line */
  letter-spacing: 0.005em; text-transform: uppercase;
}
.h-section em {
  font-family: var(--font-serif);
  font-style: italic; font-weight: 400;
  text-transform: none;
  letter-spacing: -0.01em;
  line-height: 1.05;
}

.h-page {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(2.6rem, 6.5vw, 5.5rem);
  line-height: 1.02;
  letter-spacing: 0.01em; text-transform: uppercase;
}
.h-page em {
  font-family: var(--font-serif); font-style: italic;
  text-transform: none; letter-spacing: -0.01em;
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 28px;
  font-family: var(--font-body); font-weight: 700;
  font-size: 14px; letter-spacing: 0.14em; text-transform: uppercase;
  border-radius: 4px;
  line-height: 1.2;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
  white-space: nowrap;
}
.btn-primary { background: var(--red); color: var(--paper-soft); box-shadow: 0 4px 0 var(--red-deep), 0 8px 24px rgba(140, 37, 23, 0.25); }
.btn-primary:hover { transform: translateY(2px); box-shadow: 0 2px 0 var(--red-deep), 0 4px 12px rgba(140, 37, 23, 0.3); background: var(--red-deep); }
.btn-ghost-light { background: transparent; color: var(--cream-on-dark); border: 2px solid var(--cream-on-dark); }
.btn-ghost-light:hover { background: var(--cream-on-dark); color: var(--night); }
.btn-ghost-dark { background: transparent; color: var(--ink); border: 2px solid var(--ink); }
.btn-ghost-dark:hover { background: var(--ink); color: var(--paper-soft); }
.btn-mustard { background: var(--mustard); color: var(--ink); box-shadow: 0 4px 0 var(--mustard-deep), 0 8px 20px rgba(198, 135, 18, 0.25); }
.btn-mustard:hover { transform: translateY(2px); box-shadow: 0 2px 0 var(--mustard-deep), 0 4px 10px rgba(198, 135, 18, 0.3); }
.btn-large { padding: 20px 38px; font-size: 16px; }

/* =========================================================
   SITE HEADER
   ========================================================= */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(20, 16, 12, 0.96);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  color: var(--cream-on-dark);
  border-bottom: 1px solid rgba(229, 164, 28, 0.15);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; padding-bottom: 16px; gap: 24px; }
.brand { display: flex; align-items: baseline; gap: 10px; flex-shrink: 0; }
.brand-mark {
  font-family: var(--font-display);
  font-size: 28px; letter-spacing: 0.03em;
  color: var(--cream-on-dark); line-height: 1;
}
.brand-mark .accent { color: var(--mustard); }
.brand-tag {
  font-family: var(--font-script); font-size: 18px;
  color: var(--mustard);
  transform: rotate(-4deg);
  display: inline-block;
  line-height: 1.2;
}

.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  font-weight: 600; font-size: 14px;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--cream-on-dark);
  position: relative; padding: 4px 0;
  transition: color 180ms ease;
  line-height: 1.4;
}
.nav-links a::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--mustard);
  transform: scaleX(0); transform-origin: left;
  transition: transform 220ms ease;
}
.nav-links a:hover, .nav-links .current-menu-item a, .nav-links a.active { color: var(--mustard); }
.nav-links a:hover::after, .nav-links .current-menu-item a::after, .nav-links a.active::after { transform: scaleX(1); }

.header-cta { display: flex; align-items: center; gap: 14px; }
.header-phone {
  font-family: var(--font-display); font-size: 22px;
  letter-spacing: 0.04em; color: var(--mustard);
  display: flex; align-items: center; gap: 8px;
  line-height: 1;
}
.header-phone svg { width: 18px; height: 18px; stroke: var(--mustard); }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .header-phone .phone-label { display: none; }
}
@media (max-width: 640px) {
  .header-cta .btn { padding: 12px 16px; font-size: 12px; }
  .brand-tag { display: none; }
}

/* =========================================================
   HERO — CENTERED (was 2-column with aside)
   Everything in the hero is now centered. Hours/address
   info lives in Visit section, footer, and a small meta
   strip below CTAs.
   ========================================================= */
.hero {
  position: relative;
  min-height: 88vh;
  background: var(--night); color: var(--cream-on-dark);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 100px; padding-bottom: 80px;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg::before {
  content: ''; position: absolute; inset: 0;
  background-size: cover;
  background-position: center 40%;
  /* hero image set inline per-page */
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(20,16,12,0.85) 0%, rgba(20,16,12,0.55) 40%, rgba(20,16,12,0.92) 100%),
    radial-gradient(ellipse at 50% 100%, rgba(20,16,12,0.7), transparent 70%);
}

.hero .container { position: relative; z-index: 2; }

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
}

.hero-eyebrow {
  font-family: var(--font-body); font-weight: 700;
  font-size: 13px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--mustard);
  margin-bottom: 28px;
  display: inline-flex; align-items: center; gap: 14px;
  line-height: 1.3;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: ''; width: 40px; height: 2px; background: var(--mustard); flex-shrink: 0;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 7rem);
  line-height: 1.0;            /* was 0.88 — was overlapping */
  letter-spacing: 0.01em; text-transform: uppercase;
  color: var(--paper-soft);
  text-align: center;
  margin-bottom: 0;
}
.hero-title .line-1,
.hero-title .line-2 { display: block; }
.hero-title .city {
  display: block;
  font-family: var(--font-script); font-weight: 700;
  color: var(--mustard);
  text-transform: none;
  font-size: 0.65em;
  letter-spacing: 0;
  line-height: 1.0;
  transform: rotate(-2deg);
  padding-top: 0.1em;          /* breathing room below "Main Street" */
}

.hero-lede {
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.6;
  max-width: 620px;
  color: rgba(244, 235, 215, 0.85);
  margin: 32px auto 36px;
}

.hero-cta-row {
  display: flex; flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  align-items: center;
}

.hero-meta {
  margin-top: 38px;
  display: flex; justify-content: center; align-items: center; gap: 16px;
  flex-wrap: wrap;
  font-family: var(--font-body); font-size: 12px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(244, 235, 215, 0.55);
  line-height: 1.6;
}
.hero-meta .dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(229, 164, 28, 0.6);
}
.hero-meta strong { color: var(--mustard); font-weight: 700; }

/* Smaller hero variant for inner pages */
.hero.hero-page {
  min-height: 56vh;
  padding-top: 120px;
  padding-bottom: 90px;
}
.hero.hero-page .hero-title { font-size: clamp(2.4rem, 6vw, 5.5rem); }

/* =========================================================
   MARQUEE
   ========================================================= */
.marquee {
  background: var(--ink); color: var(--paper-soft);
  padding: 18px 0; overflow: hidden;
  border-top: 4px solid var(--mustard);
  border-bottom: 4px solid var(--mustard);
}
.marquee-track {
  display: flex; gap: 56px; white-space: nowrap;
  animation: marquee 38s linear infinite;
  font-family: var(--font-display); font-size: 22px;
  letter-spacing: 0.06em; text-transform: uppercase;
  line-height: 1.2;
}
.marquee-track > span { display: inline-flex; align-items: center; gap: 56px; }
.marquee-track .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--mustard); display: inline-block; flex-shrink: 0; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* =========================================================
   SECTIONS
   ========================================================= */
.section { padding: clamp(70px, 9vw, 120px) 0; }
.section-tight { padding: clamp(50px, 7vw, 90px) 0; }

/* STORY (home) */
.story-grid { display: grid; grid-template-columns: 1fr; gap: 60px; align-items: center; }
@media (min-width: 900px) { .story-grid { grid-template-columns: 1fr 1.05fr; gap: 80px; } }
.story-images { position: relative; aspect-ratio: 4/5; max-height: 620px; }
.story-img-main, .story-img-accent {
  position: absolute; border-radius: 4px;
  box-shadow: 0 24px 40px -16px rgba(20, 16, 12, 0.25);
  overflow: hidden;
}
.story-img-main { inset: 0 30% 20% 0; z-index: 1; }
.story-img-accent { inset: 30% 0 0 35%; z-index: 2; border: 8px solid var(--paper); }
.story-img-main img, .story-img-accent img { width: 100%; height: 100%; object-fit: cover; }
.story-sticker {
  position: absolute; top: 8%; right: -6%;
  width: 130px; height: 130px;
  border-radius: 50%;
  background: var(--mustard); color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  font-family: var(--font-script); font-weight: 700;
  font-size: 22px; line-height: 1.1; padding: 14px;
  transform: rotate(12deg);
  box-shadow: 0 12px 28px -10px rgba(20, 16, 12, 0.4);
  z-index: 3;
}
.story-sticker::before { content: ''; position: absolute; inset: 8px; border: 2px dashed var(--ink); border-radius: 50%; opacity: 0.4; }
.story-content .eyebrow { margin-bottom: 22px; }
.story-content h2 { margin-bottom: 30px; }
.story-content p { font-size: 18px; line-height: 1.7; margin-bottom: 20px; color: var(--ink-soft); }
.story-content p:last-of-type { margin-bottom: 32px; }
.story-content strong { color: var(--ink); font-weight: 700; }

/* WAY (home + about) */
.way-section { background: var(--paper-soft); border-top: 1px solid var(--paper-dark); border-bottom: 1px solid var(--paper-dark); }
.way-header { text-align: center; max-width: 760px; margin: 0 auto 70px; }
.way-header .eyebrow { margin-bottom: 20px; }
.way-header h2 { margin-bottom: 20px; }
.way-header p { font-size: 18px; color: var(--ink-soft); line-height: 1.65; }
.way-grid { display: grid; grid-template-columns: 1fr; gap: 36px; }
@media (min-width: 780px) { .way-grid { grid-template-columns: repeat(3, 1fr); } }
.way-item { padding: 36px 32px; background: var(--paper); border-radius: 4px; border: 1px solid var(--paper-dark); transition: transform 220ms ease, box-shadow 220ms ease; }
.way-item:hover { transform: translateY(-4px); box-shadow: 0 18px 36px -16px rgba(20, 16, 12, 0.18); }
.way-num {
  font-family: var(--font-display); font-size: 64px;
  line-height: 1; color: var(--red);
  margin-bottom: 18px;
  display: flex; align-items: baseline; gap: 6px;
}
.way-num .slash { color: var(--paper-dark); font-size: 0.5em; }
.way-item h3 {
  font-family: var(--font-display); font-size: 26px;
  letter-spacing: 0.02em; text-transform: uppercase;
  margin-bottom: 14px; color: var(--ink);
  line-height: 1.1;
}
.way-item p { color: var(--ink-soft); font-size: 16px; line-height: 1.65; }

/* MENU CARD GRID (home featured + menu page) */
.menu-section { background: var(--night); color: var(--paper-soft); position: relative; overflow: hidden; }
.menu-section::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image:
    radial-gradient(circle at 20% 10%, rgba(229, 164, 28, 0.07), transparent 50%),
    radial-gradient(circle at 85% 80%, rgba(180, 53, 37, 0.1), transparent 50%);
}
.menu-section .container { position: relative; z-index: 1; }
.menu-header { display: flex; flex-direction: column; align-items: flex-start; margin-bottom: 60px; gap: 24px; }
@media (min-width: 800px) { .menu-header { flex-direction: row; align-items: flex-end; justify-content: space-between; } }
.menu-header.centered { align-items: center; text-align: center; }
.menu-header-text { max-width: 640px; }
.menu-header h2 { color: var(--paper-soft); margin-bottom: 18px; }
.menu-header h2 em { color: var(--mustard); }
.menu-header p { color: rgba(244, 235, 215, 0.75); font-size: 17px; line-height: 1.65; max-width: 520px; }

.menu-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 640px) { .menu-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .menu-grid { grid-template-columns: repeat(3, 1fr); } }

.menu-card { background: var(--night-soft); border: 1px solid rgba(229, 164, 28, 0.12); border-radius: 4px; overflow: hidden; display: flex; flex-direction: column; transition: transform 240ms ease, border-color 240ms ease; }
.menu-card:hover { transform: translateY(-6px); border-color: rgba(229, 164, 28, 0.35); }
.menu-card-img { aspect-ratio: 4/3; background-color: var(--ink); position: relative; overflow: hidden; }
.menu-card-img img { width: 100%; height: 100%; object-fit: cover; }
.menu-card-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(20,16,12,0.5) 100%); }
.menu-card-price {
  position: absolute; bottom: 14px; right: 14px;
  background: var(--mustard); color: var(--ink);
  font-family: var(--font-display); font-size: 22px;
  padding: 8px 14px; border-radius: 4px;
  letter-spacing: 0.04em;
  line-height: 1.1;
  z-index: 1;
  box-shadow: 0 4px 10px rgba(20, 16, 12, 0.3);
}
.menu-card-body { padding: 24px 26px 28px; flex: 1; display: flex; flex-direction: column; }
.menu-card h3 {
  font-family: var(--font-display); font-size: 26px;
  letter-spacing: 0.025em; text-transform: uppercase;
  color: var(--paper-soft); margin-bottom: 10px;
  line-height: 1.1;
}
.menu-card p { font-size: 14.5px; line-height: 1.55; color: rgba(244, 235, 215, 0.68); flex: 1; }
.menu-card .tag { display: inline-block; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--mustard); margin-top: 14px; font-weight: 700; line-height: 1.4; }

.menu-cta-row { margin-top: 60px; display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 24px; }
.menu-cta-row .note { color: rgba(244, 235, 215, 0.5); font-family: var(--font-script); font-size: 22px; transform: rotate(-3deg); display: inline-block; line-height: 1.2; }

/* BRATS (home) */
.brats-band { position: relative; background: var(--paper); }
.brats-grid { display: grid; grid-template-columns: 1fr; gap: 60px; align-items: center; }
@media (min-width: 900px) { .brats-grid { grid-template-columns: 1fr 1fr; gap: 80px; } }
.brats-image { aspect-ratio: 5/4; border-radius: 4px; position: relative; overflow: hidden; box-shadow: 0 24px 40px -16px rgba(20, 16, 12, 0.3); }
.brats-image img { width: 100%; height: 100%; object-fit: cover; }
.brats-image .badge {
  position: absolute; top: -20px; left: -20px;
  background: var(--red); color: var(--paper-soft);
  font-family: var(--font-display); font-size: 18px;
  letter-spacing: 0.06em; padding: 12px 20px;
  text-transform: uppercase;
  transform: rotate(-3deg);
  box-shadow: 0 6px 14px rgba(20, 16, 12, 0.25);
  z-index: 2;
  line-height: 1.2;
}
.brats-content .eyebrow { margin-bottom: 20px; }
.brats-content h2 { margin-bottom: 24px; }
.brats-content h2 em { color: var(--red); }
.brats-content .lede { font-size: 18px; color: var(--ink-soft); line-height: 1.7; margin-bottom: 32px; }
.brats-list { list-style: none; border-top: 1px solid var(--paper-dark); margin-bottom: 36px; }
.brats-list li {
  display: grid; grid-template-columns: 1fr auto;
  align-items: baseline; gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--paper-dark);
}
.brats-list .name {
  font-family: var(--font-display); font-size: 20px;
  letter-spacing: 0.02em; text-transform: uppercase;
  color: var(--ink);
  line-height: 1.2;
}
.brats-list .desc { display: block; font-family: var(--font-body); font-size: 14px; font-weight: 400; letter-spacing: 0; text-transform: none; color: var(--ink-mute); margin-top: 4px; line-height: 1.5; }
.brats-list .price {
  font-family: var(--font-display); font-size: 22px; color: var(--red);
  line-height: 1.2;
}

/* BEYOND (home) */
.beyond-section { background: var(--paper-soft); border-top: 1px solid var(--paper-dark); border-bottom: 1px solid var(--paper-dark); }
.beyond-header { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.beyond-header .eyebrow { margin-bottom: 20px; }
.beyond-header h2 { margin-bottom: 18px; }
.beyond-header h2 em { color: var(--red); }
.beyond-header p { font-size: 17px; color: var(--ink-soft); line-height: 1.65; }
.beyond-grid { display: grid; grid-template-columns: 1fr; gap: 28px; }
@media (min-width: 780px) { .beyond-grid { grid-template-columns: repeat(3, 1fr); } }
.beyond-card { background: var(--paper); border: 1px solid var(--paper-dark); border-radius: 4px; overflow: hidden; display: flex; flex-direction: column; transition: transform 240ms ease, box-shadow 240ms ease; }
.beyond-card:hover { transform: translateY(-4px); box-shadow: 0 18px 36px -16px rgba(20, 16, 12, 0.18); }
.beyond-card-img { aspect-ratio: 4/3; overflow: hidden; position: relative; background: var(--paper-dark); }
.beyond-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms ease; }
.beyond-card:hover .beyond-card-img img { transform: scale(1.04); }
.beyond-card-body { padding: 26px 28px 32px; flex: 1; display: flex; flex-direction: column; }
.beyond-card h3 {
  font-family: var(--font-display); font-size: 26px;
  letter-spacing: 0.02em; text-transform: uppercase;
  color: var(--ink); margin-bottom: 10px;
  line-height: 1.1;
}
.beyond-card p { font-size: 15px; color: var(--ink-soft); line-height: 1.6; flex: 1; }
.beyond-card .pill { display: inline-block; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--red); margin-top: 14px; font-weight: 700; line-height: 1.4; }

/* REVIEWS */
.reviews-section { background: var(--paper); border-top: 1px solid var(--paper-dark); border-bottom: 1px solid var(--paper-dark); }
.reviews-header { text-align: center; margin-bottom: 56px; }
.reviews-header .eyebrow { margin-bottom: 18px; }
.reviews-header h2 em { color: var(--red); }
.reviews-header .stars { display: flex; justify-content: center; gap: 4px; margin-top: 22px; color: var(--mustard); font-size: 22px; letter-spacing: 4px; line-height: 1; }
.reviews-grid { display: grid; grid-template-columns: 1fr; gap: 28px; }
@media (min-width: 800px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }
.review-card { background: var(--paper-soft); border: 1px solid var(--paper-dark); padding: 36px 32px 32px; border-radius: 4px; position: relative; display: flex; flex-direction: column; }
.review-card .quote-mark { font-family: var(--font-serif); font-style: italic; font-size: 86px; line-height: 0.6; color: var(--red); opacity: 0.18; position: absolute; top: 18px; right: 24px; }
.review-stars { color: var(--mustard); font-size: 18px; letter-spacing: 3px; margin-bottom: 18px; line-height: 1; }
.review-card h3 {
  font-family: var(--font-display); font-size: 22px;
  letter-spacing: 0.025em; text-transform: uppercase;
  margin-bottom: 14px; color: var(--ink);
  line-height: 1.15;
}
.review-card blockquote {
  font-family: var(--font-serif); font-style: italic;
  font-size: 17px; line-height: 1.65;
  color: var(--ink-soft); margin-bottom: 22px; flex: 1;
}
.review-author { font-family: var(--font-script); font-size: 24px; color: var(--red); transform: rotate(-2deg); display: inline-block; align-self: flex-start; line-height: 1.2; }

/* LOCATION BAND */
.location-band {
  display: grid; grid-template-columns: 1fr;
  background: var(--night); color: var(--paper-soft);
  position: relative;
}
@media (min-width: 900px) { .location-band { grid-template-columns: 1.05fr 1fr; } }
.location-band-photo { position: relative; min-height: 420px; overflow: hidden; }
.location-band-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center center; position: absolute; inset: 0; }
.location-band-photo::after { content: ''; position: absolute; inset: 0; background: linear-gradient(120deg, transparent 60%, rgba(20,16,12,0.4) 100%); pointer-events: none; }
.location-band-photo .photo-tag {
  position: absolute; top: 24px; left: 24px;
  background: var(--mustard); color: var(--ink);
  font-family: var(--font-body); font-size: 11px;
  font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  padding: 7px 14px; border-radius: 2px;
  z-index: 2; line-height: 1.3;
}
.location-band-content { padding: clamp(50px, 7vw, 90px) clamp(30px, 5vw, 60px); display: flex; flex-direction: column; justify-content: center; position: relative; }
.location-band-content::before { content: ''; position: absolute; top: -50%; right: -20%; width: 80%; height: 200%; background: radial-gradient(ellipse, rgba(229, 164, 28, 0.08), transparent 60%); pointer-events: none; }
.location-band-content > * { position: relative; z-index: 1; }
.location-band-script { font-family: var(--font-script); color: var(--mustard); font-size: 32px; transform: rotate(-3deg); display: inline-block; margin-bottom: 6px; line-height: 1.3; }
.location-band-heading {
  font-family: var(--font-display); text-transform: uppercase;
  line-height: 1.0;
  letter-spacing: 0.02em;
  margin-bottom: 22px;
}
.location-band-heading .loc-number {
  display: block;
  font-size: clamp(72px, 14vw, 180px);
  color: var(--mustard);
  letter-spacing: -0.01em;
  line-height: 1.0;
}
.location-band-heading .loc-street {
  display: block;
  font-size: clamp(36px, 5vw, 64px);
  color: var(--paper-soft);
  line-height: 1.1;
  margin-top: 0.05em;
}
.location-band-content p { font-size: 17px; line-height: 1.7; color: rgba(244, 235, 215, 0.8); max-width: 460px; margin-bottom: 28px; }
.location-band-cta-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* VISIT */
.visit-section { background: var(--night); color: var(--paper-soft); position: relative; overflow: hidden; }
.visit-section::before { content: ''; position: absolute; top: -50%; right: -10%; width: 60%; height: 200%; background: radial-gradient(ellipse, rgba(180, 53, 37, 0.15), transparent 60%); pointer-events: none; }
.visit-grid { display: grid; grid-template-columns: 1fr; gap: 56px; align-items: center; position: relative; z-index: 1; }
@media (min-width: 900px) { .visit-grid { grid-template-columns: 1.15fr 1fr; gap: 80px; } }
.visit-content .eyebrow { margin-bottom: 22px; }
.visit-content h2 { color: var(--paper-soft); margin-bottom: 26px; }
.visit-content h2 em { color: var(--mustard); }
.visit-content .visit-lede { font-size: 18px; line-height: 1.7; color: rgba(244, 235, 215, 0.78); margin-bottom: 38px; max-width: 540px; }
.visit-info { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-bottom: 40px; }
.visit-info-block .label { font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--mustard); margin-bottom: 12px; font-weight: 700; display: block; line-height: 1.4; }
.visit-info-block address {
  font-style: normal; font-family: var(--font-display);
  font-size: 22px; line-height: 1.3;
  color: var(--paper-soft); letter-spacing: 0.02em;
}
.visit-phone { font-family: var(--font-display); font-size: 32px; color: var(--paper-soft); letter-spacing: 0.03em; display: inline-block; line-height: 1.1; }
.visit-phone:hover { color: var(--mustard); }
.visit-cta-row { display: flex; flex-wrap: wrap; gap: 14px; }
.visit-hours-card { background: var(--night-soft); border: 1px solid rgba(229, 164, 28, 0.2); padding: 40px 38px; border-radius: 4px; position: relative; }
.visit-hours-card::before { content: 'open daily'; position: absolute; top: -16px; left: 32px; background: var(--mustard); color: var(--ink); font-family: var(--font-body); font-size: 11px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; padding: 6px 14px; border-radius: 2px; line-height: 1.3; }
.visit-hours-card h3 {
  font-family: var(--font-display); font-size: 30px;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--mustard); margin-bottom: 24px;
  line-height: 1.1;
}
.hours-row { display: flex; justify-content: space-between; align-items: baseline; padding: 14px 0; border-bottom: 1px dashed rgba(229, 164, 28, 0.2); gap: 12px; }
.hours-row:last-of-type { border-bottom: none; }
.hours-row .day { font-weight: 700; letter-spacing: 0.04em; color: var(--paper-soft); font-size: 14px; text-transform: uppercase; line-height: 1.4; }
.hours-row .time { color: rgba(244, 235, 215, 0.75); font-variant-numeric: tabular-nums; font-size: 15px; line-height: 1.4; }
.hours-row.closed .time { color: var(--red); font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; font-size: 13px; }

/* SEO PROSE */
.seo-prose { background: var(--paper); padding: clamp(60px, 8vw, 100px) 0; border-bottom: 1px solid var(--paper-dark); }
.seo-prose .container { max-width: 880px; }
.seo-prose .eyebrow { margin-bottom: 18px; }
.seo-prose h2 { margin-bottom: 28px; }
.seo-prose h2 em { color: var(--red); }
.seo-prose p { font-size: 17.5px; line-height: 1.8; color: var(--ink-soft); margin-bottom: 20px; }
.seo-prose p strong { color: var(--ink); }

/* =========================================================
   MENU PAGE — Menu board with dot-leader pricing
   ========================================================= */
.menu-page-section { padding: clamp(60px, 8vw, 100px) 0; }
.menu-page-section + .menu-page-section { padding-top: 0; }

.menu-board-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px;
}
.menu-board-header .eyebrow { margin-bottom: 18px; justify-content: center; }
.menu-board-header h2 { margin-bottom: 18px; }
.menu-board-header h2 em { color: var(--red); }
.menu-board-header p { font-size: 17px; color: var(--ink-soft); line-height: 1.65; }

.menu-board-section {
  border-top: 3px solid var(--ink);
  padding-top: 28px;
  margin-bottom: 60px;
}
.menu-board-section-head {
  display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}
.menu-board-section-head h3 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  letter-spacing: 0.02em; text-transform: uppercase;
  color: var(--ink);
  line-height: 1.05;
}
.menu-board-section-head h3 em {
  font-family: var(--font-serif); font-style: italic;
  text-transform: none; letter-spacing: -0.01em;
  color: var(--red);
}
.menu-board-section-head .section-note {
  font-family: var(--font-script);
  font-size: 22px;
  color: var(--red);
  transform: rotate(-2deg);
  display: inline-block;
  line-height: 1.3;
}

.menu-item-list { list-style: none; }
.menu-item-list li {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px dashed var(--paper-dark);
}
.menu-item-list li:last-child { border-bottom: none; }
.menu-item-list .item-head {
  display: flex; flex-wrap: wrap; align-items: baseline;
  gap: 10px;
}
.menu-item-list .item-name {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  letter-spacing: 0.02em; text-transform: uppercase;
  color: var(--ink);
  line-height: 1.2;
}
.menu-item-list .item-tag {
  font-family: var(--font-body); font-size: 10px;
  letter-spacing: 0.2em; text-transform: uppercase;
  font-weight: 700; color: var(--mustard-deep);
  background: var(--paper-soft);
  border: 1px solid var(--paper-dark);
  padding: 3px 8px; border-radius: 2px;
  line-height: 1.3;
}
.menu-item-list .item-desc {
  display: block;
  font-size: 14.5px;
  color: var(--ink-mute);
  margin-top: 4px;
  line-height: 1.55;
}
.menu-item-list .item-price {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  color: var(--red);
  letter-spacing: 0.02em;
  line-height: 1.2;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

/* Build-your-own block */
.byo-block {
  background: var(--paper-soft);
  border: 1px solid var(--paper-dark);
  padding: clamp(28px, 4vw, 48px);
  border-radius: 4px;
  margin-bottom: 36px;
}
.byo-block h4 {
  font-family: var(--font-display);
  font-size: 24px; letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 16px;
  line-height: 1.2;
}
.byo-block p { font-size: 16px; color: var(--ink-soft); line-height: 1.65; margin-bottom: 18px; }
.byo-tiers { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 20px; }
@media (min-width: 600px) { .byo-tiers { grid-template-columns: repeat(4, 1fr); } }
.byo-tier {
  background: var(--paper);
  border: 1px solid var(--paper-dark);
  padding: 14px 16px;
  border-radius: 3px;
  text-align: center;
}
.byo-tier .tier-name {
  display: block;
  font-family: var(--font-body); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-mute); font-weight: 700;
  margin-bottom: 4px;
  line-height: 1.3;
}
.byo-tier .tier-price {
  display: block;
  font-family: var(--font-display);
  font-size: 26px; color: var(--red);
  letter-spacing: 0.02em;
  line-height: 1.1;
}

/* Toppings grid */
.toppings-block { margin-bottom: 24px; }
.toppings-block h5 {
  font-family: var(--font-body); font-size: 12px;
  font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
  line-height: 1.4;
}
.toppings-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px 24px;
}
@media (min-width: 540px) { .toppings-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 840px) { .toppings-grid { grid-template-columns: repeat(3, 1fr); } }
.toppings-grid li {
  display: flex; justify-content: space-between;
  font-size: 14.5px; color: var(--ink-soft);
  border-bottom: 1px dotted var(--paper-dark);
  padding: 6px 0;
  line-height: 1.5;
}
.toppings-grid li .topping-price {
  color: var(--ink-mute); font-weight: 600;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

/* Section accent image (menu page) */
.menu-board-section .section-accent {
  width: 100%;
  aspect-ratio: 21/9;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 32px;
  box-shadow: 0 18px 36px -18px rgba(20, 16, 12, 0.25);
}
.menu-board-section .section-accent img { width: 100%; height: 100%; object-fit: cover; }

/* Specialty burgers gallery on menu page (3 col with photo) */
.specialty-grid { display: grid; grid-template-columns: 1fr; gap: 24px; margin-bottom: 16px; }
@media (min-width: 640px) { .specialty-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .specialty-grid { grid-template-columns: repeat(3, 1fr); } }

.menu-footnote {
  text-align: center;
  padding: 40px 0 0;
  font-size: 14px;
  color: var(--ink-mute);
  font-style: italic;
  line-height: 1.6;
}

/* =========================================================
   CONTACT PAGE
   ========================================================= */
.contact-call-section {
  background: var(--night);
  color: var(--paper-soft);
  padding: clamp(80px, 10vw, 140px) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.contact-call-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(229, 164, 28, 0.12), transparent 60%);
  pointer-events: none;
}
.contact-call-section .container { position: relative; z-index: 1; }
.contact-call-section .eyebrow { margin-bottom: 22px; justify-content: center; }
.contact-call-section h2 {
  color: var(--paper-soft);
  margin-bottom: 26px;
}
.contact-call-section h2 em { color: var(--mustard); }
.contact-call-section .big-phone {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9vw, 8rem);
  letter-spacing: 0.02em;
  color: var(--mustard);
  display: block;
  margin: 30px 0;
  line-height: 1.0;
  transition: color 180ms ease, transform 180ms ease;
}
.contact-call-section .big-phone:hover { color: var(--paper-soft); transform: translateY(-2px); }
.contact-call-section .call-note {
  font-size: 17px; color: rgba(244, 235, 215, 0.7);
  max-width: 560px; margin: 0 auto 36px;
  line-height: 1.7;
}

/* Contact 3-up cards */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 28px; }
@media (min-width: 800px) { .contact-grid { grid-template-columns: repeat(3, 1fr); } }
.contact-card {
  background: var(--paper-soft);
  border: 1px solid var(--paper-dark);
  padding: 36px 32px;
  border-radius: 4px;
  text-align: center;
}
.contact-card .icon-circle {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--mustard);
  color: var(--ink);
  display: inline-flex;
  align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.contact-card .icon-circle svg { width: 26px; height: 26px; }
.contact-card h3 {
  font-family: var(--font-display);
  font-size: 24px; letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.15;
}
.contact-card p { font-size: 16px; color: var(--ink-soft); line-height: 1.65; margin-bottom: 4px; }
.contact-card a { color: var(--red); font-weight: 700; }
.contact-card a:hover { color: var(--red-deep); }

.takeout-note {
  background: var(--mustard);
  color: var(--ink);
  padding: 24px 28px;
  border-radius: 4px;
  margin: 50px auto 0;
  max-width: 760px;
  text-align: center;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 600;
}
.takeout-note strong { display: block; font-family: var(--font-display); font-size: 22px; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 6px; line-height: 1.2; }

.map-band {
  width: 100%; height: clamp(360px, 50vh, 520px);
  border-top: 1px solid var(--paper-dark);
  border-bottom: 1px solid var(--paper-dark);
  background: var(--paper-dark);
  position: relative;
}
.map-band iframe { width: 100%; height: 100%; border: 0; display: block; }

/* =========================================================
   ABOUT PAGE — extra elements
   ========================================================= */
.about-prose {
  max-width: 760px;
  margin: 0 auto;
}
.about-prose p {
  font-size: 19px; line-height: 1.8;
  color: var(--ink-soft);
  margin-bottom: 24px;
}
.about-prose p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-size: 4.5em;
  float: left;
  line-height: 0.85;
  color: var(--red);
  padding: 0.05em 0.08em 0 0;
}
.about-prose strong { color: var(--ink); font-weight: 700; }

.kitchen-band {
  position: relative;
  width: 100%;
  background: var(--night);
  color: var(--paper-soft);
  overflow: hidden;
}
.kitchen-band-photo {
  width: 100%;
  aspect-ratio: 21/9;
  position: relative;
  overflow: hidden;
}
@media (max-width: 700px) {
  .kitchen-band-photo { aspect-ratio: 4/3; }
}
.kitchen-band-photo img {
  width: 100%; height: 100%; object-fit: cover;
}
.kitchen-band-photo::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,16,12,0.3) 0%, rgba(20,16,12,0.85) 100%);
}
.kitchen-band-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: clamp(36px, 6vw, 80px);
  z-index: 2;
}
.kitchen-band-content .eyebrow { margin-bottom: 16px; color: var(--mustard); }
.kitchen-band-content .eyebrow::before { background: var(--mustard); }
.kitchen-band-content h2 {
  color: var(--paper-soft);
  margin-bottom: 0;
  max-width: 720px;
}
.kitchen-band-content h2 em { color: var(--mustard); }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { background: #0E0A07; color: rgba(244, 235, 215, 0.7); padding: 60px 0 28px; font-size: 14px; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 40px; margin-bottom: 40px; }
@media (min-width: 760px) { .footer-grid { grid-template-columns: 1.3fr repeat(3, 1fr); gap: 48px; } }
.footer-brand-block .brand-mark { font-size: 36px; line-height: 1; }
.footer-brand-block p { margin: 16px 0; line-height: 1.65; max-width: 320px; }
.footer-col h4 {
  font-family: var(--font-body); font-size: 13px;
  font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--mustard); margin-bottom: 18px;
  line-height: 1.4;
}
.footer-col ul { list-style: none; }
.footer-col li { padding: 5px 0; line-height: 1.5; }
.footer-col a:hover { color: var(--mustard); }
.footer-bottom { padding-top: 28px; border-top: 1px solid rgba(244, 235, 215, 0.1); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 12px; color: rgba(244, 235, 215, 0.45); line-height: 1.5; }
.footer-bottom a { color: rgba(244, 235, 215, 0.55); transition: color 180ms ease; }
.footer-bottom a:hover { color: var(--mustard); }

/* =========================================================
   ANIMATIONS / ACCESSIBILITY
   ========================================================= */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(24px); transition: opacity 700ms ease, transform 700ms ease; }
  .reveal.in { opacity: 1; transform: translateY(0); }
  .hero-title, .hero-lede, .hero-cta-row, .hero-eyebrow, .hero-meta { animation: heroIn 900ms ease both; }
  .hero-eyebrow { animation-delay: 100ms; }
  .hero-title { animation-delay: 200ms; }
  .hero-lede { animation-delay: 450ms; }
  .hero-cta-row { animation-delay: 600ms; }
  .hero-meta { animation-delay: 750ms; }
}
@keyframes heroIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

:focus-visible { outline: 3px solid var(--mustard); outline-offset: 3px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
