/* =====================================================================
   VINO GLOW — Editorial Luxury Stylesheet
   Palette: deep wine, ivory, gilt, ink
   ===================================================================== */

:root {
  /* Brand */
  --wine:       #4a0e1a;
  --wine-deep:  #2c0810;
  --wine-soft:  #6b1623;
  --bordeaux:   #7a1d2e;
  --gilt:       #b8956a;
  --gilt-soft:  #d4b88a;

  /* Neutrals */
  --ivory:      #faf6ef;
  --cream:      #f3ece1;
  --paper:      #fbf8f2;
  --champagne:  #ede4d2;
  --ink:        #1a1413;
  --ink-soft:   #4a3f3c;
  --muted:      #7a6e6a;
  --line:       rgba(26, 20, 19, 0.12);
  --line-soft:  rgba(26, 20, 19, 0.06);

  /* Type */
  --serif: "Cormorant Garamond", "Adobe Caslon Pro", Garamond, Georgia, "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;

  /* Spacing */
  --container: 1280px;
  --gutter: clamp(20px, 4vw, 56px);
  --section-y: clamp(56px, 7vw, 110px);

  /* Motion */
  --ease: cubic-bezier(.2,.7,.2,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; height: auto; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: 0; }
a { color: inherit; text-decoration: none; transition: color .25s var(--ease), opacity .25s var(--ease); }
ul, ol { margin: 0; padding: 0; list-style: none; }
p { margin: 0 0 1em; }

::selection { background: var(--wine); color: var(--ivory); }

/* ---------- Typography utilities ---------- */
.eyebrow,
.section-label,
.detail-key,
.footer-heading,
.brand-word,
.hero-caption {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-soft);
}

.section-title,
.display,
.display-sm {
  font-family: var(--serif);
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.005em;
  line-height: 1.04;
  margin: 0;
}
.display    { font-size: clamp(48px, 8.4vw, 112px); }
.display-sm { font-size: clamp(36px, 5.6vw, 72px); }
.section-title {
  font-size: clamp(32px, 4.6vw, 56px);
  line-height: 1.1;
}
.section-title em,
.display em,
.display-sm em {
  font-style: italic;
  color: var(--wine);
  font-weight: 400;
}

/* Section title rendered as the logo wordmark image */
.section-title--logo {
  display: block;
  line-height: 1;
}
.section-title--logo img {
  display: block;
  height: clamp(38px, 5.2vw, 64px);
  width: auto;
  max-width: 100%;
}

.muted { color: var(--muted); }
.paragraph-lead { font-size: clamp(17px, 1.4vw, 19px); color: var(--ink-soft); }
.paragraph-quote {
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 26px);
  font-style: italic;
  color: var(--wine);
  line-height: 1.45;
  margin-top: 1.6em;
  padding-top: 1.6em;
  border-top: 1px solid var(--line);
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.section-head { max-width: 760px; margin-bottom: clamp(48px, 6vw, 80px); }
.section-label { display: inline-block; margin-bottom: 18px; }

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1.1s var(--ease), transform 1.1s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Announcement bar ---------- */
.announcement {
  background: var(--wine);
  color: var(--ivory);
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 11px 16px;
}
.announcement p { margin: 0; opacity: 0.95; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 246, 239, 0.78);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line-soft);
  transition: background .3s var(--ease), border-color .3s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(250, 246, 239, 0.92);
  border-bottom-color: var(--line);
}
.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding-top: 18px;
  padding-bottom: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--wine);
}
/* Brand mark uses the colored PNG artwork.
   Height drives the size; img preserves its native aspect ratio. */
.brand-mark {
  display: inline-flex;
  align-items: center;
  height: 44px;
  transition: transform .5s var(--ease);
}
.brand-mark img {
  height: 100%;
  width: auto;
  display: block;
}
.brand:hover .brand-mark { transform: rotate(-4deg); }

/* Wordmark uses the exact artwork from the supplied logo PNG so the
   typography matches the brand identity precisely. */
.brand-word-img {
  height: 22px;
  width: auto;
  display: block;
}
.brand-large .brand-mark { height: 56px; }
.brand-large .brand-word-img { height: 28px; }

