/* ============================================
   SZABADTŰZHELY — Grill & Chill
   ============================================ */

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

:root {
  --ember: #ff6a2b;
  --ember-2: #ff8a3d;
  --ember-deep: #c73e15;
  --gold: #e8a83c;
  --cream: #ede1cf;
  --cream-dim: rgba(237, 225, 207, 0.6);
  --black: #100b09;
  --black-2: #17110d;
  --black-3: #1f1712;
  --panel: #1c1410;
  --ember-glow: rgba(255, 106, 43, 0.32);
  --font-display: 'Anton', sans-serif;
  --font-label: 'Oswald', sans-serif;
  --font-body: 'Work Sans', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--cream);
  font-family: var(--font-body);
  overflow-x: hidden;
  position: relative;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
::selection { background: var(--ember); color: var(--black); }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--ember-deep); border-radius: 10px; }

#ember-canvas { position: fixed; inset: 0; z-index: 5000; pointer-events: none; mix-blend-mode: screen; }

/* ── LOADER ── */
.loader-screen {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--black);
  display: flex; align-items: center; justify-content: center; flex-direction: column;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}
.loader-screen.hide { opacity: 0; visibility: hidden; }
.loader-mark {
  width: 72px; height: 72px; border-radius: 50%; overflow: hidden;
  border: 2px solid rgba(255,106,43,0.4);
  opacity: 0; animation: loaderFadeIn 0.6s ease forwards;
  box-shadow: 0 0 40px var(--ember-glow);
}
.loader-mark img { width: 100%; height: 100%; object-fit: cover; }
.loader-word {
  font-family: var(--font-display); font-weight: 400; font-size: 1.5rem;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--cream);
  margin-top: 22px; opacity: 0; animation: loaderFadeIn 0.6s 0.15s ease forwards;
}
.loader-word span { color: var(--ember); }
@keyframes loaderFadeIn { to { opacity: 1; } }
.loader-bar-track {
  width: 140px; height: 2px; background: rgba(255,255,255,0.08); border-radius: 2px;
  margin-top: 22px; overflow: hidden; opacity: 0; animation: loaderFadeIn 0.5s 0.35s ease forwards;
}
.loader-bar {
  width: 0; height: 100%; background: linear-gradient(90deg, var(--ember-deep), var(--ember));
  border-radius: 2px; animation: loaderFill 1.7s 0.5s cubic-bezier(0.22,1,0.36,1) forwards;
}
@keyframes loaderFill { to { width: 100%; } }

/* ── REVEALS — bidirectional: replays every time an element enters/leaves the viewport ── */
[data-reveal] {
  opacity: 0;
  will-change: transform, opacity, filter;
  filter: blur(7px);
  transition: opacity 0.9s cubic-bezier(0.16,1,0.3,1), transform 0.9s cubic-bezier(0.16,1,0.3,1), filter 0.7s ease-out;
}
[data-reveal="up"]    { transform: translateY(68px) scale(0.97); }
[data-reveal="down"]  { transform: translateY(-20px); }
[data-reveal="left"]  { transform: translateX(-80px); }
[data-reveal="right"] { transform: translateX(80px); }
[data-reveal="scale"] { transform: scale(0.72); }
[data-reveal="fade"]  { transform: translateY(16px); filter: blur(4px); }
[data-reveal].in-view { opacity: 1; transform: none; filter: blur(0); }

/* hero left panel — slides in from off-screen before anything else appears.
   Kept short of -100% so the panel still overlaps the viewport at rest —
   otherwise it never registers as "intersecting" and the reveal never fires. */
.hero-panel-left[data-reveal] { transform: translateX(-58%); filter: none; transition: opacity 0.7s ease-out, transform 0.75s cubic-bezier(0.5,0,0.75,0); }
.hero-panel-left[data-reveal].in-view { transform: none; }

