/* Pure Zero Wine — Bold modern, wave gradients per varietal */
:root {
  /* Brand tokens derived from actual Pure Zero label */
  --burgundy: #5a1528;
  --burgundy-deep: #3d0d1c;
  --plum: #472753;
  --red-flare: #c6223f;
  --ink-blue: #1a1640;
  --lime: #d6e83a;
  --lime-deep: #6b8a0e;
  --moss: #9fb834;
  --emerald: #0d4a2b;
  --emerald-bright: #1f8a3e;
  --forest: #082818;

  /* Default theme (dark hero) */
  --bg: #0f0a18;
  --bg-2: #1a1028;
  --paper: #f6f1e8;
  --paper-2: #ebe4d2;
  --ink: #0f0a18;
  --ink-soft: #2a1f3e;
  --muted: #7b6f8a;
  --muted-dark: rgba(246, 241, 232, 0.55);
  --line: #e4dcc8;
  --line-dark: rgba(246, 241, 232, 0.18);
  --accent: var(--red-flare);

  --display: "Familjen Grotesk", "Inter", -apple-system, sans-serif;
  --sans: "Inter", -apple-system, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;
  --serif: "Instrument Serif", "Cormorant Garamond", Georgia, serif;
  --gutter: clamp(20px, 4vw, 64px);
  --density: 1;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }

/* Palettes via tweak */
body[data-theme="cream"] { --bg: #f6f1e8; --bg-2: #ebe4d2; --ink: #0f0a18; }
body[data-theme="ink"] { --bg: #0f0a18; --bg-2: #1a1028; --ink: #f6f1e8; --ink-soft: #c9bfb0; --line: rgba(246,241,232,0.14); --paper: #0f0a18; --paper-2: #1a1028; }

body[data-density="roomy"] { --density: 1.2; }
body[data-density="snug"] { --density: 0.85; }

/* ——— WAVE GRADIENT BACKGROUNDS (brand-core) ——— */
.wave {
  position: absolute; inset: 0;
  overflow: hidden;
  z-index: 0;
}
.wave svg {
  width: 100%; height: 100%;
  display: block;
}

/* ——— TYPE ——— */
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.eyebrow.on-dark { color: rgba(246,241,232,0.6); }
.display {
  font-family: var(--display);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.display.tight { letter-spacing: -0.035em; }
h1.display { font-size: clamp(52px, 8.2vw, 128px); font-weight: 500; }
.hero h1.display { font-size: clamp(44px, 6.2vw, 88px); line-height: 1; }
h2.display { font-size: clamp(40px, 5.5vw, 84px); }
h3.display { font-size: clamp(28px, 3vw, 44px); }
.lead {
  font-family: var(--sans);
  font-size: clamp(17px, 1.3vw, 20px);
  line-height: 1.45;
  color: var(--ink-soft);
  font-weight: 400;
}

/* ——— LAYOUT ——— */
.wrap {
  max-width: 1440px;
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  position: relative;
}
.section {
  padding-top: calc(120px * var(--density));
  padding-bottom: calc(120px * var(--density));
  position: relative;
}

/* ——— NAV ——— */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(15, 10, 24, 0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(246,241,232,0.08);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px var(--gutter);
  max-width: 1440px; margin: 0 auto;
  color: var(--paper);
}
.logo-block {
  display: inline-flex; align-items: center; gap: 14px;
  text-decoration: none;
}
.logo-mark {
  width: 44px; height: 44px;
  background: var(--burgundy);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  position: relative;
  gap: 1px;
  border-radius: 2px;
}
.logo-mark span {
  font-family: var(--display);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--paper);
  line-height: 1;
}
.logo-text {
  font-family: var(--display);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--paper);
  line-height: 1.15;
  text-transform: uppercase;
}
.logo-text .row2 { display:block; }

.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a {
  color: rgba(246,241,232,0.75);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color .2s;
  position: relative;
  padding-bottom: 3px;
}
.nav-links a:hover { color: var(--paper); }
.nav-links a[data-active] {
  color: var(--paper);
}
.nav-links a[data-active]::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -3px;
  height: 2px;
  background: var(--red-flare);
}
.nav-right { display:flex; gap: 20px; align-items: center; }
.nav-cta {
  font-family: var(--sans);
  font-size: 13px;
  padding: 11px 20px;
  background: var(--paper);
  color: var(--ink-blue);
  border: 0; border-radius: 999px;
  cursor: pointer;
  font-weight: 500;
  transition: transform .15s, background .2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.nav-cta:hover { background: var(--red-flare); color: var(--paper); transform: translateY(-1px); }
.lang {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: rgba(246,241,232,0.55);
  display: flex; gap: 6px;
}
.lang span { cursor: pointer; padding: 2px 4px; }
.lang .on { color: var(--paper); border-bottom: 1px solid var(--red-flare); }

/* ——— BUTTONS ——— */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  padding: 15px 26px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  cursor: pointer;
  text-decoration: none;
  transition: all .2s;
}
.btn:hover { background: var(--red-flare); border-color: var(--red-flare); transform: translateY(-2px); }
.btn.light { background: var(--paper); color: var(--ink-blue); border-color: var(--paper); }
.btn.light:hover { background: var(--red-flare); color: var(--paper); border-color: var(--red-flare); }
.btn.ghost { background: transparent; color: var(--paper); border-color: rgba(246,241,232,0.3); }
.btn.ghost:hover { border-color: var(--paper); background: rgba(246,241,232,0.08); }
.btn.outline { background: transparent; color: var(--ink); }
.btn.outline:hover { background: var(--ink); color: var(--paper); }
.btn .arrow { transition: transform .2s; }
.btn:hover .arrow { transform: translate(3px, -3px); }

