/* ============================================================
   ISOLA WINE — Main Stylesheet
   Theme: Cream (#f6f4ef) / Dark / Burgundy / Gold
   ============================================================ */

/* ── Reset & Base ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Backgrounds */
  --bg:          #f6f4ef;
  --bg-2:        #eeeae2;
  --bg-3:        #e6e1d8;
  --bg-card:     #ffffff;
  --bg-dark:     #1C1008;
  --bg-dark-2:   #2A1A0E;

  /* Brand */
  --burgundy:      #6B0F1A;
  --burgundy-dark: #4A0A12;
  --burgundy-light:#8B2A3A;
  --gold:          #B8892A;
  --gold-light:    #D4A843;

  /* Text */
  --text-primary:  #1C1008;
  --text-secondary:#3D2B1C;
  --text-muted:    #7A6555;
  --text-light:    #A89282;
  --white:         #ffffff;

  /* Borders */
  --border:        rgba(28,16,8,.1);
  --border-dark:   rgba(28,16,8,.2);
  --border-gold:   rgba(184,137,42,.3);

  /* Fonts */
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Montserrat', system-ui, sans-serif;

  /* Misc */
  --radius:    6px;
  --radius-lg: 12px;
  --shadow:    0 8px 32px rgba(28,16,8,.12);
  --shadow-sm: 0 2px 12px rgba(28,16,8,.08);
  --transition:.25s ease;
  --container: 1280px;
  --header-h:  72px;
}

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

body {
  font-family: var(--font-sans);
  background-color: var(--bg);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a   { color: var(--burgundy); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--burgundy-light); }
ul  { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Typography ─────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.15;
  color: var(--text-primary);
}
h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
h4 {
  font-size: .72rem;
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--burgundy);
}

p { color: var(--text-secondary); }

.text-gold    { color: var(--gold); }
.text-muted   { color: var(--text-muted); }
.text-center  { text-align: center; }
.text-primary { color: var(--text-primary); }