/* hero wordmark — fast slide that slams to a hard stop with a small impact rebound, then settles */
.hw-half[data-reveal] {
  transition: opacity 0.4s ease-out, transform 0.45s ease-out, filter 0.35s ease-out;
}
.hw-half[data-reveal="left"]  { transform: translateX(-160px); }
.hw-half[data-reveal="right"] { transform: translateX(160px); }
.hw-half[data-reveal="left"].in-view  { animation: hwSlamLeft 0.66s cubic-bezier(0.2,0.7,0.2,1) forwards; }
.hw-half[data-reveal="right"].in-view { animation: hwSlamRight 0.66s cubic-bezier(0.2,0.7,0.2,1) forwards; }
@keyframes hwSlamLeft {
  0%   { opacity: 0; transform: translateX(-160px); filter: blur(7px); }
  60%  { opacity: 1; transform: translateX(16px); filter: blur(0); }
  100% { opacity: 1; transform: translateX(0); filter: blur(0); }
}
@keyframes hwSlamRight {
  0%   { opacity: 0; transform: translateX(160px); filter: blur(7px); }
  60%  { opacity: 1; transform: translateX(-16px); filter: blur(0); }
  100% { opacity: 1; transform: translateX(0); filter: blur(0); }
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; transform: none !important; filter: none !important; transition: none !important; }
}

/* ── FLOATING PILL NAV ── */
nav {
  position: fixed; top: 20px; left: 50%; transform: translateX(-50%);
  z-index: 200;
  display: flex; align-items: center; gap: 30px;
  padding: 10px 14px 10px 16px;
  background: rgba(16,11,9,0.6);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50px;
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  transition: background 0.4s ease, box-shadow 0.4s ease;
  max-width: calc(100vw - 32px);
}
nav.scrolled { background: rgba(16,11,9,0.85); box-shadow: 0 10px 40px rgba(0,0,0,0.4); }

.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo img { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; border: 1px solid rgba(255,255,255,0.15); }
.nav-logo span { font-family: var(--font-label); font-weight: 600; font-size: 0.86rem; letter-spacing: 0.02em; text-transform: uppercase; }
.nav-logo em { color: var(--ember); font-style: normal; }

.nav-links { display: flex; gap: 24px; list-style: none; font-family: var(--font-label); font-size: 0.68rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--cream-dim); }
.nav-links a { transition: color 0.2s; }
.nav-links a:hover { color: var(--ember-2); }

.btn-nav {
  background: var(--ember); color: var(--black);
  font-family: var(--font-label); font-weight: 600; font-size: 0.66rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 9px 20px; border-radius: 50px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-nav:hover { transform: translateY(-1px); box-shadow: 0 6px 20px var(--ember-glow); }

.nav-burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; z-index: 210; }
.nav-burger span { width: 20px; height: 2px; background: var(--cream); transition: 0.3s; }
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 190; background: var(--black-2);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 26px;
  transform: translateY(-100%); transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a { font-family: var(--font-label); font-size: 1.3rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--cream); }
.mobile-menu .mm-cta { color: var(--ember); margin-top: 10px; }

/* ── HERO — split panel, wordmark straddles seam ── */
/* .hero-stage is the scroll "runway" (desktop only). Two overlapping motions
   share it: over the first ~120vh the pinned hero's own elements slide out
   sideways, slowly — left-half content (panel, SZABAD, intro, stats) exits
   left, right-half content (photo, TŰZHELY, pins, dots, arrow) exits right,
   like curtains parting — while starting partway through that (~60vh in),
   .next-stage (marquee + Rólunk) already begins climbing up from below and
   keeps going until it fully covers the viewport at ~160vh, so the next
   section is visibly on its way up before the hero has even finished
   clearing. The per-element slide uses the standalone `translate` property
   (not `transform`) so it never fights the entrance reveal system, which only
   ever touches `transform`/`opacity`/`filter`. Progress for both motions
   comes from JS (script.js) reading this same scroll position. */
.hero-stage { position: relative; z-index: 1; }
@media (min-width: 861px) {
  .hero-stage { height: 260vh; } /* 100vh hero + 160vh combined runway */
}

