/* ══════════════════════════════════════════
   CAFE CHRISTIAN IX — Stylesheet
   Colors: Gold #cfa670 · Dark #1a1209 · White #f8f4ee
   Fonts: Kristi, Cormorant Garamond, Lato
   ══════════════════════════════════════════ */

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

/* ─── iOS/Android touch optimizations ─── */
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
  font-size: 16px;
}
a, button {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

:root {
  --gold:       #cfa670;
  --gold-light: #e8c898;
  --gold-dark:  #a07840;
  --dark:       #1a1209;
  --dark-mid:   #4a3520;
  --dark-soft:  #5a4530;
  --warm-white: #f8f4ee;
  --text:       #2c2017;
  --text-light: #6b5740;

  --font-script: 'Kristi', cursive;
  --font-serif:  'Cormorant Garamond', serif;
  --font-sans:   'Lato', sans-serif;

  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.45, 0, 0.55, 1);
  --transition: 0.4s var(--ease-out);
}

body {
  background: var(--dark);
  color: var(--warm-white);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  cursor: none;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
address { font-style: normal; }

/* ─── Particles Canvas ─── */
#particles-canvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
}

/* ─── Custom Cursor ─── */
.cursor,
.cursor-follower {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition-property: opacity, transform;
  transition-timing-function: var(--ease-out);
}
.cursor {
  width: 8px;
  height: 8px;
  background: var(--gold);
  transition-duration: 0.1s;
}
.cursor-follower {
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--gold);
  opacity: 0.6;
  transition-duration: 0.35s;
}
.cursor.active { transform: translate(-50%, -50%) scale(2.5); }
.cursor-follower.active {
  transform: translate(-50%, -50%) scale(0.5);
  opacity: 1;
  background: rgba(207, 166, 112, 0.15);
}

/* ─── Typography ─── */
.script {
  font-family: var(--font-script);
  font-size: 1.6em;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: -0.3em;
}
.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-eyebrow.light { color: var(--gold-light); }
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--warm-white);
  margin-bottom: 1.5rem;
}
.section-title.small { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
.section-sub {
  font-size: 1rem;
  color: var(--gold-light);
  font-weight: 300;
  letter-spacing: 0.02em;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.25rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  transform: translateX(-101%);
  transition: transform 0.4s var(--ease-out);
}
.btn:hover::before { transform: translateX(0); }
.btn i { transition: transform 0.3s var(--ease-out); }
.btn:hover i { transform: translateX(4px); }

.btn-gold {
  background: var(--gold);
  color: var(--dark);
}
.btn-gold:hover { background: var(--gold-light); }

.btn-hero-cta {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 1rem 2.5rem;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  position: relative;
  overflow: hidden;
  transition: color 0.4s var(--ease-out), border-color 0.4s, box-shadow 0.4s;
  box-shadow: 0 0 0 rgba(207, 166, 112, 0);
}
.btn-hero-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s var(--ease-out);
  z-index: -1;
}
.btn-hero-cta:hover {
  color: var(--dark);
  border-color: var(--gold-light);
  box-shadow: 0 0 30px rgba(207, 166, 112, 0.3);
}
.btn-hero-cta:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.btn-outline {
  background: transparent;
  color: var(--warm-white);
  border: 1px solid rgba(255,255,255,0.4);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.btn-outline-white {
  background: transparent;
  color: var(--warm-white);
  border: 1px solid rgba(255,255,255,0.6);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); }

.btn-text {
  background: none;
  border: none;
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.5rem 0;
  border-bottom: 1px solid currentColor;
  transition: var(--transition);
}
.btn-text:hover { color: var(--gold-light); gap: 1.25rem; }
.btn.large { padding: 1.2rem 2.75rem; font-size: 0.85rem; }

