/* ==========================================================================
   CVS Health — "Momentum of Care" concept landing experience
   Warm cream canvas / bold CVS-red moments / editorial asymmetric rhythm
   ========================================================================== */

/* ---------- Fonts ---------- */
@font-face {
  font-family: "Fraunces";
  src: url("../assets/fonts/Fraunces-var.woff2") format("woff2");
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Fraunces";
  src: url("../assets/fonts/Fraunces-Italic-var.woff2") format("woff2");
  font-weight: 300 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "CVS Health Sans";
  src: url("../assets/fonts/CVSHealthSans_Rg.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "CVS Health Sans";
  src: url("../assets/fonts/CVSHealthSans_Md.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "CVS Health Sans";
  src: url("../assets/fonts/CVSHealthSans_Bd.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  --cream: #faf5ec;
  --cream-2: #f3ecdc;
  --cream-3: #ece1cd;
  --red: #cc0000;
  --red-deep: #8f0b0e;
  --red-warm: #e0452f;
  --ink: #1d1712;
  --ink-2: #55493e;
  --ink-3: #8a7d6e;
  --aetna: #6d2077;
  --line: rgba(29, 23, 18, 0.14);
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "CVS Health Sans", "Helvetica Neue", Arial, sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --gutter: clamp(20px, 4.5vw, 72px);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: clip; }
html:focus-within { scroll-behavior: smooth; }
body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: clamp(15px, 1.05vw + 10px, 18px);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button { font: inherit; cursor: pointer; }
::selection { background: var(--red); color: var(--cream); }

.skip-link {
  position: absolute; left: var(--gutter); top: -60px; z-index: 200;
  background: var(--red); color: #fff; padding: 10px 18px;
  font-weight: 500; text-decoration: none; border-radius: 0 0 12px 12px;
  transition: top 0.25s var(--ease-out);
}
.skip-link:focus { top: 0; }

:focus-visible { outline: 3px solid var(--red); outline-offset: 3px; border-radius: 4px; }

/* ---------- Type helpers ---------- */
.display {
  font-family: var(--serif);
  font-variation-settings: "opsz" 144;
  font-weight: 560;
  line-height: 0.98;
  letter-spacing: -0.015em;
}
.italic-accent { font-style: italic; color: var(--red); font-weight: 480; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--ink-2);
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; background: var(--red); display: inline-block;
}
.chapter-kicker {
  font-size: 12px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--red);
}

/* ---------- Buttons ---------- */
.btn {
  position: relative; display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 30px; border-radius: 999px; border: 1.5px solid var(--ink);
  background: transparent; color: var(--ink);
  font-weight: 500; font-size: 15px; letter-spacing: 0.01em;
  text-decoration: none; overflow: hidden; isolation: isolate;
  transition: color 0.35s var(--ease-out), border-color 0.35s var(--ease-out),
              transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.btn::before {
  content: ""; position: absolute; inset: -2px; z-index: -1;
  background: var(--red); border-radius: inherit;
  transform: translateY(102%); transition: transform 0.4s var(--ease-out);
}
.btn:hover, .btn:focus-visible { color: var(--cream); border-color: var(--red); }
.btn:hover::before, .btn:focus-visible::before { transform: translateY(0); }
.btn .btn-arrow { transition: transform 0.35s var(--ease-out); }
.btn:hover .btn-arrow { transform: translateX(5px); }
.btn--fill { background: var(--red); border-color: var(--red); color: var(--cream); }
.btn--fill::before { background: var(--ink); }
.btn--light { border-color: rgba(255,255,255,0.85); color: #fff; }
.btn--light::before { background: var(--cream); }
.btn--light:hover, .btn--light:focus-visible { color: var(--red); border-color: var(--cream); }

/* ---------- Glow layer ---------- */
.glow {
  position: fixed; inset: 0; pointer-events: none; z-index: 1;
  opacity: 0; transition: opacity 0.6s ease;
}
.glow__orb {
  position: absolute; left: 0; top: 0; width: 520px; height: 520px;
  margin: -260px 0 0 -260px; border-radius: 50%;
  background: radial-gradient(circle at center,
      rgba(255, 214, 165, 0.55) 0%,
      rgba(224, 69, 47, 0.16) 38%,
      rgba(204, 0, 0, 0) 68%);
  mix-blend-mode: multiply; filter: blur(6px);
  will-change: transform;
}
@media (prefers-reduced-motion: reduce) { .glow { display: none; } }

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; gap: 28px;
  padding: 14px var(--gutter);
  background: color-mix(in srgb, var(--cream) 82%, transparent);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background 0.35s ease, border-color 0.35s ease, padding 0.35s ease;
}
.nav.is-scrolled { border-color: var(--line); padding-block: 10px; }
.nav__logo { display: inline-flex; align-items: center; text-decoration: none; flex: 0 0 auto; }
.nav__logo img { width: clamp(128px, 11vw, 158px); height: auto; }
.nav__links { display: flex; gap: clamp(14px, 2.2vw, 34px); list-style: none; margin-left: auto; }
.nav__links a {
  position: relative; text-decoration: none; font-size: 13.5px; font-weight: 500;
  letter-spacing: 0.05em; text-transform: uppercase; color: var(--ink-2);
  padding: 6px 2px; transition: color 0.25s ease;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 100%;
  background: var(--red); transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}
.nav__links a:hover, .nav__links a:focus-visible, .nav__links a.is-active { color: var(--ink); }
.nav__links a:hover::after, .nav__links a.is-active::after { transform: scaleX(1); }
.nav__cta { flex: 0 0 auto; }
.nav__cta .btn { padding: 11px 22px; font-size: 13px; }
.nav__progress {
  position: absolute; left: 0; bottom: -1px; height: 2.5px; width: 100%;
  background: var(--red); transform: scaleX(0); transform-origin: left;
}
.nav__burger {
  display: none; background: none; border: 0; width: 44px; height: 44px;
  margin-left: auto; position: relative; z-index: 110;
}
.nav__burger span {
  position: absolute; left: 11px; right: 11px; height: 2px; background: var(--ink);
  transition: transform 0.3s var(--ease-out), top 0.3s var(--ease-out), opacity 0.2s;
}
.nav__burger span:nth-child(1) { top: 16px; }
.nav__burger span:nth-child(2) { top: 22px; }
.nav__burger span:nth-child(3) { top: 28px; }
.nav__burger.is-open span:nth-child(1) { top: 22px; transform: rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { top: 22px; transform: rotate(-45deg); }

@media (max-width: 900px) {
  .nav__links {
    position: fixed; top: 0; left: 0; right: 0; height: 100dvh;
    background: var(--cream); z-index: 105;
    flex-direction: column; align-items: flex-start; justify-content: center;
    padding: var(--gutter); gap: 22px;
    transform: translateY(-105%); visibility: hidden;
    transition: transform 0.45s var(--ease-out), visibility 0s linear 0.45s;
    margin-left: 0;
  }
  .nav__links.is-open { transform: translateY(0); visibility: visible; transition: transform 0.45s var(--ease-out); }
  .nav__links a { font-size: clamp(26px, 7vw, 40px); text-transform: none; font-family: var(--serif); font-weight: 520; color: var(--ink); }
  .nav__burger { display: block; }
  .nav__cta { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100svh;
  padding: calc(72px + 4vh) var(--gutter) 0;
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(24px, 4vw, 64px);
  align-items: center; z-index: 2; overflow: hidden;
}
.hero__heart-outline {
  position: absolute; right: -6vw; top: 8vh; width: clamp(300px, 42vw, 640px);
  opacity: 0.07; z-index: -1; will-change: transform;
}
.hero__copy { padding-top: 2vh; }
.hero__brandline { margin-bottom: 26px; }
.hero__title {
  font-size: clamp(56px, 8.2vw, 138px);
  margin-left: -0.04em;
}
.hero__title .line { display: block; overflow: hidden; }
.hero__title .line > span { display: inline-block; will-change: transform; }
.hero__title .word { display: inline-block; will-change: transform; }
.hero__sub {
  max-width: 46ch; margin-top: 30px; color: var(--ink-2);
  font-size: clamp(15px, 1.1vw + 8px, 18.5px);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 38px; }
.hero__scrollcue {
  margin-top: 56px; display: inline-flex; align-items: center; gap: 12px;
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-3);
}
.hero__scrollcue i {
  width: 1px; height: 44px; background: var(--ink-3); display: block;
  position: relative; overflow: hidden; font-style: normal;
}
.hero__scrollcue i::after {
  content: ""; position: absolute; left: 0; top: -100%; width: 100%; height: 100%;
  background: var(--red); animation: cue 1.8s var(--ease-out) infinite;
}
@keyframes cue { 0% { top: -100%; } 60%, 100% { top: 110%; } }
.hero__media { align-self: end; justify-self: end; width: 100%; max-width: 560px; padding-bottom: 8vh; position: relative; }
.hero__photo {
  border-radius: 999px 999px 20px 20px;
  overflow: hidden; aspect-ratio: 4 / 4.6;
  box-shadow: 0 40px 80px -30px rgba(143, 11, 14, 0.35);
  transform: rotate(1.5deg);
  position: relative;
}
.hero__photo img { width: 100%; height: 100%; object-fit: cover; object-position: 62% 40%; filter: saturate(0.95) contrast(1.03) sepia(0.05); }
.hero__photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(204,0,0,0) 55%, rgba(143,11,14,0.22));
  mix-blend-mode: multiply;
}
.hero__badge {
  position: absolute; left: clamp(-52px, -2.4vw, -18px); bottom: 8vh;
  background: var(--red); color: #fff; z-index: 3;
  padding: 18px 26px; border-radius: 16px; transform: rotate(-4deg);
  box-shadow: 0 24px 48px -18px rgba(29, 23, 18, 0.45);
  font-family: var(--serif); font-size: clamp(15px, 1.2vw, 19px); line-height: 1.25;
  max-width: 240px;
}
.hero__badge b { display: block; font-size: 0.72em; font-family: var(--sans); font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.85; margin-bottom: 6px; }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 30px; padding-top: 108px; align-items: start; }
  .hero__media { max-width: 440px; padding-bottom: 4vh; justify-self: start; }
  .hero__photo { aspect-ratio: 4 / 3.4; border-radius: 240px 240px 16px 16px; }
  .hero__badge { left: auto; right: -6px; bottom: auto; top: -18px; }
}

