/* ------------------------------------------------------------------
   A New Suntory Time — Whisky Advocate digital special feature
   Layout follows "SGS Digital Design-V4"; palette and type follow the
   header art (SGS-Dig-Header.jpg).
   ------------------------------------------------------------------ */

:root {
  --blush: #faede5;
  --blush-deep: #f4e1d6;
  --cream: #fdf7f2;
  --white: #ffffff;
  --burgundy: #7e3132;
  --burgundy-deep: #5e2325;
  --ink: #282424;
  --ink-soft: #4f4747;
  --line: rgba(126, 49, 50, 0.22);

  --font-display: "Marcellus", "Didot", "Bodoni MT", Georgia, serif;
  --font-body: "Jost", "Futura", "Helvetica Neue", Arial, sans-serif;

  --max: 1200px;
  --gutter: clamp(16px, 4vw, 48px);
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0; background: var(--white); color: var(--ink);
  font-family: var(--font-body); font-size: 16px; line-height: 1.6;
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
img, picture { display: block; max-width: 100%; height: auto; }
a { color: var(--burgundy); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }
:focus-visible { outline: 2px solid var(--burgundy); outline-offset: 3px; }

.container { width: min(100% - var(--gutter) * 2, var(--max)); margin-inline: auto; }
.container--narrow { width: min(100% - var(--gutter) * 2, 760px); margin-inline: auto; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; }

/* ---------- Type ---------- */

h1, h2, h3 {
  font-family: var(--font-display); font-weight: 400; line-height: 1.08;
  letter-spacing: 0.005em; color: var(--burgundy); margin: 0 0 1rem; text-wrap: balance;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); }
p { margin: 0 0 1em; }

.label {
  font-family: var(--font-body); font-weight: 500; font-size: 0.72rem;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--burgundy); margin: 0;
}
.eyebrow {
  display: flex; align-items: center; justify-content: center; gap: 1.2rem;
  font-family: var(--font-body); font-weight: 500; font-size: 0.8rem;
  letter-spacing: 0.3em; text-transform: uppercase; color: var(--burgundy); margin: 0;
}
.eyebrow::before, .eyebrow::after { content: ""; flex: 0 0 clamp(40px, 8vw, 120px); height: 1px; background: var(--burgundy); opacity: 0.6; }
.eyebrow--left { justify-content: flex-start; }
.eyebrow--left::after { display: none; }
.eyebrow--left::before { flex-basis: 34px; }

.section-title { text-align: center; margin: 0 0 clamp(1.5rem, 4vw, 3rem); }
.copy p { font-size: 0.98rem; line-height: 1.7; color: var(--ink-soft); }
.copy p:last-child { margin-bottom: 0; }

/* ---------- Top bar ---------- */

.topbar { background: var(--white); position: sticky; top: 0; z-index: 50; border-bottom: 1px solid rgba(0, 0, 0, 0.06); }
.topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 70px; }
.topbar__brand img { height: 34px; width: auto; }
.topbar__sponsor { display: flex; align-items: center; gap: 0.9rem; }
.topbar__sponsor span { font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-soft); font-weight: 500; }
.topbar__sponsor img { height: 26px; width: auto; }
@media (max-width: 560px) { .topbar__sponsor span { display: none; } .topbar__brand img { height: 26px; } .topbar__sponsor img { height: 22px; } }

/* ---------- Hero (full bleed, 8:3 composition from the header art) ---------- */

.hero {
  position: relative; overflow: hidden; isolation: isolate;
  background: var(--blush);
  aspect-ratio: 8 / 3; min-height: 360px;
}
.hero__gl { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; opacity: 0; transition: opacity 1.4s var(--ease); }
.hero__gl.is-live { opacity: 1; }
.hero__inner { position: absolute; inset: 0; z-index: 1; }

/* Lockup occupies the same box it does in the header art (x 2.8%-46.8%, centred at 41.5% height) */
.hero__lockup {
  position: absolute; left: 2.8%; top: 20%; width: 44%; height: 43%; margin: 0; display: flex; align-items: center;
  transform: translate(calc(var(--px, 0) * 10px), calc(var(--py, 0) * 6px)); transition: transform 0.9s var(--ease-out);
}