/* ─── Scroll Reveal ─── */
[data-scroll-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
[data-scroll-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
[data-scroll-reveal]:nth-child(2) { transition-delay: 0.1s; }
[data-scroll-reveal]:nth-child(3) { transition-delay: 0.2s; }
[data-scroll-reveal]:nth-child(4) { transition-delay: 0.3s; }

.reveal-up {
  opacity: 0;
  transform: translateY(30px);
  animation-fill-mode: forwards;
}
.reveal-up.active {
  animation: revealUp 0.9s var(--ease-out) forwards;
}
@keyframes revealUp {
  to { opacity: 1; transform: translateY(0); }
}
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.45s; }
.delay-3 { animation-delay: 0.7s; }

/* ══════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 80px;
  padding: 0 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.5s var(--ease-out), height 0.4s var(--ease-out), box-shadow 0.4s;
}
#navbar.scrolled {
  background: rgba(26, 18, 9, 0.97);
  backdrop-filter: blur(12px);
  height: 70px;
  box-shadow: 0 2px 40px rgba(0,0,0,0.5);
}

.nav-logo {
  position: relative;
  width: 85px;
  height: 40px;
  display: block;
  flex-shrink: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-out);
}
.nav-logo img {
  height: 100%;
  width: auto;
  object-fit: contain;
  position: absolute;
  transition: opacity 0.4s;
}
.nav-logo .logo-white { opacity: 1; }
.nav-logo .logo-gold  { opacity: 0; }
#navbar.scrolled .nav-logo { opacity: 1; pointer-events: auto; }
#navbar.scrolled .logo-white { opacity: 0; }
#navbar.scrolled .logo-gold  { opacity: 1; }

.nav-links {
  position: fixed;
  top: 0;
  right: 3rem;
  height: 80px;
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
  z-index: 1000;
  transition: height 0.4s var(--ease-out);
}
@media (min-width: 769px) {
  #navbar.scrolled ~ .nav-links {
    height: 70px;
  }
}
.nav-links a {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  position: relative;
  transition: color 0.3s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease-out);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  padding: 0.65rem 1.5rem !important;
  border: 1px solid var(--gold) !important;
  color: var(--gold) !important;
  letter-spacing: 0.15em !important;
  transition: var(--transition) !important;
}
.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--dark) !important;
}
.nav-cta::after { display: none !important; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--warm-white);
  transition: var(--transition);
}
.nav-toggle.open span {
  background: var(--gold);
  height: 2px;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ══════════════════════════════════════════
   HERO
   ══════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
}
.hero-slides {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1);
  transition: opacity 1.2s var(--ease-out), transform 7s linear;
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1.08);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26,18,9,0.35) 0%,
    rgba(26,18,9,0.2) 40%,
    rgba(26,18,9,0.6) 80%,
    rgba(26,18,9,0.85) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  padding: 2rem;
}
.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.hero-title {
  font-family: var(--font-serif);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-bottom: 1.5rem;
}
/* ─── Hero logo display ─── */
.hero-logo-display {
  position: relative;
  margin: 0;
  padding: 0;
  font-size: inherit;
  font-weight: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
/* Radial gold halo behind the logo */
.hero-logo-display::before {
  content: '';
  position: absolute;
  width: clamp(340px, 62vw, 680px);
  height: clamp(340px, 62vw, 680px);
  background: radial-gradient(ellipse at center,
    rgba(207, 166, 112, 0.38) 0%,
    rgba(185, 138, 70, 0.18) 38%,
    transparent 68%);
  animation: haloBreath 6s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
.hero-logo-img {
  position: relative;
  z-index: 1;
  width: clamp(240px, 40vw, 480px);
  height: auto;
  object-fit: contain;
  animation: logoGlow 6s ease-in-out infinite;
  transform-origin: center;
  filter: contrast(1.2) sepia(0.2) saturate(0.9) brightness(0.96);
}
@keyframes haloBreath {
  0%, 100% { opacity: 0.55; transform: scale(0.92); }
  50%       { opacity: 1;    transform: scale(1.1); }
}
@keyframes logoGlow {
  0% {
    filter: contrast(1.2) sepia(0.2) saturate(0.9) brightness(0.96)
            drop-shadow(0 0 6px rgba(160, 110, 45, 0.4));
    transform: scale(1);
  }
  50% {
    filter: contrast(1.3) sepia(0.12) saturate(1.3) brightness(1.25)
            drop-shadow(0 0 45px rgba(210, 162, 70, 1))
            drop-shadow(0 0 18px rgba(207, 166, 112, 0.8))
            drop-shadow(0 0 6px rgba(232, 200, 152, 0.5));
    transform: scale(1.035);
  }
  100% {
    filter: contrast(1.2) sepia(0.2) saturate(0.9) brightness(0.96)
            drop-shadow(0 0 6px rgba(160, 110, 45, 0.4));
    transform: scale(1);
  }
}
.hero-tagline {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-style: italic;
  color: rgba(248, 244, 238, 0.8);
  font-weight: 300;
  margin-top: 2rem;
  margin-bottom: 2rem;
  letter-spacing: 0.05em;
}
.hero-actions {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* Dots */
.hero-dots {
  position: absolute;
  bottom: 6rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.75rem;
  z-index: 3;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.5);
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
}
.dot.active {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.3);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  right: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  z-index: 3;
}
.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.6); opacity: 0.4; }
}
.scroll-indicator span {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  writing-mode: vertical-rl;
}