/* ——— HERO ——— */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--ink-blue);
  color: var(--paper);
  padding-top: clamp(60px, 8vw, 120px);
  padding-bottom: clamp(60px, 8vw, 120px);
}
.hero .wrap { width: 100%; z-index: 2; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
}
.hero h1,
.hero h1.display {
  margin: 0 0 24px;
  color: var(--paper);
}
.hero h1 .serif,
.hero h1.display .serif {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--paper);
}
.hero-kicker {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 8px 14px;
  background: rgba(246,241,232,0.08);
  border: 1px solid rgba(246,241,232,0.15);
  border-radius: 999px;
  margin-bottom: 32px;
}
.hero-kicker .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--red-flare);
  box-shadow: 0 0 12px var(--red-flare);
  animation: pulse 2.4s ease-in-out infinite;
}
.hero-kicker .eyebrow { color: var(--paper); }
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-sub {
  font-size: 19px;
  line-height: 1.45;
  color: rgba(246,241,232,0.75);
  max-width: 48ch;
  margin: 0 0 36px;
}
.hero-actions { display:flex; gap: 12px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding-top: 36px;
  border-top: 1px solid rgba(246,241,232,0.22);
}
.hero-stats > div {
  padding-right: 16px;
}
.hero-stats > div + div {
  border-left: 1px solid rgba(246,241,232,0.12);
  padding-left: 20px;
  padding-right: 0;
}
.hero-stats .s-val {
  font-family: var(--display);
  font-size: 40px;
  font-weight: 500;
  line-height: 1;
  color: var(--paper);
  letter-spacing: -0.02em;
}
.hero-stats .s-val em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--red-flare);
}
.hero-stats .s-unit {
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1.45;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(246,241,232,0.82);
  margin-top: 12px;
  font-weight: 500;
}

/* hero right — hero bottle tile */
.hero-tile {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  height: clamp(440px, 58vh, 640px);
}
.hero-tile .bottle-stack {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

/* ——— MARQUEE / LOGOS ——— */
.logos-strip {
  padding: 28px 0;
  background: var(--paper);
  color: var(--ink);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.logos-inner {
  display: flex; gap: 56px; align-items: center;
  animation: scroll 44s linear infinite;
  white-space: nowrap;
}
.logos-strip:hover .logos-inner { animation-play-state: paused; }
.logos-inner .logo-item {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  opacity: 0.6;
  display: inline-flex; align-items: center; gap: 12px;
}
.logos-inner .logo-item::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--red-flare);
}
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ——— SECTION HEADER ——— */
.sh { margin-bottom: 72px; max-width: 860px; }
.sh .eyebrow { margin-bottom: 20px; display: block; }
.sh h2 { margin: 0 0 24px; }
.sh p.lead { max-width: 60ch; }

