:root {
  --black:      #0d0d0d;
  --charcoal:   #1a1a1a;
  --dark:       #232323;
  --mid:        #2e2e2e;
  --gold:       #c9a84c;
  --gold-light: #e2c97e;
  --gold-dim:   #a07c30;
  --wine:       #7a1e2e;
  --wine-light: #9b2a3d;
  --cream:      #f5f0e8;
  --off-white:  #faf8f4;
  --text:       #1a1a1a;
  --text-muted: #6b6360;
  --white:      #ffffff;
  --border:     rgba(201,168,76,0.18);
}

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

body {
  font-family: 'Georgia', serif;
  background: var(--off-white);
  color: var(--text);
  line-height: 1.75;
}

/* ── NAV ── */
nav {
  background: var(--black);
  position: sticky;
  top: 0;
  z-index: 200;
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
}
.nav-logo img {
  height: 62px;
  width: auto;
  display: block;
}
.nav-shop-name {
  font-family: 'Georgia', serif;
  font-size: 1.05rem;
  color: var(--white);
  letter-spacing: 0.02em;
  white-space: nowrap;
  line-height: 1.2;
}
.nav-shop-name em {
  display: block;
  font-family: 'Arial', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
  margin-top: 0.1rem;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links a {
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  font-family: 'Arial', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 0.75rem;
  border-radius: 2px;
  transition: color 0.2s, background 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
  background: rgba(201,168,76,0.08);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.2s;
}

.nav-social {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  margin-left: 1.25rem;
  padding-left: 1.25rem;
  border-left: 1px solid rgba(255,255,255,0.1);
}
.nav-social a {
  color: rgba(255,255,255,0.38);
  display: flex;
  align-items: center;
  line-height: 1;
  transition: color 0.2s;
}
.nav-social a:hover { color: var(--gold); }

/* ── INFO BAR ── */
.info-bar {
  background: var(--gold);
  color: var(--black);
  font-family: 'Arial', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.6rem 2rem;
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

/* ── HERO ── */
.hero {
  background: var(--black);
  color: var(--white);
  padding: 8rem 2rem 6rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 60%, rgba(201,168,76,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content { position: relative; max-width: 780px; margin: 0 auto; }

.eyebrow {
  font-family: 'Arial', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1.25rem;
  font-weight: normal;
}

h1 strong { color: var(--gold); font-weight: normal; font-style: italic; }

.hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  max-width: 540px;
  margin: 0 auto 2.5rem;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  font-family: 'Arial', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 1px;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}

.btn-gold {
  background: var(--gold);
  color: var(--black);
  font-weight: 700;
}
.btn-gold:hover {
  background: var(--gold-light);
  box-shadow: 0 4px 20px rgba(201,168,76,0.35);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.35);
  color: rgba(255,255,255,0.85);
  margin-left: 1rem;
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-dark {
  background: transparent;
  border: 1px solid rgba(26,26,26,0.35);
  color: var(--text-muted);
}
.btn-dark:hover {
  border-color: var(--gold-dim);
  color: var(--gold-dim);
}

/* ── DIVIDER ── */
.gold-rule {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 1.25rem 0;
}
.gold-rule.center { margin: 1.25rem auto; }

/* ── SECTIONS ── */
section { padding: 5.5rem 2rem; }

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  font-family: 'Arial', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 0.5rem;
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: normal;
  line-height: 1.2;
  color: var(--black);
  margin-bottom: 1rem;
}

h2 em { color: var(--wine); font-style: italic; }

.lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 620px;
  line-height: 1.8;
}

/* ── DARK SECTION ── */
.dark-section {
  background: var(--charcoal);
  color: var(--white);
}
.dark-section h2 { color: var(--gold-light); }
.dark-section h2 em { color: var(--white); font-style: italic; }
.dark-section .lead { color: rgba(255,255,255,0.6); }
.dark-section .section-label { color: var(--gold-dim); }
.dark-section p { color: rgba(255,255,255,0.7); }

/* ── CARDS ── */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.07);
  border-top: 2px solid var(--gold);
  padding: 2rem 1.75rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
}
.card h3 {
  font-size: 1.1rem;
  color: var(--black);
  margin-bottom: 0.5rem;
  font-weight: normal;
  letter-spacing: 0.02em;
}
.card p { font-size: 0.92rem; color: var(--text-muted); }

