:root {
  --red: #C62828;
  --red-deep: #8f1c1c;
  --cream: #F4E9D6;
  --cream-dark: #e8d8ba;
  --gold: #D9A441;
  --gold-deep: #b9812c;
  --ink: #2a1c12;
  --white: #ffffff;
}

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

html, body {
  width: 100%;
  background: var(--ink);
  color: var(--ink);
  font-family: 'Cairo', sans-serif;
  overflow-x: hidden;
}

/* ============ PERSISTENT GLASS HEADER ============ */
#site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 300;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 36px;
  background: linear-gradient(180deg, rgba(20, 13, 7, 0.45) 0%, rgba(20, 13, 7, 0.08) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.nav-logo {
  font-size: 22px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.5px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.35);
}
.nav-cta {
  font-family: 'Cairo', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 9px 22px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}
.nav-cta:hover {
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-1px);
}

.nav-links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav-links a {
  font-size: 15px;
  font-weight: 700;
  color: inherit;
  text-decoration: none;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}
.nav-links a:hover { opacity: 1; }
.nav-links a.active { opacity: 1; color: var(--red); }

/* Solid variant — used on every inner page (no video behind it) */
#site-nav.solid {
  position: sticky;
  background: rgba(244, 233, 214, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 2px 24px rgba(42, 28, 18, 0.06);
}
#site-nav.solid .nav-logo { color: var(--red); text-shadow: none; }
#site-nav.solid .nav-links a { color: var(--ink); }
#site-nav.solid .nav-cta {
  color: var(--white);
  background: var(--red);
  border-color: var(--red);
}
#site-nav.solid .nav-cta:hover { background: var(--red-deep); }

@media (max-width: 760px) {
  .nav-links { display: none; }
}
@media (max-width: 620px) {
  #site-nav { height: 64px; padding: 0 20px; }
  .nav-logo { font-size: 18px; }
  .nav-cta { font-size: 12px; padding: 7px 16px; }
}

/* ============ SHARED SECTION HEADER PATTERN ============ */
.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--red);
  background: rgba(198, 40, 40, 0.08);
  padding: 6px 18px;
  border-radius: 999px;
}
.sec-title {
  margin-top: 20px;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 900;
  color: var(--ink);
}
.sec-lead {
  margin: 14px auto 0;
  max-width: 560px;
  font-size: 16px;
  line-height: 1.9;
  color: rgba(42, 28, 18, 0.65);
}

/* ============ BUTTONS ============ */
.btn-primary {
  display: inline-block;
  padding: 15px 44px;
  font-family: 'Cairo', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  background: var(--red);
  border: none;
  border-radius: 999px;
  cursor: pointer;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.25s ease;
  box-shadow: 0 14px 30px rgba(198, 40, 40, 0.28);
}
.btn-primary:hover {
  background: var(--red-deep);
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(198, 40, 40, 0.38);
}
.btn-ghost {
  display: inline-block;
  padding: 14px 40px;
  font-family: 'Cairo', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  background: transparent;
  border: 1.5px solid rgba(42, 28, 18, 0.2);
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.3s ease;
}
.btn-ghost:hover {
  border-color: var(--red);
  background: rgba(198, 40, 40, 0.05);
  transform: translateY(-2px);
}

/* ============ PAGE HERO (menu / about / contact banners) ============ */
.page-hero {
  position: relative;
  padding: 168px 24px 90px;
  text-align: center;
  background:
    radial-gradient(ellipse 60% 90% at 50% 0%, rgba(198,40,40,0.18) 0%, rgba(198,40,40,0) 60%),
    linear-gradient(165deg, var(--ink) 0%, #3d2a1a 100%);
  color: var(--white);
  overflow: hidden;
}
.page-hero .eyebrow {
  color: var(--gold);
  background: rgba(217, 164, 65, 0.12);
}
.page-hero h1 {
  margin-top: 20px;
  font-size: clamp(32px, 5.5vw, 58px);
  font-weight: 900;
}
.page-hero p {
  margin: 16px auto 0;
  max-width: 540px;
  font-size: 16px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.65);
}

