/* =============================================
   PIKE & PLATE — Editorial Restaurant Layout
   Navy (#0d1b2a) + Gold (#c9943a) + Cream (#f5ede0)
   ============================================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #0d1b2a;
  --navy-mid:   #152338;
  --navy-light: #1e3254;
  --gold:       #c9943a;
  --gold-light: #e0b060;
  --cream:      #f5ede0;
  --cream-dark: #e8d9c4;
  --white:      #ffffff;
  --mist:       #8a9bb0;
  --ink:        #2a1f0f;
  --border-d:   rgba(201,148,58,0.18);
  --border-l:   rgba(201,148,58,0.35);
  --sans:       'Segoe UI', system-ui, -apple-system, sans-serif;
  --serif:      Georgia, 'Times New Roman', serif;
  --ease:       0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--navy);
  color: var(--white);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

a { color: var(--gold); text-decoration: none; transition: color var(--ease); }
a:hover { color: var(--gold-light); }
img { display: block; max-width: 100%; height: auto; }
ul { list-style: none; }

/* ── UTILITY ─────────────────────────────── */
.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.container-wide { width: 94%; max-width: 1400px; margin: 0 auto; }

.eyebrow {
  font-size: 0.68rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
}
.eyebrow-dark { color: var(--gold); }

/* ── BUTTONS ─────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.9rem 2.4rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  border-radius: 0;
  transition: all var(--ease);
  font-family: var(--sans);
}
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold-light); color: var(--navy); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(201,148,58,0.35); }
.btn-outline-light { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.5); }
.btn-outline-light:hover { background: var(--white); color: var(--navy); transform: translateY(-2px); }
.btn-outline-dark { background: transparent; color: var(--navy); border: 1px solid var(--navy); }
.btn-outline-dark:hover { background: var(--navy); color: var(--white); transform: translateY(-2px); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-light); color: var(--white); transform: translateY(-2px); }

/* ── CENTERED NAVBAR ─────────────────────── */
/* Restaurant-style: logo centered, nav split left/right */
.navbar {
  position: fixed;
  top: 0; left: 0; width: 100%;
  z-index: 999;
  transition: background var(--ease), box-shadow var(--ease);
  background: rgba(13,27,42,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-d);
}
.navbar.scrolled { box-shadow: 0 2px 40px rgba(0,0,0,0.5); }

.nav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 74px;
  gap: 1rem;
}

/* Left nav links */
.nav-left {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: flex-end;
}

/* Center logo */
.nav-logo {
  text-align: center;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo .wordmark {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--white);
  letter-spacing: 2px;
  display: block;
  line-height: 1;
}
.nav-logo .wordmark em { color: var(--gold); font-style: normal; }
.nav-logo .tagline {
  font-size: 0.56rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--mist);
  margin-top: 4px;
  display: block;
}

/* Right nav */
.nav-right {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: flex-start;
}

.nav-left a, .nav-right a {
  color: rgba(255,255,255,0.7);
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
  transition: color var(--ease);
}
.nav-left a::after, .nav-right a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--ease);
}
.nav-left a:hover, .nav-right a:hover,
.nav-left a.active, .nav-right a.active { color: var(--gold); }
.nav-left a:hover::after, .nav-right a:hover::after,
.nav-left a.active::after, .nav-right a.active::after { width: 100%; }

.nav-reserve {
  padding: 0.5rem 1.2rem;
  font-size: 0.68rem;
  letter-spacing: 2px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}