/* ——— RANGE / BOTTLES ——— */
.range {
  padding-top: calc(120px * var(--density));
  padding-bottom: calc(120px * var(--density));
  background: var(--paper);
  color: var(--ink);
}
.range-head {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 56px;
  align-items: end;
  margin-bottom: 80px;
}
.range-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.bottle-card {
  position: relative;
  aspect-ratio: 3/4.4;
  min-width: 0;
  overflow: hidden;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform .4s cubic-bezier(.2,.8,.2,1);
}
.bottle-card:hover { transform: translateY(-8px); }
.bottle-card .bc-visual {
  position: absolute; inset: 0;
  z-index: 0;
}
.bottle-card .bc-content {
  position: relative;
  z-index: 2;
  padding: 24px 28px 28px;
  color: var(--paper);
  display: flex; flex-direction: column;
  height: 100%;
  justify-content: space-between;
  gap: 14px;
}
.bottle-card .bc-content::before {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 68%;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.55) 45%, rgba(0,0,0,0.85) 100%);
  z-index: -1;
  pointer-events: none;
}
.bottle-card.is-light .bc-content::before {
  background: linear-gradient(to bottom, rgba(10,20,5,0) 0%, rgba(10,20,5,0.75) 45%, rgba(10,20,5,0.95) 100%);
}
.bottle-card.is-light .bc-bottom .notes { color: #ffffff; }
.bottle-card.is-light .bc-specs .sp { color: rgba(255,255,255,0.9); }
.bottle-card.is-light .bc-specs { border-top-color: rgba(255,255,255,0.4); }
.bottle-card.is-light .bc-top { color: rgba(255,255,255,0.95); }
.bottle-card .bc-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}
.bottle-card .bc-middle {
  position: absolute;
  top: 8%;
  left: 0;
  right: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  pointer-events: none;
  z-index: 1;
}
.bottle-card .bc-middle svg {
  height: 58%;
  max-height: 340px;
  width: auto;
}
.bottle-card .bc-bottom { position: relative; }
.bottle-card .bc-bottom h3 {
  font-family: var(--display);
  font-size: 34px;
  font-weight: 500;
  line-height: 0.98;
  margin: 0 0 10px;
  letter-spacing: -0.02em;
  color: var(--paper);
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.bottle-card .bc-bottom h3 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
}
.bottle-card .bc-bottom .notes {
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(255,255,255,0.95);
  margin: 0 0 20px;
  max-width: 34ch;
  font-weight: 400;
}
.bc-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.3);
}
.bc-specs .sp {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  font-weight: 500;
}
.bc-specs .sp b {
  display: block;
  font-family: var(--display);
  font-size: 18px;
  font-weight: 500;
  color: var(--paper);
  text-transform: none;
  letter-spacing: 0;
  margin-top: 4px;
}

/* Per-variant wave palettes via SVG gradient IDs */

/* ——— TASTE BLOCK ——— */
.taste {
  background: var(--ink-blue);
  color: var(--paper);
  padding: clamp(100px, 11vw, 160px) 0;
  position: relative;
  overflow: hidden;
}
.taste .wave { opacity: 0.5; }
.taste .wrap { z-index: 2; }
.taste .sh .eyebrow { color: rgba(246,241,232,0.55); }
.taste h2 { color: var(--paper); }
.taste h2 em { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--red-flare); }
.taste .lead { color: rgba(246,241,232,0.82); }