/* ── Layout ─────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 2rem;
}

section { padding-block: 5rem; }

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header .eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: .85rem;
}
.section-header h2 { margin-bottom: 1rem; }
.section-header p  { color: var(--text-muted); max-width: 52ch; margin-inline: auto; font-size: .95rem; }

.divider {
  width: 48px; height: 2px;
  background: var(--gold);
  margin: 1rem auto;
  border-radius: 2px;
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .8rem 2rem;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
}

.btn-primary {
  background: var(--text-primary);
  color: var(--white);
  border: 2px solid var(--text-primary);
}
.btn-primary:hover {
  background: var(--burgundy);
  border-color: var(--burgundy);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(107,15,26,.25);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--text-primary);
}
.btn-outline:hover {
  background: var(--text-primary);
  color: var(--white);
}

.btn-outline-wine {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.6);
}
.btn-outline-wine:hover {
  background: var(--white);
  color: var(--text-primary);
  border-color: var(--white);
}

.btn-ghost {
  background: transparent;
  color: var(--burgundy);
  border: 2px solid var(--border-gold);
}
.btn-ghost:hover {
  background: var(--burgundy);
  color: var(--white);
  border-color: var(--burgundy);
}

.btn-sm  { padding: .5rem 1.4rem; font-size: .7rem; }
.btn-lg  { padding: .95rem 2.8rem; font-size: .8rem; }
.btn-xl  { padding: 1.1rem 3rem; font-size: .82rem; }

.btn-wa  { background: #25D366; color: #fff; border: 2px solid #25D366; border-radius: 50px; }
.btn-wa:hover { background: #1ebe5d; border-color: #1ebe5d; color: #fff; }
.btn-email { background: transparent; color: var(--burgundy); border: 2px solid var(--border-gold); border-radius: 50px; }
.btn-email:hover { background: var(--burgundy); color: var(--white); border-color: var(--burgundy); }

.btn-dark { background: var(--bg-dark); color: var(--white); border: 2px solid var(--bg-dark); border-radius: 50px; }
.btn-dark:hover { background: var(--burgundy); border-color: var(--burgundy); color: var(--white); }

/* ── Header / Navbar ─────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  background: rgba(246,244,239,.97);
  box-shadow: 0 1px 20px rgba(28,16,8,.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.site-logo { text-decoration: none; }
.logo-text {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: .06em;
  line-height: 1;
}
.logo-text em { font-style: italic; color: var(--burgundy); }
.logo-img { display: block; max-height: 44px; max-width: 180px; width: auto; object-fit: contain; transition: filter var(--transition); }

.nav-list {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-link {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  position: relative;
  padding-bottom: 3px;
  transition: color var(--transition);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--burgundy);
  transition: width var(--transition);
  border-radius: 2px;
}
.nav-link:hover,
.nav-link.active { color: var(--burgundy); }
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }

/* Hero-variant: cream nav over dark/video hero */
.site-header.nav-light .logo-text        { color: #f6f4ef; }
.site-header.nav-light .logo-text em     { color: #f6f4ef; }
.site-header.nav-light .logo-img         { filter: brightness(0) invert(1); }  /* make logo white */
.site-header.nav-light .nav-link         { color: rgba(246,244,239,.85); }
.site-header.nav-light .nav-link:hover,
.site-header.nav-light .nav-link.active  { color: #f6f4ef; }
.site-header.nav-light .nav-link::after  { background: #f6f4ef; }
.site-header.nav-light .hamburger span   { background: #f6f4ef; }

/* Scrolled: revert to dark on cream background */
.site-header.scrolled.nav-light                       { backdrop-filter: blur(4px); }
.site-header.scrolled.nav-light .logo-text            { color: var(--text-primary); }
.site-header.scrolled.nav-light .logo-text em         { color: var(--burgundy); }
.site-header.scrolled.nav-light .logo-img             { filter: brightness(0); } /* white logo → dark, matches text color */
.site-header.scrolled.nav-light .nav-link             { color: var(--text-secondary); }
.site-header.scrolled.nav-light .nav-link:hover,
.site-header.scrolled.nav-light .nav-link.active      { color: var(--burgundy); }
.site-header.scrolled.nav-light .nav-link::after      { background: var(--burgundy); }
.site-header.scrolled.nav-light .hamburger span       { background: var(--text-primary); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
}
.hamburger span {
  display: block; height: 2px;
  background: var(--text-primary);
  transition: all var(--transition);
  border-radius: 2px;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  position: fixed;
  top: var(--header-h); left: 0; right: 0;
  background: rgba(246,244,239,.99);
  border-top: 1px solid var(--border);
  padding: 1.5rem 2rem;
  box-shadow: 0 8px 32px rgba(28,16,8,.1);
}
.mobile-nav-list { display: flex; flex-direction: column; gap: 1rem; }
.mobile-nav-list a {
  font-size: .82rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--text-secondary);
  transition: color var(--transition);
}
.mobile-nav-list a:hover,
.mobile-nav-list a.active { color: var(--burgundy); }

/* ── Age Gate ─────────────────────────────────────────────── */
.age-gate-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(246,244,239,.97);
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem;
}
.age-gate-box {
  max-width: 460px; width: 100%;
  text-align: center;
  padding: 3rem 2.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.age-gate-logo {
  font-family: var(--font-serif);
  font-size: 2rem; font-weight: 700;
  color: var(--text-primary); letter-spacing: .08em;
  margin-bottom: .5rem;
}
.age-gate-logo span { font-style: italic; color: var(--burgundy); }
.age-gate-tagline {
  color: var(--text-muted); font-size: .72rem;
  letter-spacing: .18em; text-transform: uppercase; margin-bottom: 1.5rem;
}
.age-gate-box h2 { font-size: 1.4rem; margin-bottom: 1rem; color: var(--text-primary); }
.age-gate-note { font-size: .82rem; color: var(--text-muted); margin-bottom: 2rem; }
.age-gate-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── HERO — Split Layout ─────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: var(--header-h);
  background: var(--bg);
  overflow: hidden;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 3rem 4rem 4rem;
  max-width: 680px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 1.75rem;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px; height: 2px;
  background: var(--burgundy);
  border-radius: 2px;
}

.hero h1 {
  font-size: clamp(2.8rem, 4.5vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -.01em;
  color: var(--text-primary);
  margin-bottom: 1.75rem;
  text-transform: uppercase;
}
.hero h1 em { font-style: italic; color: var(--burgundy); text-transform: none; }

.hero-desc {
  font-size: .95rem;
  color: var(--text-muted);
  line-height: 1.85;
  max-width: 46ch;
  margin-bottom: 2.5rem;
}
.hero-desc p { margin-bottom: .75rem; color: var(--text-muted); }

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Right side — image strip collage */
.hero-right {
  position: relative;
  display: flex;
  align-items: stretch;
  gap: 8px;
  padding: 1.5rem 2rem 1.5rem 1rem;
  overflow: hidden;
}

.hero-strip {
  flex: 1;
  border-radius: 200px;
  overflow: hidden;
  position: relative;
  background: var(--bg-2);
  min-height: 0;
}
.hero-strip:nth-child(1) { flex: 1.1; margin-top: 2rem; }
.hero-strip:nth-child(2) { flex: .9; margin-top: 5rem; }
.hero-strip:nth-child(3) { flex: 1; margin-top: 1rem; }
.hero-strip:nth-child(4) { flex: .85; margin-top: 4rem; }

.hero-strip img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.hero-strip:hover img { transform: scale(1.04); }

/* Placeholder for strips without images */
.hero-strip-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 1rem;
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg-3) 100%);
}
.hero-strip:nth-child(odd) .hero-strip-placeholder {
  background: linear-gradient(180deg, #e8e0d4 0%, #d9cfc1 100%);
}
.hero-strip:nth-child(even) .hero-strip-placeholder {
  background: linear-gradient(180deg, #dfd6c8 0%, #cec3b0 100%);
}
.hero-strip-placeholder span { font-size: 2.5rem; opacity: .4; }
.hero-strip-label {
  font-size: .62rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--text-light); writing-mode: vertical-rl; opacity: .6;
}

/* ── Hero — Video Background Mode ───────────────────────── */
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: #000;
  /* opacity set inline from DB value */
}

/* When hero has video: full-width single-column layout */
.hero--video {
  grid-template-columns: 1fr;
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  background: #1a0a10;
}

/* Full-width gradient scrim — no box, just smooth left-to-right fade */
.hero--video::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 5;
  background: linear-gradient(to right, rgba(0,0,0,.65) 0%, rgba(0,0,0,.35) 55%, rgba(0,0,0,.1) 100%);
  pointer-events: none;
}

