@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,300;0,400;1,300&display=swap');

/* GT Sectra Fine Black — brand headline font */
@font-face {
  font-family: 'GT Sectra Fine';
  src: url('../fonts/GTSectraFine-Black.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* ===================== DESIGN TOKENS ===================== */
:root {
  --black: #0a0906;
  --cream: #fcfaf6;
  --gold: #8f0015;
  --gold-light: #b31020;
  --warm-white: #fcfaf6;
  --dark-section: #111009;
  --mid: #1e1c17;
  --text-muted: #9a9488;
  --font-display: 'GT Sectra Fine', Georgia, serif;
  --font-body: 'Lato', 'Helvetica Neue', Arial, sans-serif;
  --nav-height: 80px;
  --transition: 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  /* Focus ring - accessible */
  --focus-ring: 0 0 0 3px rgba(143,0,21,0.7);
}

/* ===================== RESET ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); font-weight: 300; background: var(--black); color: var(--cream); overflow-x: hidden; cursor: none; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
ul { list-style: none; }

/* ===================== ACCESSIBILITY ===================== */
/* Skip to main content link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--gold);
  color: var(--black);
  padding: 12px 20px;
  font-size: 14px;
  font-family: var(--font-body);
  letter-spacing: 0.1em;
  text-decoration: none;
  z-index: 9999;
  border-radius: 0 0 4px 4px;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* Focus styles - all interactive elements */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
  border-radius: 2px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal, .reveal-left { opacity: 1 !important; transform: none !important; }
}

/* ===================== CUSTOM CURSOR ===================== */
.cursor {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 2147483647;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s;
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1px solid rgba(143,0,21,0.5);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 2147483646;
  transform: translate(-50%, -50%);
  transition: all 0.12s ease;
}
@media (hover: none) { .cursor, .cursor-ring { display: none; } body { cursor: auto; } }

/* ===================== NAVIGATION ===================== */
nav {
  position: relative;
  z-index: 9000;
  height: var(--nav-height);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 32px;
  overflow: visible;
  transition: background 0.5s, backdrop-filter 0.5s;
}
/* Left zone — logo */
nav > .nav-logo-img-link {
  justify-self: start;
}
/* Center zone — links */
nav > ul.nav-links {
  justify-self: center;
}
/* Right zone — Reserve + lang + toggle grouped */
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-self: end;
}
nav.scrolled,
header.scrolled {
  background: rgba(10,9,6,0.93);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(143,0,21,0.15);
}
.nav-logo { text-decoration: none; display: flex; align-items: center; }
.nav-logo img { height: 30px; object-fit: contain; width: auto; }
.nav-links { display: flex; align-items: center; gap: 16px; }
.nav-links li { display: flex; align-items: center; }
.nav-links a {
  font-family: var(--font-body); font-size: 11px; font-weight: 400;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(252,250,246,0.92); text-decoration: none;
  transition: color 0.3s; padding: 4px 0;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--gold); }
