/* ============================================================
   JOLI JUS · 2026 design system
   Wijnboutique Kortrijk · donker + goud · editorial premium
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,opsz,wght@0,6..96,400;0,6..96,500;0,6..96,600;0,6..96,700;1,6..96,400;1,6..96,500;1,6..96,600&family=Pinyon+Script&family=Onest:wght@300;400;500;600;700&display=swap');

:root {
  /* Foundation · warm dark, parchment, refined gold */
  --black:        #0d0c0a;
  --black-2:      #16140f;
  --surface-dk:   #1d1a14;
  --rule-dk:      #2a261d;
  --rule-dk-soft: #1f1c16;

  --bg:           #f6ece3;
  --bg-2:         #efe1d6;
  --bg-3:         #e6d4c7;
  --surface:      #fffaf4;
  --rule:         #ddccbd;
  --rule-soft:    #e7d8c9;

  /* Gold · antique, restrained */
  --gold:         #8A394E;
  --gold-soft:    #c5808f;
  --gold-deep:    #6e2a3c;
  --gold-text:    #8A394E;

  /* Ink */
  --ink:          #2a1019;
  --ink-soft:     #5a3d44;
  --ink-mute:     #7c5660;
  --ink-dim:      #9c7c84;

  /* Wine */
  --wine:         #8A394E;
  --wine-soft:    #a8516a;
  --wine-deep:    #6e2a3c;
  --pink:         #f4dce5;
  --pink-soft:    #fbeff3;

  /* Type */
  --display:      'Bodoni Moda', 'Bodoni 72', Georgia, serif;
  --body:         'Onest', system-ui, -apple-system, sans-serif;

  /* Fluid type scale · 1.33 ratio · copy enlarged ~10% (client feedback) */
  --t-xxs: clamp(0.75rem, 0.73rem + 0.08vw, 0.81rem);
  --t-xs:  clamp(0.86rem, 0.84rem + 0.1vw, 0.94rem);
  --t-sm:  clamp(0.96rem, 0.94rem + 0.12vw, 1.03rem);
  --t-md:  clamp(1.08rem, 1.03rem + 0.18vw, 1.19rem);
  --t-lg:  clamp(1.27rem, 1.16rem + 0.4vw, 1.54rem);
  --t-xl:  clamp(1.6rem, 1.38rem + 0.85vw, 2.2rem);
  --t-2xl: clamp(2.2rem, 1.76rem + 1.7vw, 3.3rem);
  --t-3xl: clamp(2.92rem, 2.2rem + 2.8vw, 4.84rem);
  --t-4xl: clamp(3.85rem, 2.75rem + 4.5vw, 7.43rem);
  --t-5xl: clamp(4.95rem, 3.3rem + 6.5vw, 9.9rem);

  /* Spacing · 4pt */
  --s-1:  0.25rem;
  --s-2:  0.5rem;
  --s-3:  0.75rem;
  --s-4:  1rem;
  --s-5:  1.5rem;
  --s-6:  2rem;
  --s-7:  3rem;
  --s-8:  4.5rem;
  --s-9:  6.5rem;
  --s-10: 9rem;
  --s-11: 12rem;

  --gutter:       clamp(1.5rem, 4vw, 4rem);
  --max:          1440px;
  --max-narrow:   1100px;

  --ease:         cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
  --ease-quart:   cubic-bezier(0.25, 1, 0.5, 1);
  --ease-expo:    cubic-bezier(0.16, 1, 0.3, 1);

  /* Watercolor atelier · atmosphere */
  --wine-ink:     #3a1622;
  --wine-ink-2:   #2c1019;
  --wash-rose:    #f0d3de;
  --wash-blush:   #f6e1ea;
  --wash-mauve:   #e8cdd9;
  --leaf:         #8f9e6b;
  --stock-green:  #356e3d;
}

/* ============================================================
   RESET & BASE
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; font-size: 80%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-size: var(--t-md);
  line-height: 1.6;
  font-feature-settings: "ss01", "kern", "liga", "calt";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4, h5 { margin: 0; font-weight: 400; letter-spacing: -0.012em; }
/* Emphasis carries through colour, not slant, so the page stays calm. */
em, i { font-style: normal; }
h1, h2, h3 { text-wrap: balance; }
p { margin: 0; text-wrap: pretty; }
ul { padding: 0; margin: 0; list-style: none; }