.hero--video .hero-right {
  display: none;
}

.hero--video .hero-left {
  position: relative;
  z-index: 20;
  max-width: 800px;
  padding: 6rem 4rem;
}

/* Text goes white over dark video */
.hero--video .hero-eyebrow {
  color: rgba(255,255,255,.9) !important;
  text-shadow: 0 1px 8px rgba(0,0,0,.8);
}
.hero--video .hero-eyebrow::before {
  background: rgba(255,255,255,.7) !important;
}
.hero--video h1 {
  color: #ffffff !important;
  text-shadow: 0 2px 16px rgba(0,0,0,.8);
}
.hero--video h1 em {
  color: var(--gold-light) !important;
  font-style: italic;
}
.hero--video .hero-desc p {
  color: rgba(255,255,255,.85) !important;
  text-shadow: 0 1px 6px rgba(0,0,0,.6);
}
.hero--video .btn-dark {
  background: var(--white);
  border-color: var(--white);
  color: var(--text-primary);
}
.hero--video .btn-dark:hover {
  background: var(--bg-2);
  border-color: var(--bg-2);
}
.hero--video .btn-outline {
  border-color: rgba(255,255,255,.55);
  color: var(--white);
}
.hero--video .btn-outline:hover {
  background: var(--white);
  color: var(--text-primary);
  border-color: var(--white);
}

