/* ============================================================
   LA MADRINA MAARIF — Premium Italian Restaurant Website
   Design System: Warm Burgundy · Champagne Gold · Deep Night
   ============================================================ */

/* ---- DESIGN TOKENS ---- */
:root {
  --burgundy: #7B1E2F;
  --burgundy-deep: #4A0F1C;
  --burgundy-light: #9E2D44;
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --gold-pale: #F5E6B8;
  --cream: #F7F2E9;
  --cream-dark: #EDE5D3;
  --night: #0D0A09;
  --night-soft: #1A1310;
  --night-muted: #2A2118;
  --charcoal: #3A2E25;
  --text-primary: #F5F0E8;
  --text-secondary: rgba(245, 240, 232, 0.65);
  --text-muted: rgba(245, 240, 232, 0.35);
  --text-dark: #1A1310;
  --border: rgba(201, 168, 76, 0.15);
  --border-bright: rgba(201, 168, 76, 0.35);

  --font-display: 'Playfair Display', 'Georgia', serif;
  --font-elegant: 'Cormorant Garamond', 'Georgia', serif;
  --font-body: 'Inter', -apple-system, sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 36px;
  --radius-full: 9999px;

  --shadow-gold: 0 0 40px rgba(201, 168, 76, 0.15);
  --shadow-card: 0 8px 40px rgba(0, 0, 0, 0.35);
  --shadow-deep: 0 20px 80px rgba(0, 0, 0, 0.5);

  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background-color: var(--night);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 100px 0; }

/* ---- REVEAL ANIMATIONS ---- */
.reveal-up, .reveal-left, .reveal-right, .reveal-float {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal-float { transform: translateY(20px) scale(0.95); }

.revealed {
  opacity: 1 !important;
  transform: translate(0) scale(1) !important;
}

[style*="--d:0"].reveal-up, [style*="--d:0"].reveal-left { transition-delay: 0s; }
[style*="--d:1"].reveal-up, [style*="--d:1"].reveal-left { transition-delay: 0.1s; }
[style*="--d:2"].reveal-up { transition-delay: 0.2s; }
[style*="--d:3"].reveal-up { transition-delay: 0.3s; }
[style*="--d:4"].reveal-up { transition-delay: 0.4s; }
[style*="--d:5"].reveal-up { transition-delay: 0.5s; }

/* ---- TYPOGRAPHY ---- */
.section-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 20px;
}
.section-title em {
  font-style: italic;
  color: var(--gold);
}

.section-desc {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.75;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header .section-label {
  justify-content: center;
}
.section-header .section-label::before { display: none; }
.section-header .section-desc { margin: 0 auto; }

/* ======================================================
   NAVIGATION
   ====================================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
}
.nav.scrolled {
  padding: 14px 40px;
  background: rgba(13, 10, 9, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav__logo { display: flex; flex-direction: column; line-height: 1.1; }
.nav__logo-text {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.02em;
}
.nav__logo-sub {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.nav__links {
  display: flex;
  list-style: none;
  gap: 36px;
}
.nav__links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition-fast);
}
.nav__links a:hover { color: var(--text-primary); }
.nav__links a:hover::after { width: 100%; }

.nav__cta {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 24px;
  border: 1px solid var(--gold);
  color: var(--gold);
  border-radius: var(--radius-full);
  transition: var(--transition-fast);
}
.nav__cta:hover {
  background: var(--gold);
  color: var(--night);
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text-primary);
  transition: var(--transition-fast);
}

/* Mobile menu */
.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(13, 10, 9, 0.97);
  backdrop-filter: blur(24px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.nav__mobile.open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}
.nav__mobile ul { list-style: none; text-align: center; }
.nav__mobile ul li { margin: 16px 0; }
.nav__mobile ul li a {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--text-primary);
  transition: color var(--transition-fast);
}
.nav__mobile ul li a:hover { color: var(--gold); }
.nav__mobile .cta-link {
  font-size: 16px !important;
  color: var(--gold) !important;
  border: 1px solid var(--gold);
  padding: 12px 32px;
  border-radius: var(--radius-full);
  margin-top: 8px;
  display: inline-block;
}

