/* Atelier Aymé — shared styles */
:root {
  --ink: #1a1714;
  --ink-soft: #4a423b;
  --ink-mute: #8a7f74;
  --bg: #f5f1ea;
  --bg-2: #ece5d8;
  --bg-3: #ffffff;
  --accent: #b8761f;       /* warm bronze from VHVH badge */
  --accent-soft: #d9a460;
  --hair: rgba(26, 23, 20, 0.18);
  --hair-soft: rgba(26, 23, 20, 0.08);
  --serif: "Cormorant Garamond", "Garamond", "EB Garamond", serif;
  --sans: "Jost", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }

img { display: block; max-width: 100%; }

/* ─── Marquee announcement bar ─── */
.announce {
  background: var(--ink);
  color: var(--bg);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 400;
  padding: 10px 0;
  overflow: hidden;
  position: relative;
}
.announce-track {
  display: flex;
  gap: 56px;
  white-space: nowrap;
  width: max-content;
  animation: marquee 38s linear infinite;
}
.announce-track > span { display: flex; align-items: center; gap: 56px; }
.announce-track .dot {
  width: 4px; height: 4px; background: var(--accent-soft); border-radius: 50%;
  display: inline-block;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── Header ─── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bg);
  border-bottom: 1px solid var(--hair-soft);
  transition: background 0.3s ease, border-color 0.3s ease;
}
.site-header.scrolled {
  background: rgba(245, 241, 234, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 22px 48px;
  gap: 32px;
}
.nav-left, .nav-right {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--ink-soft);
}
.nav-right { justify-content: flex-end; }
.nav-left a, .nav-right a {
  position: relative;
  padding-bottom: 2px;
  transition: color 0.2s ease;
}
.nav-left a:hover, .nav-right a:hover { color: var(--ink); }
.nav-left a::after, .nav-right a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.65, 0, 0.35, 1);
}
.nav-left a:hover::after, .nav-right a:hover::after { transform: scaleX(1); }

.brandmark {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: 0.28em;
  text-align: center;
  white-space: nowrap;
}
.brandmark .dot {
  display: inline-block;
  width: 4px; height: 4px;
  background: var(--ink);
  border-radius: 50%;
  vertical-align: middle;
  margin: 0 6px 4px 6px;
}
.brandmark small {
  display: block;
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.5em;
  margin-top: 4px;
  color: var(--ink-mute);
  font-weight: 400;
}

/* Lang toggle */
.lang {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-size: 11px;
  letter-spacing: 0.22em;
  border: 1px solid var(--hair);
  border-radius: 999px;
  padding: 4px;
  background: transparent;
}
.lang button {
  font: inherit;
  font-family: var(--sans);
  font-weight: 400;
  letter-spacing: 0.22em;
  border: 0;
  background: transparent;
  color: var(--ink-mute);
  padding: 5px 12px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
}
.lang button.active {
  background: var(--ink);
  color: var(--bg);
}

/* ─── Layout primitives ─── */
.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
}
.container-narrow {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 48px;
}

.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--ink-mute);
  display: inline-block;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 300;
  letter-spacing: 0.005em;
  margin: 0;
  color: var(--ink);
}

.display {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(54px, 8vw, 124px);
  line-height: 0.96;
  letter-spacing: -0.005em;
}
.display em {
  font-style: italic;
  font-weight: 300;
  color: var(--accent);
}
.h2 {
  font-size: clamp(36px, 4.4vw, 62px);
  line-height: 1.04;
  font-weight: 300;
}
.h3 {
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.15;
  font-weight: 400;
}

p.lede {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(20px, 1.6vw, 26px);
  line-height: 1.45;
  color: var(--ink-soft);
  max-width: 30ch;
}

.body-text { font-size: 15.5px; line-height: 1.7; color: var(--ink-soft); font-weight: 300; max-width: 56ch; }
.body-text p + p { margin-top: 1.05em; }

.rule {
  height: 1px;
  background: var(--hair);
  width: 100%;
}