.dark-section .card {
  background: rgba(255,255,255,0.05);
  border-color: rgba(201,168,76,0.25);
  border-top-color: var(--gold);
}
.dark-section .card h3 { color: var(--gold-light); }
.dark-section .card p { color: rgba(255,255,255,0.6); }

/* ── TWO COL ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.two-col.flip { direction: rtl; }
.two-col.flip > * { direction: ltr; }

/* ── IMAGE FRAME ── */
.img-frame {
  background: var(--dark);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.img-frame::after {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid var(--border);
  pointer-events: none;
}
.img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}

/* ── PAGE HEADER ── */
.page-header {
  background: var(--black);
  color: var(--white);
  padding: 5rem 2rem 4rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.page-header h1 { color: var(--white); font-size: clamp(2rem, 4vw, 3rem); }
.page-header p { color: rgba(255,255,255,0.55); max-width: 540px; margin: 0.75rem auto 0; }
.page-header .section-label { color: var(--gold); }

/* ── HOURS TABLE ── */
.hours-table { width:100%; border-collapse:collapse; font-family:'Arial',sans-serif; font-size:0.92rem; margin-top:1.5rem; }
.hours-table td { padding: 0.65rem 0; border-bottom: 1px solid rgba(0,0,0,0.07); vertical-align: top; }
.hours-table td:first-child { color: var(--gold-dim); font-weight:700; letter-spacing:0.04em; width:160px; }
.hours-table tr:last-child td { border-bottom:none; }

/* ── MAP BLOCK ── */
.map-block {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
}
.map-block iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ── TABS ── */
.tab-bar {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--border);
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.tab-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Arial', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.85rem 1.5rem;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.tab-btn:hover { color: var(--black); }
.tab-btn.active { color: var(--gold-dim); border-bottom-color: var(--gold); }

.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ── SPIRIT / WINE GRID ── */
.bottle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem;
}

.bottle-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  padding: 1.5rem 1.25rem 1.75rem;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  display: flex;
  flex-direction: column;
}
.bottle-card .bottle-info {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.bottle-card-footer {
  margin-top: auto;
  padding-top: 0.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}
.bottle-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.bottle-img {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  overflow: hidden;
}
.bottle-img img {
  height: 140px;
  width: 100%;
  object-fit: contain;
  object-position: center bottom;
}
.bottle-img svg { opacity: 0.6; }

.bottle-card .bottle-name {
  font-size: 0.98rem;
  color: var(--black);
  margin-bottom: 0.2rem;
  font-weight: normal;
}
.bottle-card .bottle-type {
  font-family: 'Arial', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 0.4rem;
}
.bottle-card .bottle-note {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.5;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.bottle-tag {
  display: block;
  font-family: 'Arial', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.28rem 0.6rem;
  font-weight: 700;
  white-space: nowrap;
}
.tag-featured    { background: var(--gold);  color: var(--black); }
.tag-barrel-pick { background: var(--gold);  color: var(--black); }
.tag-new         { background: #1a1a1a;      color: var(--gold);  border: 1px solid var(--gold); }
.tag-limited     { background: var(--wine);  color: var(--white); }

/* Corner badge — absolute top-left, takes no layout space */
.bottle-corner-badge {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.bottle-corner-badge .bottle-tag {
  border-radius: 0 0 3px 0;
}

/* ── WHISKEY CLUB TIERS ── */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.tier-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.09);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}
.tier-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}
.tier-card.featured { border: 1.5px solid var(--gold); }

.tier-card .best-value {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gold);
  color: var(--black);
  font-family: 'Arial', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.2rem 0.55rem;
}

.tier-header {
  background: var(--charcoal);
  padding: 2rem 2rem 1.75rem;
  border-bottom: 2px solid var(--gold);
}
.tier-card.featured .tier-header { background: var(--black); }
.tier-header h3 { font-size: 1.25rem; font-weight: normal; color: var(--gold-light); margin-bottom: 0.25rem; }
.tier-header .tier-sub { font-family: 'Arial', sans-serif; font-size: 0.8rem; color: rgba(255,255,255,0.45); letter-spacing: 0.06em; }

.tier-body { padding: 2rem; }
.tier-body ul { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.tier-body ul li { font-size: 0.93rem; color: var(--text-muted); padding-left: 1.4rem; position: relative; }
.tier-body ul li::before { content: '—'; position: absolute; left: 0; color: var(--gold-dim); font-size: 0.9rem; }
.tier-body .btn { margin-top: 1.75rem; width: 100%; text-align: center; display: block; }

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
}

