/* =============================================
   DICTATOR BURGER — Main Stylesheet
   =============================================

   TABLE OF CONTENTS
   -----------------
   1. FOUNDATIONS
      - @font-face declarations
      - Variables (:root)
      - Reset
      - Utilities (.container, .btn, .section-title)
      - Animations (keyframes + .animate helpers)

   2. LAYOUT / GLOBAL CHROME
      - Navbar (3-col grid)
      - Mobile fullscreen menu
      - Footer
      - Cookie banner

   3. HOMEPAGE SECTIONS
      - Hero
      - Featured section
      - Order strip
      - Manifesto / about strip
      - Coin break (tablet/mobile interstitial)
      - Branches (3 cards + lead form)
      - Branch nav button
      - Menu preview section (tabs)
      - Burger reveal (yellow word stack)
      - Event / CTA section
      - Gallery / Instagram section
      - Updates marquee

   4. INNER PAGES
      - Page hero (shared)
      - Menu page
      - About page
      - Contact page
      - Gallery page
      - Events page
      - Legal pages (privacy / accessibility)
      - 404 page

   5. RESPONSIVE
      - Main responsive block
      - Mobile/tablet image fixes
      - Responsive guards
      - About page tablet + mobile centering

   NOTES
   -----
   - Cascade order matters: do NOT reorder blocks without visual QA.
   - Search a section by its banner: /* === SECTION NAME === or
     full-width banner /* ====...====.
   - All colors via CSS vars from :root. No hex literals in components.
   - Mobile-first per CLAUDE.md, but base styles target desktop ≥1200;
     overrides live in section 5.
*/

@font-face {
  font-family: 'Bamburger';
  src: url('../assets/fonts/bamburger.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'BambergerGrunge';
  src: url('../assets/fonts/bamberger-grunge-fm.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* === Variables === */
:root {
  --black: #000000;
  --yellow: #F2B705;
  --yellow-dark: #D4A004;
  --white: #FFFFFF;
  --gray-light: #1a1a1a;
  --gray-mid: #2a2a2a;
  --text-muted: rgba(255, 255, 255, 0.6);
  --font-brand: 'BambergerGrunge', 'Bamburger', 'Arial Black', sans-serif;
  --font-display: 'Bamburger', 'Arial Black', sans-serif;
  --font-body: 'Heebo', sans-serif;
  --nav-height: 74px;
  --transition: 0.3s ease;
}

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

html {
  direction: rtl;
  scroll-behavior: auto !important;
  font-size: 18px;
}

body {
  background-color: var(--black);
  color: var(--white);
  font-family: var(--font-brand);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* === Utilities === */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  text-align: center;
  text-indent: 0.08em;
}

.btn-primary {
  background: var(--yellow);
  color: var(--black);
}

.btn-primary:hover {
  background: var(--yellow-dark);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--black);
  transform: translateY(-2px);
}

.section-title {
  font-family: var(--font-brand);
  font-size: clamp(2rem, 5vw, 3.5rem);
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 0.02em;
}

.section-title span {
  color: var(--yellow);
}

/* === Animations === */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.92);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.animate {
  opacity: 0;
}

.animate.visible {
  animation: fadeInUp 0.7s ease forwards;
}

.animate-scale.visible {
  animation: scaleIn 0.6s ease forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* =============================================
   NAVBAR — 3-col grid: [right col | logo | left col]
   Logo is mathematically centered in viewport.
   ============================================= */

.navbar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  height: 74px;
  background: transparent;
  backdrop-filter: blur(0);
  -webkit-backdrop-filter: blur(0);
  border-bottom: 1px solid transparent;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, -webkit-backdrop-filter 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.navbar.scrolled {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px) saturate(140%);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

.navbar-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 100%;
  width: 80%;
  padding: 0;
  margin: 0 auto;
  position: relative;
}

/* Col 1 wrapper: right menu — pushed to right edge */
.navbar-col-right {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 32px;
}

.navbar-col-right .navbar-menu {
  gap: 32px;
}

/* Col 3 wrapper: left menu + IG — pushed to left edge */
.navbar-col-left {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 32px;
}

.navbar-col-left .navbar-menu {
  gap: 32px;
}

/* Logo — col 2, perfect center */
.navbar-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar-logo img {
  width: auto;
  height: 76px;
  display: block;
}

/* Nav links */
.navbar-menu {
  display: flex;
  align-items: center;
  gap: 64px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar-menu a {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: normal;
  letter-spacing: 0.04em;
  color: var(--white);
  white-space: nowrap;
  padding: 0;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  position: relative;
  transition: color var(--transition);
}

.navbar-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 2px;
  background: var(--yellow);
  transition: width 0.3s ease;
}

.navbar-menu a:hover { color: var(--yellow); }
.navbar-menu a:hover::after { width: 100%; }

/* Instagram icon */
.navbar-ig {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: color var(--transition), transform var(--transition);
  flex-shrink: 0;
  margin-top: -5px;
}

.navbar-ig svg {
  width: 22px;
  height: 22px;
  display: block;
}

.navbar-ig:hover {
  color: var(--yellow);
  transform: scale(1.12);
}

.navbar-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-brand);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  transition: background var(--transition), transform var(--transition);
  flex-shrink: 0;
  white-space: nowrap;
  min-width: 119px;
}

.navbar-cta:hover {
  background: var(--yellow-dark);
  transform: translateY(-1px);
}

/* Phone CTA — outline variant, left group */
.navbar-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--yellow);
  font-family: var(--font-brand);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 5px 16px;
  border: 2px solid var(--yellow);
  border-radius: 6px;
  text-decoration: none;
  transition: background var(--transition), color var(--transition), transform var(--transition);
  flex-shrink: 0;
  white-space: nowrap;
  direction: ltr;
  min-width: 119px;
}

.navbar-phone:hover {
  background: var(--yellow);
  color: var(--black);
  transform: translateY(-1px);
}


/* Hamburger — hidden desktop */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  z-index: 1002;
}

/* Mobile delivery CTA — hidden desktop */
.navbar-cta-mobile {
  display: none;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-brand);
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  border-radius: 8px;
  transition: background var(--transition);
  white-space: nowrap;
  line-height: 1;
}

.navbar-cta-mobile:hover { background: var(--yellow-dark); }

.hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

/* =============================================
   MOBILE FULLSCREEN MENU
   ============================================= */

/* Scrim behind drawer — blurs/dims page, click to close */
.mobile-menu-scrim {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.mobile-menu-scrim.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Glassmorphism drawer — slides in from the right (RTL start) */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(380px, 85vw);
  height: 100vh;
  height: 100dvh;
  background: rgba(10, 10, 10, 0.6);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  backdrop-filter: blur(22px) saturate(140%);
  border-left: 1px solid rgba(242, 183, 5, 0.25);
  box-shadow: -12px 0 40px rgba(0, 0, 0, 0.5);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 0;
  padding: 0 0 max(24px, env(safe-area-inset-bottom));
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  transform: translateX(100%);
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s ease;
}

/* No-backdrop-filter fallback → opaque-ish dark so text stays legible */
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .mobile-menu { background: rgba(10, 10, 10, 0.95); }
}

.mobile-menu > * {
  flex-shrink: 0;
}

.mobile-menu.open {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
}

/* Header row: close button (right, RTL start), aligned with navbar height */
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: var(--nav-height);
  padding: 0 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu-close {
  width: 48px;
  height: 48px;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline-start: -12px;
  transition: color var(--transition), transform var(--transition);
}

.mobile-menu-close svg {
  width: 30px;
  height: 30px;
}

.mobile-menu-close:hover {
  color: var(--yellow);
  transform: rotate(90deg);
}

/* Phone row at top, gold, with separator below */
.mobile-menu-phone {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  color: var(--yellow);
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  padding: 18px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: color var(--transition);
}

.mobile-menu-phone:hover { color: var(--yellow-dark); }

.mobile-menu-phone svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.mobile-menu-phone .mobile-menu-phone-num { direction: ltr; }

.mobile-menu-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  text-align: right;
  margin: 0;
  padding: 0;
}

.mobile-menu-links li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu-links a {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 5.5vw, 1.6rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  transition: color var(--transition), background var(--transition);
  display: block;
  padding: 18px 24px;
}

.mobile-menu-links a:hover,
.mobile-menu-links a:focus {
  color: var(--yellow);
  background: rgba(242, 183, 5, 0.06);
}

.mobile-menu-cta {
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  padding: 16px 36px;
  margin: 24px 24px 0;
  border-radius: 6px;
  transition: background var(--transition), transform var(--transition);
}