.hamburger span {
  display: block; width: 24px; height: 1.5px;
  background: var(--gold); border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-nav {
  display: none; flex-direction: column;
  background: var(--navy-mid);
  border-top: 1px solid var(--border-d);
  position: absolute;
  top: 74px; left: 0; width: 100%;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 1rem 2rem;
  color: rgba(255,255,255,0.75);
  font-size: 0.82rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: all var(--ease);
}
.mobile-nav a:hover, .mobile-nav a.active { color: var(--gold); padding-left: 2.5rem; }
.mobile-nav .mob-reserve {
  margin: 1rem 2rem 1.5rem;
  text-align: center;
  border: none;
  padding: 0.9rem;
}

/* ── FOOTER (2-col editorial) ────────────── */
footer {
  background: var(--navy-mid);
  border-top: 1px solid var(--border-d);
  padding: 80px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 0;
  margin-bottom: 0;
}
.footer-divider-v {
  background: var(--border-d);
  width: 1px;
}
.footer-left { padding: 0 4rem 4rem 0; }
.footer-right { padding: 0 0 4rem 4rem; }

.footer-brand-mark {
  font-family: var(--serif);
  font-size: 2.4rem;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.footer-brand-mark em { color: var(--gold); font-style: normal; }
.footer-sub {
  font-size: 0.65rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--mist);
  margin-bottom: 1.8rem;
}
.footer-left p { color: var(--mist); font-size: 0.9rem; line-height: 1.9; max-width: 380px; }

.footer-right-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 3rem;
}
.footer-col h4 {
  color: var(--gold);
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-col li { margin-bottom: 0.5rem; }
.footer-col li a { color: var(--mist); font-size: 0.88rem; }
.footer-col li a:hover { color: var(--gold); }
.footer-col p { color: var(--mist); font-size: 0.87rem; line-height: 1.9; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  font-size: 0.75rem;
  color: var(--mist);
}

/* ══════════════════════════════════════════
   HOME PAGE
   ══════════════════════════════════════════ */

/* HERO: Full-bleed, centered content, info bar at bottom */
.hero {
  height: 100vh;
  min-height: 700px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.28;
  filter: saturate(0.5);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(13,27,42,0.4) 0%, rgba(13,27,42,0.7) 70%, rgba(13,27,42,0.95) 100%);
}

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

.hero-kicker {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(201,148,58,0.4);
  padding-bottom: 0.5rem;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 8vw, 7rem);
  line-height: 1.0;
  color: var(--white);
  letter-spacing: -1px;
  margin-bottom: 1.5rem;
}
.hero h1 em { color: var(--gold); font-style: italic; }

.hero-sub {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  letter-spacing: 0.5px;
  margin-bottom: 2.5rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

/* Bottom info bar anchored to viewport */
.hero-info-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255,255,255,0.12);
  background: rgba(13,27,42,0.8);
  backdrop-filter: blur(8px);
}
.hero-info-item {
  padding: 1.4rem 2rem;
  border-right: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}
.hero-info-item:last-child { border-right: none; }
.hero-info-item .lbl {
  font-size: 0.6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--mist);
  margin-bottom: 0.3rem;
}
.hero-info-item .val {
  font-size: 0.88rem;
  color: var(--white);
  font-weight: 500;
}

/* STATS BAND: Large typographic numbers, cream bg */
.stats-band {
  background: var(--cream);
  padding: 70px 0;
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  divide-color: transparent;
}
.stat-col {
  text-align: center;
  padding: 1.5rem 2rem;
  border-right: 1px solid var(--cream-dark);
  position: relative;
}
.stat-col:last-child { border-right: none; }
.stat-num {
  font-family: var(--serif);
  font-size: clamp(3rem, 5vw, 5rem);
  color: var(--navy);
  line-height: 1;
  font-style: italic;
  margin-bottom: 0.4rem;
}
.stat-label {
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.5;
}

/* EDITORIAL SPLIT: Image bleeds to edge */
.editorial-split {
  display: grid;
  grid-template-columns: 55% 45%;
  min-height: 600px;
}
.split-image {
  position: relative;
  overflow: hidden;
}
.split-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.85) brightness(0.85);
  display: block;
}
.split-content {
  background: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 5rem 5rem 6rem;
}
.split-content h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 0.5rem;
}
.split-content h2 em { color: var(--gold); font-style: italic; }
.split-content .divider { width: 40px; height: 2px; background: var(--gold); margin: 1.2rem 0 1.8rem; }
.split-content p { color: var(--ink); opacity: 0.7; font-size: 0.97rem; line-height: 1.9; margin-bottom: 1.2rem; }
.split-content .eyebrow { color: var(--gold); }

/* MENU PREVIEW: Elegant restaurant menu format */
.menu-preview-section {
  background: var(--navy);
  padding: 100px 0;
}
.menu-preview-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-d);
}
.menu-preview-header h2 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  color: var(--white);
  line-height: 1.1;
}
.menu-preview-header h2 em { color: var(--gold); font-style: italic; }

.menu-cols {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 0;
}
.menu-col-divider {
  background: var(--border-d);
}
.menu-col:first-child { padding-right: 4rem; }
.menu-col:last-child { padding-left: 4rem; }

.menu-col-heading {
  font-size: 0.65rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-d);
}