::selection { background: var(--wine); color: #fff; }
[hidden] { display: none !important; }

/* Body sits on cream; a faint paper grain + a soft rosé bloom at the
   crown give the whole canvas the watercolour-paper feel of the logo. */
body { position: relative; }
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(80% 55% at 86% -6%, var(--wash-rose), transparent 56%),
    radial-gradient(70% 50% at -8% 8%, var(--wash-blush), transparent 52%),
    radial-gradient(90% 70% at 50% 118%, var(--wash-mauve), transparent 58%),
    linear-gradient(180deg, #f3e4da 0%, var(--bg) 38%, var(--bg) 64%, #f1ddd2 100%);
  opacity: 1;
}
body::after {
  content: '';
  position: fixed; inset: 0; z-index: 0; pointer-events: none; opacity: 0.4;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.42 0 0 0 0 0.18 0 0 0 0 0.27 0 0 0 0.05 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}
body > * { position: relative; z-index: 1; }

/* ============================================================
   LAYOUT PRIMITIVES
   ============================================================ */

.frame {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.frame--narrow { max-width: var(--max-narrow); }

.section { padding-block: clamp(4rem, 8vw, 8rem); }
.section--tight { padding-block: clamp(2.5rem, 5vw, 5rem); }

/* Brand label: a small italic Bodoni tag in wine, not the tracked-caps
   kicker. Used consistently as a deliberate voice element. */
.eyebrow {
  font-family: var(--display);

  font-size: var(--t-lg);
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: var(--wine);
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
}

.eyebrow::before {
  content: '';
  width: 26px;
  height: 1px;
  background: var(--wine-soft);
  display: inline-block;
  opacity: 0.8;
}

.eyebrow--gold { color: var(--wine); }

.display-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: var(--t-3xl);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-feature-settings: "ss01", "kern", "liga";
}

.display-title em { font-weight: 500; }

/* ============================================================
   ANNOUNCE BAR
   ============================================================ */

.announce {
  background: var(--black);
  color: var(--gold-soft);
  font-size: var(--t-xxs);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--rule-dk);
}

.announce__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  padding-block: 10px;
}

.announce__inner span { opacity: 0.85; }
.announce__inner strong { color: var(--gold); opacity: 1; font-weight: 500; }

/* ============================================================
   HEADER
   ============================================================ */

.site-header {
  background: var(--bg);
  color: var(--ink);
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--rule);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--s-5);
  padding-block: var(--s-5);
  padding-inline: var(--gutter);
}

/* Brand · italic, distinctive Bodoni */
.brand {
  justify-self: start;
  display: inline-flex;
  align-items: baseline;
  gap: var(--s-3);
  line-height: 0.9;
}

.brand__mark {
  font-family: var(--display);
  font-weight: 500;

  font-size: clamp(1.85rem, 1.4rem + 1.4vw, 2.6rem);
  color: var(--gold);
  letter-spacing: -0.005em;
  font-feature-settings: "ss01", "kern", "liga";
}

.brand__logo {
  height: clamp(2.9rem, 2.1rem + 2vw, 4rem);
  width: auto;
  display: block;
  transition: opacity .25s var(--ease);
}
.brand:hover .brand__logo { opacity: 0.85; }

.brand__sub {
  font-family: var(--body);
  font-size: var(--t-xxs);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-soft);
  opacity: 0.7;
  padding-bottom: 4px;
}

/* Search · fills full space between brand and actions */
.searchbar {
  justify-self: stretch;
  width: 100%;
  position: relative;
}

.searchbar svg {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 17px;
  height: 17px;
  color: var(--gold);
  pointer-events: none;
}

.searchbar input {
  width: 100%;
  height: 42px;
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid var(--rule);
  color: var(--ink);
  padding: 0 var(--s-5) 0 calc(var(--s-5) + 24px);
  font: inherit;
  font-size: var(--t-sm);
  border-radius: 999px;
  transition: border-color .25s var(--ease), background .25s var(--ease);
}