.mobile-menu-cta:hover {
  background: var(--yellow-dark);
  transform: translateY(-2px);
  color: var(--black);
}

/* Short viewports: tighten rows so all items fit (overflow-y:auto is fallback) */
@media (max-height: 740px) {
  .mobile-menu-links a { padding: 13px 24px; }
  .mobile-menu-phone { padding: 13px 24px; }
  .mobile-menu-cta { margin-top: 16px; padding: 13px 36px; }
}

@media (max-height: 600px) {
  .mobile-menu-links a { padding: 10px 24px; font-size: clamp(1.15rem, 4.5vw, 1.4rem); }
  .mobile-menu-phone { padding: 10px 24px; }
}

/* =============================================
   HERO
   ============================================= */

.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../assets/images/hero.webp');
  background-size: cover;
  background-position: 10% center;
  transform: scale(1);
}

.hero.loaded .hero-bg {
  transform: scale(1);
}

.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  transform: scale(1.2);
}

.hero-video-bg--mobile {
  display: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to left,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 0.6) 50%,
    rgba(0, 0, 0, 0.85) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 50%;
  max-width: 680px;
  margin-right: 0;
  margin-left: auto;
  left:0%
}

.hero-label {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.15em;
  color: var(--yellow);
  text-transform: uppercase;
  margin-bottom: 16px;
  animation: fadeInUp 0.6s ease 0.2s forwards;
  opacity: 0;
}

.hero-title {
  font-family: var(--font-brand);
  font-size: clamp(3.5rem, 9vw, 7rem);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  animation: fadeInUp 0.7s ease 0.4s forwards;
  opacity: 0;
}

.hero-title span {
  color: var(--yellow);
  display: block;
}

.hero-title span.hero-title-plain {
  color: var(--white);
}

.hero-subtitle {
  font-family: var(--font-display);
  font-size: 1.3rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 40px;
  font-weight: 300;
  animation: fadeInUp 0.7s ease 0.6s forwards;
  opacity: 0;
  letter-spacing: 0.05em;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.7s ease 0.8s forwards;
  opacity: 0;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: fadeIn 1s ease 1.5s forwards;
  opacity: 0;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--yellow), transparent);
  animation: scrollLine 1.5s ease infinite;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* =============================================
   FEATURED SECTION
   ============================================= */

.featured {
  padding: 100px 0;
  background: var(--black);
}

.featured-header {
  text-align: center;
  margin-bottom: 60px;
}

.featured-header p {
  color: var(--text-muted);
  margin-top: 12px;
  font-size: 1.4rem;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.featured-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}

.featured-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.featured-card:hover .featured-card-img {
  transform: scale(1.08);
}

.featured-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 24px;
}

.featured-card-name {
  font-family: var(--font-brand);
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.1;
}

.featured-card-price {
  color: var(--yellow);
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-top: 4px;
}

/* =============================================
   ORDER STRIP
   ============================================= */

.order-strip {
  background: var(--yellow);
  padding: 28px 0;
  text-align: center;
}

.order-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.order-strip p {
  font-family: var(--font-brand);
  font-size: 1.4rem;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.order-strip .btn-primary {
  background: var(--black);
  color: var(--yellow);
  font-size: 1rem;
  padding: 12px 32px;
}

.order-strip .btn-primary:hover {
  background: var(--gray-light);
}

/* =============================================
   MANIFESTO / ABOUT STRIP
   ============================================= */

.manifesto {
  padding: 100px 0;
  background: var(--black);
}

/* Background image + overlay: desktop-only (enabled in ≥1200 media query) */
.manifesto-bg,
.manifesto-overlay {
  display: none;
}

.manifesto-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.manifesto-text {
  max-width: 80%;
  margin-inline: auto;
}

.manifesto-text .label {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.25em;
  color: var(--yellow);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.manifesto-text h2 {
  font-family: var(--font-brand);
  font-size: clamp(2rem, 4vw, 3rem);
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 24px;
}

.manifesto-text h2 span {
  color: var(--yellow);
}

.manifesto-text p {
  font-family: var(--font-display);
  color: var(--font-brand);
  font-size: 1.4rem;
  line-height: 1.8;
  margin-bottom: 32px;
}

.manifesto-img {
  position: relative;
}

.manifesto-img img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

/* Desktop only: image becomes full-bleed background with dark overlay,
   text centered on top. Mobile/tablet keep the side-by-side layout above. */
@media (min-width: 1200px) {
  .manifesto {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
  }

  .manifesto-bg {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 32%;
    z-index: 0;
  }

  .manifesto-overlay {
    display: block;
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
      to right,
      rgba(0, 0, 0, 0.85) 0%,
      rgba(0, 0, 0, 0.6) 50%,
      rgba(0, 0, 0, 0.45) 100%
    );
  }

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

  .manifesto-inner {
    display: flex;
    justify-content: center;
  }

  .manifesto-text {
    text-align: center;
  }

  /* side image hidden — background carries the visual on desktop */
  .manifesto-img {
    display: none;
  }
}

/* =============================================
   DELIVERY / ORDER
   ============================================= */
.delivery {
  padding: 64px 0;
  background: var(--black);
}

.delivery-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.delivery-text {
  max-width: 80%;
  margin-inline: auto;
}

.delivery-text .label {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.25em;
  color: var(--yellow);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.delivery-text h2 {
  font-family: var(--font-brand);
  font-size: clamp(2rem, 4vw, 3rem);
  text-transform: uppercase;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 24px;
}

.delivery-text h2 span {
  color: var(--yellow);
}

.delivery-text p {
  font-family: var(--font-display);
  font-size: 1.4rem;
  line-height: 1.8;
  color: var(--white);
  margin-bottom: 28px;
}

.delivery-perks {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.delivery-perks li {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--white);
  padding-inline-start: 32px;
  position: relative;
}

.delivery-perks li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0.15em;
  width: 20px;
  height: 20px;
  background: var(--yellow);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 12l5 5L20 6'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 12l5 5L20 6'/%3E%3C/svg%3E") center / contain no-repeat;
}

.delivery-img {
  position: relative;
}

.delivery-img img {
  width: 100%;
  height: auto;
  max-height: 560px;
  object-fit: contain;
  display: block;
}

/* =============================================
   CLUB / מועדון לקוחות
   ============================================= */
.club {
  position: relative;
  padding: 100px 0;
  background: var(--black);
  overflow: hidden;
}

/* CSS smoke glow — yellow radial bloom, no asset */
.club::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 12%;
  width: 70%;
  height: 130%;
  transform: translateY(-50%);
  background: radial-gradient(ellipse at center, rgba(242,183,5,0.16) 0%, rgba(242,183,5,0.05) 35%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.club-mega-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.club-mega {
  font-family: var(--font-display, var(--font-brand));
  font-size: clamp(8rem, 20vw, 20rem);
  line-height: 0.85;
  color: transparent;
  -webkit-text-stroke: 2px rgba(242,183,5,0.18);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  white-space: nowrap;
  user-select: none;
}

.club-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}

.club-intro {
  max-width: 80%;
}

.club-label {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.25em;
  color: var(--yellow);
  text-transform: uppercase;
  margin: 0 0 20px;
}

.club-intro h2 {
  font-family: var(--font-brand);
  font-size: clamp(2.5rem, 5vw, 4rem);
  text-transform: uppercase;
  line-height: 0.95;
  margin: 0 0 24px;
}

.club-intro h2 span {
  color: var(--yellow);
}

.club-sub {
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0 0 32px;
}

.club-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.club-perks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.club-perk {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
}

.club-perk-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow);
}

.club-perk-icon svg {
  width: 100%;
  height: 100%;
}

.club-perk-text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1.4;
  color: var(--white);
}

/* =============================================
   BRANCHES
   ============================================= */

.branches {
  padding: 120px 0 140px;
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.branches-header {
  text-align: center;
  margin-bottom: 80px;
}

.branches-mega {
  font-family: var(--font-brand);
  font-size: clamp(1.6rem, 6.5vw, 5.5rem);
  color: var(--white);
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: 0.01em;
  margin: 0 auto;
  -webkit-text-stroke: 0;
  white-space: nowrap;
  text-align: center;
  width: 100%;
}

.branches-sub {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--yellow);
  margin-top: 18px;
  letter-spacing: 0.05em;
}

.branches-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding: 0 20px;
}