@media (max-width: 600px) {
  .hero--video .hero-left {
    padding: 4rem 1.5rem;
  }
}

/* ── Page Hero (inner pages) ─────────────────────────────── */
.page-hero {
  padding-top: calc(var(--header-h) + 4rem);
  padding-bottom: 3rem;
  background: var(--bg);
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.page-hero .eyebrow {
  display: block;
  font-size: .7rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--burgundy); font-weight: 700; margin-bottom: 1rem;
}
.page-hero h1 { margin-bottom: 1rem; }
.page-hero p  { color: var(--text-muted); max-width: 52ch; margin-inline: auto; font-size: .95rem; }

/* ── Product Grid ────────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--border-dark);
}

.product-card-img {
  position: relative;
  aspect-ratio: 3/4;
  background: var(--bg-2);
  overflow: hidden;
}
.product-card-img img {
  width: 100%; height: 100%;
  object-fit: contain;
  transition: transform .4s ease;
}
.product-card:hover .product-card-img img { transform: scale(1.04); }

.product-card-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--bg-2), var(--bg-3));
  font-size: 4rem; opacity: .35;
}

.product-card-badge {
  position: absolute; top: .75rem; left: .75rem;
  background: var(--burgundy); color: var(--white);
  font-size: .62rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: .25rem .65rem; border-radius: 50px;
}

.product-card-body { padding: 1.25rem; }
.product-card-cat {
  font-size: .65rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--burgundy); margin-bottom: .4rem;
}
.product-card-name {
  font-family: var(--font-serif); font-size: 1.1rem;
  color: var(--text-primary); margin-bottom: .75rem; line-height: 1.3;
}
.product-card-name a { color: var(--text-primary); }
.product-card-name a:hover { color: var(--burgundy); }
.product-card-price {
  font-size: .95rem; font-weight: 700;
  color: var(--burgundy); margin-bottom: 1rem;
}
.product-card-actions { display: flex; gap: .5rem; }

/* ── Cards (Promo / Event) ───────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.promo-card, .event-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.promo-card:hover, .event-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.card-img {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--bg-2), var(--bg-3));
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; opacity: .5; overflow: hidden;
}
.card-img img { width: 100%; height: 100%; object-fit: cover; opacity: 1; }

.card-body { padding: 1.5rem; }
.card-meta {
  display: flex; gap: .75rem; align-items: center;
  font-size: .7rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: .75rem;
}
.card-meta .badge {
  background: var(--bg-2); color: var(--burgundy);
  border: 1px solid var(--border-gold);
  padding: .2rem .6rem; border-radius: 50px;
  font-size: .62rem; font-weight: 700;
}
.card-body h3 { font-size: 1.2rem; margin-bottom: .75rem; line-height: 1.3; color: var(--text-primary); }
.card-body p  { font-size: .875rem; color: var(--text-muted); margin-bottom: 1.25rem; line-height: 1.75; }

/* ── Promo section bg ────────────────────────────────────── */
.promo-highlight { background: var(--bg-2); }

/* ── Store Locator ───────────────────────────────────────── */
.store-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2.5rem; align-items: start;
}
.store-list { display: flex; flex-direction: column; gap: 1rem; }
.store-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  cursor: pointer;
}
.store-card.active, .store-card:hover {
  border-color: var(--burgundy);
  box-shadow: var(--shadow-sm);
}
.store-card h3 { font-size: 1.05rem; margin-bottom: .5rem; }
.store-card p  { font-size: .85rem; color: var(--text-muted); margin-bottom: .25rem; }

