:root {
  --bg: #f1ece0;
  --bg-warm: #ece5d6;
  --ink: #211d18;
  --wine: #6d1622;
  --wine-2: #9a2b2f;
  --gold: #a2823f;
  --muted: #6f675a;
  --dark: #14110c;
  --text-on-dark: #efe9dc;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { -webkit-font-smoothing: antialiased; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  overflow-x: hidden;
}

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

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

/* ---------- Loader ---------- */
#loader {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease;
}
#loader.hidden { opacity: 0; pointer-events: none; }
.loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
}

/* self-drawing wine bottle (adapted from a Uiverse stroke-draw loader) */
.draw-bottle {
  --pathlength: 1000;
  width: 62px;
  height: auto;
  overflow: visible;
}
.draw-bottle path {
  fill: transparent;
  stroke: var(--wine);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 5;
  stroke-dashoffset: var(--pathlength);
  stroke-dasharray: 0 var(--pathlength);
  animation: draw-loader 3.4s cubic-bezier(0.5, 0.1, 0.5, 1) infinite both;
}
@keyframes draw-loader {
  90%, 100% {
    stroke-dashoffset: 0;
    stroke-dasharray: var(--pathlength) 0;
  }
}
.loader-word {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0;
  animation: loader-word-in 1s ease 0.3s forwards;
}
@keyframes loader-word-in {
  to { opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .draw-bottle path { animation-duration: 0.01s; stroke-dashoffset: 0; stroke-dasharray: var(--pathlength) 0; }
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.7rem clamp(1.4rem, 4vw, 3.4rem);
  mix-blend-mode: multiply;
}
.site-header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.brand {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink);
}
.nav-links {
  display: flex;
  gap: 2.4rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--ink);
  opacity: 0.78;
  transition: opacity 0.3s ease;
}
.nav-links a:hover { opacity: 1; }
.nav-cta {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.65rem 1.4rem;
  border: 1px solid rgba(33, 29, 24, 0.4);
  border-radius: 100px;
  transition: background 0.3s ease, color 0.3s ease;
}
.nav-cta:hover { background: var(--ink); color: var(--bg); }

/* ---------- Canvas ---------- */
.canvas-wrap {
  position: fixed;
  inset: 0;
  z-index: 1;
  will-change: transform;
}
#canvas { display: block; width: 100%; height: 100%; }

/* ---------- Dark overlay ---------- */
#dark-overlay {
  position: fixed;
  inset: 0;
  z-index: 2;
  background: var(--dark);
  opacity: 0;
  pointer-events: none;
}

/* ---------- Marquee ---------- */
.marquee-wrap {
  position: fixed;
  bottom: 6vh;
  left: 0;
  width: 100%;
  z-index: 3;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.06;
}
.marquee-text {
  font-family: var(--font-display);
  font-size: 13vw;
  font-weight: 500;
  font-style: italic;
  white-space: nowrap;
  color: var(--wine);
  line-height: 1;
  will-change: transform;
}

/* ---------- Hero overlay (left-anchored, clear of the centred bottle) ---------- */
.hero-overlay {
  position: fixed;
  inset: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  pointer-events: none;
}
.hero-inner {
  padding-left: clamp(1.4rem, 6vw, 6rem);
  max-width: 42vw;
}
.hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.6rem;
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.8rem, 6.4vw, 6.6rem);
  line-height: 0.95;
  letter-spacing: -0.005em;
  color: var(--ink);
}
.hero-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.1rem, 1.9vw, 1.7rem);
  color: var(--muted);
  margin-top: 1.4rem;
  max-width: 24ch;
}
.hero-meta {
  margin-top: 2rem;
  font-size: 0.72rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--wine);
}
.scroll-cue {
  position: absolute;
  bottom: 4vh;
  left: clamp(1.4rem, 6vw, 6rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
}
.scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(var(--muted), transparent);
  animation: scrollpulse 2.2s ease-in-out infinite;
  transform-origin: top;
}
@keyframes scrollpulse {
  0%, 100% { transform: scaleY(0.4); opacity: 0.4; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* masked word reveal */
.wordmask {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  padding-bottom: 0.06em;
  margin-right: 0.24em;
}
.wordmask:last-child { margin-right: 0; }
.wordmask > span { display: inline-block; }

/* ---------- Scroll container & sections ---------- */
#scroll-container {
  position: relative;
  z-index: 5;
  height: 860vh;
}
.scroll-section {
  position: fixed;
  inset: 0;
  z-index: 6;
  display: flex;
  align-items: center;
  pointer-events: none;
  will-change: opacity;
}
.section-inner { max-width: 34vw; }

/* text is placed to the sides so the bottle owns the centre */
.align-left { justify-content: flex-start; padding-left: clamp(1.4rem, 5vw, 5.5rem); }
.align-right { justify-content: flex-end; padding-right: clamp(1.4rem, 5vw, 5.5rem); text-align: right; }
.align-right .section-inner { margin-left: auto; }

.section-label {
  display: inline-block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  color: var(--wine);
  margin-bottom: 1.1rem;
  position: relative;
  padding-bottom: 0.5rem;
}
.section-label::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 44px; height: 1px;
  background: var(--gold);
}
.align-right .section-label::after { left: auto; right: 0; }

