/* ══════════════════════════════════════════════════
   SARDI PERUVIAN CUISINE — Master Stylesheet
   Inspired by award-winning restaurant sites
   ══════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400;1,600&family=Outfit:wght@200;300;400;500;600&family=DM+Serif+Display:ital@0;1&display=swap');

/* ── TOKENS ─────────────────────────────────────── */
:root {
  --black:     #0A0603;
  --near-black:#100B07;
  --dark:      #2f0101;
  --red:       #93A603;      /* was #B91C1C */
  --red-rich:  #B52203;      /* was #991B1B */
  --gold:      #F27405;      /* was #C9974A */
  --gold-lt:   #D92B04;      /* was #E8C88A */
  --cream:     #F7F0E6;
  --off-white: #FBF7F2;
  --warm-gray: #8A7A6A;
  --border-dk: rgba(255,255,255,0.08);
  --border-lt: rgba(26,16,8,0.10);
  --ease:      cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:   cubic-bezier(0.4, 0, 1, 1);
  --olive:  #667302;
}

/* ── RESET ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Outfit', sans-serif;
  background: var(--black);
  color: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }

/* ── CURSOR ─────────────────────────────────────── */
.cursor {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--gold);
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  mix-blend-mode: difference;
  transition: transform 0.15s var(--ease), width 0.3s var(--ease), height 0.3s var(--ease);
  transform: translate(-50%, -50%);
}
.cursor.expanded { width: 48px; height: 48px; }
.cursor-ring {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(201,151,74,0.5);
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.4s var(--ease);
}

/* ── LOADING SCREEN ─────────────────────────────── */
#loader {
  position: fixed; inset: 0;
  background: var(--black);
  z-index: 10000;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 32px;
}
.loader-logo {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.5rem, 8vw, 6rem);
  font-weight: 400;
  letter-spacing: 0.3em;
  color: var(--cream);
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.2s forwards;
}
.loader-logo em { color: var(--gold); font-style: italic; }
.loader-line {
  width: 0; height: 1px;
  background: var(--gold);
  animation: expandLine 1.2s var(--ease) 0.5s forwards;
}
.loader-sub {
  font-size: 0.7rem; letter-spacing: 4px; text-transform: uppercase;
  color: var(--warm-gray);
  opacity: 0;
  animation: fadeUp 0.6s var(--ease) 1s forwards;
}
#loader.exit {
  animation: loaderExit 0.8s var(--ease) forwards;
}
@keyframes loaderExit {
  to { opacity: 0; transform: translateY(-100%); pointer-events: none; }
}
@keyframes expandLine {
  to { width: 200px; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── NAV ────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 500;
  padding: 0 5%;
  height: 88px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.5s, backdrop-filter 0.5s, height 0.4s;
}
nav.scrolled {
  background: rgba(10,6,3,0.92);
  backdrop-filter: blur(20px);
  height: 68px;
  border-bottom: 1px solid var(--border-dk);
}
.nav-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem; letter-spacing: 0.1em;
  color: var(--cream); z-index: 2;
}
.nav-logo em { color: var(--gold); font-style: italic; }
.nav-links {
  display: flex; gap: 40px; align-items: center;
}
.nav-links a {
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: rgba(247,240,230,0.65);
  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.4s var(--ease);
}
.nav-links a:hover { color: var(--cream); }
.nav-links a:hover::after { width: 100%; }
.nav-reserve {
  border: 1px solid rgba(201,151,74,0.6);
  color: var(--gold);
  padding: 11px 28px;
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  border-radius: 1px;
  transition: background 0.3s, color 0.3s;
}
.nav-reserve:hover { background: var(--gold); color: var(--black); }
.hamburger {
  display: none; flex-direction: column;
  gap: 6px; z-index: 2;
}
.hamburger span {
  width: 24px; height: 1px;
  background: var(--cream);
  transition: transform 0.4s, opacity 0.4s;
  display: block;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* MOBILE NAV */
.mobile-nav {
  position: fixed; inset: 0;
  background: var(--near-black);
  z-index: 499;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 40px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s;
}
.mobile-nav.open { opacity: 1; pointer-events: all; }
.mobile-nav a {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 7vw, 4rem);
  color: var(--cream);
  transition: color 0.3s;
}
.mobile-nav a:hover { color: var(--gold); }