.branch-polaroid {
  display: block;
  background: var(--yellow);
  padding: 16px 16px 0;
  text-decoration: none;
  color: var(--black);
  transform: rotate(-1.5deg);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 12px 32px rgba(0,0,0,0.45);
}

.branch-polaroid:nth-child(2) {
  transform: rotate(1.5deg);
  margin-top: 28px;
}

.branch-polaroid:nth-child(3) {
  transform: rotate(-1deg);
}

.branch-polaroid:hover {
  transform: rotate(0) translateY(-8px) scale(1.02);
  box-shadow: 0 20px 48px rgba(242,183,5,0.35);
}

.branch-img-wrap {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--black);
}

.branch-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.branch-polaroid:hover .branch-img-wrap img {
  transform: scale(1.06);
}

.branch-pin {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--black);
  color: var(--yellow);
  font-family: var(--font-display);
  font-size: 1.05rem;
  padding: 8px 14px;
  letter-spacing: 0.05em;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.branch-polaroid:hover .branch-pin {
  opacity: 1;
  transform: translateY(0);
}

.branch-label {
  text-align: center;
  padding: 18px 8px 22px;
}

.branch-label h3 {
  font-family: var(--font-brand);
  font-size: 2rem;
  color: var(--black);
  text-transform: uppercase;
  line-height: 1;
  margin: 0 0 6px;
  letter-spacing: 0.02em;
}

.branch-label p {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--black);
  opacity: 0.75;
  margin: 0;
}

.branch-kosher {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  background: var(--black);
  color: var(--yellow);
  padding: 3px 8px;
  border-radius: 3px;
  letter-spacing: 0.05em;
  vertical-align: middle;
  margin-inline-start: 6px;
  text-transform: none;
}

@media (max-width: 1199px) {
  /* Manifesto centered on mobile/tablet */
  .manifesto-text {
    text-align: center;
  }
  .manifesto-text .label,
  .manifesto-text h2,
  .manifesto-text p {
    text-align: center;
  }

  /* Footer centered on mobile/tablet */
  footer { text-align: center; }
  /* Menu vertical + centered on mobile/tablet (horizontal only on desktop) */
  .footer-nav ul {
    flex-direction: column;
    gap: 10px;
  }
  .footer-grid {
    text-align: center;
    justify-items: center;
  }
  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-brand img {
    margin-left: auto;
    margin-right: auto;
  }
  .footer-brand p {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
  .footer-col { align-items: center; }
  .footer-col ul {
    align-items: center;
  }
  .footer-col .hours-row {
    justify-content: center !important;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-align: center;
    width: 100%;
  }
  .footer-social {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-bottom {
    justify-content: center;
    text-align: center;
  }

  .branches { padding: 50px 0 30px; }
  .branches-header { margin-bottom: 28px; }
  .menu-preview { padding: 40px 0 20px; }
  /* Show "navigate" pin always on touch */
  .branch-pin { opacity: 1; transform: translateY(0); }
  /* Unified heading sizes — consistent visual hierarchy */
  .branches-mega { font-size: clamp(2rem, 8vw, 4rem); white-space: nowrap; }
  .section-title { font-size: clamp(2rem, 7vw, 3rem); }
  .event-cta-inner h2 { font-size: clamp(2.5rem, 9vw, 4rem); }
  .reveal-tagline h2 { font-size: min(7.5vw, 2.6rem); white-space: nowrap; }
  .manifesto-text h2 { font-size: clamp(2rem, 7vw, 3rem); }
  .event-cta {
    min-height: 0;
    padding: 60px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .branches-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  .branch-polaroid:nth-child(3) {
    grid-column: 1 / -1;
    max-width: 50%;
    margin: 0 auto;
  }

  /* Menu preview tablet: show cards with images in 2-col grid */
  .menu-preview-img-wrap { display: block; }
  .menu-preview-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
  }
  .menu-preview-card {
    background: var(--gray-light);
  }
  @media (hover: hover) {
    .menu-preview-card:hover { background: var(--gray-light); }
  }
  .menu-preview-info {
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
  }
  .menu-preview-name {
    margin: 0 0 6px;
    font-family: 'Heebo', Arial, sans-serif;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    line-height: 1.2;
    font-weight: 700;
  }
  .menu-preview-price {
    margin: 0;
    white-space: nowrap;
    font-family: var(--font-brand);
    font-size: 1.3rem;
    font-weight: 700;
  }
  .menu-preview-desc {
    grid-area: desc;
    margin: 0;
    font-size: 1.2rem;
    line-height: 1.75;
  }
  /* Merge preview-grid and fulllist into single continuous list */
  .menu-preview-fulllist {
    margin-top: 0;
    border-top: none;
  }
}

@media (max-width: 1199px) {
  .gallery-mega {
    font-weight: 900;
    -webkit-text-stroke: 3px var(--black);
    text-shadow:
      0 0 1px var(--black),
      1px 0 0 var(--black),
      -1px 0 0 var(--black),
      0 1px 0 var(--black),
      0 -1px 0 var(--black);
  }
}

@media (max-width: 480px) {
  .branches { padding: 40px 0 20px; }
  .branches-header { margin-bottom: 24px; }
  .menu-preview { padding: 30px 0 16px; }
  .featured { padding: 40px 0; }
  .manifesto { padding: 40px 0; }
  .branches-sub { font-size: 1.4rem; margin-top: 12px; }
  /* Unified mobile heading sizes */
  .branches-mega { font-size: clamp(1.6rem, 9vw, 3.2rem); white-space: nowrap; }
  .section-title { font-size: clamp(1.8rem, 8vw, 2.5rem); }
  .event-cta-inner h2 { font-size: clamp(2.2rem, 11vw, 3.2rem); }
  .reveal-tagline h2 { font-size: min(7.5vw, 2.6rem); }
  .manifesto-text h2 { font-size: clamp(1.8rem, 8vw, 2.5rem); }
  .branches-mega {
    font-size: clamp(1.8rem, 10vw, 4rem);
    white-space: nowrap;
  }
  .branches-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    max-width: 380px;
    margin: 0 auto;
  }
  .branch-polaroid:nth-child(3) {
    max-width: 100%;
  }
  .branch-polaroid:nth-child(2) { margin-top: 0; }
}

/* =============================================
   FOOTER
   ============================================= */

footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 60px 0 32px;
  font-family: var(--font-body);
}

.footer-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-brand img {
  height: 90px;
  margin-bottom: 16px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 260px;
  font-weight: 300;
  margin-inline: auto;
}

.footer-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

/* Desktop only: footer nav links in a horizontal row */
.footer-nav ul {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 28px;
}

.footer-col ul li a {
  color: var(--text-muted);
  font-size: 1.1rem;
  font-weight: 300;
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--white);
}

.footer-col .hours-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--text-muted);
  font-size: 1.05rem;
  font-weight: 300;
  margin-bottom: 10px;
}

.footer-col .hours-row span:first-child {
  color: var(--white);
  font-weight: 500;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 1.05rem;
  font-weight: 300;
}

.footer-legal {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.95rem;
}

.footer-legal a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-legal a:hover {
  color: var(--yellow);
}

.footer-legal span {
  color: rgba(255,255,255,0.25);
}

.footer-credit {
  margin-top: 16px;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1;
}

.footer-credit a {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.footer-credit img {
  height: 1.4em;
  width: auto;
  display: block;
}

@media (min-width: 481px) {
  .footer-credit { font-size: 0.85rem; gap: 10px; }
}

@media (min-width: 1200px) {
  .footer-credit { font-size: 0.9rem; gap: 12px; }
}

/* =============================================
   LEGAL PAGES (privacy / accessibility)
   ============================================= */

.legal-section {
  padding: 60px 0 120px;
  background: var(--black);
  color: var(--white);
}

.legal-content {
  max-width: 80%;
  margin-inline: auto;
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.85);
}

.legal-content h2 {
  font-family: var(--font-brand);
  font-size: 1.8rem;
  color: var(--yellow);
  margin: 36px 0 16px;
  letter-spacing: 0.02em;
}

.legal-content h3 {
  font-family: var(--font-brand);
  font-size: 1.35rem;
  color: var(--white);
  margin: 28px 0 12px;
  letter-spacing: 0.02em;
}

.legal-content p { margin-bottom: 16px; }
.legal-content ul, .legal-content ol { margin: 12px 24px 20px; }
.legal-content li { margin-bottom: 8px; }
.legal-content a { color: var(--yellow); }

@media (max-width: 1199px) {
  .legal-content { max-width: 92%; font-size: 1.05rem; }
  .legal-section { padding: 40px 0 80px; }
}