/* ---------- Ticker ---------- */
.ticker {
  position: relative; background: var(--red); color: #fff; overflow: hidden;
  padding: 14px 0; z-index: 3;
}
.ticker__track { display: flex; width: max-content; will-change: transform; animation: ticker 26s linear infinite; }
.ticker__track span {
  display: inline-flex; align-items: center; gap: 26px; padding-right: 26px;
  font-size: clamp(14px, 1.1vw, 17px); font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; white-space: nowrap;
}
.ticker__track svg { width: 15px; height: 15px; flex: 0 0 auto; }
@keyframes ticker { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .ticker__track { animation: none; } }

/* ---------- Section scaffolding ---------- */
.section { position: relative; padding: clamp(90px, 12vh, 160px) var(--gutter); z-index: 2; }
.section__head { max-width: 900px; margin-bottom: clamp(44px, 6vh, 80px); }
.section__head .chapter-kicker { display: block; margin-bottom: 18px; }
.section__title { font-size: clamp(38px, 5.4vw, 84px); }
.section__lede { margin-top: 22px; max-width: 52ch; color: var(--ink-2); font-size: clamp(15px, 1.15vw + 8px, 19px); }

/* ---------- Scale of care ---------- */
.scale { background: var(--cream); overflow: hidden; }
.scale__ecg { position: absolute; left: 0; right: 0; top: 30%; width: 100%; pointer-events: none; opacity: 0.9; }
.scale__head { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: end; margin-bottom: clamp(48px, 7vh, 90px); }
.scale__head .section__title { grid-column: 1; }
.scale__note { grid-column: 2; color: var(--ink-2); max-width: 40ch; justify-self: end; padding-bottom: 14px; }
.counters {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}
.counter {
  padding: clamp(26px, 3.4vw, 48px) clamp(16px, 2vw, 32px);
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  position: relative;
}
.counter:nth-child(4n) { border-right: 0; }
.counter:nth-child(odd) { background: color-mix(in srgb, var(--cream-2) 55%, transparent); }
.counter__value {
  font-family: var(--serif); font-variation-settings: "opsz" 144;
  font-weight: 600; font-size: clamp(48px, 6vw, 104px); line-height: 1;
  color: var(--red); letter-spacing: -0.02em; white-space: nowrap;
}
.counter__value sup { font-size: 0.42em; font-weight: 500; vertical-align: super; color: var(--ink); }
.counter__label { margin-top: 14px; font-weight: 500; font-size: 15px; }
.counter__hint { margin-top: 6px; color: var(--ink-3); font-size: 13px; }
.counter::after {
  content: ""; position: absolute; left: 0; bottom: -1px; height: 3px; width: 0;
  background: var(--red); transition: width 0.6s var(--ease-out);
}
.counter:hover::after { width: 100%; }