.nav-cta {
  flex-shrink: 0;
  color: #ffffff !important;
  font-weight: 600 !important;
  font-size: 11px !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
  background: var(--gold) !important;
  border: 1px solid var(--gold) !important;
  padding: 10px 22px !important;
  transition: all 0.3s !important;
  white-space: nowrap;
}
.nav-cta:hover { background: transparent !important; color: var(--gold) !important; }
.nav-toggle {
  display: none; flex-direction: column; gap: 6px;
  cursor: pointer; background: none; border: none; padding: 8px;
  border-radius: 2px;
}
.nav-toggle span { display: block; width: 26px; height: 1px; background: var(--cream); transition: all 0.3s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===================== MOBILE MENU ===================== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%; height: 100%;
  background: #0a0906;
  background-color: #0a0906 !important;
  z-index: 9999;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s;
  padding: 70px 20px 30px;
  overflow-y: auto;
  overflow-x: hidden;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 300;
  color: var(--cream);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.2s, letter-spacing 0.2s;
  display: block;
  position: relative;
  padding: 8px 0;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
}
/* Hover AND touch active for mobile */
.mobile-menu a:hover,
.mobile-menu a:active,
.mobile-menu a.touched,
.mobile-menu a:focus {
  color: var(--gold);
  letter-spacing: 0.12em;
  outline: none;
}
/* Gold underline animation */
.mobile-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.35s ease, left 0.35s ease;
}
.mobile-menu a:hover::after,
.mobile-menu a:active::after,
.mobile-menu a.touched::after {
  width: 60%;
  left: 20%;
}
/* Reserve button in mobile menu */
.mobile-menu a[href*="opentable"] {
  font-family: var(--font-body) !important;
  font-size: 12px !important;
  font-weight: 300 !important;
  letter-spacing: 0.25em !important;
  text-transform: uppercase;
  color: var(--gold) !important;
  border: 1px solid rgba(143,0,21,0.6);
  padding: 14px 40px;
  margin-top: 12px;
  transition: background 0.3s, color 0.3s !important;
}
.mobile-menu a[href*="opentable"]::after { display: none; }
.mobile-menu a[href*="opentable"]:hover,
.mobile-menu a[href*="opentable"]:active,
.mobile-menu a[href*="opentable"].touched {
  background: var(--gold) !important;
  color: var(--black) !important;
  letter-spacing: 0.25em !important;
}
/* X Close button */
.mobile-menu-close {
  position: fixed;
  top: 24px;
  right: 28px;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 36px;
  font-weight: 200;
  line-height: 1;
  cursor: pointer;
  padding: 8px;
  transition: color 0.3s, transform 0.3s;
  opacity: 0.7;
}
.mobile-menu-close:hover,
.mobile-menu-close:active {
  color: var(--gold);
  opacity: 1;
  transform: rotate(90deg);
}
/* Mobile lang switcher */
.mobile-lang-switcher {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 8px;
  padding-top: 24px;
  border-top: 1px solid rgba(252,250,246,0.1);
}
.mobile-lang-switcher .lang-btn {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(252,250,246,0.5);
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 8px;
  transition: color 0.2s;
}
.mobile-lang-switcher .lang-btn.active,
.mobile-lang-switcher .lang-btn:hover {
  color: var(--gold);
}
/* Mobile menu Reserve button - styled via class not inline */
.mobile-reserve-btn {
  font-family: var(--font-body) !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  letter-spacing: 0.25em !important;
  text-transform: uppercase;
  color: var(--gold) !important;
  border: 1px solid var(--gold) !important;
  padding: 12px 36px !important;
  margin-top: 8px;
  transition: background 0.2s, color 0.2s !important;
  -webkit-tap-highlight-color: transparent;
}
.mobile-reserve-btn::after { display: none !important; }
.mobile-reserve-btn:hover,
.mobile-reserve-btn:active,
.mobile-reserve-btn.touched {
  background: var(--gold) !important;
  color: #ffffff !important;
  letter-spacing: 0.25em !important;
}


/* ===================== BUTTONS ===================== */
.btn-primary {
  display: inline-block;
  font-family: var(--font-body); font-size: 11px; font-weight: 500;
  letter-spacing: 0.25em; text-transform: uppercase;
  padding: 15px 38px; background: var(--gold); color: #ffffff;
  text-decoration: none; border: 1px solid var(--gold);
  transition: all 0.4s; cursor: pointer;
}
.btn-primary:hover { background: transparent; color: var(--gold); border-color: var(--gold); }
.btn-outline {
  display: inline-block;
  font-family: var(--font-body); font-size: 11px; font-weight: 500;
  letter-spacing: 0.25em; text-transform: uppercase;
  padding: 15px 38px; background: transparent; color: var(--cream);
  text-decoration: none; border: 1px solid rgba(252,250,246,0.7);
  transition: all 0.4s; cursor: pointer;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* ===================== HERO ===================== */
.hero {
  position: relative; height: 100vh; min-height: 700px;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.08); transition: transform 8s ease;
  pointer-events: none;
}
.hero-bg.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(10,9,6,0.25) 0%, rgba(10,9,6,0.1) 40%, rgba(10,9,6,0.65) 100%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; text-align: center; padding: 0 24px; }
.hero-eyebrow {
  font-family: var(--font-body); font-size: 11px; font-weight: 300;
  letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold-light);
  margin-bottom: 28px; opacity: 0; transform: translateY(20px);
  animation: fadeUp 1s 0.5s forwards;
}
.hero-title {
  font-family: var(--font-display); font-size: clamp(72px, 12vw, 160px);
  font-weight: 300; line-height: 0.9; letter-spacing: 0.05em; color: var(--cream);
  margin-bottom: 28px; opacity: 0; transform: translateY(30px);
  animation: fadeUp 1.2s 0.8s forwards;
}
/* Hero logo image */
.hero-logo-img {
  width: clamp(240px, 40vw, 680px);
  height: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 2px 20px rgba(0,0,0,0.3));
}
.hero-subtitle {
  font-family: var(--font-display); font-size: clamp(16px, 2vw, 22px);
  font-weight: 300; font-style: italic; color: rgba(252,250,246,0.8);
  margin-bottom: 48px; opacity: 0; animation: fadeUp 1s 1.2s forwards;
}
.hero-actions {
  display: flex; gap: 20px; justify-content: center; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 1s 1.5s forwards;
}
.hero-scroll {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: 0; animation: fadeUp 1s 2s forwards;
}
.hero-scroll span { font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(252,250,246,0.5); }
.scroll-line { width: 1px; height: 56px; background: linear-gradient(to bottom, var(--gold), transparent); animation: scrollPulse 2s infinite; }
@keyframes scrollPulse { 0%,100%{opacity:1} 50%{opacity:0.3} }