.hero {
  position: relative; height: 100vh; min-height: 640px; overflow: hidden; display: flex;
}
@media (min-width: 861px) {
  .hero { position: sticky; top: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-stage { height: auto !important; }
  .hero { position: relative !important; }
}

.hero-panel-left {
  width: 44%; height: 100%; background: var(--panel);
  position: relative;
  border-right: 1px solid rgba(255,106,43,0.1);
}
.hero-panel-left::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 110% 70% at 30% 100%, rgba(255,106,43,0.16), transparent 76%),
              radial-gradient(140% 150% at 8% 42%, rgba(255,138,61,0.16), transparent 68%);
}
.hero-panel-right { width: 56%; height: 100%; position: relative; }
.hero-photo-wrap { position: absolute; inset: -4% -4% -4% -4%; overflow: hidden; }
.hero-photo-wrap img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.95) brightness(0.62); transition: transform 0.2s ease-out; will-change: transform; }
.hero-photo-shade {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(16,11,9,0.55) 0%, rgba(16,11,9,0.08) 22%, transparent 45%),
              linear-gradient(0deg, rgba(16,11,9,0.55) 0%, transparent 30%);
}

.hero-topline {
  position: absolute; top: 100px; left: 48px;
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-label); font-size: 0.66rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--cream-dim); z-index: 5;
}
.hero-topline i { width: 4px; height: 4px; border-radius: 50%; background: var(--ember); display: inline-block; }

.hero-wordmark {
  position: absolute; top: 50%; left: 0; right: 0; transform: translateY(-50%);
  display: flex; align-items: flex-start; z-index: 6; pointer-events: none;
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(52px, 8.6vw, 148px);
  line-height: 1.06; text-transform: uppercase; letter-spacing: -0.01em;
  white-space: nowrap;
  padding-top: 0.08em;
}
.hw-half { display: inline-block; }
.hw-left {
  width: 44%; text-align: right; padding-right: 72px;
  color: transparent;
  background-image:
    linear-gradient(180deg, rgba(255,214,180,0.025) 0%, rgba(255,214,180,0.008) 55%, transparent 100%),
    url('../assets/hero-double-burger.jpg');
  background-repeat: no-repeat, no-repeat;
  background-size: cover, 320% auto;
  background-position: center, 6% 12%;
  filter: brightness(0.66);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hw-right {
  width: 56%; padding-left: 28px;
  color: #fdf8f0;
  text-shadow: 0 4px 40px rgba(0,0,0,0.6), 0 0 60px rgba(255,106,43,0.2);
}

.pin { position: absolute; z-index: 8; display: flex; align-items: center; gap: 10px; }
.pin-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--ember); box-shadow: 0 0 0 4px rgba(255,106,43,0.22); flex-shrink: 0; animation: pinPulse 2.4s ease-in-out infinite; }
@keyframes pinPulse { 0%,100% { box-shadow: 0 0 0 4px rgba(255,106,43,0.22); } 50% { box-shadow: 0 0 0 8px rgba(255,106,43,0.1); } }
.pin-label {
  background: rgba(16,11,9,0.82); border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-radius: 10px; padding: 8px 13px;
  font-size: 0.7rem; line-height: 1.4; color: var(--cream-dim); white-space: nowrap;
}
.pin-label strong { display: block; font-family: var(--font-label); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.02em; color: var(--cream); text-transform: uppercase; }
.pin-a { top: 27%; right: 8%; }
.pin-b { top: 68%; right: 20%; }

.hero-info {
  position: absolute; left: 48px; bottom: 130px; z-index: 6; max-width: 340px;
}
.hero-info-tag {
  font-family: var(--font-label); font-size: 0.66rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ember-2); margin-bottom: 14px;
}
.hero-info p { font-size: 0.86rem; line-height: 1.7; color: rgba(237,225,207,0.5); margin-bottom: 22px; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--ember-2), var(--ember-deep));
  color: var(--black); font-family: var(--font-label); font-weight: 600; font-size: 0.72rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 14px 30px; border-radius: 50px; border: none; cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 30px var(--ember-glow); }

.hero-stat-dock {
  position: absolute; left: 48px; bottom: 44px; z-index: 6;
  display: flex; gap: 30px;
}
.hs { display: flex; flex-direction: column; gap: 2px; }
.hs strong { font-family: var(--font-label); font-weight: 700; font-size: 1.3rem; color: var(--cream); }
.hs span { font-size: 0.64rem; letter-spacing: 0.06em; color: rgba(237,225,207,0.35); }