#map {
  height: 480px; border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-2);
  position: sticky; top: calc(var(--header-h) + 1rem);
}

/* ── Contact Form ────────────────────────────────────────── */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 3rem; align-items: start;
}

.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block; font-size: .72rem;
  font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: .5rem;
}
.form-control {
  width: 100%;
  background: var(--white);
  border: 1.5px solid var(--border-dark);
  border-radius: var(--radius);
  padding: .8rem 1rem;
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: .9rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.form-control:focus {
  border-color: var(--burgundy);
  box-shadow: 0 0 0 3px rgba(107,15,26,.08);
}
.form-control::placeholder { color: var(--text-light); }
textarea.form-control { resize: vertical; min-height: 140px; }
select.form-control { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%237A6555' d='M1 1l5 5 5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }

.form-error   { font-size: .78rem; color: #c0392b; margin-top: .35rem; }
.form-success { font-size: .88rem; color: #1a7a3f; padding: .75rem 1rem; background: rgba(26,122,63,.08); border-radius: var(--radius); border: 1px solid rgba(26,122,63,.2); }

/* ── Product Detail ──────────────────────────────────────── */
.product-detail-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: start;
}
.product-gallery {
  position: sticky;
  top: calc(var(--header-h) + 1rem);
}
.product-gallery-main {
  aspect-ratio: 3/4;
  background: var(--bg-2); border-radius: var(--radius-lg);
  overflow: hidden; margin-bottom: .75rem;
  display: flex; align-items: center; justify-content: center;
}
.product-gallery-main img { width: 100%; height: 100%; object-fit: contain; }
.gallery-thumbs { display: flex; gap: .5rem; }
.gallery-thumb {
  width: 72px; height: 96px; border-radius: var(--radius);
  overflow: hidden; cursor: pointer;
  border: 2px solid transparent; transition: border-color var(--transition);
  background: var(--bg-2); flex-shrink: 0;
}
.gallery-thumb.active,
.gallery-thumb:hover { border-color: var(--burgundy); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }

.product-info .cat-label {
  font-size: .7rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--burgundy); margin-bottom: .75rem; display: block;
}
.product-info h1 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: 1rem; }
.product-price { font-size: 2rem; font-family: var(--font-serif); font-weight: 700; color: var(--burgundy); margin-bottom: 1.5rem; }
.product-sku   { font-size: .75rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.product-desc  {
  font-size: .9rem; color: var(--text-muted); line-height: 1.85; margin-bottom: 2rem;
  border-top: 1px solid var(--border); padding-top: 1.5rem;
}
.order-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── Filter Bar ──────────────────────────────────────────── */
.filter-bar {
  background: var(--bg-card); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.25rem 1.5rem;
  margin-bottom: 2.5rem;
  display: flex; gap: 1rem; align-items: center; flex-wrap: wrap;
}
.filter-cats { display: flex; gap: .5rem; flex-wrap: wrap; }
.filter-cat-btn {
  padding: .4rem 1.1rem;
  border: 1.5px solid var(--border-dark);
  border-radius: 50px; font-size: .7rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--text-muted); background: transparent;
  transition: all var(--transition); cursor: pointer;
}
.filter-cat-btn:hover,
.filter-cat-btn.active {
  border-color: var(--burgundy); color: var(--burgundy);
  background: rgba(107,15,26,.05);
}

.search-wrap { position: relative; flex: 1; min-width: 200px; }
.search-wrap input {
  width: 100%; background: var(--bg);
  border: 1.5px solid var(--border-dark);
  border-radius: var(--radius); padding: .6rem 1rem .6rem 2.5rem;
  color: var(--text-primary); font-size: .875rem; outline: none;
  transition: border-color var(--transition);
}
.search-wrap input:focus { border-color: var(--burgundy); }
.search-wrap::before { content: '🔍'; position: absolute; left: .75rem; top: 50%; transform: translateY(-50%); font-size: .85rem; pointer-events: none; }

