/* ============================================================
   CV Spirits — Shared Stylesheet  v2.0
   cvbev.com | 4620 Richmond Rd, Warrensville Heights, OH
   ============================================================ */

/* ── RESET & TOKENS ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

:root {
  --gold:       #C9A84C;
  --gold-light: #E8C96A;
  --gold-muted: #7A6018;
  --dark:       #0D0D0D;
  --dark2:      #161616;
  --dark3:      #1E1E1E;
  --cream:      #F5EDD8;
  --text:       #D4C9B0;
  --text-dim:   #8A7F6A;
  --amber:      #B5692A;
  --green-ok:   #2A6B3A;
  --red-wine:   #6B1A2A;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Jost', system-ui, sans-serif;
}

body {
  font-family: var(--font-sans);
  background: var(--dark);
  color: var(--text);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a   { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-light); }
ul, ol { list-style: none; }
p  { line-height: 1.75; }

/* ── NAVIGATION ─────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(13,13,13,0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 0 32px; height: 70px; gap: 16px;
}
.nav-brand {
  display: flex; align-items: center;
  gap: 14px; flex-shrink: 0;
  min-width: 0;
}
.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.5rem; color: var(--gold);
  text-decoration: none; letter-spacing: 1px;
  white-space: nowrap; flex-shrink: 0;
}
.nav-logo span { font-style: italic; color: var(--cream); }

/* OHLQ Badge — strictly constrained so it never breaks layout */
.ohlq-badge {
  display: flex; align-items: center;
  padding-left: 14px;
  border-left: 1px solid rgba(201,168,76,0.25);
  opacity: 0.82; transition: opacity 0.2s;
  text-decoration: none; flex-shrink: 0;
  overflow: hidden; /* safety */
}
.ohlq-badge:hover { opacity: 1; }
.ohlq-badge img {
  height: 22px !important;
  width: auto !important;
  max-width: 80px !important;
  display: block;
  object-fit: contain;
}

/* Nav links */
.nav-links {
  display: flex; gap: 2px;
  list-style: none; align-items: center;
  flex: 1; justify-content: center;
}
.nav-links > li { position: relative; }
.nav-links a {
  color: var(--text); text-decoration: none;
  font-size: 0.76rem; letter-spacing: 1px;
  text-transform: uppercase; font-weight: 500;
  transition: color 0.2s;
  padding: 8px 9px; display: block; white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }

/* Dropdown */
.nav-dropdown > a {
  cursor: pointer;
  display: flex; align-items: center; gap: 4px;
}
.nav-dropdown > a::after { content: '▾'; font-size: 0.6rem; }
.dropdown-menu {
  display: none; position: absolute;
  top: calc(100% + 1px); left: 0;
  background: rgba(14,12,9,0.99);
  border: 1px solid rgba(201,168,76,0.22);
  border-radius: 4px; min-width: 200px;
  padding: 8px 0;
  box-shadow: 0 16px 48px rgba(0,0,0,0.6);
  z-index: 300;
}
.dropdown-menu li a {
  padding: 10px 18px;
  font-size: 0.76rem; letter-spacing: 1px;
  color: var(--text-dim);
  display: block;
}
.dropdown-menu li a:hover {
  color: var(--gold);
  background: rgba(201,168,76,0.06);
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.open   .dropdown-menu { display: block; }

/* Order button */
.nav-order-btn {
  background: var(--gold); color: var(--dark);
  padding: 8px 16px; border-radius: 2px;
  font-size: 0.72rem; letter-spacing: 1.5px;
  text-transform: uppercase; font-weight: 700;
  text-decoration: none; transition: background 0.2s;
  white-space: nowrap; flex-shrink: 0;
}
.nav-order-btn:hover { background: var(--gold-light); }

/* Hamburger */
.hamburger {
  display: none; background: none; border: none;
  cursor: pointer; padding: 4px; flex-shrink: 0;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--gold); margin: 5px 0; transition: 0.3s;
}