/* ===================== SECTION LABELS ===================== */
.section-label {
  font-family: var(--font-body); font-size: 11px; font-weight: 500;
  letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 20px; display: flex; align-items: center; gap: 14px;
}
.section-label::before { content: ''; display: block; width: 36px; height: 1px; background: var(--gold); flex-shrink: 0; }

/* ===================== SECTION STACK ===================== */
.section-stack { position: relative; }
.stack-section { position: sticky; top: 0; min-height: 100vh; overflow: clip; border-radius: 20px 20px 0 0; }
.stack-section:first-child { border-radius: 0; }
.stack-1 { background: var(--cream); color: var(--black); position: relative !important; min-height: auto !important; overflow: visible !important; border-radius: 0 !important; }
.stack-2 { background: var(--dark-section); position: relative !important; min-height: auto !important; overflow: visible !important; border-radius: 0 !important; }
.stack-3 { z-index: 3; background: var(--warm-white); color: var(--black); }
.stack-4 { z-index: 1; background: var(--mid); overflow: visible; }

/* ===================== ABOUT ===================== */
.about-section { display: grid; grid-template-columns: 1fr 1fr; min-height: 100vh; align-items: stretch; }
.about-image-wrap { overflow: hidden; position: relative; min-height: 60vh; }
.about-image-wrap img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.06); transition: transform 1.2s var(--transition); }
.about-section:hover .about-image-wrap img { transform: scale(1.0); }
.about-text { padding: 80px 72px; display: flex; flex-direction: column; justify-content: center; }
.section-title { font-family: var(--font-display); font-size: clamp(40px, 5vw, 68px); font-weight: 300; line-height: 1.05; margin-bottom: 28px; }
.section-body { font-size: 15px; font-weight: 300; line-height: 1.9; color: rgba(10,9,6,0.68); max-width: 480px; margin-bottom: 28px; }
.section-body.light { color: rgba(252,250,246,0.68); }
.highlights { display: flex; gap: 44px; margin-top: 12px; flex-wrap: wrap; }
.highlight-item { text-align: center; }
.highlight-num { font-family: var(--font-display); font-size: 46px; font-weight: 300; color: var(--gold); line-height: 1; }
.highlight-label { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); margin-top: 4px; }

/* ===================== EXPERIENCE CARDS ===================== */
.experience-section { min-height: 100vh; display: flex; flex-direction: column; justify-content: center; padding: 100px 72px; }
.experience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; margin-top: 72px; }
.exp-card { position: relative; overflow: hidden; aspect-ratio: 3/4; text-decoration: none; }
.exp-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--transition); filter: brightness(0.65); }
.exp-card:hover img { transform: scale(1.06); filter: brightness(0.45); }
.exp-card-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 36px 28px; background: linear-gradient(to top, rgba(10,9,6,0.9) 0%, transparent 100%); }
.exp-card-title { font-family: var(--font-display); font-size: 30px; font-weight: 300; color: var(--cream); margin-bottom: 6px; }
.exp-card-sub { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-light); opacity: 0; transform: translateY(8px); transition: all 0.4s; }
.exp-card:hover .exp-card-sub { opacity: 1; transform: translateY(0); }