/* The lockup, sliced into its glyphs so the exact artwork can be choreographed */
.lk { position: relative; width: 100%; aspect-ratio: 703 / 164; }
.lk img { position: absolute; display: block; height: auto; }
.lk__rule--left  { transform-origin: 100% 50%; }
.lk__rule--right { transform-origin: 0% 50%; }
.lk__sheen {
  position: absolute; inset: 0; pointer-events: none; opacity: 0;
  background: linear-gradient(105deg, transparent 38%, rgba(255, 244, 236, 0.85) 50%, transparent 62%);
  background-size: 300% 100%; background-position: 200% 0;
  -webkit-mask-image: url('../img/hero-lockup.png'); mask-image: url('../img/hero-lockup.png');
  -webkit-mask-size: 100% 100%; mask-size: 100% 100%; -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
}
.js .lk__letter  { opacity: 0; transform: translateY(70%); filter: blur(8px); }
.js .lk__eyebrow { opacity: 0; transform: translateY(-50%); }
.js .lk__rule    { opacity: 0; transform: scaleX(0); }
.js .lk__sub     { opacity: 0; transform: translateY(45%); filter: blur(4px); }
.is-ready .lk__letter  { animation: lkLetter 1.15s var(--ease-out) forwards; animation-delay: calc(0.2s + var(--i, 0) * 60ms); }
.is-ready .lk__eyebrow { animation: lkEyebrow 0.9s var(--ease-out) 1.05s forwards; }
.is-ready .lk__rule    { animation: lkRule 0.9s var(--ease-out) 1.15s forwards; }
.is-ready .lk__sub     { animation: lkSub 1.0s var(--ease-out) 1.3s forwards; }
.is-ready .lk__sheen   { animation: lkSheen 8s ease-in-out 2.6s infinite; }
@keyframes lkLetter  { 0% { opacity: 0; transform: translateY(70%); filter: blur(8px); } 55% { filter: blur(0); } 100% { opacity: 1; transform: none; filter: blur(0); } }
@keyframes lkEyebrow { from { opacity: 0; transform: translateY(-50%); } to { opacity: 1; transform: none; } }
@keyframes lkRule    { from { opacity: 0; transform: scaleX(0); } to { opacity: 1; transform: none; } }
@keyframes lkSub     { from { opacity: 0; transform: translateY(45%); filter: blur(4px); } to { opacity: 1; transform: none; filter: blur(0); } }
@keyframes lkSheen   { 0% { opacity: 1; background-position: 200% 0; } 30% { background-position: -100% 0; opacity: 1; } 31% { opacity: 0; } 100% { opacity: 0; background-position: -100% 0; } }

/* Bottles fill the full height, flush to the right and bottom edges */
.hero__art { position: absolute; right: 0; bottom: 0; height: 100%; }
.hero__art picture {
  height: 100%; transform-origin: 50% 100%;
  transform: translateX(calc(var(--px, 0) * -10px)) scale(1.03); transition: transform 0.9s var(--ease-out);
}
.hero__art img {
  height: 100%; width: auto; display: block;
  mix-blend-mode: multiply;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 14%);
          mask-image: linear-gradient(to right, transparent 0, #000 14%);
}