/* ══════════════════════════════════════════
   HIGHLIGHTS BAR
   ══════════════════════════════════════════ */
.highlights-bar {
  position: relative;
  z-index: 2;
  background: var(--dark-mid);
  border-top: 1px solid rgba(207, 166, 112, 0.15);
  border-bottom: 1px solid rgba(207, 166, 112, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  padding: 0;
}
.highlight-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 2rem 3rem;
  flex: 1;
  min-width: 200px;
  transition: background 0.3s;
}
.highlight-item:hover { background: rgba(207, 166, 112, 0.05); }
.highlight-item i {
  font-size: 1.5rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.4s var(--ease-out);
}
.highlight-item:hover i { transform: scale(1.2) rotate(-5deg); }
.highlight-item div { display: flex; flex-direction: column; }
.highlight-item strong {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--warm-white);
  letter-spacing: 0.03em;
}
.highlight-item span {
  font-size: 0.75rem;
  color: var(--gold-light);
  letter-spacing: 0.05em;
}
.highlight-divider {
  width: 1px;
  height: 50px;
  background: rgba(207, 166, 112, 0.2);
  flex-shrink: 0;
}

/* ══════════════════════════════════════════
   STORY / OM OS
   ══════════════════════════════════════════ */
.story {
  padding: 8rem 3rem;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.story::before {
  content: 'CIX';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-serif);
  font-size: 30vw;
  color: rgba(207, 166, 112, 0.025);
  pointer-events: none;
  white-space: nowrap;
}

.story-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.story-images {
  position: relative;
  height: 580px;
  background: var(--dark);
  padding: 12px;
  border: 5px solid var(--dark);
}
.story-img-left {
  position: absolute;
  width: 54%;
  height: 90%;
  top: 12px; left: 12px;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.55);
  border: 5px solid var(--dark);
}
.story-img-main {
  position: absolute;
  width: 62%;
  height: 68%;
  bottom: 12px; right: 12px;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  border: 5px solid var(--dark);
}
.story-img-accent {
  position: absolute;
  width: 45%;
  height: 42%;
  top: 12px; right: 12px;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  border: 5px solid var(--dark);
}
.story-img-left img,
.story-img-main img,
.story-img-accent img {
  transition: transform 8s linear;
}
.story-img-left:hover img,
.story-img-main:hover img,
.story-img-accent:hover img { transform: scale(1.05); }

