/* ============================================
   SOMEWHERE DINE BAR · Global Styles
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Outfit:wght@300;400;500;600&display=swap');

:root {
  --gold: #c4a86a;
  --gold-light: #dcc48a;
  --gold-dark: #9a7a45;
  --gold-glow: rgba(196, 168, 106, 0.22);
  --bg: #111008;
  --bg-2: #18140e;
  --bg-3: #1e1a15;
  --bg-cream: #f5ede0;
  --text: #f0e9d8;
  --text-muted: #a09382;
  --divider: rgba(196, 168, 106, 0.14);
  --divider-warm: rgba(196, 168, 106, 0.24);
  --divider-hairline: rgba(196, 168, 106, 0.18);
  --photo-warm: rgba(196, 168, 106, 0.065);
  --shadow-soft: 0 18px 48px rgba(0, 0, 0, 0.45);
  --shadow-gold: 0 4px 24px var(--gold-glow);
  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 12px;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Outfit', sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --transition: 0.45s var(--ease-out);
}

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

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

body {
  background: var(--bg);
  background-image:
    radial-gradient(ellipse 120% 80% at 50% -20%, rgba(196, 168, 106, 0.06) 0%, transparent 55%),
    linear-gradient(180deg, #15120d 0%, var(--bg) 32%);
  color: var(--text);
  font-family: var(--font-sans);
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection {
  background: rgba(196, 168, 106, 0.35);
  color: var(--text);
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

a:focus-visible,
button:focus-visible,
.btn-primary:focus-visible,
.btn-ghost:focus-visible,
.nav-cta:focus-visible,
.footer-social:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn-primary:hover,
  .btn-ghost:hover,
  .nav-cta:hover,
  .footer-social:hover {
    transform: none;
  }
  .gallery-item:hover,
  .gallery-item:focus-visible {
    transform: none;
  }
  .gallery-item:hover img,
  .gallery-item:focus-visible img {
    transform: none;
  }
  .gallery-lightbox__figure {
    transition: none;
    transform: none;
  }
  .gallery-lightbox.is-open .gallery-lightbox__figure {
    transform: none;
  }
}

/* ---- UTILITY ---- */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.section-label {
  display: block;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 300;
  line-height: 1.18;
  letter-spacing: 0.03em;
  color: var(--text);
}
.section-title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 300;
}
.section-body {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 480px;
}
.about-rhythm {
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  font-weight: 300;
  letter-spacing: 0.12em;
  line-height: 1.8;
  color: var(--text-muted);
  margin-top: 0.75rem;
  margin-bottom: 0.25rem;
}
.section-body--spaced { margin-top: 1rem; }
.text-strong {
  color: var(--text);
  font-weight: 500;
}
.section-cta { margin-top: 2.5rem; }
.gold-line {
  width: 56px;
  height: 1px;
  background: var(--divider-warm);
  margin: 1.8rem 0;
  border-radius: 0;
}

/* Full-bleed photo warmth; ties imagery to palette */
.photo-warm-wash {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: var(--photo-warm);
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: linear-gradient(165deg, var(--gold-light) 0%, var(--gold) 48%, var(--gold-dark) 100%);
  color: var(--bg);
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 1.05rem 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), color 0.35s var(--ease-out), background 0.35s var(--ease-out), border-color 0.35s var(--ease-out);
  white-space: nowrap;
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
  box-shadow: none;
  transform: translateY(-2px);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 1.05rem 2.5rem;
  border: 1px solid rgba(242, 235, 224, 0.18);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: transform 0.35s var(--ease-out), border-color 0.35s var(--ease-out), color 0.35s var(--ease-out), background 0.35s var(--ease-out);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(196, 168, 106, 0.06);
  transform: translateY(-2px);
}