.taste-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 88px);
  margin-top: 64px;
  align-items: start;
}
.taste-copy p {
  font-size: 17px;
  line-height: 1.55;
  color: rgba(246,241,232,0.78);
  margin: 0 0 22px;
}
.taste-copy p.first {
  font-family: var(--display);
  font-size: clamp(24px, 2vw, 30px);
  line-height: 1.25;
  color: var(--paper);
  letter-spacing: -0.015em;
  margin-bottom: 28px;
}
.taste-copy p em { font-family: var(--serif); font-style: italic; color: var(--paper); }

.compare-table {
  border-top: 1px solid rgba(246,241,232,0.2);
}
.compare-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  padding: 18px 0;
  border-bottom: 1px solid rgba(246,241,232,0.12);
  align-items: center;
}
.compare-row.head {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(246,241,232,0.5);
  padding: 14px 0;
}
.compare-row .label {
  font-size: 16px;
  color: var(--paper);
  font-weight: 500;
}
.compare-row .val {
  font-family: var(--display);
  font-size: 17px;
  color: rgba(246,241,232,0.78);
  font-weight: 500;
  letter-spacing: -0.005em;
}
.compare-row .val.us {
  color: var(--paper);
  font-family: var(--display);
  font-weight: 600;
  font-size: 19px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  letter-spacing: -0.01em;
}
.compare-row .val.us::before {
  content: "";
  width: 8px; height: 8px; border-radius: 50%;
  background: #3dbf5f;
  box-shadow: 0 0 12px rgba(61, 191, 95, 0.5);
  flex-shrink: 0;
}
.compare-row .val.us.neg::before {
  background: var(--red-flare);
  box-shadow: 0 0 12px rgba(198, 34, 63, 0.5);
}
.compare-row .val.us em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--red-flare);
}

/* ——— BENEFITS ——— */
.benefits {
  background: var(--paper);
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
}
.benefit {
  padding: 40px 30px;
  background: var(--paper);
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.benefit .num {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--red-flare);
  text-transform: uppercase;
}
.benefit h4 {
  font-family: var(--display);
  font-size: 30px;
  font-weight: 500;
  line-height: 0.98;
  margin: 0;
  letter-spacing: -0.02em;
  max-width: 10ch;
}
.benefit h4 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--red-flare);
}
.benefit p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 0;
  max-width: 30ch;
}

/* ——— STATS / MARKET ——— */
.stats {
  background: var(--paper-2);
}
.stats .wrap { position: relative; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(15, 10, 24, 0.15);
  border-top: 1px solid rgba(15, 10, 24, 0.15);
  border-bottom: 1px solid rgba(15, 10, 24, 0.15);
}
.stat {
  background: var(--paper-2);
  padding: 48px 32px;
  display: flex; flex-direction: column; gap: 14px;
}
.stat .figure {
  font-family: var(--display);
  font-size: clamp(72px, 8.5vw, 128px);
  line-height: 0.88;
  letter-spacing: -0.03em;
  font-weight: 500;
  color: var(--ink);
}
.stat .figure em { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--red-flare); }
.stat .unit {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}
.stat .desc {
  font-size: 15px;
  line-height: 1.45;
  color: var(--ink-soft);
  max-width: 30ch;
}
.stat .src {
  font-family: var(--mono);
  font-size: 9.5px;
  color: var(--muted);
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(15, 10, 24, 0.1);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ——— TESTIMONIALS ——— */
.quotes {
  background: var(--paper);
}
.quotes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.quote {
  background: var(--paper-2);
  border-radius: 4px;
  padding: 32px;
  display: flex; flex-direction: column; gap: 20px;
  position: relative;
}
.quote .stars {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--red-flare);
  letter-spacing: 0.25em;
}
.quote blockquote {
  margin: 0;
  font-family: var(--display);
  font-size: 22px;
  line-height: 1.25;
  color: var(--ink);
  font-weight: 500;
  letter-spacing: -0.015em;
}
.quote blockquote em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
}
.quote .person {
  display: flex; gap: 14px; align-items: center;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(15, 10, 24, 0.1);
}
.quote .avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--burgundy);
  color: var(--paper);
  font-family: var(--display);
  font-size: 15px;
  font-weight: 500;
  display: flex; align-items: center; justify-content: center;
}
.quote .person .name {
  font-size: 14px; font-weight: 600; color: var(--ink);
}
.quote .person .role {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 3px;
}