.js .hero__art { opacity: 0; }
.is-ready .hero__art { animation: heroArt 1.6s var(--ease-out) 0.35s forwards; }
@keyframes heroRise { from { opacity: 0; transform: translateY(24px); filter: blur(6px); } to { opacity: 1; transform: none; filter: blur(0); } }
@keyframes heroFade { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
@keyframes heroArt  { from { opacity: 0; transform: translateX(40px); } to { opacity: 1; transform: none; } }

@media (max-width: 860px) {
  .hero { aspect-ratio: auto; min-height: 0; }
  .hero__inner { position: static; }
  .hero__lockup { position: static; width: 100%; height: auto; padding: 2.5rem var(--gutter) 1.5rem; justify-content: center; transform: none; }
  .lk { max-width: 480px; }
  .hero__art { position: static; height: auto; }
  .hero__art picture { height: auto; }
  .hero__art img {
    width: 100%; height: auto;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 12%);
            mask-image: linear-gradient(to bottom, transparent 0, #000 12%);
  }
}

/* ---------- Curtain, progress ---------- */

.curtain { display: none; }
.js .curtain {
  display: grid; position: fixed; inset: 0; z-index: 200; background: var(--burgundy);
  place-items: center; color: var(--blush);
  transition: transform 1.1s cubic-bezier(0.77, 0, 0.18, 1);
}
.curtain__mark { font-family: var(--font-display); letter-spacing: 0.35em; text-transform: uppercase; font-size: 0.95rem; opacity: 0; animation: heroFade 0.8s var(--ease) 0.1s forwards; }
.curtain.is-done { transform: translateY(-101%); }
.curtain.is-done .curtain__mark { animation: none; opacity: 0; transition: opacity 0.3s; }
.progress { position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 120; background: var(--burgundy); transform-origin: left; transform: scaleX(0); }

/* ---------- Marquee (runway strip) ---------- */

.marquee {
  background: var(--burgundy); color: var(--blush); overflow: hidden; padding: 0.85rem 0;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}
.marquee--light { background: var(--white); color: var(--burgundy); border-top: 1px solid var(--line); margin: 0; }
.marquee__track {
  display: flex; width: max-content; gap: 3.5rem; padding-right: 3.5rem; animation: marquee 48s linear infinite;
  font-family: var(--font-display); font-size: 0.85rem; letter-spacing: 0.3em; text-transform: uppercase; white-space: nowrap;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track span { display: inline-flex; align-items: center; gap: 3.5rem; }
.marquee__track span::after { content: "◆"; font-size: 0.45em; opacity: 0.6; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Sections ---------- */

.section { padding: clamp(3rem, 7vw, 6rem) 0; }
.section--blush { background: var(--blush); }

/* Intro: image with caption box + copy */
.intro__grid { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(0, 1fr); gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.intro__media { position: relative; }
.intro__media img { width: 100%; height: auto; }
.intro__caption {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  background: var(--burgundy); color: var(--blush); text-align: center;
  font-family: var(--font-display); font-size: clamp(1rem, 1.6vw, 1.35rem); line-height: 1.25;
  padding: 1.1rem 1.6rem; width: min(78%, 300px); z-index: 2;
  box-shadow: 0 20px 40px -20px rgba(60, 20, 20, 0.6);
}
/* Copy is sized by motion.js (--intro-fs) so its height matches the uncropped collage on desktop */
.intro__copy { font-size: var(--intro-fs, 0.95rem); }
.intro__copy p { font-size: 1em; line-height: 1.62; color: var(--ink-soft); margin-bottom: 0.9em; }
.intro__copy p.lede { color: var(--ink); }
.intro__copy .callout { font-family: var(--font-display); font-size: 1.22em; color: var(--burgundy); line-height: 1.4; margin-bottom: 0; }
@media (max-width: 1024px) {
  .intro__grid { grid-template-columns: 1fr; gap: 2rem; }
  .intro__media { max-width: 600px; margin-inline: auto; width: 100%; }
  .intro__copy { font-size: 0.95rem; max-width: 640px; margin-inline: auto; }
}

/* Stories divider eyebrow */
.divider { padding: 0 0 clamp(1.5rem, 3vw, 2.5rem); }

/* Full-bleed 50/50 trend rows with the title over the photo */
.row { display: grid; grid-template-columns: 1fr 1fr; min-height: clamp(420px, 44vw, 620px); background: var(--blush); }
.row--flip .row__media { order: 2; }
.row__media { position: relative; overflow: hidden; }
.row__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.row__title {
  position: absolute; z-index: 2; left: clamp(1.5rem, 5%, 4rem); right: clamp(1.5rem, 5%, 4rem);
  color: var(--white); text-shadow: 0 2px 30px rgba(0, 0, 0, 0.35);
}
.row__title--top { top: clamp(1.5rem, 6%, 4rem); }
.row__title--bottom { bottom: clamp(1.5rem, 6%, 4rem); }
.row__title--dark { color: var(--burgundy); text-shadow: none; }
.row__title h2 { color: inherit; font-size: clamp(2.2rem, 4.4vw, 3.9rem); line-height: 1; margin: 0 0 0.6rem; max-width: 9em; }
.row__title .label { color: inherit; opacity: 0.95; }
.row__media::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(to top, rgba(20, 8, 8, 0.45), transparent 55%); pointer-events: none; }
.row__media--light::after { display: none; }
.row__media--light img { object-position: 0% 50%; }
.row__copy { display: flex; align-items: center; padding: clamp(2.5rem, 6vw, 5rem) clamp(1.5rem, 7%, 6rem); }
.row__copy p { font-size: 0.98rem; line-height: 1.75; color: var(--ink-soft); margin: 0; max-width: 34em; }
@media (max-width: 860px) {
  .row, .row--flip { grid-template-columns: 1fr; min-height: 0; }
  .row--flip .row__media { order: 0; }
  .row__media { aspect-ratio: 4 / 3; }
  .row__copy { padding: 2rem var(--gutter) 2.5rem; }
}

/* ---------- Story cards ---------- */

.stories__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(1.25rem, 3vw, 2.5rem); }
@media (max-width: 860px) { .stories__grid { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; } }
.story {
  display: flex; flex-direction: column; background: var(--white); color: inherit; text-decoration: none;
  box-shadow: 0 10px 30px -18px rgba(60, 20, 20, 0.35);
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
}
.story:hover, .story:focus-visible { text-decoration: none; transform: translateY(-6px); box-shadow: 0 34px 50px -30px rgba(94, 35, 37, 0.5); }
.story__media { aspect-ratio: 4 / 3; overflow: hidden; }
.story__media img { width: 100%; height: 100%; object-fit: cover; }
.story__body { padding: 1.4rem 1.5rem 1.4rem; display: grid; grid-template-columns: 1fr auto; column-gap: 1rem; align-items: end; flex: 1; }
.story__body h3 { margin: 0 0 0.5rem; font-size: clamp(1.35rem, 2vw, 1.75rem); line-height: 1.1; min-height: 2.2em; display: flex; align-items: flex-end; }
.story__body .label { font-size: 0.66rem; line-height: 1.5; }
.story__arrow { font-size: 1.6rem; line-height: 1; color: var(--burgundy); transition: transform 0.4s var(--ease-out); }
.story:hover .story__arrow { transform: translateX(6px); }

/* ---------- Drinks for Every Moment ---------- */

.drinks { background: var(--white); }
.drinks__hint { text-align: center; margin: -1rem 0 2.5rem; font-size: 0.68rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--ink-soft); font-weight: 500; }
.drinks__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(1rem, 3vw, 2.5rem) clamp(0.75rem, 2vw, 1.5rem); list-style: none; padding: 0; margin: 0; }
@media (max-width: 1000px) { .drinks__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 640px)  { .drinks__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

.drink { position: relative; display: flex; flex-direction: column; background: var(--white); border-radius: 4px; transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out); }
.drink__media { position: relative; aspect-ratio: 4 / 5; overflow: hidden; }
.drink__media img { position: absolute; top: 4%; left: 6%; width: 88%; height: 92%; object-fit: contain; object-position: center bottom; transition: transform 0.9s var(--ease-out), filter 0.5s var(--ease); }
.drink:hover .drink__media img, .drink.is-open .drink__media img { transform: scale(1.04); }
.drink__label { padding: 0.75rem 0.5rem 0.9rem; text-align: center; margin: 0; font-weight: 500; font-size: 0.8rem; letter-spacing: 0.06em; color: var(--ink); line-height: 1.35; }
.drink__label small { display: block; font-weight: 400; font-size: 0.78rem; color: var(--ink-soft); letter-spacing: 0.04em; }