.searchbar input::placeholder { color: var(--ink-mute); opacity: 1; }

.searchbar input:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.07);
}

/* Search dropdown */
.search-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: var(--bg);
  border: 1px solid var(--rule);
  box-shadow: 0 20px 48px -16px rgba(13,12,10,0.4);
  z-index: 60;
  max-height: 460px;
  overflow-y: auto;
  display: none;
}

.search-dropdown.is-open { display: block; }

.search-dropdown__head {
  padding: 10px 16px;
  font-size: var(--t-xxs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  border-bottom: 1px solid var(--rule-soft);
  background: var(--bg-2);
}

.search-result {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: var(--s-4);
  padding: 12px 16px;
  border-bottom: 1px solid var(--rule-soft);
  text-decoration: none;
  color: inherit;
  transition: background .15s var(--ease);
}

.search-result:last-child { border-bottom: none; }
.search-result:hover,
.search-result.is-active {
  background: var(--bg-2);
}

.search-result__media {
  width: 42px;
  height: 54px;
  background: var(--bg-2);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3px;
}

.search-result:hover .search-result__media,
.search-result.is-active .search-result__media {
  background: var(--bg-3);
}

.search-result__media img {
  max-width: 75%;
  max-height: 100%;
  object-fit: contain;
}

.search-result__body {
  min-width: 0;
}

.search-result__region {
  font-size: var(--t-xxs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 3px;
}

.search-result__name {
  font-family: var(--display);
  font-size: var(--t-sm);
  color: var(--ink);
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.search-result__name em {
  font-style: normal;
  color: var(--gold-text);
  background: rgba(196, 162, 109, 0.15);
  padding: 0 2px;
}

.search-result__price {
  font-family: var(--display);
  font-weight: 500;
  font-size: var(--t-sm);
  color: var(--wine);
  white-space: nowrap;
}

.search-empty {
  padding: 22px 18px;
  font-size: var(--t-sm);
  color: var(--ink-mute);

  text-align: center;
  font-family: var(--display);
}

.search-empty span { color: var(--ink); font-style: normal; }

/* Actions · labels alongside icons */
.actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: var(--s-5);
}

.action {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-size: var(--t-sm);
  color: var(--ink);
  position: relative;
  transition: color .2s var(--ease);
}

.action svg { width: 18px; height: 18px; stroke-width: 1.4; }

.action:hover { color: var(--gold); }

.action__count {
  position: absolute;
  top: -16px;
  right: -10px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--gold);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: transform .2s var(--ease);
}

.action__count.bump { transform: scale(1.35); }

/* Sub navigation */
.subnav {
  border-top: 1px solid var(--rule);
}
.subnav__row a { color: var(--ink); transition: color .2s var(--ease); }
.subnav__row a:hover { color: var(--gold); }

.subnav__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 2.5vw, 2.5rem);
  padding-block: 14px;
  padding-inline: var(--gutter);
  flex-wrap: wrap;
}

.subnav a {
  font-size: var(--t-sm);
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
  transition: color .2s var(--ease);
}

.subnav a:hover { color: var(--wine); }
.subnav a.is-current { color: var(--gold); }

/* Hamburger · mobile nav toggle (hidden on desktop) */
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  transition: color .2s var(--ease), border-color .2s var(--ease);
}
.nav-toggle svg { width: 20px; height: 20px; }
.nav-toggle:hover { color: var(--gold); border-color: var(--gold-soft); }