/* ======================================================
   HERO
   ====================================================== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 120px 24px 80px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.5;
  z-index: 1;
  pointer-events: none;
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 168, 76, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 1;
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: orbFloat 8s ease-in-out infinite;
}
.hero__orb--1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(123, 30, 47, 0.4) 0%, transparent 70%);
  top: -200px; left: -100px;
  animation-duration: 10s;
}
.hero__orb--2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.2) 0%, transparent 70%);
  bottom: -150px; right: -100px;
  animation-duration: 12s;
  animation-delay: -4s;
}
.hero__orb--3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(123, 30, 47, 0.25) 0%, transparent 70%);
  top: 40%; left: 50%;
  transform: translate(-50%, -50%);
  animation-duration: 14s;
  animation-delay: -7s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 15px) scale(0.98); }
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-full);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
  background: rgba(201, 168, 76, 0.05);
  backdrop-filter: blur(10px);
}
.hero__badge-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(56px, 9vw, 120px);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold-light);
  display: block;
  font-size: 0.65em;
  letter-spacing: 0.02em;
}
.hero__title strong {
  font-weight: 900;
  letter-spacing: -0.02em;
  display: block;
  background: linear-gradient(135deg, #F5F0E8 0%, #C9A84C 60%, #E8C97A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 40px;
  font-family: var(--font-elegant);
  font-style: italic;
}

.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
.hero__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.hero__stat-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hero__stat-label {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.hero__stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  animation: fadeInUp 1.5s ease 2s both;
}
.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollLine 2s ease-in-out infinite;
}
.hero__scroll span {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

@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; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateX(-50%) translateY(20px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* Floating cards */
.hero__float {
  position: absolute;
  z-index: 3;
}
.hero__float--1 { left: 5%; top: 35%; }
.hero__float--2 { right: 5%; top: 30%; }
.hero__float--3 { right: 8%; bottom: 25%; }

.float-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  background: rgba(26, 19, 16, 0.8);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  backdrop-filter: blur(16px);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  white-space: nowrap;
  animation: floatCard 4s ease-in-out infinite;
  box-shadow: var(--shadow-card);
}
.float-card .float-icon {
  font-size: 20px;
  line-height: 1;
}
.hero__float--2 .float-card { animation-delay: -1.5s; }
.hero__float--3 .float-card { animation-delay: -3s; }

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ======================================================
   BUTTONS
   ====================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: var(--transition-fast);
  cursor: pointer;
  white-space: nowrap;
}
.btn--primary {
  background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-light) 100%);
  color: var(--text-primary);
  box-shadow: 0 4px 24px rgba(123, 30, 47, 0.4);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(123, 30, 47, 0.6);
}
.btn--ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(245, 240, 232, 0.2);
}
.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn--outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--border-bright);
}
.btn--outline:hover {
  background: rgba(201, 168, 76, 0.1);
}
.btn--whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}
.btn--whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.5);
}
.btn--lg { padding: 18px 40px; font-size: 15px; }

/* ======================================================
   MARQUEE STRIP
   ====================================================== */
.marquee-strip {
  background: var(--burgundy-deep);
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
  overflow: hidden;
  padding: 16px 0;
}
.marquee-track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation: marquee 20s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(201, 168, 76, 0.8);
}
.marquee-dot { color: var(--gold) !important; }

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

/* ======================================================
   ABOUT
   ====================================================== */
.about { background: var(--night-soft); }

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

.about__visual { position: relative; }
.about__img-wrap { position: relative; }