/* ===================== EVENTS LIST ===================== */
.events-section { min-height: 100vh; padding: 100px 72px; display: flex; flex-direction: column; justify-content: center; }
.events-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 72px; flex-wrap: wrap; gap: 24px; }
.events-list { display: flex; flex-direction: column; }
.event-item {
  display: grid; grid-template-columns: 100px 1fr auto;
  align-items: center; gap: 44px; padding: 32px 0;
  border-bottom: 1px solid rgba(143,0,21,0.15);
  text-decoration: none; color: var(--cream);
  transition: all 0.4s;
}
.event-item:first-of-type { border-top: 1px solid rgba(143,0,21,0.15); }
.event-item:hover { padding-left: 20px; }
.event-date { font-family: var(--font-display); font-size: 38px; font-weight: 300; color: var(--gold); line-height: 1; }
.event-month { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); margin-top: 4px; }
.event-title { font-family: var(--font-display); font-size: 26px; font-weight: 300; margin-bottom: 6px; }
.event-desc { font-size: 13px; color: var(--text-muted); }
.event-arrow { font-size: 20px; color: var(--gold); opacity: 0; transform: translateX(-8px); transition: all 0.4s; }
.event-item:hover .event-arrow { opacity: 1; transform: translateX(0); }

/* ===================== CONTACT ===================== */
.contact-title { font-family: var(--font-display); font-size: clamp(48px, 8vw, 92px); font-weight: 300; line-height: 1; margin-bottom: 20px; }
.contact-subtitle { font-family: var(--font-display); font-style: italic; font-size: 19px; color: var(--gold-light); margin-bottom: 44px; }
.contact-info { display: flex; gap: 44px; justify-content: center; margin-top: 60px; flex-wrap: wrap; }
.contact-info-item { text-align: center; }
.contact-info-label { font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; font-weight: 500; opacity: 1; }
.contact-info-value { font-family: var(--font-display); font-size: 18px; color: #ffffff; text-decoration: none; transition: color 0.3s; font-weight: 400; }
.contact-info-value:hover { color: var(--gold); }

/* ===================== PAGE HERO (inner pages) ===================== */
.page-hero { height: 55vh; min-height: 460px; position: relative; display: flex; align-items: flex-end; padding: 72px; overflow: hidden; }
.page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.05); transition: transform 6s ease; }
.page-hero-bg.loaded { transform: scale(1); }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,9,6,0.88) 0%, rgba(10,9,6,0.18) 100%); }
.page-hero-content { position: relative; z-index: 2; }
.page-hero-title { font-family: var(--font-display); font-size: clamp(52px, 8vw, 108px); font-weight: 300; line-height: 0.95; color: var(--cream); opacity: 0; transform: translateY(24px); animation: fadeUp 1s 0.3s forwards; }

/* ===================== MENU PAGE ===================== */
.menu-page { background: var(--warm-white); min-height: 60vh; padding: 72px; color: var(--black); }
.menu-tabs { display: flex; border-bottom: 1px solid rgba(10,9,6,0.1); margin-bottom: 64px; overflow-x: auto; -webkit-overflow-scrolling: touch; }
.menu-tab {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 14px 28px; cursor: pointer; border: none; background: none;
  color: var(--text-muted); border-bottom: 2px solid transparent;
  transition: all 0.3s; white-space: nowrap;
  font-family: var(--font-body); font-weight: 300;
}
.menu-tab.active { color: var(--black); border-bottom-color: var(--gold); }
.menu-tab:hover { color: var(--black); }
.menu-panel { display: none; }
.menu-panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: 40px 72px; }
.menu-category-title {
  font-family: var(--font-display); font-size: 30px; font-weight: 300;
  font-style: italic; color: var(--black); margin-bottom: 28px;
  grid-column: 1 / -1; padding-bottom: 14px;
  border-bottom: 1px solid rgba(10,9,6,0.07);
}
.menu-item { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; padding-bottom: 18px; border-bottom: 1px solid rgba(10,9,6,0.05); }
.menu-item-name { font-family: var(--font-display); font-size: 17px; font-weight: 400; color: var(--black); margin-bottom: 3px; }
.menu-item-desc { font-size: 12px; color: var(--text-muted); letter-spacing: 0.02em; line-height: 1.5; }
.menu-item-price { font-family: var(--font-display); font-size: 17px; font-weight: 300; color: var(--gold); white-space: nowrap; }
.menu-allergen { font-size: 10px; color: rgba(10,9,6,0.35); letter-spacing: 0.05em; margin-top: 3px; }