/* ── HERO ───────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh; min-height: 700px;
  overflow: hidden;
  display: flex; align-items: flex-end;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1504674900247-0877df9cc836?auto=format&fit=crop&q=80&w=1800') center/cover;
  transform: scale(1.08);
  transition: transform 8s ease;
}
.hero-bg.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,6,3,0.95) 0%,
    rgba(10,6,3,0.5) 40%,
    rgba(10,6,3,0.15) 70%,
    transparent 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  padding: 0 7% 10vh;
  max-width: 1400px; margin: 0 auto; width: 100%;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 16px;
  font-size: 0.68rem; font-weight: 500;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 28px;
  opacity: 0; transform: translateY(30px);
  animation: fadeUp 0.8s var(--ease) 1.5s forwards;
}
.hero-eyebrow::before {
  content: ''; width: 40px; height: 1px; background: var(--gold);
}
.hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(4rem, 9vw, 9rem);
  font-weight: 400; line-height: 0.95;
  color: var(--cream); margin-bottom: 40px;
  opacity: 0; transform: translateY(40px);
  animation: fadeUp 1s var(--ease) 1.7s forwards;
}
.hero h1 em { font-style: italic; color: var(--gold-lt); }
.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(247,240,230,0.6);
  line-height: 1.7; font-weight: 300;
  max-width: 500px; margin-bottom: 48px;
  opacity: 0; transform: translateY(30px);
  animation: fadeUp 0.8s var(--ease) 2s forwards;
}
.hero-ctas {
  display: flex; gap: 20px; align-items: center;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 0.8s var(--ease) 2.2s forwards;
}
.btn-gold {
  background: var(--gold);
  color: var(--black);
  padding: 18px 48px;
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase;
  border: none; border-radius: 1px;
  transition: background 0.3s, transform 0.3s var(--ease), box-shadow 0.3s;
  display: inline-block;
}
.btn-gold:hover {
  background: var(--gold-lt);
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(201,151,74,0.25);
}
.btn-ghost {
  color: rgba(247,240,230,0.8);
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase;
  border-bottom: 1px solid rgba(247,240,230,0.3);
  padding-bottom: 2px;
  transition: color 0.3s, border-color 0.3s;
  display: inline-block;
}
.btn-ghost:hover { color: var(--cream); border-color: var(--cream); }

/* SCROLL INDICATOR */
.scroll-indicator {
  position: absolute; bottom: 48px; right: 7%;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: 0.6rem; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(247,240,230,0.4);
  opacity: 0; animation: fadeUp 1s var(--ease) 2.5s forwards;
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease infinite 3s;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* ── MARQUEE ────────────────────────────────────── */
.marquee-strip {
  border-top: 1px solid var(--border-dk);
  border-bottom: 1px solid var(--border-dk);
  padding: 18px 0;
  overflow: hidden;
  background: transparent;
}
.marquee-track {
  display: flex; white-space: nowrap;
  animation: marqueeScroll 24s linear infinite;
}
.marquee-item {
  font-size: 0.68rem; letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(247,240,230,0.35);
  padding: 0 40px;
  display: flex; align-items: center; gap: 40px;
}
.marquee-item::after { content: '✦'; font-size: 0.5rem; color: var(--gold); }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── SECTION BASE ───────────────────────────────── */
.section { padding: 140px 7%; max-width: 1400px; margin: 0 auto; }
.section-full { padding: 140px 7%; }

.reveal {
  opacity: 0; transform: translateY(50px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0; transform: translateX(-60px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0; transform: translateX(60px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

.eyebrow-tag {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 0.65rem; letter-spacing: 4px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 20px;
}
.eyebrow-tag::before { content: ''; width: 32px; height: 1px; background: var(--gold); }

/* ── INTRO STATEMENT ────────────────────────────── */
.intro-statement {
  padding: 160px 7%;
  border-bottom: 1px solid var(--border-dk);
}
.intro-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 2fr; gap: 80px; align-items: end;
}
.intro-label {
  font-size: 0.65rem; letter-spacing: 4px;
  text-transform: uppercase; color: var(--warm-gray);
  padding-top: 8px;
}
.intro-text {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 400; line-height: 1.15;
  color: var(--cream);
}
.intro-text em { font-style: italic; color: var(--gold-lt); }

/* ── FULLBLEED IMAGE SPLIT ──────────────────────── */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 90vh;
}
.split-img {
  position: relative; overflow: hidden;
}
.split-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
}
.split-img:hover img { transform: scale(1.04); }
.split-content {
  background: var(--near-black);
  padding: 100px 9%;
  display: flex; flex-direction: column; justify-content: center;
}
.split-content.dark { background: var(--black); }
.split-content.cream-bg {
  background: var(--cream);
  color: var(--dark);
}
.split-content.cream-bg .eyebrow-tag { color: #8B4513; }
.split-content.cream-bg .eyebrow-tag::before { background: #8B4513; }
.split-content h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 400; line-height: 1.1;
  margin-bottom: 28px;
}
.split-content h2 em { font-style: italic; color: var(--gold-lt); }
.split-content.cream-bg h2 em { color: var(--red); }
.split-content p {
  font-size: 1rem; line-height: 1.85;
  color: rgba(247,240,230,0.65);
  font-weight: 300; margin-bottom: 16px;
  max-width: 520px;
}
.split-content.cream-bg p { color: #5C4033; }

/* ── MENU PREVIEW SECTION ───────────────────────── */
.menu-preview-section {
  background: var(--near-black);
  padding: 140px 7%;
  border-top: 1px solid var(--border-dk);
  border-bottom: 1px solid var(--border-dk);
}
.menu-preview-inner { max-width: 1400px; margin: 0 auto; }
.menu-header {
  display: flex; justify-content: space-between;
  align-items: flex-end; margin-bottom: 80px;
  flex-wrap: wrap; gap: 32px;
}
.menu-header h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 400; line-height: 0.95;
}
.menu-header h2 em { font-style: italic; color: var(--gold-lt); }
.menu-categories {
  display: flex; flex-direction: column; gap: 0;
}
.menu-cat {
  border-top: 1px solid var(--border-dk);
  padding: 36px 0;
  display: grid;
  grid-template-columns: 220px 1fr auto;
  gap: 40px; align-items: start;
  transition: background 0.3s;
  cursor: pointer;
}
.menu-cat:last-child { border-bottom: 1px solid var(--border-dk); }
.menu-cat:hover { background: rgba(255,255,255,0.02); }
.menu-cat-num {
  font-size: 0.65rem; letter-spacing: 3px;
  color: var(--warm-gray); text-transform: uppercase;
  padding-top: 6px;
}
.menu-cat-name {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.8rem);
  font-weight: 400; line-height: 1;
}
.menu-cat-name em { font-style: italic; color: var(--gold-lt); }
.menu-cat-items {
  font-size: 0.78rem; color: var(--warm-gray);
  line-height: 1.8; margin-top: 12px;
}
.menu-cat-arrow {
  font-size: 1.5rem; color: var(--gold);
  opacity: 0; transform: translateX(-10px);
  transition: opacity 0.3s, transform 0.3s;
  padding-top: 8px;
}
.menu-cat:hover .menu-cat-arrow {
  opacity: 1; transform: translateX(0);
}

/* ── FULL MENU PAGE ─────────────────────────────── */
.menu-page-hero {
  height: 60vh; min-height: 500px;
  position: relative;
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.menu-page-hero img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.menu-page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, var(--black) 0%, transparent 60%);
}
.menu-page-hero-content {
  position: relative; z-index: 2;
  padding: 0 7% 80px;
  max-width: 1400px; margin: 0 auto; width: 100%;
}
.menu-page-hero-content h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(4rem, 8vw, 8rem);
  font-weight: 400; line-height: 0.95;
}
.menu-page-hero-content h1 em { font-style: italic; color: var(--gold-lt); }