.about__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about__img--main {
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--night-muted);
}
.about__img--accent {
  position: absolute;
  width: 50%;
  aspect-ratio: 1;
  bottom: -40px;
  right: -30px;
  background: var(--night-muted);
  border: 3px solid var(--night-soft);
}

.about__img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.about__img-placeholder--1 {
  background: linear-gradient(135deg, #1A1310 0%, #2A1A16 50%, #1A1310 100%);
}
.about__img-placeholder--2 {
  background: linear-gradient(135deg, #0D0A09 0%, #1E1510 100%);
}

/* Decorative scene for restaurant image */
.img-scene {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: relative;
}
.scene-light {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.25) 0%, transparent 70%);
  border-radius: 50%;
}
.scene-table {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  padding: 20px;
}
.scene-plate {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid rgba(201, 168, 76, 0.3);
  background: rgba(201, 168, 76, 0.05);
}
.scene-candle {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.scene-candle::before {
  content: '';
  width: 10px;
  height: 40px;
  background: linear-gradient(to top, var(--cream-dark), rgba(245, 230, 184, 0.8));
  border-radius: 2px;
}
.flame {
  width: 8px;
  height: 14px;
  background: radial-gradient(ellipse at bottom, var(--gold), transparent 70%);
  border-radius: 50% 50% 30% 30%;
  animation: flicker 1.5s ease-in-out infinite;
  margin-bottom: 2px;
}
@keyframes flicker {
  0%, 100% { transform: scaleX(1) scaleY(1) rotate(0deg); opacity: 1; }
  33% { transform: scaleX(0.8) scaleY(1.1) rotate(3deg); opacity: 0.9; }
  66% { transform: scaleX(1.1) scaleY(0.9) rotate(-2deg); opacity: 1; }
}
.scene-glass {
  width: 24px;
  height: 48px;
  border: 1.5px solid rgba(201, 168, 76, 0.25);
  border-radius: 4px 4px 0 0;
  background: rgba(139, 30, 47, 0.15);
}
.img-scene--kitchen { overflow: hidden; }
.scene-pasta {
  display: flex;
  gap: 4px;
  transform: rotate(-15deg);
}
.pasta-strand {
  width: 3px;
  height: 80px;
  background: linear-gradient(to bottom, rgba(245, 220, 160, 0.6), rgba(245, 220, 160, 0.1));
  border-radius: 2px;
  animation: pastaDance 3s ease-in-out infinite;
}
.pasta-strand:nth-child(2) { animation-delay: -1s; height: 100px; }
.pasta-strand:nth-child(3) { animation-delay: -2s; height: 70px; }
@keyframes pastaDance {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(5deg); }
}

.about__badge-float {
  position: absolute;
  top: 20px;
  left: -20px;
  background: linear-gradient(135deg, var(--burgundy), var(--burgundy-light));
  color: var(--text-primary);
  padding: 20px 24px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-deep);
}
.about__badge-year {
  display: block;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.7;
}
.about__badge-num {
  display: block;
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
}

.about__content { padding: 20px 0; }

.about__text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 24px;
}
.about__text strong { color: var(--gold); font-weight: 600; }

.about__pillars {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.pillar {
  display: flex;
  align-items: center;
  gap: 16px;
}
.pillar__icon { font-size: 28px; flex-shrink: 0; }
.pillar__info { display: flex; flex-direction: column; }
.pillar__info strong { font-size: 14px; font-weight: 600; color: var(--text-primary); }
.pillar__info span { font-size: 13px; color: var(--text-muted); }

/* ======================================================
   ATMOSPHERE
   ====================================================== */
.atmosphere {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}
.atmosphere__bg {
  position: absolute;
  inset: 0;
}
.atmo-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}
.atmo-orb--1 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(123, 30, 47, 0.35) 0%, transparent 70%);
  left: -100px; top: -100px;
}
.atmo-orb--2 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.15) 0%, transparent 70%);
  right: -50px; bottom: -50px;
}