/* ===================== GALLERY PAGE ===================== */
.gallery-page { background: var(--black); min-height: 100vh; padding-top: var(--nav-height); }
.gallery-header { padding: 72px 60px 44px; }
.gallery-header h1 { font-family: var(--font-display); font-size: clamp(52px, 8vw, 92px); font-weight: 300; color: var(--cream); line-height: 1; }
.masonry { columns: 3; column-gap: 4px; padding: 0 4px 4px; }
.masonry-item { break-inside: avoid; margin-bottom: 4px; overflow: hidden; cursor: pointer; background: var(--mid); }
.masonry-item img { width: 100%; display: block; transition: transform 0.8s ease, filter 0.4s; filter: brightness(0.82); min-height: 200px; object-fit: cover; }
.masonry-item:hover img { transform: scale(1.04); filter: brightness(1); }

/* Lightbox */
.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,0.97); z-index: 1000; display: none; align-items: center; justify-content: center; padding: 20px; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; object-fit: contain; }
.lightbox-close { position: absolute; top: 20px; right: 28px; color: var(--cream); font-size: 40px; cursor: pointer; background: none; border: none; line-height: 1; opacity: 0.7; transition: opacity 0.2s; padding: 8px; }
.lightbox-close:hover { opacity: 1; }
.lightbox-prev, .lightbox-next { position: absolute; top: 50%; transform: translateY(-50%); color: var(--cream); font-size: 36px; cursor: pointer; background: none; border: none; opacity: 0.5; transition: opacity 0.2s; padding: 16px; }
.lightbox-prev { left: 8px; } .lightbox-next { right: 8px; }
.lightbox-prev:hover, .lightbox-next:hover { opacity: 1; }
.lightbox-counter { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); font-size: 11px; letter-spacing: 0.2em; color: rgba(252,250,246,0.45); font-family: var(--font-body); }

/* ===================== EVENTS PAGE ===================== */
.event-featured-card { position: relative; overflow: hidden; min-height: 480px; text-decoration: none; color: var(--cream); display: block; }
.event-featured-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--transition); filter: brightness(0.5); position: absolute; inset: 0; }
.event-featured-card:hover img { transform: scale(1.05); filter: brightness(0.35); }
.event-card-content { position: relative; z-index: 2; padding: 44px; height: 100%; display: flex; flex-direction: column; justify-content: flex-end; min-height: 480px; }
.event-card-tag { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.event-card-title { font-family: var(--font-display); font-size: 38px; font-weight: 300; line-height: 1.1; margin-bottom: 10px; }
.event-card-date { font-size: 13px; color: rgba(252,250,246,0.55); }

/* ===================== FOOTER ===================== */
footer { background: var(--black); border-top: 1px solid rgba(143,0,21,0.15); padding: 64px 72px 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 56px; margin-bottom: 56px; }
.footer-brand-img { height: 36px; object-fit: contain; display: block; margin-bottom: 14px; width: auto; }
.footer-tagline { font-family: var(--font-display); font-style: italic; font-size: 15px; color: var(--text-muted); margin-bottom: 28px; }
.footer-social { display: flex; gap: 20px; }
.footer-social a { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); text-decoration: none; transition: color 0.3s; }
.footer-social a:hover { color: var(--gold); }
.footer-col-title { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { font-size: 14px; color: var(--text-muted); text-decoration: none; transition: color 0.3s; }
.footer-col ul a:hover { color: var(--cream); }
.footer-bottom { border-top: 1px solid rgba(143,0,21,0.1); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-copy { font-size: 12px; color: var(--text-muted); letter-spacing: 0.05em; }
.footer-lobby-logo { height: 24px; object-fit: contain; opacity: 0.45; transition: opacity 0.3s; width: auto; }
.footer-lobby-logo:hover { opacity: 0.9; }

/* ===================== PHOTO STRIP ===================== */
.photo-strip { display: grid; grid-template-columns: repeat(4,1fr); height: 300px; overflow: hidden; }
.strip-item { overflow: hidden; }
.strip-img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.8); transition: transform 0.8s ease, filter 0.4s; transform: scale(1.05); }
.strip-img:hover { transform: scale(1.0); filter: brightness(1); }