/* ─── Hero ─── */
.hero {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  padding: 80px 48px 100px;
  max-width: 1440px;
  margin: 0 auto;
  align-items: end;
  position: relative;
  /* Full-bleed white band behind the hero (independent of body ground) */
  background: #ffffff;
  box-shadow: 0 0 0 100vmax #ffffff;
  clip-path: inset(0 -100vmax);
  z-index: 0;
}
.hero-text { padding-bottom: 24px; }
.hero-text .eyebrow { margin-bottom: 32px; }
.hero-text .display { margin-bottom: 36px; }
.hero-text .lede { margin-top: 0; }
.hero-meta {
  display: flex;
  align-items: baseline;
  gap: 24px;
  margin-top: 56px;
  font-size: 11px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.hero-meta strong { font-weight: 500; color: var(--ink); }

.hero-image {
  position: relative;
  aspect-ratio: 4 / 5;
  /* No overflow:hidden — the medallion is allowed to spill outside */
  background: var(--bg-2);
}
.hero-image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: contrast(1.02) saturate(0.95);
}
.hero-image::after {
  content: "ATELIER. AYMÉ — N° 01";
  position: absolute;
  bottom: 18px; right: 18px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.85);
  text-shadow: 0 1px 6px rgba(0,0,0,0.45);
  pointer-events: none;
  z-index: 1;
}

/* Stamp — circular text mark */
.stamp {
  position: absolute;
  left: -36px; top: 24%;
  width: 132px; height: 132px;
  display: grid; place-items: center;
  background: var(--bg);
  border-radius: 50%;
  border: 1px solid var(--hair);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 20px;
  line-height: 1.1;
  text-align: center;
  color: var(--ink);
  z-index: 2;
  rotate: -8deg;
}
.stamp small {
  display: block;
  font-family: var(--sans);
  font-style: normal;
  font-size: 8.5px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 4px;
}

/* ─── Section: founder letter ─── */
.section { padding: 120px 0; position: relative; }
.section.tight { padding: 80px 0; }
.section.dark { background: var(--ink); color: var(--bg); }
.section.dark .eyebrow { color: rgba(245,241,234,0.55); }
.section.dark .eyebrow::before { background: rgba(245,241,234,0.55); }
.section.dark h2, .section.dark p, .section.dark .lede, .section.dark .body-text { color: var(--bg); }
.section.dark .body-text { color: rgba(245,241,234,0.78); }
.section.cream { background: var(--bg-2); }

.split {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 96px;
}
.split-label .eyebrow { display: block; margin-bottom: 18px; }
.split-label .num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 64px;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
}

.letter {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(19px, 1.3vw, 22px);
  line-height: 1.65;
  color: var(--ink);
  max-width: 60ch;
}
.letter p + p { margin-top: 1.1em; }
.letter .pull {
  font-style: italic;
  font-size: clamp(26px, 2vw, 32px);
  line-height: 1.35;
  color: var(--ink);
  border-left: 1px solid var(--accent);
  padding-left: 22px;
  margin: 1.4em 0;
  display: block;
}
.letter .sign {
  margin-top: 2em;
  font-style: italic;
  color: var(--ink-soft);
  font-size: 0.92em;
}

/* Notice card */
.notice {
  border: 1px solid var(--hair);
  background: var(--bg-3);
  padding: 36px 40px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: start;
  max-width: 900px;
  margin: 56px auto 0;
}
.notice .tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 6px 10px;
  border: 1px solid var(--accent);
  border-radius: 999px;
  white-space: nowrap;
}
.notice p { margin: 0; font-size: 15px; color: var(--ink-soft); }
.notice strong { color: var(--ink); font-weight: 500; }

/* ─── Three-up: pillars ─── */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
}
.pillar {
  padding: 56px 40px;
  border-right: 1px solid var(--hair);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pillar:last-child { border-right: 0; }
.pillar .num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--accent);
  letter-spacing: 0.1em;
}
.pillar h3 { font-size: 26px; font-weight: 400; }
.pillar p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.6; margin: 0; }

/* ─── Wordmark hero on dark ─── */
.wordmark-hero {
  text-align: center;
  padding: 140px 24px;
}
.wordmark-hero .eyebrow {
  color: rgba(245,241,234,0.55);
  margin-bottom: 32px;
}
.wordmark-hero .eyebrow::before { background: rgba(245,241,234,0.55); }
.wordmark-hero h2 {
  font-size: clamp(68px, 11vw, 180px);
  font-weight: 200;
  line-height: 0.94;
  letter-spacing: 0.01em;
  color: var(--bg);
}
.wordmark-hero h2 .amp {
  font-style: italic;
  color: var(--accent-soft);
}
.wordmark-hero .sub {
  margin-top: 28px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: rgba(245,241,234,0.65);
}