.hero-dots {
  position: absolute; right: 40px; top: 50%; transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 12px; z-index: 6;
}
.hero-dots span { width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,0.25); }
.hero-dots span:nth-child(2) { background: var(--ember); width: 6px; height: 6px; }

.hero-arrow {
  position: absolute; right: 48px; bottom: 44px; z-index: 6;
  width: 48px; height: 48px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.16);
  display: flex; align-items: center; justify-content: center;
  color: var(--cream); transition: border-color 0.25s ease, transform 0.25s ease, background 0.25s ease;
  animation: bob 2.4s ease-in-out infinite;
}
.hero-arrow:hover { border-color: var(--ember); background: rgba(255,106,43,0.1); }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

.hero-fb {
  position: absolute; left: 48px; top: 96px; z-index: 6;
  display: none;
}

/* ── NEXT STAGE (marquee + Rólunk) ── */
/* Desktop only: pulled up under the hero via a matching negative margin
   (-100vh), so its natural scroll position already does all the work — no JS
   needed. With .hero-stage's 160vh runway, this puts .next-stage's top
   exactly 160vh below the viewport at the top of the runway (fully hidden)
   and exactly at the viewport top once the runway finishes (fully covering),
   crossing into view — rising up over the still-pinned hero — at the 60vh
   mark, i.e. partway through the hero's own slide-out (which runs 0–120vh),
   so the two motions visibly overlap instead of running one after the other. */
.next-stage { position: relative; z-index: 2; }
@media (min-width: 861px) {
  .next-stage { margin-top: -100vh; }
}
@media (prefers-reduced-motion: reduce) {
  .next-stage { margin-top: 0; }
}

/* ── MARQUEE ── */
.marquee {
  background: var(--ember); color: var(--black);
  overflow: hidden; white-space: nowrap; padding: 13px 0;
  border-top: 1px solid rgba(0,0,0,0.1); border-bottom: 1px solid rgba(0,0,0,0.1);
}
.marquee-track {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--font-label); font-weight: 600; font-size: 0.82rem;
  letter-spacing: 0.06em; text-transform: uppercase;
  animation: marqueeScroll 104s linear infinite;
}
.marquee-track span { flex-shrink: 0; }
.mq-dot { opacity: 0.5; }
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── ABOUT BAND ── */
.about-band { position: relative; z-index: 2; min-height: 92vh; overflow: hidden; display: flex; align-items: flex-end; }
.ab-photo { position: absolute; inset: 0; }
.ab-photo img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.9) brightness(0.5); }
.ab-shade {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, var(--black) 0%, rgba(16,11,9,0.5) 40%, rgba(16,11,9,0.25) 100%);
}
.ab-type {
  position: relative; z-index: 2;
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(46px, 8vw, 128px);
  line-height: 0.92; text-transform: uppercase; letter-spacing: -0.005em;
  color: #fdf8f0; text-shadow: 0 6px 40px rgba(0,0,0,0.55);
  padding: 0 48px 40px;
  max-width: 62%;
}
.ab-eyebrow {
  position: absolute; top: 100px; left: 48px; z-index: 2;
  font-family: var(--font-label); font-size: 0.68rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--ember-2);
  display: flex; align-items: center; gap: 12px;
}
.ab-eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--ember-2); }

.ab-panel {
  position: relative; z-index: 2;
  background: rgba(16,11,9,0.86);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-radius: 22px;
  padding: 34px 36px;
  max-width: 480px;
  margin: 0 48px 56px auto;
}
.ab-panel p { font-size: 0.88rem; line-height: 1.75; color: rgba(237,225,207,0.6); margin-bottom: 26px; }
.ab-facts { display: flex; flex-direction: column; gap: 18px; }
.ab-fact { display: flex; gap: 14px; align-items: flex-start; }
.ab-fact-num { font-family: var(--font-label); font-weight: 700; font-size: 0.7rem; color: var(--ember-2); border: 1px solid rgba(255,106,43,0.3); border-radius: 50%; width: 26px; height: 26px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ab-fact div strong { display: block; font-family: var(--font-label); font-size: 0.82rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.02em; color: var(--cream); margin-bottom: 3px; }
.ab-fact div { font-size: 0.78rem; line-height: 1.55; color: rgba(237,225,207,0.4); }

/* ── SHARED SECTION HEAD ── */
.section-eyebrow { font-family: var(--font-label); font-size: 0.68rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--ember-2); margin-bottom: 16px; }
.section-title { font-family: var(--font-display); font-weight: 400; font-size: clamp(2rem, 4.6vw, 3.2rem); text-transform: uppercase; line-height: 0.98; letter-spacing: 0.005em; }
.section-title .dot { color: var(--ember); }