/* ===================== SCROLL REVEAL ===================== */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.9s var(--transition), transform 0.9s var(--transition); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-36px); transition: opacity 0.9s var(--transition), transform 0.9s var(--transition); }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.22s; }
.reveal-delay-3 { transition-delay: 0.36s; }
.reveal-delay-4 { transition-delay: 0.5s; }

@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

/* ===================== PDF MENU CARDS ===================== */
.pdf-menu-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 3px; }
.pdf-card { position: relative; overflow: hidden; min-height: 400px; display: flex; flex-direction: column; justify-content: flex-end; text-decoration: none; }
.pdf-card-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 0.8s ease, filter 0.4s; filter: brightness(0.55); }
.pdf-card:hover .pdf-card-bg { transform: scale(1.05); filter: brightness(0.35); }
.pdf-card:focus-visible .pdf-card-bg { filter: brightness(0.35); }
.pdf-card-content { position: relative; z-index: 2; padding: 44px 40px; background: linear-gradient(to top, rgba(10,9,6,0.92) 0%, transparent 100%); }
.pdf-card-label { font-size: 10px; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 8px; }
.pdf-card-title { font-family: var(--font-display); font-size: 40px; font-weight: 300; color: var(--cream); line-height: 1; margin-bottom: 18px; }
.pdf-card-btn { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); border: 1px solid rgba(143,0,21,0.5); padding: 9px 22px; transition: all 0.3s; font-family: var(--font-body); }
.pdf-card:hover .pdf-card-btn, .pdf-card:focus-visible .pdf-card-btn { background: var(--gold); color: var(--black); border-color: var(--gold); }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .experience-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 900px) {
  .nav-right > .nav-cta { display: none; }
  .nav-right > .lang-switcher { display: none; }

  nav > .nav-cta { display: none; }

  /* Disable sticky stack animation on mobile - sections scroll normally */
  .stack-section { position: relative !important; min-height: auto !important; overflow: visible !important; border-radius: 0 !important; }

  nav { padding: 0 20px !important; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  /* About section */
  .about-section { grid-template-columns: 1fr !important; min-height: auto !important; }
  .about-image-wrap { min-height: 55vw; }
  .about-text { padding: 40px 20px !important; }
  .section-title { font-size: clamp(32px, 8vw, 52px) !important; }
  .section-body { font-size: 14px; }
  .highlights { flex-wrap: wrap; gap: 16px; }

  /* Stack sections - KEEP overflow:hidden for the slide animation */
  /* Just let inner content determine height instead of forcing 100vh */
  
  /* Stack-3: Florence at Your Feet */
  .stack3-inner { 
    display: block !important; 
    min-height: auto !important;
  }
  .stack3-inner .about-image-wrap { min-height: 55vw; }
  .stack3-text { 
    padding: 40px 20px !important; 
    min-height: auto !important;
  }

  /* Stack-4: Events/Calimala section */
  .stack4-inner { 
    padding: 48px 20px !important; 
    min-height: auto !important;
  }
  .event-types-grid { grid-template-columns: repeat(2,1fr) !important; margin: 28px 0 !important; gap: 2px !important; }
  .event-types-grid > div { padding: 24px 16px !important; }
  .event-types-grid div[style*="font-size:13px"] { font-size: 11px !important; letter-spacing: 0.08em !important; }

  /* Experience section */
  .experience-section { 
    padding: 48px 20px !important; 
    min-height: auto !important;
  }
  .experience-grid { grid-template-columns: 1fr !important; margin-top: 28px !important; }
  .exp-card { aspect-ratio: 16/10; }

  /* Events section (homepage) */
  .events-section { 
    padding: 48px 20px !important; 
    min-height: auto !important;
  }
  .events-header { flex-direction: column; align-items: flex-start; gap: 16px; margin-bottom: 28px !important; }
  .event-item { grid-template-columns: 56px 1fr !important; gap: 12px; padding: 16px 0; }
  .event-arrow { display: none; }
  .event-date { font-size: 24px; }
  .event-title { font-size: 18px; }
  .event-desc { font-size: 12px; }

  /* Hero */
  .hero-actions { flex-direction: column; align-items: center; gap: 10px; }
  .hero-actions a { width: 260px; text-align: center; }

  /* Lobby home section */
  .lobby-home-grid { 
    display: block !important; 
    min-height: auto !important;
  }
  .lobby-home-grid > div:first-child { min-height: 55vw; }
  .lobby-home-text { padding: 40px 20px !important; }

  /* Contact section */
  #contact { padding: 60px 20px !important; }
  .contact-title { font-size: clamp(40px, 10vw, 64px); }
  .contact-info { flex-direction: column; align-items: center; gap: 20px; margin-top: 32px; }

  /* Photo strip */
  .photo-strip { grid-template-columns: repeat(2,1fr) !important; height: 280px !important; }

  /* Footer */
  footer { padding: 36px 20px 24px !important; }
  .footer-grid { grid-template-columns: 1fr 1fr !important; gap: 24px; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; gap: 10px; padding-top: 20px; }

  /* Inner pages */
  .menu-page { padding: 32px 20px !important; }
  .menu-panel.active { grid-template-columns: 1fr !important; }
  .menu-tab { padding: 10px 12px; font-size: 10px; }
  .masonry { columns: 2 !important; }
  .gallery-header { padding: 56px 20px 24px !important; }
  .pdf-menu-grid { grid-template-columns: 1fr !important; margin: 0 !important; }
  .pdf-card { min-height: 280px !important; }
  section[style*="padding:0 72px"] { padding-left: 8px !important; padding-right: 8px !important; }
  div[style*="padding:64px 72px 0"] { padding-left: 16px !important; padding-right: 16px !important; }
  .page-hero { padding: 32px 20px !important; height: 45vh !important; min-height: 280px !important; }
  .page-hero-title { font-size: clamp(38px, 9vw, 64px) !important; }

  /* Global */
  body { overflow-x: hidden; }
  /* section-stack overflow removed to fix sticky */

  /* Stack-4 new 2-col layout → single column on mobile, but keep inner tiles 2-col */
  .stack-section.stack-4 > div[style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
    padding: 48px 20px !important;
  }
  /* Keep event tiles 2x2 on mobile */
  .stack-section.stack-4 > div[style*="grid-template-columns:1fr 1fr"] > div[style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr 1fr !important;
    padding: 0 !important;
  }
  .stack-section.stack-4 div[style*="padding:40px 28px"] {
    padding: 24px 16px !important;
  }
  .stack-section.stack-4 div[style*="font-size:48px"] {
    font-size: 36px !important;
  }
  .stack-section.stack-4 div[style*="padding:80px 60px"] {
    padding: 40px 0 24px 0 !important;
  }
}

@media (max-width: 480px) {
  .masonry { columns: 1 !important; }
  .footer-grid { grid-template-columns: 1fr !important; }
  .event-types-grid { grid-template-columns: repeat(2,1fr) !important; }
}

@media (max-width: 480px) {
  .masonry { columns: 1; }
  .hero-title { font-size: clamp(60px, 20vw, 100px); }
  .highlights { gap: 20px; }
  .menu-tabs { gap: 0; }
  .menu-tab { padding: 12px 16px; font-size: 10px; }
}

/* ===== FIXES: NAV Z-INDEX + LOGO + LANGUAGE SWITCHER ===== */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  height: var(--nav-height);
}
header nav {
  z-index: 9000;
  position: relative;
  height: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
/* CSS text logo */
.nav-logo-text {
  font-family: 'Arial Black', 'Helvetica Neue', Arial, sans-serif;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: var(--cream);
  text-decoration: none;
  text-transform: uppercase;
  line-height: 1;
  transition: opacity 0.3s;
  flex-shrink: 0;
}
.nav-logo-text:hover { opacity: 0.8; }

/* Nav logo image */
.nav-logo-img-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}
.nav-logo-img {
  height: 40px;
  width: 40px;
  display: block;
  object-fit: contain;
  transition: opacity 0.3s;
}
.nav-logo-img-link:hover .nav-logo-img {
  opacity: 0.75;
}

