/* ═══════════════════════════════════════════════════════════
   Bar Ten & Cheese Please — Main Stylesheet
   ═══════════════════════════════════════════════════════════ */

:root {
  --brown-dark:  #080608;
  --brown-mid:   #110810;
  --brown-light: #2a0a28;
  --gold:        #c9293a;
  --gold-light:  #e84455;
  --cream:       #f0e8e8;
  --cream-light: #faf5f5;
  --white:       #ffffff;
  --text:        #f0e8e8;
  --text-muted:  #a08090;
  --border:      rgba(201,41,58,0.25);
  --shadow:      0 12px 48px rgba(0,0,0,0.7);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.5);
  --glow:        0 0 40px rgba(201,41,58,0.15);
  --radius:      10px;
  --font-serif:  'Playfair Display', Georgia, serif;
  --font-sans:   'Inter', 'Segoe UI', system-ui, sans-serif;
  --nav-h:       140px;
}

/* ─── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-sans); color: var(--text); background: var(--brown-dark); line-height: 1.6; }
img  { display: block; max-width: 100%; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }

/* ─── TYPOGRAPHY ──────────────────────────────────────────── */
h1,h2,h3,h4 { font-family: var(--font-serif); line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
p  { max-width: 65ch; }

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

/* ─── LAYOUT ──────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
section    { padding: 96px 0; }
.grid-2    { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.grid-3    { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4    { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ─── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: var(--radius);
  font-size: 0.9rem; font-weight: 600; letter-spacing: 0.06em;
  cursor: pointer; border: 2px solid transparent;
  transition: all 0.2s ease;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #fff;
  box-shadow: 0 4px 20px rgba(201,41,58,0.4);
}
.btn-primary:hover { background: linear-gradient(135deg, var(--gold-light), var(--gold)); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,41,58,0.55); }
.btn-outline {
  background: transparent; color: var(--cream); border-color: var(--gold);
}
.btn-outline:hover { background: var(--gold); color: var(--brown-dark); }
.btn-dark {
  background: var(--brown-light); color: var(--cream); border-color: var(--brown-light);
}
.btn-dark:hover { background: var(--gold); color: var(--brown-dark); }

/* ─── NAVIGATION ──────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  display: flex; align-items: center;
  background: transparent;
  transition: background 0.3s, box-shadow 0.3s;
}
.nav.scrolled {
  background: var(--brown-dark);
  box-shadow: 0 2px 24px rgba(0,0,0,0.4);
}
.nav .container {
  display: flex; align-items: center; justify-content: space-between; width: 100%;
}
.nav-logo {
  display: flex; flex-direction: column; line-height: 1.1;
}
.nav-logo-main { font-family: var(--font-serif); font-size: 3rem; color: var(--cream); font-style: italic; }
.nav-logo-main em { color: var(--gold); font-style: italic; }
.nav-logo-badge { font-family: var(--font-serif); font-size: 3rem; color: var(--gold); font-style: italic; display: block; margin-top: 2px; border: none; padding: 0; letter-spacing: 0; text-transform: none; border-radius: 0; }
.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-links a { color: rgba(240,230,211,0.85); font-size: 0.88rem; font-weight: 500; letter-spacing: 0.04em; transition: color 0.2s; }
.nav-links a:hover { color: var(--gold); }
.nav-links .btn { padding: 10px 22px; font-size: 0.82rem; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--cream); margin: 5px 0; transition: all 0.3s; }

/* ─── HERO ────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--brown-dark);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
}

/* Video background */
.hero-video-wrap {
  position: absolute; inset: 0; z-index: 0;
}
.hero-video {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
}
.hero-video-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(8,4,10,0.88) 0%,
    rgba(17,8,16,0.6) 45%,
    rgba(8,4,10,0.85) 100%
  );
}
.hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 200px;
  background: linear-gradient(to bottom, transparent, var(--brown-dark));
  z-index: 1;
  pointer-events: none;
}

.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(26,15,10,0.92) 0%, rgba(44,24,16,0.75) 50%, rgba(26,15,10,0.88) 100%),
    url('images/hero-bg.jpg') center/cover no-repeat;
}
.hero-content {
  position: relative; z-index: 1;
  max-width: 700px;
  text-align: left;
}
.hero-badge {
  display: inline-block;
  background: rgba(201,168,124,0.15);
  border: 1px solid var(--border);
  color: var(--gold);
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 100px;
  margin-bottom: 24px;
}
.hero h1 { color: var(--cream); margin-bottom: 24px; }
.hero h1 em { color: var(--gold); font-style: normal; }
.hero p { color: rgba(240,230,211,0.8); font-size: 1.1rem; margin-bottom: 40px; max-width: 52ch; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(240,230,211,0.5); font-size: 0.72rem; letter-spacing: 0.15em;
}
.hero-scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollLine 2s infinite;
}
@keyframes scrollLine { 0%,100%{opacity:0} 50%{opacity:1} }

