/* ============================================================
   Flaming Grill Cafe — Sacramento
   Custom stylesheet (no frameworks, no WordPress)
   ============================================================ */

/* ---------- 1. Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  /* Offset in-page anchor jumps so the sticky header never covers headings */
  scroll-padding-top: calc(var(--header-h) + 12px);
  /* iOS Safari: contain horizontal overflow at the root. clip = no scroll
     container, so the sticky header, smooth scroll and anchors keep working. */
  width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
}

body {
  font-family: var(--font-body);
  color: var(--c-body);
  background: var(--c-bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
  -webkit-tap-highlight-color: transparent;
}

img { max-width: 100%; height: auto; display: block; }
svg, video, iframe { max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }
:focus-visible { outline: 3px solid var(--c-yellow); outline-offset: 2px; border-radius: 4px; }

/* ---------- 2. Tokens ---------- */
:root {
  /* Brand — drawn from the real Flaming Grill logo (yellow + red) on charcoal */
  --c-red:      #E4231B;
  --c-red-dk:   #B81810;
  --c-orange:   #FF6B18;
  --c-yellow:   #FFC42E;
  --c-yellow-dk:#F0A500;

  --c-ink:      #140C08;   /* near-black brown */
  --c-charcoal: #1E1512;
  --c-charcoal2:#2A1E18;
  --c-bg:       #FFFBF4;   /* warm cream */
  --c-surface:  #FFFFFF;
  --c-body:     #3A322E;
  --c-muted:    #7A6E67;
  --c-line:     #ECE3D6;

  --font-body:    'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Bebas Neue', 'Oswald', system-ui, sans-serif;
  --font-head:    'Poppins', system-ui, sans-serif;

  --grad-flame: linear-gradient(135deg, var(--c-yellow) 0%, var(--c-orange) 45%, var(--c-red) 100%);
  --grad-dark:  linear-gradient(160deg, #241813 0%, #140C08 100%);

  --shadow-sm: 0 2px 8px rgba(20,12,8,0.08);
  --shadow-md: 0 10px 30px rgba(20,12,8,0.12);
  --shadow-lg: 0 20px 50px rgba(20,12,8,0.20);
  --shadow-glow: 0 12px 40px rgba(255,107,24,0.35);

  --r-sm: 8px; --r-md: 16px; --r-lg: 26px; --r-full: 999px;

  --header-h: 76px;
  --header-h-scrolled: 66px;
  --notice-h: 40px;
  --maxw: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --gutter: clamp(1rem, 4vw, 2rem);
}

/* ---------- 3. Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-head); color: var(--c-ink); line-height: 1.12; font-weight: 700; letter-spacing: -0.01em; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.display {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 0.95;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-head);
  font-size: .8rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .18em;
  color: var(--c-red);
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--grad-flame); border-radius: 2px; }
.eyebrow.center::before { display: none; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--c-ink);
  line-height: 0.98;
}
.section-title .hl { color: var(--c-red); }
.lead { font-size: clamp(1rem, 1.6vw, 1.18rem); color: var(--c-muted); max-width: 60ch; }

/* ---------- 4. Layout ---------- */
.container {
  width: 100%; max-width: var(--maxw); margin: 0 auto;
  /* Respect notch/safe areas in landscape on notched phones */
  padding-left: max(var(--gutter), env(safe-area-inset-left));
  padding-right: max(var(--gutter), env(safe-area-inset-right));
}
.section { padding: clamp(3.5rem, 8vw, 7rem) 0; }
.section--dark { background: var(--grad-dark); color: #F5ECE4; }
.section--dark .section-title, .section--dark h2, .section--dark h3 { color: #fff; }
.section--dark .lead { color: rgba(255,255,255,.72); }
.center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.stack > * + * { margin-top: 1rem; }

.section-head { max-width: 720px; margin: 0 auto clamp(2rem, 5vw, 3.5rem); }
.section-head.left { margin-left: 0; }

/* ---------- 5. Buttons ---------- */
.btn {
  --btn-bg: var(--c-red);
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .95rem 1.9rem;
  border-radius: var(--r-full);
  font-family: var(--font-head); font-weight: 600; font-size: .95rem;
  letter-spacing: .01em;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s;
  will-change: transform;
}
.btn svg { width: 1.05em; height: 1.05em; }
.btn--primary { background: var(--grad-flame); color: #1a0f06; box-shadow: var(--shadow-glow); }
.btn--primary:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 16px 46px rgba(228,35,27,.45); }
.btn--dark { background: var(--c-ink); color: #fff; }
.btn--dark:hover { transform: translateY(-3px); background: var(--c-red); }
.btn--ghost { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.5); }
.btn--ghost:hover { border-color: var(--c-yellow); color: var(--c-yellow); transform: translateY(-3px); }
.btn--outline { background: transparent; color: var(--c-ink); border: 2px solid var(--c-ink); }
.btn--outline:hover { background: var(--c-ink); color: #fff; transform: translateY(-3px); }
.btn-row { display: flex; flex-wrap: wrap; gap: .9rem; }
.btn-row.center { justify-content: center; }

/* ---------- 6. Notice bar ---------- */
.notice {
  background: var(--c-ink); color: var(--c-yellow);
  text-align: center; font-family: var(--font-head);
  font-size: .82rem; font-weight: 600; letter-spacing: .04em;
  padding: .5rem 1rem;
}
.notice a { color: #fff; text-decoration: underline; text-underline-offset: 2px; }

/* ---------- 7. Header ---------- */
.header {
  position: sticky; top: 0; z-index: 1000;
  height: var(--header-h);
  background: rgba(20,12,8,.55);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: background .3s, height .3s, box-shadow .3s;
}
.header.scrolled { background: rgba(20,12,8,.92); box-shadow: 0 8px 30px rgba(0,0,0,.35); height: var(--header-h-scrolled); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between; height: 100%;
  max-width: var(--maxw); margin: 0 auto;
  padding-left: max(var(--gutter), env(safe-area-inset-left));
  padding-right: max(var(--gutter), env(safe-area-inset-right));
}
.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand img { height: 42px; width: auto; transition: height .3s; }
.header.scrolled .brand img { height: 36px; }

.nav { display: flex; align-items: center; gap: .25rem; }
.nav a {
  font-family: var(--font-head); font-size: .92rem; font-weight: 500;
  color: rgba(255,255,255,.85); padding: .5rem .85rem; border-radius: var(--r-sm);
  position: relative; transition: color .2s;
}
.nav a::after {
  content: ""; position: absolute; left: .85rem; right: .85rem; bottom: .3rem; height: 2px;
  background: var(--grad-flame); border-radius: 2px; transform: scaleX(0); transform-origin: left;
  transition: transform .25s var(--ease);
}
.nav a:hover, .nav a.active { color: #fff; }
.nav a:hover::after, .nav a.active::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; gap: .75rem; }
.header .btn { padding: .6rem 1.2rem; font-size: .85rem; }

/* Hamburger — 44px hit area for comfortable tapping */
.burger { display: none; width: 44px; height: 44px; position: relative; z-index: 1100; flex-shrink: 0; }
.burger span { position: absolute; left: 9px; right: 9px; height: 2px; background: #fff; border-radius: 2px; transition: transform .3s var(--ease), opacity .2s; }
.burger span:nth-child(1) { top: 15px; }
.burger span:nth-child(2) { top: 22px; }
.burger span:nth-child(3) { top: 29px; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  position: fixed; inset: var(--header-h) 0 0 0; z-index: 990;
  background: var(--grad-dark);
  padding: 2rem clamp(1.2rem, 6vw, 2rem);
  /* Fade in place (no off-screen transform) — avoids iOS Safari horizontal overflow */
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity .25s var(--ease), transform .3s var(--ease), visibility 0s linear .3s;
  overflow-y: auto; display: flex; flex-direction: column; gap: .25rem;
}
.mobile-nav.open {
  opacity: 1; visibility: visible; transform: none;
  transition: opacity .25s var(--ease), transform .3s var(--ease);
}
.mobile-nav a { color: #fff; font-family: var(--font-head); font-size: 1.15rem; font-weight: 500; padding: .95rem .25rem; border-bottom: 1px solid rgba(255,255,255,.08); }
.mobile-nav a:hover { color: var(--c-yellow); }
.mobile-nav .btn { margin-top: 1.5rem; }

/* ---------- 8. Hero ---------- */
.hero {
  position: relative; display: flex; align-items: center; overflow: hidden; color: #fff;
  min-height: calc(100vh - var(--header-h) - var(--notice-h));           /* fallback */
  min-height: calc(100svh - var(--header-h) - var(--notice-h));          /* stable mobile height (no URL-bar jump) */
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.08); animation: heroZoom 18s var(--ease) forwards; }
@keyframes heroZoom { to { transform: scale(1); } }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(20,12,8,.92) 0%, rgba(20,12,8,.72) 45%, rgba(20,12,8,.35) 100%);
}
.hero-glow { position: absolute; z-index: 0; width: 60vw; height: 60vw; right: -10vw; top: -10vw; border-radius: 50%; background: radial-gradient(circle, rgba(255,107,24,.35) 0%, transparent 65%); filter: blur(20px); pointer-events: none; }
.hero-inner { position: relative; z-index: 2; max-width: 720px; padding: clamp(3rem,8vw,5rem) 0; }
.hero-eyebrow { color: var(--c-yellow); }
.hero-title { font-family: var(--font-display); font-size: clamp(3rem, 9vw, 6.5rem); text-transform: uppercase; line-height: 0.9; margin: .6rem 0 1.2rem; }
.hero-title .hl { background: var(--grad-flame); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero-sub { font-size: clamp(1.05rem, 2vw, 1.3rem); color: rgba(255,255,255,.85); max-width: 52ch; margin-bottom: 2rem; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 1.5rem; margin-top: 2.2rem; color: rgba(255,255,255,.8); font-size: .9rem; }
.hero-meta span { display: inline-flex; align-items: center; gap: .5rem; }
.hero-meta strong { color: var(--c-yellow); font-family: var(--font-head); }
.scroll-cue { position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%); z-index: 2; color: rgba(255,255,255,.6); font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: .5rem; }
.scroll-cue .dot { width: 22px; height: 36px; border: 2px solid rgba(255,255,255,.4); border-radius: var(--r-full); position: relative; }
.scroll-cue .dot::after { content: ""; position: absolute; top: 6px; left: 50%; transform: translateX(-50%); width: 4px; height: 6px; background: var(--c-yellow); border-radius: 2px; animation: scrollDot 1.6s infinite; }
@keyframes scrollDot { 0%{opacity:0;transform:translate(-50%,0)} 40%{opacity:1} 100%{opacity:0;transform:translate(-50%,12px)} }

/* ---------- 9. Marquee strip ---------- */
.strip { background: var(--grad-flame); color: #1a0f06; overflow: hidden; padding: .75rem 0; }
.strip-track { display: flex; gap: 3rem; white-space: nowrap; width: max-content; animation: marquee 28s linear infinite; }
.strip-track span { font-family: var(--font-display); font-size: 1.15rem; letter-spacing: .05em; text-transform: uppercase; display: inline-flex; align-items: center; gap: 3rem; }
.strip-track span::after { content: "🔥"; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- 10. About ---------- */
.about-grid { display: grid; grid-template-columns: 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.about-media { position: relative; }
.about-media img { border-radius: var(--r-lg); box-shadow: var(--shadow-lg); width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.about-badge {
  position: absolute; bottom: -1.2rem; right: -0.5rem;
  background: var(--grad-flame); color: #1a0f06;
  padding: 1rem 1.4rem; border-radius: var(--r-md); box-shadow: var(--shadow-md);
  font-family: var(--font-display); text-transform: uppercase; line-height: 1;
}
.about-badge b { display: block; font-size: 1.9rem; }
.about-badge small { font-family: var(--font-head); font-weight: 600; font-size: .72rem; letter-spacing: .06em; }

.stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; margin-top: 2rem; }
.stat { text-align: center; padding: 1.2rem .5rem; background: rgba(255,107,24,.06); border: 1px solid rgba(255,107,24,.18); border-radius: var(--r-md); }
.stat b { display: block; font-family: var(--font-display); font-size: 2rem; color: var(--c-red); line-height: 1; }
.stat span { font-size: .78rem; color: var(--c-muted); font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }

/* ---------- 11. Menu cards ---------- */
.menu-grid { display: grid; grid-template-columns: 1fr; gap: clamp(1.2rem, 3vw, 1.75rem); }
.dish {
  background: var(--c-surface); border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--c-line);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  display: flex; flex-direction: column;
}
.dish:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.dish-media { aspect-ratio: 1/1; overflow: hidden; background: #f3ece2; position: relative; }
.dish-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.dish:hover .dish-media img { transform: scale(1.08); }
.dish-tag { position: absolute; top: .8rem; left: .8rem; background: var(--c-red); color: #fff; font-family: var(--font-head); font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; padding: .3rem .7rem; border-radius: var(--r-full); }
.dish-body { padding: 1.3rem 1.4rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.dish-head { display: flex; justify-content: space-between; align-items: baseline; gap: .75rem; margin-bottom: .5rem; }
.dish-name { font-family: var(--font-head); font-weight: 700; font-size: 1.08rem; color: var(--c-ink); line-height: 1.2; }
.dish-price { font-family: var(--font-display); font-size: 1.35rem; color: var(--c-red); flex-shrink: 0; }
.dish-desc { font-size: .9rem; color: var(--c-muted); line-height: 1.55; }

/* ---------- 12. Exotic meats ---------- */
.exotic { position: relative; overflow: hidden; }
.exotic-grid { display: grid; grid-template-columns: 1fr; gap: clamp(2rem,5vw,3.5rem); align-items: center; }
.exotic-media img { border-radius: var(--r-lg); box-shadow: var(--shadow-lg); width: 100%; aspect-ratio: 16/11; object-fit: cover; }
.badges { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.6rem; }
.badge {
  display: inline-flex; align-items: center; gap: .45rem;
  background: rgba(255,196,46,.1); border: 1px solid rgba(255,196,46,.35);
  color: var(--c-yellow); font-family: var(--font-head); font-weight: 600; font-size: .88rem;
  padding: .5rem 1.05rem; border-radius: var(--r-full);
  transition: transform .2s var(--ease), background .2s;
}
.badge:hover { transform: translateY(-3px); background: rgba(255,196,46,.2); }

/* ---------- 13. Happy hour ---------- */
.happy { background: var(--grad-flame); color: #1a0f06; }
.happy-inner { display: grid; grid-template-columns: 1fr; gap: 1.5rem; align-items: center; text-align: center; }
.happy .kicker { font-family: var(--font-display); font-size: clamp(2.4rem,6vw,4rem); text-transform: uppercase; line-height: .95; }
.happy p { font-family: var(--font-head); font-weight: 600; font-size: 1.15rem; }
.happy .days { display: inline-flex; flex-wrap: wrap; gap: .5rem; justify-content: center; margin-top: 1rem; }
.happy .day-pill { background: rgba(20,12,8,.12); border: 1px solid rgba(20,12,8,.25); border-radius: var(--r-full); padding: .35rem .95rem; font-family: var(--font-head); font-weight: 600; font-size: .85rem; }

/* ---------- 14. Visit / location ---------- */
.visit-grid { display: grid; grid-template-columns: 1fr; gap: clamp(2rem,5vw,3rem); align-items: stretch; }
.visit-media img { border-radius: var(--r-lg); box-shadow: var(--shadow-lg); width: 100%; height: 100%; min-height: 300px; object-fit: cover; }
.info-cards { display: grid; gap: 1rem; }
.info-card { display: flex; gap: 1rem; align-items: flex-start; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); border-radius: var(--r-md); padding: 1.2rem 1.3rem; }
.section--dark .info-card { background: rgba(255,255,255,.04); }
.info-card .ico { flex-shrink: 0; width: 44px; height: 44px; display: grid; place-items: center; border-radius: var(--r-md); background: var(--grad-flame); color: #1a0f06; }
.info-card .ico svg { width: 22px; height: 22px; }
.info-card h4 { font-family: var(--font-head); font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; color: var(--c-yellow); margin-bottom: .3rem; }
.info-card p, .info-card a { font-size: .95rem; color: rgba(255,255,255,.85); }
.info-card a:hover { color: var(--c-yellow); }
.hours-list { display: flex; flex-direction: column; gap: .3rem; margin-top: .2rem; }
.hours-row { display: flex; justify-content: space-between; gap: 1rem; font-size: .9rem; color: rgba(255,255,255,.82); padding: .2rem 0; border-bottom: 1px solid rgba(255,255,255,.07); }
.hours-row:last-child { border: none; }
.hours-row .hl { color: var(--c-yellow); font-weight: 600; }

.map-wrap { margin-top: 2.5rem; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,.1); }
.map-wrap iframe { display: block; width: 100%; height: 360px; border: 0; filter: grayscale(.2) contrast(1.05); }

/* ---------- 15. Contact form ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: clamp(2rem,5vw,3rem); }
.form { display: grid; gap: 1rem; }
.field { display: flex; flex-direction: column; gap: .4rem; }
.field label { font-family: var(--font-head); font-size: .82rem; font-weight: 600; color: var(--c-ink); text-transform: uppercase; letter-spacing: .04em; }
.field input, .field textarea {
  font-family: var(--font-body); font-size: 1rem; color: var(--c-ink);
  background: var(--c-surface); border: 1.5px solid var(--c-line); border-radius: var(--r-md);
  padding: .85rem 1rem; transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--c-orange); box-shadow: 0 0 0 4px rgba(255,107,24,.12); }
.field textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-note { font-size: .82rem; color: var(--c-muted); }
.form-status { font-family: var(--font-head); font-weight: 600; padding: .8rem 1rem; border-radius: var(--r-md); display: none; }
.form-status.show { display: block; }
.form-status.ok { background: rgba(46,160,67,.12); color: #1a7431; }
.form-status.err { background: rgba(228,35,27,.1); color: var(--c-red-dk); }
.hp { position: absolute; left: -9999px; }

/* ---------- 16. Footer ---------- */
.footer { background: var(--c-ink); color: rgba(255,255,255,.75); padding: clamp(3rem,6vw,4.5rem) 0 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2.2rem; margin-bottom: 2.5rem; }
.footer-brand img { height: 46px; margin-bottom: 1rem; }
.footer-brand p { font-size: .9rem; color: rgba(255,255,255,.55); max-width: 34ch; }
.footer h5 { font-family: var(--font-head); font-size: .8rem; text-transform: uppercase; letter-spacing: .12em; color: var(--c-yellow); margin-bottom: 1rem; }
.footer-links li { margin-bottom: .55rem; }
.footer-links a { font-size: .92rem; transition: color .2s; }
.footer-links a:hover { color: var(--c-yellow); }
.social { display: flex; gap: .6rem; flex-wrap: wrap; margin-top: .3rem; }
.social a { width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.15); border-radius: var(--r-full); transition: all .25s var(--ease); }
.social a:hover { background: var(--grad-flame); border-color: transparent; color: #1a0f06; transform: translateY(-3px); }
.social a svg { width: 18px; height: 18px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 1.5rem; display: flex; flex-wrap: wrap; gap: .75rem; justify-content: space-between; align-items: center; font-size: .8rem; color: rgba(255,255,255,.45); }
.footer-bottom a:hover { color: var(--c-yellow); }

/* ---------- 17. Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }
.reveal[data-delay="5"] { transition-delay: .4s; }

.skip-link { position: absolute; top: -60px; left: 1rem; background: var(--c-red); color: #fff; padding: .6rem 1rem; border-radius: 0 0 var(--r-sm) var(--r-sm); z-index: 2000; transition: top .2s; }
.skip-link:focus { top: 0; }

/* ---------- 18. Responsive ---------- */
@media (min-width: 640px) {
  .menu-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .happy-inner { grid-template-columns: 1.4fr auto; text-align: left; }
  .happy .days { justify-content: flex-start; }
}
@media (min-width: 900px) {
  .menu-grid { grid-template-columns: repeat(3,1fr); }
  .about-grid { grid-template-columns: 1.1fr 1fr; }
  .about-grid.reverse .about-media { order: 2; }
  .exotic-grid { grid-template-columns: 1fr 1fr; }
  .visit-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.2fr; }
}
@media (min-width: 1280px) {
  :root { --maxw: 1280px; }
  .menu-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 900px) {
  .nav, .header-actions .btn { display: none; }
  .burger { display: block; }
  .header-actions { gap: 0; }
}
@media (max-width: 420px) {
  .btn-row .btn { width: 100%; }
  .form-row { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .hero-meta { gap: .6rem 1.2rem; }
  .map-wrap iframe { height: 300px; }
}
/* Short / landscape screens — don't force a tall hero */
@media (max-height: 640px) and (orientation: landscape) {
  .hero { min-height: 0; padding: 3rem 0; }
  .scroll-cue { display: none; }
}

/* ============================================================
   20. MENU PAGES
   ============================================================ */
.page-hero { background: var(--grad-dark); color: #fff; text-align: center; padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(2rem, 4vw, 3rem); position: relative; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% -10%, rgba(255,107,24,.28) 0%, transparent 60%); pointer-events: none; }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-family: var(--font-display); font-size: clamp(2.6rem, 8vw, 5rem); text-transform: uppercase; color: #fff; line-height: .95; }
.page-hero h1 .hl { color: var(--c-yellow); }
.page-hero .lead { color: rgba(255,255,255,.75); margin: .8rem auto 0; }
.breadcrumb { margin-top: 1rem; font-size: .82rem; color: rgba(255,255,255,.5); font-family: var(--font-head); }
.breadcrumb a { color: var(--c-yellow); }
.breadcrumb a:hover { text-decoration: underline; }

/* Category pill nav */
.cat-nav-wrap { background: var(--c-ink); position: sticky; top: var(--header-h-scrolled); z-index: 500; border-bottom: 1px solid rgba(255,255,255,.08); }
.cat-nav { display: flex; gap: .5rem; overflow-x: auto; padding: .85rem clamp(1rem,4vw,2rem); max-width: var(--maxw); margin: 0 auto; scrollbar-width: none; -webkit-overflow-scrolling: touch; scroll-snap-type: x proximity; }
.cat-nav::-webkit-scrollbar { display: none; }
.cat-nav a { flex-shrink: 0; scroll-snap-align: start; white-space: nowrap; font-family: var(--font-head); font-weight: 600; font-size: .85rem; color: rgba(255,255,255,.7); padding: .5rem 1rem; border-radius: var(--r-full); border: 1px solid rgba(255,255,255,.14); transition: all .2s var(--ease); }
.cat-nav a:hover { color: #fff; border-color: rgba(255,255,255,.4); }
.cat-nav a.active { background: var(--grad-flame); color: #1a0f06; border-color: transparent; }

/* Menu content */
.menu-page { padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(3rem, 7vw, 5.5rem); }
.menu-group { margin-bottom: clamp(2.5rem, 6vw, 4rem); }
.menu-group:last-child { margin-bottom: 0; }
.menu-group-head { display: flex; align-items: baseline; gap: 1rem; margin-bottom: 1.5rem; padding-bottom: .6rem; border-bottom: 2px solid var(--c-line); }
.menu-group-head h2 { font-family: var(--font-display); font-size: clamp(1.6rem, 4vw, 2.4rem); text-transform: uppercase; color: var(--c-ink); letter-spacing: .01em; }
.menu-group-head .sub { font-family: var(--font-head); font-size: .8rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--c-red); }
.menu-note { background: rgba(255,107,24,.07); border: 1px solid rgba(255,107,24,.2); border-radius: var(--r-md); padding: .9rem 1.1rem; font-size: .9rem; color: var(--c-body); margin-bottom: 1.5rem; }
.menu-note strong { color: var(--c-red); }

.menu-list { display: grid; grid-template-columns: 1fr; gap: 0; }
.menu-row { padding: 1rem 0; border-bottom: 1px dashed var(--c-line); }
.menu-row-top { display: flex; align-items: baseline; gap: .75rem; }
.menu-row-name { font-family: var(--font-head); font-weight: 700; font-size: 1.02rem; color: var(--c-ink); }
.menu-row-tag { display: inline-block; margin-left: .5rem; background: var(--c-red); color: #fff; font-family: var(--font-head); font-size: .6rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; padding: .18rem .5rem; border-radius: var(--r-full); vertical-align: middle; }
.menu-row-leader { flex: 1; border-bottom: 1px dotted var(--c-line); transform: translateY(-.35rem); min-width: 1rem; }
.menu-row-price { font-family: var(--font-display); font-size: 1.25rem; color: var(--c-red); flex-shrink: 0; }
.menu-row-desc { font-size: .88rem; color: var(--c-muted); line-height: 1.5; margin-top: .3rem; max-width: 62ch; }

.menu-footnote { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--c-line); font-size: .8rem; color: var(--c-muted); line-height: 1.6; }
.menu-cta { text-align: center; margin-top: 3rem; }

/* Beers — live tap list */
.beer-header { display: grid; grid-template-columns: 1fr; gap: 1.5rem; align-items: center; background: var(--grad-dark); color: #fff; border-radius: var(--r-lg); padding: clamp(1.5rem,4vw,2.5rem); margin-bottom: 2rem; }
.beer-count { display: flex; align-items: baseline; gap: .5rem; }
.beer-count .big { font-family: var(--font-display); font-size: clamp(3.5rem, 12vw, 6rem); line-height: .85; background: var(--grad-flame); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.beer-count span:last-child { font-family: var(--font-display); font-size: 1.6rem; text-transform: uppercase; color: rgba(255,255,255,.7); }
.beer-header-txt p { color: rgba(255,255,255,.82); margin-bottom: 1.1rem; }

.taplist { display: grid; grid-template-columns: 1fr; gap: 0; }
.tap { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; padding: .85rem 0; border-bottom: 1px dashed var(--c-line); }
.tap-main { display: flex; flex-direction: column; gap: .1rem; min-width: 0; }
.tap-name { font-family: var(--font-head); font-weight: 700; font-size: 1.02rem; color: var(--c-ink); }
.tap-brewery { font-size: .82rem; color: var(--c-muted); }
.tap-meta { display: flex; align-items: center; gap: .6rem; flex-shrink: 0; text-align: right; }
.tap-style { font-size: .82rem; color: var(--c-muted); display: none; }
.tap-abv { font-family: var(--font-display); font-size: 1.15rem; color: var(--c-red); min-width: 3.2rem; text-align: right; }
.tap--ondeck { opacity: .78; }
.tap-status { display: flex; align-items: center; gap: .5rem; font-size: .85rem; color: var(--c-muted); margin: -.3rem 0 1.3rem; }
.tap-status.is-live { color: #1a7431; font-weight: 600; }
.live-dot { width: 9px; height: 9px; border-radius: 50%; background: #2ea043; display: inline-block; animation: livePulse 1.8s infinite; }
@keyframes livePulse { 0% { box-shadow: 0 0 0 0 rgba(46,160,67,.5); } 70% { box-shadow: 0 0 0 8px rgba(46,160,67,0); } 100% { box-shadow: 0 0 0 0 rgba(46,160,67,0); } }

.beer-embed { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--c-line); }
.beer-embed { background: #fff; }
.beer-embed iframe { display: block; width: 100%; height: 2000px; border: 0; }

@media (min-width: 640px) {
  .tap-style { display: inline; }
  .taplist { grid-template-columns: 1fr 1fr; column-gap: clamp(2rem,5vw,4rem); }
}
@media (min-width: 760px) {
  .beer-header { grid-template-columns: auto 1fr; gap: 2.5rem; }
}

/* Menu landing category cards */
.cat-grid { display: grid; grid-template-columns: 1fr; gap: 1.1rem; }
.cat-card { display: flex; align-items: center; gap: 1.1rem; background: var(--c-surface); border: 1px solid var(--c-line); border-radius: var(--r-lg); padding: 1.3rem 1.5rem; box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .2s; }
.cat-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--c-orange); }
.cat-card .emoji { font-size: 2.2rem; flex-shrink: 0; width: 54px; text-align: center; }
.cat-card h3 { font-family: var(--font-head); font-size: 1.15rem; color: var(--c-ink); margin-bottom: .15rem; }
.cat-card p { font-size: .85rem; color: var(--c-muted); }
.cat-card .arrow { margin-left: auto; color: var(--c-red); font-size: 1.4rem; flex-shrink: 0; transition: transform .25s var(--ease); }
.cat-card:hover .arrow { transform: translateX(5px); }

@media (min-width: 700px) {
  .menu-list { grid-template-columns: 1fr 1fr; column-gap: clamp(2rem, 5vw, 4rem); }
  .cat-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1050px) {
  .cat-grid { grid-template-columns: 1fr 1fr 1fr; }
}

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