/* Tighter sizing on phones */
@media (max-width: 520px) {
  .brand-mark { height: 36px; }
  .brand-word-img { height: 17px; }
}

.nav-primary {
  justify-self: center;
  display: flex;
  gap: clamp(20px, 3vw, 36px);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.nav-primary a { position: relative; padding: 6px 2px; }
.nav-primary a::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1px; background: var(--wine);
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease);
}
.nav-primary a:hover { color: var(--wine); }
.nav-primary a:hover::after { transform: scaleX(1); }

.header-actions {
  justify-self: end;
  display: flex; align-items: center; gap: 22px;
}
.link-quiet {
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-soft);
}
.link-quiet:hover { color: var(--wine); }
.icon-btn {
  position: relative;
  display: grid; place-items: center;
  width: 36px; height: 36px;
  color: var(--ink);
  border-radius: 50%;
  transition: background .2s var(--ease), color .2s var(--ease);
}
.icon-btn:hover { color: var(--wine); background: rgba(74, 14, 26, 0.06); }
.cart-count {
  position: absolute; top: -2px; right: -2px;
  background: var(--wine);
  color: var(--ivory);
  font-size: 9px;
  letter-spacing: 0;
  min-width: 16px; height: 16px;
  display: grid; place-items: center;
  border-radius: 50%;
  padding: 0 4px;
  font-weight: 600;
  transition: transform .25s var(--ease);
}
.icon-btn.bump .cart-count { transform: scale(1.2); }

@media (max-width: 880px) {
  .nav-primary { display: none; }
  .header-inner { grid-template-columns: auto 1fr auto; }
  .nav-primary { justify-self: start; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  padding: 18px 36px;
  font-size: 12px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 0;
  transition: all .35s var(--ease);
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--wine);
  color: var(--ivory);
  border: 1px solid var(--wine);
}
.btn-primary::after {
  content: "";
  position: absolute; inset: 0;
  background: var(--wine-deep);
  transform: translateY(101%);
  transition: transform .45s var(--ease);
  z-index: 0;
}
.btn-primary span { position: relative; z-index: 1; }
.btn-primary:hover::after { transform: translateY(0); }
.btn-primary:hover { color: var(--gilt-soft); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn-ghost:hover {
  border-color: var(--wine);
  color: var(--wine);
}
.btn-block { width: 100%; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding-top: clamp(40px, 6vw, 80px);
  padding-bottom: clamp(80px, 9vw, 140px);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -10%; right: -20%;
  width: 70vw; height: 70vw;
  max-width: 900px; max-height: 900px;
  background: radial-gradient(closest-side, rgba(122, 29, 46, 0.12), transparent 70%);
  filter: blur(20px);
  z-index: 0;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
  z-index: 1;
}
.hero-copy { padding-right: clamp(0px, 2vw, 24px); }
.eyebrow {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--ink-soft);
}
.hero h1 { margin-bottom: 28px; }
.lede {
  font-family: var(--serif);
  font-size: clamp(19px, 1.7vw, 22px);
  font-style: italic;
  color: var(--ink-soft);
  max-width: 460px;
  line-height: 1.55;
  margin-bottom: 48px;
}

.hero-meta { display: flex; flex-direction: column; gap: 28px; }
.price-block {
  display: flex; align-items: baseline; flex-wrap: wrap;
  gap: 10px 0;
  font-family: var(--serif);
}
.price-currency { font-size: 22px; color: var(--ink-soft); margin-right: 6px; }
.price-amount   { font-size: clamp(36px, 4vw, 44px); font-weight: 400; line-height: 1; }
.price-detail   {
  margin-left: 16px; padding-left: 16px;
  font-family: var(--sans); font-size: 11px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted);
  border-left: 1px solid var(--line);
  white-space: nowrap;
}
/* When the price block wraps (narrow screens), the detail jumps below —
   replace the left border separator with a top spacer */
@media (max-width: 420px) {
  .price-detail {
    margin-left: 0; padding-left: 0;
    border-left: 0;
    width: 100%;
  }
}