.section-heading {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.005em;
  color: var(--ink);
  text-wrap: balance;
}
.section-body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(1rem, 1.15vw, 1.18rem);
  line-height: 1.7;
  color: #4c463c;
  margin-top: 1.5rem;
  max-width: 42ch;
}
.align-right .section-body { margin-left: auto; }

/* ---------- Stats ---------- */
.section-stats {
  justify-content: center;
  text-align: center;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.5rem, 5vw, 5rem);
  padding: 0 6vw;
  max-width: 1200px;
}
.stat { display: flex; flex-direction: column; align-items: center; }
.stat-number {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(3rem, 6.5vw, 6rem);
  line-height: 1;
  color: var(--text-on-dark);
}
.stat-suffix {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--wine-2);
  margin-top: 0.5rem;
}
.stat-label {
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(239, 233, 220, 0.6);
  margin-top: 1rem;
}

/* ---------- CTA ---------- */
.cta-button {
  pointer-events: auto;
  display: inline-block;
  margin-top: 2.2rem;
  padding: 1rem 2.4rem;
  background: var(--wine);
  color: var(--bg);
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: 100px;
  transition: background 0.35s ease, transform 0.35s ease;
}
.cta-button:hover { background: var(--wine-2); transform: translateY(-2px); }
.section-note {
  margin-top: 1.6rem;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .nav-links { display: none; }
  #scroll-container { height: 620vh; }
  .section-inner {
    max-width: 90vw;
    background: linear-gradient(var(--bg), var(--bg));
    background: none;
  }
  .align-left, .align-right {
    justify-content: center;
    padding-left: 1.4rem;
    padding-right: 1.4rem;
    text-align: center;
  }
  .align-right .section-label::after,
  .align-left .section-label::after { left: 50%; right: auto; transform: translateX(-50%); }
  .align-right .section-body, .section-body { margin-left: auto; margin-right: auto; }
  .scroll-section:not(.section-stats) .section-inner {
    padding: 2rem 1.6rem;
    border-radius: 4px;
    background: rgba(241, 236, 224, 0.72);
    backdrop-filter: blur(3px);
  }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 1.5rem; }

  .hero-overlay {
    align-items: flex-end;
    background: linear-gradient(to top,
      var(--bg) 24%,
      rgba(241, 236, 224, 0.92) 40%,
      rgba(241, 236, 224, 0) 66%);
  }
  .hero-inner { max-width: 92vw; padding: 0 1.6rem 11vh; }
  .hero-eyebrow { font-size: 0.62rem; letter-spacing: 0.26em; margin-bottom: 0.9rem; }
  .hero-title { font-size: clamp(3.4rem, 16vw, 5rem); }
  .hero-tagline { font-size: 1.15rem; margin-top: 1rem; }
  .hero-meta { margin-top: 1.4rem; font-size: 0.66rem; }
  .scroll-cue { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-line { animation: none; }
}

/* ---------- Wine-red ripple cursor ---------- */
#ripple-layer {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  overflow: hidden;
  z-index: 9999;
}
.ripple-dot {
  position: absolute;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  background: rgba(109, 22, 34, 0.55);          /* --wine, translucent */
  box-shadow: 0 0 10px rgba(109, 22, 34, 0.6), 0 0 22px rgba(140, 34, 40, 0.4);
  filter: blur(4px);
  animation: ripple-pop var(--ripple-duration, 1000ms) ease-out forwards;
}
@keyframes ripple-pop {
  0%   { transform: translate(-50%, -50%) scale(0);   opacity: 0.9; }
  100% { transform: translate(-50%, -50%) scale(1);   opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  #ripple-layer { display: none; }
}
@media (hover: none) {
  /* touch devices have no cursor — skip the ripple */
  #ripple-layer { display: none; }
}

/* ==================================================================
   Static content below the scroll experience (scrolls over the
   fixed canvas — opaque, high z-index).
   ================================================================== */
#after {
  position: relative;
  z-index: 20;
  background: var(--bg);
}