.atmosphere__quote {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 24px;
}
.quote-mark {
  display: block;
  font-family: var(--font-display);
  font-size: 120px;
  line-height: 0.5;
  color: var(--burgundy);
  margin-bottom: 20px;
}
.atmosphere__quote p {
  font-family: var(--font-elegant);
  font-size: clamp(22px, 3vw, 34px);
  font-style: italic;
  font-weight: 300;
  color: var(--text-primary);
  line-height: 1.5;
  margin-bottom: 20px;
}
.atmosphere__quote footer {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ======================================================
   MENU
   ====================================================== */
.menu { background: var(--night); }

.menu__tabs {
  display: flex;
  gap: 4px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
  padding: 6px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.menu__tab {
  padding: 10px 24px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
  transition: var(--transition-fast);
}
.menu__tab:hover { color: var(--text-primary); }
.menu__tab.active {
  background: var(--burgundy);
  color: var(--text-primary);
  box-shadow: 0 2px 12px rgba(123, 30, 47, 0.4);
}

.menu__panel {
  display: none;
  animation: fadePanel 0.4s ease;
}
.menu__panel.active { display: block; }

@keyframes fadePanel {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.menu__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
}

.menu-card {
  padding: 28px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition-fast);
  position: relative;
  overflow: hidden;
}
.menu-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(123, 30, 47, 0.05) 0%, transparent 100%);
  opacity: 0;
  transition: opacity var(--transition-fast);
}
.menu-card:hover {
  border-color: var(--border-bright);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}
.menu-card:hover::before { opacity: 1; }

.menu-card--featured {
  border-color: rgba(201, 168, 76, 0.3);
  background: linear-gradient(135deg, rgba(123, 30, 47, 0.15) 0%, rgba(201, 168, 76, 0.05) 100%);
  grid-column: 1 / -1;
}

.menu-card__feat-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.menu-card__feat-badge::before {
  content: '★';
  color: var(--gold);
}

.menu-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 12px;
}
.menu-card__header h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
}
.menu-card__price {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
}
.menu-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 16px;
}
.menu-card__tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.menu-card__tags span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 4px 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
}

/* ======================================================
   EXPERIENCE CARDS
   ====================================================== */
.experience { background: var(--night-soft); }

.experience__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.exp-card {
  padding: 36px 28px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: var(--transition-fast);
  animation-delay: calc(var(--d) * 0.1s);
}
.exp-card:hover {
  border-color: var(--border-bright);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}
.exp-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  color: var(--gold);
  opacity: 0.7;
}
.exp-card__icon svg { width: 100%; height: 100%; }
.exp-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-primary);
}
.exp-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ======================================================
   GALLERY
   ====================================================== */
.gallery { background: var(--night); overflow: hidden; }

.gallery__track { overflow: hidden; }

.gallery__reel {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  animation: galleryScroll 20s linear infinite;
  width: max-content;
}
.gallery__reel:hover { animation-play-state: paused; }

@keyframes galleryScroll {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 8px)); }
}

.gallery-item {
  width: 320px;
  height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
  transition: transform var(--transition-fast);
}
.gallery-item:hover { transform: scale(1.02); }