/* ── MOBILE NAV ──────────────────────────────────────────────── */
@media (max-width: 960px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; flex: none; }
  .nav-order-btn { display: none; }
  .hamburger { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 70px; left: 0; right: 0;
    background: rgba(10,9,7,0.99);
    padding: 12px 20px 24px;
    gap: 0; border-bottom: 1px solid rgba(201,168,76,0.2);
    max-height: calc(100vh - 70px); overflow-y: auto;
    z-index: 199;
  }
  .nav-links.open > li { border-bottom: 1px solid rgba(201,168,76,0.08); }
  .nav-links.open a { padding: 14px 4px; font-size: 0.88rem; }
  .nav-links.open .dropdown-menu {
    display: block; position: static;
    background: transparent; border: none;
    box-shadow: none; padding: 0 0 6px 16px;
  }
  .nav-links.open .dropdown-menu li a {
    padding: 9px 4px; font-size: 0.82rem; color: var(--text-dim);
  }
  .nav-dropdown > a::after { content: ''; }
}
@media (max-width: 640px) { .ohlq-badge { display: none; } }

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn-gold, .btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: var(--dark);
  padding: 12px 28px; border-radius: 2px;
  font-size: 0.8rem; letter-spacing: 2px;
  text-transform: uppercase; font-weight: 600;
  text-decoration: none; transition: background 0.2s;
  border: none; cursor: pointer; white-space: nowrap;
}
.btn-gold:hover, .btn-primary:hover {
  background: var(--gold-light); color: var(--dark);
}
.btn-outline, .btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  border: 1px solid var(--gold); color: var(--gold);
  padding: 12px 28px; border-radius: 2px;
  font-size: 0.8rem; letter-spacing: 2px;
  text-transform: uppercase; font-weight: 500;
  text-decoration: none; transition: all 0.2s;
  cursor: pointer; white-space: nowrap;
}
.btn-outline:hover, .btn-secondary:hover {
  background: rgba(201,168,76,0.1); color: var(--gold);
}
.btn-sm { padding: 9px 18px; font-size: 0.72rem; }

/* ── PAGE HERO (inner pages) ─────────────────────────────────── */
.page-hero {
  padding: 130px 80px 80px;
  display: flex; flex-direction: column;
  justify-content: flex-end;
  min-height: 56vh;
  background: linear-gradient(to bottom, rgba(13,13,13,0.35) 0%, rgba(13,13,13,0.82) 65%, var(--dark) 100%);
}
.breadcrumb {
  font-size: 0.72rem; color: rgba(245,237,216,0.55);
  margin-bottom: 14px; display: flex; gap: 6px; align-items: center;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb .sep { color: var(--gold-muted); }
.page-eyebrow {
  font-size: 0.68rem; letter-spacing: 5px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 10px;
}
.page-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem,5vw,3.8rem);
  color: var(--cream); line-height: 1.08;
  margin-bottom: 14px;
}
.page-title em { font-style: italic; color: var(--gold); }
.page-sub {
  color: var(--text); font-size: 1rem;
  max-width: 580px; line-height: 1.75;
  font-weight: 300; margin-bottom: 28px;
}
.page-hero .hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.divider {
  width: 50px; height: 2px; background: var(--gold);
  margin: 14px 0 22px;
}
.divider-center { margin: 14px auto 22px; }

/* ── SECTION TYPOGRAPHY ──────────────────────────────────────── */
.section-label {
  font-size: 0.68rem; letter-spacing: 5px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 8px; display: block;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem,3.5vw,2.6rem);
  color: var(--cream); line-height: 1.2;
  margin-bottom: 8px;
}
.section-title em { font-style: italic; color: var(--gold); }
.body-text {
  color: var(--text-dim); font-size: 0.95rem;
  line-height: 1.8; max-width: 700px;
}