/* --- Interactive WebGL gallery --- */
.gallery-section {
  background: var(--dark);
  padding: clamp(3.5rem, 8vh, 6.5rem) 0 clamp(3rem, 6vh, 5rem);
  overflow: hidden;
}
.gallery-head {
  text-align: center;
  padding: 0 1.5rem;
  margin-bottom: clamp(2rem, 4vh, 3.2rem);
}
.gallery-eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--wine-2);
  margin-bottom: 0.8rem;
}
.gallery-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  line-height: 1.02;
  color: var(--text-on-dark);
  letter-spacing: -0.005em;
}
.circular-gallery {
  position: relative;
  width: 100%;
  height: clamp(420px, 62vh, 640px);
  overflow: hidden;
  cursor: grab;
  outline: none;
}
.circular-gallery.is-dragging { cursor: grabbing; }
.circular-gallery canvas { display: block; width: 100%; height: 100%; }
.gallery-hint {
  text-align: center;
  margin-top: clamp(1.5rem, 3vh, 2.4rem);
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(239, 233, 220, 0.5);
}
#after .af-eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  letter-spacing: 0.01em;
  color: var(--wine);
  margin-bottom: 1.1rem;
}
#after .af-eyebrow.light { color: var(--bg); }
.af-reveal { will-change: transform, opacity; }

/* section head shared */
.af-section-head { margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.af-section-head h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 1.03;
  color: var(--ink);
  letter-spacing: -0.005em;
}

/* --- Editorial statement --- */
.af-intro {
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(6rem, 14vh, 12rem) clamp(1.6rem, 6vw, 6rem);
  text-align: center;
}
.af-intro-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(1.8rem, 4vw, 3.6rem);
  line-height: 1.22;
  color: var(--ink);
  letter-spacing: -0.005em;
  text-wrap: balance;
}

/* --- Grape to Glass --- */
.af-craft {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  padding: clamp(3rem, 8vh, 7rem) clamp(1.6rem, 6vw, 6rem);
  max-width: 1500px;
  margin: 0 auto;
}
.af-craft-media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 3px;
}
.af-craft-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}
.af-craft-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 17, 12, 0.55), transparent 42%);
  pointer-events: none;
  z-index: 1;
}
.af-craft-caption {
  position: absolute;
  z-index: 2;
  left: clamp(1.4rem, 3vw, 2.6rem);
  bottom: clamp(1.4rem, 3vw, 2.6rem);
}
.af-craft-caption h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  color: var(--bg);
  line-height: 1;
}
.af-craft-steps { list-style: none; }
.af-craft-steps li {
  display: flex;
  gap: 1.4rem;
  padding: 1.6rem 0;
  border-top: 1px solid rgba(33, 29, 24, 0.14);
}
.af-craft-steps li:last-child { border-bottom: 1px solid rgba(33, 29, 24, 0.14); }
.af-step-num {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  padding-top: 0.5rem;
  min-width: 2rem;
}
.af-craft-steps h4 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.7rem;
  color: var(--ink);
  margin-bottom: 0.3rem;
}
.af-craft-steps p {
  font-weight: 300;
  font-size: 0.98rem;
  line-height: 1.6;
  color: #524b40;
  max-width: 40ch;
}

/* --- The Estate cards --- */
.af-estates {
  padding: clamp(4rem, 9vh, 8rem) clamp(1.6rem, 6vw, 6rem);
  max-width: 1500px;
  margin: 0 auto;
}
.af-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.5rem, 3vw, 3rem);
}
.af-card { cursor: pointer; }
.af-card-media {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 3px;
  margin-bottom: 1.5rem;
}
.af-card-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.af-card:hover .af-card-media img { transform: scale(1.05); }
.af-card-body h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.8rem, 2.6vw, 2.4rem);
  color: var(--ink);
  margin-bottom: 0.6rem;
}
.af-card-body p {
  font-weight: 300;
  color: #524b40;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  max-width: 44ch;
}
.af-link {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--wine);
  position: relative;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--wine);
}