.menu-sticky-nav {
  position: sticky; top: 68px; z-index: 200;
  background: rgba(10,6,3,0.95); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-dk);
  padding: 0 7%;
}
.menu-sticky-inner {
  max-width: 1400px; margin: 0 auto;
  display: flex; gap: 0; overflow-x: auto;
  scrollbar-width: none;
}
.menu-sticky-inner::-webkit-scrollbar { display: none; }
.menu-tab {
  white-space: nowrap; padding: 20px 28px;
  font-size: 0.68rem; letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--warm-gray);
  border-bottom: 1px solid transparent;
  transition: color 0.3s, border-color 0.3s;
  cursor: pointer; background: none; border: none;
  border-bottom: 2px solid transparent;
  font-family: 'Outfit', sans-serif;
}
.menu-tab:hover { color: var(--cream); }
.menu-tab.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.menu-content { max-width: 1400px; margin: 0 auto; padding: 80px 7%; }
.menu-section { margin-bottom: 100px; }
.menu-section-header {
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-dk);
  display: flex; align-items: baseline; gap: 24px;
}
.menu-section-header h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
}
.menu-section-header h2 em { font-style: italic; color: var(--gold-lt); }
.menu-section-note {
  font-size: 0.75rem; color: var(--warm-gray);
  letter-spacing: 1px;
}