/* ── PRODUCT CARD (universal) ────────────────────────────────── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px,1fr));
  gap: 20px;
}
.product-card {
  background: var(--dark3);
  border: 1px solid rgba(201,168,76,0.14);
  border-radius: 6px; overflow: hidden;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
  display: flex; flex-direction: column;
}
.product-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: 0 10px 40px rgba(201,168,76,0.12);
}
.card-img-box {
  width: 100%; height: 260px;
  background: #181510;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; position: relative;
  border-bottom: 1px solid rgba(201,168,76,0.08);
  flex-shrink: 0;
}
.card-img-box img {
  max-height: 100%; max-width: 100%;
  object-fit: contain; padding: 20px;
  transition: transform 0.35s;
  width: auto; height: auto;
}
.product-card:hover .card-img-box img { transform: scale(1.04); }
.card-badge {
  position: absolute; top: 10px; right: 10px;
  font-size: 0.58rem; letter-spacing: 2px;
  text-transform: uppercase; padding: 4px 9px;
  border-radius: 2px; font-weight: 600;
}
.badge-allocated { background: #6B1A2A; color: #F0A0AA; }
.badge-rare      { background: var(--gold); color: var(--dark); }
.badge-new       { background: #1A4A2A; color: #80D0A0; border: 1px solid rgba(26,74,42,0.8); }
.badge-premium   { background: var(--gold); color: var(--dark); }
.badge-limited   { background: #2A2A6B; color: #A0A0F0; }
.badge-staff     { background: var(--amber); color: var(--dark); }
.card-body {
  padding: 18px 20px 22px;
  flex: 1; display: flex; flex-direction: column;
}
.card-cat {
  font-size: 0.6rem; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 5px;
}
.card-name {
  font-family: var(--font-serif);
  font-size: 1.05rem; color: var(--cream);
  margin-bottom: 5px; line-height: 1.3;
}
.card-producer {
  font-size: 0.78rem; color: var(--text-dim);
  margin-bottom: 10px;
}
.card-desc {
  font-size: 0.8rem; color: var(--text-dim);
  line-height: 1.6; flex: 1;
}
.card-meta {
  display: flex; gap: 6px; margin-top: 14px;
  flex-wrap: wrap;
}
.card-tag {
  background: rgba(201,168,76,0.07);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 100px; padding: 3px 9px;
  font-size: 0.62rem; letter-spacing: 1px;
  text-transform: uppercase; color: var(--text-dim);
}

/* ── TRUST / NAP BAR ─────────────────────────────────────────── */
.trust-bar {
  background: var(--dark3);
  border-bottom: 1px solid rgba(201,168,76,0.12);
  padding: 13px 80px;
  display: flex; align-items: center;
  justify-content: space-between;
  flex-wrap: wrap; gap: 10px;
}
.trust-item {
  display: flex; align-items: center;
  gap: 7px; font-size: 0.8rem; color: var(--text-dim);
}
.trust-item a { color: var(--text-dim); }
.trust-item a:hover { color: var(--gold); }

/* ── NAP + MAP BLOCK ─────────────────────────────────────────── */
.nap-section { padding: 56px 80px; border-top: 1px solid rgba(201,168,76,0.12); }
.nap-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: start;
}
.map-frame {
  border-radius: 4px; overflow: hidden;
  border: 1px solid rgba(201,168,76,0.2);
}
.map-frame iframe { width: 100%; height: 360px; display: block; border: none; }
.hours-table { width: 100%; border-collapse: collapse; margin: 14px 0; }
.hours-table tr { border-bottom: 1px solid rgba(201,168,76,0.08); }
.hours-table td { padding: 9px 0; font-size: 0.88rem; }
.hours-table td:first-child { color: var(--text-dim); }
.hours-table td:last-child { color: var(--cream); font-weight: 500; text-align: right; }