/* ========================================
   NAVBAR
   ======================================== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 4rem;
  transition: all 0.5s ease;
}
#navbar.scrolled {
  background: rgba(17, 16, 8, 0.9);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  padding: 1.1rem 4rem;
  border-bottom: 1px solid var(--divider-hairline);
  box-shadow: 0 1px 0 rgba(196, 168, 106, 0.06);
}
.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--text);
}
.nav-logo span { color: var(--gold); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.8rem;
}
.nav-links a {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
}
.nav-links a {
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease-out);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.nav-cta {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 0.65rem 1.6rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: transform 0.35s var(--ease-out), background 0.35s var(--ease-out), color 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.nav-cta:hover {
  background: var(--gold);
  color: var(--bg);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px var(--gold-glow);
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: 0;
  font: inherit;
  color: inherit;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--text);
  transition: all 0.3s ease;
}
.nav-hamburger.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.nav-mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(6, 6, 7, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}
.nav-mobile-menu.open { display: flex; }
.nav-mobile-menu a {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: var(--text);
  transition: color var(--transition);
}
.nav-mobile-menu a:hover { color: var(--gold); }
.nav-mobile-bottom {
  position: absolute;
  bottom: 3rem;
}

/* ========================================
   HERO
   ======================================== */
#hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: flex-end;
  padding: 0 4rem 6rem;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-bg .photo-warm-wash {
  z-index: 1;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      105deg,
      rgba(17, 16, 8, 0.9) 0%,
      rgba(17, 16, 8, 0.38) 42%,
      rgba(17, 16, 8, 0.22) 100%
    ),
    linear-gradient(
      to top,
      rgba(17, 16, 8, 0.97) 0%,
      rgba(17, 16, 8, 0.52) 42%,
      rgba(17, 16, 8, 0.14) 100%
    ),
    rgba(196, 168, 106, 0.055);
  z-index: 1;
}
.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(
    ellipse 90% 75% at 50% 100%,
    transparent 0%,
    rgba(5, 5, 6, 0.5) 100%
  );
  mix-blend-mode: multiply;
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  padding-bottom: env(safe-area-inset-bottom, 0);
}
.hero-main {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2.5rem 4rem;
  align-items: end;
}
.hero-left {
  min-width: 0;
}
.hero-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  padding-bottom: 0.15rem;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
}
.hero-eyebrow-line {
  width: 36px;
  height: 1px;
  background: var(--gold);
}
.hero-eyebrow-text {
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3.2rem, 8vw, 6rem);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: 0.045em;
  margin-bottom: 1.6rem;
  display: flex;
  flex-direction: column;
  text-transform: lowercase;
}
.hero-brand-line {
  display: block;
}
.hero-brand-line--white {
  color: #fff;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.45);
}
.hero-brand-line--gold {
  color: var(--gold-light);
  margin-top: 0.1em;
  text-shadow: 0 2px 32px rgba(196, 168, 106, 0.25);
}
.hero-sub {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 0.18em;
  color: rgba(224, 214, 198, 0.92);
  max-width: 28rem;
  margin-bottom: 0;
  text-shadow: 0 1px 24px rgba(0, 0, 0, 0.35);
}
.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1rem;
  width: min(100%, 420px);
}
.hero-cta-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 1.25rem 1.5rem;
}
.hero-reserve-note {
  flex: 1 1 11rem;
  min-width: min(100%, 10.5rem);
  max-width: 15rem;
  margin: 0;
  padding: 0.35rem 0 0.35rem 1.35rem;
  border-left: 1px solid rgba(196, 168, 106, 0.4);
  box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.04);
}
.hero-reserve-note-kicker {
  display: block;
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
  line-height: 1.4;
}
.hero-reserve-note-body {
  font-size: 0.74rem;
  line-height: 1.65;
  color: rgba(224, 214, 198, 0.82);
  margin: 0;
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.35);
}
.hero-reserve-note-body a {
  color: var(--gold-light);
  text-decoration: underline;
  text-underline-offset: 0.18em;
  text-decoration-color: rgba(196, 168, 106, 0.55);
}
.hero-reserve-note-body a:hover {
  color: #fff;
  text-decoration-color: rgba(255, 255, 255, 0.45);
}
.hero-right .hero-actions .btn-primary,
.hero-right .hero-actions .btn-ghost {
  justify-content: center;
  text-align: center;
}
.hero-right .hero-actions .hero-cta-row .btn-primary {
  flex: 0 0 auto;
  align-self: flex-start;
}
.hero-scroll {
  position: absolute;
  bottom: 3rem;
  right: 4rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}
.hero-scroll span {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  writing-mode: vertical-rl;
}
.hero-scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ========================================
   ABOUT
   ======================================== */
#about {
  padding: 10rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}
