*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue: #1B4FA8;
  --blue-light: #2E6BD6;
  --blue-glow: #3B7DE8;
  --gold: #C9A84C;
  --gold-light: #E8C96A;
  --lime: #8CC63F; /* Updated to match logo green precisely */
  --dark: #060B18;
  --dark-2: #0C1428;
  --dark-3: #111D35;
  --dark-4: #182240;
  --white: #F8F5EE;
  --white-muted: rgba(248,245,238,0.65);
  --white-dim: rgba(248,245,238,0.35);
  --font-display: 'Cormorant Garamond', serif;
  --font-script: 'Dancing Script', cursive;
  --font-body: 'Montserrat', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--dark);
  color: var(--white);
  font-family: var(--font-body);
  overflow-x: hidden;
  cursor: default;
}

/* CUSTOM SCROLLBAR */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--lime); border-radius: 2px; }

/* ===== NAV ===== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 4rem;
  transition: background 0.4s ease, padding 0.4s ease;
}
nav.scrolled {
  background: rgba(6,11,24,0.95);
  backdrop-filter: blur(16px);
  padding: 0.8rem 4rem;
  border-bottom: 1px solid rgba(27,79,168,0.3);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.nav-logo-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 6px;
  padding: 4px 10px;
  flex-shrink: 0;
}
.nav-logo img {
  height: 38px;
  width: auto;
  display: block;
}
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.05em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-muted);
  text-decoration: none;
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: transparent;
  border: 1px solid var(--lime);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.65rem 1.6rem;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.3s, color 0.3s, box-shadow 0.3s;
}
.nav-cta:hover {
  background: var(--lime);
  color: var(--dark);
  box-shadow: 0 0 24px rgba(140, 198, 63, 0.4);
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out, transform 8s linear;
  transform: scale(1.1);
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 60% 80% at 70% 50%, rgba(27,79,168,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(123,192,67,0.06) 0%, transparent 50%),
    linear-gradient(135deg, rgba(4,8,16,0.88) 0%, rgba(6,11,24,0.82) 40%, rgba(10,21,48,0.8) 70%, rgba(6,11,24,0.88) 100%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image: 
    linear-gradient(rgba(27,79,168,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(27,79,168,0.08) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: orb-drift 8s ease-in-out infinite;
  z-index: 3;
}
.hero-orb-1 {
  width: 500px; height: 500px;
  background: rgba(27,79,168,0.2);
  top: -100px; right: -50px;
  animation-delay: 0s;
}
.hero-orb-2 {
  width: 300px; height: 300px;
  background: rgba(140, 198, 63, 0.12); /* Lime green orb */
  bottom: 100px; left: 10%;
  animation-delay: -4s;
}
@keyframes orb-drift {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(30px,-20px) scale(1.05); }
  66% { transform: translate(-20px,30px) scale(0.95); }
}
.hero-content {
  position: relative;
  z-index: 10;
  padding: 0 4rem;
  max-width: 700px;
  animation: hero-reveal 1.2s ease forwards;
  opacity: 0;
  transform: translateY(30px);
}
@keyframes hero-reveal {
  to { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.hero-eyebrow-line {
  width: 40px;
  height: 1px;
  background: var(--lime);
}
.hero-eyebrow-text {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--lime);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 6rem);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 0.5rem;
  color: var(--white);
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-subtitle {
  font-family: var(--font-script);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--blue-glow);
  margin-bottom: 1.8rem;
  display: block;
}
.hero-desc {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--white-muted);
  max-width: 480px;
  margin-bottom: 2.5rem;
}
.hero-actions {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--blue);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 1rem 2.4rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s, box-shadow 0.3s, transform 0.2s;
}
.btn-primary:hover {
  background: var(--blue-light);
  box-shadow: 0 8px 30px rgba(27,79,168,0.5);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 1rem 2.4rem;
  border: 1px solid rgba(248,245,238,0.3);
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: border-color 0.3s, color 0.3s, transform 0.2s;
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  transform: translateY(-2px);
}
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--white-dim);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 10;
  animation: scroll-hint 2s ease infinite;
}
.hero-scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}
@keyframes scroll-hint {
  0%, 100% { opacity: 0.5; transform: translateX(-50%) translateY(0); }
  50% { opacity: 1; transform: translateX(-50%) translateY(6px); }
}
.hero-stats {
  position: absolute;
  right: 4rem;
  bottom: 4rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  z-index: 10;
  animation: hero-reveal 1.2s 0.4s ease forwards;
  opacity: 0;
}
.hero-stat {
  text-align: right;
  border-right: 2px solid var(--blue);
  padding-right: 1rem;
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--white);
  display: block;
}
.hero-stat-label {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-dim);
}