@media (max-width: 900px) {
  .scale__head { grid-template-columns: 1fr; gap: 18px; }
  .scale__note { justify-self: start; padding-bottom: 0; }
  .counters { grid-template-columns: 1fr 1fr; }
  .counter:nth-child(4n) { border-right: 1px solid var(--line); }
  .counter:nth-child(2n) { border-right: 0; }
}

/* ---------- Divisions (horizontal chapters) ---------- */
.divisions { background: var(--ink); color: var(--cream); padding: 0; }
.chapters { position: relative; }
.chapters__track { display: flex; width: max-content; }
.chapter {
  width: 100vw; min-height: 100svh; flex: 0 0 auto;
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(24px, 4vw, 70px); align-items: center;
  padding: clamp(80px, 12vh, 120px) var(--gutter);
  position: relative; overflow: hidden;
}
.chapter__index {
  position: absolute; top: clamp(84px, 14vh, 120px); left: var(--gutter);
  font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase;
  color: rgba(250, 245, 236, 0.5); display: inline-flex; gap: 12px; align-items: center;
}
.chapter__index::before { content: ""; width: 34px; height: 1px; background: var(--red-warm); }
.chapter__body { max-width: 560px; }
.chapter__kicker { font-size: 12.5px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--red-warm); margin-bottom: 18px; display: block; }
.chapter__title { font-size: clamp(40px, 5.4vw, 92px); color: var(--cream); }
.chapter__text { margin-top: 24px; color: rgba(250, 245, 236, 0.78); font-size: clamp(15px, 1.1vw + 8px, 18px); max-width: 46ch; }
.chapter__facts { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 12px 28px; list-style: none; }
.chapter__facts li {
  display: flex; align-items: baseline; gap: 10px; font-size: 14px; color: rgba(250,245,236,0.85);
}
.chapter__facts b { font-family: var(--serif); font-weight: 620; font-size: 24px; color: var(--cream); }
.chapter__link {
  margin-top: 36px; display: inline-flex; align-items: center; gap: 12px;
  color: var(--cream); font-weight: 500; text-decoration: none; font-size: 15px;
  border-bottom: 1.5px solid rgba(250,245,236,0.35); padding-bottom: 6px;
  transition: border-color 0.3s, gap 0.3s var(--ease-out), color 0.3s;
}
.chapter__link:hover, .chapter__link:focus-visible { border-color: var(--red-warm); color: #fff; gap: 18px; }
.chapter__media { position: relative; justify-self: end; width: 100%; max-width: 540px; }
.chapter__photo {
  overflow: hidden; aspect-ratio: 4 / 4.75;
  border-radius: 22px; box-shadow: 0 44px 90px -34px rgba(0,0,0,0.7);
  transform: rotate(-1.2deg); position: relative; z-index: 2;
}
.chapter__photo img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.92) contrast(1.04); }
.chapter__photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(200deg, rgba(29,23,18,0) 60%, rgba(29,23,18,0.4)); }
.chapter__backword {
  position: absolute; z-index: 1; right: -2vw; bottom: 4vh;
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(90px, 13vw, 240px); line-height: 1; white-space: nowrap;
  color: transparent; -webkit-text-stroke: 1px rgba(250, 245, 236, 0.16);
  pointer-events: none; user-select: none;
}
.chapter--heart .chapter__photo {
  background: radial-gradient(circle at 50% 42%, rgba(204,0,0,0.28), rgba(204,0,0,0) 65%);
  border-radius: 0; box-shadow: none; transform: none; overflow: visible; aspect-ratio: 1/1;
}
.chapter--heart .chapter__photo img {
  filter: drop-shadow(0 38px 48px rgba(0, 0, 0, 0.5));
}
.chapter--heart .chapter__photo::after { content: none; }
.chapter--beat em.beat { animation: beat 1.6s ease-in-out infinite; display: inline-block; font-style: normal; }
@keyframes beat { 0%, 100% { transform: scale(1); } 12% { transform: scale(1.12); } 24% { transform: scale(1); } 36% { transform: scale(1.08); } 48% { transform: scale(1); } }
@media (prefers-reduced-motion: reduce) { .chapter--beat em.beat { animation: none; } }