.contact-block { margin-bottom: 1.75rem; }
.contact-block h3 { font-family: 'Arial', sans-serif; font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-dim); margin-bottom: 0.5rem; }
.contact-block p, .contact-block a { color: var(--text-muted); text-decoration: none; line-height: 1.9; display: block; }
.contact-block a:hover { color: var(--wine); }

/* ── FORM ── */
form { display: flex; flex-direction: column; gap: 1rem; }
form input, form textarea, form select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(0,0,0,0.14);
  font-family: 'Georgia', serif;
  font-size: 0.95rem;
  background: var(--white);
  color: var(--text);
  border-radius: 0;
  transition: border-color 0.2s;
  appearance: none;
}
form input:focus, form textarea:focus, form select:focus {
  outline: none;
  border-color: var(--gold-dim);
}
form textarea { min-height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ── TASTING FEATURES ── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.feature-item {
  padding: 1.75rem 1.5rem;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.07);
  border-left: 3px solid var(--gold);
}
.feature-item h4 { font-size: 1rem; font-weight: normal; color: var(--black); margin-bottom: 0.35rem; }
.feature-item p { font-size: 0.88rem; color: var(--text-muted); }

/* ── GOLD BANNER ── */
.gold-banner {
  background: var(--gold);
  padding: 2rem 2rem;
  text-align: center;
}
.gold-banner p { font-family: 'Arial', sans-serif; font-size: 0.78rem; letter-spacing:0.18em; text-transform:uppercase; color: var(--black); font-weight: 700; margin-bottom: 0.35rem; }
.gold-banner h2 { color: var(--black); font-size: clamp(1.5rem, 3vw, 2.2rem); }

/* ── ACCENT SECTION ── */
.accent-section { background: var(--wine); color: var(--white); }
.accent-section h2 { color: var(--white); }
.accent-section h2 em { color: var(--gold-light); }
.accent-section .section-label { color: rgba(255,255,255,0.55); }
.accent-section .lead { color: rgba(255,255,255,0.75); }

/* ── FAQ ── */
.faq-item { padding: 1.5rem 0; border-bottom: 1px solid rgba(0,0,0,0.08); }
.faq-item:last-child { border-bottom: none; }
.faq-item h3 { font-size: 1rem; font-weight: normal; color: var(--black); margin-bottom: 0.4rem; }
.faq-item p { font-size: 0.93rem; color: var(--text-muted); }

/* ── FOOTER ── */
footer {
  background: var(--black);
  color: rgba(255,255,255,0.5);
  padding: 4rem 2rem 2rem;
  font-family: 'Arial', sans-serif;
  font-size: 0.85rem;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-logo img { height: 72px; width: auto; opacity: 0.9; margin-bottom: 1rem; }
.footer-inner p { line-height: 1.75; color: rgba(255,255,255,0.42); font-size: 0.83rem; }
.footer-col h4 {
  color: var(--gold);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul a { color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s; font-size: 0.83rem; }
.footer-col ul a:hover { color: var(--gold); }
.footer-bottom {
  max-width: 1200px;
  margin: 1.75rem auto 0;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.04em;
}

/* ── SOCIAL ── */
.social-links {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  margin-top: 1.25rem;
}
.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 2px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.08);
}
.social-link svg { display: block; }