.drink__toggle { position: absolute; inset: 0; width: 100%; height: 100%; background: transparent; border: 0; padding: 0; margin: 0; cursor: pointer; z-index: 2; color: transparent; font: inherit; border-radius: 4px; }
.drink__toggle:focus-visible { outline: 2px solid var(--burgundy); outline-offset: 2px; }
.drink__reveal {
  position: absolute; inset: 0; z-index: 3; border-radius: 4px;
  background: rgba(126, 49, 50, 0.95); color: var(--white);
  padding: clamp(0.9rem, 2vw, 1.4rem); display: flex; flex-direction: column; justify-content: flex-end; gap: 0.6rem;
  opacity: 0; transform: translateY(12px); transition: opacity 0.4s var(--ease), transform 0.5s var(--ease-out); pointer-events: none;
}
.drink__reveal h3 { color: var(--white); font-size: clamp(1.05rem, 1.5vw, 1.3rem); margin: 0 0 0.2rem; line-height: 1.15; }
.drink__reveal p { font-size: clamp(0.8rem, 1.1vw, 0.9rem); line-height: 1.5; margin: 0; color: rgba(255, 255, 255, 0.92); }
.drink__reveal .btn { align-self: flex-start; margin-top: 0.3rem; }
@media (hover: hover) and (pointer: fine) {
  .drink:hover .drink__reveal, .drink:focus-within .drink__reveal { opacity: 1; transform: none; pointer-events: auto; }
}
.drink.is-open .drink__reveal { opacity: 1; transform: none; pointer-events: auto; }
.drink__label { transition: opacity 0.3s var(--ease); }
.drink.is-open .drink__label { opacity: 0; }
@media (hover: hover) and (pointer: fine) { .drink:hover .drink__label, .drink:focus-within .drink__label { opacity: 0; } }
.drink.is-open .drink__toggle { z-index: 4; }
.drink.is-open .drink__reveal { z-index: 5; }
.drink.is-open .drink__reveal .btn { position: relative; z-index: 6; }
.drink__close { display: none; position: absolute; top: 0.5rem; right: 0.5rem; z-index: 7; width: 32px; height: 32px; place-items: center; border-radius: 50%; background: rgba(255, 255, 255, 0.18); color: var(--white); border: 0; cursor: pointer; font-size: 1.1rem; line-height: 1; }
.drink.is-open .drink__close { display: grid; }