/* ── MENU ── */
.menu { padding: 120px 0 100px; background: var(--black-2); }
.menu-head {
  max-width: 1280px; margin: 0 auto 60px; padding: 0 48px;
  display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; flex-wrap: wrap;
}
.menu-head-sub { max-width: 380px; font-size: 0.92rem; line-height: 1.7; color: rgba(237,225,207,0.45); padding-bottom: 6px; }

.menu-featured {
  max-width: 1280px; margin: 0 auto 60px; padding: 0 48px;
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 0;
  background: var(--black-3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 28px;
  overflow: hidden;
  margin-left: auto; margin-right: auto;
}
.menu-featured { padding: 0; max-width: 1184px; }
.mf-photo { position: relative; aspect-ratio: 5/4; overflow: hidden; }
.mf-photo img { width: 100%; height: 100%; object-fit: cover; }
.mf-photo .pin-static { position: absolute; }
.pin-c { top: 14%; left: 8%; }
.pin-d { bottom: 14%; right: 8%; }
.mf-body { padding: 44px 44px 44px 48px; display: flex; flex-direction: column; justify-content: center; }
.menu-tag { display: inline-block; width: fit-content; font-family: var(--font-label); font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ember-2); border: 1px solid rgba(255,106,43,0.3); border-radius: 50px; padding: 6px 14px; margin-bottom: 18px; }
.mf-body h3 { font-family: var(--font-display); font-weight: 400; font-size: clamp(1.7rem, 3vw, 2.3rem); text-transform: uppercase; margin-bottom: 16px; }
.mf-body p { font-size: 0.9rem; line-height: 1.7; color: rgba(237,225,207,0.45); margin-bottom: 24px; max-width: 380px; }
.menu-price { font-family: var(--font-label); font-weight: 700; font-size: 1.4rem; color: var(--gold); }