/* ─── ANNOUNCEMENT STRIP ──────────────────────────────────── */
.announce {
  background: var(--gold);
  padding: 12px 24px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brown-dark);
  letter-spacing: 0.04em;
}
.announce a { color: var(--brown-dark); text-decoration: underline; }

/* ─── ABOUT ───────────────────────────────────────────────── */
.about {
  background: linear-gradient(160deg, #110810 0%, #1a0a18 50%, #0d060d 100%);
  position: relative;
}
.about::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(201,41,58,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.about-text h2 {
  margin-bottom: 20px;
  color: var(--cream);
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.about-text p  { color: rgba(240,220,220,0.78); margin-bottom: 20px; }
.about-stats {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 16px; margin-top: 40px;
}
.stat {
  text-align: center; padding: 20px 12px;
  background: rgba(201,41,58,0.08);
  border-radius: var(--radius);
  border: 1px solid rgba(201,41,58,0.2);
  box-shadow: var(--shadow-card);
  transition: transform 0.2s, box-shadow 0.2s;
}
.stat:hover { transform: translateY(-3px); box-shadow: var(--glow); }
.stat-number { font-family: var(--font-serif); font-size: 1.5rem; color: var(--gold); line-height: 1.2; font-style: italic; }
.stat-label  { font-size: 0.75rem; color: rgba(240,210,210,0.65); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 6px; }
.about-image { border-radius: 16px; overflow: hidden; aspect-ratio: 4/5; box-shadow: var(--shadow), var(--glow); }
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-image-placeholder {
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--brown-mid), var(--brown-light));
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px;
  font-family: var(--font-serif);
  color: var(--gold); font-size: 1.2rem; text-align: center; padding: 40px;
}

/* ─── SPECIALS ────────────────────────────────────────────── */
.specials { background: linear-gradient(180deg, #080608 0%, #0f060e 100%); }
.specials .section-label { color: var(--gold); }
.specials-list { display: flex; flex-direction: column; gap: 0; }
.special-row {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 400px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.special-row.reverse { direction: rtl; }
.special-row.reverse > * { direction: ltr; }
.special-img {
  background-size: cover; background-position: center;
  min-height: 380px;
}
.special-info {
  padding: 60px 56px;
  display: flex; flex-direction: column; justify-content: center;
  background: linear-gradient(135deg, #140a13 0%, #1e0c1c 100%);
}
.special-day  { font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; font-weight: 700; }
.special-name { font-family: var(--font-serif); font-size: 2rem; color: var(--cream); margin-bottom: 16px; line-height: 1.2; }
.special-desc { font-size: 0.95rem; color: rgba(245,240,238,0.7); line-height: 1.7; margin-bottom: 16px; max-width: 45ch; }
.special-meta { font-size: 0.82rem; color: rgba(245,240,238,0.5); margin-bottom: 20px; }
.special-meta span { color: var(--gold); }
.special-price {
  display: inline-block;
  background: var(--gold); color: var(--brown-dark);
  font-weight: 700; font-size: 0.9rem;
  padding: 10px 24px; border-radius: 100px;
  width: fit-content;
}
@media (max-width: 768px) {
  .special-row { grid-template-columns: 1fr; }
  .special-row.reverse { direction: ltr; }
  .special-img { min-height: 240px; }
  .special-info { padding: 36px 24px; }
  .special-name { font-size: 1.5rem; }
}

/* ─── MENU PREVIEW ────────────────────────────────────────── */
.menu-preview { background: linear-gradient(160deg, #0d060c 0%, #160a14 60%, #0a0509 100%); }
.menu-preview h2 { margin-bottom: 12px; }
.menu-preview > .container > p { color: var(--text-muted); margin-bottom: 48px; }
.menu-tabs { display: flex; gap: 4px; margin-bottom: 40px; background: rgba(255,255,255,0.05); padding: 4px; border-radius: var(--radius); border: 1px solid var(--border); width: fit-content; flex-wrap: wrap; }
.menu-tab { padding: 10px 24px; border-radius: 6px; font-size: 0.88rem; font-weight: 500; cursor: pointer; transition: all 0.2s; border: none; background: none; color: var(--text-muted); }
.menu-tab.active { background: var(--gold); color: var(--white); }
.menu-tab:hover:not(.active) { background: rgba(255,255,255,0.1); color: var(--cream); }
.menu-panel { display: none; }
.menu-panel.active { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
.menu-item {
  padding: 20px 24px;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: flex-start; gap: 16px;
  transition: box-shadow 0.2s, background 0.2s;
}
.menu-item:hover { box-shadow: var(--shadow); background: rgba(255,255,255,0.08); }
.menu-item-info h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 4px; color: var(--cream); }
.menu-item-info p  { font-size: 0.8rem; color: rgba(240,230,211,0.55); }
.menu-item-price { font-family: var(--font-serif); font-size: 1.1rem; color: var(--gold); white-space: nowrap; font-weight: 700; }
.menu-cta { text-align: center; margin-top: 40px; }

/* BYO Boards grid */
.menu-panel.active#tab-boards { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.byo-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.byo-card { background: rgba(255,255,255,0.05); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; transition: transform 0.2s, box-shadow 0.2s; }
.menu-items-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; }
.menu-item-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(212,175,55,0.2); border-radius: 12px; padding: 18px 20px; transition: border-color 0.2s; }
.menu-item-card:hover { border-color: rgba(212,175,55,0.5); }
.menu-item-top { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; margin-bottom: 6px; }
.menu-item-name { color: var(--cream); font-weight: 600; font-size: 1rem; font-family: 'Playfair Display', serif; }
.menu-item-price { color: var(--gold); font-weight: 700; font-size: 1rem; white-space: nowrap; }
.menu-item-desc { color: var(--text-muted); font-size: 0.85rem; line-height: 1.55; margin: 0; }
.byo-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.byo-card-wide { grid-column: span 1; }
.byo-img { width: 100%; height: 200px; background-size: cover; background-position: center; }
.byo-info { padding: 16px; }
.byo-title-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 4px; }
.byo-title-row h4 { font-size: 1rem; font-weight: 700; color: var(--cream); }
.byo-price { font-family: var(--font-serif); font-size: 1.2rem; color: var(--gold); font-weight: 700; }
.byo-size { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 8px; }
.byo-info p { font-size: 0.82rem; color: rgba(240,230,211,0.75); line-height: 1.5; }
.byo-addons { margin-top: 10px; font-size: 0.75rem; color: var(--text-muted); border-top: 1px solid var(--border); padding-top: 10px; }
.byo-order-btn { margin-top: 14px; width: 100%; padding: 12px; background: var(--gold); color: #fff; border: none; border-radius: 8px; font-size: 0.9rem; font-weight: 700; cursor: pointer; transition: background 0.2s, transform 0.1s; letter-spacing: 0.02em; }
.byo-order-btn:hover { background: var(--gold-light); transform: translateY(-1px); }
.byo-order-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

/* ─── EVENTS / EXPERIENCES ────────────────────────────────── */
.events { background: linear-gradient(160deg, #0a0509 0%, #180b16 50%, #0d060c 100%); }
.events h2 { color: var(--cream); margin-bottom: 12px; }
.events > .container > p { color: rgba(240,230,211,0.7); margin-bottom: 48px; }
.event-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.event-card {
  background: linear-gradient(145deg, rgba(255,255,255,0.07), rgba(201,41,58,0.05));
  border: 1px solid var(--border);
  border-radius: 16px; overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s, box-shadow 0.25s;
}
.event-card:hover { transform: translateY(-5px); box-shadow: var(--shadow), var(--glow); }
.event-card-header { background: rgba(201,168,124,0.15); padding: 32px 32px 24px; }
.event-card-header .event-day { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
.event-card-header h3 { font-family: var(--font-serif); font-size: 1.6rem; color: var(--cream); margin: 8px 0; }
.event-card-header .event-time { font-size: 0.85rem; color: rgba(240,230,211,0.65); }
.event-card-body { padding: 24px 32px 32px; }
.event-card-body p { color: rgba(240,230,211,0.75); font-size: 0.9rem; margin-bottom: 20px; }
.event-features { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.event-feature { display: flex; align-items: center; gap: 10px; font-size: 0.85rem; color: rgba(240,230,211,0.8); }
.event-feature::before { content: '✦'; color: var(--gold); font-size: 0.6rem; }

/* ─── CHEESE FLIGHT BUILDER ───────────────────────────────── */
.flight-builder { background: var(--brown-dark); }
.flight-builder h2 { margin-bottom: 12px; color: var(--cream); }
.flight-builder > .container > p { color: rgba(240,230,211,0.65); margin-bottom: 48px; }
.flight-board {
  background: rgba(255,255,255,0.04);
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 48px;
  box-shadow: var(--shadow);
}
.flight-categories { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 32px; margin-bottom: 40px; }
.flight-cat h4 { font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.flight-items { display: flex; flex-direction: column; gap: 8px; }
.flight-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.15s;
  font-size: 0.88rem;
  color: rgba(240,230,211,0.85);
}
.flight-item:hover { border-color: var(--gold); background: rgba(201,41,58,0.1); }
.flight-item.selected { border-color: var(--gold); background: rgba(201,41,58,0.18); font-weight: 600; color: var(--cream); }
.flight-item .fi-check { width: 16px; height: 16px; border: 1.5px solid rgba(240,230,211,0.3); border-radius: 4px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 0.6rem; transition: all 0.15s; }
.flight-item.selected .fi-check { background: var(--gold); border-color: var(--gold); color: #fff; }
.flight-cta { text-align: center; padding-top: 32px; border-top: 1px solid var(--border); }
.flight-summary { font-size: 0.9rem; color: rgba(240,230,211,0.65); margin-bottom: 20px; }
.flight-summary span { color: var(--gold); font-weight: 600; }

/* ─── REVIEWS ─────────────────────────────────────────────── */
.reviews { background: var(--brown-dark); }
.reviews h2 { color: var(--cream); margin-bottom: 8px; }
.reviews-meta { color: var(--gold); font-size: 1.1rem; margin-bottom: 48px; }
.reviews-meta strong { font-family: var(--font-serif); font-size: 2rem; margin-right: 8px; }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.review-card {
  background: linear-gradient(145deg, rgba(255,255,255,0.07), rgba(201,41,58,0.04));
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s, box-shadow 0.25s;
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.review-stars { color: var(--gold); font-size: 1rem; margin-bottom: 12px; }
.review-text { color: rgba(240,230,211,0.8); font-size: 0.9rem; line-height: 1.7; font-style: italic; margin-bottom: 16px; }
.review-author { color: var(--gold); font-size: 0.8rem; font-weight: 600; }
.review-source { color: rgba(240,230,211,0.4); font-size: 0.75rem; }

/* ─── AI CHAT ─────────────────────────────────────────────── */
.chat-fab {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--gold); color: var(--brown-dark);
  border: none; cursor: pointer; font-size: 1.4rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.chat-fab:hover { transform: scale(1.08); box-shadow: 0 8px 32px rgba(0,0,0,0.4); }
.chat-window {
  position: fixed; bottom: 104px; right: 28px; z-index: 999;
  width: 360px; max-height: 520px;
  background: var(--white); border-radius: 16px;
  box-shadow: 0 16px 64px rgba(0,0,0,0.2);
  display: flex; flex-direction: column;
  overflow: hidden; opacity: 0; pointer-events: none;
  transform: translateY(16px) scale(0.97);
  transition: all 0.25s cubic-bezier(0.34,1.56,0.64,1);
}
.chat-window.open { opacity: 1; pointer-events: all; transform: translateY(0) scale(1); }
.chat-header { background: var(--brown-mid); padding: 18px 20px; display: flex; align-items: center; gap: 12px; }
.chat-avatar { width: 36px; height: 36px; background: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; }
.chat-header-info { flex: 1; }
.chat-header-info strong { color: var(--cream); font-size: 0.9rem; display: block; }
.chat-header-info span { color: var(--gold); font-size: 0.72rem; }
.chat-close { background: none; border: none; color: rgba(240,230,211,0.6); font-size: 1.2rem; cursor: pointer; }
.chat-messages { flex: 1; overflow-y: auto; padding: 20px; display: flex; flex-direction: column; gap: 12px; }
.chat-msg { max-width: 85%; padding: 10px 14px; border-radius: 12px; font-size: 0.87rem; line-height: 1.5; }
.chat-msg.bot  { background: var(--cream); color: var(--text); border-bottom-left-radius: 4px; }
.chat-msg.user { background: var(--brown-mid); color: var(--cream); align-self: flex-end; border-bottom-right-radius: 4px; }
.chat-input-row { display: flex; gap: 8px; padding: 16px; border-top: 1px solid var(--border); }
.chat-input { flex: 1; padding: 10px 14px; border: 1px solid var(--border); border-radius: 8px; font-size: 0.87rem; font-family: var(--font-sans); outline: none; }
.chat-input:focus { border-color: var(--gold); }
.chat-send { background: var(--gold); border: none; border-radius: 8px; padding: 10px 14px; cursor: pointer; font-size: 0.9rem; }
.chat-send:hover { background: var(--gold-light); }
.chat-typing { display: flex; gap: 4px; align-items: center; padding: 10px 14px; }
.chat-typing span { width: 7px; height: 7px; background: var(--text-muted); border-radius: 50%; animation: typing 1.2s infinite; }
.chat-typing span:nth-child(2) { animation-delay: 0.2s; }
.chat-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing { 0%,60%,100%{transform:translateY(0);opacity:0.4} 30%{transform:translateY(-5px);opacity:1} }

/* ─── RESERVATION ─────────────────────────────────────────── */
.reservation { background: linear-gradient(135deg, var(--brown-dark) 0%, var(--brown-mid) 100%); }
.reservation h2 { color: var(--cream); margin-bottom: 12px; }
.reservation > .container > p { color: rgba(240,230,211,0.75); margin-bottom: 48px; max-width: 55ch; }
.res-form {
  background: rgba(255,255,255,0.07);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 48px;
  max-width: 640px;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
label { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
input, select, textarea {
  padding: 12px 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--cream);
  font-size: 0.9rem;
  font-family: var(--font-sans);
  outline: none;
  transition: border-color 0.2s;
}
input:focus, select:focus, textarea:focus { border-color: var(--gold); }
input::placeholder, textarea::placeholder { color: rgba(240,230,211,0.4); }
select option { background: var(--brown-mid); }
textarea { resize: vertical; min-height: 100px; }
.form-submit { margin-top: 8px; width: 100%; justify-content: center; }
.form-note { font-size: 0.78rem; color: rgba(240,230,211,0.5); margin-top: 12px; }
.form-success { display: none; text-align: center; padding: 40px; color: var(--gold); font-family: var(--font-serif); font-size: 1.2rem; }

/* ─── CATERING / PRIVATE EVENTS ──────────────────────────── */
.catering { background: linear-gradient(160deg, #0f060e 0%, #1a0818 50%, #0a0509 100%); }
.catering h2 { margin-bottom: 12px; color: var(--cream); }
.catering > .container > p { color: rgba(240,230,211,0.7); margin-bottom: 48px; }
.catering-options { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.catering-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  transition: box-shadow 0.2s, transform 0.2s, background 0.2s;
}
.catering-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); background: rgba(255,255,255,0.08); }
.catering-icon { font-size: 2rem; margin-bottom: 16px; }
.catering-card h3 { margin-bottom: 8px; color: var(--cream); }
.catering-card p { color: rgba(240,230,211,0.65); font-size: 0.88rem; margin-bottom: 20px; }

/* ─── VIP SIGNUP ──────────────────────────────────────────── */
.vip-signup {
  background: linear-gradient(135deg, #1a0818 0%, #0d060c 50%, #1a0818 100%);
  position: relative; overflow: hidden;
}
.vip-signup::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(201,41,58,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.vip-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
  position: relative; z-index: 1;
}
.vip-text h2 { color: var(--cream); margin-bottom: 16px; }
.vip-text p  { color: rgba(240,220,220,0.75); margin-bottom: 28px; }
.vip-perks { display: flex; flex-direction: column; gap: 12px; }
.vip-perks li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.9rem; color: rgba(240,220,220,0.8);
}
.vip-perks li::before { content: '✦'; color: var(--gold); font-size: 0.65rem; flex-shrink: 0; }
.vip-form-wrap {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,41,58,0.25);
  border-radius: 20px; padding: 40px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), var(--glow);
}
.vip-form h3 { font-family: var(--font-serif); font-size: 1.4rem; color: var(--cream); margin-bottom: 24px; }
.vip-field { margin-bottom: 14px; }
.vip-field input {
  width: 100%; padding: 14px 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,41,58,0.2);
  border-radius: 10px;
  color: var(--cream); font-size: 0.95rem;
  font-family: var(--font-sans); outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.vip-field input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,41,58,0.15);
}
.vip-field input::placeholder { color: rgba(240,210,210,0.4); }
.vip-submit { width: 100%; justify-content: center; margin-top: 8px; font-size: 1rem; padding: 16px; }
.vip-note { font-size: 0.75rem; color: rgba(240,210,210,0.4); text-align: center; margin-top: 12px; }
.vip-success {
  display: none; flex-direction: column; align-items: center;
  text-align: center; padding: 20px 0;
}
.vip-success-icon { font-size: 3rem; margin-bottom: 16px; }
.vip-success h3 { font-family: var(--font-serif); font-size: 1.8rem; color: var(--gold); margin-bottom: 12px; }
.vip-success p { color: rgba(240,220,220,0.75); }
@media (max-width: 768px) {
  .vip-inner { grid-template-columns: 1fr; gap: 40px; }
  .vip-form-wrap { padding: 28px 20px; }
}

/* ─── FOOTER ──────────────────────────────────────────────── */
footer {
  background: var(--brown-dark);
  padding: 64px 0 32px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand-name { font-family: var(--font-serif); font-size: 1.4rem; color: var(--cream); margin-bottom: 8px; }
.footer-brand-tag  { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 20px; }
.footer-brand-address { font-size: 0.85rem; color: rgba(240,230,211,0.65); line-height: 1.8; }
.footer-col h4 { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 0.85rem; color: rgba(240,230,211,0.65); transition: color 0.2s; }
.footer-col ul a:hover { color: var(--gold); }
.footer-socials { display: flex; gap: 12px; margin-top: 20px; }
.social-link {
  width: 40px; height: 40px; border-radius: 8px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: rgba(240,230,211,0.7);
  transition: all 0.2s;
}
.social-link:hover { background: var(--gold); border-color: var(--gold); color: var(--brown-dark); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 0.78rem; color: rgba(240,230,211,0.4); }

/* ─── SECTION GLOW DIVIDERS ───────────────────────────────── */
.about::after, .specials::after, .menu-preview::after, .events::after, .reviews::after {
  content: '';
  display: block;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,41,58,0.4), transparent);
  margin-top: 0;
}

/* ─── UTILITY ─────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-center p { margin: 0 auto; }
.mt-8 { margin-top: 8px; }
.mb-32 { margin-bottom: 32px; }

/* ─── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .event-cards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .about-image { max-height: 380px; }
  .about-image img { max-height: 380px; }
}
@media (max-width: 768px) {
  .special-row { grid-template-columns: 1fr; direction: ltr; }
  .special-row.reverse { direction: ltr; }
  .special-img { min-height: 260px; }
  .special-info { padding: 36px 28px; }
  .special-name { font-size: 1.6rem; }
  .byo-grid { grid-template-columns: 1fr 1fr; }
  .menu-tabs { gap: 2px; }
  .menu-tab { padding: 8px 14px; font-size: 0.8rem; }
}
@media (max-width: 640px) {
  :root { --nav-h: 64px; }
  section { padding: 56px 0; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: rgba(10,10,10,0.98);
    padding: 24px 20px; gap: 20px;
    border-bottom: 1px solid var(--border);
    z-index: 999;
  }
  .nav-links.open .btn { text-align: center; justify-content: center; }
  .nav-toggle { display: block; }
  .hero-ctas { flex-direction: column; gap: 12px; }
  .hero-ctas .btn { text-align: center; justify-content: center; }
  .hero p { font-size: 1rem; }
  .flight-board { padding: 20px 16px; }
  .flight-categories { grid-template-columns: 1fr; gap: 20px; }
  .res-form { padding: 24px 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-stats { grid-template-columns: repeat(3,1fr); gap: 12px; }
  .stat { padding: 16px 8px; }
  .stat-number { font-size: 1.8rem; }
  .chat-window { width: calc(100vw - 24px); right: 12px; bottom: 90px; }
  .chat-fab { bottom: 20px; right: 16px; width: 52px; height: 52px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .reviews-grid { grid-template-columns: 1fr; }
  .byo-grid { grid-template-columns: 1fr; }
  .catering-options { grid-template-columns: 1fr; }
  .menu-tabs { width: 100%; justify-content: center; }
  .menu-tab { padding: 8px 12px; font-size: 0.78rem; }
  .res-form { max-width: 100%; }
  .hero-content { padding: 0 4px; }
  .announce { font-size: 0.78rem; padding: 10px 16px; }
  .nav-logo-main { font-size: 1.2rem; }
}