nav.scrolled .nav-logo-text, header.scrolled .nav-logo-text { color: var(--cream); }

/* Language switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: 12px;
  flex-shrink: 0;
}
.lang-btn {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(252,250,246,0.5);
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 2px;
  transition: color 0.3s;
}
.lang-btn.active, .lang-btn:hover { color: var(--gold); }
.lang-sep { color: rgba(252,250,246,0.2); font-size: 10px; }

/* Hide/show language content */
[data-lang] { display: none; }
[data-lang].lang-active { display: block; }
.lang-inline[data-lang] { display: none; }
.lang-inline[data-lang].lang-active { display: inline; }

/* Fix stack-section z-index not blocking nav */
/* section-stack isolation removed — was blocking fixed nav */

/* Lobby home section image hover */
.hover-zoom:hover { transform: scale(1.0) !important; }

/* Mobile: lobby section stack vertically */
@media (max-width: 900px) {
  [style*="grid-template-columns:1fr 1fr"]:not(.event-tiles-grid) {
    grid-template-columns: 1fr !important;
  }
  .event-tiles-grid {
    grid-template-columns: 1fr 1fr !important;
  }
  .event-tiles-grid > div {
    padding: 24px 16px !important;
  }
  .event-tiles-grid > div > div:first-child {
    font-size: 36px !important;
  }
  [style*="padding:80px 72px"] {
    padding: 56px 28px !important;
  }
}