/* ============ FOOTER ============ */
.site-footer {
  position: relative;
  z-index: 100;
  background: var(--ink);
  color: rgba(244, 233, 214, 0.75);
  padding: 72px 24px 0;
}
.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(244, 233, 214, 0.1);
}
.footer-logo {
  font-size: 24px;
  font-weight: 900;
  color: var(--white);
}
.footer-blurb {
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.9;
  max-width: 320px;
}
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(244, 233, 214, 0.08);
  color: var(--cream);
  transition: background 0.25s ease, transform 0.25s ease;
}
.footer-social a:hover { background: var(--red); transform: translateY(-2px); }
.footer-social svg { width: 17px; height: 17px; }

.footer-col h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-col a, .footer-col span {
  display: block;
  font-size: 14px;
  line-height: 2.4;
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  max-width: 1180px;
  margin: 0 auto;
  padding: 26px 0;
  text-align: center;
  font-size: 13px;
  color: rgba(244, 233, 214, 0.45);
}

@media (max-width: 820px) {
  .footer-inner { grid-template-columns: 1fr; gap: 36px; text-align: center; }
  .footer-social { justify-content: center; }
  .footer-blurb { margin-inline: auto; }
}

/* ============ LOADER ============ */
#loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
#loader-logo {
  font-weight: 900;
  font-style: italic;
  font-size: clamp(30px, 5vw, 48px);
  color: var(--red);
  letter-spacing: 1px;
}
#loader-rail {
  width: min(220px, 60vw);
  height: 3px;
  background: rgba(42, 28, 18, 0.15);
  border-radius: 3px;
  overflow: hidden;
}
#loader-fill {
  width: 0%;
  height: 100%;
  background: var(--red);
  transition: width 0.2s ease;
}

/* The pinned viewport-sized stage. GSAP ScrollTrigger pins this
   element while #scroll-space provides the scroll distance. */
#stage {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background: #000;
}

#scroll-space {
  height: 350vh;
  width: 100%;
  pointer-events: none;
}

/* ============ CANVAS — draws the current video frame, scrubbed by scroll ============ */
#fx-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}

/* ============ VIGNETTE for cinematic depth + finale text contrast ============ */
#vignette {
  position: absolute;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(10,6,3,0.55) 0%, rgba(10,6,3,0.0) 32%, rgba(10,6,3,0.0) 100%);
  opacity: 0;
}

/* ============ HERO COPY / FINAL REVEAL ============ */
#hero-copy {
  position: absolute;
  inset: 0;
  z-index: 40;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 4vh;
  text-align: center;
  pointer-events: none;
}

#hero-copy h1 {
  font-size: clamp(34px, 5.6vw, 68px);
  font-weight: 900;
  color: var(--white);
  opacity: 0;
  transform: translateY(24px);
  letter-spacing: 2px;
  text-shadow: 0 4px 24px rgba(0,0,0,0.35);
}

#hero-copy .tagline {
  margin-top: 6px;
  font-size: clamp(13px, 1.4vw, 18px);
  font-weight: 400;
  letter-spacing: 4px;
  color: var(--cream);
  opacity: 0;
  transform: translateY(16px);
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

#hero-copy #cta {
  display: inline-block;
  text-decoration: none;
  margin-top: 20px;
  padding: 14px 48px;
  font-family: 'Cairo', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  background: var(--red);
  border: none;
  border-radius: 999px;
  cursor: pointer;
  letter-spacing: 1px;
  opacity: 0;
  transform: translateY(16px) scale(0.96);
  pointer-events: auto;
  transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.25s ease;
  box-shadow: 0 14px 30px rgba(0,0,0,0.35);
}
#hero-copy #cta:hover {
  background: var(--red-deep);
  transform: translateY(14px) scale(1.03);
  box-shadow: 0 18px 36px rgba(0,0,0,0.45);
}

/* ============ SCROLL HINT ============ */
#scroll-hint {
  position: absolute;
  bottom: 46px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--white);
  opacity: 0.75;
  transition: opacity 0.6s ease;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