/* Caremark typographic panel */
.chapter__bigstat { font-family: var(--serif); font-weight: 620; color: var(--cream); line-height: 0.9; font-size: clamp(72px, 9vw, 168px); letter-spacing: -0.03em; }
.chapter__bigstat span { color: var(--red-warm); }
.chapter--data .chapter__media { border: 1px solid rgba(250,245,236,0.22); border-radius: 24px; padding: clamp(28px, 3.4vw, 56px); }
.chapter--data .dose { display: flex; justify-content: space-between; align-items: center; padding: 16px 0; border-bottom: 1px dashed rgba(250,245,236,0.25); font-size: 15px; }
.chapter--data .dose:last-of-type { border-bottom: 0; }
.chapter--data .dose b { font-family: var(--serif); font-size: 24px; font-weight: 600; color: var(--cream); }
.chapter--data .dose s { color: rgba(250,245,236,0.45); text-decoration-color: var(--red-warm); }

@media (max-width: 900px) {
  .chapters__track { display: block; width: auto; }
  .chapter { width: auto; grid-template-columns: 1fr; gap: 26px; min-height: 0; padding-top: 88px; align-content: start; }
  .chapter__media { justify-self: start; max-width: 460px; }
  .chapter__photo { aspect-ratio: 4 / 3; }
  .chapter__index { position: static; margin-bottom: 4px; }
  .chapter__backword { font-size: 26vw; bottom: auto; top: -40px; right: -10px; opacity: 0.6; }
}