.about-image {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: var(--radius-md);
}
.about-image img {
  position: relative;
  z-index: 0;
  transition: transform 0.85s var(--ease-out);
}
.about-image:hover img {
  transform: scale(1.03);
}
.about-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--divider-hairline);
  pointer-events: none;
  z-index: 2;
}
.about-image-frame {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 65%;
  aspect-ratio: 1;
  border: 1px solid var(--gold);
  pointer-events: none;
  z-index: -1;
}
.about-badge {
  position: absolute;
  bottom: 2rem;
  left: -2rem;
  background: rgba(24, 24, 18, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--divider-hairline);
  padding: 1.5rem 2rem;
  z-index: 3;
  box-shadow: var(--shadow-soft);
}
.about-badge-num {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.about-badge-label {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.3rem;
}
.about-content { display: flex; flex-direction: column; }
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--divider-hairline);
}
.stat-num {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.4rem;
  line-height: 1.8;
}

/* ========================================
   MENU
   ======================================== */
#menu {
  padding: 10rem 4rem;
  background: var(--bg-2);
  border-top: 1px solid var(--divider-hairline);
  border-bottom: 1px solid var(--divider-hairline);
}
.menu-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 5.5rem;
}
.menu-header .gold-line { margin: 1.8rem auto; }
.menu-header .section-body { margin: 0 auto; text-align: center; max-width: 400px; }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1400px;
  margin: 0 auto;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.menu-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: pointer;
}
.menu-card:hover .menu-card-overlay { opacity: 1; }
.menu-card:hover .menu-card-img { transform: scale(1.05); }
.menu-card-img {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.menu-card-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to top, rgba(6,6,7,0.96) 0%, rgba(8,7,6,0.35) 55%, transparent 100%);
  opacity: 0.58;
  transition: opacity 0.45s var(--ease-out);
  display: flex;
  align-items: flex-end;
  padding: 2.5rem;
}
.menu-card-content {
  transform: translateY(0.5rem);
  transition: transform 0.4s ease;
}
.menu-card:hover .menu-card-content {
  transform: translateY(0);
}
.menu-card-label {
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.menu-card-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 300;
  letter-spacing: 0.025em;
  color: var(--text);
}
.menu-card-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
  line-height: 1.8;
}
.menu-footer {
  text-align: center;
  margin-top: 4rem;
}

/* ========================================
   GOLDEN HOUR
   ======================================== */
#golden-hour,
#wine-wednesday {
  padding: 10rem 4rem;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.golden-content {}
.golden-times {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2.5rem;
}
.golden-time-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--divider-hairline);
}
.golden-time-day {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.golden-time-hrs {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--gold);
}
.golden-image {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}
.golden-image img {
  position: relative;
  z-index: 0;
}
.golden-highlights {
  margin: 1.5rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.golden-highlights li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  line-height: 1.8;
  color: var(--text-muted);
}
.golden-bullet { color: var(--gold); flex-shrink: 0; }

.golden-image::before {
  content: 'Happy Hour';
  position: absolute;
  top: 2rem;
  left: -1px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--bg);
  padding: 1rem 0.5rem;
  z-index: 3;
  border: 1px solid var(--divider-hairline);
  border-left: 0;
}
.wine-wednesday-image::before {
  content: 'Wine Wednesday';
  letter-spacing: 0.22em;
}

/* Wine Wednesday: hero-style split headline + gold tagline */
.wine-wednesday-headline {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.05;
  margin-bottom: 0.85rem;
}
.wine-wednesday-headline-line {
  display: block;
}
.wine-wednesday-headline-line--text {
  color: var(--text);
}
.wine-wednesday-headline-line--gold {
  color: var(--gold-light);
  margin-top: 0.06em;
  text-shadow: 0 2px 24px rgba(196, 168, 106, 0.2);
}
.wine-wednesday-tagline {
  font-family: var(--font-serif);
  font-size: clamp(0.95rem, 1.45vw, 1.12rem);
  font-weight: 300;
  font-style: normal;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin: 0 0 1.5rem;
  line-height: 1.6;
}
#wine-wednesday .gold-line {
  margin-top: 0;
}

/* ========================================
   DJ / NIGHTLIFE
   ======================================== */