#scroll-hint span {
  font-size: 12px;
  letter-spacing: 3px;
  font-weight: 600;
}
.hint-line {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.4);
  position: relative;
  overflow: hidden;
}
.hint-line i {
  position: absolute;
  left: 0; top: -100%;
  width: 100%;
  height: 50%;
  background: var(--red);
  animation: hintFall 1.6s ease-in-out infinite;
}
@keyframes hintFall {
  0% { top: -50%; }
  100% { top: 100%; }
}

/* ============ PROGRESS RAIL ============ */
#progress-rail {
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 50;
  width: 2px;
  height: 160px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
}
#progress-fill {
  width: 100%;
  height: 0%;
  background: var(--red);
  border-radius: 2px;
  transition: height 0.05s linear;
}

@media (max-width: 720px) {
  #progress-rail { display: none; }
  #hero-copy { padding-top: 6vh; }
}

/* ============ MENU ============
   #stage stays fixed behind the whole page and freezes on its last
   frame once scrolling passes #scroll-space, so #menu floats on top
   of it as translucent glass — the video shows through as a living
   backdrop instead of being a separate "page 2". */
#menu {
  position: relative;
  z-index: 100;
  background: linear-gradient(180deg,
    rgba(244, 233, 214, 0.55) 0%,
    rgba(244, 233, 214, 0.88) 12%,
    rgba(244, 233, 214, 0.96) 100%);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 130px 24px 100px;
}

.menu-inner {
  max-width: 1180px;
  margin: 0 auto;
  text-align: center;
}

.menu-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--red);
  background: rgba(198, 40, 40, 0.08);
  padding: 6px 18px;
  border-radius: 999px;
}

.menu-inner h2 {
  margin-top: 20px;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 900;
  color: var(--ink);
}

.menu-lead {
  margin: 14px auto 0;
  max-width: 520px;
  font-size: 16px;
  line-height: 1.9;
  color: rgba(42, 28, 18, 0.65);
}

.menu-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  text-align: right;
}

.menu-item {
  position: relative;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(42, 28, 18, 0.08);
  border-radius: 20px;
  padding: 28px 24px;
  box-shadow: 0 10px 30px rgba(60, 30, 10, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.menu-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(60, 30, 10, 0.1);
}
.menu-item.featured {
  border-color: rgba(198, 40, 40, 0.3);
  background: linear-gradient(165deg, rgba(255, 250, 242, 0.88) 0%, rgba(255, 255, 255, 0.82) 60%);
}

.menu-badge {
  position: absolute;
  top: 18px;
  left: 24px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--white);
  background: var(--red);
  padding: 5px 12px;
  border-radius: 999px;
}

.menu-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(155deg, var(--cream) 0%, var(--cream-dark) 100%);
  color: var(--red-deep);
  margin-bottom: 18px;
}
.menu-icon svg { width: 26px; height: 26px; }

.menu-item h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}

.menu-item p {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(42, 28, 18, 0.6);
  min-height: 48px;
}

.menu-price {
  margin-top: 16px;
  font-size: 20px;
  font-weight: 900;
  color: var(--red);
}
.menu-price span {
  font-size: 12px;
  font-weight: 600;
  color: rgba(42, 28, 18, 0.5);
}

.menu-cta {
  display: inline-block;
  text-decoration: none;
  margin-top: 56px;
  padding: 16px 56px;
  font-family: 'Cairo', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  background: var(--red);
  border: none;
  border-radius: 999px;
  cursor: pointer;
  letter-spacing: 1px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.25s ease;
  box-shadow: 0 14px 30px rgba(198,40,40,0.28);
}
.menu-cta:hover {
  background: var(--red-deep);
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(198,40,40,0.38);
}

@media (max-width: 980px) {
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  #menu { padding: 80px 18px 70px; }
  .menu-grid { grid-template-columns: 1fr; }
}

/* ============ GENERIC PAGE WRAPPER (solid pages: menu/about/contact) ============ */
.page-body {
  position: relative;
  z-index: 5;
  background: var(--cream);
}
.page-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 90px 24px;
}
.page-section.tight { padding: 60px 24px; }
.page-section .center { text-align: center; }

