/* ═══════════════════════════════════════════════════
   NOIR & CREMA — Premium Café Design System
   Palette: Espresso #1A0F0A · Cream #F2E6D9 · Terracotta #B5563E · Gold #C9A87C
   Fonts: Cormorant Garamond (display) + Outfit (body)
═══════════════════════════════════════════════════ */

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

:root {
  --espresso:    #1A0F0A;
  --espresso-2:  #2C1A12;
  --espresso-3:  #3D2B1F;
  --cream:       #F2E6D9;
  --cream-2:     #E8D5C0;
  --cream-3:     #D4C0A8;
  --terracotta:  #B5563E;
  --terra-light: #D4896A;
  --gold:        #C9A87C;
  --gold-light:  #E2C99A;
  --white:       #FAFAF8;
  --text-muted:  #8A7060;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Outfit', sans-serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  24px;
  --radius-xl:  40px;

  --shadow-sm:  0 2px 12px rgba(26,15,10,0.12);
  --shadow-md:  0 8px 32px rgba(26,15,10,0.18);
  --shadow-lg:  0 20px 60px rgba(26,15,10,0.28);
  --shadow-xl:  0 40px 100px rgba(26,15,10,0.4);

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

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

body {
  font-family: var(--font-body);
  background: var(--espresso);
  color: var(--cream);
  overflow-x: hidden;
  cursor: none;
  line-height: 1.6;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: none; border: none; background: none; font-family: var(--font-body); }
input, select, textarea { font-family: var(--font-body); }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ── GRAIN OVERLAY ── */
.grain-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* ── CUSTOM CURSOR ── */
.cursor {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, width 0.3s, height 0.3s, background 0.3s;
  mix-blend-mode: difference;
}

.cursor-follower {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(201,168,124,0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease-out, width 0.3s, height 0.3s, border-color 0.3s;
}

.cursor.hover { width: 16px; height: 16px; background: var(--terracotta); }
.cursor-follower.hover { width: 56px; height: 56px; border-color: var(--terracotta); }

/* ── SCROLL REVEAL ── */
.reveal-up, .reveal-left, .reveal-right {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal-left  { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal-up.visible, .reveal-left.visible, .reveal-right.visible {
  opacity: 1;
  transform: translate(0);
}

/* ── TYPOGRAPHY ── */
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 24px;
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

.section-desc {
  font-size: 1.05rem;
  color: var(--cream-3);
  max-width: 560px;
  line-height: 1.75;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header .section-desc {
  margin: 0 auto;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn:hover::before { transform: translateX(0); }

.btn-primary {
  background: var(--terracotta);
  color: var(--white);
  border: 1px solid var(--terracotta);
}

.btn-primary:hover {
  background: var(--terra-light);
  border-color: var(--terra-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(181,86,62,0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(242,230,217,0.3);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-full { width: 100%; justify-content: center; }

/* ═══════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 48px;
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(26,15,10,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 16px 48px;
  border-bottom: 1px solid rgba(201,168,124,0.1);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: 0.02em;
}

.nav-logo .logo-icon { font-size: 1.2rem; }
.nav-logo em { font-style: italic; color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-link {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-3);
  transition: color var(--transition-fast);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-link:hover { color: var(--cream); }
.nav-link:hover::after { width: 100%; }

.nav-cta {
  background: var(--terracotta);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 2px;
  letter-spacing: 0.1em;
  transition: var(--transition) !important;
}

.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--terra-light); transform: translateY(-1px); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--cream);
  transition: var(--transition);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--espresso);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mobile-menu.open { transform: translateX(0); }

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 32px;
  text-align: center;
}

.mobile-link {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--cream);
  transition: color var(--transition-fast);
}

.mobile-link:hover { color: var(--gold); }

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-img {
  transform: scale(1.05);
  transition: transform 8s ease-out;
}

.hero-img.loaded { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26,15,10,0.85) 0%,
    rgba(26,15,10,0.5) 50%,
    rgba(26,15,10,0.7) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 80px;
  max-width: 800px;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  animation-delay: 0.2s;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 400;
  line-height: 1.0;
  color: var(--cream);
  margin-bottom: 28px;
  animation-delay: 0.4s;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--cream-3);
  line-height: 1.75;
  margin-bottom: 48px;
  max-width: 480px;
  animation-delay: 0.6s;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation-delay: 0.8s;
}

/* Hero Scroll Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 120px;
  right: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 2;
}

.hero-scroll-indicator span {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  writing-mode: vertical-rl;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.6); }
}

/* Hero Stats */
.hero-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(26,15,10,0.7);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(201,168,124,0.15);
  padding: 28px 0;
}

.stat {
  text-align: center;
  padding: 0 60px;
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-3);
  margin-top: 6px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(201,168,124,0.2);
}

/* ═══════════════════════════════════════
   MARQUEE
═══════════════════════════════════════ */
.marquee-section {
  background: var(--terracotta);
  padding: 18px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.marquee-track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  width: max-content;
}

.marquee-track span {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
}

.marquee-dot {
  color: rgba(255,255,255,0.5) !important;
  font-size: 0.6rem !important;
}

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

/* ═══════════════════════════════════════
   MENU SECTION
═══════════════════════════════════════ */
.menu-section {
  padding: 120px 0;
  background: var(--espresso);
}

/* Menu Tabs */
.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 64px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,124,0.12);
  border-radius: 4px;
  padding: 6px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.tab-btn {
  padding: 10px 28px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-3);
  border-radius: 2px;
  transition: var(--transition);
}

.tab-btn.active {
  background: var(--terracotta);
  color: var(--white);
}

.tab-btn:hover:not(.active) { color: var(--cream); }

/* Menu Grid */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.tab-content { display: none; }
.tab-content.active { display: grid; }

/* Menu Cards */
.menu-card {
  background: var(--espresso-2);
  border: 1px solid rgba(201,168,124,0.1);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}

.menu-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201,168,124,0.3);
  box-shadow: var(--shadow-lg);
}

.menu-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.menu-card-img img {
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.menu-card:hover .menu-card-img img { transform: scale(1.08); }

.menu-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--terracotta);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 2px;
}

.menu-card-body {
  padding: 24px;
}

.menu-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.menu-card-top h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--cream);
  line-height: 1.2;
}