/* ── SOCIAL FEED SECTION ── */
.social-section {
  background: var(--black);
  padding: 5rem 2rem;
  color: var(--white);
  border-top: 1px solid var(--border);
}
.social-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
  align-items: start;
}
.social-card {
  background: var(--charcoal);
  border: 1px solid var(--border);
  padding: 2rem;
}
.social-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.social-card-header svg { color: var(--gold); flex-shrink: 0; }
.social-card-header strong {
  font-family: 'Arial', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.social-card-header span {
  font-family: 'Arial', sans-serif;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  display: block;
  margin-top: 0.15rem;
}
.fb-page-wrap {
  line-height: 0;
  overflow: hidden;
}
.ig-follow-block {
  text-align: center;
  padding: 2rem 1rem;
}
.ig-follow-block .ig-icon {
  margin: 0 auto 1rem;
  width: 52px;
  height: 52px;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ig-follow-block p {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}
.ig-follow-block .btn {
  background: linear-gradient(45deg, #f09433, #dc2743, #bc1888);
  color: var(--white);
  font-weight: 700;
}
.ig-follow-block .btn:hover {
  opacity: 0.9;
  box-shadow: 0 4px 20px rgba(220,39,67,0.4);
  transform: translateY(-1px);
}
.fb-follow-block .btn {
  background: linear-gradient(45deg, #1877f2, #0d5bbf, #1877f2);
  background-size: 200% 200%;
  animation: fb-shimmer 3s ease infinite;
}
.fb-follow-block .btn:hover {
  box-shadow: 0 4px 20px rgba(24,119,242,0.45);
}
@keyframes fb-shimmer {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ── TESTIMONIALS ── */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (max-width: 768px) { .testimonial-grid { grid-template-columns: 1fr; } }

.testimonial-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-top: 2px solid var(--gold);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.testimonial-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.1em;
}
.testimonial-card blockquote {
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
  line-height: 1.75;
  font-style: italic;
  flex-grow: 1;
  margin: 0;
  quotes: none;
}
.testimonial-author { margin-top: auto; padding-top: 1rem; border-top: 1px solid var(--border); }
.testimonial-name {
  color: var(--gold-light);
  font-family: 'Arial', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.testimonial-meta {
  color: rgba(255,255,255,0.25);
  font-family: 'Arial', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 0.2rem;
}

/* ── THURSDAY EVENT HIGHLIGHT ── */
.event-highlight {
  background: var(--gold);
  color: var(--black);
  padding: 2.5rem 2.5rem;
  border-left: 4px solid var(--wine);
  margin: 2.5rem 0;
}
.event-highlight .event-tag {
  font-family: 'Arial', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--wine);
  margin-bottom: 0.35rem;
}
.event-highlight h3 {
  font-size: 1.35rem;
  font-weight: normal;
  color: var(--black);
  margin-bottom: 0.5rem;
}
.event-highlight p { font-size: 0.95rem; color: rgba(0,0,0,0.7); line-height: 1.7; }
.event-highlight .event-meta {
  font-family: 'Arial', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: var(--wine);
  text-transform: uppercase;
  margin-top: 0.75rem;
}

/* ── DROPDOWN ── */
.nav-dropdown { position: relative; }
.nav-dropdown > a {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.nav-dropdown > a::after {
  content: '';
  display: inline-block;
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  margin-top: 1px;
  opacity: 0.55;
  transition: opacity 0.2s;
}
.nav-dropdown:hover > a::after,
.nav-dropdown.open > a::after { opacity: 1; }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: var(--black);
  border: 1px solid var(--border);
  min-width: 158px;
  display: none;
  flex-direction: column;
  z-index: 300;
}
.dropdown-menu a {
  display: block;
  padding: 0.65rem 1.25rem;
  color: rgba(255,255,255,0.65);
  font-family: 'Arial', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.dropdown-menu a:hover, .dropdown-menu a.active {
  background: rgba(201,168,76,0.08);
  color: var(--gold);
}
.nav-dropdown.open .dropdown-menu { display: flex; }

/* ── PHOTO CAROUSEL ── */
.carousel-section {
  background: var(--black);
  position: relative;
}
.carousel {
  position: relative;
  width: 100%;
  height: 480px;
  overflow: hidden;
}
.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.carousel-slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  background: var(--dark);
  overflow: hidden;
}
.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.carousel-slide-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: rgba(201,168,76,0.3);
  font-family: 'Arial', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.carousel-slide-placeholder svg { opacity: 0.25; }
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold);
  width: 46px; height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s, border-color 0.2s;
  font-size: 1rem;
  line-height: 1;
}
.carousel-btn:hover { background: rgba(201,168,76,0.15); border-color: var(--gold); }
.carousel-btn.prev { left: 1.5rem; }
.carousel-btn.next { right: 1.5rem; }
.carousel-dots {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}
.carousel-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.28);
  cursor: pointer;
  transition: background 0.2s;
  border: none;
  padding: 0;
}
.carousel-dot.active { background: var(--gold); }

/* ── HERO BACKGROUND CAROUSEL ── */
.hero-carousel {
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 2rem 7rem;
}

.hero-carousel-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-carousel-bg .carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.hero-carousel-bg .carousel-slide {
  min-width: 100vw;
  width: 100vw;
  height: 100%;
  position: relative;
  flex-shrink: 0;
}