/* ─── Cross-promo card (link to wine page) ─── */
.crosslink {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--hair);
  overflow: hidden;
  background: var(--bg-3);
}
.crosslink-img {
  background: var(--bg-2);
  aspect-ratio: 5/4;
  overflow: hidden;
  position: relative;
}
.crosslink-img img {
  width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%;
  transition: transform 0.9s cubic-bezier(0.2,0.7,0.2,1);
}
.crosslink:hover .crosslink-img img { transform: scale(1.03); }
.crosslink-body {
  padding: 56px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}
.crosslink-body .h2 { font-size: clamp(34px, 3.4vw, 52px); }
.crosslink-body p { color: var(--ink-soft); margin: 0; max-width: 38ch; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  padding: 14px 24px;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 400;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, gap 0.3s;
  align-self: flex-start;
}
.btn:hover { background: var(--ink); color: var(--bg); gap: 18px; }
.btn .arrow { transition: transform 0.3s; }
.btn:hover .arrow { transform: translateX(4px); }

.btn-light { border-color: var(--bg); color: var(--bg); }
.btn-light:hover { background: var(--bg); color: var(--ink); }

/* ─── Footer ─── */
.site-footer {
  background: var(--ink);
  color: var(--bg);
  padding: 80px 48px 32px;
}
.footer-grid {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 64px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(245,241,234,0.18);
}
.footer-brand .brandmark { text-align: left; color: var(--bg); font-size: 24px; }
.footer-brand .brandmark small { color: rgba(245,241,234,0.5); }
.footer-brand p { color: rgba(245,241,234,0.6); font-size: 13px; margin-top: 18px; max-width: 32ch; }
.footer-col h4 {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(245,241,234,0.55);
  font-weight: 400;
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 14px;
  color: var(--bg);
  opacity: 0.9;
  transition: opacity 0.2s, color 0.2s;
}
.footer-col a:hover { color: var(--accent-soft); }
.footer-bottom {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(245,241,234,0.5);
}

.builtby {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(245,241,234,0.55);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}
.builtby:hover { color: var(--accent-soft); }
.builtby img {
  height: 22px;
  width: auto;
  display: block;
  opacity: 0.9;
  transition: opacity 0.2s ease;
}
.builtby:hover img { opacity: 1; }

/* ─── Ground theme variants (Tweak: ground) ─── */
html[data-ground="white"] {
  --bg: #ffffff;
  --bg-2: #f5efe4;
  --bg-3: #ffffff;
  --hair: rgba(26, 23, 20, 0.12);
  --hair-soft: rgba(26, 23, 20, 0.06);
}

/* ─── Brand logo (header + footer) ─── */
.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  vertical-align: middle;
  text-decoration: none;
  color: inherit;
}
.brand-logo .mark {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex: 0 0 52px;
}
.brand-logo .mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.brand-logo .wm {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 400;
  white-space: nowrap;
  line-height: 1.4;
}
.brand-logo .wm em {
  display: block;
  font-style: normal;
  font-family: var(--serif);
  font-size: 15px;
  letter-spacing: 0.32em;
  color: var(--ink);
  margin-bottom: 4px;
}
.site-footer .brand-logo .mark { width: 72px; height: 72px; flex-basis: 72px; }
.site-footer .brand-logo .wm { color: rgba(245,241,234,0.55); }
.site-footer .brand-logo .wm em { color: var(--bg); }