.dish-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1px;
  border: 1px solid var(--border-dk);
}
.dish-item {
  padding: 32px;
  border-right: 1px solid var(--border-dk);
  border-bottom: 1px solid var(--border-dk);
  transition: background 0.3s;
  position: relative;
}
.dish-item:hover { background: rgba(255,255,255,0.025); }
.dish-name {
  font-family: 'DM Serif Display', serif;
  font-size: 1.35rem; font-weight: 400;
  margin-bottom: 8px; line-height: 1.2;
}
.dish-desc {
  font-size: 0.82rem; color: var(--warm-gray);
  line-height: 1.7; margin-bottom: 20px; font-weight: 300;
}
.dish-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 300;
  color: var(--gold);
}
.dish-badge {
  position: absolute; top: 32px; right: 32px;
  font-size: 0.6rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); border: 1px solid rgba(201,151,74,0.4);
  padding: 4px 10px;
}
.dish-variants {
  font-size: 0.78rem; color: var(--warm-gray); margin-top: 8px;
}

/* ── ABOUT / STORY SECTION ──────────────────────── */
.story-section {
  background: var(--near-black);
  padding: 160px 7%;
  border-top: 1px solid var(--border-dk);
}
.story-inner {
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 100px; align-items: start;
}
.story-left { position: sticky; top: 120px; }
.story-left h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 400; line-height: 1.0;
  margin-bottom: 40px;
}
.story-left h2 em { font-style: italic; color: var(--gold-lt); }
.story-img {
  width: 100%; aspect-ratio: 3/4;
  object-fit: cover;
  margin-top: 40px;
}
.story-right { padding-top: 8px; }
.story-block {
  padding: 48px 0;
  border-bottom: 1px solid var(--border-dk);
}
.story-block:first-child { padding-top: 0; }
.story-block-label {
  font-size: 0.63rem; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 20px;
}
.story-block h3 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  margin-bottom: 16px;
}
.story-block p {
  font-size: 0.95rem; line-height: 1.9;
  color: rgba(247,240,230,0.65); font-weight: 300;
}