.story-year-badge {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: 1.2rem 2rem;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  margin-bottom: 1.5rem;
  transition: box-shadow 0.4s var(--ease-out);
}
.story-year-badge::before {
  content: '';
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(207, 166, 112, 0.3);
}
.story-year-badge .year {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.1em;
  margin-top: 0.3rem;
}
.story-year-badge .label {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.story-text { padding-right: 2rem; }
.story-lead {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-style: normal;
  color: var(--gold-light);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.story-body {
  font-family: var(--font-serif);
  color: rgba(248, 244, 238, 0.7);
  line-height: 1.9;
  margin-bottom: 2.5rem;
}
.signature-logo {
  height: 50px;
  width: auto;
  object-fit: contain;
  margin-bottom: 2rem;
  opacity: 0.8;
  filter: sepia(0.2) brightness(1.1);
}

/* ══════════════════════════════════════════
   PARALLAX QUOTE
   ══════════════════════════════════════════ */
.parallax-quote {
  position: relative;
  height: 50vh;
  min-height: 350px;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.parallax-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 18, 9, 0.75);
}
.parallax-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem;
  max-width: 800px;
}
.quote-icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: block;
}
blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3.5vw, 2.4rem);
  font-style: italic;
  color: var(--warm-white);
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}
cite {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ══════════════════════════════════════════
   MENU SECTION
   ══════════════════════════════════════════ */
.menu-section {
  padding: 5rem 0;
  background: var(--dark-mid);
  position: relative;
}
.menu-section::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-dark), transparent);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.menu-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-bottom: 2.5rem;
}
.menu-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(207, 166, 112, 0.1);
  padding: 2rem 2rem;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: border-color 0.4s, background 0.4s;
}
.menu-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.5s var(--ease-out);
}
.menu-card:hover {
  border-color: rgba(207, 166, 112, 0.4);
  background: rgba(207, 166, 112, 0.04);
}
.menu-card:hover::before { width: 100%; }
.menu-card:hover .menu-card-icon i { transform: translateY(-6px) scale(1.1); color: var(--gold-light); }

.menu-card.featured {
  background: rgba(207, 166, 112, 0.06);
  border-color: rgba(207, 166, 112, 0.3);
}
.menu-card-badge {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 0.2rem 0.6rem;
}

.menu-card-icon {
  margin-bottom: 1rem;
}
.menu-card-icon i {
  font-size: 1.75rem;
  color: var(--gold);
  transition: transform 0.4s var(--ease-out), color 0.3s;
}
.menu-card h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--warm-white);
  margin-bottom: 1rem;
  letter-spacing: 0.03em;
}
.menu-card p {
  font-size: 0.9rem;
  color: rgba(248, 244, 238, 0.6);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.menu-card-line {
  width: 30px;
  height: 1px;
  background: var(--gold-dark);
  transition: width 0.4s var(--ease-out);
}
.menu-card:hover .menu-card-line { width: 60px; }

.menu-cta { text-align: center; }


/* ══════════════════════════════════════════
   REVIEWS
   ══════════════════════════════════════════ */
.reviews-section {
  padding: 7rem 0;
  background: var(--dark);
  overflow: hidden;
}
.reviews-section .section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.reviews-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 1rem 2rem 2rem;
  -webkit-overflow-scrolling: touch;
}
.reviews-track::-webkit-scrollbar { display: none; }

.review-card {
  flex: 0 0 340px;
  scroll-snap-align: start;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(207, 166, 112, 0.15);
  border-radius: 4px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  transition: border-color 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}
.review-card:hover {
  border-color: rgba(207, 166, 112, 0.4);
  transform: translateY(-4px);
}
.review-stars {
  display: flex;
  gap: 0.25rem;
  color: var(--gold);
  font-size: 0.85rem;
}
.review-text {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.7;
  color: rgba(248, 244, 238, 0.85);
  flex: 1;
}
.review-author {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(207, 166, 112, 0.1);
}
.review-name {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--warm-white);
}
.review-source {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: rgba(248, 244, 238, 0.4);
}
.review-source i {
  margin-right: 0.3rem;
  color: var(--gold-dark);
}
.reviews-cta {
  text-align: center;
  margin-top: 2.5rem;
}

