/* ===== Color variables ===== */
:root {
  --void:   #070707;
  --cask:   #141414;
  --dark:   #0c0c0c;
  --gold:   #D4AF37;
  --silver: #E5E5E5;
  --white:  #E5E5E5;
  --border: rgba(229,229,229,0.15);
  --border-subtle: rgba(229,229,229,0.08);
  --border-mid:    rgba(229,229,229,0.15);
  --gold-dim:      rgba(212,175,55,0.6);
  --gold-faint:    rgba(212,175,55,0.07);
  --text-dim:      rgba(229,229,229,0.45);
  --text-faint:    rgba(229,229,229,0.25);
}

/* ===== Global ===== */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; background: var(--void); }

body {
  background-color: var(--void);
  color: var(--silver);
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  font-weight: 400;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
}

.text-muted     { color: var(--text-dim)   !important; }
.text-secondary { color: var(--text-faint) !important; }

/* ===== Utility classes (mirrors sample) ===== */
.label-caps {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.thin-divider {
  border: none;
  height: 0.5px;
  background: rgba(229,229,229,0.1);
  margin: 0;
  opacity: 1;
}

.card-glass {
  background: rgba(20,20,20,0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 0.5px solid var(--border-mid);
}

.card-glass:hover {
  background: rgba(25,25,25,0.9);
  border-color: rgba(212,175,55,0.5);
  box-shadow: 0 0 30px rgba(212,175,55,0.15);
}

.gold-glow {
  box-shadow: 0 0 20px rgba(212,175,55,0.3), 0 0 40px rgba(212,175,55,0.1);
}

.text-gold  { color: var(--gold)   !important; }
.text-accent { color: var(--gold) !important; }

/* ===== Main content offset for fixed navbar ===== */
.main-content { padding-top: 80px; }

/* ===== Navbar ===== */
#main-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1050;
  background: transparent;
  border-bottom: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition: background 0.45s ease, border-color 0.45s ease, backdrop-filter 0.45s ease;
  padding: 0;
}

#main-nav.scrolled {
  background: rgba(7,7,7,0.93);
  border-bottom: 0.5px solid var(--border-mid);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

#main-nav .navbar-nav {
  gap: 0.25rem;
}

.navbar-brand-top {
  display: block;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-transform: uppercase;
  line-height: 1.3;
}

.navbar-brand-bottom {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: rgba(229,229,229,0.45);
  text-transform: uppercase;
  font-weight: 400;
  line-height: 1;
}

#main-nav .nav-link {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim) !important;
  padding: 0.3rem 0;
  margin: 0 1.25rem;
  border-bottom: 1px solid transparent;
  transition: color 0.25s, border-color 0.25s;
}

#main-nav .nav-link.active {
  color: var(--gold) !important;
  border-bottom-color: var(--gold);
}

#main-nav .nav-link:hover {
  color: var(--silver) !important;
  border-bottom-color: rgba(229,229,229,0.3);
}

.btn-visit {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--void);
  background: var(--gold);
  padding: 9px 22px;
  border: none;
  border-radius: 0;
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s;
  display: inline-block;
  white-space: nowrap;
}

.btn-visit:hover {
  background: #c9a030;
  box-shadow: 0 0 24px rgba(212,175,55,0.35);
  color: var(--void);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  background: var(--void);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  margin-top: -80px; /* cancel main-content padding so hero reaches viewport top */
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.25;
  filter: saturate(0.6);
}

.hero-spotlight {
  position: absolute;
  inset: 0;
  pointer-events: none;
  transition: background 0.15s ease;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at center, transparent 20%, rgba(7,7,7,0.85) 100%);
}

.hero-bottom-fade {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 12rem;
  pointer-events: none;
  background: linear-gradient(to bottom, transparent, var(--void));
}

.hero-content {
  position: relative;
  z-index: 10;
  padding: 0 1.5rem;
}

/* Hero load-in animations */
.hero-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.hero-animate.loaded { opacity: 1; transform: translateY(0); }
.hero-animate-delay-1 { transition-delay: 0.2s; }
.hero-animate-delay-2 { transition-delay: 0.5s; }
.hero-animate-delay-3 { transition-delay: 0.8s; }
.hero-animate-delay-4 { transition-delay: 1.1s; }

.hero-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 2rem;
}

.hero-title-outline {
  display: block;
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(52px, 12vw, 140px);
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--silver);
  user-select: none;
}