.menu-strip-wrap { max-width: 1280px; margin: 0 auto; padding: 0 48px; }
.menu-strip {
  display: flex; gap: 20px; overflow-x: auto; padding-bottom: 8px; scroll-snap-type: x proximity;
  cursor: grab; user-select: none;
  scrollbar-width: none;
}
.menu-strip::-webkit-scrollbar { display: none; }
.menu-strip.dragging { cursor: grabbing; scroll-snap-type: none; }
.ms-card {
  flex: 0 0 260px; scroll-snap-align: start;
  background: var(--black-3); border: 1px solid rgba(255,255,255,0.06); border-radius: 18px; overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.ms-card:hover { border-color: rgba(255,106,43,0.28); transform: translateY(-4px); }
.ms-img { aspect-ratio: 4/3; overflow: hidden; }
.ms-img img { width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.ms-card h4 { font-family: var(--font-label); font-weight: 600; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.01em; padding: 18px 18px 6px; }
.ms-card p { font-size: 0.76rem; line-height: 1.55; color: rgba(237,225,207,0.4); padding: 0 18px 14px; }
.ms-card span { display: block; font-family: var(--font-label); font-weight: 700; font-size: 0.88rem; color: var(--gold); padding: 0 18px 18px; }

.ms-hint { text-align: right; font-family: var(--font-label); font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(237,225,207,0.25); margin-top: 14px; }

.menu-footnote { max-width: 1280px; margin: 40px auto 0; padding: 24px 48px 0; font-size: 0.8rem; line-height: 1.7; color: rgba(237,225,207,0.35); border-top: 1px solid rgba(255,255,255,0.06); }

/* ── EVENTS (filmstrip) ── */
.events { padding: 110px 0; background: var(--black); }
.section-head-inline {
  max-width: 1280px; margin: 0 auto 50px; padding: 0 48px;
  display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; flex-wrap: wrap;
}
.section-head-inline p { max-width: 380px; font-size: 0.92rem; line-height: 1.7; color: rgba(237,225,207,0.45); padding-bottom: 6px; }

.filmstrip-wrap { max-width: 1280px; margin: 0 auto; padding: 0 48px; }
.filmstrip {
  display: flex; gap: 18px; overflow-x: auto; scroll-snap-type: x proximity;
  cursor: grab; user-select: none; scrollbar-width: none;
}
.filmstrip::-webkit-scrollbar { display: none; }
.filmstrip.dragging { cursor: grabbing; scroll-snap-type: none; }
.fs-item {
  position: relative; flex: 0 0 320px; height: 400px; border-radius: 20px; overflow: hidden; scroll-snap-align: start;
}
.fs-item.fs-large { flex-basis: 440px; }
.fs-item img { width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.fs-item::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(16,11,9,0.85) 0%, transparent 50%); }
.fs-item figcaption { position: absolute; left: 20px; bottom: 18px; z-index: 2; display: flex; flex-direction: column; gap: 3px; }
.fs-item figcaption span { font-family: var(--font-label); font-weight: 600; font-size: 0.92rem; letter-spacing: 0.02em; text-transform: uppercase; color: var(--cream); }
.fs-item figcaption small { font-size: 0.72rem; color: var(--ember-2); }

/* ── REVIEWS ── */
.reviews { position: relative; min-height: 70vh; display: flex; align-items: center; padding: 100px 48px; overflow: hidden; }
.reviews-photo { position: absolute; inset: 0; }
.reviews-photo img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.85) brightness(0.32) blur(1px); }
.reviews-card {
  position: relative; z-index: 2; max-width: 640px; margin: 0 auto;
  background: rgba(16,11,9,0.82); border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-radius: 26px; padding: 54px 50px; text-align: center;
}
.reviews-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 84px; height: 84px; border-radius: 50%; border: 2px solid rgba(255,106,43,0.35);
  font-family: var(--font-display); font-weight: 400; font-size: 1.3rem; color: var(--ember-2);
  margin: 0 auto 22px; box-shadow: 0 0 50px var(--ember-glow);
}
.reviews-card h2 { font-family: var(--font-display); font-weight: 400; font-size: clamp(1.6rem, 3.4vw, 2.3rem); text-transform: uppercase; line-height: 1.1; margin-bottom: 22px; }
.reviews-card p { font-size: 1rem; font-style: italic; font-weight: 300; line-height: 1.7; color: rgba(237,225,207,0.65); margin-bottom: 18px; }
.reviews-source { display: block; font-family: var(--font-label); font-size: 0.64rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(237,225,207,0.32); margin-bottom: 30px; }
.reviews-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--ember-2), var(--ember-deep)); color: var(--black);
  font-family: var(--font-label); font-weight: 600; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 14px 30px; border-radius: 50px; transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.reviews-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 30px var(--ember-glow); }