.hero-carousel-bg .carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.58);
  z-index: 1;
}

.hero-carousel .hero-content {
  position: relative;
  z-index: 2;
}

.hero-carousel .carousel-btn {
  z-index: 3;
  top: auto;
  bottom: 3.5rem;
  transform: none;
}
.hero-carousel .carousel-btn.prev { left: 2rem; }
.hero-carousel .carousel-btn.next { right: 2rem; }

.hero-carousel .carousel-dots {
  z-index: 3;
  bottom: 1.75rem;
}

/* ── TOP SELLERS CAROUSEL ── */
.top-sellers-section {
  background: var(--charcoal);
  padding: 4rem 0 4rem 2rem;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.top-sellers-section .section-inner {
  padding-right: 0;
  max-width: none;
  margin: 0;
  padding-left: 0;
}
.top-sellers-header {
  max-width: 1200px;
  margin: 0 auto 2.5rem;
  padding: 0 2rem;
}
.top-sellers-scroll {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  padding: 0.5rem 2rem 1.5rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--gold-dim) var(--dark);
}
.top-sellers-scroll::-webkit-scrollbar { height: 4px; }
.top-sellers-scroll::-webkit-scrollbar-track { background: var(--dark); }
.top-sellers-scroll::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 2px; }
.top-seller-card {
  flex: 0 0 200px;
  scroll-snap-align: start;
  background: var(--dark);
  border: 1px solid var(--border);
  border-top: 2px solid var(--gold);
  padding: 1.5rem 1.25rem 1.25rem;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  display: flex;
  flex-direction: column;
}
.top-seller-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.35);
}
.top-seller-card .bottle-img { height: 130px; margin-bottom: 0.85rem; display:flex; align-items:center; justify-content:center; }
.top-seller-card .bottle-img img { height: 130px; width: auto; object-fit: contain; }
.top-seller-card .bottle-name { color: var(--white); font-size: 0.95rem; margin-bottom: 0.2rem; }
.top-seller-card .bottle-type { color: var(--gold-dim); }
.top-seller-card .bottle-note { color: rgba(255,255,255,0.45); font-size: 0.82rem; flex-grow: 1; }
.top-seller-card .bottle-tag { display: block; margin: 0.75rem 0 0.6rem; }
.top-seller-card [data-add-to-cart] {
  width: 100%;
  margin-top: 0.5rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
}
.tag-top-seller { background: var(--wine); color: var(--white); font-weight: 700; }
.tag-barrel-pick { background: var(--gold); color: var(--black); font-weight: 700; }
.bottle-price {
  font-family: 'Arial', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold-dim);
  margin: 0;
}
/* Add to Cart button always full-width and flush to bottom of card */
.bottle-card [data-add-to-cart] {
  width: 100%;
  margin-top: 0.6rem;
  padding: 0.6rem 1rem;
  font-size: 0.75rem;
}

/* ── BARREL PICKS PAGE ── */
.barrel-hero-img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  object-position: center;
  display: block;
}
.barrel-intro {
  background: var(--charcoal);
  color: var(--white);
  padding: 3.5rem 2rem;
  border-bottom: 1px solid var(--border);
}
.barrel-intro .section-inner { max-width: 720px; }
.barrel-intro p { color: rgba(255,255,255,0.65); font-size: 1.05rem; line-height: 1.85; }
.barrel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.75rem;
  margin-top: 3rem;
}
.barrel-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  border-top: 3px solid var(--gold);
  padding: 2rem 1.75rem;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  position: relative;
}
.barrel-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}
.barrel-card .barrel-card-type {
  font-family: 'Arial', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 0.4rem;
}
.barrel-card h3 { font-size: 1.15rem; font-weight: normal; color: var(--black); margin-bottom: 0.75rem; line-height: 1.3; }
.barrel-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1rem; flex-grow: 1; }
.barrel-card-price { font-size: 1.1rem; font-weight: 700; color: var(--black); margin-bottom: 0.5rem !important; flex-shrink: 0; }
.barrel-card-btn { margin-top: 1rem; width: 100%; padding: 0.6rem 1rem; font-size: 0.78rem; }