/* ===== MARQUEE ===== */
.marquee-strip {
  background: var(--blue);
  padding: 0.8rem 0;
  overflow: hidden;
  position: relative;
}
.marquee-track {
  display: flex;
  gap: 0;
  animation: marquee 20s linear infinite;
  white-space: nowrap;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0 2rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(248,245,238,0.9);
  flex-shrink: 0;
}
.marquee-dot {
  width: 4px;
  height: 4px;
  background: var(--lime);
  border-radius: 50%;
  flex-shrink: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== SECTION BASE ===== */
section {
  padding: 6rem 4rem;
}
.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.section-eyebrow-line {
  width: 30px;
  height: 1px;
  background: var(--lime);
}
.section-eyebrow-text {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--lime);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
}
.section-title em {
  font-style: italic;
  color: var(--gold-light);
}

/* ===== ABOUT ===== */
.about {
  background: var(--dark-2);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-img-frame {
  position: relative;
  display: inline-block;
  width: 100%;
}
.about-img-main {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  filter: brightness(0.8) saturate(0.9);
}
.about-img-accent {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 200px;
  height: 200px;
  object-fit: cover;
  border: 4px solid var(--dark-2);
  filter: brightness(0.85) saturate(1.1);
}
.about-frame-border {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  right: -1.5rem;
  bottom: -1.5rem;
  border: 1px solid rgba(140, 198, 63, 0.3);
  pointer-events: none;
  z-index: -1;
}
.about-badge {
  position: absolute;
  top: -1.5rem;
  right: 3rem;
  background: var(--lime);
  padding: 1.2rem 1.5rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(140, 198, 63, 0.3);
}
.about-badge-year {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--dark);
  display: block;
}
.about-badge-label {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(6, 11, 24, 0.7);
}
.about-text {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 2;
  color: var(--white-muted);
  margin: 1.5rem 0 2rem;
}
.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.pillar {
  padding: 1.2rem;
  border-left: 2px solid var(--lime);
  background: rgba(140, 198, 63, 0.04);
}
.pillar-icon {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  display: block;
  color: var(--lime);
}
.pillar-title {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.3rem;
}
.pillar-text {
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--white-muted);
  line-height: 1.6;
}

/* ===== EXPERIENCE V2 ===== */
.experience {
  background: var(--dark);
  padding: 8rem 4rem;
  position: relative;
  overflow: hidden;
}
.experience-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 100% at 80% 50%, rgba(27,79,168,0.1) 0%, transparent 60%);
  pointer-events: none;
}
.experience-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
}
.experience-desc {
  max-width: 380px;
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--white-muted);
}
.exp-grid-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  align-items: flex-start;
}
.exp-card-v2.offset-down {
  margin-top: 4rem;
}
.exp-card-v2 {
  background: var(--dark-2);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  height: 100%;
}
.exp-card-v2:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.exp-card-img-v2 {
  height: 350px;
  width: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
}
.exp-card-img-v2::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, var(--dark-2) 100%);
}
.exp-card-content-v2 {
  padding: 2rem 2.5rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}