/* ---------- Story (the Fitzgeralds) ---------- */
.story { background: var(--red-deep); color: #fdf6ee; overflow: hidden; }
.story__head { margin-bottom: clamp(40px, 6vh, 70px); }
.story__kicker { color: #ffb3ab; }
.story__title { color: #fff; font-size: clamp(38px, 5.6vw, 92px); }
.story__lines { max-width: 64ch; margin: 0 auto; text-align: center; }
.story__line {
  display: block; font-family: var(--serif); font-weight: 480;
  font-size: clamp(26px, 3.4vw, 52px); line-height: 1.32;
  padding: 0.35em 0; opacity: 0.24; will-change: opacity, transform;
  border-bottom: 1px solid rgba(253, 246, 238, 0.12);
}
.story__line--accent { color: #ffd9b0; font-style: italic; }
.story__line--big { font-size: clamp(34px, 4.6vw, 72px); opacity: 0.9; }
.story__end { margin-top: clamp(48px, 8vh, 96px); text-align: center; }
.story__end p { font-size: clamp(15px, 1.1vw + 8px, 18px); color: rgba(253,246,238,0.85); max-width: 46ch; margin: 0 auto; }
.simpler-ticker { background: #fff; color: var(--red-deep); transform: rotate(-1.6deg) scale(1.02); margin-top: clamp(48px, 7vh, 80px); }
.simpler-ticker .ticker__track { animation-duration: 18s; }
.simpler-ticker .ticker__track span { font-family: var(--serif); font-style: italic; font-weight: 520; font-size: clamp(18px, 1.8vw, 28px); letter-spacing: 0.02em; text-transform: none; }
.story__caption { text-align: center; margin-top: clamp(32px, 5vh, 56px); color: rgba(253,246,238,0.65); font-size: 13.5px; letter-spacing: 0.06em; }

/* ---------- Impact ---------- */
.impact { background: var(--cream-2); overflow: hidden; }
.impact__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(18px, 2.4vw, 36px);
  align-items: start; margin-top: clamp(30px, 5vh, 60px);
}
.heart-card { position: relative; padding-top: clamp(0px, 4vw, 48px); }
.heart-card:nth-child(2) { margin-top: clamp(24px, 5vh, 72px); }
.heart-card:nth-child(3) { margin-top: clamp(-8px, -1vh, 0px); }
.heart-card:nth-child(4) { margin-top: clamp(40px, 8vh, 110px); }
.heart-card__img {
  display: block; width: 100%; will-change: transform;
  transition: transform 0.5s var(--ease-out), filter 0.5s ease;
  filter: drop-shadow(0 26px 38px rgba(143, 11, 14, 0.25));
}
.heart-card:hover .heart-card__img { transform: translateY(-8px) rotate(-2deg) scale(1.03); }
.heart-card h3 { font-family: var(--serif); font-weight: 560; font-size: clamp(20px, 1.6vw, 28px); margin-top: 26px; }
.heart-card p { color: var(--ink-2); margin-top: 10px; font-size: 15px; }
.heart-card__tag { display: inline-block; margin-top: 16px; font-size: 12px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--red); border: 1px solid color-mix(in srgb, var(--red) 40%, transparent); padding: 7px 14px; border-radius: 999px; }
.heart-card--type { display: flex; flex-direction: column; justify-content: center; min-height: 100%; }
.heart-card--type .big-quote { font-family: var(--serif); font-style: italic; font-weight: 480; font-size: clamp(26px, 2.2vw, 40px); line-height: 1.2; }
.heart-card--type .big-quote b { color: var(--red); font-weight: 560; }
.impact__list { margin-top: clamp(48px, 7vh, 80px); display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.impact__fact { background: var(--cream-2); padding: 26px 24px; }
.impact__fact b { display: block; font-family: var(--serif); font-weight: 600; font-size: clamp(22px, 1.9vw, 32px); color: var(--ink); }
.impact__fact span { color: var(--ink-2); font-size: 14px; display: block; margin-top: 8px; }
@media (max-width: 900px) {
  .impact__grid { grid-template-columns: 1fr 1fr; }
  .heart-card:nth-child(odd) { margin-top: 0; }
  .impact__list { grid-template-columns: 1fr; }
}

/* ---------- News ---------- */
.news { background: var(--cream); }
.news__list { list-style: none; border-top: 1px solid var(--line); }
.news__item a {
  display: grid; grid-template-columns: 130px 1fr auto; gap: 24px; align-items: center;
  padding: clamp(20px, 2.6vh, 30px) 6px; text-decoration: none;
  border-bottom: 1px solid var(--line); position: relative;
  transition: padding-left 0.35s var(--ease-out);
}
.news__item a::before {
  content: ""; position: absolute; inset: 0; background: var(--red); z-index: -1;
  transform: scaleY(0); transform-origin: bottom; transition: transform 0.35s var(--ease-out);
}
.news__item a:hover::before, .news__item a:focus-visible::before { transform: scaleY(1); }
.news__item a:hover, .news__item a:focus-visible { color: #fff; padding-left: 22px; }
.news__date { font-size: 12.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-3); transition: color 0.3s; }
.news__item a:hover .news__date { color: rgba(255,255,255,0.75); }
.news__title { font-family: var(--serif); font-weight: 500; font-size: clamp(19px, 1.8vw, 30px); line-height: 1.25; }
.news__arrow { font-family: var(--serif); font-size: 30px; transform: translateX(0); transition: transform 0.35s var(--ease-out); }
.news__item a:hover .news__arrow { transform: translateX(8px) rotate(-45deg); }
.news__note { margin-top: 26px; font-size: 13px; color: var(--ink-3); }

/* ---------- Careers ---------- */
.careers { background: var(--red); color: #fff; overflow: hidden; }
.careers__inner { position: relative; z-index: 2; max-width: 1000px; }
.careers__kicker { color: #ffd2cc; }
.careers__title { font-size: clamp(44px, 7vw, 120px); color: #fff; }
.careers__title .italic-accent { color: #ffe3c9; }
.careers__copy { margin-top: 26px; max-width: 50ch; color: rgba(255,255,255,0.88); font-size: clamp(15px, 1.1vw + 8px, 19px); }
.careers__actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 40px; }
.careers__stat { margin-top: 56px; display: flex; align-items: baseline; gap: 16px; border-top: 1px solid rgba(255,255,255,0.3); padding-top: 26px; max-width: 560px; }
.careers__stat b { font-family: var(--serif); font-weight: 620; font-size: clamp(40px, 4vw, 64px); line-height: 1; }
.careers__stat span { color: rgba(255,255,255,0.85); font-size: 15px; max-width: 30ch; }
.careers__hearts { position: absolute; right: -4vw; top: 50%; transform: translateY(-50%); display: grid; grid-template-columns: repeat(2, 150px); gap: 20px; opacity: 0.9; z-index: 1; }
.careers__hearts img { width: 100%; filter: drop-shadow(0 18px 26px rgba(0,0,0,0.3)); }
.careers__hearts .float-a { will-change: transform; }
.careers__hearts .float-b { will-change: transform; transform: translateY(-30px); }
@media (max-width: 1000px) { .careers__hearts { position: static; transform: none; grid-template-columns: repeat(2, 120px); margin-top: 48px; } }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: rgba(250, 245, 236, 0.8); padding: clamp(60px, 8vh, 100px) var(--gutter) 40px; position: relative; z-index: 2; }
.footer__top { display: grid; grid-template-columns: 1.3fr 2fr; gap: clamp(36px, 5vw, 90px); padding-bottom: 56px; border-bottom: 1px solid rgba(250,245,236,0.14); }
.footer__sig .display { color: var(--cream); font-size: clamp(34px, 3.6vw, 56px); }
.footer__sig .display span { color: var(--red-warm); }
.footer__sig p { margin-top: 18px; max-width: 38ch; font-size: 15px; }
.footer__subscribe { margin-top: 28px; max-width: 420px; }
.footer__subscribe form { display: flex; gap: 10px; }
.footer__subscribe input {
  flex: 1; background: transparent; border: 1px solid rgba(250,245,236,0.3);
  border-radius: 999px; padding: 13px 20px; color: var(--cream); font: inherit; font-size: 15px;
  transition: border-color 0.3s;
}
.footer__subscribe input::placeholder { color: rgba(250,245,236,0.45); }
.footer__subscribe input:focus { outline: none; border-color: var(--red-warm); }
.footer__subscribe button {
  background: var(--red); color: #fff; border: 0; border-radius: 999px; padding: 13px 24px;
  font-weight: 500; transition: background 0.3s, transform 0.25s var(--ease-out);
}
.footer__subscribe button:hover { background: var(--red-warm); transform: translateY(-1px); }
.footer__msg { margin-top: 12px; font-size: 13.5px; min-height: 20px; }
.footer__msg.ok { color: #8ee3a2; }
.footer__msg.err { color: #ffb3ab; }
.footer__cols { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; }
.footer__col h4 { font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(250,245,236,0.5); margin-bottom: 18px; font-weight: 500; }
.footer__col ul { list-style: none; display: grid; gap: 12px; }
.footer__col a { text-decoration: none; font-size: 15px; color: rgba(250,245,236,0.8); transition: color 0.25s; }
.footer__col a:hover, .footer__col a:focus-visible { color: var(--red-warm); }
.footer__bottom { margin-top: 48px; display: flex; flex-wrap: wrap; gap: 18px 32px; align-items: center; justify-content: space-between; font-size: 13px; color: rgba(250,245,236,0.5); }
.footer__social { display: flex; gap: 20px; list-style: none; }
.footer__social a { text-decoration: none; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(250,245,236,0.65); transition: color 0.25s; }
.footer__social a:hover { color: var(--red-warm); }
.footer__fineprint { margin-top: 14px; font-size: 12px; color: rgba(250,245,236,0.38); }
@media (max-width: 900px) {
  .footer__top { grid-template-columns: 1fr; }
  .footer__cols { grid-template-columns: 1fr 1fr; }
}

/* ---------- Reveal defaults (JS enhances) ---------- */
.js [data-reveal] { opacity: 0; transform: translateY(36px); }
.js [data-reveal="fade"] { transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js [data-reveal] { opacity: 1 !important; transform: none !important; }
  html { scroll-behavior: auto; }
}

/* ---------- Preloader ---------- */
.loader {
  position: fixed; inset: 0; z-index: 500; background: var(--cream);
  display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 20px;
}
.loader svg { width: 54px; height: 54px; animation: beat 1.2s ease-in-out infinite; }
.loader small { font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--ink-3); }
.loader.is-done { opacity: 0; pointer-events: none; transition: opacity 0.5s ease; }
@media (prefers-reduced-motion: reduce) { .loader svg { animation: none; } }