/* ── BUNDLES PAGE ── */
.bundle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.bundle-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.bundle-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.bundle-card-header {
  background: var(--charcoal);
  padding: 1.75rem 1.75rem 1.5rem;
  border-bottom: 2px solid var(--gold);
}
.bundle-card-header .bundle-tag {
  font-family: 'Arial', sans-serif;
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.bundle-card-header h3 { font-size: 1.2rem; font-weight: normal; color: var(--white); margin-bottom: 0.3rem; }
.bundle-card-header .bundle-savings {
  font-family: 'Arial', sans-serif;
  font-size: 0.8rem;
  color: var(--gold-light);
  letter-spacing: 0.04em;
}
.bundle-card-body { padding: 1.75rem; }
.bundle-card-body ul { list-style: none; margin-bottom: 1.5rem; }
.bundle-card-body ul li {
  font-size: 0.92rem;
  color: var(--text-muted);
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding-left: 1.25rem;
  position: relative;
}
.bundle-card-body ul li::before { content: '—'; position: absolute; left: 0; color: var(--gold-dim); }
.bundle-card-body ul li:last-child { border-bottom: none; }
.bundle-card-body .bundle-note { font-size: 0.84rem; color: var(--text-muted); font-style: italic; margin-top: 0.5rem; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0; right: 0;
    background: var(--black);
    border-top: 1px solid var(--border);
    padding: 1rem 1.5rem 1.5rem;
    gap: 0.25rem;
  }
  .nav-links.open { display: flex; }
  .nav-inner { position: relative; }
  .nav-toggle { display: flex; }

  .two-col, .contact-grid, .footer-inner, .social-grid { grid-template-columns: 1fr; gap: 2rem; }

  .carousel { height: 260px; }
  .carousel-btn { width: 36px; height: 36px; font-size: 0.85rem; }
  .hero-carousel { min-height: 100svh; padding: 5rem 1.5rem 6rem; }
  .hero-carousel .carousel-btn { bottom: 2.5rem; }
  .hero-carousel .carousel-dots { bottom: 1.25rem; }

  /* Mobile dropdown — inline expand */
  .dropdown-menu {
    position: static;
    border: none;
    border-left: 2px solid var(--border);
    margin-left: 0.5rem;
    padding-left: 0.25rem;
    display: none;
  }
  .nav-dropdown.open .dropdown-menu { display: flex; }
  .two-col.flip { direction: ltr; }
  .form-row { grid-template-columns: 1fr; }

  .gold-banner .section-inner { grid-template-columns: 1fr !important; gap: 1.25rem !important; }
  .gold-banner .section-inner > div + div { border-left: none !important; padding-left: 0 !important; border-top: 2px solid rgba(0,0,0,0.15); padding-top: 1.25rem; }

  .nav-social { display: none; }

  .info-bar { gap: 0.75rem; flex-direction: column; text-align: center; }
  /* Hide info-bar separators on mobile */
  .info-bar .info-sep { display: none; }

  .btn-outline { margin-left: 0; margin-top: 0.75rem; }
  section { padding: 3.5rem 1.5rem; }
  .hero { padding: 5rem 1.5rem 4rem; }

  /* Tab bar — horizontally scrollable on mobile */
  .tab-bar {
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 0;
  }
  .tab-bar::-webkit-scrollbar { display: none; }
  .tab-btn { white-space: nowrap; padding: 0.75rem 1.1rem; font-size: 0.72rem; }

  /* Product grids — 2 columns on mobile */
  .bottle-grid { grid-template-columns: repeat(2, 1fr); gap: 0.85rem; }
  .bottle-card { padding: 1rem 0.85rem 1.25rem; }
  .bottle-card .bottle-img { height: 80px; }
  .bottle-card .bottle-img img { height: 80px; }
  .bottle-card .bottle-name { font-size: 0.82rem; }
  .bottle-card .bottle-note { font-size: 0.75rem; }

  /* Top sellers — tighter on mobile */
  .top-seller-card { flex: 0 0 160px; padding: 1.1rem 0.85rem 1rem; }
  .top-sellers-section { padding: 3rem 0 3rem 1.25rem; }

  /* Page headers */
  .page-header { padding: 3rem 1.5rem 2rem; }
  .page-header h1 { font-size: clamp(1.75rem, 7vw, 3rem); }

  /* Map fills full width on mobile */
  .map-block { margin-top: 1.5rem; }

  /* Barrel/bundle cards single column */
  .barrel-grid { grid-template-columns: 1fr; }

  /* Cart/checkout */
  .order-line { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .order-line-meta { flex-direction: row; flex-wrap: wrap; }
}