.gallery-scene {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}
.gs-light {
  position: absolute;
  inset: 0;
  opacity: 0.8;
}
.gs-light--warm {
  background: linear-gradient(135deg, #1E0E09 0%, #2D1810 50%, #1A0E08 100%);
}
.gs-light--cool {
  background: linear-gradient(135deg, #0D0F1E 0%, #1A1530 50%, #0D0F1E 100%);
}
.gs-light--gold {
  background: linear-gradient(135deg, #1E1508 0%, #2D2010 50%, #1A1208 100%);
}
.gallery-item--1 .gallery-scene { background: linear-gradient(135deg, #2D1308, #1A0A05); }
.gallery-item--2 .gallery-scene { background: linear-gradient(135deg, #0D1520, #070E18); }
.gallery-item--3 .gallery-scene { background: linear-gradient(135deg, #1E0D10, #12080B); }
.gallery-item--4 .gallery-scene { background: linear-gradient(135deg, #1A1505, #12100A); }
.gallery-item--5 .gallery-scene { background: linear-gradient(135deg, #1E0E08, #140A05); }
.gallery-item--6 .gallery-scene { background: linear-gradient(135deg, #0D1218, #080C12); }

.gs-content {
  font-size: 72px;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 20px rgba(201, 168, 76, 0.4));
  transition: transform var(--transition-fast);
}
.gallery-item:hover .gs-content { transform: scale(1.1) rotate(-5deg); }

.gs-caption {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(245, 240, 232, 0.6);
  z-index: 2;
}

/* ======================================================
   REVIEWS
   ====================================================== */
.reviews {
  position: relative;
  overflow: hidden;
  background: var(--night-soft);
}
.reviews__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.rev-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
}
.rev-orb--1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(123, 30, 47, 0.2) 0%, transparent 70%);
  top: -100px; left: -100px;
}
.rev-orb--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.1) 0%, transparent 70%);
  bottom: -50px; right: -50px;
}

.reviews__score {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
}
.score-stars { font-size: 24px; color: var(--gold); letter-spacing: 4px; }
.score-num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  color: var(--gold);
}
.score-label {
  font-size: 13px;
  color: var(--text-muted);
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}

.review-card {
  padding: 28px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition-fast);
}
.review-card:hover {
  border-color: var(--border-bright);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.review-card__top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.review-card__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--burgundy), var(--burgundy-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
}
.review-card__avatar--b { background: linear-gradient(135deg, #1A4A6E, #2A7AAB); }
.review-card__avatar--c { background: linear-gradient(135deg, #2D4A1E, #4A7A30); }
.review-card__avatar--d { background: linear-gradient(135deg, #4A2D1E, #7A4A30); }
.review-card__avatar--e { background: linear-gradient(135deg, #1E2D4A, #304A7A); }
.review-card__avatar--f { background: linear-gradient(135deg, #4A1E2D, #7A3048); }

.review-card__info { flex: 1; }
.review-card__info strong { display: block; font-size: 14px; font-weight: 600; color: var(--text-primary); }
.review-card__info span { font-size: 12px; color: var(--text-muted); }
.review-card__stars { font-size: 14px; color: var(--gold); letter-spacing: 2px; }

.review-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 16px;
}
.review-card__date {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* ======================================================
   CONTACT
   ====================================================== */
.contact { background: var(--night); }

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

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin: 40px 0;
}

.contact__item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.contact__item-icon {
  width: 44px;
  height: 44px;
  background: rgba(123, 30, 47, 0.15);
  border: 1px solid rgba(123, 30, 47, 0.3);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.contact__item-icon svg { width: 20px; height: 20px; }
.contact__item strong { display: block; font-size: 13px; font-weight: 600; color: var(--text-primary); margin-bottom: 4px; }
.contact__item span { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }
.contact__item a { color: var(--gold); transition: opacity var(--transition-fast); }
.contact__item a:hover { opacity: 0.8; }

.contact__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.contact__map {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-deep);
}
.map-wrap {
  width: 100%;
  height: 500px;
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  filter: grayscale(30%) contrast(1.1) brightness(0.9);
}

/* ======================================================
   CTA FINAL
   ====================================================== */
.cta-final {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  text-align: center;
}
.cta-final__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--night) 0%, var(--burgundy-deep) 50%, var(--night) 100%);
}
.cta-final__grain {
  position: absolute;
  inset: 0;
  opacity: 0.3;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.05'/%3E%3C/svg%3E");
}
.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}
.cta-orb--1 {
  width: 600px; height: 400px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.12) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.cta-orb--2 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(123, 30, 47, 0.3) 0%, transparent 70%);
  top: 0; right: 10%;
}

.cta-final__content { position: relative; z-index: 1; }
.cta-final__eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.cta-final__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
}
.cta-final__title em { font-style: italic; color: var(--gold); }
.cta-final__desc {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 480px;
  margin: 0 auto 48px;
  line-height: 1.7;
  font-family: var(--font-elegant);
  font-style: italic;
}
.cta-final__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ======================================================
   FOOTER
   ====================================================== */
.footer {
  background: var(--night-soft);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer__logo {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.footer__tagline {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer__brand p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 240px;
}
.footer__col h4 {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer__col ul li {
  font-size: 14px;
  color: var(--text-secondary);
}
.footer__col ul li a {
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}
.footer__col ul li a:hover { color: var(--gold); }
.footer__hours li { font-size: 13px !important; }

.footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-muted);
}

/* ======================================================
   RESPONSIVE
   ====================================================== */
@media (max-width: 1024px) {
  .about__grid { grid-template-columns: 1fr; gap: 60px; }
  .about__img--main { aspect-ratio: 16/9; }
  .about__img--accent { display: none; }
  .about__badge-float { left: 20px; }
  .contact__grid { grid-template-columns: 1fr; gap: 48px; }
  .map-wrap { height: 380px; }
  .experience__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .nav { padding: 16px 24px; }
  .nav.scrolled { padding: 12px 24px; }
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: flex; }

  .hero { padding: 100px 24px 60px; }
  .hero__float { display: none; }
  .hero__stats { gap: 24px; }
  .hero__stat-num { font-size: 24px; }
  .hero__actions { flex-direction: column; align-items: center; }

  .about__grid { grid-template-columns: 1fr; }
  .about__pillars { gap: 16px; }

  .menu__tabs { gap: 2px; }
  .menu__tab { padding: 8px 16px; font-size: 12px; }
  .menu__grid { grid-template-columns: 1fr; }
  .menu-card--featured { grid-column: 1; }

  .experience__grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .exp-card { padding: 24px 18px; }

  .gallery-item { width: 260px; height: 320px; }

  .reviews__grid { grid-template-columns: 1fr; }
  .reviews__score { flex-wrap: wrap; gap: 8px; }

  .contact__grid { grid-template-columns: 1fr; }
  .map-wrap { height: 300px; }

  .cta-final { padding: 80px 0; }
  .cta-final__actions { flex-direction: column; align-items: center; }

  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 52px; }
  .experience__grid { grid-template-columns: 1fr; }
}

/* ======================================================
   HIGGSFIELD-INSPIRED CINEMATIC EFFECTS
   ====================================================== */

/* Depth zoom on hero */
.hero__content {
  animation: depthEntrance 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
@keyframes depthEntrance {
  from {
    opacity: 0;
    transform: scale(0.94) translateY(30px);
    filter: blur(4px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
    filter: blur(0);
  }
}

/* Cinematic glow on cards hover */
.menu-card:hover::after,
.review-card:hover::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.15) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

/* Parallax subtle effect on section backgrounds */
.about, .reviews { background-attachment: fixed; }

/* Light leak effect on about image */
.about__img--main::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to bottom, rgba(201, 168, 76, 0.06) 0%, transparent 100%);
  pointer-events: none;
}

/* Scroll progress indicator */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--burgundy), var(--gold));
  z-index: 9999;
  transition: width 0.1s linear;
}

/* Cursor glow (desktop) */
@media (pointer: fine) {
  body { cursor: none; }
  .cursor {
    width: 10px;
    height: 10px;
    background: var(--gold);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 99999;
    mix-blend-mode: difference;
    transform: translate(-50%, -50%);
    transition: width 0.2s ease, height 0.2s ease, opacity 0.2s ease;
  }
  .cursor-follower {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(201, 168, 76, 0.4);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease, width 0.2s ease, height 0.2s ease;
  }
}