#nightlife {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.nightlife-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.nightlife-bg img {
  position: relative;
  z-index: 0;
}
.nightlife-bg .photo-warm-wash {
  z-index: 1;
}
.nightlife-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(17, 16, 8, 0.88) 0%, rgba(17, 16, 8, 0.42) 55%, rgba(17, 16, 8, 0.32) 100%),
    rgba(12, 11, 8, 0.45);
}
.nightlife-content {
  position: relative;
  z-index: 3;
  padding: 8rem 4rem;
  max-width: 700px;
}
.nightlife-nights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2.5rem;
}
.night-pill {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid rgba(196, 168, 106, 0.45);
  background: rgba(196, 168, 106, 0.06);
  padding: 0.55rem 1.25rem;
  border-radius: 999px;
  transition: border-color 0.35s var(--ease-out), background 0.35s var(--ease-out);
}
.night-pill:hover {
  border-color: var(--gold);
  background: rgba(196, 168, 106, 0.12);
}

/* ========================================
   PATIO
   ======================================== */
#patio {
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 70vh;
}
.patio-image { position: relative; overflow: hidden; }
.patio-image img {
  position: relative;
  z-index: 0;
  transition: transform 0.9s var(--ease-out);
}
.patio-image:hover img {
  transform: scale(1.02);
}
.patio-content {
  background: linear-gradient(135deg, var(--bg-3) 0%, #1a1712 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem;
  border-left: 1px solid var(--divider-hairline);
}
.patio-list {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.patio-list li {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  font-size: 0.85rem;
  line-height: 1.8;
  color: var(--text-muted);
}
.patio-bullet { color: var(--gold); flex-shrink: 0; }

/* ========================================
   PRIVATE EVENTS
   ======================================== */
#events {
  padding: 10rem 4rem;
  background: var(--bg-2);
}
.events-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.events-features {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 3rem;
}
.event-feature {
  display: flex;
  gap: 1.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--divider-hairline);
}
.event-feature-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(196, 168, 106, 0.45);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 1.1rem;
  background: rgba(196, 168, 106, 0.05);
}
.event-feature-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 300;
  letter-spacing: 0.02em;
  margin-bottom: 0.3rem;
}
.event-feature-text { font-size: 0.85rem; color: var(--text-muted); line-height: 1.8; }
.event-feature-text a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
.event-feature-text a:hover { color: var(--text); }
.events-image {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}
.events-image img {
  position: relative;
  z-index: 0;
}

/* ========================================
   GALLERY
   ======================================== */
#gallery {
  padding: 9rem 4rem;
  position: relative;
  overflow: hidden;
}
#gallery::before {
  content: '';
  position: absolute;
  inset: -20% -10% auto;
  height: 55%;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(196, 168, 106, 0.09) 0%, transparent 68%);
  pointer-events: none;
}
.gallery-header {
  text-align: center;
  margin-bottom: 3.5rem;
  position: relative;
  z-index: 1;
}
.gallery-header .gold-line { margin: 1.5rem auto; }
.gallery-grid {
  columns: 3;
  column-gap: 12px;
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  background: transparent;
  font: inherit;
  color: inherit;
  text-align: left;
  border-radius: var(--radius-lg);
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(196, 168, 106, 0.08);
  transition: box-shadow 0.45s var(--ease-out), transform 0.45s var(--ease-out);
}
.gallery-item:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}
.gallery-item:hover,
.gallery-item:focus-visible {
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(196, 168, 106, 0.28);
  transform: translateY(-2px);
}
.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.045);
  filter: brightness(0.82) saturate(1.05);
}
.gallery-item-shine {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    125deg,
    transparent 0%,
    transparent 40%,
    rgba(255, 248, 235, 0.07) 48%,
    transparent 56%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
}
.gallery-item:hover .gallery-item-shine,
.gallery-item:focus-visible .gallery-item-shine {
  opacity: 1;
}
.gallery-item img {
  position: relative;
  z-index: 0;
  width: 100%;
  display: block;
  transition: transform 0.65s var(--ease-out), filter 0.45s ease;
}
.gallery-item .photo-warm-wash {
  z-index: 1;
}
.gallery-item--tall { aspect-ratio: 3/4; }
.gallery-item--wide { aspect-ratio: 4/3; }
.gallery-item--square { aspect-ratio: 1; }