.hero-title-gold {
  display: block;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(52px, 12vw, 140px);
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: var(--gold);
  user-select: none;
}

.hero-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: clamp(14px, 1.5vw, 17px);
  color: var(--text-dim);
  letter-spacing: 0.04em;
  max-width: 420px;
  margin: 2rem auto 0;
  line-height: 1.7;
}

.btn-hero-primary {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--void);
  background: var(--gold);
  padding: 16px 40px;
  border: none;
  border-radius: 0;
  text-decoration: none;
  display: inline-block;
  transition: background 0.25s, box-shadow 0.25s;
}

.btn-hero-primary:hover {
  background: #c9a030;
  box-shadow: 0 0 30px rgba(212,175,55,0.35);
  color: var(--void);
}

.btn-hero-secondary {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  border: 0.5px solid rgba(229,229,229,0.25);
  padding: 16px 40px;
  border-radius: 0;
  text-decoration: none;
  display: inline-block;
  transition: color 0.25s, border-color 0.25s;
}

.btn-hero-secondary:hover {
  color: var(--silver);
  border-color: rgba(229,229,229,0.5);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  transition: opacity 1s ease 1.6s;
}
.hero-scroll-indicator.loaded { opacity: 0.5; }

.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(212,175,55,0.6), transparent);
}

/* ===== Featured Collection ===== */
.featured-section {
  background: var(--void);
  padding: 8rem 1.5rem 8rem;
}

.featured-inner { max-width: 1280px; margin: 0 auto; }

.featured-header {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .featured-header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.featured-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 1rem;
}

.featured-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(34px, 5vw, 58px);
  color: var(--silver);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 400;
  margin: 0;
}

.featured-view-all {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  border-bottom: 0.5px solid rgba(229,229,229,0.25);
  padding-bottom: 3px;
  text-decoration: none;
  white-space: nowrap;
  align-self: flex-start;
  transition: color 0.2s, border-color 0.2s;
}

.featured-view-all:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* Card grid — 1px separators via gap + background */
.featured-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: rgba(229,229,229,0.07);
}

@media (min-width: 640px)  { .featured-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .featured-grid { grid-template-columns: repeat(3, 1fr); } }

/* Individual card */
.feat-card {
  background: var(--cask);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease, border-color 0.3s;
}

.feat-card.visible { opacity: 1; transform: translateY(0); }

.feat-card:hover { border-color: rgba(212,175,55,0.5); }

/* Card image */
.feat-card-img-wrap {
  position: relative;
  overflow: hidden;
  height: 280px;
}

.feat-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.8) brightness(0.85);
  transition: transform 0.7s ease;
}

.feat-card:hover .feat-card-img-wrap img {
  transform: scale(1.05);
}

.feat-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,7,7,0.8) 0%, transparent 60%);
  opacity: 0.7;
  pointer-events: none;
}

.feat-card-badge-cat {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(7,7,7,0.7);
  border: 0.5px solid rgba(212,175,55,0.4);
  padding: 4px 12px;
}

.feat-card-placeholder {
  width: 100%;
  height: 100%;
  background: #1c1c1c;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Card info */
.feat-card-info {
  padding: 1.5rem;
}

.feat-card-name {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--silver);
  line-height: 1.3;
  letter-spacing: -0.01em;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.feat-card-brand {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 0.75rem;
}

.feat-card-desc {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.btn-feat-view {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(212,175,55,0.8);
  border: 0.5px solid rgba(212,175,55,0.3);
  padding: 11px;
  background: transparent;
  width: 100%;
  text-align: center;
  text-decoration: none;
  display: block;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  cursor: pointer;
}

.btn-feat-view:hover {
  background: rgba(212,175,55,0.1);
  border-color: var(--gold);
  color: var(--gold);
}

/* ===== Store Highlight ===== */
.store-highlight {
  padding: 8rem 1.5rem;
  position: relative;
  overflow: hidden;
  border-top:    0.5px solid rgba(229,229,229,0.06);
  border-bottom: 0.5px solid rgba(229,229,229,0.06);
}

.store-highlight-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.04;
  pointer-events: none;
}

.store-highlight-inner {
  position: relative;
  z-index: 10;
  max-width: 1280px;
  margin: 0 auto;
}

.highlight-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px, 5vw, 54px);
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
  font-weight: 700;
  min-width: 100px;
  flex-shrink: 0;
}