.exp-tag-v2 {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--lime);
}
.exp-title-v2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--white);
}
.exp-text-v2 {
  font-size: 0.85rem;
  line-height: 1.8;
  color: var(--white-muted);
  font-weight: 300;
  margin-bottom: 1rem;
}
.exp-link-v2 {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s;
  margin-top: auto;
}
.exp-link-v2:hover {
  color: var(--gold);
}

/* responsive experience v2 */
@media (max-width: 1024px) {
  .exp-grid-v2 { grid-template-columns: 1fr; gap: 3rem; }
  .experience { padding: 6rem 2rem; }
  .exp-card-img-v2 { height: 300px; }
}

/* gradient bg for exp cards */
.exp-bg-1 {
  background: url('https://images.unsplash.com/photo-1514362545857-3bc16c4c7d1b?w=800&q=80&auto=format&fit=crop') center/cover no-repeat;
}
.exp-bg-2 {
  background: url('../images/woman-in-boutique.jpg') center/cover no-repeat;
}
.exp-bg-3 {
  background: url('../images/saxophone.png') center/cover no-repeat;
}

/* ===== EVENTS ===== */
.events {
  background: var(--dark);
  padding: 8rem 4rem;
}
.events-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
}
.events-layout {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 1.5rem;
}
.event-featured {
  background: var(--dark-2);
  padding: 4rem;
  position: relative;
  overflow: hidden;
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 600px;
  border-radius: 4px;
  border: 1px solid rgba(248, 245, 238, 0.05);
}
.event-feat-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}
.event-feat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--dark) 20%, rgba(6, 11, 24, 0.4) 100%);
}
.event-feat-body {
  position: relative;
  z-index: 1;
}
.event-feat-badge {
  display: inline-block;
  background: var(--blue);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  margin-bottom: 1.5rem;
  border-radius: 2px;
}
.event-feat-date {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}
.event-feat-day {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
}
.event-feat-month {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  display: block;
}
.event-feat-year {
  font-size: 0.7rem;
  color: var(--white-dim);
  font-weight: 500;
}
.event-feat-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1rem;
}
.event-feat-desc {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--white-muted);
  margin-bottom: 2rem;
  max-width: 500px;
}
.event-feat-meta {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.event-meta-chip {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.75rem;
  color: var(--white-muted);
  font-weight: 500;
}
.event-small-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.event-small {
  background: var(--dark-2);
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid rgba(248, 245, 238, 0.05);
  min-height: 292px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem;
}
.event-small-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}
.event-small-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--dark-2) 40%, rgba(6, 11, 24, 0.6) 100%);
}
.event-small-content {
  position: relative;
  z-index: 1;
}
.event-small-date {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}
.event-small-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
}
.event-small-mo {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  display: block;
}
.event-small-yr {
  font-size: 0.65rem;
  color: var(--white-dim);
  font-weight: 500;
}
.event-small-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 0.8rem;
  line-height: 1.2;
}
.event-small-time {
  font-size: 0.8rem;
  color: var(--white-muted);
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.event-small-arrow {
  position: absolute;
  bottom: -0.5rem;
  right: 0;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(248, 245, 238, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s;
  border-radius: 2px;
}
.event-small-arrow:hover {
  background: var(--lime);
  color: var(--dark);
  border-color: var(--lime);
}
.event-empty {
  grid-column: 1/-1;
  text-align: center;
  color: var(--white-muted);
  padding: 5rem;
  background: var(--dark-2);
  border-radius: 4px;
  border: 1px dashed rgba(248, 245, 238, 0.1);
}

/* RESPONSIVE EVENTS */
@media (max-width: 1024px) {
  .events {
    padding: 6rem 2rem;
  }
  .events-layout {
    grid-template-columns: 1fr;
  }
  .event-featured {
    grid-row: auto;
    min-height: 500px;
  }
}

@media (max-width: 768px) {
  .events-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
  .event-featured {
    padding: 2.5rem;
    min-height: 450px;
  }
  .event-feat-title {
    font-size: 2rem;
  }
  .event-small {
    padding: 2rem;
    min-height: 250px;
  }
}

@media (max-width: 480px) {
  .events {
    padding: 4rem 1.5rem;
  }
  .event-feat-day {
    font-size: 3rem;
  }
  .event-feat-title {
    font-size: 1.75rem;
  }
  .event-feat-meta {
    gap: 1rem;
  }
  .event-small-num {
    font-size: 2rem;
  }
  .event-small-title {
    font-size: 1.4rem;
  }
}

/* ===== MENU PREVIEW ===== */
.menu-preview {
  background: var(--dark);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 600px;
}
.menu-visual {
  position: relative;
  overflow: hidden;
  background: var(--dark-3);
  min-height: 500px;
}
.menu-visual-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #040810 0%, #0d1a40 50%, #071020 100%);
}
.menu-visual-grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 2px;
}
.menu-visual-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  color: rgba(201,168,76,0.6);
  border: 1px solid rgba(27,79,168,0.1);
  transition: color 0.3s;
  cursor: pointer;
  background-size: cover;
  background-position: center;
  position: relative;
}
.menu-visual-cell::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(4,8,16,0.55);
  transition: background 0.3s;
}
.menu-visual-cell span {
  position: relative;
  z-index: 1;
}
.menu-visual-cell:hover::before {
  background: rgba(4,8,16,0.3);
}
.menu-visual-cell:hover {
  color: rgba(201,168,76,0.95);
}
.menu-visual-cell:nth-child(1) {
  background-image: url('https://images.unsplash.com/photo-1574101412892-7e945f20b282?auto=format&fit=crop&w=800&q=80');
}
.menu-visual-cell:nth-child(2) {
  background-image: url('https://images.unsplash.com/photo-1608135246868-9ab7ecbd4a2f?auto=format&fit=crop&w=800&q=80');
}
.menu-visual-cell:nth-child(3) {
  background-image: url('https://images.unsplash.com/photo-1578736641330-3155e606cd40?auto=format&fit=crop&w=800&q=80');
}
.menu-visual-cell:nth-child(4) {
  background-image: url('https://images.unsplash.com/photo-1580651214613-f4692d6d138f?auto=format&fit=crop&w=800&q=80');
}
.menu-visual-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 120px; height: 120px;
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: rgba(6,11,24,0.8);
  backdrop-filter: blur(10px);
}
.menu-visual-center-text {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  line-height: 1.4;
}
.menu-content {
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--dark-2);
}
.menu-items {
  margin: 2rem 0 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(248,245,238,0.07);
  transition: border-color 0.3s;
  cursor: pointer;
  gap: 1rem;
}
.menu-item:hover { border-bottom-color: rgba(27,79,168,0.4); }
.menu-item:first-child { border-top: 1px solid rgba(248,245,238,0.07); }
.menu-item-left {
  flex: 1;
}
.menu-item-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--white);
  display: block;
  margin-bottom: 0.2rem;
  transition: color 0.3s;
}
.menu-item:hover .menu-item-name { color: var(--gold-light); }
.menu-item-desc {
  font-size: 0.85rem;
  color: var(--white-dim);
  font-weight: 300;
}
.menu-item-price {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 300;
  color: var(--gold);
  white-space: nowrap;
}
.menu-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 0;
  border-bottom: 1px solid rgba(27,79,168,0.2);
}
.menu-tab {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-dim);
  padding: 0.8rem 1.5rem;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: color 0.3s, border-color 0.3s;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
}
.menu-tab.active, .menu-tab:hover {
  color: var(--white);
  border-bottom-color: var(--lime);
}