/* Mobile filter trigger + drawer close (hidden on desktop) */
.filter-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  width: 100%;
  padding: var(--s-3) var(--s-4);
  margin-bottom: var(--s-5);
  border: 1px solid var(--gold);
  border-radius: 999px;
  background: transparent;
  color: var(--gold);
  font-size: var(--t-sm);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background .2s var(--ease), color .2s var(--ease);
}
.filter-toggle svg { width: 18px; height: 18px; }
.filter-toggle:hover { background: var(--gold); color: #fff; }

.sidebar__close {
  display: none;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-bottom: var(--s-4);
  margin-bottom: var(--s-2);
  border: none;
  border-bottom: 1px solid var(--rule);
  background: transparent;
  color: var(--ink);
  font-family: var(--display);
  font-size: var(--t-lg);
}
.sidebar__close span { font-size: 1.5em; line-height: 1; color: var(--ink-mute); }

/* ============================================================
   USP BAR
   ============================================================ */

.usp {
  background: var(--wash-blush);
  color: var(--ink);
  border-block: 1px solid var(--rule-soft);
}

.usp__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.usp__row { grid-template-columns: repeat(3, 1fr); }

.usp__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-3);
  padding-block: 12px;
  padding-inline: var(--s-4);
  font-size: var(--t-xxs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  position: relative;
}

.usp__item + .usp__item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 30%;
  bottom: 30%;
  width: 1px;
  background: color-mix(in oklab, var(--wine) 22%, transparent);
}

.usp__check {
  color: var(--gold);
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* ============================================================
   HOMEPAGE HERO · editorial, type-led, asymmetric
   ============================================================ */

.hero {
  position: relative;
  min-height: clamp(580px, 86vh, 860px);
  background:
    radial-gradient(72% 64% at 80% 6%, var(--wash-rose), transparent 60%),
    radial-gradient(64% 58% at 2% 96%, var(--wash-blush), transparent 55%),
    var(--bg);
  color: var(--ink);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  isolation: isolate;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* The brand's own watercolour wash — the ground the logo sits on — drifts
   in behind the headline so the page carries the identity, not an imitation. */
.hero__bg::before {
  content: '';
  position: absolute;
  left: -8%;
  top: 4%;
  width: clamp(380px, 66vw, 960px);
  aspect-ratio: 1400 / 1043;
  background: url("https://cdn.webshopapp.com/shops/336242/files/499898715/brand-wash.webp") no-repeat center / contain;
  opacity: 0.9;
  pointer-events: none;
  z-index: 0;
}

/* The brand's watercolour grape is the hero's visual — the wine photo is gone,
   the grape (the heart of the logo) carries the identity instead. It bleeds in
   from the top-right; its lower half softens into the paper via .hero::after. */
.hero__bg::after {
  content: '';
  position: absolute;
  top: -6%;
  right: -2%;
  width: clamp(240px, 42vw, 600px);
  aspect-ratio: 560 / 1004;
  background: url("https://cdn.webshopapp.com/shops/336242/files/499898716/grape-wash.webp") no-repeat center / contain;
  opacity: 0.92;
  transform: rotate(3deg);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(251,248,241,0.28) 0%, rgba(251,248,241,0) 28%, rgba(251,248,241,0.74) 80%, var(--bg) 100%);
}

.hero__frame {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 620px);
  align-items: start;
  gap: clamp(1.4rem, 3vw, 2.4rem);
  padding-block: clamp(3rem, 8vw, 6rem);
  padding-inline: var(--gutter);
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
}

.hero__eyebrow {
  font-family: var(--display);

  font-size: var(--t-lg);
  letter-spacing: 0;
  text-transform: none;
  color: var(--wine);
  margin-bottom: var(--s-4);
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
}

.hero__eyebrow::before {
  content: '';
  width: 34px;
  height: 1px;
  background: var(--wine-soft);
}

/* Brand name · the house wordmark leads the hero */
.hero__brand {
  display: block;
  width: clamp(260px, 36vw, 480px);
  height: auto;
  margin-bottom: var(--s-4);
}

.hero__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: var(--t-4xl);
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: var(--ink);
}

.hero__title em {

  font-weight: 400;
  color: var(--wine);
}

.hero__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: var(--s-5);
  padding-bottom: var(--s-4);
}

.hero__lede {
  font-size: var(--t-md);
  color: var(--ink-soft);
  line-height: 1.7;
  max-width: 54ch;
  text-wrap: pretty;
}

.hero__index {
  position: absolute;
  top: var(--s-7);
  right: var(--gutter);
  z-index: 2;
  font-family: var(--display);

  font-size: var(--t-md);
  color: var(--gold);
  opacity: 0.75;
}