.menu-price {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--gold);
  white-space: nowrap;
  margin-left: 12px;
}

.menu-card-body p {
  font-size: 0.875rem;
  color: var(--cream-3);
  line-height: 1.65;
  margin-bottom: 16px;
}

.menu-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.menu-tags span {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,124,0.25);
  padding: 4px 10px;
  border-radius: 2px;
}

/* ═══════════════════════════════════════
   ABOUT SECTION
═══════════════════════════════════════ */
.about-section {
  padding: 120px 0;
  background: var(--espresso-2);
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.about-images {
  position: relative;
  height: 600px;
}

.about-img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 75%;
  height: 80%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.about-img-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 50%;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 4px solid var(--espresso-2);
  box-shadow: var(--shadow-lg);
}

.about-badge {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: var(--terracotta);
  color: var(--white);
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  z-index: 2;
}

.badge-year {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1;
}

.badge-text {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.8;
}

.about-content { padding-right: 20px; }

.about-text {
  font-size: 1rem;
  color: var(--cream-3);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 40px 0;
}

.value-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.value-icon {
  font-size: 1.2rem;
  color: var(--gold);
  margin-top: 2px;
  flex-shrink: 0;
}

.value-item h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 4px;
}

.value-item p {
  font-size: 0.875rem;
  color: var(--cream-3);
  line-height: 1.6;
}

/* ═══════════════════════════════════════
   EXPERIENCE SECTION
═══════════════════════════════════════ */
.experience-section {
  padding: 120px 0;
  background: var(--espresso);
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}

.exp-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  min-height: 320px;
  transition: var(--transition);
}

.exp-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }

.exp-card--large {
  grid-column: span 2;
  min-height: 400px;
}

.exp-card--wide {
  grid-column: span 2;
}

.exp-card-bg {
  position: absolute;
  inset: 0;
}

.exp-card-bg img { transition: transform 0.6s ease; }
.exp-card:hover .exp-card-bg img { transform: scale(1.06); }

.exp-card-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,15,10,0.95) 0%, rgba(26,15,10,0.4) 60%, transparent 100%);
}