/* ── Pagination ──────────────────────────────────────────── */
.pagination { display: flex; gap: .5rem; justify-content: center; margin-top: 3rem; }
.page-link {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border: 1.5px solid var(--border-dark); border-radius: 50%;
  font-size: .82rem; color: var(--text-muted);
  transition: all var(--transition);
}
.page-link:hover,
.page-link.active { border-color: var(--burgundy); color: var(--burgundy); background: rgba(107,15,26,.05); }

/* ── Newsletter ──────────────────────────────────────────── */
.newsletter-section {
  background: var(--bg-dark);
  padding-block: 4.5rem;
}
.newsletter-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
}
.newsletter-text h3 { font-size: 1.8rem; margin-bottom: .5rem; color: var(--white); }
.newsletter-text p  { color: rgba(255,255,255,.65); font-size: .9rem; }

.newsletter-form { display: flex; gap: .75rem; flex-wrap: wrap; flex: 1; max-width: 480px; }
.newsletter-form input {
  flex: 1; min-width: 200px;
  background: rgba(255,255,255,.1);
  border: 1.5px solid rgba(255,255,255,.2);
  border-radius: 50px;
  padding: .8rem 1.25rem; color: var(--white);
  font-family: var(--font-sans); font-size: .875rem; outline: none;
  transition: border-color var(--transition);
}
.newsletter-form input:focus { border-color: rgba(255,255,255,.5); }
.newsletter-form input::placeholder { color: rgba(255,255,255,.45); }
.newsletter-form .btn-primary {
  background: var(--gold-light); border-color: var(--gold-light); color: var(--bg-dark);
}
.newsletter-form .btn-primary:hover { background: var(--gold); border-color: var(--gold); }
.newsletter-msg { width: 100%; font-size: .85rem; margin-top: .25rem; }
.newsletter-msg.success { color: #6fcf97; }
.newsletter-msg.error   { color: #eb5757; }

/* ── Footer ──────────────────────────────────────────────── */
.site-footer { background: var(--bg-dark-2); }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem; padding-top: 4rem; padding-bottom: 3rem;
}
.footer-logo { font-family: var(--font-serif); font-size: 1.6rem; font-weight: 700; color: var(--white); margin-bottom: 1rem; }
.footer-logo em { font-style: italic; color: var(--gold-light); }
.footer-brand p { font-size: .875rem; color: rgba(255,255,255,.55); line-height: 1.8; margin-bottom: .5rem; }
.footer-legal { font-size: .72rem !important; color: rgba(255,255,255,.3) !important; border-top: 1px solid rgba(255,255,255,.08); padding-top: .75rem; margin-top: .75rem; }

.footer-nav h4, .footer-cats h4, .footer-contact h4 {
  font-size: .68rem; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.45); font-family: var(--font-sans); font-weight: 700; margin-bottom: 1rem;
}
.footer-nav ul li, .footer-cats ul li { margin-bottom: .6rem; }
.footer-nav a, .footer-cats a { font-size: .875rem; color: rgba(255,255,255,.55); transition: color var(--transition); }
.footer-nav a:hover, .footer-cats a:hover { color: var(--white); }

.footer-contact p { font-size: .875rem; color: rgba(255,255,255,.55); margin-bottom: .5rem; }
.footer-contact a { color: rgba(255,255,255,.55); transition: color var(--transition); }
.footer-contact a:hover { color: var(--gold-light); }
.footer-social { display: flex; gap: .75rem; margin-top: 1rem; }
.footer-social a {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,.15); border-radius: 50%;
  font-size: .72rem; font-weight: 700;
  color: rgba(255,255,255,.5); transition: all var(--transition);
}
.footer-social a:hover { border-color: var(--gold-light); color: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding-block: 1.5rem;
}
.footer-bottom .container {
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: .5rem;
}
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.35); }
.footer-drink-resp { color: rgba(255,255,255,.2) !important; }