.menu-entry {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  gap: 1.5rem;
}
.menu-entry:last-child { border-bottom: none; }
.menu-entry-left h3 {
  font-family: var(--serif);
  color: var(--white);
  font-size: 1rem;
  font-style: italic;
  margin-bottom: 0.2rem;
}
.menu-entry-left p { color: var(--mist); font-size: 0.78rem; line-height: 1.5; }
.menu-entry-price {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
  flex-shrink: 0;
}
.menu-dots {
  flex: 1;
  border-bottom: 1px dotted rgba(138,155,176,0.3);
  margin: 0 0.5rem 0.3rem;
  min-width: 20px;
}

/* FULL-BLEED ATMOSPHERE IMAGE */
.atmosphere-strip {
  position: relative;
  height: 520px;
  overflow: hidden;
}
.atmosphere-strip img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.7) brightness(0.65);
}
.atmosphere-strip::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,27,42,0.7) 0%, rgba(13,27,42,0.2) 100%);
}
.atmosphere-text {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}
.atmosphere-text blockquote {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3.5vw, 2.8rem);
  color: var(--white);
  font-style: italic;
  line-height: 1.3;
  max-width: 800px;
  margin-bottom: 1.5rem;
}
.atmosphere-text cite {
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}

/* RESERVATION SECTION (cream, elegant) */
.reserve-section {
  background: var(--cream);
  padding: 100px 0;
}
.reserve-section-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  align-items: center;
}
.reserve-section h2 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 0.8rem;
}
.reserve-section h2 em { color: var(--gold); font-style: italic; }
.reserve-section p { color: var(--ink); opacity: 0.65; margin-bottom: 2rem; font-size: 0.95rem; line-height: 1.9; }

.quick-reserve {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.quick-reserve input,
.quick-reserve select {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  padding: 0.85rem 1.1rem;
  color: var(--navy);
  font-size: 0.88rem;
  font-family: var(--sans);
  outline: none;
  transition: border-color var(--ease);
  border-radius: 0;
  width: 100%;
}
.quick-reserve input:focus,
.quick-reserve select:focus { border-color: var(--gold); }
.quick-reserve-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
.quick-reserve .btn-gold { align-self: flex-start; padding: 0.9rem 2.8rem; }

.reserve-details {
  padding-top: 2rem;
  border-top: 1px solid var(--cream-dark);
  margin-top: 0.5rem;
}
.reserve-details p {
  font-size: 0.8rem;
  color: var(--ink);
  opacity: 0.5;
  margin-bottom: 0;
}

/* ══════════════════════════════════════════
   MENU PAGE
   ══════════════════════════════════════════ */
.menu-hero {
  height: 50vh;
  min-height: 380px;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-bottom: 4rem;
}
.menu-hero-bg {
  position: absolute; inset: 0;
}
.menu-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.2;
  filter: saturate(0.5);
}
.menu-hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 0%, var(--navy) 85%);
}
.menu-hero-content { position: relative; z-index: 2; }
.menu-hero-content h1 {
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 6rem);
  color: var(--white);
  font-style: italic;
  line-height: 1;
}
.menu-hero-content p { color: var(--mist); font-size: 0.85rem; letter-spacing: 1px; margin-top: 0.8rem; }

.menu-page-body { background: var(--cream); padding: 80px 0; }

.menu-page-category {
  margin-bottom: 5rem;
}
.menu-page-category:last-child { margin-bottom: 0; }

.menu-cat-header {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 0.5rem;
}
.menu-cat-header h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--navy);
  font-style: italic;
}
.menu-cat-rule {
  flex: 1;
  height: 1px;
  background: var(--cream-dark);
}
.menu-cat-sub {
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2.5rem;
}

.menu-page-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 6rem;
}

.menu-page-item {
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--cream-dark);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
}
.menu-page-item:last-child { border-bottom: none; }
.mpi-body h3 {
  font-family: var(--serif);
  color: var(--navy);
  font-size: 1.05rem;
  font-style: italic;
  margin-bottom: 0.3rem;
}
.mpi-body p { color: var(--ink); opacity: 0.55; font-size: 0.8rem; line-height: 1.6; }
.mpi-body .tags { margin-top: 0.4rem; display: flex; gap: 0.35rem; flex-wrap: wrap; }
.mpi-tag {
  font-size: 0.58rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.18rem 0.5rem;
  border: 1px solid rgba(201,148,58,0.4);
  color: var(--gold);
  border-radius: 10px;
}
.mpi-price {
  color: var(--navy);
  font-weight: 700;
  font-size: 1rem;
  white-space: nowrap;
  flex-shrink: 0;
}
.mpi-dots {
  flex: 1;
  border-bottom: 1px dotted rgba(42,31,15,0.2);
  margin: 0 0.5rem 0.25rem;
  min-width: 10px;
}