/* Lightbox (shadcn-style dialog: blur, ring, rounded frame) */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.gallery-lightbox[hidden] {
  display: none !important;
}
.gallery-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 7, 5, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  cursor: pointer;
}
.gallery-lightbox__figure {
  position: relative;
  z-index: 2;
  max-width: min(92vw, 1100px);
  max-height: 85vh;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow:
    var(--shadow-soft),
    0 0 0 1px rgba(196, 168, 106, 0.15);
  transform: scale(0.96) translateY(12px);
  transition: transform 0.4s var(--ease-out);
}
.gallery-lightbox.is-open .gallery-lightbox__figure {
  transform: scale(1) translateY(0);
}
.gallery-lightbox .gallery-lightbox__img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 85vh;
  object-fit: contain;
  margin: 0 auto;
}
.gallery-lightbox__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 4;
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(196, 168, 106, 0.35);
  border-radius: var(--radius-lg);
  background: rgba(24, 20, 14, 0.65);
  color: var(--text);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}
.gallery-lightbox__close:hover {
  background: rgba(196, 168, 106, 0.15);
  border-color: var(--gold);
  color: var(--gold-light);
}
.gallery-lightbox__nav {
  position: absolute;
  top: 50%;
  z-index: 4;
  transform: translateY(-50%);
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(196, 168, 106, 0.3);
  border-radius: var(--radius-lg);
  background: rgba(24, 20, 14, 0.55);
  color: var(--text);
  cursor: pointer;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}
.gallery-lightbox__nav:hover {
  background: rgba(196, 168, 106, 0.12);
  border-color: var(--gold);
  color: var(--gold-light);
}
.gallery-lightbox__prev { left: 0.75rem; }
.gallery-lightbox__next { right: 0.75rem; }
.gallery-lightbox__counter {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  padding: 0.45rem 1rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: rgba(17, 16, 8, 0.75);
  border: 1px solid rgba(196, 168, 106, 0.2);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
@media (max-width: 600px) {
  .gallery-lightbox__prev { left: 0.35rem; }
  .gallery-lightbox__next { right: 0.35rem; }
  .gallery-lightbox__nav {
    width: 2.5rem;
    height: 2.5rem;
  }
}

/* ========================================
   RESERVATIONS
   ======================================== */
#reservations {
  padding: 10rem 4rem;
  background: linear-gradient(135deg, var(--bg-2) 0%, var(--bg-3) 100%);
  position: relative;
  overflow: hidden;
}
#reservations::before {
  content: 'SOMEWHERE';
  position: absolute;
  right: -2rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-serif);
  font-size: 14rem;
  font-weight: 300;
  color: rgba(201,169,110,0.03);
  letter-spacing: -0.05em;
  pointer-events: none;
  white-space: nowrap;
}
.reservations-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}
.reservations-info { display: flex; flex-direction: column; }
.res-hours {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.res-hour-row {
  display: flex;
  justify-content: space-between;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--divider-hairline);
  font-size: 0.85rem;
  line-height: 1.8;
}
.res-hour-day { color: var(--text-muted); }
.res-hour-time { color: var(--text); }
.res-contact {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.res-contact a {
  font-size: 0.85rem;
  line-height: 1.8;
  color: var(--text-muted);
  transition: color var(--transition);
}
.res-contact a:hover { color: var(--gold); }
.res-note {
  margin-top: 1.25rem;
  font-size: 0.82rem;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 420px;
}
.reservations-booking { width: 100%; min-width: 0; }
.reservations-cta-card {
  position: relative;
  background: linear-gradient(160deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid var(--divider-hairline);
  border-radius: var(--radius-md);
  padding: 2.5rem 2.25rem;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    var(--shadow-soft);
}
.reservations-cta-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 1.5rem;
  right: 1.5rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.35;
  pointer-events: none;
}
.form-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 0.03em;
  margin-bottom: 1.25rem;
}
.reservations-cta-body {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}
.reservations-info .section-body a,
.reservations-cta-body a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
.reservations-info .section-body a:hover,
.reservations-cta-body a:hover { color: var(--text); }
.reservations-cta-btn {
  width: 100%;
  justify-content: center;
  text-align: center;
}
.reservations-cta-note {
  margin-top: 1.25rem;
  font-size: 0.82rem;
  line-height: 1.8;
  color: var(--text-muted);
}
.reservations-cta-note a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
.reservations-cta-note a:hover { color: var(--text); }

/* ========================================
   FOOTER
   ======================================== */