/* =============================================
   COOKIE BANNER
   ============================================= */

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
  background: var(--gray-light);
  border: 1px solid rgba(242,183,5,0.25);
  border-radius: 12px;
  padding: 18px 22px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  max-width: 1100px;
  margin-inline: auto;
}

.cookie-banner.visible {
  opacity: 1;
  transform: translateY(0);
}

.cookie-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-banner-text {
  flex: 1;
  min-width: 240px;
  margin: 0;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.6;
}

.cookie-banner-text a {
  color: var(--yellow);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-banner-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-banner-accept {
  min-width: 140px;
  min-height: 44px;
}

@media (max-width: 600px) {
  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 16px;
  }
  .cookie-banner-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }
  .cookie-banner-text { font-size: 0.9rem; text-align: center; }
  .cookie-banner-actions { justify-content: center; }
  .cookie-banner-accept { width: 100%; }
}

/* =============================================
   404 PAGE
   ============================================= */

.error-section {
  min-height: 100vh;
  padding-top: calc(var(--nav-height) + 40px);
  padding-bottom: 60px;
  display: flex;
  align-items: center;
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.error-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(242,183,5,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.error-inner {
  position: relative;
  text-align: center;
  max-width: 80%;
  margin-inline: auto;
}

.error-code {
  font-family: var(--font-brand);
  font-size: clamp(8rem, 22vw, 18rem);
  line-height: 0.9;
  color: var(--yellow);
  letter-spacing: 0.02em;
  margin: 0 0 12px;
  text-shadow: 0 0 60px rgba(242,183,5,0.25);
}

.error-title {
  font-family: var(--font-brand);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--white);
  letter-spacing: 0.02em;
  line-height: 1.1;
  margin: 0 0 20px;
  text-transform: uppercase;
}

.error-title span { color: var(--yellow); }

.error-text {
  font-family: var(--font-body);
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0 0 36px;
}

.error-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 1199px) {
  .error-inner { max-width: 92%; }
  .error-text { font-size: 1.05rem; }
  .error-actions .btn { min-width: 180px; }
}

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */

.page-hero {
  padding-top: calc(var(--nav-height) + 60px);
  padding-bottom: 8px;
  text-align: center;
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.page-hero + .menu-preview {
  padding-top: 24px;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: var(--yellow);
  opacity: 0.04;
  clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.page-hero .section-title {
  margin-bottom: 12px;
}

.page-hero p {
  color: var(--text-muted);
  font-family: 'Bamburger', 'Heebo', sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  margin-top: 12px;
}

/* =============================================
   MENU PAGE
   ============================================= */

.menu-section {
  padding: 60px 0 100px;
}

.menu-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-bottom: 0;
}

.menu-filter-btn {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 20px;
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  transition: color var(--transition);
  position: relative;
  bottom: -1px;
  border-bottom: 2px solid transparent;
}

.menu-filter-btn:hover {
  color: var(--white);
}

.menu-filter-btn.active {
  color: var(--yellow);
  border-bottom-color: var(--yellow);
}

.menu-category {
  display: none;
}

.menu-category.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

.menu-category-title {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 32px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(242, 183, 5, 0.2);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1px;
  background: rgba(255,255,255,0.04);
}

.menu-item {
  background: var(--black);
  padding: 28px 24px;
  transition: background var(--transition);
}

@media (hover: hover) {
  .menu-item:hover {
    background: var(--gray-light);
  }
}

.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 10px;
}

.menu-item-price {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--yellow);
  white-space: nowrap;
  flex-shrink: 0;
  font-weight: 700;
}

.menu-item-price .price-alt {
  font-size: 1.1rem;
  color: var(--text-muted);
  display: block;
  text-align: left;
  font-weight: 700;
}

/* Two prices on one line, equal weight + yellow (e.g. "₪57 200 ג' / ₪53 160 ג'") */
.menu-item-price--multi {
  white-space: normal;
  text-align: left;
  line-height: 1.3;
}

.menu-item-desc {
  font-family: var(--font-body);
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.75;
}

/* Chicken special card */
.menu-item.featured-item {
  background: var(--gray-light);
  border: 1px solid rgba(242, 183, 5, 0.3);
}

@media (hover: hover) {
  .menu-item.featured-item:hover {
    border-color: var(--yellow);
  }
}

@media (max-width: 1199px) {
  .menu-item.featured-item {
    background: var(--black);
    border: none;
  }
}

@media (min-width: 481px) and (max-width: 1199px) {
  .menu-item-price {
    font-size: 1.3rem;
  }
  .menu-item-price .price-alt {
    font-size: 1.05rem;
  }
}

@media (max-width: 480px) {
  .menu-item-price {
    font-size: 1.25rem;
  }
  .menu-item-price .price-alt {
    font-size: 1rem;
  }
}

/* =============================================
   ABOUT PAGE
   ============================================= */

.about-hero-img {
  width: 100%;
  height: 65vh;
  min-height: 400px;
  object-fit: cover;
  object-position: center top;
}

.about-content {
  padding: 80px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: stretch;
}

.about-grid > .animate.delay-2 {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.about-text h1 {
  font-family: var(--font-brand);
  font-size: clamp(2rem, 4vw, 3rem);
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 28px;
}

.about-text h1 span { color: var(--yellow); }

.about-text p {
  color: var(--text-muted);
  font-family: 'Bamburger', 'Heebo', sans-serif;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.85;
  margin-bottom: 20px;
}

.about-manifesto {
  background: var(--yellow);
  color: var(--black);
  padding: 40px;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-manifesto h3 {
  font-family: var(--font-brand);
  font-size: clamp(2.5rem, 6vw, 5rem);
  text-transform: uppercase;
  line-height: 1;
  margin: 0;
  letter-spacing: 0.02em;
}

.about-manifesto p {
  font-size: 1.1rem;
  line-height: 1.8;
}

.about-values {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-value {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.about-value-num {
  font-family: var(--font-brand);
  font-size: 2.5rem;
  color: var(--yellow);
  line-height: 1;
  min-width: 56px;
}

.about-value-text h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.about-value-text p {
  color: var(--text-muted);
  font-family: 'Bamburger', 'Heebo', sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.6;
}

/* =============================================
   CONTACT PAGE
   ============================================= */

.contact-section {
  padding: 60px 0 100px;
}

/* === BRANCHES INFO (3 cards) === */
.contact-branches-section {
  padding: 80px 0 60px;
  background: var(--black);
}

.contact-section-title {
  font-family: var(--font-brand);
  font-size: clamp(2.5rem, 5vw, 4rem);
  text-align: center;
  text-transform: uppercase;
  margin: 0 0 60px;
  line-height: 1;
}

.contact-section-title span { color: var(--yellow); }

.contact-branches-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.contact-branch-card {
  background: var(--gray-light);
  padding: 36px 28px;
  border: 1px solid rgba(242,183,5,0.15);
  transition: border-color var(--transition), transform var(--transition);
}

.contact-branch-card:hover {
  border-color: var(--yellow);
  transform: translateY(-4px);
}

.contact-branch-name {
  font-family: var(--font-brand);
  font-size: 2rem;
  text-transform: uppercase;
  color: var(--yellow);
  margin: 0 0 12px;
  line-height: 1;
}

.contact-branch-address {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--white);
  margin: 0 0 12px;
}

.contact-branch-phone {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: 0.04em;
  transition: color var(--transition);
}

.contact-branch-phone:hover { color: var(--yellow); }

.contact-branch-hours {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 16px;
  margin-bottom: 20px;
}

.contact-branch-hours div {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 10px;
  font-weight: 300;
}

.contact-branch-hours div span {
  font-family: var(--font-body);
  font-weight: 300;
}

.contact-branch-hours div span:first-child {
  color: var(--white);
  font-weight: 300;
}

.contact-branch-nav {
  display: inline-flex;
  align-items: center;
  color: var(--yellow);
  transition: opacity var(--transition);
}

.contact-branch-nav svg {
  width: 36px;
  height: 36px;
  display: block;
}

.contact-branch-nav:hover { opacity: 0.7; }

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

/* === LEAD FORM === */
.contact-form-section {
  padding: 80px 0 120px;
  background: var(--gray-light);
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}

.contact-form-intro .label {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.2em;
  color: var(--yellow);
  text-transform: uppercase;
  margin: 0 0 16px;
  display: block;
}

.contact-form-intro h2 {
  font-family: var(--font-brand);
  font-size: clamp(2.5rem, 5vw, 4rem);
  text-transform: uppercase;
  line-height: 1;
  margin: 0 0 24px;
}

.contact-form-intro h2 span { color: var(--yellow); }

.contact-form-sub {
  font-family: var(--font-body);
  font-size: 1.2rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0 0 24px;
}

.contact-form-or {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--white);
}

.contact-form-or a {
  color: var(--yellow);
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.04em;
}

.lead-form {
  background: var(--black);
  padding: 40px 36px;
  border: 1px solid rgba(242,183,5,0.2);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.lead-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.lead-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.lead-field span {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: var(--yellow);
  text-transform: uppercase;
}

.lead-field input,
.lead-field select,
.lead-field textarea {
  background: var(--gray-light);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 14px 16px;
  outline: none;
  transition: border-color var(--transition), background var(--transition);
  font-weight: 400;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* iOS Safari: date input ignores width, expands beyond container.
   Force flex layout + display:block on inner field to clamp width. */
.lead-field input[type="date"] {
  -webkit-appearance: none;
  appearance: none;
  display: block;
  min-height: 52px;
}
.lead-field input[type="date"]::-webkit-date-and-time-value {
  text-align: start;
}

.lead-field textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.5;
}

.lead-field select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23F2B705' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 16px center;
  padding-left: 40px;
}

.lead-field input:focus,
.lead-field select:focus,
.lead-field textarea:focus {
  border-color: var(--yellow);
  background: #0d0d0d;
}

.lead-field input::placeholder,
.lead-field textarea::placeholder {
  color: rgba(255,255,255,0.35);
}

.lead-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 8px 0 4px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.75);
  cursor: pointer;
}