.menu-note-cream {
  background: var(--cream-dark);
  border-left: 3px solid var(--gold);
  padding: 1rem 1.5rem;
  font-size: 0.8rem;
  color: var(--ink);
  opacity: 0.7;
  font-style: italic;
  margin-top: 3rem;
}

.menu-page-drinks {
  background: var(--navy);
  padding: 80px 0;
}
.menu-page-drinks h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  font-style: italic;
  margin-bottom: 0.5rem;
}
.menu-page-drinks .eyebrow { color: var(--gold); }
.drinks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-d);
  border: 1px solid var(--border-d);
  margin-top: 2.5rem;
}
.drink-item {
  background: var(--navy-mid);
  padding: 2rem;
  transition: background var(--ease);
}
.drink-item:hover { background: var(--navy-light); }
.drink-top { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 0.5rem; }
.drink-top h3 { font-family: var(--serif); color: var(--white); font-style: italic; font-size: 1rem; }
.drink-top .price { color: var(--gold); font-weight: 600; }
.drink-item p { color: var(--mist); font-size: 0.8rem; line-height: 1.6; }

/* ══════════════════════════════════════════
   ABOUT PAGE
   ══════════════════════════════════════════ */
.about-hero {
  height: 70vh;
  min-height: 500px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.about-hero img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.6) brightness(0.5);
}
.about-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 30%, var(--navy) 100%);
}
.about-hero-text {
  position: relative;
  z-index: 2;
  padding: 0 0 5rem;
  width: 100%;
}
.about-hero-text h1 {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 6vw, 5rem);
  color: var(--white);
  line-height: 1.05;
}
.about-hero-text h1 em { color: var(--gold); font-style: italic; }

/* The narrative section — cream, editorial */
.about-narrative { background: var(--cream); padding: 100px 0; }
.about-narrative-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 6rem;
  align-items: start;
}
.about-narrative-sticky {
  position: sticky;
  top: 100px;
}
.about-narrative-sticky h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 2.8rem);
  color: var(--navy);
  font-style: italic;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.about-narrative-sticky .divider { width: 40px; height: 2px; background: var(--gold); margin-bottom: 1.5rem; }
.about-narrative-sticky p { color: var(--ink); opacity: 0.6; font-size: 0.88rem; line-height: 1.9; }

.about-narrative-body p {
  font-size: 1.05rem;
  color: var(--ink);
  opacity: 0.75;
  line-height: 2;
  margin-bottom: 1.8rem;
}
.about-pull-quote {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  color: var(--navy);
  font-style: italic;
  line-height: 1.5;
  padding: 2rem 0 2rem 2rem;
  border-left: 3px solid var(--gold);
  margin: 2rem 0;
}

/* Team — horizontal cards on navy */
.about-team { background: var(--navy); padding: 100px 0; }
.about-team h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  font-style: italic;
  margin-bottom: 0.5rem;
}
.team-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-d);
  border: 1px solid var(--border-d);
  margin-top: 3rem;
}
.team-card {
  background: var(--navy-mid);
  overflow: hidden;
  transition: background var(--ease);
}
.team-card:hover { background: var(--navy-light); }
.team-card img {
  width: 100%;
  aspect-ratio: 3/3.2;
  object-fit: cover;
  filter: grayscale(30%) brightness(0.85);
  transition: filter var(--ease);
}
.team-card:hover img { filter: grayscale(0%) brightness(0.9); }
.team-card-body { padding: 1.8rem; }
.team-card-body h3 { color: var(--white); font-family: var(--serif); font-style: italic; font-size: 1.1rem; margin-bottom: 0.15rem; }
.team-card-body .role { color: var(--gold); font-size: 0.65rem; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 0.8rem; }
.team-card-body p { color: var(--mist); font-size: 0.82rem; line-height: 1.7; }