/* ===== FOUNDATION STRIP ===== */
.foundation-strip {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
  padding: 4rem;
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 1fr;
  gap: 3rem;
  align-items: center;
}
.foundation-divider {
  width: 1px;
  height: 80px;
  background: rgba(248,245,238,0.2);
  margin: auto;
}
.foundation-item {
  text-align: center;
}
.foundation-icon {
  margin-bottom: 0.8rem;
  display: block;
  line-height: 0;
}
.foundation-icon svg { width: 28px; height: 28px; stroke: rgba(248,245,238,0.9); }
.foundation-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.foundation-text {
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(248,245,238,0.75);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: var(--dark-2);
  position: relative;
  overflow: hidden;
  padding: 6rem 0; /* Remove side padding for full-width carousel */
}
.testimonials-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 80% at 30% 50%, rgba(201,168,76,0.05) 0%, transparent 60%);
  pointer-events: none;
}
.testimonials-header {
  text-align: center;
  margin-bottom: 4rem;
  padding: 0 4rem;
}
.testimonials-container {
  overflow: hidden;
  position: relative;
  width: 100%;
}
.testimonials-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: scroll-testimonials 40s linear infinite;
  will-change: transform;
}
.testimonials-track:hover {
  animation-play-state: paused;
}
@keyframes scroll-testimonials {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.testimonial-card {
  width: 400px;
  padding: 2.5rem;
  border: 1px solid rgba(27,79,168,0.15);
  background: rgba(6,11,24,0.5);
  position: relative;
  transition: border-color 0.4s, transform 0.3s;
  flex-shrink: 0;
}
.testimonial-card:hover {
  border-color: rgba(27,79,168,0.4);
  transform: translateY(-4px);
}
.testimonial-quote {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 300;
  color: var(--blue);
  line-height: 0.5;
  margin-bottom: 1.5rem;
  opacity: 0.6;
}
.testimonial-text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1.8;
  color: var(--white-muted);
  margin-bottom: 1.5rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--white);
  flex-shrink: 0;
}
.testimonial-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--white);
  display: block;
}
.testimonial-role {
  font-size: 0.7rem;
  color: var(--white-dim);
}
.testimonial-stars {
  position: absolute;
  top: 2rem;
  right: 2rem;
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 2px;
}