/* ── SPECIALS / PHOTOGRAPHY GALLERY ────────────── */
.gallery-section {
  padding: 0;
  overflow: hidden;
}
.gallery-header {
  padding: 100px 7% 60px;
  max-width: 1400px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: flex-end;
}
.gallery-header h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 400; line-height: 0.9;
}
.gallery-header h2 em { font-style: italic; color: var(--gold-lt); }
.gallery-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 400px 400px;
  gap: 4px;
}
.gallery-item {
  overflow: hidden; position: relative;
  background: var(--dark);
}
.gallery-item:first-child { grid-row: 1 / 3; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s var(--ease), filter 0.5s;
  filter: brightness(0.85);
}
.gallery-item:hover img {
  transform: scale(1.06);
  filter: brightness(1);
}
.gallery-item-label {
  position: absolute; bottom: 24px; left: 24px;
  font-size: 0.68rem; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(247,240,230,0.7);
}

/* ── CATERING SECTION ───────────────────────────── */
.catering-hero {
  height: 80vh; min-height: 600px;
  position: relative;
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.catering-hero img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.catering-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, var(--black) 0%, rgba(10,6,3,0.4) 50%, transparent 100%);
}
.catering-hero-content {
  position: relative; z-index: 2;
  padding: 0 7% 10vh;
  max-width: 1400px; margin: 0 auto; width: 100%;
}
.catering-hero-content h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(3.5rem, 7vw, 8rem);
  font-weight: 400; line-height: 0.95;
  max-width: 800px;
}
.catering-hero-content h1 em { font-style: italic; color: var(--gold-lt); }
.catering-hero-content p {
  font-size: 1.1rem; color: rgba(247,240,230,0.7);
  font-weight: 300; max-width: 500px;
  margin-top: 24px; line-height: 1.7;
}

.event-cards {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; border: 1px solid var(--border-dk);
  margin: 80px 0;
}
.event-card {
  padding: 56px 48px;
  border-right: 1px solid var(--border-dk);
  transition: background 0.4s;
  position: relative; overflow: hidden;
}
.event-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 2px; height: 0;
  background: var(--gold);
  transition: height 0.4s var(--ease);
}
.event-card:hover { background: rgba(255,255,255,0.02); }
.event-card:hover::before { height: 100%; }
.event-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem; font-weight: 300;
  color: rgba(201,151,74,0.2); line-height: 1;
  margin-bottom: 24px;
}
.event-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.8rem; font-weight: 400;
  margin-bottom: 16px;
}
.event-card p {
  font-size: 0.88rem; color: var(--warm-gray);
  line-height: 1.8; font-weight: 300;
}

/* ── VISIT / MAP SECTION ────────────────────────── */
.visit-section {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 600px;
}
.visit-map { background: #1a1a1a; position: relative; }
.visit-map iframe { width: 100%; height: 100%; border: 0;}
.visit-info {
  background: var(--near-black);
  padding: 100px 9%;
  display: flex; flex-direction: column; justify-content: center;
  border-left: 1px solid var(--border-dk);
}
.visit-info h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 400; margin-bottom: 56px;
}
.visit-info h2 em { font-style: italic; color: var(--gold-lt); }
.visit-detail {
  display: flex; gap: 24px;
  margin-bottom: 36px; align-items: flex-start;
}
.visit-detail-icon {
  width: 40px; height: 40px;
  border: 1px solid var(--border-dk);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.visit-detail-text h4 {
  font-size: 0.65rem; letter-spacing: 3px;
  text-transform: uppercase; color: var(--warm-gray);
  margin-bottom: 6px;
}
.visit-detail-text p, .visit-detail-text a {
  font-size: 0.95rem; line-height: 1.7;
  color: rgba(247,240,230,0.8);
}
.visit-detail-text a:hover { color: var(--gold); }
.hours-table {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6px 32px; font-size: 0.85rem;
}
.hours-table .day { color: var(--warm-gray); }
.hours-table .time { color: var(--cream); }

/* ── SOCIAL BAR ─────────────────────────────────── */
.social-section {
  padding: 100px 7%;
  border-top: 1px solid var(--border-dk);
  text-align: center;
}
.social-section h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 400; margin-bottom: 16px;
}
.social-section h2 em { font-style: italic; color: var(--gold-lt); }
.social-section p {
  color: var(--warm-gray); font-size: 0.9rem;
  margin-bottom: 48px; font-weight: 300;
}
.social-links {
  display: flex; justify-content: center;
  gap: 20px; flex-wrap: wrap;
}
.social-link {
  display: flex; align-items: center; gap: 10px;
  border: 1px solid var(--border-dk);
  padding: 14px 32px;
  font-size: 0.68rem; letter-spacing: 2px;
  text-transform: uppercase; color: var(--warm-gray);
  transition: border-color 0.3s, color 0.3s, transform 0.3s;
}
.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}