.highlight-stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--silver);
  font-weight: 500;
  margin-bottom: 0.4rem;
}

.highlight-stat-desc {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.7;
  margin: 0;
}

/* ===== Review cards ===== */
.reviews-section {
  padding: 6rem 1.5rem;
  background: var(--void);
}

.review-card {
  background: var(--cask);
  border: 0.5px solid var(--border-mid);
  border-radius: 0;
  padding: 1.5rem;
}

.stars { color: var(--gold); font-size: 0.85rem; letter-spacing: 3px; }

.review-text {
  font-size: 0.875rem;
  color: var(--text-dim);
  font-style: italic;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.review-author {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gold-dim);
  margin-bottom: 0;
}

/* ===== Info strip ===== */
.info-strip {
  background: var(--void);
  border-top: 0.5px solid rgba(229,229,229,0.06);
  padding: 3.5rem 0;
}

.info-label {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-dim);
  font-weight: 600;
  margin-bottom: 0.6rem;
  display: block;
}

/* ===== Section headings ===== */
.section-heading {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--silver);
  letter-spacing: -0.01em;
}

/* ===== Inventory page ===== */
.inventory-section { max-width: 1280px; margin: 0 auto; padding: 3rem 1.5rem; }

.inventory-filter-bar {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  border-bottom: 0.5px solid rgba(229,229,229,0.1);
  margin-bottom: 3rem;
  gap: 0;
  scrollbar-width: none;
}
.inventory-filter-bar::-webkit-scrollbar { display: none; }

.filter-item {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 12px 24px;
  border-bottom: 1px solid transparent;
  text-decoration: none;
  transition: color 0.25s, border-color 0.25s;
  color: var(--text-dim);
}

.filter-item.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.filter-item:hover:not(.active) {
  color: rgba(229,229,229,0.8);
}

/* ===== Product cards (inventory grid) ===== */
.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: rgba(229,229,229,0.07);
}

@media (min-width: 576px)  { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px)  { .product-grid { grid-template-columns: repeat(3, 1fr); } }

.product-card {
  background: var(--cask);
  overflow: hidden;
  transition: border-color 0.25s;
}

.product-card:hover { border-color: rgba(212,175,55,0.5); }

.product-img { height: 260px; object-fit: cover; width: 100%; display: block; }

.product-img-placeholder {
  height: 260px;
  background: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card-body {
  padding: 1.5rem;
  background: var(--cask);
}

.product-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  color: var(--silver);
  line-height: 1.3;
  margin-bottom: 0.35rem;
}

.product-card-brand {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 0.75rem;
}

.badge-category {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(7,7,7,0.7) !important;
  border: 0.5px solid rgba(212,175,55,0.4) !important;
  border-radius: 0 !important;
  padding: 4px 10px !important;
}

/* keep old class names working */
.bg-navy { background: rgba(7,7,7,0.7) !important; color: var(--gold) !important; border-radius: 0 !important; font-size: 10px !important; letter-spacing: 0.12em; border: 0.5px solid rgba(212,175,55,0.4) !important; }

/* ===== Buttons ===== */
.btn-accent, .btn-gold, .btn-navy {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--void);
  background: var(--gold);
  border: 1px solid var(--gold);
  padding: 0.75rem 1.75rem;
  border-radius: 0;
  transition: background 0.2s, box-shadow 0.2s;
  text-decoration: none;
  display: inline-block;
}

.btn-accent:hover, .btn-gold:hover, .btn-navy:hover {
  background: #c9a030;
  border-color: #c9a030;
  box-shadow: 0 0 24px rgba(212,175,55,0.3);
  color: var(--void);
}