/* ── Flash / Alert ───────────────────────────────────────── */
.alert {
  padding: .875rem 1.25rem; border-radius: var(--radius);
  font-size: .875rem; margin-bottom: 1.5rem;
}
.alert-success { background: rgba(26,122,63,.08); border: 1px solid rgba(26,122,63,.2); color: #1a7a3f; }
.alert-error   { background: rgba(192,57,43,.08); border: 1px solid rgba(192,57,43,.2); color: #c0392b; }
.alert-info    { background: rgba(107,15,26,.06); border: 1px solid rgba(107,15,26,.15); color: var(--burgundy); }

/* ── About ───────────────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-img-wrap {
  aspect-ratio: 4/5; background: var(--bg-2);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem; overflow: hidden;
}
.about-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.about-content .eyebrow {
  font-size: .7rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--burgundy); font-weight: 700; margin-bottom: 1rem; display: block;
}
.about-content h2 { margin-bottom: 1.5rem; }
.about-content p  { color: var(--text-muted); font-size: .925rem; line-height: 1.9; margin-bottom: 1rem; }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.value-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem 1.5rem; text-align: center;
  transition: box-shadow var(--transition);
}
.value-card:hover { box-shadow: var(--shadow-sm); }
.value-icon { font-size: 2.2rem; margin-bottom: 1rem; }
.value-card h3 { font-size: 1.15rem; margin-bottom: .5rem; }
.value-card p  { font-size: .85rem; color: var(--text-muted); }

/* ── Scroll Reveal ───────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.revealed { opacity: 1; transform: none; }

/* ── Utilities ───────────────────────────────────────────── */
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.d-flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: 1rem; }

/* ── Perk Bar ────────────────────────────────────────────── */
.perk-bar { background: var(--burgundy); padding: .85rem 0; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.perk-bar::-webkit-scrollbar { display: none; }
.perk-bar-list {
  display: flex;
  gap: 3rem;
  justify-content: center;
  flex-wrap: nowrap;
  padding: 0 2rem;
  white-space: nowrap;
}
.perk-bar-list span {
  font-size: .72rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(255,255,255,.9);
  flex-shrink: 0;
}

/* ── Store CTA Section ───────────────────────────────────── */
.store-cta-section { background: var(--bg-dark); padding-block: 5rem; }
.store-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.store-cta-eyebrow {
  display: block; font-size: .7rem; font-weight: 700; letter-spacing: .22em;
  text-transform: uppercase; color: var(--gold-light); margin-bottom: 1rem;
}
.store-cta-title {
  color: var(--white); font-size: clamp(1.8rem,3.5vw,3rem); margin-bottom: 1.5rem;
}
.store-cta-desc {
  color: rgba(255,255,255,.6); font-size: .95rem; line-height: 1.8; margin-bottom: 2rem;
}
.store-cards-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.store-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg); padding: 1.5rem;
}
.store-card--soon { opacity: .45; }
.store-card-icon  { font-size: 1.8rem; margin-bottom: .75rem; }
.store-card-city  { font-size: .68rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--gold-light); margin-bottom: .25rem; }
.store-card-name  { font-size: .85rem; color: rgba(255,255,255,.65); }