#footer {
  background: #0f0e0a;
  padding: 6rem 4rem 2rem;
  border-top: 1px solid var(--divider-hairline);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  max-width: 1400px;
  margin: 0 auto;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--divider-hairline);
}
.footer-brand-name {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}
.footer-brand-name span { color: var(--gold); }
.footer-tagline {
  font-size: 0.82rem;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 260px;
  margin-bottom: 2rem;
}
.footer-socials {
  display: flex;
  gap: 1rem;
}
.footer-social {
  width: 38px;
  height: 38px;
  border: 1px solid var(--divider);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  transition: border-color 0.35s var(--ease-out), color 0.35s var(--ease-out), background 0.35s var(--ease-out), transform 0.35s var(--ease-out);
}
.footer-social:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(196, 168, 106, 0.06);
  transform: translateY(-2px);
}
.footer-heading {
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.footer-links a {
  font-size: 0.85rem;
  line-height: 1.8;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--text); }
.footer-address {
  font-size: 0.85rem;
  line-height: 1.8;
  color: var(--text-muted);
}
.footer-address a {
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-address a:hover { color: var(--gold); }
.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.72rem;
  line-height: 1.8;
  color: var(--text-muted);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1100px) {
  #navbar { padding: 1.8rem 2.5rem; }
  #navbar.scrolled { padding: 1rem 2.5rem; }
  #hero { padding: 0 2.5rem 5rem; }
  #about { gap: 3.5rem; padding: 7.5rem 2.5rem; }
  #menu { padding: 7.5rem 2.5rem; }
  #golden-hour,
  #wine-wednesday { gap: 3.5rem; padding: 7.5rem 2.5rem; }
  .nightlife-content { padding: 6rem 2.5rem; }
  .patio-content { padding: 5rem 2.5rem; }
  #events { padding: 7.5rem 2.5rem; }
  #gallery { padding: 6.5rem 2.5rem; }
  #reservations { padding: 7.5rem 2.5rem; }
  #footer { padding: 5rem 2.5rem 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
}

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  #about { grid-template-columns: 1fr; gap: 3rem; }
  .about-image { aspect-ratio: 4/3; }
  .menu-grid { grid-template-columns: 1fr; }
  #golden-hour,
  #wine-wednesday { grid-template-columns: 1fr; }
  .golden-image { aspect-ratio: 4/3; order: -1; }
  #patio { grid-template-columns: 1fr; }
  .patio-image { aspect-ratio: 4/3; }
  .events-inner { grid-template-columns: 1fr; gap: 3rem; }
  .events-image { aspect-ratio: 4/3; }
  .gallery-grid { columns: 2; }
  .reservations-inner { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .hero-main {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: start;
  }
  .hero-right {
    align-items: flex-start;
  }
  #hero .hero-actions {
    width: 100%;
    max-width: 400px;
    flex-direction: column;
    flex-wrap: nowrap;
  }
  #hero .hero-cta-row {
    flex-direction: column;
    gap: 1rem;
  }
  #hero .hero-reserve-note {
    max-width: none;
    padding: 1rem 0 0;
    border-left: none;
    border-top: 1px solid rgba(196, 168, 106, 0.35);
    box-shadow: none;
  }
  .hero-right .hero-actions .btn-primary,
  .hero-right .hero-actions .btn-ghost {
    width: 100%;
    min-width: 0;
  }
  .hero-right .hero-actions .hero-cta-row .btn-primary {
    width: 100%;
  }
}

@media (max-width: 600px) {
  #hero { padding: 0 1.5rem 4rem; }
  .hero-scroll { display: none; }
  #hero .hero-actions {
    flex-direction: column;
    align-items: stretch;
    max-width: none;
  }
  .hero-right .hero-actions .btn-primary,
  .hero-right .hero-actions .btn-ghost {
    width: 100%;
    min-width: 0;
  }
  #about, #menu, #golden-hour, #wine-wednesday, #events, #gallery,
  #reservations, #footer { padding-left: 1.5rem; padding-right: 1.5rem; }
  .nightlife-content { padding: 4rem 1.5rem; }
  .patio-content { padding: 3rem 1.5rem; }
  .gallery-grid { columns: 1; }
  .footer-grid { grid-template-columns: 1fr; }
  #reservations::before { display: none; }
  .about-badge { left: 0; bottom: 1rem; }
}