/* Values — cream, large icons, editorial */
.about-values { background: var(--cream); padding: 100px 0; }
.about-values h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--navy);
  font-style: italic;
  margin-bottom: 0.5rem;
}
.values-list { margin-top: 3rem; }
.value-row {
  display: grid;
  grid-template-columns: 80px 1fr 1fr;
  gap: 2rem;
  align-items: start;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--cream-dark);
}
.value-row:first-child { border-top: 1px solid var(--cream-dark); }
.value-num {
  font-family: var(--serif);
  font-size: 3.5rem;
  color: var(--gold);
  font-style: italic;
  line-height: 1;
  opacity: 0.4;
}
.value-row h3 { font-family: var(--serif); font-size: 1.3rem; color: var(--navy); font-style: italic; }
.value-row p { color: var(--ink); opacity: 0.6; font-size: 0.9rem; line-height: 1.85; }

/* Suppliers */
.about-suppliers { background: var(--navy-mid); padding: 80px 0; }
.about-suppliers h2 { font-family: var(--serif); font-size: 2rem; color: var(--white); font-style: italic; margin-bottom: 0.5rem; }
.suppliers-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-d);
  border: 1px solid var(--border-d);
  margin-top: 2.5rem;
}
.supplier-item { background: var(--navy); padding: 1.8rem 2rem; transition: background var(--ease); }
.supplier-item:hover { background: var(--navy-light); }
.supplier-item h4 { color: var(--gold-light); font-size: 0.9rem; margin-bottom: 0.3rem; }
.supplier-item p { color: var(--mist); font-size: 0.8rem; }

/* Press */
.about-press { background: var(--cream); padding: 80px 0; }
.about-press h2 { font-family: var(--serif); font-size: 2rem; color: var(--navy); font-style: italic; margin-bottom: 0.5rem; }
.press-list { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 0; }
.press-row {
  display: grid;
  grid-template-columns: 200px 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: 2rem 0;
  border-bottom: 1px solid var(--cream-dark);
}
.press-row:first-child { border-top: 1px solid var(--cream-dark); }
.press-pub { font-size: 0.72rem; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.press-quote { color: var(--ink); opacity: 0.65; font-style: italic; font-size: 0.9rem; line-height: 1.7; }
.press-award { font-size: 0.7rem; letter-spacing: 1px; color: var(--navy); opacity: 0.5; text-align: right; white-space: nowrap; }

/* ══════════════════════════════════════════
   GALLERY PAGE
   ══════════════════════════════════════════ */
.gallery-page-hero {
  height: 45vh;
  min-height: 320px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.gallery-page-hero img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.2;
  filter: saturate(0.5);
}
.gallery-page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(13,27,42,0.3), rgba(13,27,42,0.8));
}
.gallery-page-hero-text { position: relative; z-index: 2; }
.gallery-page-hero-text h1 {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 6vw, 5rem);
  color: var(--white);
  font-style: italic;
  margin-bottom: 0.5rem;
}
.gallery-page-hero-text p { color: var(--mist); font-size: 0.88rem; letter-spacing: 1px; }

/* Bento / Masonry grid */
.bento-section { background: var(--navy); padding: 60px 0 80px; }

.bento-filters {
  display: flex;
  gap: 0;
  margin-bottom: 3rem;
  border: 1px solid var(--border-d);
  overflow: hidden;
  display: inline-flex;
}
.bento-filter {
  padding: 0.65rem 1.6rem;
  background: transparent;
  color: var(--mist);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  border-right: 1px solid var(--border-d);
  font-family: var(--sans);
  transition: all var(--ease);
}
.bento-filter:last-child { border-right: none; }
.bento-filter:hover, .bento-filter.active { background: var(--gold); color: var(--navy); }

.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(4, 200px);
  gap: 8px;
}

/* Bento layout positions */
.bento-item { position: relative; overflow: hidden; cursor: pointer; }
.bento-item:nth-child(1)  { grid-column: 1 / 5;  grid-row: 1 / 3; }
.bento-item:nth-child(2)  { grid-column: 5 / 8;  grid-row: 1 / 2; }
.bento-item:nth-child(3)  { grid-column: 8 / 13; grid-row: 1 / 3; }
.bento-item:nth-child(4)  { grid-column: 5 / 8;  grid-row: 2 / 3; }
.bento-item:nth-child(5)  { grid-column: 1 / 4;  grid-row: 3 / 5; }
.bento-item:nth-child(6)  { grid-column: 4 / 7;  grid-row: 3 / 4; }
.bento-item:nth-child(7)  { grid-column: 7 / 10; grid-row: 3 / 4; }
.bento-item:nth-child(8)  { grid-column: 10 / 13; grid-row: 3 / 5; }
.bento-item:nth-child(9)  { grid-column: 4 / 7;  grid-row: 4 / 5; }
.bento-item:nth-child(10) { grid-column: 7 / 10; grid-row: 4 / 5; }