.lead-consent input[type="checkbox"] {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--yellow);
  cursor: pointer;
}

.lead-consent a {
  color: var(--yellow);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.lead-consent a:hover { color: var(--yellow-dark); }

.lead-submit {
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  padding: 18px 28px;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  margin-top: 8px;
}

.lead-submit:hover {
  background: var(--yellow-dark);
  transform: translateY(-2px);
}

.lead-submit-loading { display: none; }

.lead-form.loading .lead-submit-text { display: none; }
.lead-form.loading .lead-submit-loading { display: inline; }
.lead-form.loading .lead-submit { opacity: 0.7; pointer-events: none; }

.lead-status {
  font-family: var(--font-body);
  font-size: 1.05rem;
  margin: 0;
  min-height: 1.5em;
  text-align: center;
}

.lead-status.success { color: var(--yellow); }
.lead-status.error { color: #ff6b6b; }

@media (max-width: 1199px) {
  .contact-branches-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 80%;
    margin-inline: auto;
  }

  .contact-branches-section {
    padding: 48px 0 32px;
  }

  .contact-section-title {
    margin-bottom: 32px;
  }

  .contact-branch-card {
    text-align: center;
    padding: 28px 24px;
  }

  .contact-branch-hours div {
    justify-content: center;
    gap: 16px;
  }

  .contact-form-section {
    padding: 48px 0 64px;
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    justify-items: center;
  }

  .contact-form-intro {
    text-align: center;
    max-width: 80%;
    margin-inline: auto;
  }

  .contact-form-intro .label {
    text-align: center;
  }

  .contact-form-sub {
    font-size: 1.05rem;
    margin-bottom: 16px;
  }

  .lead-form {
    width: 100%;
    max-width: 80%;
    margin-inline: auto;
    padding: 32px 28px;
    gap: 16px;
  }

  .lead-row {
    gap: 16px;
  }

  .page-hero {
    padding-top: calc(var(--nav-height) + 32px);
    padding-bottom: 32px;
  }

  .page-hero p {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .lead-row { grid-template-columns: 1fr; gap: 12px; }
  .lead-form { padding: 24px 18px; max-width: 100%; gap: 14px; }
  .contact-branch-card { padding: 24px 18px; }
  .contact-branches-grid { max-width: 100%; }
  .contact-branches-section { padding: 32px 0 24px; }
  .contact-section-title { margin-bottom: 24px; }

  .contact-form-section { padding: 32px 0 48px; }
  .contact-form-intro { max-width: 100%; }
  .contact-form-intro h2 { font-size: clamp(2rem, 8vw, 2.6rem); margin-bottom: 16px; }
  .contact-form-grid { gap: 24px; }

  .page-hero {
    padding-top: calc(var(--nav-height) + 20px);
    padding-bottom: 24px;
  }
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info h2 {
  font-family: var(--font-brand);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 40px;
}

.contact-info h2 span { color: var(--yellow); }

.contact-block {
  margin-bottom: 36px;
}

.contact-block-label {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 10px;
}

.contact-block-value {
  font-size: 1.05rem;
  color: var(--white);
  line-height: 1.7;
}

.contact-block-value a {
  color: var(--white);
  transition: color var(--transition);
}

.contact-block-value a:hover {
  color: var(--yellow);
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table tr {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.hours-table td {
  padding: 10px 0;
  font-size: 1.05rem;
  color: var(--text-muted);
}

.hours-table td:first-child {
  color: var(--white);
  font-weight: 500;
}

.hours-table td:last-child {
  text-align: left;
}

.contact-order {
  background: var(--gray-light);
  padding: 48px 40px;
}

.contact-order h3 {
  font-family: var(--font-brand);
  font-size: 1.8rem;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 12px;
}

.contact-order h3 span { color: var(--yellow); }

.contact-order p {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

.contact-order-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--yellow);
  color: var(--black);
  padding: 18px 32px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: background var(--transition), transform var(--transition);
  margin-bottom: 12px;
  width: 100%;
  justify-content: center;
}

.contact-order-btn:hover {
  background: var(--yellow-dark);
  transform: translateY(-2px);
}

.contact-order-btn svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.contact-order-note {
  font-size: 0.95rem;
  color: var(--text-muted);
  text-align: center;
}

/* =============================================
   BRANCH NAV BUTTON
   ============================================= */

.branch-nav-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 24px;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: background var(--transition), transform var(--transition);
}

.branch-nav-btn:hover {
  background: var(--yellow-dark);
  transform: translateY(-2px);
}

/* =============================================
   MENU PREVIEW SECTION
   ============================================= */

.menu-preview {
  padding: 100px 0;
  background: var(--black);
}

.menu-preview-header {
  margin-bottom: 16px;
}

.menu-preview-header .label {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.25em;
  color: var(--yellow);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.menu-preview-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.menu-tab {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 28px;
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  transition: color var(--transition);
  position: relative;
  bottom: -1px;
  border-bottom: 2px solid transparent;
}

.menu-tab .tab-text-short { display: none; }

.menu-tab:hover { color: var(--white); }

.menu-tab.active {
  color: var(--yellow);
  border-bottom-color: var(--yellow);
}

.menu-tab-content {
  display: none;
}

.menu-tab-content.active {
  display: block;
  animation: fadeIn 0.35s ease;
}

/* Kosher / Non-kosher toggle.
   Home (index, base): aligned right; centered on tablet/mobile (≤1199px).
   Menu page (.page-hero present): centered at all sizes — see override below. */
.menu-kosher-toggle {
  display: flex;
  justify-content: flex-start;
  margin: 0 0 28px;
}

/* Menu page only: toggle centered on every screen size */
.page-hero + .menu-preview .menu-kosher-toggle {
  justify-content: center;
}

.kosher-toggle-btn {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 24px;
  min-height: 44px;
  background: none;
  border: 1px solid var(--yellow);
  color: var(--text-muted);
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}

/* pill shape: first/last get the rounded outer edges */
.kosher-toggle-btn:first-child {
  border-radius: 0 999px 999px 0;
  border-inline-start: none;
}
.kosher-toggle-btn:last-child {
  border-radius: 999px 0 0 999px;
}

.kosher-toggle-btn:hover:not(.active) { color: var(--white); }

.kosher-toggle-btn.active {
  background: var(--yellow);
  color: var(--black);
}

/* Visibility engine — JS sets .mode-kosher / .mode-nonkosher on .menu-preview.
   Specificity (0,2,1) beats .menu-tab-content.active (0,2,0). No !important. */
.menu-preview.mode-kosher [data-menu="nonkosher"] { display: none; }
.menu-preview.mode-nonkosher [data-menu="kosher"] { display: none; }

.menu-preview-cat-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--yellow);
  letter-spacing: 0.05em;
  margin: 0 0 28px;
  text-transform: uppercase;
  text-align: center;
}

.menu-preview-fulllist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.menu-preview-fulllist .menu-item {
  border-bottom: 1px solid rgba(255,255,255,0.08);
  border-left: 1px solid rgba(255,255,255,0.08);
}

/* JS marks the right-column (row-start in RTL) visible item; falls back to
   nth-child when JS hasn't run (e.g. single un-toggled list). */
.menu-preview-fulllist .menu-item:nth-child(2n) {
  border-left: none;
}
.menu-preview-fulllist .menu-item.menu-item--rowstart {
  border-left: none;
}
.menu-preview-fulllist .menu-item.menu-item--rowmid {
  border-left: 1px solid rgba(255,255,255,0.08);
}

@media (max-width: 480px) {
  .menu-preview-fulllist {
    grid-template-columns: 1fr;
  }
  .menu-preview-fulllist .menu-item {
    border-left: none !important;
  }
  .menu-preview-price {
    font-size: 1.25rem;
  }
  /* Tabs: always 2 rows (4 + 3 centered) — no horizontal scroll */
  .menu-preview-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px 8px;
    margin: 0 0 32px;
    padding: 0;
    border-bottom: none;
  }
  .menu-tab {
    flex: 0 0 calc(25% - 8px);
    padding: 14px 4px;
    font-size: 1.1rem;
    letter-spacing: 0.04em;
    white-space: nowrap;
    text-align: center;
  }
}

.menu-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.menu-preview-card {
  background: var(--gray-light);
  overflow: hidden;
  transition: background var(--transition);
  display: flex;
  flex-direction: column;
}

.menu-preview-card:hover { background: #222; }

@media (max-width: 1199px) {
  .menu-preview-grid {
    background: transparent;
    gap: 0;
  }
  .menu-preview-card {
    background: var(--black);
  }
  .menu-preview-card:hover { background: var(--black); }

  /* Home page: toggle + title centered on mobile/tablet (desktop stays right) */
  .menu-kosher-toggle { justify-content: center; }
  .menu-preview-header .section-title { text-align: center; }
}

.menu-preview-img-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.menu-preview-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.menu-preview-card:hover .menu-preview-img {
  transform: scale(1.06);
}

.menu-preview-info {
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.menu-preview-name {
  margin: 0 0 6px;
  font-family: 'Heebo', Arial, sans-serif;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.2;
  font-weight: 700;
}

.menu-preview-desc {
  flex: 1;
  font-family: var(--font-body);
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 12px;
}

.menu-preview-price {
  font-family: var(--font-brand);
  font-size: 1.3rem;
  color: var(--yellow);
}

/* List style for sides/drinks */
.menu-preview-list {
  grid-template-columns: 1fr;
  gap: 0;
  background: rgba(255,255,255,0.03);
}

.menu-preview-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background var(--transition);
}

.menu-preview-item:hover { background: var(--gray-light); }

.menu-preview-item-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.menu-preview-item-price {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--yellow);
}

.menu-preview-footer {
  text-align: center;
  margin-top: 48px;
}

/* =============================================
   BURGER REVEAL — yellow word stack + floating burger
   ============================================= */

.burger-reveal {
  position: relative;
  background: var(--black);
  padding: 140px 0 160px;
  overflow: hidden;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.burger-reveal::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(242,183,5,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(242,183,5,0.05) 0%, transparent 50%);
  pointer-events: none;
}

.reveal-mega-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  overflow: hidden;
}