@media (max-width: 768px) {
  .review-card { flex: 0 0 280px; padding: 1.5rem; }
  .reviews-section { padding: 5rem 0; }
}


/* ══════════════════════════════════════════
   RESERVATION
   ══════════════════════════════════════════ */
.reservation-section {
  position: relative;
  padding: 10rem 2rem;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  text-align: center;
  overflow: hidden;
}
.reservation-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 18, 9, 0.82);
}
.reservation-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}
.reservation-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 300;
  color: var(--warm-white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.reservation-sub {
  font-size: 1rem;
  color: rgba(248, 244, 238, 0.75);
  line-height: 1.8;
  margin-bottom: 3rem;
}
.reservation-actions {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ══════════════════════════════════════════
   HOURS / CONTACT
   ══════════════════════════════════════════ */
.hours-section {
  padding: 8rem 0;
  background: var(--dark-mid);
  position: relative;
}
.hours-section::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-dark), transparent);
}

.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.hours-text .section-title { margin-top: 0.5rem; }

.contact-details { margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.9rem;
  color: rgba(248, 244, 238, 0.75);
}
.contact-item i { color: var(--gold); width: 18px; flex-shrink: 0; }
.contact-item a { color: rgba(248, 244, 238, 0.75); transition: color 0.3s; }
.contact-item a:hover { color: var(--gold); }

.hours-table { padding-top: 1rem; }
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  gap: 2rem;
}
.hours-row .day {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--warm-white);
  font-weight: 400;
}
.hours-row .time {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--gold);
}
.hours-row .time.hours-closed {
  color: rgba(248, 244, 238, 0.35);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 0.75rem;
}
.hours-divider {
  height: 1px;
  background: rgba(207, 166, 112, 0.15);
}
.hours-note {
  margin-top: 1.5rem;
  font-size: 0.75rem;
  color: rgba(248, 244, 238, 0.4);
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  line-height: 1.6;
}
.hours-note i { color: var(--gold-dark); flex-shrink: 0; margin-top: 0.1rem; }

.contact-obs-link {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.contact-obs-link:hover { color: var(--gold-light); }

.contact-obs {
  margin-top: 1.4rem;
  font-size: 0.55rem;
  font-family: var(--font-sans);
  letter-spacing: 0.1em;
  color: rgba(248, 244, 238, 0.5);
  font-weight: 700;
  text-transform: uppercase;
}

.hours-map {
  height: 320px;
  overflow: hidden;
  border-radius: 2px;
  border: 1px solid rgba(207, 166, 112, 0.15);
  filter: grayscale(30%) sepia(10%);
}

/* ══════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════ */
.footer {
  background: var(--dark);
  border-top: 1px solid rgba(207, 166, 112, 0.15);
  padding: 5rem 2rem 3rem;
  padding-bottom: calc(3rem + env(safe-area-inset-bottom));
}
.footer-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
}
.footer-logo { height: 60px; display: flex; justify-content: center; }
.footer-logo img { height: 100%; width: auto; object-fit: contain; }
.footer-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--gold-light);
  letter-spacing: 0.03em;
}
.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(248, 244, 238, 0.5);
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold); }

.footer-social { display: flex; gap: 1.25rem; }
.footer-social a {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(207, 166, 112, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(248, 244, 238, 0.6);
  transition: var(--transition);
  font-size: 0.95rem;
}
.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}
.footer-copy {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: rgba(248, 244, 238, 0.3);
}

/* ─── Back to top ─── */
.back-to-top {
  position: fixed;
  bottom: 2.5rem;
  right: 2.5rem;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(26, 18, 9, 0.9);
  border: 1px solid rgba(207, 166, 112, 0.4);
  color: var(--gold);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  z-index: 500;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  backdrop-filter: blur(8px);
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); }

/* ══════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════ */
@media (max-width: 1100px) {
  .menu-cards { grid-template-columns: repeat(2, 1fr); }
  .hours-grid { grid-template-columns: 1fr 1fr; }
  .hours-map { grid-column: span 2; height: 260px; }
  .story-grid { gap: 4rem; }
}