/* ─── Hero medallion — circular logo over portrait (Tweak: medallion) ─── */
.hero-image .medallion {
  position: absolute;
  z-index: 10;
  width: 156px;
  height: 156px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--hair);
  display: grid;
  place-items: center;
  padding: 16px;
  box-shadow: 0 18px 40px rgba(26,23,20,0.10);
  animation: medallion-bob 6s ease-in-out infinite;
  pointer-events: none;
}
.hero-image .medallion img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
@keyframes medallion-bob {
  0%   { transform: translateY(0) rotate(-3deg); }
  50%  { transform: translateY(-6px) rotate(3deg); }
  100% { transform: translateY(0) rotate(-3deg); }
}
.hero-image[data-medallion="overlay"] .medallion {
  top: 32px;
  left: -44px;
}
.hero-image[data-medallion="floating"] .medallion {
  bottom: 32px;
  right: 32px;
  background: rgba(245,241,234,0.94);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.hero-image[data-medallion="off"] .medallion { display: none; }

@media (max-width: 1024px) {
  .hero-image[data-medallion="overlay"] .medallion {
    left: auto;
    right: 20px;
    top: 20px;
    width: 112px;
    height: 112px;
  }
  .hero-image[data-medallion="floating"] .medallion { width: 108px; height: 108px; }
}
.wine-hero {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 0;
  min-height: calc(100vh - 120px);
  align-items: stretch;
}
.wine-hero-text {
  padding: 100px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
  background: var(--bg);
  position: relative;
}
.wine-hero-text .display { font-size: clamp(48px, 6.5vw, 96px); }
.wine-hero-text .display em { color: var(--accent); display: block; font-size: 0.7em; }
.wine-hero-image {
  background: var(--bg-2);
  overflow: hidden;
  position: relative;
}
.wine-hero-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.badge-float {
  position: absolute;
  width: 168px;
  height: 168px;
  z-index: 3;
  animation: badge-float 6s ease-in-out infinite;
  transform-origin: center;
}
@keyframes badge-float {
  0%   { transform: translateY(0) rotate(-4deg); }
  50%  { transform: translateY(-8px) rotate(4deg); }
  100% { transform: translateY(0) rotate(-4deg); }
}
.badge-float img { width: 100%; height: 100%; object-fit: contain; }

.wine-feature {
  display: grid;
  grid-template-columns: 40fr 60fr;
  gap: 80px;
  align-items: center;
  padding: 120px 64px;
  max-width: 1440px;
  margin: 0 auto;
}
.wine-feature-img {
  aspect-ratio: 3/4;
  background: var(--bg-2);
  overflow: hidden;
  position: relative;
}
.wine-feature-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
}
.wine-feature-body { padding: 24px 0; }
.wine-feature-body .eyebrow { margin-bottom: 24px; }
.wine-feature-body h2 { margin-bottom: 24px; }
.wine-feature-body .body-text { max-width: 56ch; font-size: 16px; }
.wine-feature-body .pawline {
  margin-top: 32px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--accent);
}

/* Solo (text-only) variant — single centered text column */
.wine-feature--solo {
  grid-template-columns: 1fr;
  max-width: 920px;
  padding: 96px 64px 80px;
}
.wine-feature--solo .wine-feature-body { padding: 0; }
.wine-feature--solo .wine-feature-body .body-text { max-width: 62ch; }

/* CTA strip below the tasting fiche: sticker + buttons */
.tasting-cta {
  margin-top: 64px;
  padding-top: 56px;
  border-top: 1px solid var(--hair);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 56px;
  align-items: center;
}
.tasting-cta-sticker {
  width: 132px;
  height: 132px;
  position: relative;
}
.tasting-cta-sticker .badge-float {
  position: relative;
  width: 100%;
  height: 100%;
}
.tasting-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-end;
}

.tasting {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
}
.tasting-cell {
  padding: 48px 32px;
  border-right: 1px solid var(--hair);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.tasting-cell:last-child { border-right: 0; }
.tasting-cell .k {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.tasting-cell .v {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 300;
  line-height: 1.15;
  color: var(--ink);
}
.tasting-cell .v em { font-style: italic; color: var(--accent); }
.tasting-cell .sub { font-size: 13px; color: var(--ink-soft); }

/* ─── Coming soon overlay (full-screen splash until launch) ─── */
.coming-soon {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg-3);
  display: grid;
  place-items: center;
  padding: 48px 24px;
  overflow-y: auto;
  animation: cs-fade-in 0.8s cubic-bezier(0.2,0.7,0.2,1) both;
}
@keyframes cs-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
/* Lock background scroll while overlay is mounted */
body:has(.coming-soon) { overflow: hidden; }

.coming-soon-inner {
  max-width: 760px;
  width: 100%;
  text-align: center;
}
.coming-soon-logo {
  width: 140px;
  height: 140px;
  margin: 0 auto 40px;
  border-radius: 50%;
  background: var(--bg);
  display: grid;
  place-items: center;
  padding: 16px;
  border: 1px solid var(--hair);
  box-shadow: 0 18px 40px rgba(26,23,20,0.08);
  animation: medallion-bob 6s ease-in-out infinite;
}
.coming-soon-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.coming-soon-eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 400;
  margin-bottom: 24px;
}
.coming-soon-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(56px, 9vw, 124px);
  line-height: 0.96;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin: 0 0 24px;
}
.coming-soon-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--accent);
}
.coming-soon-lede {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.45;
  color: var(--ink-soft);
  max-width: 38ch;
  margin: 0 auto;
}
.coming-soon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  max-width: 580px;
  margin: 56px auto 0;
  padding: 32px 0;
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
}
.coming-soon-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.coming-soon-num {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(44px, 7vw, 84px);
  line-height: 1;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}