.hero__scroll {
  position: absolute;
  bottom: var(--s-5);
  right: var(--gutter);
  z-index: 2;
  font-size: var(--t-xxs);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--wine);
  opacity: 0.85;
  display: flex;
  align-items: center;
  gap: var(--s-3);
}

.hero__scroll::after {
  content: '';
  width: 1px;
  height: 36px;
  background: linear-gradient(180deg, var(--gold) 0%, transparent 100%);
  animation: scrollLine 2.4s var(--ease-out) infinite;
}

@keyframes scrollLine {
  0%, 100% { opacity: 0.3; transform: translateY(0); }
  50%      { opacity: 0.85; transform: translateY(6px); }
}

/* ============================================================
   BUTTONS · refined
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  padding: 16px 32px;
  font-family: var(--body);
  font-weight: 500;
  font-size: var(--t-xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: 0;
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  cursor: pointer;
}

.btn .arrow { display: inline-block; transition: transform .35s var(--ease-out); }
.btn:hover .arrow { transform: translateX(4px); }

.btn--primary {
  background: var(--wine);
  color: #fff;
  border-color: var(--wine);
}

.btn--primary:hover {
  background: var(--wine-deep);
  border-color: var(--wine-deep);
}

.btn--outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}

.btn--outline:hover {
  background: var(--ink);
  color: var(--bg);
}

.btn--ghost-light {
  background: transparent;
  color: var(--bg);
  border-color: rgba(251,248,241,0.6);
}

.btn--ghost-light:hover {
  background: var(--bg);
  color: var(--black);
  border-color: var(--bg);
}

/* Text link with underline */
.text-link {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  color: var(--ink);
  font-weight: 500;
  font-size: var(--t-sm);
  letter-spacing: 0.06em;
  position: relative;
  padding-bottom: 4px;
  transition: color .2s var(--ease);
}

.text-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform-origin: left;
  transition: transform .35s var(--ease-out);
}

.text-link:hover { color: var(--gold-text); }
.text-link:hover::after { transform: scaleX(0.7); transform-origin: right; }

.text-link--light { color: var(--gold); }
.text-link--light:hover { color: var(--gold-soft); }

/* ============================================================
   SECTION HEADERS
   ============================================================ */

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.3fr);
  align-items: end;
  gap: clamp(2rem, 5vw, 4rem);
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  padding-bottom: var(--s-6);
  border-bottom: 1px solid var(--rule);
}

.section-head__body { display: flex; flex-direction: column; gap: var(--s-4); }

.section-head__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: var(--t-3xl);
  line-height: 0.95;
  letter-spacing: -0.025em;
  color: var(--ink);
}

.section-head__title em { }

.section-head__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: var(--s-3);
  text-align: right;
  padding-bottom: var(--s-2);
}

.section-head__intro {
  font-size: var(--t-md);
  color: var(--ink-soft);
  line-height: 1.65;
  max-width: 64ch;
}

.section-head__count {
  font-family: var(--display);

  font-size: var(--t-md);
  color: var(--gold-text);
}

/* ============================================================
   WINE CARDS · editorial premium
   ============================================================ */

.wines {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-7) var(--s-5);
}

.wines--3 { grid-template-columns: repeat(3, 1fr); }

.card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  position: relative;
  cursor: pointer;
  height: 100%;
}

.card__media {
  position: relative;
  background:
    radial-gradient(130% 90% at 50% 10%, var(--wash-blush), transparent 72%),
    linear-gradient(180deg, #fffdfb 0%, var(--wash-rose) 100%);
  border: 1px solid var(--rule-soft);
  aspect-ratio: 4 / 5;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--s-5);
}

.card__media::before {
  content: '';
  position: absolute;
  right: -8%;
  bottom: -10%;
  width: 56%;
  aspect-ratio: 1100 / 1972;
  background: url('https://cdn.webshopapp.com/shops/336242/files/499898716/grape-wash.webp') no-repeat center / contain;
  opacity: 0.13;
  transform: rotate(-7deg);
  pointer-events: none;
}