/* ===== RESERVATION ===== */
.reservation {
  background: var(--dark);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  overflow: hidden;
}
.reservation-visual {
  background: linear-gradient(135deg, #040810 0%, #0a1530 100%);
  padding: 6rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.reservation-visual-orb {
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(140, 198, 63, 0.1);
  filter: blur(60px);
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  pointer-events: none;
}
.reservation-visual-quote {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.4;
  color: var(--white);
  position: relative;
  z-index: 1;
  margin-bottom: 2rem;
}
.reservation-visual-sig {
  font-family: var(--font-script);
  font-size: 1.5rem;
  color: var(--gold);
  position: relative;
  z-index: 1;
}
.reservation-opening {
  margin-top: 3rem;
  position: relative;
  z-index: 1;
}
.opening-title {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--blue-glow);
  margin-bottom: 1rem;
  display: block;
}
.opening-row {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(248,245,238,0.08);
}
.opening-day {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--white-muted);
}
.opening-time {
  font-size: 0.8rem;
  color: var(--white-dim);
}
.reservation-form {
  background: var(--dark-2);
  padding: 6rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.form-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.form-subtitle {
  font-size: 0.95rem;
  color: var(--white-muted);
  margin-bottom: 2.5rem;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-group.full { grid-column: 1 / -1; }
.form-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-dim);
}
.form-input {
  background: rgba(248,245,238,0.04);
  border: 1px solid rgba(248,245,238,0.1);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  padding: 0.85rem 1rem;
  outline: none;
  transition: border-color 0.3s, background 0.3s;
  width: 100%;
}
.form-input:focus {
  border-color: var(--blue);
  background: rgba(27,79,168,0.06);
}
.form-input::placeholder { color: rgba(248,245,238,0.25); }
.form-select {
  background: rgba(248,245,238,0.04);
  border: 1px solid rgba(248,245,238,0.1);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  padding: 0.85rem 1rem;
  outline: none;
  width: 100%;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231B4FA8' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  transition: border-color 0.3s;
}
.form-select:focus { border-color: var(--blue); }
.form-select option { background: var(--dark-2); }
.form-submit {
  width: 100%;
  background: var(--lime);
  color: var(--dark);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1.1rem;
  border: none;
  cursor: pointer;
  margin-top: 1rem;
  transition: background 0.3s, box-shadow 0.3s, transform 0.2s;
}
.form-submit:hover {
  background: var(--white);
  box-shadow: 0 8px 30px rgba(140, 198, 63, 0.4);
  transform: translateY(-2px);
}