/* --- The Journal --- */
.af-journal {
  padding: clamp(4rem, 9vh, 8rem) clamp(1.6rem, 6vw, 6rem);
  max-width: 1200px;
  margin: 0 auto;
}
.af-articles { list-style: none; }
.af-article {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 3vw, 2.5rem);
  padding: 1.8rem 0;
  border-top: 1px solid rgba(33, 29, 24, 0.14);
  cursor: pointer;
  transition: padding-left 0.4s ease;
}
.af-articles .af-article:last-child { border-bottom: 1px solid rgba(33, 29, 24, 0.14); }
.af-article:hover { padding-left: 0.8rem; }
.af-article-thumb {
  width: clamp(70px, 8vw, 108px);
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 3px;
  flex-shrink: 0;
}
.af-article-thumb img { width: 100%; height: 100%; object-fit: cover; }
/* splash graphic sits on a white bg — multiply blends it into the cream */
.af-article-thumb.is-splash { background: var(--bg); }
.af-article-thumb.is-splash img { object-fit: contain; mix-blend-mode: multiply; }
.af-article-body { flex: 1; }
.af-article-cat {
  display: block;
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.af-article-body h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.3rem, 2.2vw, 1.9rem);
  color: var(--ink);
  line-height: 1.15;
}
.af-article-arrow {
  font-size: 1.4rem;
  color: var(--wine);
  transition: transform 0.4s ease;
}
.af-article:hover .af-article-arrow { transform: translateX(8px); }

/* --- Cellar list --- */
.af-cellar {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  align-items: stretch;
  gap: clamp(2rem, 5vw, 5rem);
  padding: clamp(4rem, 9vh, 8rem) clamp(1.6rem, 6vw, 6rem);
  max-width: 1400px;
  margin: 0 auto;
}
.af-cellar-media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 3px;
  background: var(--bg-warm);
}
.af-cellar-media img { width: 100%; height: 100%; object-fit: cover; }
.af-cellar-copy { align-self: center; max-width: 40ch; }
.af-cellar-copy h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 1.2rem;
}
.af-cellar-copy p {
  font-weight: 300;
  color: #524b40;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.af-signup { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.af-signup input {
  flex: 1;
  min-width: 200px;
  padding: 1rem 1.2rem;
  border: 1px solid rgba(33, 29, 24, 0.28);
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--ink);
  border-radius: 2px;
}
.af-signup input::placeholder { color: #8a8172; }
.af-signup input:focus { outline: none; border-color: var(--wine); }
.af-signup button {
  padding: 1rem 1.8rem;
  background: var(--wine);
  color: var(--bg);
  border: none;
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.35s ease;
}
.af-signup button:hover { background: var(--wine-2); }
.af-fineprint {
  margin-top: 1.2rem;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--muted);
}

/* --- Footer --- */
.af-footer {
  background: var(--dark);
  color: var(--text-on-dark);
  padding: clamp(3.5rem, 8vh, 6rem) clamp(1.6rem, 6vw, 6rem) 2.5rem;
}
.af-footer-top {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(239, 233, 220, 0.16);
}
.af-footer-word {
  display: block;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 2.4rem;
  letter-spacing: 0.02em;
}
.af-footer-tag {
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(239, 233, 220, 0.55);
}
.af-footer-cols {
  display: flex;
  gap: clamp(2.5rem, 6vw, 6rem);
  flex-wrap: wrap;
}
.af-footer-cols > div { display: flex; flex-direction: column; gap: 0.9rem; }
.af-footer-h {
  font-size: 0.66rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--wine-2);
  margin-bottom: 0.3rem;
}
.af-footer-cols a {
  font-size: 0.9rem;
  color: rgba(239, 233, 220, 0.78);
  transition: color 0.3s ease;
}
.af-footer-cols a:hover { color: var(--text-on-dark); }
.af-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: rgba(239, 233, 220, 0.5);
}

/* --- Responsive for after-content --- */
@media (max-width: 860px) {
  .af-craft { grid-template-columns: 1fr; gap: 2.5rem; }
  .af-craft-media { aspect-ratio: 3 / 4; }
  .af-cards { grid-template-columns: 1fr; gap: 2.5rem; }
  .af-cellar { grid-template-columns: 1fr; }
  .af-cellar-media { max-height: 60vh; }
  .af-article-arrow { display: none; }
  .af-footer-top { flex-direction: column; }
}