.bento-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.7) brightness(0.8);
  transition: transform 0.7s ease, filter 0.4s ease;
  display: block;
}
.bento-item:hover img { transform: scale(1.06); filter: saturate(1) brightness(0.85); }
.bento-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 50%, rgba(13,27,42,0.85) 100%);
  display: flex;
  align-items: flex-end;
  padding: 1.2rem;
  opacity: 0;
  transition: opacity var(--ease);
}
.bento-item:hover .bento-overlay { opacity: 1; }
.bento-overlay h4 { color: var(--gold-light); font-size: 0.82rem; letter-spacing: 1px; font-family: var(--serif); font-style: italic; }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed; inset: 0;
  background: rgba(5,12,20,0.96);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  backdrop-filter: blur(6px);
}
.lightbox.open { display: flex; }
.lb-wrap { position: relative; max-width: 900px; width: 100%; }
.lb-wrap img { width: 100%; border-radius: 0; }
.lb-close {
  position: absolute; top: -44px; right: 0;
  background: none; border: none;
  color: var(--gold); font-size: 1.8rem;
  cursor: pointer;
}
.lb-close:hover { color: var(--white); }
.lb-cap { text-align: center; padding: 0.8rem 0 0; color: var(--mist); font-size: 0.8rem; font-style: italic; }

/* ══════════════════════════════════════════
   CONTACT PAGE — Split Screen
   ══════════════════════════════════════════ */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 74px);
  margin-top: 74px;
}

.contact-image-col {
  position: sticky;
  top: 74px;
  height: calc(100vh - 74px);
  overflow: hidden;
}
.contact-image-col img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.7) brightness(0.6);
}
.contact-image-overlay {
  position: absolute; inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 3rem;
  background: linear-gradient(to top, rgba(13,27,42,0.9) 0%, transparent 50%);
}
.contact-image-overlay h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--white);
  font-style: italic;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.contact-info-list { display: flex; flex-direction: column; gap: 1rem; }
.ci-item .ci-label { font-size: 0.6rem; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 0.2rem; }
.ci-item .ci-val { color: var(--white); font-size: 0.88rem; }
.ci-item a { color: var(--white); }
.ci-item a:hover { color: var(--gold); }

.contact-form-col {
  background: var(--cream);
  padding: 80px 5rem;
  overflow-y: auto;
}
.contact-form-col h3 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--navy);
  font-style: italic;
  margin-bottom: 0.5rem;
}
.contact-form-col .eyebrow { color: var(--gold); }
.contact-form-col .form-sub { color: var(--ink); opacity: 0.6; font-size: 0.88rem; margin-bottom: 2.5rem; line-height: 1.8; }

.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.6;
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--white);
  border: 1px solid var(--cream-dark);
  padding: 0.85rem 1rem;
  color: var(--navy);
  font-size: 0.9rem;
  font-family: var(--sans);
  outline: none;
  transition: border-color var(--ease);
  border-radius: 0;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group select option { background: var(--white); color: var(--navy); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-submit-btn {
  width: 100%; padding: 1rem;
  font-size: 0.78rem;
  letter-spacing: 2.5px;
  margin-top: 0.5rem;
  cursor: pointer;
}

.hours-compact { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--cream-dark); }
.hours-compact h4 { color: var(--gold); font-size: 0.65rem; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 1rem; }
.hours-row { display: flex; justify-content: space-between; padding: 0.45rem 0; border-bottom: 1px solid var(--cream-dark); font-size: 0.85rem; }
.hours-row:last-child { border-bottom: none; }
.hours-row .day { color: var(--ink); opacity: 0.65; }
.hours-row .time { color: var(--navy); font-weight: 500; }

.form-success-msg {
  display: none;
  text-align: center;
  padding: 3rem 0;
}
.form-success-msg .icon { font-size: 2.5rem; margin-bottom: 1rem; }
.form-success-msg h4 { font-family: var(--serif); font-style: italic; font-size: 1.5rem; color: var(--navy); margin-bottom: 0.5rem; }
.form-success-msg p { color: var(--ink); opacity: 0.6; font-size: 0.9rem; }