.btn {
  display: inline-flex; align-items: center; gap: 0.6em; font-family: var(--font-body); font-weight: 500; font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase;
  padding: 0.7em 1.3em 0.6em; border-radius: 999px; background: var(--white); color: var(--burgundy); border: 1px solid var(--white);
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.btn { white-space: nowrap; }
.btn:hover { background: transparent; color: var(--white); text-decoration: none; }
@media (max-width: 640px) {
  .drink__reveal { padding: 0.8rem; gap: 0.45rem; }
  .drink__reveal .btn { font-size: 0.58rem; letter-spacing: 0.14em; padding: 0.65em 1em 0.55em; }
  .drink__reveal p { font-size: 0.76rem; line-height: 1.4; }
}
.btn--outline { background: transparent; color: var(--burgundy); border-color: var(--burgundy); }
.btn--outline:hover { background: var(--burgundy); color: var(--white); }

/* Tilt + glare (hover devices only) */
@media (hover: hover) and (pointer: fine) {
  .drinks__grid { perspective: 1200px; }
  .drinks__grid .drink.is-visible { transform-style: preserve-3d; transform: rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)); transition: transform 0.18s ease-out, box-shadow 0.45s var(--ease), opacity 0.9s var(--ease); }
  .drinks__grid .drink.is-visible:hover, .drinks__grid .drink.is-visible.is-open { transform: translateY(-4px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)); box-shadow: 0 30px 50px -30px rgba(94, 35, 37, 0.5); }
  .drink__glare { position: absolute; inset: 0; z-index: 8; pointer-events: none; border-radius: inherit; background: radial-gradient(circle at var(--gx, 50%) var(--gy, 50%), rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0) 55%); opacity: 0; transition: opacity 0.4s var(--ease); mix-blend-mode: soft-light; }
  .drink:hover .drink__glare { opacity: 1; }
}

/* ---------- Footer (three columns, as in the mock) ---------- */

.footer { background: var(--burgundy); color: var(--white); position: relative; overflow: hidden; }
.footer::before { content: ""; position: absolute; inset: -20% -10%; pointer-events: none; background: radial-gradient(40% 60% at 20% 20%, rgba(255, 255, 255, 0.10), transparent 70%), radial-gradient(50% 60% at 85% 90%, rgba(0, 0, 0, 0.18), transparent 70%); }
.footer > .container { position: relative; }
.footer__grid { display: grid; grid-template-columns: 1fr minmax(0, 1.6fr) 1fr; align-items: center; gap: clamp(1.5rem, 5vw, 4rem); padding: clamp(2.5rem, 6vw, 4.5rem) 0; }
.footer__logo img { height: 46px; width: auto; }
.footer__logo--left { justify-self: start; } .footer__logo--right { justify-self: end; }
.footer__copy { text-align: center; }
.footer__copy h2 { color: var(--white); font-size: clamp(1.6rem, 2.6vw, 2.2rem); margin: 0 0 0.6rem; }
.footer__copy p { color: rgba(255, 255, 255, 0.88); font-size: 0.9rem; line-height: 1.65; margin: 0; }
.footer__legal { text-align: center; font-size: 0.72rem; color: rgba(255, 255, 255, 0.6); padding: 0 0 1.5rem; letter-spacing: 0.04em; margin: 0; }
@media (max-width: 860px) {
  .footer__grid { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
  .footer__logo--left, .footer__logo--right { justify-self: center; }
}

/* ---------- Article pages ---------- */

.article-hero { background: var(--blush); }
.article-hero__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); align-items: center; gap: clamp(2rem, 5vw, 4rem); padding: clamp(2.5rem, 6vw, 5rem) 0; }
.article-hero__media { border-radius: 4px; box-shadow: 0 40px 60px -40px rgba(40, 20, 20, 0.55); }
.article-hero__media img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.article-hero__text .label { margin-bottom: 0.9rem; }
.article-hero__text .lede { color: var(--ink-soft); font-size: 1.05rem; }
.article-hero__back { font-weight: 500; font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; display: inline-flex; gap: 0.5em; align-items: center; margin-bottom: 1.5rem; }
@media (max-width: 860px) { .article-hero__grid { grid-template-columns: 1fr; } .article-hero__media { order: -1; } }