.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-bullets {
  display: flex; flex-wrap: wrap; gap: 22px 28px;
  font-size: 12px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--muted);
  margin-top: 12px;
}
.hero-bullets li {
  display: inline-flex; align-items: center; gap: 8px;
}
.hero-bullets li::before {
  content: ""; width: 4px; height: 4px;
  background: var(--gilt); border-radius: 50%;
}

.hero-figure {
  position: relative;
  margin: 0;
}
.hero-image-wrap {
  position: relative;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(184, 149, 106, 0.18), transparent 60%),
    linear-gradient(180deg, var(--cream), var(--champagne));
  aspect-ratio: 1 / 1.05;
  display: grid; place-items: center;
  overflow: hidden;
}
.hero-image-wrap::before,
.hero-image-wrap::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(184, 149, 106, 0.3);
  pointer-events: none;
}
.hero-image-wrap::after {
  inset: 24px;
  border-color: rgba(184, 149, 106, 0.15);
}
.hero-image-wrap img {
  width: 88%; height: auto;
  filter: drop-shadow(0 30px 50px rgba(74, 14, 26, 0.18));
  transition: transform 1.2s var(--ease);
}
.hero-figure:hover .hero-image-wrap img { transform: scale(1.02); }
.hero-caption {
  text-align: center;
  margin-top: 18px;
  color: var(--muted);
}

.hero-scroll {
  position: absolute;
  left: var(--gutter); bottom: 24px;
  display: flex; align-items: center; gap: 14px;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero-scroll-line {
  display: inline-block; width: 56px; height: 1px;
  background: linear-gradient(90deg, var(--wine), transparent);
  position: relative; overflow: hidden;
}
.hero-scroll-line::after {
  content: ""; position: absolute; inset: 0;
  background: var(--ivory);
  animation: scrollLine 2.6s var(--ease) infinite;
}
@keyframes scrollLine {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-copy { order: 2; padding-right: 0; }
  .hero-figure { order: 1; }
  .hero-scroll { display: none; }
}

/* ---------- Marquee ---------- */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  overflow: hidden;
  padding: 22px 0;
}
.marquee-track {
  display: inline-flex;
  gap: clamp(28px, 4vw, 56px);
  animation: marquee 38s linear infinite;
  white-space: nowrap;
  font-size: 11px;
  letter-spacing: 0.42em;
  color: var(--ink-soft);
  font-weight: 500;
}
.marquee-track > span:nth-child(odd) { font-family: var(--serif); font-style: italic; letter-spacing: 0.24em; font-size: 14px; }
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ---------- Atmospheric vine banner ---------- */
.banner-strip {
  position: relative;
  width: 100%;
  height: clamp(180px, 22vw, 320px);
  overflow: hidden;
  background: var(--wine-deep);
  isolation: isolate;
}
.banner-strip img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Keep the natural look — just a touch of warmth and contrast */
  filter: saturate(1.02) contrast(1.04) brightness(0.96);
  transition: transform 1.8s var(--ease);
}
.banner-strip:hover img { transform: scale(1.03); }
/* Very subtle warm wash for palette cohesion — almost imperceptible,
   just enough to keep the strip from feeling foreign to the wine palette. */
.banner-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(74, 14, 26, 0.06) 0%,
    rgba(74, 14, 26, 0.02) 50%,
    rgba(74, 14, 26, 0.10) 100%);
  pointer-events: none;
  z-index: 1;
}
/* Editorial vignette + ivory edge fade so the strip melts into the
   marquee above and the story below without any hard seams. */
.banner-strip::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 130% 95% at center, transparent 55%, rgba(20, 6, 10, 0.22) 100%),
    linear-gradient(180deg, var(--paper) 0%, transparent 14%, transparent 86%, var(--ivory) 100%);
  pointer-events: none;
  z-index: 2;
}

/* ---------- Story ---------- */
.story {
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
}
.story-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.story-aside { position: sticky; top: 110px; }
.story-aside .section-title { margin-top: 18px; }
.story-body p { font-size: 17px; color: var(--ink-soft); }