.reveal-mega {
  font-family: var(--font-brand);
  font-size: clamp(8rem, 22vw, 22rem);
  line-height: 0.85;
  text-align: center;
  margin: 0;
  color: transparent;
  -webkit-text-stroke: 2px rgba(242,183,5,0.4);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  white-space: nowrap;
  user-select: none;
}

.reveal-mega-track { display: none; }
.reveal-mega-static { display: inline; }

.reveal-burger {
  position: relative;
  z-index: 2;
  grid-column: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.reveal-burger img {
  width: 100%;
  max-width: 760px;
  height: auto;
  display: block;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
  will-change: transform, opacity;
  transform: translate3d(0, var(--reveal-y, 0), 0) scale(var(--reveal-s, 1));
  opacity: var(--reveal-o, 1);
}

.reveal-tagline {
  position: relative;
  z-index: 2;
  grid-column: 2;
  padding: 0 60px 0 40px;
  text-align: right;
}

.reveal-label {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--yellow);
  letter-spacing: 0.25em;
  margin: 0 0 20px;
  text-transform: uppercase;
  display: block;
}

.reveal-tagline h2 {
  font-family: var(--font-brand);
  font-size: clamp(2rem, 5vw, 4rem);
  color: var(--white);
  text-transform: uppercase;
  line-height: 0.95;
  margin: 0 0 24px;
  letter-spacing: 0;
}

.reveal-tagline h2 span {
  color: var(--yellow);
}

.reveal-tagline h2 span.reveal-h2-muted {
  display: block;
  color: var(--white);
}

.reveal-sub {
  font-size: 1.4rem;
  color: var(--white);
  line-height: 1.7;
  margin: 0 0 36px;
}

@media (max-width: 1199px) {
  .burger-reveal {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: calc(var(--nav-height) + 40px) 0 0;
    height: auto;
    min-height: 0;
    text-align: center;
    background: var(--yellow);
    color: var(--black);
    justify-content: center;
    align-items: center;
  }
  .reveal-tagline { order: 1; }
  .reveal-burger { order: 2; }
  .burger-reveal::before { display: none; }
  .reveal-burger { grid-column: 1; padding: 0; align-self: stretch; }
  .reveal-burger img { margin-bottom: -4px; }
  .reveal-burger img { max-width: 320px; height: auto; }
  .reveal-tagline { grid-column: 1; padding: 0 32px; text-align: center; }
  .reveal-label { color: var(--black); }
  .reveal-tagline h2 { color: var(--black); white-space: nowrap; font-size: min(7.5vw, 2.6rem); }
  .reveal-tagline h2 span { color: var(--black); -webkit-text-stroke: 0; }
  .reveal-tagline h2 span.reveal-h2-muted { color: rgba(0,0,0,0.65); -webkit-text-stroke: 0; }
  .reveal-sub { color: rgba(0,0,0,0.7); }
  .reveal-tagline .btn-primary {
    background: var(--black);
    color: var(--yellow);
  }
  .reveal-tagline .btn-primary:hover {
    background: var(--gray-light);
  }

  .reveal-mega-wrap { display: none; }
}

@keyframes revealMarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .reveal-mega-track { animation: none; }
}

@media (max-width: 480px) {
  .burger-reveal { padding: calc(var(--nav-height) + 24px) 0 0; gap: 16px; height: auto; }
  .reveal-burger { padding: 0; }
  .reveal-burger img { max-width: 220px; }
  .reveal-tagline h2 { font-size: min(7.5vw, 2.6rem); }
}

/* =============================================
   EVENT / CTA SECTION
   ============================================= */

.event-cta {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  text-align: center;
}

.event-cta-bg {
  position: absolute;
  inset: 0;
}

.event-cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  transform: scale(1.15);
  transform-origin: right center;
}

.event-cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.event-cta-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.event-cta-inner .label {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.25em;
  color: var(--yellow);
  text-transform: uppercase;
  margin-bottom: 20px;
  display: block;
}

.event-cta-inner h2 {
  font-family: var(--font-brand);
  font-size: clamp(3rem, 8vw, 6rem);
  text-transform: uppercase;
  line-height: 0.95;
  margin-bottom: 24px;
}

.event-cta-inner h2 span {
  color: var(--yellow);
  display: inline;
}

.event-cta-sub {
  color: var(--text-muted);
  font-size: 1.4rem;
  line-height: 1.7;
  margin-bottom: 36px;
}

/* =============================================
   GALLERY / INSTAGRAM SECTION
   ============================================= */

.gallery-section {
  padding: 0 0 0;
  background: var(--yellow);
}

.gallery-header-loud {
  padding: 100px 20px 80px;
  text-align: center;
  background: var(--yellow);
  color: var(--black);
}

.gallery-mega {
  font-family: var(--font-brand);
  font-size: clamp(3rem, 9vw, 8rem);
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--black);
  letter-spacing: 0.01em;
  margin: 0 0 24px;
}

.gallery-mega span {
  color: var(--black);
  display: inline-block;
}

.gallery-handle {
  display: inline-block;
  direction: ltr;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--black);
  letter-spacing: 0.05em;
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-thickness: 2px;
  transition: opacity var(--transition);
}

.gallery-handle:hover { opacity: 0.7; }

.gallery-social {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-top: 28px;
}

.gallery-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: var(--black);
  color: var(--yellow);
  border-radius: 50%;
  transition: transform var(--transition), background var(--transition), color var(--transition);
}