/* ============ ABOUT PAGE ============ */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-story-visual {
  aspect-ratio: 4/5;
  border-radius: 28px;
  background: linear-gradient(155deg, var(--gold) 0%, var(--red) 100%);
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(60, 30, 10, 0.18);
}
.about-story-visual img {
  width: 100%; height: 100%; object-fit: cover;
  mix-blend-mode: luminosity;
  opacity: 0.85;
}
.about-story-text .eyebrow { margin-bottom: 4px; }
.about-story-text h2 {
  margin-top: 18px;
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 900;
  color: var(--ink);
  line-height: 1.4;
}
.about-story-text p {
  margin-top: 18px;
  font-size: 15.5px;
  line-height: 2;
  color: rgba(42, 28, 18, 0.7);
}

.about-quote {
  margin-top: 90px;
  text-align: center;
  padding: 0 24px;
}
.about-quote blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(24px, 3.4vw, 38px);
  color: var(--red-deep);
  max-width: 780px;
  margin: 0 auto;
  line-height: 1.6;
}
.about-quote cite {
  display: block;
  margin-top: 20px;
  font-style: normal;
  font-family: 'Cairo', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  color: rgba(42, 28, 18, 0.5);
}

.values-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.value-card {
  text-align: center;
  background: var(--white);
  border: 1px solid rgba(42, 28, 18, 0.07);
  border-radius: 20px;
  padding: 32px 22px;
  box-shadow: 0 10px 30px rgba(60, 30, 10, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.value-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(60, 30, 10, 0.1); }
.value-card .menu-icon { margin: 0 auto 18px; }
.value-card h3 { font-size: 17px; font-weight: 700; color: var(--ink); margin-bottom: 10px; }
.value-card p { font-size: 13.5px; line-height: 1.8; color: rgba(42, 28, 18, 0.6); }

@media (max-width: 980px) {
  .about-story { grid-template-columns: 1fr; gap: 36px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .values-grid { grid-template-columns: 1fr; }
}

/* ============ CONTACT PAGE ============ */
.branches-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.branch-card {
  background: var(--white);
  border: 1px solid rgba(42, 28, 18, 0.07);
  border-radius: 20px;
  padding: 30px 26px;
  box-shadow: 0 10px 30px rgba(60, 30, 10, 0.04);
}
.branch-card .menu-icon { margin-bottom: 18px; }
.branch-card h3 { font-size: 18px; font-weight: 700; color: var(--ink); margin-bottom: 10px; }
.branch-card p { font-size: 14px; line-height: 1.9; color: rgba(42, 28, 18, 0.62); }
.branch-card .branch-hours {
  margin-top: 14px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.3px;
}

.contact-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: start;
}
.contact-methods { display: flex; flex-direction: column; gap: 18px; }
.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border: 1px solid rgba(42, 28, 18, 0.07);
  border-radius: 16px;
  padding: 18px 20px;
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.contact-method:hover { transform: translateY(-3px); box-shadow: 0 14px 28px rgba(60,30,10,0.08); }
.contact-method .menu-icon { width: 44px; height: 44px; margin: 0; flex-shrink: 0; }
.contact-method .menu-icon svg { width: 20px; height: 20px; }
.contact-method strong { display: block; font-size: 14px; margin-bottom: 2px; }
.contact-method span { font-size: 13px; color: rgba(42, 28, 18, 0.55); }

.contact-form {
  background: var(--white);
  border: 1px solid rgba(42, 28, 18, 0.07);
  border-radius: 24px;
  padding: 36px;
  box-shadow: 0 14px 40px rgba(60, 30, 10, 0.06);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.form-field label { font-size: 13px; font-weight: 700; color: var(--ink); }
.form-field input, .form-field textarea {
  font-family: 'Cairo', sans-serif;
  font-size: 14px;
  padding: 13px 16px;
  border-radius: 12px;
  border: 1.5px solid rgba(42, 28, 18, 0.12);
  background: var(--cream);
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s ease;
}
.form-field input:focus, .form-field textarea:focus { border-color: var(--red); }
.form-field textarea { resize: vertical; min-height: 110px; }
.contact-form .btn-primary { width: 100%; text-align: center; margin-top: 6px; }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .branches-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