@media (max-width: 880px) {
  .story-grid { grid-template-columns: 1fr; }
  .story-aside { position: static; }
}

/* ---------- The Origin (vineyard diptych) ---------- */
.origin {
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
  background: var(--ivory);
  position: relative;
}
.origin-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(48px, 6vw, 80px);
}
.origin-head .section-label { display: inline-block; margin-bottom: 18px; }
.origin-head .section-title { margin-bottom: 22px; }
.origin-head .muted {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.55;
}

/* Full-bleed diptych. The parent <section> has no horizontal padding,
   so the gallery naturally spans the full viewport width. */
.origin-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
.origin-gallery figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  background: var(--wine-deep);
}
.origin-gallery img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  transition: transform 1.6s var(--ease), filter 1.6s var(--ease);
  filter: saturate(1.05) contrast(1.02);
}
.origin-gallery figure:hover img { transform: scale(1.04); }
.origin-gallery figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(20, 8, 12, 0.55) 100%);
  pointer-events: none;
}
.origin-gallery figcaption {
  position: absolute;
  bottom: clamp(20px, 3vw, 32px);
  left: clamp(20px, 3vw, 36px);
  right: clamp(20px, 3vw, 36px);
  color: var(--ivory);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 500;
  z-index: 1;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}
.origin-coda {
  text-align: center;
  max-width: 600px;
  margin: clamp(48px, 6vw, 80px) auto 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 2vw, 26px);
  color: var(--wine);
  line-height: 1.5;
}
@media (max-width: 768px) {
  .origin-gallery { grid-template-columns: 1fr; gap: 4px; }
  .origin-gallery img { aspect-ratio: 4 / 5; }
}

/* ---------- Science ---------- */
.science {
  background: var(--wine-deep);
  color: var(--ivory);
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
  position: relative;
}
.science .section-label { color: var(--gilt-soft); }
.science .section-title { color: var(--ivory); }
.science .section-title em { color: var(--gilt-soft); }
.science p { color: rgba(250, 246, 239, 0.78); }
.science-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.science-figure { margin: 0; overflow: hidden; }
.science-figure img {
  width: 100%; height: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  filter: contrast(1.05) saturate(1.05);
  transition: transform 1.4s var(--ease);
}
.science-figure:hover img { transform: scale(1.04); }

.spec-pairs {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin-top: 36px; padding-top: 36px;
  border-top: 1px solid rgba(250, 246, 239, 0.14);
}
.spec-pairs dt {
  font-size: 10px; letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gilt-soft);
  margin-bottom: 8px;
}
.spec-pairs dd {
  margin: 0;
  font-family: var(--serif);
  font-size: 18px;
  color: var(--ivory);
  line-height: 1.4;
}
@media (max-width: 880px) {
  .science-grid { grid-template-columns: 1fr; }
  .spec-pairs { grid-template-columns: 1fr; gap: 18px; }
}

/* ---------- Healthy Aging / Ingredient ---------- */
.ingredient {
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
  background: var(--paper);
}
.ingredient-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.ingredient-copy .section-label { display: inline-block; margin-bottom: 18px; }
.ingredient-copy .section-title { margin-bottom: 28px; }
.ingredient-copy p { font-size: 17px; color: var(--ink-soft); line-height: 1.7; }
.ingredient-copy .paragraph-lead { color: var(--ink); font-size: 18px; }
.ingredient-figure { margin: 0; overflow: hidden; position: relative; }
.ingredient-figure img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  transition: transform 1.6s var(--ease);
}
.ingredient-figure:hover img { transform: scale(1.04); }

@media (max-width: 880px) {
  .ingredient-grid { grid-template-columns: 1fr; }
  .ingredient-figure { order: -1; } /* image leads on mobile */
}

/* ---------- Features ---------- */
.features {
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
}
.feature-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.feature {
  padding: 48px 30px 56px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: background .35s var(--ease);
}
.feature:nth-child(4n) { border-right: 0; }
.feature:hover { background: var(--paper); }
.feature-num {
  display: inline-block;
  font-family: var(--serif);
  font-size: 13px;
  font-style: italic;
  color: var(--gilt);
  margin-bottom: 24px;
  letter-spacing: 0.06em;
}
.feature h3 {
  font-family: var(--serif);
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 400;
  margin: 0 0 14px;
  letter-spacing: -0.005em;
  line-height: 1.2;
}
.feature p {
  margin: 0;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
}