.card__media img {
  width: 58%;
  height: 90%;
  object-fit: contain;
  transition: transform .8s var(--ease-out);
  filter: drop-shadow(0 24px 36px rgba(13,12,10,0.18));
}

.card:hover .card__media img {
  transform: translateY(-6px) scale(1.02);
}

.card__heart {
  position: absolute;
  top: var(--s-4);
  right: var(--s-4);
  width: 36px;
  height: 36px;
  background: var(--surface);
  border: 1px solid var(--rule-soft);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-mute);
  cursor: pointer;
  z-index: 2;
  transition: color .2s var(--ease), background .2s var(--ease);
}

.card__heart svg { width: 15px; height: 15px; }
.card__heart:hover { color: var(--wine); }
.card__heart.is-active { color: var(--wine); }
.card__heart.is-active svg { fill: var(--wine); }

.card__chip {
  position: absolute;
  top: var(--s-4);
  left: var(--s-4);
  background: var(--ink);
  color: var(--bg);
  padding: 6px 12px;
  font-size: var(--t-xxs);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  z-index: 2;
}

.card__chip--gold { background: var(--wine); color: #fff; }

.card__quickadd {
  position: absolute;
  bottom: var(--s-4);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  opacity: 0;
  background: var(--ink);
  color: var(--bg);
  border: none;
  padding: 12px 22px;
  font-size: var(--t-xxs);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity .25s var(--ease), transform .35s var(--ease-out), background .2s var(--ease);
  z-index: 2;
  white-space: nowrap;
}

.card__quickadd:hover { background: var(--wine); color: #fff; }

.card:hover .card__quickadd {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.card__body {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  padding-inline: 2px;
  flex: 1;
}

.card__region {
  font-size: var(--t-xxs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
}

.card__name {
  font-family: var(--display);
  font-weight: 400;
  font-size: var(--t-lg);
  line-height: 1.2;
  color: var(--ink);
  letter-spacing: -0.015em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: calc(var(--t-lg) * 1.2 * 2);
}

.card__note {
  font-family: var(--body);
  font-size: var(--t-sm);
  color: var(--ink-soft);
  line-height: 1.55;
  max-width: 32ch;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: calc(var(--t-sm) * 1.55 * 2);
}

.card__foot {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--s-3);
  margin-top: auto;
  padding-top: var(--s-4);
  border-top: 1px solid var(--rule);
}

.card__price {
  font-family: var(--display);
  font-weight: 500;
  font-size: var(--t-lg);
  color: var(--wine);
  letter-spacing: -0.01em;
}

.card__cta {
  font-size: var(--t-xxs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
  transition: color .2s var(--ease);
}

.card:hover .card__cta { color: var(--gold-text); }

/* ============================================================
   STORY · magazine spread
   ============================================================ */

.story {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.35fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.story__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 4px;
  background:
    radial-gradient(120% 80% at 50% 0%, var(--wash-blush), transparent 70%),
    linear-gradient(180deg, #fffdfb 0%, var(--wash-rose) 100%);
  box-shadow: 0 34px 70px -38px rgba(58,22,34,0.28);
}

.story__media::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid color-mix(in oklab, var(--wine) 14%, transparent);
  border-radius: 4px;
  pointer-events: none;
  z-index: 2;
}

.story__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}

.story__media:hover img { transform: scale(1.03); }

.story__body { display: flex; flex-direction: column; gap: var(--s-5); }

.story__quote {
  font-family: var(--display);
  font-weight: 400;
  font-size: var(--t-2xl);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.story__quote::before {
  content: '\201C';
  font-family: var(--display);

  font-weight: 500;
  color: var(--gold);
  display: inline-block;
  margin-right: 0.08em;
  font-size: 1.15em;
  line-height: 0;
  vertical-align: -0.1em;
}

.story__sig {
  font-family: var(--display);

  font-size: var(--t-md);
  color: var(--gold-text);
}

.story__copy {
  font-size: var(--t-md);
  color: var(--ink-soft);
  line-height: 1.75;
  max-width: 60ch;
  text-wrap: pretty;
}