/* Hide Contact link at medium screens to ensure RESERVE always fits */
@media (max-width: 1280px) {
  .nav-links li:nth-child(5) { display: none; }
}
@media (max-width: 1100px) {
  .nav-links li:nth-child(4) { display: none; }
}
@media (max-width: 950px) {
  .nav-links li:nth-child(3) { display: none; }
  .nav-links li:nth-child(2) { display: none; }
}

/* stack-4 is now the first sticky section - no curved top on first entry */
.stack-4 { border-radius: 0 !important; }
/* stack-5 gets the curved top as it slides in over stack-4 */
.stack-5 { z-index: 2; background: var(--black); border-radius: 20px 20px 0 0; }


/* ===================== THE LOBBY — BRAND OVERRIDES ===================== */
/* Applied only when <body class="lobby-page"> */

@import url('https://api.fontshare.com/v2/css?f[]=satoshi@400,500,700&display=swap');

.lobby-page {
  --lobby-red: #FF0020;
  --lobby-dark: #24231F;
  --lobby-cream: #FFF5D2;
  --lobby-body: 'Satoshi', 'Lato', sans-serif;
}

/* Sections with dark background use lobby-dark */
.lobby-page .stack-section,
.lobby-page section[style*="var(--dark-section)"],
.lobby-page section[style*="var(--black)"] {
  background: var(--lobby-dark) !important;
}

/* Accent color — all red accents use lobby-red */
.lobby-page .section-label,
.lobby-page .section-label::before,
.lobby-page .lobby-label {
  color: var(--lobby-red) !important;
  background: var(--lobby-red) !important;
}
.lobby-page .section-label::before {
  background: var(--lobby-red) !important;
}

/* Body font override */
.lobby-page p,
.lobby-page .section-body,
.lobby-page .menu-item-desc,
.lobby-page .contact-info-label,
.lobby-page .footer-tagline,
.lobby-page .btn-primary,
.lobby-page .btn-outline,
.lobby-page .nav-links a {
  font-family: var(--lobby-body) !important;
}

/* Buttons use lobby red */
.lobby-page .btn-primary {
  background: var(--lobby-red) !important;
  border-color: var(--lobby-red) !important;
  color: #ffffff !important;
}
.lobby-page .btn-primary:hover {
  background: transparent !important;
  color: var(--lobby-red) !important;
}
.lobby-page .btn-red {
  background: var(--lobby-red) !important;
  border-color: var(--lobby-red) !important;
  color: #ffffff !important;
}

/* Section label line color */
.lobby-page .section-label::before {
  background: var(--lobby-red) !important;
}

/* Menu item price color */
.lobby-page .menu-item-price {
  color: var(--lobby-red) !important;
}

/* Cream background sections use lobby cream */
.lobby-page section[style*="var(--cream)"],
.lobby-page .stack-1 {
  background: var(--lobby-cream) !important;
}

/* Highlight numbers (stats) use lobby red */
.lobby-page .highlight-num {
  color: var(--lobby-red) !important;
}

/* Scroll indicator line */
.lobby-page .scroll-line {
  background: linear-gradient(to bottom, var(--lobby-red), transparent) !important;
}

/* Nav CTA on lobby page */
.lobby-page .nav-cta {
  color: var(--lobby-red) !important;
  border-color: var(--lobby-red) !important;
}
.lobby-page .nav-cta:hover {
  background: var(--lobby-red) !important;
  color: #ffffff !important;
}

/* Footer accent */
.lobby-page .footer-col-title,
.lobby-page .footer-social a:hover {
  color: var(--lobby-red) !important;
}
.lobby-page footer {
  border-top-color: rgba(255,0,32,0.2) !important;
}