@media (max-width: 1040px) {
  .feature-list { grid-template-columns: 1fr 1fr; }
  .feature:nth-child(4n) { border-right: 1px solid var(--line); }
  .feature:nth-child(2n) { border-right: 0; }
}
@media (max-width: 600px) {
  .feature-list { grid-template-columns: 1fr; }
  .feature { border-right: 0 !important; padding: 36px 8px 40px; }
}

/* Two-step variant for "How to Use" — always 2 columns on desktop,
   single column on phones. */
.feature-list--steps {
  grid-template-columns: 1fr 1fr;
}
.feature-list--steps .feature:nth-child(2n) { border-right: 0; }
@media (max-width: 600px) {
  .feature-list--steps { grid-template-columns: 1fr; }
}

/* ---------- Image feature ---------- */
.image-feature {
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
  background: var(--paper);
}
.image-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.image-feature-text { padding-right: clamp(0px, 4vw, 60px); }
.image-feature-text .display-sm { margin: 18px 0 24px; }
.image-feature-img { margin: 0; overflow: hidden; }
.image-feature-img img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  background: #fff;
  transition: transform 1.4s var(--ease);
}
.image-feature-img:hover img { transform: scale(1.03); }

@media (max-width: 880px) {
  .image-feature-grid { grid-template-columns: 1fr; }
  .image-feature-text { padding-right: 0; }
}