/* ——— AWARDS ——— */
.awards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 24px;
}
.award {
  border: 1px solid var(--line);
  padding: 24px;
  background: var(--paper);
  display: flex; flex-direction: column; gap: 10px;
  border-radius: 4px;
}
.award .medal {
  font-family: var(--serif);
  font-style: italic;
  font-size: 40px;
  color: var(--red-flare);
  line-height: 1;
  font-weight: 400;
}
.award .medal-img-wrap {
  height: 90px;
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}
.award .award-medal-img {
  height: 90px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 6px 14px rgba(40,16,24,0.2));
}
.award .name {
  font-family: var(--display);
  font-size: 19px;
  color: var(--ink);
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.award .details {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: auto;
  line-height: 1.5;
}
/* Certification cards use raw <b>/<p>; keep them legible on the cream card
   even inside a dark section (which otherwise forces near-white text). */
.award b {
  font-family: var(--display);
  font-size: 19px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.award p,
.details.dark .award p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 0;
}

/* ——— B2B ACTIONS ——— */
.b2b {
  background: var(--ink-blue);
  color: var(--paper);
  padding: clamp(100px, 11vw, 160px) 0;
  position: relative;
  overflow: hidden;
}
.b2b .wave { opacity: 0.4; }
.b2b .wrap { z-index: 2; }
.b2b .sh .eyebrow { color: rgba(246,241,232,0.55); }
.b2b h2 { color: var(--paper); line-height: 1.02; }
.b2b h2 em { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--red-flare); }
.b2b .sh p.lead { color: rgba(246,241,232,0.8); max-width: 58ch; margin-top: 28px; }

.b2b-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 8px;
}
.b2b-card {
  background: rgba(246,241,232,0.05);
  border: 1px solid rgba(246,241,232,0.12);
  border-radius: 8px;
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 320px;
  cursor: pointer;
  transition: background .25s, border-color .25s, transform .25s;
}
.b2b-card:hover {
  background: rgba(246,241,232,0.09);
  border-color: rgba(246,241,232,0.22);
  transform: translateY(-4px);
}
.b2b-card .step {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: rgba(246,241,232,0.5);
  text-transform: uppercase;
}
.b2b-card h3 {
  font-family: var(--display);
  font-size: 32px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0;
}
.b2b-card h3 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--red-flare);
}
.b2b-card p {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(246,241,232,0.88);
  margin: 0;
}
.b2b-card .link {
  margin-top: auto;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--paper);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(246,241,232,0.3);
  align-self: flex-start;
  transition: border-color .2s, gap .2s;
}
.b2b-card:hover .link { border-color: var(--red-flare); gap: 12px; color: var(--red-flare); }

/* ——— BLOG ——— */
.blog {
  background: var(--paper);
}
.blog-tabs {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-bottom: 40px;
}
.blog-tab {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  padding: 9px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all .2s;
}
.blog-tab:hover { border-color: var(--ink); }
.blog-tab.active {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

.blog-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 24px;
}
.blog-card {
  display: flex; flex-direction: column;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  border-radius: 4px;
  overflow: hidden;
  transition: transform .3s;
}
.blog-card:hover { transform: translateY(-4px); }
.blog-card.feature {
  grid-row: span 2;
}
.blog-thumb {
  aspect-ratio: 16/10;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 20px;
}
.blog-card.feature .blog-thumb { aspect-ratio: 3/4; }
.blog-card.feature .blog-thumb .wave { opacity: 1; }
.blog-card.small .blog-thumb { aspect-ratio: 4/3; }

.blog-cat {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red-flare);
  margin-bottom: 12px;
  font-weight: 500;
}
.blog-title {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 0 0 10px;
  color: var(--ink);
}
.blog-card.feature .blog-title { font-size: 38px; }
.blog-card.small .blog-title { font-size: 19px; }
.blog-excerpt {
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 0 0 16px;
}
.blog-meta {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: auto;
}