.coming-soon-lbl {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 400;
}
.coming-soon-date {
  margin: 36px 0 0;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent);
}
.coming-soon-actions {
  margin-top: 40px;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.coming-soon-lang { background: transparent; }

@media (max-width: 640px) {
  .coming-soon { padding: 32px 16px; }
  .coming-soon-logo { width: 104px; height: 104px; margin-bottom: 28px; padding: 12px; }
  .coming-soon-grid { gap: 4px; padding: 24px 0; margin-top: 40px; }
  .coming-soon-num { letter-spacing: -0.03em; }
  .coming-soon-lbl { font-size: 9px; letter-spacing: 0.28em; }
  .coming-soon-date { margin-top: 28px; }
}

/* ─── FAQ ─── */
.faq {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--hair);
}
.faq-item {
  border-bottom: 1px solid var(--hair);
}
.faq-item > summary {
  list-style: none;
  cursor: pointer;
  padding: 28px 8px 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(20px, 1.7vw, 26px);
  line-height: 1.3;
  color: var(--ink);
  transition: color 0.25s ease;
}
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item > summary::after {
  content: "+";
  font-family: var(--serif);
  font-weight: 300;
  font-size: 32px;
  line-height: 1;
  color: var(--accent);
  transition: transform 0.3s cubic-bezier(0.2,0.7,0.2,1);
  flex: 0 0 auto;
}
.faq-item[open] > summary::after { transform: rotate(45deg); }
.faq-item > summary:hover { color: var(--accent); }
.faq-body {
  padding: 0 8px 32px 0;
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 70ch;
}
.faq-body p { margin: 0 0 0.9em; }
.faq-body p:last-child { margin-bottom: 0; }
.faq-body a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }

/* ─── Reveal on scroll ─── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s cubic-bezier(0.2,0.7,0.2,1), transform 0.9s cubic-bezier(0.2,0.7,0.2,1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ─── i18n display toggle (default NL, en hidden) ─── */
html[lang="nl"] [data-en] { display: none; }
html[lang="en"] [data-nl] { display: none; }
/* Inline variants */
html[lang="nl"] span[data-en], html[lang="nl"] em[data-en], html[lang="nl"] strong[data-en] { display: none; }
html[lang="en"] span[data-nl], html[lang="en"] em[data-nl], html[lang="en"] strong[data-nl] { display: none; }

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .nav { padding: 18px 28px; gap: 16px; }
  .nav-left, .nav-right { gap: 16px; font-size: 10px; }
  .container, .container-narrow { padding: 0 28px; }
  .hero { grid-template-columns: 1fr; padding: 48px 28px 64px; }
  .hero-image { aspect-ratio: 4/5; }
  .stamp { left: auto; right: 20px; top: 20px; }
  .split { grid-template-columns: 1fr; gap: 28px; }
  .pillars { grid-template-columns: 1fr; }
  .pillar { border-right: 0; border-bottom: 1px solid var(--hair); }
  .pillar:last-child { border-bottom: 0; }
  .crosslink { grid-template-columns: 1fr; }
  .crosslink-body { padding: 36px 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .wine-hero { grid-template-columns: 1fr; min-height: auto; }
  .wine-hero-text { padding: 56px 28px; }
  .wine-hero-image { aspect-ratio: 4/5; }
  .wine-feature { grid-template-columns: 1fr; gap: 36px; padding: 64px 28px; }
  .wine-feature--solo { padding: 56px 28px; }
  .tasting-cta { grid-template-columns: 1fr; gap: 28px; text-align: center; }
  .tasting-cta-sticker { margin: 0 auto; width: 110px; height: 110px; }
  .tasting-cta-actions { justify-content: center; }
  .tasting { grid-template-columns: 1fr 1fr; }
  .tasting-cell { border-bottom: 1px solid var(--hair); }
  .tasting-cell:nth-child(3), .tasting-cell:nth-child(4) { border-bottom: 0; }
  .tasting-cell:nth-child(2n) { border-right: 0; }
  .section { padding: 72px 0; }
}
@media (max-width: 640px) {
  .nav { grid-template-columns: auto 1fr auto; }
  .nav-left { display: none; }
  .brandmark { font-size: 16px; text-align: left; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; }
  .notice { grid-template-columns: 1fr; padding: 24px; }
  .badge-float { width: 110px; height: 110px; }
}