/* ---------- Details ---------- */
.details {
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
}
.details-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.detail-card {
  padding: 36px 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.detail-key { margin: 0 0 10px; }
.detail-value {
  margin: 0;
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.45;
  color: var(--ink);
}
@media (max-width: 880px) {
  .details-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .details-grid { grid-template-columns: 1fr; }
}

/* ---------- Contact ---------- */
.contact {
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
  background: var(--paper);
}
.contact-inner { max-width: 720px; }
.contact-head { text-align: center; margin-bottom: clamp(40px, 5vw, 64px); }
.contact-head .section-label { display: inline-block; margin-bottom: 18px; }
.contact-head .section-title { margin-bottom: 22px; }
.contact-intro {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(17px, 1.4vw, 19px);
  color: var(--ink-soft);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.55;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field label {
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.form-field input,
.form-field textarea {
  font: 400 15px var(--sans);
  color: var(--ink);
  background: var(--ivory);
  border: 1px solid var(--line);
  padding: 14px 16px;
  border-radius: 0;
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.form-field textarea {
  min-height: 130px;
  resize: vertical;
  font-family: var(--sans);
  line-height: 1.55;
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--wine);
  background: #fff;
}
.form-footer {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.form-status {
  margin: 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--muted);
  min-height: 1.4em;
}
.form-status.is-success { color: var(--wine); }
.form-status.is-error   { color: #a83232; }
.btn[disabled] { opacity: 0.7; cursor: progress; }

@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
}

/* ---------- Editorial quote ---------- */
.editorial {
  background: linear-gradient(180deg, var(--cream) 0%, var(--paper) 100%);
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
}
.editorial-figure {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.editorial-figure blockquote {
  margin: 0;
}
.editorial-figure blockquote p {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(26px, 3.6vw, 44px);
  line-height: 1.3;
  color: var(--ink);
  margin: 0;
}
.quote-mark {
  font-family: var(--serif);
  font-style: normal;
  font-size: 1.2em;
  color: var(--gilt);
  line-height: 0;
  vertical-align: -0.1em;
  margin-right: 0.05em;
}
.quote-mark.close { margin-left: 0.05em; margin-right: 0; }

.editorial-figure figcaption {
  margin-top: 36px;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: inline-flex; align-items: center; gap: 14px; flex-wrap: wrap;
  justify-content: center;
}
.editorial-divider { color: var(--gilt); }

/* ---------- Purchase ---------- */
.purchase {
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
}
.purchase-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.purchase-image {
  background:
    radial-gradient(ellipse at 50% 30%, rgba(184, 149, 106, 0.22), transparent 60%),
    linear-gradient(180deg, var(--cream), var(--champagne));
  aspect-ratio: 1/1.05;
  display: grid; place-items: center;
  position: relative;
  overflow: hidden;
}
.purchase-image::before {
  content: ""; position: absolute; inset: 18px;
  border: 1px solid rgba(184, 149, 106, 0.3);
}
.purchase-image img {
  width: 80%;
  filter: drop-shadow(0 30px 50px rgba(74, 14, 26, 0.18));
}

.purchase-copy .section-title { margin: 14px 0 22px; }

.purchase-card {
  margin-top: 36px;
  padding: 32px;
  background: var(--paper);
  border: 1px solid var(--line);
}
.purchase-card-row {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 16px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.purchase-product {
  margin: 0 0 6px;
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.2;
}
.purchase-meta {
  margin: 0;
  font-size: 12px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--muted);
}
.purchase-price {
  margin: 0;
  font-family: var(--serif);
  font-size: 32px;
  color: var(--ink);
  white-space: nowrap;
}

.qty-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  margin-bottom: 22px;
}
.qty-label {
  font-size: 11px; letter-spacing: 0.26em;
  text-transform: uppercase; color: var(--ink-soft);
}
.qty-stepper {
  display: inline-flex; align-items: center;
  border: 1px solid var(--line);
  background: var(--ivory);
}
.qty-btn {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  font-size: 16px;
  color: var(--ink);
  transition: background .2s var(--ease);
}
.qty-btn:hover { background: var(--cream); color: var(--wine); }
.qty-input {
  width: 44px; height: 40px;
  text-align: center;
  border: 0;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  background: transparent;
  font: 500 14px var(--sans);
  color: var(--ink);
}
.qty-input:focus { outline: none; background: var(--cream); }

.trust-row {
  display: flex; flex-wrap: wrap; gap: 22px;
  margin-top: 22px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.trust-row li {
  display: inline-flex; align-items: center; gap: 8px;
}

.purchase-tagline {
  margin-top: 28px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--wine);
  text-align: center;
}

@media (max-width: 880px) {
  .purchase-inner { grid-template-columns: 1fr; }
  .purchase-image { order: 1; }
  .purchase-copy { order: 2; }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--wine-deep);
  color: var(--cream);
  padding-top: clamp(72px, 9vw, 120px);
  padding-bottom: 36px;
  position: relative;
}
.site-footer::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gilt), transparent);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(36px, 5vw, 80px);
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(250, 246, 239, 0.1);
  align-items: start;
}
.site-footer .brand { color: var(--gilt-soft); }
.site-footer .brand-word { color: var(--ivory); }
.footer-tag {
  margin-top: 22px; max-width: 360px;
  color: rgba(250, 246, 239, 0.65);
  font-style: italic;
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.5;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-nav a {
  font-size: 14px;
  color: rgba(250, 246, 239, 0.75);
  letter-spacing: 0.02em;
  width: fit-content;
}
.footer-nav a:hover { color: var(--ivory); }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 28px;
  font-size: 12px; letter-spacing: 0.08em;
  color: rgba(250, 246, 239, 0.55);
  flex-wrap: wrap; gap: 14px;
}
.footer-bottom p { margin: 0; }
.footer-legal {
  display: flex; gap: 24px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250, 246, 239, 0.55);
}

@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ---------- Toast ---------- */
.toast {
  position: fixed;
  bottom: 28px; right: 28px;
  background: var(--wine-deep);
  color: var(--ivory);
  padding: 14px 22px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  display: flex; align-items: center; gap: 12px;
  border: 1px solid rgba(184, 149, 106, 0.35);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity .35s var(--ease), transform .35s var(--ease);
  z-index: 100;
}
.toast.is-visible { opacity: 1; transform: translateY(0); }
.toast-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gilt-soft);
}

@media (max-width: 520px) {
  .toast { left: 16px; right: 16px; bottom: 16px; justify-content: center; }
}