.btn-outline-navy {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(212,175,55,0.8);
  border: 0.5px solid rgba(212,175,55,0.3);
  padding: 11px 20px;
  background: transparent;
  border-radius: 0;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.btn-outline-navy:hover {
  background: rgba(212,175,55,0.1);
  border-color: var(--gold);
  color: var(--gold);
}

.btn-outline-secondary {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  border: 0.5px solid rgba(229,229,229,0.2);
  padding: 10px 18px;
  background: transparent;
  border-radius: 0;
  text-decoration: none;
  display: inline-block;
  transition: color 0.2s, border-color 0.2s;
}

.btn-outline-secondary:hover {
  color: var(--silver);
  border-color: rgba(229,229,229,0.4);
}

/* ===== Special order banner ===== */
.special-order-banner {
  background: var(--cask);
  border: 0.5px solid var(--border-mid) !important;
  border-radius: 0 !important;
  padding: 2rem;
}

.special-order-banner h5 { color: var(--silver); }
.special-order-banner p  { color: var(--text-dim); margin-bottom: 0; }

/* ===== Product detail page ===== */
.product-detail-placeholder {
  min-height: 400px;
  background: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-detail-title { color: var(--silver); }
.product-detail-brand { color: var(--text-dim); }
.product-detail-desc  { color: var(--text-dim); font-size: 15px; line-height: 1.8; }

/* ===== About / Contact page ===== */
.contact-hero {
  min-height: 52vh;
  background: linear-gradient(160deg, rgba(20,12,3,0.94) 0%, rgba(0,0,0,0.9) 100%),
              linear-gradient(135deg, #1a1008 0%, var(--void) 100%);
  display: flex;
  align-items: flex-end;
  padding: 0 0 4rem;
}

.contact-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-dim);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.contact-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 400;
  color: var(--silver);
  line-height: 1.05;
  margin-bottom: 0;
  letter-spacing: -0.02em;
}

.contact-section-title {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-dim);
  font-weight: 700;
  margin-bottom: 2rem;
  display: block;
}

.contact-field-label {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(229,229,229,0.3);
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: block;
}

.contact-field-value {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--silver);
  line-height: 1.35;
}

.contact-divider {
  border: none;
  height: 0.5px;
  background: rgba(229,229,229,0.08);
  margin: 2rem 0;
  opacity: 1;
}

.drive-through-callout {
  background: rgba(212,175,55,0.05);
  border-left: 2px solid var(--gold);
  padding: 1rem 1.25rem;
  color: rgba(229,229,229,0.65);
}

.about-story {
  background: var(--cask);
  border: 0.5px solid var(--border-mid);
  padding: 1.5rem;
  color: var(--text-dim);
}

/* ===== Hours table ===== */
.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table tr {
  border-bottom: 0.5px solid rgba(229,229,229,0.08);
}

.hours-table td {
  padding: 0.9rem 0.75rem;
  font-size: 15px;
  color: rgba(229,229,229,0.5);
}

.hours-table .day-name  { font-weight: 500; }
.hours-table .day-hours { text-align: right; }

/* Today row */
.today-row {
  border-left: 3px solid var(--gold);
}

.today-row td { color: var(--silver) !important; }
.today-row .day-name  { font-weight: 700 !important; }
.today-row .day-hours { color: var(--gold) !important; font-weight: 600; }

.today-badge {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-left: 0.75rem;
  vertical-align: middle;
}

table.table { color: rgba(229,229,229,0.65); }
table.table td { border-color: rgba(229,229,229,0.08); }

/* ===== Footer ===== */
.footer-dark {
  position: relative;
  overflow: hidden;
  background: #040404;
  border-top: 0.5px solid var(--border-subtle);
  padding-top: 5rem;
  padding-bottom: 2.5rem;
}

.footer-watermark {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  user-select: none;
}

.footer-watermark span {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(120px, 25vw, 280px);
  color: transparent;
  -webkit-text-stroke: 0.5px rgba(212,175,55,0.06);
  letter-spacing: -0.05em;
  line-height: 1;
}

.footer-brand-name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--gold);
  letter-spacing: 0.1em;
}

.footer-brand-sub {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: rgba(229,229,229,0.3);
  font-weight: 400;
}

.footer-dark p  { color: rgba(229,229,229,0.4); font-size: 14px; line-height: 1.8; }
.footer-dark a  { color: rgba(229,229,229,0.45); font-size: 14px; text-decoration: none; transition: color 0.2s; }
.footer-dark a:hover { color: var(--gold); }
.footer-dark h5, .footer-dark h6, .footer-col-title {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 1.5rem;
}

.footer-divider { background: rgba(229,229,229,0.08); border: none; height: 0.5px; opacity: 1; margin: 3rem 0 2rem; }
.footer-copy    { color: rgba(229,229,229,0.2) !important; font-size: 12px !important; letter-spacing: 0.05em; }

/* ===== 404 page ===== */
.display-1 { font-family: 'Playfair Display', serif; color: var(--gold); }

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .hero { height: 100svh; }
  .btn-hero-primary, .btn-hero-secondary { padding: 14px 28px; font-size: 10px; }
}