/* ── Home Nav Cards ──────────────────────────────────────── */
.home-nav-section { background: var(--bg); }
.home-nav-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.home-nav-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; display: block; text-decoration: none; }
.home-nav-card-img { aspect-ratio: 3/4; background: var(--bg-2); overflow: hidden; position: relative; }
.home-nav-card-img img { width:100%; height:100%; object-fit:cover; transition: transform .5s ease; display:block; }
.home-nav-card:hover .home-nav-card-img img { transform: scale(1.05); }
.home-nav-card-placeholder { width:100%; height:100%; display:flex; align-items:center; justify-content:center; font-size:4rem; background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg-3) 100%); }
.home-nav-card-body { position:absolute; bottom:0; left:0; right:0; padding:2rem 1.5rem 1.5rem; background: linear-gradient(to top, rgba(0,0,0,.8) 0%, rgba(0,0,0,.2) 60%, transparent 100%); }
.home-nav-card-label { font-family: var(--font-serif); font-size:clamp(1.4rem,2.5vw,2rem); font-weight:600; color:var(--white); display:block; margin-bottom:.4rem; line-height:1.1; }
.home-nav-card-sub { font-size:.68rem; font-weight:700; letter-spacing:.15em; text-transform:uppercase; color:rgba(255,255,255,.75); display:inline-flex; align-items:center; gap:.5rem; }
.home-nav-card-sub::after { content:'→'; transition: transform .25s ease; }
.home-nav-card:hover .home-nav-card-sub::after { transform: translateX(5px); }

/* ── Gallery ─────────────────────────────────────────────── */
.gallery-section { background: var(--bg); }
.gallery-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:8px; }
.gallery-item { aspect-ratio:1/1; overflow:hidden; border-radius:var(--radius); background:var(--bg-2); cursor:pointer; }
.gallery-item img { width:100%; height:100%; object-fit:cover; transition:transform .4s ease; display:block; }
.gallery-item:hover img { transform:scale(1.06); }
.gallery-placeholder { width:100%; height:100%; display:flex; align-items:center; justify-content:center; font-size:2.5rem; opacity:.25; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; }
  .hero-left { max-width: 100%; padding: 4rem 2rem 3rem; }
  .hero-right { height: 50vw; min-height: 320px; padding: 0 2rem 2rem; }
  .hero-strip { min-height: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .main-nav    { display: none; }
  .hamburger   { display: flex; }
  .store-grid  { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-grid  { grid-template-columns: 1fr; }
  .product-detail-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .store-cta-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .home-nav-cards { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  :root { --header-h: 60px; }
  section { padding-block: 2.5rem; }
  .container { padding-inline: 1.25rem; }

  /* Hero */
  .hero-left  { padding: 3rem 1.25rem 2rem; }
  .hero h1    { font-size: clamp(2rem, 9vw, 2.8rem); }
  .hero-right { display: none; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; text-align: center; justify-content: center; }

  /* Hero video overlay: full-width scrim on mobile */
  .hero--video::after {
    background: linear-gradient(to bottom, rgba(0,0,0,.5) 0%, rgba(0,0,0,.4) 100%);
  }
  .hero--video .hero-left { padding: 5rem 1.5rem 3rem; }

  /* Perk bar */
  .perk-bar-list { justify-content: flex-start; gap: 2rem; }

  /* Store CTA */
  .store-cta-section { padding-block: 3rem; }
  .store-cta-grid { grid-template-columns: 1fr; gap: 2rem; }
  .store-cards-grid { grid-template-columns: 1fr 1fr; gap: .75rem; }
  .store-card { padding: 1rem; }
  .store-card-icon { font-size: 1.4rem; margin-bottom: .5rem; }

  /* Nav cards & gallery */
  .home-nav-cards { grid-template-columns: 1fr; }
  .home-nav-card-img { aspect-ratio: 4/3; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }

  /* Cards & grids */
  .footer-grid { grid-template-columns: 1fr; }
  .newsletter-inner { flex-direction: column; text-align: center; }
  .newsletter-form { justify-content: center; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .product-card-actions { flex-direction: column; }
  .product-card-actions .btn { width: 100%; justify-content: center; }
  .cards-grid    { grid-template-columns: 1fr; }
  .values-grid   { grid-template-columns: 1fr; }
  .filter-bar    { flex-direction: column; align-items: stretch; }
  .order-actions { flex-direction: column; }
  .footer-bottom .container { flex-direction: column; text-align: center; }

  /* Section headers */
  .section-header { margin-bottom: 2rem; }
  .section-header h2 { font-size: clamp(1.6rem, 7vw, 2.2rem); }
}