.article-body { padding: clamp(3rem, 7vw, 5.5rem) 0; }
.article-body p { color: var(--ink-soft); font-size: 1.02rem; line-height: 1.75; }
.article-body p.lede { color: var(--ink); font-size: 1.1rem; }
.article-body h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); margin-top: 2.5rem; }
.article-body figure { margin: clamp(2rem, 5vw, 3.5rem) 0; border-radius: 4px; }
.article-body figure img { width: 100%; }
.article-body .figure-pair { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1rem, 3vw, 2rem); margin: clamp(2rem, 5vw, 3.5rem) 0; }
.article-body .figure-pair figure { margin: 0; }
.article-body .figure-pair img { aspect-ratio: 1; object-fit: cover; }
@media (max-width: 640px) { .article-body .figure-pair { grid-template-columns: 1fr; } }
.pullquote { margin: clamp(2.5rem, 6vw, 4rem) 0; padding: clamp(1.5rem, 4vw, 2.5rem) 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); text-align: center; }
.pullquote p { font-family: var(--font-display); font-size: clamp(1.4rem, 3vw, 2.1rem); line-height: 1.3; color: var(--burgundy); margin: 0; text-wrap: balance; }
.pullquote p::before { content: "“"; } .pullquote p::after { content: "”"; }
.article-body .flavors { list-style: none; padding: 0; margin: 0.5rem 0 0; display: flex; flex-wrap: wrap; gap: 0.5rem; }
.article-body .flavors li { font-weight: 500; font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--burgundy); border: 1px solid var(--line); border-radius: 999px; padding: 0.55em 0.9em 0.45em; }
.more { background: var(--blush); }
.more .stories__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 820px; margin-inline: auto; }
@media (max-width: 640px) { .more .stories__grid { grid-template-columns: 1fr; max-width: 520px; } }

/* ---------- Motion primitives ---------- */

.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: none; }

[data-split].is-split .w { display: inline-block; overflow: hidden; vertical-align: bottom; padding-bottom: 0.1em; margin-bottom: -0.1em; }
[data-split].is-split .w > span { display: inline-block; transform: translateY(110%); transition: transform 0.9s var(--ease-out); transition-delay: calc(var(--i, 0) * 55ms); }
.is-visible [data-split].is-split .w > span, [data-split].is-split.is-visible .w > span { transform: none; }

.px { overflow: hidden; }
.px img { will-change: transform; transform: scale(1.12); transition: none !important; }
.hero__art.px img { transform: none; }

.js .wipe { clip-path: inset(0 0 calc(100% - 1px) 0); transition: clip-path 1.3s cubic-bezier(0.77, 0, 0.18, 1); }
.wipe.is-visible, .is-visible .wipe { clip-path: inset(0 0 0 0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .js .hero__art, .js .lk__letter, .js .lk__eyebrow, .js .lk__rule, .js .lk__sub { opacity: 1; transform: none; filter: none; animation: none; }
  .lk__sheen { display: none; }
  .hero__lockup, .hero__art picture { transform: none; }
  .marquee__track { animation: none; }
  .js .wipe { clip-path: none; }
  .px img { transform: none; }
  * { transition-duration: 0.01ms !important; }
}