.exp-card-content {
  position: relative;
  z-index: 2;
  padding: 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.exp-icon {
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

.exp-card-content h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 10px;
  line-height: 1.2;
}

.exp-card-content p {
  font-size: 0.875rem;
  color: var(--cream-3);
  line-height: 1.65;
  margin-bottom: 20px;
}

.exp-link {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap var(--transition-fast), color var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.exp-link:hover { color: var(--terra-light); gap: 10px; }

/* ═══════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════ */
.testimonials-section {
  padding: 120px 0;
  background: var(--espresso-2);
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.testimonial-card {
  min-width: calc(33.333% - 16px);
  background: var(--espresso-3);
  border: 1px solid rgba(201,168,124,0.1);
  border-radius: var(--radius-md);
  padding: 40px;
  flex-shrink: 0;
  transition: var(--transition);
}

.testimonial-card:hover {
  border-color: rgba(201,168,124,0.25);
  transform: translateY(-4px);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 3px;
  margin-bottom: 20px;
}

.testimonial-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--cream);
  line-height: 1.7;
  margin-bottom: 28px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(201,168,124,0.3);
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--cream);
}

.testimonial-author span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.testimonial-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 48px;
}

.t-nav-btn {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(201,168,124,0.25);
  border-radius: 50%;
  color: var(--gold);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.t-nav-btn:hover {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: var(--white);
}

.t-dots {
  display: flex;
  gap: 8px;
}

.t-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(201,168,124,0.3);
  transition: var(--transition);
  cursor: none;
}

.t-dot.active {
  background: var(--gold);
  width: 20px;
  border-radius: 3px;
}

/* ═══════════════════════════════════════
   GALLERY
═══════════════════════════════════════ */
.gallery-section {
  padding: 120px 0 0;
  background: var(--espresso);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 300px 300px;
  gap: 4px;
  margin-top: 64px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
}

.gallery-item--tall { grid-row: span 2; }
.gallery-item--wide { grid-column: span 2; }

.gallery-item img {
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item:hover img { transform: scale(1.08); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,15,10,0);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  transition: background var(--transition);
}

.gallery-item:hover .gallery-overlay { background: rgba(26,15,10,0.5); }

.gallery-overlay span {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--cream);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity var(--transition), transform var(--transition);
}

.gallery-item:hover .gallery-overlay span {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════
   RESERVATION
═══════════════════════════════════════ */
.reserve-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.reserve-bg {
  position: absolute;
  inset: 0;
}

.reserve-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,15,10,0.97) 0%, rgba(26,15,10,0.85) 100%);
}

.reserve-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.reserve-info p {
  font-size: 1rem;
  color: var(--cream-3);
  line-height: 1.75;
  margin-bottom: 40px;
}

.reserve-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.reserve-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.detail-icon {
  font-size: 1.2rem;
  color: var(--gold);
  margin-top: 2px;
  flex-shrink: 0;
}

.reserve-detail strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.reserve-detail span {
  display: block;
  font-size: 0.9rem;
  color: var(--cream-3);
  line-height: 1.6;
}

/* Reservation Form */
.reserve-form-wrap {
  background: rgba(44,26,18,0.8);
  border: 1px solid rgba(201,168,124,0.15);
  border-radius: var(--radius-lg);
  padding: 48px;
  backdrop-filter: blur(20px);
}

.reserve-form h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 0;
}

.form-group:last-child:not(.form-row .form-group) { margin-bottom: 24px; }

.form-group label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(26,15,10,0.6);
  border: 1px solid rgba(201,168,124,0.2);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.9rem;
  color: var(--cream);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
  -webkit-appearance: none;
}

.form-group select {
  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='%23C9A87C' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,124,0.1);
}

.form-group textarea { resize: vertical; min-height: 90px; }

/* ═══════════════════════════════════════
   NEWSLETTER
═══════════════════════════════════════ */
.newsletter-section {
  padding: 100px 0;
  background: var(--terracotta);
  position: relative;
  overflow: hidden;
}

.newsletter-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}

.newsletter-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: rgba(0,0,0,0.08);
  border-radius: 50%;
}