/* ── REVIEWS STRIP ───────────────────────────────────────────── */
.reviews-strip {
  padding: 44px 80px;
  background: var(--dark3);
  border-top: 1px solid rgba(201,168,76,0.1);
}
.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px,1fr));
  gap: 14px; margin-top: 18px;
}
.review-card {
  background: var(--dark2);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: 4px; padding: 20px;
}
.review-stars { color: #FBBC04; font-size: 0.88rem; margin-bottom: 9px; }
.review-text {
  font-size: 0.83rem; color: var(--text-dim);
  line-height: 1.65; font-style: italic;
}

/* ── SERVING TILES ───────────────────────────────────────────── */
.serving-section { padding: 40px 80px; border-top: 1px solid rgba(201,168,76,0.1); }
.serving-tiles { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.serving-tile {
  background: var(--dark2);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 4px; padding: 10px 18px;
  font-size: 0.8rem; color: var(--text-dim);
  text-decoration: none; transition: all 0.2s;
  display: flex; align-items: center; gap: 6px;
}
.serving-tile:hover { border-color: var(--gold); color: var(--gold); }

/* ── FAQ ACCORDION ───────────────────────────────────────────── */
.faq-section {
  padding: 60px 80px;
  background: var(--dark2);
  border-top: 1px solid rgba(201,168,76,0.12);
}
.faq-list { max-width: 800px; }
.faq-item { border-bottom: 1px solid rgba(201,168,76,0.12); }
.faq-item:last-child { border-bottom: none; }
.faq-q {
  font-family: var(--font-sans);
  font-size: 0.95rem; font-weight: 600;
  color: var(--cream); padding: 18px 0;
  cursor: pointer; display: flex;
  justify-content: space-between; align-items: center;
  margin: 0; background: none; border: none;
  width: 100%; text-align: left;
}
.faq-q::after {
  content: '＋'; color: var(--gold); font-size: 1.1rem;
  flex-shrink: 0; margin-left: 16px; transition: transform 0.2s;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 0 18px; }
.faq-item.open .faq-a { display: block; }
.faq-a p { font-size: 0.88rem; color: var(--text-dim); line-height: 1.75; margin: 0; }

/* ── CALLOUT BOX ─────────────────────────────────────────────── */
.callout-box {
  background: linear-gradient(135deg,#1A1208,#241A0A);
  border: 1px solid rgba(201,168,76,0.25);
  border-left: 5px solid var(--gold);
  border-radius: 4px; padding: 36px 44px;
}
.callout-box h3 {
  font-family: var(--font-serif); font-size: 1.6rem;
  color: var(--cream); margin-bottom: 10px;
}
.callout-box h3 em { font-style: italic; color: var(--gold); }
.callout-box p {
  color: var(--text-dim); font-size: 0.9rem;
  line-height: 1.75; max-width: 620px; margin-bottom: 16px;
}
.callout-box ul {
  list-style: none; display: grid;
  grid-template-columns: 1fr 1fr; gap: 6px;
  max-width: 560px; margin-bottom: 24px;
}
.callout-box ul li {
  font-size: 0.85rem; color: var(--cream);
  display: flex; align-items: center; gap: 7px;
}
.callout-box ul li::before { content:'▸'; color:var(--gold); flex-shrink:0; }

/* ── FOOTER ──────────────────────────────────────────────────── */
.site-footer {
  background: var(--dark2);
  border-top: 1px solid rgba(201,168,76,0.15);
  padding: 32px 80px;
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 14px;
}
.site-footer p { font-size: 0.8rem; color: var(--text-dim); }
.site-footer a { color: var(--text-dim); }
.site-footer a:hover { color: var(--gold); }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a {
  color: var(--text-dim); text-decoration: none;
  font-size: 0.8rem; transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }

/* ── UTILITY ─────────────────────────────────────────────────── */
.pad-section   { padding: 64px 80px; }
.pad-section-sm{ padding: 44px 80px; }
.bg-dark2 { background: var(--dark2); }
.bg-dark3 { background: var(--dark3); }
.text-gold  { color: var(--gold); }
.text-cream { color: var(--cream); }
.text-dim   { color: var(--text-dim); }
.text-center { text-align: center; }
.d-flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.align-center { align-items: center; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.mt-8  { margin-top: 8px;  }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-0  { margin-bottom: 0 !important; }

/* ── RESPONSIVE OVERRIDES ────────────────────────────────────── */
@media (max-width: 900px) {
  .page-hero       { padding: 110px 20px 60px; min-height: auto; }
  .trust-bar       { padding: 12px 20px; }
  .nap-section     { padding: 44px 20px; }
  .nap-grid        { grid-template-columns: 1fr; gap: 28px; }
  .reviews-strip   { padding: 36px 20px; }
  .serving-section { padding: 32px 20px; }
  .faq-section     { padding: 44px 20px; }
  .callout-box     { padding: 24px 20px; }
  .callout-box ul  { grid-template-columns: 1fr; }
  .pad-section     { padding: 48px 20px; }
  .pad-section-sm  { padding: 32px 20px; }
  .site-footer     { padding: 24px 20px; flex-direction: column; align-items: flex-start; }
  .product-grid    { grid-template-columns: repeat(auto-fill, minmax(200px,1fr)); }
  .card-img-box    { height: 220px; }
}
@media (max-width: 540px) {
  .product-grid  { grid-template-columns: repeat(2,1fr); gap: 12px; }
  .card-img-box  { height: 180px; }
  .card-body     { padding: 12px 12px 16px; }
  .card-name     { font-size: 0.9rem; }
}