/* ── FOOTER (rounded capsule) ── */
.site-footer { padding: 26px 26px 40px; background: var(--black); }
.footer-capsule {
  max-width: 1280px; margin: 0 auto; background: var(--panel);
  border: 1px solid rgba(255,255,255,0.07); border-radius: 32px; padding: 64px 48px 24px;
}
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 46px; }
.footer-brand { display: flex; align-items: center; gap: 16px; }
.footer-brand img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; border: 1px solid rgba(255,255,255,0.12); }
.footer-word { font-family: var(--font-label); font-weight: 600; font-size: 1.1rem; text-transform: uppercase; letter-spacing: 0.02em; }
.footer-word em { color: var(--ember-2); font-style: normal; }
.footer-tag { font-size: 0.76rem; color: rgba(237,225,207,0.4); margin-top: 4px; }
.footer-col { display: flex; flex-direction: column; gap: 11px; }
.footer-col h4 { font-family: var(--font-label); font-size: 0.6rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ember-2); margin-bottom: 6px; }
.footer-col a, .footer-col span { font-size: 0.83rem; color: rgba(237,225,207,0.55); transition: color 0.2s; }
.footer-col a:hover { color: var(--cream); }
.footer-cta-col p { font-size: 0.78rem; line-height: 1.6; color: rgba(237,225,207,0.4); margin-bottom: 6px; }
.footer-cta { display: inline-flex; align-items: center; gap: 8px; background: var(--ember); color: var(--black); font-family: var(--font-label); font-weight: 600; font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 11px 22px; border-radius: 50px; width: fit-content; transition: transform 0.2s ease; }
.footer-cta:hover { transform: translateY(-2px); }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.06); font-size: 0.7rem; color: rgba(237,225,207,0.28); font-family: var(--font-label); letter-spacing: 0.04em; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1080px) {
  .menu-featured { grid-template-columns: 1fr; }
  .mf-photo { aspect-ratio: 16/10; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .nav-links { display: none; }
  .btn-nav { display: none; }
  .nav-burger { display: flex; }
  nav { top: 14px; padding: 8px 10px 8px 12px; }

  /* mobile hero — photo shrinks to a compact overlay band (headline sits on it,
     like a poster), everything else (intro, CTA, stats) drops onto solid ground
     right below it instead of stretching the whole thing across two screens. */
  .hero {
    flex-direction: column; height: auto; min-height: 0;
    --hero-photo-h: clamp(340px, 50vh, 460px);
  }
  .hero-panel-left {
    position: absolute; top: 74px; left: 20px; right: 20px; z-index: 7;
    width: auto; height: auto; min-height: 0;
    background: none; border-right: none;
  }
  .hero-panel-left::before { display: none; }
  .hero-topline { position: static; top: auto; left: auto; text-shadow: 0 2px 10px rgba(0,0,0,0.7); }

  .hero-panel-right { width: 100%; height: var(--hero-photo-h); min-height: 0; }
  .hero-photo-shade {
    background:
      linear-gradient(0deg, rgba(16,11,9,0.96) 0%, rgba(16,11,9,0.58) 32%, rgba(16,11,9,0.16) 62%, transparent 84%),
      linear-gradient(180deg, rgba(16,11,9,0.5) 0%, transparent 24%);
  }

  .hero-wordmark {
    position: absolute; left: 0; right: 0; top: var(--hero-photo-h); transform: translateY(calc(-100% - 22px));
    flex-direction: column; padding: 0 24px; z-index: 6;
    font-size: clamp(58px, 16vw, 86px);
  }
  .hw-left, .hw-right { width: 100%; text-align: left; padding: 0; }
  .hw-left {
    background: none; filter: none; color: var(--ember-2); -webkit-text-fill-color: var(--ember-2);
    text-shadow: 0 4px 26px rgba(0,0,0,0.65), 0 0 44px rgba(0,0,0,0.55);
  }
  .hw-right { text-shadow: 0 4px 30px rgba(0,0,0,0.75), 0 0 50px rgba(255,106,43,0.22); }

  .hero-info { position: static; max-width: none; padding: 28px 24px 0; }
  .hero-stat-dock { position: static; padding: 22px 24px 34px; }
  .pin { display: none; }
  .hero-dots { display: none; }
  .hero-arrow { right: 24px; bottom: 24px; }
  .hero-fb { display: none; }

  .about-band { min-height: auto; padding-top: 100px; flex-direction: column; align-items: stretch; }
  .ab-type { padding: 0 24px 24px; max-width: 100%; }
  .ab-eyebrow { left: 24px; top: 24px; }
  .ab-panel { margin: 0 24px 40px; max-width: none; }

  .menu-head, .section-head-inline { padding: 0 24px; flex-direction: column; align-items: flex-start; }
  .menu-featured { margin: 0 24px 40px; }
  .menu-strip-wrap, .filmstrip-wrap { padding: 0 24px; }
  .menu-footnote { padding: 24px 24px 0; }

  .reviews { padding: 70px 24px; }
  .reviews-card { padding: 38px 26px; }

  .site-footer { padding: 16px 16px 30px; }
  .footer-capsule { border-radius: 24px; padding: 44px 24px 20px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}