.gallery-social a:hover {
  transform: translateY(-3px) scale(1.08);
  background: var(--yellow);
  color: var(--black);
}

.gallery-social svg {
  width: 24px;
  height: 24px;
  display: block;
}

.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 18px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  transition: color var(--transition), border-color var(--transition), transform var(--transition);
}

.footer-social a:hover {
  color: var(--yellow);
  border-color: var(--yellow);
  transform: translateY(-2px);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  display: block;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
  padding: 6px;
  background: var(--yellow);
}

.gallery-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
  border: 3px solid var(--black);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img { transform: scale(1.08); }

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow);
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover .gallery-item-overlay { opacity: 1; }

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 1199px) {
  .manifesto-inner,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  /* DELIVERY — stack: image on top, text below; center */
  .delivery {
    padding: 64px 0;
  }
  .delivery-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .delivery-text {
    max-width: 80%;
    margin-inline: auto;
    order: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .delivery-perks {
    display: inline-flex;
    text-align: start;
    margin-inline: auto;
  }
  .delivery-img {
    order: 1;
    max-width: 480px;
    margin-inline: auto;
  }

  /* CLUB — stack: intro on top, perks below; center */
  .club {
    padding: 64px 0;
  }
  .club-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  .club-intro {
    max-width: 80%;
    margin-inline: auto;
    order: 1;
  }
  .club-actions {
    justify-content: center;
  }
  .club-perks {
    order: 2;
    max-width: 540px;
    margin-inline: auto;
  }
  .club-mega {
    font-size: clamp(6rem, 26vw, 14rem);
  }

  .menu-preview-grid:not(.menu-preview-list) {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .manifesto-img {
    order: -1;
  }

  .manifesto-img img {
    height: 360px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    justify-items: center;
    text-align: center;
  }

  .footer-brand {
    grid-column: 1;
  }
}

/* Tablet + Mobile: hamburger right (RTL start), logo center, IG left (RTL end) — balanced */
@media (max-width: 1199px) {
  .menu-tab .tab-text-full { display: none; }
  .menu-tab .tab-text-short { display: inline; }

  .navbar {
    height: 84px;
  }

  .navbar-inner {
    width: 100%;
    padding: 0 16px;
    grid-template-columns: 1fr auto 1fr;
  }

  .navbar-col-right,
  .navbar-col-left { display: none; }

  /* In RTL: justify-self:start = right edge, end = left edge */
  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 7px;
    align-items: center;
    justify-content: center;
    justify-self: start;
    align-self: center;
    grid-column: 1;
    grid-row: 1;
    padding: 10px;
    min-width: 48px;
    min-height: 48px;
  }
  .hamburger span {
    width: 32px;
  }

  .navbar-logo {
    display: flex;
    align-items: center;
    justify-self: center;
    align-self: center;
    grid-column: 2;
    grid-row: 1;
  }

  .navbar-logo img { width: auto; height: 63px; }

  .navbar-cta-mobile {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: end;
    align-self: center;
    grid-column: 3;
    grid-row: 1;
    height: 48px;
    padding: 0 20px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .navbar-cta-mobile {
    height: 44px;
    padding: 0 16px;
    font-size: 0.95rem;
    border-radius: 6px;
  }
}

@media (max-width: 480px) {
  .navbar {
    height: 78px;
  }

  .navbar-inner {
    padding: 0 16px;
  }

  .navbar-logo img { width: auto; height: 58px; }

  /* Hero: centered, mobile-strong */
  .hero { min-height: 600px; }
  .hero-content {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    left: auto;
    text-align: center;
  }
  .hero-overlay {
    background: linear-gradient(
      to top,
      rgba(0, 0, 0, 0.88) 0%,
      rgba(0, 0, 0, 0.55) 60%,
      rgba(0, 0, 0, 0.3) 100%
    );
  }
  .hero-title {
    font-size: clamp(4.5rem, 18vw, 7rem);
  }
  .hero-subtitle { font-size: 1.4rem; }
  .hero-label { font-size: 1.1rem; }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
    gap: 12px;
  }
  .hero-actions .btn {
    width: 100%;
    text-align: center;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .featured-grid {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .featured-card {
    aspect-ratio: 16/9;
  }

  .order-strip-inner {
    flex-direction: column;
    gap: 16px;
  }

  .menu-preview-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .event-cta {
    min-height: 0;
    padding: 50px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .event-cta-inner {
    width: 100%;
    margin: 0 auto;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .menu-filters {
    overflow-x: auto;
    flex-wrap: nowrap;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .menu-filters::-webkit-scrollbar { display: none; }

  .menu-grid {
    grid-template-columns: 1fr;
  }

  .about-manifesto {
    padding: 28px;
  }

  .contact-order {
    padding: 32px 24px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: clamp(4rem, 20vw, 6rem);
  }

  .btn {
    padding: 12px 28px;
    font-size: 1rem;
  }

  .section-title {
    font-size: clamp(1.8rem, 8vw, 2.8rem);
  }
}

/* About-page detail image (was inline style) — desktop preserved */
.about-detail-img-wrap {
  margin-top: 2px;
  flex: 1;
  min-height: 0;
  position: relative;
}
.about-detail-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* =============================================
   MOBILE/TABLET IMAGE FIXES — prevent cropping
   ============================================= */

/* Tablet (≤1199) — relax hard heights, keep subject centered */
@media (max-width: 1199px) {
  /* manifesto image: drop fixed height, use natural ratio */
  .manifesto-img img {
    height: auto;
    object-position: center;
  }

  /* about hero — shorter, keep subject visible */
  .about-hero-img {
    height: auto;
    max-height: 50vh;
    aspect-ratio: 16/9;
    object-position: center;
  }

  /* event-cta bg — keep cover (decorative full-bleed) but center subject */
  .event-cta-bg img {
    object-position: center;
  }

  /* hero bg — re-center so burger stays visible on narrower viewports */
  .hero-bg {
    background-position: center center;
  }

  /* About-page detail image — relax fixed height */
  .about-detail-img-wrap {
    position: static;
    flex: none;
  }
  .about-detail-img {
    position: static;
    height: auto;
    aspect-ratio: auto;
    object-fit: contain;
    object-position: center;
  }
}

/* Mobile (≤768) — strongest fixes */
@media (max-width: 480px) {
  /* manifesto image: contain on mobile, no crop */
  .manifesto-img img {
    height: auto;
    aspect-ratio: auto;
    object-fit: contain;
    max-height: 70vh;
  }

  /* About-page detail image — match manifesto width on mobile */
  .about-detail-img-wrap {
    position: static;
    flex: none;
  }
  .about-detail-img {
    position: static;
    width: 100%;
    height: auto;
    aspect-ratio: auto;
    object-fit: contain;
    max-height: none;
  }

  /* About hero image — full subject visible */
  .about-hero-img {
    height: auto;
    min-height: 0;
    max-height: 45vh;
    aspect-ratio: 4/3;
    object-fit: cover;
    object-position: center;
  }

  /* Branch polaroids — square ratio less tight crop */
  .branch-img-wrap {
    aspect-ratio: 1/1;
  }
  .branch-img-wrap img {
    object-position: center;
  }

  /* Menu preview cards — keep grid, center subject */
  .menu-preview-img-wrap {
    aspect-ratio: 4/3;
  }
  .menu-preview-img {
    object-position: center;
  }

  /* Featured cards — wider ratio, less crop */
  .featured-card {
    aspect-ratio: 4/3;
  }
  .featured-card-img {
    object-position: center;
  }

  /* Gallery — keep square grid but center subject */
  .gallery-item img {
    object-position: center;
  }

  /* Hero bg on mobile — adjust focal point */
  .hero-bg {
    background-position: 70% center;
  }

  /* Reveal burger — keep contain, no clip */
  .reveal-burger img {
    object-fit: contain;
  }

  /* CLUB — tighten on mobile */
  .club {
    padding: 48px 0;
  }
  .club-intro {
    max-width: 90%;
  }
  .club-sub {
    font-size: 1.1rem;
  }
  .club-actions .btn {
    flex: 1 1 auto;
  }
  .club-perks {
    gap: 12px;
  }
  .club-perk-icon {
    width: 48px;
    height: 48px;
  }
  .club-perk-text {
    font-size: 0.85rem;
  }
  .club-mega {
    font-size: clamp(4.5rem, 30vw, 9rem);
  }

}

/* =============================================
   RESPONSIVE GUARDS
   Mobile ≤480 · Tablet 481–1199 · Desktop ≥1200
   ============================================= */

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

img, video, iframe, svg {
  max-width: 100%;
}

/* Tablet + Mobile (<1200) — center content, prevent overflow */
@media (max-width: 1199px) {
  .container {
    max-width: 100%;
    padding: 0 24px;
  }

  /* Hero center on tablet/mobile */
  .hero-title,
  .hero-title span {
    font-weight: 300;
  }
  .hero-content {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    left: auto;
    text-align: center;
  }
  .hero-actions {
    justify-content: center;
  }

  /* Menu tabs wrap + center (no horizontal scroll) */
  .menu-preview-tabs {
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px 8px;
    border-bottom: none;
    overflow-x: visible;
  }
  .menu-tab {
    flex: 0 0 auto;
  }

  /* Menu filters (menu page) — wrap instead of horizontal scroll */
  .menu-filters {
    flex-wrap: wrap;
    justify-content: center;
    overflow-x: visible;
  }

  /* Reveal tagline center already set by tablet block; ensure padding sane */
  .reveal-tagline {
    padding: 0 24px;
    text-align: center;
  }

  /* Branches grid padding align with container */
  .branches-grid {
    padding: 0;
  }

  /* Event CTA — keep inner readable width */
  .event-cta-inner {
    width: 100%;
    max-width: 720px;
    padding: 0 8px;
  }

  /* Section vertical rhythm — uniform tablet spacing */
  .menu-preview { padding: 64px 0; }
  .manifesto    { padding: 64px 0; }
  .event-cta    { padding: 64px 20px; }

  /* Image safety — never exceed container, preserve ratio.
     (.manifesto-img img capped to a card in the tablet-only block below) */
  .manifesto-img img,
  .branch-img-wrap img,
  .menu-preview-img,
  .featured-card-img,
  .gallery-item img,
  .about-hero-img,
  .about-detail-img,
  .event-cta-bg img {
    max-width: 100%;
  }
}

/* Tablet ONLY (481-1199): portrait manifesto image must not dominate the
   viewport. Cap to a modest centered card. Mobile (<=480) keeps its own
   contain rule and full container width — do NOT let this leak down. */
@media (min-width: 481px) and (max-width: 1199px) {
  .manifesto-img img {
    max-width: 420px;
    max-height: 60vh;
    margin-inline: auto;
  }
}

/* Mobile (≤480) — tighten paddings, single column, larger tap targets */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .menu-tab {
    flex: 0 0 calc(33.333% - 8px);
    padding: 12px 4px;
    min-height: 44px;
  }

  .branches-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 0 auto;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .event-cta {
    padding: 48px 16px;
  }

  .menu-preview { padding: 48px 0; }
  .manifesto    { padding: 48px 0; }
  .branches     { padding: 48px 0 32px; }

  /* Tap target floor on all primary buttons */
  .btn,
  .lead-submit,
  .contact-order-btn {
    min-height: 44px;
  }
}

/* =============================================
   ABOUT PAGE — Tablet + Mobile centering
   ============================================= */

@media (max-width: 1199px) {
  .about-content {
    padding: 48px 0 64px;
  }

  .about-grid {
    justify-items: center;
    text-align: center;
  }

  .about-text,
  .about-text h1,
  .about-text p {
    text-align: center;
  }

  .about-text {
    max-width: 80%;
    margin-inline: auto;
  }

  .about-values {
    align-items: center;
  }

  .about-value {
    display: grid;
    grid-template-columns: 60px 1fr;
    align-items: start;
    text-align: start;
    width: 100%;
    max-width: 320px;
    margin-inline: auto;
    gap: 16px;
  }

  .about-value-num {
    text-align: center;
    min-width: 0;
  }

  .about-value-text h4,
  .about-value-text p {
    text-align: start;
  }

  .about-manifesto {
    display: none;
  }

  .about-detail-img-wrap {
    max-width: 80%;
    margin-inline: auto;
  }
}

@media (max-width: 480px) {
  .about-content {
    padding: 32px 0 48px;
  }

  .about-text,
  .about-value,
  .about-manifesto,
  .about-detail-img-wrap {
    max-width: 100%;
  }

  .about-value {
    display: grid;
    grid-template-columns: 60px 1fr;
    align-items: start;
    width: 100%;
    max-width: 320px;
    margin-inline: auto;
    gap: 16px;
  }

  .about-value-num {
    text-align: center;
    min-width: 0;
  }

  .about-value-text {
    min-width: 0;
  }

  .about-value-text h4,
  .about-value-text p {
    text-align: start;
  }
}

@media (max-width: 1199px) {
  .hero-video-bg--desktop {
    display: none;
  }

  .hero-video-bg--mobile {
    display: block;
  }
}

/* =============================================
   UPDATES MARQUEE (homepage עדכונים)
   Mobile-first: base = mobile, scale up via min-width
   ============================================= */
.updates-marquee {
  background: var(--black);
  padding: 32px 0 36px;
  overflow: hidden;
}
.updates-marquee-header {
  text-align: center;
  margin-bottom: 20px;
  padding: 0 16px;
}
.updates-marquee-title {
  color: var(--yellow);
  font-family: var(--font-brand);
  font-size: clamp(28px, 7vw, 44px);
  font-weight: 700;
  letter-spacing: 0.04em;
  margin: 0;
  text-transform: uppercase;
}
.updates-marquee-viewport {
  width: 100%;
  overflow: hidden;
  direction: ltr;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.updates-marquee-track {
  display: flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  direction: ltr;
  animation: revealMarquee 28s linear infinite;
  will-change: transform;
}
.updates-marquee-track { pointer-events: none; }

.updates-marquee-img {
  height: 140px;
  width: 140px;
  aspect-ratio: 1 / 1;
  max-width: none;
  flex: 0 0 auto;
  object-fit: cover;
  border-radius: 8px;
  display: block;
  background: var(--gray-light);
}

@media (min-width: 481px) {
  .updates-marquee { padding: 40px 0 48px; }
  .updates-marquee-header { margin-bottom: 24px; }
  .updates-marquee-track { gap: 14px; animation-duration: 35s; }
  .updates-marquee-img { height: 170px; width: 170px; border-radius: 10px; }
}

@media (min-width: 1200px) {
  .updates-marquee { padding: 56px 0 64px; }
  .updates-marquee-header { margin-bottom: 28px; }
  .updates-marquee-track { gap: 20px; animation-duration: 45s; }
  .updates-marquee-img { height: 220px; width: 220px; border-radius: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  .updates-marquee-track { animation: none; }
}

/* =============================================
   GALLERY PAGE
   ============================================= */

.gallery-page {
  padding: 60px 0 100px;
  background: var(--black);
}

.gallery-page .gallery-item-overlay { display: none; }

.gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

@media (max-width: 1199px) {
  .gallery-page { padding: 40px 0 80px; }
  .gallery-page-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
}

@media (max-width: 480px) {
  .gallery-page { padding: 24px 0 60px; }
  .gallery-page-grid { grid-template-columns: repeat(2, 1fr); gap: 6px; }
}

/* =============================================
   EVENTS PAGE
   ============================================= */

.events-video {
  position: relative;
  width: 100%;
  min-height: 80vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  padding-top: var(--nav-height);
}

.events-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  z-index: 0;
}
.events-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.35) 45%,
    rgba(0,0,0,0.75) 100%);
  z-index: 1;
}

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

.events-video-content {
  max-width: 80%;
  margin-inline: auto;
  text-align: center;
  color: var(--white);
  padding: 60px 0;
}

.events-video-label {
  font-family: var(--font-body);
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  color: var(--yellow);
  margin: 0 0 20px;
}

.events-video-content h1 {
  font-family: var(--font-brand);
  font-size: clamp(2.8rem, 7vw, 6rem);
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 0.02em;
  margin: 0 0 20px;
  font-weight: 700;
}
.events-video-content h1 span { color: var(--yellow); }

.events-video-sub {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: rgba(255,255,255,0.88);
  line-height: 1.6;
  margin: 0;
  font-weight: 400;
}

@media (max-width: 1199px) {
  .events-video { min-height: 65vh; }
  .events-video-content { max-width: 90%; padding: 48px 0; }
}

@media (max-width: 480px) {
  .events-video { min-height: 55vh; }
  .events-video-content { max-width: 100%; padding: 32px 12px; }
  .events-video-content h1 { font-size: clamp(2rem, 9vw, 2.8rem); }
}

@media (max-width: 1199px) {
  .burger-reveal { cursor: pointer; }
}