/* ——— FAQ ——— */
.faq {
  background: var(--paper-2);
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(24px, 6vw, 96px);
}
.faq-list { border-top: 1px solid rgba(15, 10, 24, 0.15); }
.faq-item {
  border-bottom: 1px solid rgba(15, 10, 24, 0.15);
  padding: 22px 0;
  cursor: pointer;
}
.faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: var(--display);
  font-size: 20px;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  letter-spacing: -0.01em;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item .plus {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--red-flare);
  transition: transform .25s;
  line-height: 1;
  flex-shrink: 0;
}
.faq-item[open] .plus { transform: rotate(45deg); }
.faq-item .answer {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 62ch;
  margin-top: 14px;
}

/* ——— MEGA WORD & FOOTER ——— */
.mega {
  background: var(--ink-blue);
  color: var(--paper);
  padding-top: 80px;
  padding-bottom: 0;
  position: relative;
  overflow: hidden;
}
.mega .wave { opacity: 0.7; }
.mega-word {
  font-family: var(--display);
  font-size: clamp(100px, 22vw, 340px);
  line-height: 0.82;
  letter-spacing: -0.04em;
  color: var(--paper);
  margin: 0;
  padding: 40px 0 0;
  white-space: nowrap;
  overflow: hidden;
  font-weight: 500;
  position: relative;
  z-index: 2;
}
.mega-word em { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--red-flare); }

.footer {
  background: var(--ink-blue);
  color: var(--paper);
  padding: 48px 0 32px;
  border-top: 1px solid rgba(246,241,232,0.1);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-grid h5 {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(246,241,232,0.5);
  margin: 0 0 18px;
  font-weight: 500;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 10px; }
.footer-grid a {
  color: rgba(246,241,232,0.75);
  text-decoration: none;
  font-size: 14px;
  transition: color .2s;
}
.footer-grid a:hover { color: var(--paper); }
.footer-tag { line-height: 1.15; margin-bottom: 24px; display: block; 
  font-family: var(--display);
  font-size: 28px;
  line-height: 1.1;
  color: var(--paper);
  max-width: 16ch;
  margin: 0 0 16px;
  letter-spacing: -0.015em;
  font-weight: 500;
}
.footer-tag em { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--red-flare); }
.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(246,241,232,0.12);
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 10.5px;
  color: rgba(246,241,232,0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  flex-wrap: wrap;
  gap: 12px;
}

/* ——— TWEAKS ——— */
.tweaks {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 20px 60px -20px rgba(0,0,0,0.4);
  z-index: 100;
  width: 280px;
  display: none;
  font-family: var(--sans);
  color: var(--ink);
}
.tweaks.on { display: block; }
.tweaks h4 {
  font-family: var(--display);
  font-size: 20px;
  margin: 0 0 16px;
  letter-spacing: -0.01em;
  font-weight: 500;
}
.tweaks label {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 14px 0 6px;
}
.tweaks .opts { display: flex; gap: 6px; flex-wrap: wrap; }
.tweaks .opt {
  font-size: 12px;
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--ink-soft);
  cursor: pointer;
  font-family: var(--sans);
}
.tweaks .opt.active { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.tweaks textarea {
  width: 100%; min-height: 54px; padding: 8px;
  font-family: var(--sans); font-size: 12px;
  border: 1px solid var(--line); border-radius: 6px;
  background: var(--paper); color: var(--ink);
  resize: vertical;
}

/* ——— SHARED PAGE HEADER + CTA BANDS ——— */
.page-hero {
  position: relative;
  overflow: hidden;
  background: var(--ink-blue);
  color: var(--paper);
  padding: clamp(120px, 14vw, 180px) 0 clamp(80px, 10vw, 120px);
}
.page-hero .wave { opacity: 0.75; }
.page-hero .wrap { position: relative; z-index: 2; }
.page-hero .eyebrow { color: rgba(246,241,232,0.7); display: block; margin-bottom: 28px; }
.page-hero h1 {
  font-family: var(--display);
  font-size: clamp(44px, 6vw, 84px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: var(--paper);
  margin: 0 0 28px;
  max-width: 18ch;
}
.page-hero p.lead {
  color: rgba(246,241,232,0.85);
  max-width: 62ch;
}
.lead.on-dark { color: rgba(246,241,232,0.85); }

.range-full { background: var(--paper); padding-top: clamp(80px, 9vw, 120px); padding-bottom: clamp(80px, 9vw, 120px); }

.bottle-card-link {
  text-decoration: none;
  color: inherit;
}
.bc-cta {
  margin-top: 16px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--paper);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  transition: gap .2s, border-color .2s;
}
.bottle-card-link:hover .bc-cta { gap: 10px; border-color: var(--paper); }

.cta-band {
  background: var(--paper-2);
  padding: clamp(80px, 10vw, 140px) 0;
}
.cta-band-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}
.cta-band h2 {
  font-family: var(--display);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.025em;
  margin: 0;
}
.cta-band p.lead { margin: 0 0 24px; max-width: 42ch; }