.newsletter-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-inner .section-eyebrow { color: rgba(255,255,255,0.7); }

.newsletter-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 16px;
}

.newsletter-inner > p {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 36px;
}

.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 480px;
  margin: 0 auto 16px;
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.3);
}

.newsletter-form input {
  flex: 1;
  background: rgba(255,255,255,0.15);
  border: none;
  padding: 14px 20px;
  font-size: 0.9rem;
  color: var(--white);
  outline: none;
}

.newsletter-form input::placeholder { color: rgba(255,255,255,0.6); }

.newsletter-form .btn-primary {
  background: var(--espresso);
  border-color: var(--espresso);
  border-radius: 0;
  white-space: nowrap;
}

.newsletter-form .btn-primary:hover { background: var(--espresso-2); }

.newsletter-note {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.footer {
  background: var(--espresso);
  border-top: 1px solid rgba(201,168,124,0.1);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(201,168,124,0.1);
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 16px;
}

.footer-brand .footer-logo em { font-style: italic; color: var(--gold); }

.footer-brand > p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(201,168,124,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--transition);
}

.social-link svg { width: 16px; height: 16px; }

.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col li,
.footer-col a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color var(--transition-fast);
  line-height: 1.5;
}

.footer-col a:hover { color: var(--cream); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 0.78rem;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.footer-legal a:hover { color: var(--cream); }

/* ═══════════════════════════════════════
   TOAST
═══════════════════════════════════════ */
.toast {
  position: fixed;
  bottom: 32px;
  right: 32px;
  background: var(--espresso-3);
  border: 1px solid rgba(201,168,124,0.3);
  color: var(--cream);
  padding: 16px 24px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  z-index: 10001;
  transform: translateY(100px);
  opacity: 0;
  transition: var(--transition);
  max-width: 320px;
  box-shadow: var(--shadow-lg);
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 1200px) {
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .experience-grid { grid-template-columns: repeat(2, 1fr); }
  .exp-card--large { grid-column: span 2; }
  .exp-card--wide { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 1024px) {
  .container { padding: 0 24px; }
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-images { height: 400px; }
  .reserve-grid { grid-template-columns: 1fr; gap: 60px; }
  .testimonial-card { min-width: calc(50% - 12px); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .gallery-item--tall { grid-row: span 1; }
  .gallery-item--wide { grid-column: span 2; }
}

@media (max-width: 768px) {
  .nav { padding: 20px 24px; }
  .nav.scrolled { padding: 14px 24px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .hero-content { padding: 0 24px; }
  .hero-title { font-size: clamp(2.8rem, 10vw, 4.5rem); }
  .hero-stats { flex-direction: row; flex-wrap: wrap; }
  .stat { padding: 16px 24px; }
  .hero-scroll-indicator { display: none; }

  .menu-grid { grid-template-columns: 1fr; }
  .menu-tabs { flex-wrap: wrap; width: 100%; }

  .experience-grid { grid-template-columns: 1fr; }
  .exp-card--large, .exp-card--wide { grid-column: span 1; }

  .testimonial-card { min-width: calc(100% - 0px); }

  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .gallery-item--wide { grid-column: span 1; }
  .gallery-item { height: 250px; }

  .form-row { grid-template-columns: 1fr; }
  .reserve-form-wrap { padding: 28px 20px; }

  .newsletter-form { flex-direction: column; border-radius: var(--radius-sm); }
  .newsletter-form .btn-primary { border-radius: 0; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }

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

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .hero-stats { display: none; }
  .section-title { font-size: 2.2rem; }
}

/* ── HERO REVEAL ANIMATION ── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow { animation: fadeInUp 0.8s ease forwards; animation-delay: 0.3s; opacity: 0; }
.hero-title   { animation: fadeInUp 0.8s ease forwards; animation-delay: 0.5s; opacity: 0; }
.hero-subtitle{ animation: fadeInUp 0.8s ease forwards; animation-delay: 0.7s; opacity: 0; }
.hero-actions { animation: fadeInUp 0.8s ease forwards; animation-delay: 0.9s; opacity: 0; }
.hero-stats   { animation: fadeInUp 0.8s ease forwards; animation-delay: 1.1s; opacity: 0; }