/* ── FOOTER ─────────────────────────────────────── */
footer {
  background: var(--black);
  border-top: 1px solid var(--border-dk);
  padding: 100px 7% 60px;
}
.footer-inner { max-width: 1400px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 80px; margin-bottom: 80px;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--border-dk);
}
.footer-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 2rem; font-weight: 400;
  color: var(--cream); margin-bottom: 20px;
  display: block;
}
.footer-logo em { color: var(--gold); font-style: italic; }
.footer-brand p {
  font-size: 0.85rem; color: var(--warm-gray);
  line-height: 1.8; max-width: 280px; font-weight: 300;
}
.footer-col h4 {
  font-size: 0.62rem; letter-spacing: 3px;
  text-transform: uppercase; color: var(--warm-gray);
  margin-bottom: 24px;
}
.footer-col a {
  display: block; font-size: 0.88rem;
  color: rgba(247,240,230,0.55);
  margin-bottom: 14px; transition: color 0.3s;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 16px;
  font-size: 0.72rem; color: rgba(247,240,230,0.25);
}
.footer-bottom a { color: rgba(247,240,230,0.25); transition: color 0.3s; }
.footer-bottom a:hover { color: var(--warm-gray); }

/* ── RESERVATION CTA ────────────────────────────── */
.reserve-cta {
  background: var(--near-black);
  padding: 160px 7%;
  text-align: center;
  border-top: 1px solid var(--border-dk);
  position: relative; overflow: hidden;
}
.reserve-cta::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(185,28,28,0.08), transparent 70%);
  pointer-events: none;
}
.reserve-cta h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(3rem, 7vw, 8rem);
  font-weight: 400; line-height: 0.95;
  margin-bottom: 40px;
}
.reserve-cta h2 em { font-style: italic; color: var(--gold-lt); }
.reserve-cta p {
  font-size: 1rem; color: var(--warm-gray);
  max-width: 500px; margin: 0 auto 48px;
  line-height: 1.7; font-weight: 300;
}

/* ── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 1100px) {
  .split-section { grid-template-columns: 1fr; }
  .split-img { height: 60vh; }
  .story-inner { grid-template-columns: 1fr; gap: 60px; }
  .story-left { position: static; }
  .intro-inner { grid-template-columns: 1fr; gap: 24px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 60px; }
  .event-cards { grid-template-columns: 1fr; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item:first-child { grid-row: auto; }
  .visit-section { grid-template-columns: 1fr; }
  .visit-map { min-height: 400px; }
}

@media (max-width: 768px) {
  nav { padding: 0 6%; }
  .nav-links, .nav-reserve { display: none; }
  .hamburger { display: flex; }
  .menu-cat { grid-template-columns: 1fr; gap: 8px; }
  .menu-cat-arrow { display: none; }
  .dish-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .gallery-item { height: 320px; }
  .hero h1 { font-size: clamp(3rem, 12vw, 6rem); }
  .section, .section-full { padding: 80px 6%; }
  .footer-top { grid-template-columns: 1fr; gap: 48px; }
  .cursor, .cursor-ring { display: none; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .social-links { flex-direction: column; align-items: center; }
}