/* ——— SINGLE BOTTLE PRODUCT PAGE ——— */
.product-hero {
  position: relative;
  overflow: hidden;
  color: var(--paper);
  padding: clamp(100px, 12vw, 160px) 0 clamp(60px, 8vw, 100px);
  min-height: 80vh;
}
.product-hero.red { background: #3d0d1c; }
.product-hero.white { background: #4a6908; }
.product-hero.sparkling { background: #082818; }
.product-hero .wave { opacity: 0.9; }
.product-hero .wrap { position: relative; z-index: 2; }

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}
.product-grid .product-copy { order: 1; }
.product-grid .product-visual { order: 2; }

.product-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  display: flex;
  gap: 18px;
  margin-bottom: 24px;
}
.product-eyebrow .dot { opacity: 0.5; }
.product-hero h1 {
  font-family: var(--display);
  font-size: clamp(52px, 7vw, 104px);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--paper);
  margin: 0 0 28px;
}
.product-hero h1 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
}
.product-hero .product-sub {
  font-size: 19px;
  line-height: 1.5;
  color: rgba(255,255,255,0.88);
  max-width: 50ch;
  margin: 0 0 40px;
}
.product-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px 24px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.25);
}
.product-specs .sp {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.product-specs .sp b {
  display: block;
  font-family: var(--display);
  font-size: 24px;
  font-weight: 500;
  color: var(--paper);
  text-transform: none;
  letter-spacing: -0.01em;
  margin-top: 6px;
}
.product-bottle {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}
.product-bottle svg {
  width: 100%;
  max-width: 340px;
  height: auto;
  filter: drop-shadow(0 40px 80px rgba(0,0,0,0.55));
}

/* Details sections */
.details {
  background: var(--paper);
  padding: clamp(80px, 10vw, 140px) 0;
}
.details.dark {
  background: var(--ink-blue);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.details.dark .wave { opacity: 0.35; }
.details.dark .wrap { position: relative; z-index: 2; }
.details.dark h2, .details.dark h3 { color: var(--paper); }
.details.dark p { color: rgba(246,241,232,0.8); }

.details .inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(32px, 6vw, 88px);
  align-items: start;
}
.details h2 {
  font-family: var(--display);
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.025em;
  margin: 0;
}
.details h2 em { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--red-flare); }
.details p {
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0 0 18px;
  max-width: 62ch;
}

.notes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 12px;
}
.note-card {
  padding: 28px;
  background: var(--paper-2);
  border-radius: 6px;
}
.details.dark .note-card {
  background: rgba(246,241,232,0.06);
}
.note-card .label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red-flare);
  margin-bottom: 14px;
  font-weight: 500;
}
.note-card h4 {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.015em;
  margin: 0 0 10px;
  color: inherit;
}
.note-card p {
  font-size: 15px;
  line-height: 1.5;
  margin: 0;
  color: inherit;
  opacity: 0.85;
}