@media (max-width: 900px) {
  .story-grid { grid-template-columns: 1fr; }
  .story-images { height: 420px; margin-bottom: 3rem; }
  .story-text { padding-right: 0; }
  .story-img-left { width: 52%; height: 88%; }
  .story-img-main { width: 57%; height: 65%; }
  .story-img-accent { width: 40%; height: 40%; }
}

@media (max-width: 768px) {
  #navbar { padding: 1.25rem 1.5rem; }
  #navbar.scrolled { padding: 0.9rem 1.5rem; }

  #navbar {
    justify-content: flex-end;
  }
  #navbar.scrolled { justify-content: space-between; }

  .nav-toggle { display: flex; position: fixed; top: 1.25rem; right: 1.5rem; z-index: 1100; padding: 12px; }
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: rgba(20, 14, 7, 0.99);
    flex-direction: column;
    gap: 2.5rem;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s var(--ease-out), visibility 0s linear 0.4s;
    z-index: 1050;
  }
  .nav-links.open {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.4s var(--ease-out), visibility 0s linear 0s;
  }
  .nav-links li {
    width: 100%;
    text-align: center;
  }
  .nav-links a {
    font-size: 1.2rem;
    letter-spacing: 0.3em;
    color: var(--warm-white) !important;
    display: block;
    padding: 0.5rem 0;
  }
  .nav-cta {
    padding: 1rem 2.5rem !important;
    border: 1px solid var(--gold) !important;
    color: var(--gold) !important;
    font-size: 1rem !important;
    display: inline-block !important;
  }

  .hero-slide {
    background-size: cover;
    background-position: center 30%;
    transform: scale(1);
  }
  .hero-slide.active {
    transform: scale(1.04);
  }

  .highlights-bar { flex-direction: column; }
  .highlight-item { width: 100%; flex-direction: column; align-items: center; text-align: center; justify-content: center; padding: 1.5rem 2rem; gap: 0.75rem; }
  .highlight-divider { width: 60px; height: 1px; }

  .story { padding: 5rem 1.5rem; }
  .story-images { height: 360px; }
  .story-img-left { width: 50%; height: 86%; }
  .story-img-main { width: 58%; height: 62%; }
  .story-img-accent { width: 40%; height: 38%; }
  .story-img-accent img { object-position: center 30%; }

  .menu-section { padding: 5rem 0; }
  .menu-cards { grid-template-columns: 1fr; gap: 2px; }

  .hours-grid { grid-template-columns: 1fr; }
  .hours-map { grid-column: span 1; }

  .scroll-indicator { display: none; }
  .reservation-section { background-attachment: scroll; }
  .parallax-quote { background-attachment: scroll; }

  .cursor, .cursor-follower { display: none; }
  body { cursor: auto; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .reservation-actions { flex-direction: column; align-items: center; }
  .story-year-badge { right: 0.5rem; }
  #navbar { padding: 1rem; }
}

/* ─── (shimmer kept for potential future use) ─── */

/* ─── Footer smiley ─── */
.footer-smiley {
  width: 42px !important;
  height: 42px !important;
  border-radius: 50% !important;
  border: 1px solid rgba(207, 166, 112, 0.25) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: var(--transition) !important;
  color: rgba(248, 244, 238, 0.6) !important;
}
.footer-smiley-icon i {
  font-size: 1.15rem !important;
  color: var(--gold) !important;
  transition: transform 0.3s var(--ease-out), color 0.3s !important;
}
.footer-smiley:hover {
  border-color: var(--gold) !important;
  background: rgba(207, 166, 112, 0.08) !important;
  transform: translateY(-3px) !important;
}
.footer-smiley:hover i {
  color: var(--gold-light) !important;
  transform: scale(1.2) !important;
}

/* ─── Page load animation ─── */
.page-loaded .hero-slide.active { transition-delay: 0s; }