/* ===== FOOTER ===== */
footer {
  background: var(--dark);
  border-top: 1px solid rgba(27,79,168,0.2);
  padding: 4rem 4rem 2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(248,245,238,0.06);
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.2rem;
  text-decoration: none;
}
.footer-logo-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 6px;
  padding: 4px 8px;
  flex-shrink: 0;
}
.footer-logo img {
  height: 34px;
  width: auto;
  display: block;
}
.footer-logo-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
}
.footer-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--white-muted);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}
.footer-socials {
  display: flex;
  gap: 0.8rem;
}
.footer-social {
  width: 36px; height: 36px;
  border: 1px solid rgba(248,245,238,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--white-muted);
  text-decoration: none;
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}
.footer-social:hover {
  border-color: var(--lime);
  color: var(--lime);
  background: rgba(140, 198, 63, 0.1);
}
.footer-col-title {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.footer-links a {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--white-muted);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--white); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
}
.footer-contact-icon {
  font-size: 0.8rem;
  color: var(--blue-glow);
  margin-top: 2px;
  flex-shrink: 0;
  width: 14px;
  text-align: center;
}
.footer-contact-text {
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--white-muted);
  line-height: 1.6;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy {
  font-size: 0.72rem;
  color: var(--white-dim);
}
.footer-bottom-links {
  display: flex;
  gap: 2rem;
}
.footer-bottom-links a {
  font-size: 0.72rem;
  color: var(--white-dim);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-bottom-links a:hover { color: var(--white); }

/* ===== MOBILE MENU ===== */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(6,11,24,0.98);
  backdrop-filter: blur(20px);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--gold-light); }
.mobile-menu-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(248,245,238,0.2);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  nav { padding: 1rem 2rem; }
  nav.scrolled { padding: 0.8rem 2rem; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  section { padding: 4rem 2rem; }
  .about { grid-template-columns: 1fr; gap: 3rem; padding: 4rem 2rem; }
  .about-img-accent { display: none; }
  .exp-grid { grid-template-columns: 1fr; }
  .exp-card { height: 320px; }
  .exp-text { max-height: 100px !important; }
  .events-grid { grid-template-columns: 1fr; }
  .menu-preview { grid-template-columns: 1fr; }
  .menu-visual { min-height: 300px; }
  .menu-content { padding: 3rem 2rem; }
  .menu-tabs { flex-wrap: wrap; }
  .menu-tab { padding: 0.6rem 1rem; font-size: 0.65rem; }
  .menu-item { padding: 1rem 0; }
  .menu-item-name { font-size: 1rem; }
  .menu-item-price { font-size: 0.9rem; }
  .foundation-strip { grid-template-columns: 1fr; padding: 3rem 2rem; gap: 2rem; }
  .foundation-divider { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .reservation { grid-template-columns: 1fr; }
  .reservation-form, .reservation-visual { padding: 3rem 2rem; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .hero-stats { display: none; }
  .hero-content { padding: 0 2rem; }
  .hero-title { font-size: 3rem; }
  .about-pillars { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .experience-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .events-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
}
@media (max-width: 640px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-links { flex-wrap: wrap; justify-content: center; }
  .hero-title { font-size: 2.5rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .menu-tabs { gap: 0.5rem; }
  .menu-tab { padding: 0.5rem 0.8rem; font-size: 0.6rem; }
  .menu-item-left { flex: 1; }
  .menu-item-price { font-size: 0.8rem; }
  .menu-item-desc { font-size: 0.65rem; }
}

/* SCROLL ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