/* FAQ on contact page */
.contact-faq { background: var(--navy); padding: 80px 0; }
.contact-faq h2 { font-family: var(--serif); font-size: 2rem; color: var(--white); font-style: italic; margin-bottom: 0.5rem; }
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--border-d);
  border: 1px solid var(--border-d);
  margin-top: 2.5rem;
}
.faq-item { background: var(--navy-mid); padding: 2rem; transition: background var(--ease); }
.faq-item:hover { background: var(--navy-light); }
.faq-item h4 { color: var(--gold-light); font-size: 0.92rem; margin-bottom: 0.7rem; font-family: var(--serif); font-style: italic; }
.faq-item p { color: var(--mist); font-size: 0.83rem; line-height: 1.75; }

/* ── SHARED: RESERVATION FOOTER BANNER ───── */
.cta-band {
  background: var(--gold);
  padding: 80px 0;
  text-align: center;
}
.cta-band h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--navy);
  font-style: italic;
  margin-bottom: 0.6rem;
}
.cta-band p { color: rgba(13,27,42,0.65); margin-bottom: 2rem; font-size: 0.95rem; }

/* ── RESPONSIVE ──────────────────────────── */
@media (max-width: 1100px) {
  .footer-left { padding: 0 2.5rem 4rem 0; }
  .footer-right { padding: 0 0 4rem 2.5rem; }
  .editorial-split { grid-template-columns: 50% 50%; }
  .split-content { padding: 4rem 3rem 4rem 4rem; }
  .about-narrative-inner { gap: 3rem; }
  .reserve-section-inner { gap: 4rem; }
  .bento-grid { grid-template-rows: repeat(4, 160px); }
}

@media (max-width: 992px) {
  .nav-left, .nav-right { display: none; }
  .hamburger { display: flex; }
  .nav-inner { grid-template-columns: 1fr auto 1fr; }
  .nav-inner .hamburger { grid-column: 3; justify-self: end; }

  .editorial-split { grid-template-columns: 1fr; }
  .split-image { height: 400px; }
  .split-content { padding: 4rem 3rem; }

  .menu-cols { grid-template-columns: 1fr; gap: 3rem; }
  .menu-col-divider { display: none; }
  .menu-col:first-child { padding-right: 0; }
  .menu-col:last-child { padding-left: 0; }

  .reserve-section-inner { grid-template-columns: 1fr; gap: 3rem; }
  .about-narrative-inner { grid-template-columns: 1fr; }
  .about-narrative-sticky { position: static; }
  .menu-page-list { grid-template-columns: 1fr; }
  .drinks-grid { grid-template-columns: 1fr 1fr; }
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .bento-item { grid-column: auto !important; grid-row: auto !important; aspect-ratio: 4/3; }
  .press-row { grid-template-columns: 1fr; gap: 0.5rem; }
  .press-award { text-align: left; }

  .contact-split { grid-template-columns: 1fr; margin-top: 74px; min-height: auto; }
  .contact-image-col { position: relative; top: auto; height: 45vh; min-height: 300px; }
  .contact-form-col { padding: 4rem 2rem; }
  .team-cards { grid-template-columns: 1fr 1fr; }
  .suppliers-strip { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 0; }
  .footer-divider-v { display: none; }
  .footer-left { padding: 0 0 3rem 0; border-bottom: 1px solid var(--border-d); }
  .footer-right { padding: 3rem 0 0 0; }
}

@media (max-width: 768px) {
  .hero h1 { font-size: 3rem; }
  .hero-info-bar { grid-template-columns: 1fr; }
  .hero-info-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-col:nth-child(2) { border-right: none; }
  .menu-preview-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .atmosphere-strip { height: 380px; }
  .team-cards { grid-template-columns: 1fr; }
  .value-row { grid-template-columns: 50px 1fr; }
  .value-row p { grid-column: 2; }
  .value-num { font-size: 2.5rem; }
  .footer-right-grid { grid-template-columns: 1fr; }
  .drinks-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .stats-inner { grid-template-columns: 1fr; }
  .stat-col { border-right: none; border-bottom: 1px solid var(--cream-dark); }
  .bento-grid { grid-template-columns: 1fr; }
  .suppliers-strip { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; width: 100%; }
  .hero-ctas .btn { text-align: center; }
}