.pairings {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 24px;
}
.pairing {
  padding: 24px;
  background: var(--paper-2);
  border-radius: 6px;
  text-align: center;
}
.details.dark .pairing { background: rgba(246,241,232,0.05); }
.pairing .icon-ch {
  font-family: var(--serif);
  font-style: italic;
  font-size: 42px;
  color: var(--red-flare);
  line-height: 1;
  margin-bottom: 10px;
}
.pairing h5 {
  font-family: var(--display);
  font-size: 17px;
  font-weight: 500;
  margin: 0 0 6px;
  color: inherit;
}
.pairing p {
  font-size: 13px;
  line-height: 1.4;
  margin: 0;
  color: inherit;
  opacity: 0.7;
}

/* PROCESS LIST (craft page) */
.details-inner-wide {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(32px, 6vw, 88px);
  align-items: start;
}
.details-inner-wide h2 {
  font-family: var(--display);
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.025em;
  margin: 0;
  position: sticky;
  top: 100px;
}
.process-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 36px;
}
.process-list li {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 28px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}
.process-list li:last-child { border-bottom: 0; }
.process-num {
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.15em;
  color: var(--red-flare);
  font-weight: 500;
  padding-top: 6px;
}
.process-list h3 {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.015em;
  margin: 0 0 10px;
}
.process-list p {
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
  max-width: 60ch;
}
.process-list em { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--red-flare); }

/* JOURNAL */
.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.article-card {
  display: flex;
  flex-direction: column;
  background: var(--paper-2);
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform .2s;
}
.article-card:hover { transform: translateY(-4px); }
.article-card .cover {
  aspect-ratio: 4/3;
  background: var(--ink-blue);
  overflow: hidden;
}
.article-card .cover svg { width: 100%; height: 100%; display: block; }
.article-card .body { padding: 24px; }
.article-card .meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red-flare);
  margin-bottom: 14px;
  display: flex;
  gap: 14px;
}
.article-card h3 {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.15;
  margin: 0 0 12px;
}
.article-card p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 0;
}

/* TRADE */
.trade-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.trade-card {
  padding: 32px;
  background: var(--paper-2);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.trade-card .num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--red-flare);
}
.trade-card h3 {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.015em;
  margin: 0;
}
.trade-card p {
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 0;
  flex: 1;
}
.trade-card a.btn { align-self: flex-start; margin-top: 8px; }

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 720px;
}
.form-grid .full { grid-column: 1 / -1; }
.form-grid label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: block;
  margin-bottom: 8px;
}
.form-grid input, .form-grid select, .form-grid textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(15,10,24,0.15);
  border-radius: 4px;
  background: var(--paper);
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink-blue);
}
.form-grid textarea { min-height: 120px; resize: vertical; }

/* FAQ page */
.faq-block {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  padding: 28px 0;
  border-bottom: 1px solid rgba(0,0,0,0.12);
}
.faq-item h3 {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.015em;
  margin: 0 0 12px;
  line-height: 1.2;
}
.faq-item p {
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0 0 10px;
  max-width: 72ch;
}
.faq-item p:last-child { margin-bottom: 0; }
.faq-category {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red-flare);
  margin: 56px 0 8px;
  padding-bottom: 6px;
  font-weight: 500;
}
.faq-category:first-of-type { margin-top: 0; }

@media (max-width: 900px) {
  .details .inner, .details-inner-wide, .cta-band-grid, .product-grid { grid-template-columns: minmax(0, 1fr); }
  .details-inner-wide h2 { position: static; }
  .details-inner-wide > * { min-width: 0; }
  .notes-grid, .journal-grid, .trade-cards, .form-grid { grid-template-columns: 1fr; }
  .pairings { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1100px) {
  .hero-grid, .range-head, .taste-grid, .faq-grid { grid-template-columns: 1fr; }
  .range-grid, .benefits-grid, .stats-grid, .quotes-grid, .b2b-cards, .awards { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .blog-card.feature { grid-row: auto; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
}
@media (max-width: 640px) {
  .range-grid, .benefits-grid, .stats-grid, .quotes-grid, .b2b-cards, .awards, .blog-grid, .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 400px) {
  .nav .lang { display: none; }
  .nav-right { gap: 0; }
  .nav-cta { padding: 9px 14px; font-size: 12px; }
}
