/* ═══════════════════════════════════════════════════════════════════════════
   2323Designs — site stylesheet
   Editorial Quiet · refined, minimal, warm, design-led
   ═══════════════════════════════════════════════════════════════════════════ */

:root {
  /* Brand palette */
  --razzmatazz: #CF296D;
  --pigment-green: #5E9751;
  --grey: #848588;
  --tyrian: #562336;
  --mona-lisa: #DD887A;

  /* Tonal base */
  --ivory: #FAF7F1;
  --cream: #F5EFE4;
  --off-white: #FBFAF6;
  --warm-50: #F7F2E9;
  --warm-100: #EFE7D7;

  /* Soft tinted backgrounds (for capsules & cards) */
  --pink-soft: #FBE7EE;
  --pink-softer: #FDF1F5;
  --green-soft: #E9EFE3;
  --peach-soft: #F7E4DC;
  --plum-soft: #ECDADF;

  /* Text */
  --ink: #1F1B19;
  --ink-soft: #423A37;
  --muted: #7A736E;

  /* Type */
  --display: 'Cormorant Garamond', 'Georgia', serif;
  --body: 'Outfit', 'Inter', system-ui, sans-serif;

  /* Radii */
  --r-pill: 999px;
  --r-arch-top: 9999px 9999px 36px 36px;
  --r-soft: 28px;
  --r-card: 36px;
  --r-large: 60px;

  /* Shadows */
  --shadow-soft: 0 1px 2px rgba(31,27,25,.04), 0 12px 32px rgba(86,35,54,.06);
  --shadow-hover: 0 2px 4px rgba(31,27,25,.06), 0 18px 40px rgba(86,35,54,.10);

  /* Transitions */
  --ease: cubic-bezier(.4, 0, .2, 1);
}

/* ─── Reset & base ────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 300;
  letter-spacing: .005em;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  text-wrap: pretty;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 500;
  color: var(--tyrian);
  letter-spacing: -.012em;
  line-height: 1.08;
  margin: 0;
  text-wrap: balance;
}
p { margin: 0; }

/* ─── Layout shell ────────────────────────────────────────────────────────── */
.wrap { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.section { padding: 64px 0; position: relative; }
.section--hero { padding: 24px 0 56px; }
.section--tight { padding: 48px 0; }
.section--slider { padding: 18px 0 4px; }

/* Eyebrow / kicker */
.kicker {
  font-family: var(--body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--razzmatazz);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}
.kicker::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--razzmatazz);
  display: inline-block;
}

/* Section heading */
.section-heading h2 {
  font-size: clamp(2rem, 3.6vw, 3.1rem);
  font-weight: 400;
  max-width: 22ch;
}
.section-heading .lead {
  margin-top: 18px;
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 56ch;
  font-weight: 300;
}
.section-heading .lead em { color: var(--tyrian); font-style: italic; font-family: var(--display); font-size: 1.1em; }

/* ─── Header (larger logo/nav inside same height) ─────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(250, 247, 241, .82);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.site-header.scrolled {
  border-bottom-color: rgba(132,133,136,.18);
  background: rgba(250, 247, 241, .94);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* fixed height across states — bigger content fits, header doesn't grow */
  height: 78px;
  padding: 0;
}
@media (max-width: 980px) {
  .site-header__inner { height: 68px; }
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--tyrian);
}
.brand__logo {
  height: 56px;            /* up from 38 */
  width: auto;
  display: block;
}
@media (max-width: 980px) {
  .brand__logo { height: 46px; }
}
.brand__wordmark {
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: .01em;
  color: var(--tyrian);
  position: relative;
  top: -2px;
}
.brand__wordmark sup { font-size: .6em; color: var(--razzmatazz); margin-left: 2px; vertical-align: super; }

/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav a {
  font-family: var(--body);
  font-size: 15.5px;      /* up from 14 */
  font-weight: 450;
  letter-spacing: .005em;
  color: var(--ink-soft);
  padding: 8px 18px;
  border-radius: var(--r-pill);
  transition: background .25s var(--ease), color .25s var(--ease);
  white-space: nowrap;
}
@media (max-width: 1180px) {
  .nav a { padding: 8px 14px; font-size: 14.5px; }
}
.nav a:hover { background: rgba(207,41,109,.08); color: var(--tyrian); }
.nav a[aria-current="page"] {
  background: var(--tyrian);
  color: var(--off-white);
}
.nav a[aria-current="page"]:hover { background: var(--tyrian); }

/* Mobile menu trigger */
.menu-btn {
  display: none;
  width: 44px; height: 44px;
  border-radius: var(--r-pill);
  background: var(--off-white);
  border: 1px solid rgba(132,133,136,.22);
  align-items: center; justify-content: center;
  position: relative;
}
.menu-btn span {
  display: block; width: 18px; height: 1.5px; background: var(--tyrian); border-radius: 2px;
  position: absolute; left: 13px;
  transition: transform .3s var(--ease), opacity .25s var(--ease), top .3s var(--ease);
}
.menu-btn span:nth-child(1) { top: 16px; }
.menu-btn span:nth-child(2) { top: 21px; }
.menu-btn span:nth-child(3) { top: 26px; }
.menu-btn[aria-expanded="true"] span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.menu-btn[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-btn[aria-expanded="true"] span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

/* Mobile nav overlay */
.mobile-nav {
  position: fixed;
  inset: 68px 0 0 0;
  background: var(--ivory);
  z-index: 70;
  padding: 40px 32px;
  display: flex; flex-direction: column; gap: 6px;
  transform: translateY(-12px);
  opacity: 0; pointer-events: none;
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.mobile-nav.open { opacity: 1; transform: none; pointer-events: auto; }
.mobile-nav a {
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--tyrian);
  padding: 14px 0;
  border-bottom: 1px solid rgba(132,133,136,.16);
}
.mobile-nav a[aria-current="page"] { color: var(--razzmatazz); }

/* ─── Buttons ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--r-pill);
  font-family: var(--body);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: .01em;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease);
  will-change: transform;
}
.btn--primary {
  background: var(--tyrian);
  color: var(--off-white);
}
.btn--primary:hover {
  background: var(--razzmatazz);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(207,41,109,.22);
}
.btn--ghost {
  background: transparent;
  color: var(--tyrian);
  border: 1px solid rgba(86,35,54,.28);
}
.btn--ghost:hover {
  background: var(--tyrian);
  color: var(--off-white);
  border-color: var(--tyrian);
  transform: translateY(-1px);
}
.btn .arrow {
  width: 16px; height: 16px; display: inline-block;
  transition: transform .25s var(--ease);
}
.btn:hover .arrow { transform: translateX(3px); }

/* ─── Marquee (slow, premium) ─────────────────────────────────────────────── */
.marquee {
  position: relative;
  overflow: hidden;
  padding: 14px 0;
  border-top: 1px solid rgba(132,133,136,.18);
  border-bottom: 1px solid rgba(132,133,136,.18);
  background: rgba(245,239,228,.45);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.marquee__track {
  display: flex;
  width: max-content;
  gap: 56px;
  animation: marquee 64s linear infinite;
  will-change: transform;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 56px;
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.1rem;
  color: var(--tyrian);
  letter-spacing: .015em;
  white-space: nowrap;
}
.marquee__sep {
  display: inline-block;
  width: 12px; height: 12px;
  flex: 0 0 12px;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── Image slider banner (hero replacement) ─────────────────────────────── */
.slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%);
}
.slider__track {
  display: flex;
  gap: 28px;
  width: max-content;
  padding: 18px 0;
  animation: slider-drift 72s linear infinite;
  will-change: transform;
}
.slider:hover .slider__track { animation-play-state: paused; }
.slide {
  flex: 0 0 auto;
  width: 420px;
  aspect-ratio: 5 / 6;
  border-radius: 280px 280px 40px 40px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(31,27,25,.04), 0 18px 40px rgba(86,35,54,.07);
  background: var(--peach-soft);
  position: relative;
  transition: transform .4s var(--ease);
}
.slide:hover { transform: translateY(-4px); }
.slide svg, .slide img { width: 100%; height: 100%; display: block; object-fit: cover; }
.slide--alt { border-radius: 40px 40px 280px 280px; }
@keyframes slider-drift {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-1 * (420px + 28px) * 6)); }
}
@media (max-width: 980px) {
  .slide { width: 320px; border-radius: 200px 200px 30px 30px; }
  .slide--alt { border-radius: 30px 30px 200px 200px; }
  @keyframes slider-drift { from{transform:translateX(0)} to{transform:translateX(calc(-1 * (320px + 24px) * 6))} }
  .slider__track { gap: 24px; }
}
@media (max-width: 560px) {
  .slide { width: 240px; border-radius: 160px 160px 24px 24px; }
  .slide--alt { border-radius: 24px 24px 160px 160px; }
  @keyframes slider-drift { from{transform:translateX(0)} to{transform:translateX(calc(-1 * (240px + 20px) * 6))} }
  .slider__track { gap: 20px; padding: 12px 0; }
}

/* About CTA strip */
.about__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}


.hero {
  position: relative;
  padding-top: 56px;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(2.4rem, 5.2vw, 4.4rem);
  font-weight: 400;
  letter-spacing: -.018em;
  line-height: 1.04;
}
.hero h1 em {
  font-style: italic;
  color: var(--razzmatazz);
  font-weight: 400;
}
.hero__lead {
  margin-top: 26px;
  font-size: 1.08rem;
  color: var(--ink-soft);
  max-width: 50ch;
  font-weight: 300;
  line-height: 1.65;
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero__arch {
  position: relative;
  width: 100%;
  max-width: 500px;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-arch-top);
  overflow: hidden;
  background: var(--peach-soft);
  box-shadow: var(--shadow-soft);
}
.hero__arch svg, .hero__arch img { width: 100%; height: 100%; object-fit: cover; }
.hero__petal-a, .hero__petal-b, .hero__petal-c {
  position: absolute;
  pointer-events: none;
}
.hero__petal-a { top: -20px; right: -20px; width: 96px; opacity: .9; }
.hero__petal-b { bottom: -28px; left: -28px; width: 84px; opacity: .85; }
.hero__petal-c { top: 38%; left: -42px; width: 60px; opacity: .7; }

/* Hero stat strip — quiet credibility line */
.hero__strip {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 26px 36px;
  background: var(--off-white);
  border-radius: var(--r-large);
  border: 1px solid rgba(132,133,136,.14);
}
.hero__stat .n {
  font-family: var(--display);
  font-size: 2rem;
  color: var(--tyrian);
  font-weight: 500;
  display: block;
  line-height: 1;
}
.hero__stat .l {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: .04em;
  margin-top: 8px;
  display: block;
}

/* ─── About ───────────────────────────────────────────────────────────────── */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 80px;
  align-items: center;
}
.about__visual {
  position: relative;
}
.about__arch {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 50% 50% var(--r-soft) var(--r-soft) / 60% 60% var(--r-soft) var(--r-soft);
  overflow: hidden;
  background: var(--plum-soft);
}
.about__arch svg { width: 100%; height: 100%; }
.about__visual .float-petal {
  position: absolute;
  width: 72px;
  top: 12%; right: -18px;
  opacity: .85;
}
.about h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
  font-weight: 400;
}
.about p {
  margin-top: 22px;
  color: var(--ink-soft);
  max-width: 56ch;
  font-weight: 300;
}
.about__caps {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}
.cap {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 22px;
  border-radius: var(--r-pill);
  background: var(--off-white);
  border: 1px solid rgba(86,35,54,.12);
  font-size: 14.5px;
  color: var(--tyrian);
  font-weight: 400;
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.cap:hover { background: var(--pink-softer); transform: translateX(3px); }
.cap__dot {
  width: 8px; height: 8px; border-radius: 999px;
}
.cap--pink .cap__dot { background: var(--razzmatazz); }
.cap--green .cap__dot { background: var(--pigment-green); }
.cap--peach .cap__dot { background: var(--mona-lisa); }

/* ─── Training cards ──────────────────────────────────────────────────────── */
.training {
  background: linear-gradient(180deg, transparent 0, var(--warm-50) 30%, var(--warm-50) 70%, transparent 100%);
}
.training__head { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: end; margin-bottom: 40px; }
.training__intro p { color: var(--ink-soft); max-width: 48ch; font-weight: 300; font-size: 1.02rem; }

.t-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.t-card {
  background: var(--off-white);
  border-radius: var(--r-card);
  padding: 28px 28px 26px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
  border: 1px solid rgba(132,133,136,.10);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.t-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  background: var(--off-white);
}
.t-card--placeholder {
  background: transparent;
  border-style: dashed;
  border-color: rgba(132,133,136,.32);
}
.t-card--placeholder h3, .t-card--placeholder p, .t-card--placeholder .t-card__meta { opacity: .55; }
.t-card__tag {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  background: var(--pink-soft);
  color: var(--razzmatazz);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.t-card__tag::before {
  content: "";
  width: 6px; height: 6px; border-radius: 999px;
  background: currentColor;
}
.t-card:nth-child(2) .t-card__tag { background: var(--green-soft); color: var(--pigment-green); }
.t-card:nth-child(3) .t-card__tag { background: var(--peach-soft); color: var(--mona-lisa); }
.t-card:nth-child(4) .t-card__tag { background: var(--plum-soft); color: var(--tyrian); }
.t-card:nth-child(5) .t-card__tag { background: var(--green-soft); color: var(--pigment-green); }
.t-card:nth-child(6) .t-card__tag { background: var(--pink-soft); color: var(--razzmatazz); }
.t-card h3 {
  font-family: var(--display);
  font-size: 1.32rem;
  font-weight: 500;
  color: var(--tyrian);
  margin-bottom: 8px;
  letter-spacing: -.005em;
  line-height: 1.2;
}
.t-card__meta {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 400;
}
.t-card__meta svg { flex: 0 0 12px; }
.t-card__meta .year {
  margin-left: auto;
  font-family: var(--display);
  font-style: italic;
  color: var(--razzmatazz);
}
.t-card p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.55;
  font-weight: 300;
}
.training__cta { display: flex; justify-content: center; margin-top: 36px; }

/* ─── Partners ────────────────────────────────────────────────────────────── */
.partners__head { text-align: center; margin-bottom: 32px; }
.partners__head h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
.partners__note {
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
  font-style: italic;
  font-family: var(--display);
}
.p-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 980px;
  margin: 0 auto;
}
.p-oval {
  height: 90px;
  border-radius: var(--r-pill);
  background: var(--off-white);
  border: 1px dashed rgba(132,133,136,.32);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display);
  font-size: 1.05rem;
  color: var(--ink-soft);
  font-weight: 500;
  letter-spacing: .005em;
  transition: background .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease);
  text-align: center;
  padding: 0 20px;
}
.p-oval:hover {
  background: var(--pink-softer);
  border-color: rgba(207,41,109,.35);
  color: var(--tyrian);
}

/* ─── Stories ─────────────────────────────────────────────────────────────── */
.stories__head { display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: end; margin-bottom: 40px; }
.stories__head .lead { font-size: 1.05rem; color: var(--ink-soft); font-weight: 300; max-width: 48ch; }
.s-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.s-card {
  display: flex; flex-direction: column;
  gap: 22px;
}
.s-card__cover {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-arch-top);
  overflow: hidden;
  background: var(--peach-soft);
  position: relative;
  transition: transform .4s var(--ease);
}
.s-card:hover .s-card__cover { transform: translateY(-3px); }
.s-card__cover svg { width: 100%; height: 100%; }
.s-card:nth-child(2) .s-card__cover { background: var(--green-soft); }
.s-card:nth-child(3) .s-card__cover { background: var(--plum-soft); }
.s-card__tag {
  font-size: 11.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--razzmatazz);
  font-weight: 500;
}
.s-card h3 {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 500;
  margin-top: 10px;
  color: var(--tyrian);
  transition: color .25s var(--ease);
}
.s-card:hover h3 { color: var(--razzmatazz); }
.s-card p {
  margin-top: 10px;
  font-size: 14.5px;
  color: var(--ink-soft);
  font-weight: 300;
}
.s-card__more {
  margin-top: 14px;
  font-size: 13px;
  letter-spacing: .04em;
  color: var(--tyrian);
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 400;
}
.s-card__more::after { content: "→"; transition: transform .25s var(--ease); }
.s-card:hover .s-card__more::after { transform: translateX(4px); }
.stories__cta { display: flex; justify-content: center; margin-top: 40px; }

/* ─── Footer ──────────────────────────────────────────────────────────────── */
.site-footer {
  margin-top: 40px;
  background: var(--cream);
  border-radius: 80px 80px 0 0;
  padding: 56px 0 28px;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: -10px; left: 50%; transform: translateX(-50%);
  width: 56px; height: 6px;
  background: var(--mona-lisa);
  border-radius: 999px;
  opacity: .5;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 44px;
}
.footer__brand .brand { margin-bottom: 18px; }
.footer__tag {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--tyrian);
  letter-spacing: .01em;
  max-width: 22ch;
  line-height: 1.4;
}
.footer__title {
  font-family: var(--body);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--razzmatazz);
  margin-bottom: 18px;
  font-weight: 500;
}
.footer__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer__list a, .footer__list span { color: var(--ink-soft); font-size: 14.5px; transition: color .2s var(--ease); }
.footer__list a:hover { color: var(--tyrian); }
.footer__socials { display: flex; gap: 10px; margin-top: 14px; }
.footer__socials a {
  width: 38px; height: 38px;
  border-radius: var(--r-pill);
  background: var(--off-white);
  display: grid; place-items: center;
  color: var(--tyrian);
  transition: background .25s var(--ease), color .25s var(--ease), transform .25s var(--ease);
}
.footer__socials a:hover { background: var(--tyrian); color: var(--off-white); transform: translateY(-2px); }

.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px;
  border-top: 1px solid rgba(132,133,136,.2);
  font-size: 13px;
  color: var(--muted);
}
.footer__bottom a:hover { color: var(--tyrian); }

/* ─── Placeholder pages ───────────────────────────────────────────────────── */
.page-hero {
  padding: 64px 0 72px;
  text-align: center;
  position: relative;
}
.page-hero h1 {
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 400;
  margin-top: 18px;
}
.page-hero h1 em { font-style: italic; color: var(--razzmatazz); }
.page-hero .lead {
  margin: 26px auto 0;
  max-width: 62ch;
  font-size: 1.08rem;
  color: var(--ink-soft);
  font-weight: 300;
}
.page-hero::before {
  content: "";
  position: absolute;
  top: 30px; left: 50%; transform: translateX(-50%);
  width: 36px; height: 36px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='none' stroke='%23CF296D' stroke-width='1.2'><circle cx='12' cy='12' r='2'/><ellipse cx='12' cy='5' rx='2.2' ry='2.6'/><ellipse cx='12' cy='19' rx='2.2' ry='2.6'/><ellipse cx='5' cy='12' rx='2.6' ry='2.2'/><ellipse cx='19' cy='12' rx='2.6' ry='2.2'/></g></svg>");
  background-size: contain; background-repeat: no-repeat;
  opacity: .8;
}

.placeholder-block {
  margin-top: 56px;
  padding: 56px;
  border-radius: var(--r-large);
  background: var(--off-white);
  border: 1px solid rgba(132,133,136,.12);
  text-align: center;
}
.placeholder-block .label {
  display: inline-block;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--razzmatazz);
  margin-bottom: 18px;
  font-weight: 500;
}
.placeholder-block p {
  color: var(--ink-soft);
  font-weight: 300;
  max-width: 56ch;
  margin: 0 auto;
}
.placeholder-grid {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.placeholder-grid > div {
  height: 200px;
  border-radius: var(--r-card);
  background: linear-gradient(135deg, var(--warm-50), var(--cream));
  border: 1px dashed rgba(132,133,136,.28);
}
.placeholder-grid > div:nth-child(2) { background: linear-gradient(135deg, var(--pink-softer), var(--peach-soft)); }
.placeholder-grid > div:nth-child(3) { background: linear-gradient(135deg, var(--green-soft), var(--warm-50)); }
.placeholder-grid > div:nth-child(4) { background: linear-gradient(135deg, var(--plum-soft), var(--cream)); }
.placeholder-grid > div:nth-child(5) { background: linear-gradient(135deg, var(--warm-50), var(--pink-softer)); }
.placeholder-grid > div:nth-child(6) { background: linear-gradient(135deg, var(--peach-soft), var(--cream)); }

/* ─── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 980px) {
  .nav { display: none; }
  .menu-btn { display: inline-flex; }
  .hero__grid { grid-template-columns: 1fr; gap: 56px; }
  .hero__visual { order: 2; }
  .hero__strip { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; padding: 30px 28px; }
  .about__grid { grid-template-columns: 1fr; gap: 56px; }
  .about__visual { max-width: 460px; margin: 0 auto; }
  .t-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .training__head { grid-template-columns: 1fr; gap: 24px; }
  .stories__head { grid-template-columns: 1fr; gap: 16px; }
  .s-grid { grid-template-columns: repeat(2, 1fr); }
  .s-grid > :nth-child(3) { display: none; }
  .p-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .placeholder-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .wrap { padding: 0 22px; }
  .section { padding: 52px 0; }
  .section--hero { padding: 18px 0 36px; }
  .hero__arch { max-width: 100%; }
  .t-grid { grid-template-columns: 1fr; }
  .s-grid { grid-template-columns: 1fr; }
  .s-grid > :nth-child(3) { display: flex; }
  .p-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }
  .site-footer { border-radius: 56px 56px 0 0; padding: 64px 0 28px; }
  .placeholder-block { padding: 36px 24px; }
  .placeholder-grid { grid-template-columns: 1fr; }
  .marquee__item { font-size: 1rem; gap: 40px; }
  .marquee__track { gap: 40px; }
}

/* Subtle on-scroll reveal */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  .marquee__track { animation: none; }
  .reveal { opacity: 1; transform: none; }
}


/* ═══════════════════════════════════════════════════════════════════════════
   PHASE 2 — full-bleed banner, real partners, project detail, about, policies
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── Full-bleed banner carousel (homepage hero) ─────────────────────────── */
.banner {
  position: relative;
  width: 100%;
  height: clamp(360px, 56vw, 620px);
  overflow: hidden;
  background: var(--peach-soft);
}
.banner__track {
  position: absolute; inset: 0;
}
.banner__slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.1s var(--ease);
  display: block;
  text-decoration: none;
  color: inherit;
}
.banner__slide.is-active { opacity: 1; z-index: 2; }
.banner__slide-art { position: absolute; inset: 0; }
.banner__slide-art svg, .banner__slide-art img {
  width: 100%; height: 100%; display: block; object-fit: cover;
}
.banner__slide::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(
    100deg,
    rgba(31,18,22,.55) 0%,
    rgba(31,18,22,.28) 45%,
    rgba(31,18,22,.05) 80%,
    transparent 100%
  );
}
.banner__caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 0 6vw clamp(40px, 7vw, 88px);
  z-index: 2;
  display: flex; flex-direction: column; gap: 14px;
  max-width: 980px;
}
.banner__kicker {
  font-family: var(--body);
  font-size: 12px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(250,247,241,.85);
  font-weight: 500;
  display: inline-flex; align-items: center; gap: 12px;
}
.banner__kicker::before {
  content: ""; width: 28px; height: 1px; background: rgba(250,247,241,.7);
}
.banner__title {
  font-family: var(--display);
  font-size: clamp(2rem, 5.4vw, 4.4rem);
  font-weight: 400;
  color: #FAF7F1;
  line-height: 1.04;
  letter-spacing: -.01em;
  max-width: 22ch;
  text-shadow: 0 2px 24px rgba(31,18,22,.25);
}
.banner__title em { font-style: italic; color: #F7C8D3; font-weight: 400; }
.banner__sub {
  color: rgba(250,247,241,.9);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  font-weight: 300;
  max-width: 52ch;
  margin-top: 4px;
}
.banner__cta {
  margin-top: 18px;
  align-self: flex-start;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 26px;
  border-radius: var(--r-pill);
  background: rgba(250,247,241,.96);
  color: var(--tyrian);
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: .01em;
  transition: transform .25s var(--ease), background .25s var(--ease);
}
.banner__cta::after { content: "→"; transition: transform .25s var(--ease); }
.banner__slide:hover .banner__cta { background: #fff; }
.banner__slide:hover .banner__cta::after { transform: translateX(4px); }

/* dot indicators */
.banner__dots {
  position: absolute;
  right: 6vw; bottom: clamp(40px, 7vw, 88px);
  display: flex; gap: 10px; z-index: 4;
}
.banner__dot {
  width: 36px; height: 3px;
  border-radius: 999px;
  background: rgba(250,247,241,.35);
  cursor: pointer;
  border: none;
  transition: background .3s var(--ease), width .3s var(--ease);
  padding: 0;
}
.banner__dot.is-active { background: rgba(250,247,241,.95); width: 48px; }
.banner__dot:hover { background: rgba(250,247,241,.7); }

@media (max-width: 720px) {
  .banner { height: clamp(440px, 100vw, 580px); }
  .banner__caption { padding: 0 22px clamp(80px, 12vw, 110px); max-width: 100%; }
  .banner__title { max-width: 18ch; }
  .banner__sub { font-size: 14.5px; }
  .banner__dots { right: 22px; bottom: 30px; }
  .banner__dot { width: 26px; }
  .banner__dot.is-active { width: 36px; }
  .banner__cta { padding: 11px 22px; font-size: 13.5px; }
}

/* ─── Real Partner cards (logo + name + role) ────────────────────────────── */
.partners-real {
  background: linear-gradient(180deg, transparent 0%, var(--warm-50) 18%, var(--warm-50) 82%, transparent 100%);
}
.partner-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}
.partner-card {
  background: var(--off-white);
  border: 1px solid rgba(132,133,136,.14);
  border-radius: 28px;
  padding: 22px 20px 20px;
  display: flex; flex-direction: column;
  gap: 14px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  text-decoration: none; color: inherit;
  position: relative; overflow: hidden;
}
.partner-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(207,41,109,.22);
}
.partner-card__logo {
  height: 84px;
  display: flex; align-items: center; justify-content: center;
  background: var(--ivory);
  border-radius: 18px;
  padding: 14px;
  border: 1px solid rgba(132,133,136,.08);
}
.partner-card__logo svg,
.partner-card__logo img {
  max-height: 100%; max-width: 100%; width: auto; height: auto;
  object-fit: contain;
}
.partner-card__name {
  font-family: var(--display);
  font-size: 1.18rem;
  font-weight: 600;
  color: var(--tyrian);
  letter-spacing: -.005em;
  line-height: 1.18;
}
.partner-card__full {
  font-size: 13.5px;
  color: var(--ink-soft);
  font-weight: 300;
  line-height: 1.45;
  flex: 1;
}
.partner-card__link {
  margin-top: 4px;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--razzmatazz);
  font-weight: 500;
  display: inline-flex; align-items: center; gap: 6px;
}
.partner-card__link::after { content: "→"; transition: transform .25s var(--ease); }
.partner-card:hover .partner-card__link::after { transform: translateX(4px); }

@media (max-width: 1080px) {
  .partner-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 760px) {
  .partner-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .partner-card { padding: 18px 16px 16px; border-radius: 22px; }
  .partner-card__logo { height: 72px; padding: 12px; }
  .partner-card__name { font-size: 1.05rem; }
}
@media (max-width: 420px) {
  .partner-grid { grid-template-columns: 1fr; }
}

/* ─── Page hero variant (with backdrop) ──────────────────────────────────── */
.page-hero--banner {
  background: linear-gradient(180deg, var(--cream) 0%, transparent 100%);
  padding: 84px 0 56px;
  margin-bottom: 0;
}
.page-hero--banner::before { display: none; }
.page-hero .breadcrumb {
  font-size: 12.5px;
  color: var(--muted);
  letter-spacing: .04em;
  margin-bottom: 16px;
  display: inline-flex; align-items: center; gap: 8px;
}
.page-hero .breadcrumb a { color: var(--muted); }
.page-hero .breadcrumb a:hover { color: var(--tyrian); }
.page-hero .breadcrumb .sep { color: rgba(132,133,136,.4); }

/* ─── Project detail page ────────────────────────────────────────────────── */
.project-cover {
  width: 100%;
  height: clamp(280px, 42vw, 480px);
  border-radius: 0 0 var(--r-large) var(--r-large);
  overflow: hidden;
  position: relative;
  background: var(--peach-soft);
  margin-bottom: 56px;
}
.project-cover svg, .project-cover img { width: 100%; height: 100%; object-fit: cover; }
.project-cover::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(31,18,22,.18));
}

.project-head {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 52px;
}
.project-head h1 {
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  font-weight: 400;
  letter-spacing: -.018em;
}
.project-head h1 em { font-style: italic; color: var(--razzmatazz); }
.project-head .lead {
  margin-top: 18px;
  font-size: 1.05rem;
  color: var(--ink-soft);
  font-weight: 300;
  max-width: 56ch;
}

.meta-grid {
  background: var(--off-white);
  border-radius: var(--r-card);
  border: 1px solid rgba(132,133,136,.14);
  padding: 28px 30px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px 28px;
}
.meta-grid__item {
  display: flex; flex-direction: column; gap: 4px;
}
.meta-grid__label {
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--razzmatazz);
  font-weight: 500;
}
.meta-grid__value {
  font-family: var(--display);
  font-size: 1.15rem;
  color: var(--tyrian);
  font-weight: 500;
  line-height: 1.25;
}
.meta-grid__value small {
  font-family: var(--body);
  font-size: 13px;
  color: var(--ink-soft);
  font-weight: 300;
  display: block;
  margin-top: 2px;
}

.project-brief {
  max-width: 720px;
  margin: 0 auto;
  padding: 56px 0;
}
.project-brief h2 {
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  font-weight: 400;
  margin-bottom: 22px;
}
.project-brief p {
  font-size: 1.08rem;
  color: var(--ink-soft);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 18px;
}
.project-brief p strong {
  color: var(--tyrian); font-weight: 500;
}
.project-brief blockquote {
  margin: 32px 0;
  padding: 24px 28px;
  border-left: 3px solid var(--razzmatazz);
  background: var(--pink-softer);
  border-radius: 0 22px 22px 0;
  font-family: var(--display);
  font-style: italic;
  font-size: 1.18rem;
  color: var(--tyrian);
  line-height: 1.4;
}

.project-gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  margin-bottom: 56px;
}
.project-gallery__item {
  aspect-ratio: 4 / 3;
  border-radius: 22px;
  overflow: hidden;
  background: var(--peach-soft);
  position: relative;
}
.project-gallery__item svg,
.project-gallery__item img { width: 100%; height: 100%; object-fit: cover; }
.project-gallery__item--wide { grid-column: span 4; }
.project-gallery__item--tall { grid-column: span 2; grid-row: span 2; aspect-ratio: 1 / 1.4; }
.project-gallery__item--sq   { grid-column: span 2; }

@media (max-width: 980px) {
  .project-head { grid-template-columns: 1fr; gap: 32px; }
  .meta-grid { padding: 22px 22px; gap: 20px 24px; }
}
@media (max-width: 640px) {
  .project-cover { border-radius: 0 0 36px 36px; height: clamp(220px, 60vw, 340px); margin-bottom: 36px; }
  .meta-grid { grid-template-columns: 1fr; padding: 20px; gap: 18px; }
  .project-gallery { grid-template-columns: 1fr 1fr; gap: 10px; }
  .project-gallery__item--wide { grid-column: span 2; }
  .project-gallery__item--tall { grid-column: span 1; grid-row: auto; aspect-ratio: 4/3; }
  .project-gallery__item--sq { grid-column: span 1; }
  .project-brief { padding: 36px 0; }
  .project-brief blockquote { padding: 18px 20px; font-size: 1.05rem; }
}

/* ─── Project chips/filters (projects.html listing) ──────────────────────── */
.proj-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 12px;
}
.proj-card {
  background: var(--off-white);
  border-radius: var(--r-card);
  overflow: hidden;
  border: 1px solid rgba(132,133,136,.12);
  display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.proj-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.proj-card__cover {
  aspect-ratio: 5 / 4;
  background: var(--peach-soft);
  position: relative;
}
.proj-card__cover svg,
.proj-card__cover img { width: 100%; height: 100%; object-fit: cover; }
.proj-card__tag {
  position: absolute; top: 14px; left: 14px;
  background: rgba(250,247,241,.92);
  color: var(--tyrian);
  padding: 6px 12px;
  border-radius: var(--r-pill);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 500;
}
.proj-card__body { padding: 22px 24px 24px; display: flex; flex-direction: column; gap: 8px; }
.proj-card__body h3 {
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--tyrian);
  line-height: 1.2;
}
.proj-card__meta {
  font-size: 13px; color: var(--muted);
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
}
.proj-card__meta .dot { width: 3px; height: 3px; border-radius: 999px; background: var(--muted); display: inline-block; }
.proj-card__desc { font-size: 14px; color: var(--ink-soft); font-weight: 300; line-height: 1.5; margin-top: 4px; }
.proj-card__more {
  margin-top: 10px;
  font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--razzmatazz); font-weight: 500;
  display: inline-flex; align-items: center; gap: 6px;
}
.proj-card__more::after { content: "→"; transition: transform .25s var(--ease); }
.proj-card:hover .proj-card__more::after { transform: translateX(4px); }

@media (max-width: 960px) { .proj-list { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .proj-list { grid-template-columns: 1fr; } }

/* ─── About Us page ──────────────────────────────────────────────────────── */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: center;
  margin: 32px 0 80px;
}
.about-story__visual {
  position: relative;
}
.about-story__shape {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 60% 60% 28px 28px / 70% 70% 28px 28px;
  overflow: hidden;
  background: var(--plum-soft);
}
.about-story__shape svg, .about-story__shape img { width: 100%; height: 100%; object-fit: cover; }
.about-story h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 400;
  margin-bottom: 18px;
}
.about-story h2 em { font-style: italic; color: var(--razzmatazz); }
.about-story p {
  font-size: 1.04rem; color: var(--ink-soft); font-weight: 300;
  line-height: 1.7; margin-bottom: 14px; max-width: 56ch;
}

.ethos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin: 48px 0 80px;
}
.ethos-card {
  background: var(--off-white);
  border-radius: var(--r-card);
  padding: 30px 28px 28px;
  border: 1px solid rgba(132,133,136,.10);
  display: flex; flex-direction: column; gap: 12px;
}
.ethos-card__no {
  font-family: var(--display);
  font-style: italic;
  color: var(--razzmatazz);
  font-size: 1.6rem;
  font-weight: 500;
}
.ethos-card h3 {
  font-family: var(--display);
  font-size: 1.3rem; font-weight: 500;
  color: var(--tyrian); line-height: 1.2;
}
.ethos-card p { font-size: 14.5px; color: var(--ink-soft); font-weight: 300; line-height: 1.55; }

.timeline {
  position: relative;
  padding: 32px 0;
  margin: 0 0 64px;
}
.timeline::before {
  content: ""; position: absolute;
  left: 18px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, transparent, var(--mona-lisa) 18%, var(--razzmatazz) 60%, var(--tyrian) 95%, transparent);
  opacity: .35;
}
.timeline__item {
  position: relative;
  padding-left: 56px;
  margin-bottom: 28px;
}
.timeline__dot {
  position: absolute; left: 11px; top: 6px;
  width: 16px; height: 16px;
  border-radius: 999px;
  background: var(--razzmatazz);
  box-shadow: 0 0 0 5px var(--ivory), 0 0 0 6px rgba(207,41,109,.3);
}
.timeline__year {
  font-family: var(--display);
  font-style: italic;
  color: var(--razzmatazz);
  font-weight: 500;
  font-size: 1.15rem;
  margin-bottom: 4px;
}
.timeline__title {
  font-family: var(--display);
  font-size: 1.3rem; color: var(--tyrian); font-weight: 500;
  margin-bottom: 6px;
}
.timeline__desc { color: var(--ink-soft); font-weight: 300; font-size: 15px; max-width: 60ch; }

.founders {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  margin: 32px 0 64px;
}
.founder-card {
  background: var(--off-white);
  border: 1px solid rgba(132,133,136,.12);
  border-radius: var(--r-card);
  padding: 28px;
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px;
  align-items: start;
}
.founder-card__avatar {
  width: 140px; height: 140px;
  border-radius: 50% 50% 28px 50% / 50% 50% 28px 50%;
  overflow: hidden;
  background: var(--peach-soft);
}
.founder-card__avatar svg, .founder-card__avatar img { width: 100%; height: 100%; object-fit: cover; }
.founder-card__name {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--tyrian);
  margin-bottom: 4px;
}
.founder-card__role {
  font-size: 12.5px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--razzmatazz); font-weight: 500;
  margin-bottom: 14px;
}
.founder-card__bio { font-size: 14.5px; color: var(--ink-soft); font-weight: 300; line-height: 1.6; }

@media (max-width: 980px) {
  .about-story { grid-template-columns: 1fr; gap: 44px; }
  .about-story__visual { max-width: 440px; margin: 0 auto; }
  .ethos-grid { grid-template-columns: 1fr; }
  .founders { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .founder-card { grid-template-columns: 1fr; padding: 22px; }
  .founder-card__avatar { width: 110px; height: 110px; }
}

/* ─── Policies page (tabs + accordion) ───────────────────────────────────── */
.policy-shell {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 56px;
  align-items: start;
  margin: 24px 0 64px;
}
.policy-nav {
  position: sticky;
  top: 100px;
  display: flex; flex-direction: column; gap: 6px;
}
.policy-nav a {
  padding: 10px 16px;
  border-radius: var(--r-pill);
  font-size: 14.5px;
  color: var(--ink-soft);
  transition: background .25s var(--ease), color .25s var(--ease);
}
.policy-nav a:hover { background: var(--pink-softer); color: var(--tyrian); }
.policy-nav a.is-active { background: var(--tyrian); color: var(--off-white); }

.policy-body { max-width: 760px; }
.policy-section { margin-bottom: 64px; scroll-margin-top: 100px; }
.policy-section h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 400;
  margin-bottom: 8px;
}
.policy-section .meta {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: .04em;
  margin-bottom: 22px;
  font-style: italic;
  font-family: var(--display);
}
.policy-section h3 {
  font-size: 1.15rem;
  font-family: var(--body);
  font-weight: 500;
  color: var(--tyrian);
  margin: 24px 0 8px;
  letter-spacing: 0;
}
.policy-section p, .policy-section li {
  font-size: 15px; color: var(--ink-soft); font-weight: 300; line-height: 1.7;
}
.policy-section ul, .policy-section ol { padding-left: 22px; margin: 8px 0 16px; }
.policy-section li { margin-bottom: 6px; }

.faq {
  display: flex; flex-direction: column; gap: 10px;
  margin-top: 16px;
}
.faq__item {
  background: var(--off-white);
  border-radius: 20px;
  border: 1px solid rgba(132,133,136,.14);
  overflow: hidden;
}
.faq__q {
  width: 100%;
  text-align: left;
  padding: 18px 22px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  font-family: var(--display);
  font-size: 1.1rem;
  color: var(--tyrian);
  font-weight: 500;
  transition: background .25s var(--ease);
}
.faq__q:hover { background: var(--pink-softer); }
.faq__icon {
  width: 24px; height: 24px;
  border-radius: 999px;
  background: var(--pink-soft);
  color: var(--razzmatazz);
  display: grid; place-items: center;
  font-size: 14px;
  transition: transform .3s var(--ease), background .25s var(--ease);
  flex: 0 0 24px;
}
.faq__item[open] .faq__icon { transform: rotate(45deg); background: var(--tyrian); color: var(--off-white); }
.faq__a {
  padding: 0 22px 20px;
  font-size: 14.5px;
  color: var(--ink-soft);
  font-weight: 300;
  line-height: 1.65;
}

@media (max-width: 880px) {
  .policy-shell { grid-template-columns: 1fr; gap: 24px; }
  .policy-nav {
    position: relative; top: 0;
    flex-direction: row; flex-wrap: wrap; gap: 6px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(132,133,136,.18);
  }
  .policy-nav a { padding: 8px 14px; font-size: 13.5px; }
}

/* ─── Contact page ───────────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  margin: 32px 0 64px;
  align-items: start;
}
.contact-info {
  background: var(--off-white);
  border-radius: var(--r-card);
  padding: 36px 34px;
  border: 1px solid rgba(132,133,136,.12);
  display: flex; flex-direction: column; gap: 26px;
}
.contact-info__item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: start;
}
.contact-info__icon {
  width: 44px; height: 44px;
  border-radius: 999px;
  background: var(--pink-soft);
  display: grid; place-items: center;
  color: var(--razzmatazz);
}
.contact-info__label {
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 4px;
}
.contact-info__value {
  font-family: var(--display);
  color: var(--tyrian);
  font-size: 1.08rem;
  font-weight: 500;
  line-height: 1.4;
}
.contact-info__value a { color: var(--tyrian); border-bottom: 1px solid transparent; transition: border-color .25s; }
.contact-info__value a:hover { border-color: var(--razzmatazz); }
.contact-info__sub {
  font-size: 13.5px;
  color: var(--ink-soft);
  font-weight: 300;
  margin-top: 2px;
  font-family: var(--body);
  line-height: 1.5;
}

.contact-form {
  background: var(--off-white);
  border-radius: var(--r-card);
  padding: 36px 34px;
  border: 1px solid rgba(132,133,136,.12);
}
.contact-form h2 {
  font-size: 1.5rem; font-weight: 400; margin-bottom: 6px;
}
.contact-form p { color: var(--ink-soft); font-size: 14.5px; font-weight: 300; margin-bottom: 22px; }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.field label {
  font-size: 12px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted); font-weight: 500;
}
.field input, .field textarea, .field select {
  font-family: var(--body); font-size: 15px;
  padding: 12px 16px;
  border: 1px solid rgba(132,133,136,.28);
  border-radius: 14px;
  background: var(--ivory);
  color: var(--ink);
  font-weight: 300;
  transition: border-color .25s, background .25s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--razzmatazz);
  background: #fff;
}
.field textarea { resize: vertical; min-height: 120px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

@media (max-width: 880px) {
  .contact-grid { grid-template-columns: 1fr; gap: 24px; }
  .contact-info, .contact-form { padding: 28px 22px; }
  .field-row { grid-template-columns: 1fr; }
}

/* ─── Footer additions (company block) ───────────────────────────────────── */
.footer__company {
  margin-top: 18px;
  font-size: 13.5px;
  color: var(--ink-soft);
  font-weight: 300;
  line-height: 1.55;
  max-width: 28ch;
}
.footer__company strong {
  display: block;
  color: var(--tyrian);
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: .005em;
  margin-bottom: 4px;
}

/* ─── Utility: full-bleed inside .wrap context ───────────────────────────── */
.bleed { width: 100vw; margin-left: calc(50% - 50vw); }

/* ─── Hide old marquee/slider styles' interference, none expected ───────── */
.section--banner { padding: 0; }


/* ═══════════════════════════════════════════════════════════════════════════
   MOBILE OVERHAUL — compact, elegant, breathing room without bloat
   Strategy: re-tune at 760px (tablet) and 560/420px (phone).
   Everything below intentionally OVERRIDES earlier rules for these ranges.
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── Tablet (≤ 980px) ──────────────────────────────────────────────────── */
@media (max-width: 980px) {
  body { font-size: 16px; }
  .wrap { padding: 0 24px; }
  .section { padding: 48px 0; }
}

/* ─── Phone (≤ 760px) ───────────────────────────────────────────────────── */
@media (max-width: 760px) {

  /* ─ Header: tighter, calmer ─ */
  .site-header__inner { height: 60px; }
  .brand__logo { height: 38px; }
  .wrap { padding: 0 18px; }

  /* Hamburger: no chunky button — clean lines only */
  .menu-btn {
    width: 40px; height: 40px;
    background: transparent;
    border: none;
    border-radius: 12px;
  }
  .menu-btn span {
    width: 20px; height: 1.6px;
    left: 10px;
    background: var(--tyrian);
  }
  .menu-btn span:nth-child(1) { top: 14px; }
  .menu-btn span:nth-child(2) { top: 19px; }
  .menu-btn span:nth-child(3) { top: 24px; }
  .menu-btn[aria-expanded="true"] span:nth-child(1) { top: 19px; }
  .menu-btn[aria-expanded="true"] span:nth-child(3) { top: 19px; }

  /* Mobile nav overlay: refined, not aggressive */
  .mobile-nav {
    inset: 60px 0 0 0;
    padding: 28px 22px 40px;
    gap: 0;
    background: var(--ivory);
  }
  .mobile-nav a {
    font-family: var(--display);
    font-size: 1.55rem;
    font-weight: 400;
    color: var(--tyrian);
    padding: 16px 4px;
    border-bottom: 1px solid rgba(132,133,136,.14);
    letter-spacing: -.005em;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .mobile-nav a::after {
    content: "→";
    font-family: var(--body);
    font-size: 1rem;
    color: var(--razzmatazz);
    opacity: .6;
  }
  .mobile-nav a[aria-current="page"] { color: var(--razzmatazz); }
  .mobile-nav a[aria-current="page"]::after { opacity: 1; }
  .mobile-nav::after {
    content: "info@2323designs.in · +91 93101 44126";
    display: block;
    margin-top: 32px;
    font-size: 12px;
    letter-spacing: .04em;
    color: var(--muted);
    font-family: var(--body);
    text-align: left;
    padding: 0 4px;
  }

  /* ─ Banner: compact and readable ─ */
  .banner { height: 420px; }
  .banner__slide::after {
    background: linear-gradient(
      170deg,
      rgba(31,18,22,.55) 0%,
      rgba(31,18,22,.40) 50%,
      rgba(31,18,22,.65) 100%
    );
  }
  .banner__caption {
    padding: 0 22px 56px;
    gap: 10px;
    max-width: 100%;
  }
  .banner__kicker {
    font-size: 10.5px;
    letter-spacing: .2em;
    gap: 8px;
  }
  .banner__kicker::before { width: 18px; }
  .banner__title {
    font-size: 1.8rem;
    line-height: 1.08;
    max-width: 14ch;
    text-shadow: 0 1px 12px rgba(31,18,22,.4);
  }
  .banner__sub {
    font-size: 13.5px;
    max-width: 38ch;
    line-height: 1.5;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .banner__cta {
    margin-top: 8px;
    padding: 10px 18px;
    font-size: 13px;
  }
  .banner__dots {
    right: 22px; bottom: 22px;
    gap: 8px;
  }
  .banner__dot { width: 18px; height: 2.5px; }
  .banner__dot.is-active { width: 28px; }

  /* ─ Section spacing: dialed-down ─ */
  .section { padding: 40px 0; }

  /* ─ Page hero: small, tight ─ */
  .page-hero, .page-hero--banner {
    padding: 28px 0 20px;
    text-align: left;
  }
  .page-hero::before { display: none; }
  .page-hero h1 {
    font-size: 2rem;
    margin-top: 12px;
  }
  .page-hero .lead {
    margin: 14px 0 0;
    font-size: 14.5px;
    text-align: left;
  }
  .page-hero .breadcrumb { font-size: 11.5px; margin-bottom: 12px; }
  .kicker { font-size: 11px; margin-bottom: 14px; letter-spacing: .2em; }

  /* ─ About section ─ */
  .about__grid { grid-template-columns: 1fr; gap: 32px; }
  .about__visual { max-width: 280px; margin: 0 auto; }
  .about__visual .float-petal { width: 48px; right: -10px; top: 8%; }
  .about__caps { gap: 8px; margin-top: 22px; }
  .cap { font-size: 13px; padding: 9px 16px; gap: 9px; }
  .about__ctas { gap: 10px; margin-top: 22px; }
  .about h2 { font-size: 1.6rem; }
  .about p { font-size: 15px; margin-top: 16px; line-height: 1.6; }

  /* Buttons: tighter on phone */
  .btn { padding: 12px 22px; font-size: 14px; }

  /* ─ Partners grid: 2-col, compact ─ */
  .partner-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .partner-card {
    padding: 14px 14px 14px;
    border-radius: 18px;
    gap: 10px;
  }
  .partner-card__logo {
    height: 56px;
    padding: 10px;
    border-radius: 12px;
  }
  .partner-card__name {
    font-size: .98rem;
    line-height: 1.18;
  }
  .partner-card__full {
    font-size: 12px;
    line-height: 1.4;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .partner-card__link { font-size: 10.5px; letter-spacing: .12em; }
  .partners__head h2 { font-size: 1.5rem; }
  .partners__note { font-size: 13px; margin-top: 8px; }

  /* ─ Stories: 1-col, but 3:2 aspect (not 4:5) ─ */
  .s-grid { grid-template-columns: 1fr; gap: 22px; }
  .s-card { gap: 14px; }
  .s-card__cover { aspect-ratio: 3 / 2; border-radius: 180px 180px 24px 24px; }
  .s-card h3 { font-size: 1.25rem; margin-top: 6px; }
  .s-card p { font-size: 14px; margin-top: 8px; }
  .stories__head { gap: 12px; margin-bottom: 28px; }
  .stories__head .lead { font-size: 14.5px; }

  /* ─ Projects listing: 3:2 covers, single column ─ */
  .proj-list { grid-template-columns: 1fr; gap: 16px; }
  .proj-card { border-radius: 22px; }
  .proj-card__cover { aspect-ratio: 3 / 2; }
  .proj-card__body { padding: 18px 18px 20px; gap: 6px; }
  .proj-card__body h3 { font-size: 1.18rem; }
  .proj-card__meta { font-size: 12px; gap: 8px; }
  .proj-card__desc { font-size: 13.5px; line-height: 1.5; }

  /* ─ Project detail page ─ */
  .project-cover {
    height: 240px;
    border-radius: 0 0 28px 28px;
    margin-bottom: 28px;
  }
  .project-head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 36px; }
  .project-head h2 { font-size: 1.5rem !important; }
  .project-head .lead { font-size: 15px; margin-top: 12px; }
  .meta-grid {
    grid-template-columns: 1fr 1fr;
    padding: 18px;
    gap: 16px 14px;
    border-radius: 24px;
  }
  .meta-grid__label { font-size: 10px; letter-spacing: .16em; }
  .meta-grid__value { font-size: 1rem; line-height: 1.22; }
  .meta-grid__item[style*="grid-column:1/-1"] { padding: 12px 14px !important; margin: 2px 0 0 !important; }
  .project-brief { padding: 28px 0; }
  .project-brief h2 { font-size: 1.45rem; }
  .project-brief p { font-size: 15px; line-height: 1.65; }
  .project-brief blockquote { padding: 16px 18px; font-size: 1rem; margin: 22px 0; }
  .project-gallery { grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 36px; }
  .project-gallery__item { border-radius: 14px; }
  .project-gallery__item--wide { grid-column: span 2; }
  .project-gallery__item--tall { grid-column: span 1; grid-row: auto; aspect-ratio: 4/3; }
  .project-gallery__item--sq { grid-column: span 1; }

  /* ─ About Us page ─ */
  .about-story { grid-template-columns: 1fr; gap: 28px; margin: 16px 0 48px; }
  .about-story__visual { max-width: 240px; margin: 0 auto; }
  .about-story h2 { font-size: 1.55rem; }
  .about-story p { font-size: 14.5px; line-height: 1.6; margin-bottom: 12px; }
  .ethos-grid { grid-template-columns: 1fr; gap: 12px; margin: 32px 0 48px; }
  .ethos-card { padding: 22px 22px 20px; border-radius: 22px; gap: 8px; }
  .ethos-card__no { font-size: 1.3rem; }
  .ethos-card h3 { font-size: 1.15rem; }
  .ethos-card p { font-size: 14px; line-height: 1.5; }
  .timeline { padding: 18px 0; margin: 0 0 48px; }
  .timeline::before { left: 14px; }
  .timeline__item { padding-left: 44px; margin-bottom: 22px; }
  .timeline__dot { left: 7px; width: 14px; height: 14px; }
  .timeline__year { font-size: 1.02rem; }
  .timeline__title { font-size: 1.15rem; margin-bottom: 4px; }
  .timeline__desc { font-size: 14px; line-height: 1.55; }
  .founders { grid-template-columns: 1fr; gap: 14px; }
  .founder-card { grid-template-columns: 1fr; padding: 22px; gap: 16px; border-radius: 22px; }
  .founder-card__avatar {
    width: 88px; height: 88px;
    border-radius: 50% 50% 22px 50% / 50% 50% 22px 50%;
  }
  .founder-card__name { font-size: 1.3rem; }
  .founder-card__role { font-size: 11px; letter-spacing: .12em; margin-bottom: 10px; }
  .founder-card__bio { font-size: 14px; line-height: 1.55; }

  /* ─ Policies page ─ */
  .policy-shell { grid-template-columns: 1fr; gap: 18px; margin: 12px 0 48px; }
  .policy-nav {
    position: relative;
    top: 0;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 8px;
    padding: 0 0 14px;
    margin: 0 -18px 0;
    padding-left: 18px;
    padding-right: 18px;
    border-bottom: 1px solid rgba(132,133,136,.14);
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .policy-nav::-webkit-scrollbar { display: none; }
  .policy-nav a {
    flex: 0 0 auto;
    padding: 8px 14px;
    font-size: 13px;
    white-space: nowrap;
    background: var(--off-white);
    border: 1px solid rgba(132,133,136,.14);
  }
  .policy-nav a.is-active { border-color: var(--tyrian); }
  .policy-section { margin-bottom: 40px; }
  .policy-section h2 { font-size: 1.4rem; }
  .policy-section h3 { font-size: 1.02rem; margin: 18px 0 6px; }
  .policy-section p, .policy-section li { font-size: 14px; line-height: 1.6; }
  .faq__q { padding: 14px 16px; font-size: 1rem; gap: 12px; }
  .faq__a { padding: 0 16px 16px; font-size: 13.5px; line-height: 1.55; }
  .faq__icon { width: 22px; height: 22px; font-size: 13px; }

  /* ─ Contact page ─ */
  .contact-grid { grid-template-columns: 1fr; gap: 16px; margin: 12px 0 36px; }
  .contact-info, .contact-form { padding: 22px 20px; border-radius: 24px; }
  .contact-info { gap: 18px; }
  .contact-info__item { grid-template-columns: 36px 1fr; gap: 12px; }
  .contact-info__icon { width: 36px; height: 36px; }
  .contact-info__icon svg { width: 16px; height: 16px; }
  .contact-info__value { font-size: 1rem; }
  .contact-info__sub { font-size: 13px; line-height: 1.4; }
  .contact-form h2 { font-size: 1.35rem; }
  .contact-form p { font-size: 14px; margin-bottom: 18px; }
  .field { margin-bottom: 12px; }
  .field input, .field textarea, .field select {
    padding: 11px 14px;
    font-size: 15px;
    border-radius: 12px;
  }
  .field label { font-size: 11px; letter-spacing: .1em; }
  .field-row { grid-template-columns: 1fr; gap: 0; }

  /* ─ Footer: tighter ─ */
  .site-footer {
    margin-top: 24px;
    border-radius: 36px 36px 0 0;
    padding: 44px 0 22px;
  }
  .footer__grid { grid-template-columns: 1fr; gap: 28px; margin-bottom: 32px; }
  .footer__brand .brand__logo { height: 44px !important; }
  .footer__tag { font-size: 1.05rem; max-width: 100%; }
  .footer__company { font-size: 12.5px; max-width: 100%; }
  .footer__title { margin-bottom: 12px; font-size: 11px; letter-spacing: .16em; }
  .footer__list { gap: 8px; }
  .footer__list a, .footer__list span { font-size: 14px; }
  .footer__socials { gap: 8px; margin-top: 10px; }
  .footer__socials a { width: 34px; height: 34px; }
  .footer__bottom { padding-top: 20px; font-size: 12px; gap: 8px; flex-direction: column; text-align: center; }

  /* ─ Section heading h2 sizes ─ */
  .section-heading h2,
  .partners__head h2,
  .reveal h2 { font-size: 1.55rem !important; }
}

/* ─── Small phone (≤ 420px) ─────────────────────────────────────────────── */
@media (max-width: 420px) {
  .wrap { padding: 0 16px; }
  .brand__logo { height: 34px; }
  .site-header__inner { height: 56px; }
  .mobile-nav { inset: 56px 0 0 0; }

  /* Banner — even tighter */
  .banner { height: 380px; }
  .banner__caption { padding: 0 18px 46px; }
  .banner__title { font-size: 1.55rem; max-width: 13ch; }
  .banner__sub { font-size: 12.5px; -webkit-line-clamp: 2; }
  .banner__kicker { font-size: 10px; }
  .banner__cta { padding: 9px 16px; font-size: 12.5px; }
  .banner__dots { bottom: 18px; right: 18px; }
  .banner__dot { width: 14px; }
  .banner__dot.is-active { width: 22px; }

  /* Partner cards — stay 2-col, even tighter */
  .partner-grid { gap: 8px; }
  .partner-card { padding: 12px 12px 12px; border-radius: 16px; gap: 8px; }
  .partner-card__logo { height: 48px; padding: 8px; border-radius: 10px; }
  .partner-card__name { font-size: .9rem; }
  .partner-card__full { font-size: 11.5px; -webkit-line-clamp: 2; }
  .partner-card__link { font-size: 10px; }

  /* Project meta grid — 1 col */
  .meta-grid { grid-template-columns: 1fr; }

  /* Gallery — even tighter */
  .project-gallery { gap: 6px; }

  /* Section h2 sizes */
  .page-hero h1 { font-size: 1.75rem; }
  .section-heading h2,
  .partners__head h2,
  .reveal h2 { font-size: 1.4rem !important; }
}

/* ─── Touch-friendly tap targets (any small screen) ─────────────────────── */
@media (hover: none) and (pointer: coarse) {
  .nav a, .footer__list a, .mobile-nav a, .partner-card, .proj-card, .s-card {
    -webkit-tap-highlight-color: rgba(207,41,109,.15);
  }
  /* Disable hover-lift transforms — they look glitchy on touch */
  .partner-card:hover, .proj-card:hover, .s-card:hover .s-card__cover,
  .t-card:hover, .slide:hover, .ethos-card:hover {
    transform: none;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   STORIES — index listing + long-form article layout
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── Reading progress bar (top of article) ──────────────────────────────── */
.read-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--mona-lisa), var(--razzmatazz), var(--tyrian));
  z-index: 100;
  transition: width .08s linear;
  pointer-events: none;
}

/* ─── Stories index — featured + grid ────────────────────────────────────── */
.stories-hero {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 56px;
  align-items: center;
  margin: 24px 0 64px;
}
.stories-hero__text h1 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 400;
  letter-spacing: -.018em;
  line-height: 1.04;
}
.stories-hero__text h1 em {
  font-style: italic; color: var(--razzmatazz); font-weight: 400;
}
.stories-hero__text .lead {
  margin-top: 24px;
  font-size: 1.1rem;
  color: var(--ink-soft);
  font-weight: 300;
  max-width: 52ch;
  line-height: 1.65;
}
.stories-hero__visual {
  position: relative;
}
.stories-hero__shape {
  width: 100%;
  aspect-ratio: 5 / 6;
  border-radius: 50% 50% 32px 32px / 60% 60% 32px 32px;
  overflow: hidden;
  background: var(--plum-soft);
  box-shadow: var(--shadow-soft);
}
.stories-hero__shape svg, .stories-hero__shape img { width: 100%; height: 100%; object-fit: cover; }
.stories-hero__badge {
  position: absolute;
  left: -22px; bottom: 32px;
  background: var(--ivory);
  border: 1px solid rgba(132,133,136,.18);
  border-radius: var(--r-pill);
  padding: 10px 18px;
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px;
  color: var(--tyrian);
  box-shadow: var(--shadow-soft);
  font-weight: 400;
}
.stories-hero__badge .dot {
  width: 8px; height: 8px; border-radius: 999px; background: var(--razzmatazz);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.4); opacity: .6; }
}

/* ─── Featured story card ────────────────────────────────────────────────── */
.featured-story {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
  margin: 24px 0 64px;
  padding: 40px;
  background: var(--off-white);
  border: 1px solid rgba(132,133,136,.14);
  border-radius: var(--r-large);
  position: relative;
  overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.featured-story:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.featured-story__cover {
  border-radius: var(--r-card);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--peach-soft);
  position: relative;
}
.featured-story__cover svg, .featured-story__cover img { width: 100%; height: 100%; object-fit: cover; }
.featured-story__cover::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(31,18,22,.22));
}
.featured-story__flag {
  position: absolute;
  top: 22px; left: 22px;
  z-index: 2;
  background: var(--razzmatazz);
  color: var(--off-white);
  padding: 7px 14px;
  border-radius: var(--r-pill);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 500;
}
.featured-story__tag {
  font-size: 11.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--razzmatazz);
  font-weight: 500;
  margin-bottom: 14px;
  display: inline-flex; align-items: center; gap: 10px;
}
.featured-story__tag::before {
  content: ""; width: 24px; height: 1px; background: var(--razzmatazz);
}
.featured-story h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 14px;
}
.featured-story h2 em { font-style: italic; color: var(--razzmatazz); }
.featured-story__desc {
  font-size: 1.05rem;
  color: var(--ink-soft);
  font-weight: 300;
  line-height: 1.65;
  max-width: 54ch;
}
.featured-story__by {
  margin-top: 22px;
  display: flex; align-items: center; gap: 14px;
  flex-wrap: wrap;
}
.byline-mini {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13.5px;
  color: var(--ink-soft);
}
.byline-mini__avatar {
  width: 32px; height: 32px;
  border-radius: 999px;
  overflow: hidden;
  background: var(--peach-soft);
  flex: 0 0 32px;
}
.byline-mini__avatar svg { width: 100%; height: 100%; }
.byline-mini strong { color: var(--tyrian); font-weight: 500; }
.byline-mini__sep { color: rgba(132,133,136,.5); margin: 0 4px; }
.featured-story__cta {
  margin-top: 26px;
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 14px;
  letter-spacing: .02em;
  color: var(--tyrian);
  font-weight: 500;
  padding: 12px 24px;
  background: var(--tyrian);
  color: var(--off-white);
  border-radius: var(--r-pill);
  align-self: flex-start;
  transition: background .25s, transform .25s;
}
.featured-story__cta::after { content: "→"; transition: transform .25s; }
.featured-story:hover .featured-story__cta { background: var(--razzmatazz); }
.featured-story:hover .featured-story__cta::after { transform: translateX(4px); }

/* ─── Filter chips ───────────────────────────────────────────────────────── */
.stories-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0 36px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(132,133,136,.18);
}
.stories-filter__chip {
  padding: 9px 18px;
  border-radius: var(--r-pill);
  font-size: 13.5px;
  background: var(--off-white);
  border: 1px solid rgba(132,133,136,.22);
  color: var(--ink-soft);
  cursor: pointer;
  font-weight: 400;
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), transform .15s var(--ease);
}
.stories-filter__chip:hover { background: var(--pink-softer); color: var(--tyrian); }
.stories-filter__chip.is-active {
  background: var(--tyrian);
  color: var(--off-white);
  border-color: var(--tyrian);
}
.stories-filter__count {
  margin-left: auto;
  font-size: 13px;
  color: var(--muted);
  align-self: center;
  font-family: var(--display);
  font-style: italic;
}

/* ─── Story listing grid ─────────────────────────────────────────────────── */
.story-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px 28px;
}
.story-card {
  display: flex; flex-direction: column;
  gap: 18px;
  transition: opacity .3s var(--ease);
  text-decoration: none;
  color: inherit;
}
.story-card.is-hidden { display: none; }
.story-card__cover {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 22px;
  overflow: hidden;
  background: var(--peach-soft);
  position: relative;
  transition: transform .4s var(--ease);
}
.story-card:hover .story-card__cover { transform: translateY(-4px); }
.story-card__cover svg, .story-card__cover img { width: 100%; height: 100%; object-fit: cover; }
.story-card__tagline {
  position: absolute;
  top: 16px; left: 16px;
  background: rgba(250,247,241,.94);
  color: var(--tyrian);
  padding: 6px 12px;
  border-radius: var(--r-pill);
  font-size: 10.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 500;
  z-index: 2;
}
.story-card__body { display: flex; flex-direction: column; gap: 10px; }
.story-card__meta {
  font-size: 12.5px;
  color: var(--muted);
  letter-spacing: .03em;
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
}
.story-card__meta .dot { width: 3px; height: 3px; border-radius: 999px; background: var(--muted); display: inline-block; }
.story-card h3 {
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--tyrian);
  line-height: 1.18;
  letter-spacing: -.005em;
  transition: color .25s var(--ease);
}
.story-card:hover h3 { color: var(--razzmatazz); }
.story-card__excerpt {
  font-size: 14.5px;
  color: var(--ink-soft);
  font-weight: 300;
  line-height: 1.55;
}
.story-card__by {
  margin-top: 4px;
  display: flex; align-items: center; gap: 10px;
  font-size: 12.5px;
  color: var(--muted);
}
.story-card__avatar {
  width: 26px; height: 26px;
  border-radius: 999px;
  overflow: hidden;
  background: var(--peach-soft);
  flex: 0 0 26px;
}
.story-card__avatar svg { width: 100%; height: 100%; }
.story-card__by strong { color: var(--tyrian); font-weight: 500; }

/* Differentiate card cover colours by index */
.story-list .story-card:nth-child(6n+2) .story-card__cover { background: var(--green-soft); }
.story-list .story-card:nth-child(6n+3) .story-card__cover { background: var(--plum-soft); }
.story-list .story-card:nth-child(6n+4) .story-card__cover { background: var(--pink-softer); }
.story-list .story-card:nth-child(6n+5) .story-card__cover { background: var(--peach-soft); }
.story-list .story-card:nth-child(6n+6) .story-card__cover { background: var(--green-soft); }

@media (max-width: 980px) {
  .stories-hero { grid-template-columns: 1fr; gap: 44px; }
  .stories-hero__visual { max-width: 460px; margin: 0 auto; }
  .featured-story { grid-template-columns: 1fr; gap: 28px; padding: 28px; }
  .featured-story__cover { aspect-ratio: 16 / 10; max-height: 420px; }
  .story-list { grid-template-columns: repeat(2, 1fr); gap: 32px 22px; }
}
@media (max-width: 560px) {
  .story-list { grid-template-columns: 1fr; gap: 32px; }
  .stories-filter { gap: 6px; }
  .stories-filter__chip { padding: 7px 14px; font-size: 12.5px; }
  .stories-filter__count { display: none; }
  .featured-story { padding: 22px; border-radius: 36px; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   STORY ARTICLE (individual blog post)
   ═══════════════════════════════════════════════════════════════════════════ */

.article {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.article-head {
  max-width: 760px;
  margin: 32px auto 36px;
  text-align: center;
}
.article-head .breadcrumb { justify-content: center; }
.article-head .tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--razzmatazz);
  font-weight: 500;
  margin: 14px 0 22px;
}
.article-head .tag::before,
.article-head .tag::after {
  content: ""; width: 28px; height: 1px; background: var(--razzmatazz);
}
.article-head h1 {
  font-size: clamp(2.2rem, 4.8vw, 3.8rem);
  font-weight: 400;
  letter-spacing: -.018em;
  line-height: 1.06;
  margin-bottom: 22px;
  text-wrap: balance;
}
.article-head h1 em { font-style: italic; color: var(--razzmatazz); font-weight: 400; }
.article-head .standfirst {
  font-family: var(--display);
  font-size: clamp(1.15rem, 2.1vw, 1.45rem);
  color: var(--ink-soft);
  font-weight: 400;
  font-style: italic;
  line-height: 1.45;
  max-width: 58ch;
  margin: 0 auto;
}

/* Byline strip — author, date, read time, share */
.byline {
  max-width: 760px;
  margin: 36px auto 0;
  padding: 22px 0;
  border-top: 1px solid rgba(132,133,136,.2);
  border-bottom: 1px solid rgba(132,133,136,.2);
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.byline__author {
  display: flex; align-items: center; gap: 14px;
  flex: 1; min-width: 200px;
}
.byline__avatar {
  width: 48px; height: 48px;
  border-radius: 999px;
  overflow: hidden;
  background: var(--peach-soft);
  flex: 0 0 48px;
  border: 2px solid var(--ivory);
  box-shadow: 0 0 0 1px rgba(132,133,136,.16);
}
.byline__avatar svg { width: 100%; height: 100%; }
.byline__name {
  font-family: var(--display);
  font-size: 1.1rem;
  color: var(--tyrian);
  font-weight: 500;
  display: block;
  line-height: 1.2;
}
.byline__role {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: .04em;
  display: block;
  margin-top: 2px;
}
.byline__facts {
  display: flex; flex-direction: column; gap: 4px;
  font-size: 13px;
  color: var(--ink-soft);
}
.byline__facts time, .byline__read {
  display: inline-flex; align-items: center; gap: 8px;
}
.byline__facts svg { width: 14px; height: 14px; color: var(--razzmatazz); flex: 0 0 14px; }
.byline__share {
  display: flex; gap: 8px;
  margin-left: auto;
}
.byline__share a {
  width: 36px; height: 36px;
  border-radius: 999px;
  background: var(--off-white);
  border: 1px solid rgba(132,133,136,.18);
  display: grid; place-items: center;
  color: var(--tyrian);
  transition: background .25s, color .25s, transform .25s;
}
.byline__share a:hover { background: var(--tyrian); color: var(--off-white); transform: translateY(-2px); }

/* Hero/cover image */
.article-cover {
  margin: 36px auto 52px;
  max-width: 1100px;
  border-radius: var(--r-card);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--peach-soft);
  box-shadow: var(--shadow-soft);
}
.article-cover svg, .article-cover img { width: 100%; height: 100%; object-fit: cover; }
.article-cover__caption {
  max-width: 1100px;
  margin: -36px auto 52px;
  padding: 12px 4px 0;
  font-size: 13px;
  color: var(--muted);
  font-family: var(--display);
  font-style: italic;
  text-align: center;
}

/* Article body */
.article-body {
  max-width: 720px;
  margin: 0 auto 56px;
}
.article-body p,
.article-body ul,
.article-body ol {
  font-size: 1.12rem;
  line-height: 1.78;
  color: var(--ink-soft);
  font-weight: 300;
  margin-bottom: 22px;
}
.article-body p strong { color: var(--tyrian); font-weight: 500; }
.article-body p a {
  color: var(--tyrian);
  border-bottom: 1px solid rgba(207,41,109,.4);
  transition: border-color .25s, color .25s;
}
.article-body p a:hover { color: var(--razzmatazz); border-color: var(--razzmatazz); }
.article-body h2 {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 500;
  color: var(--tyrian);
  margin: 56px 0 18px;
  letter-spacing: -.008em;
}
.article-body h3 {
  font-size: 1.32rem;
  font-weight: 500;
  font-family: var(--display);
  color: var(--tyrian);
  margin: 38px 0 12px;
}
.article-body ul, .article-body ol { padding-left: 26px; }
.article-body li { margin-bottom: 8px; }
.article-body blockquote {
  margin: 44px -36px;
  padding: 32px 36px;
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  color: var(--tyrian);
  font-weight: 400;
  line-height: 1.35;
  border-left: 3px solid var(--razzmatazz);
  background: linear-gradient(90deg, var(--pink-softer) 0%, transparent 100%);
  border-radius: 0 22px 22px 0;
  text-wrap: pretty;
}
.article-body blockquote cite {
  display: block;
  margin-top: 16px;
  font-family: var(--body);
  font-style: normal;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.article-body blockquote cite::before { content: "— "; }

/* Drop cap on first paragraph */
.article-body > p:first-of-type::first-letter {
  font-family: var(--display);
  float: left;
  font-size: 4.6rem;
  line-height: .9;
  font-weight: 500;
  color: var(--razzmatazz);
  padding: 4px 10px 0 0;
  margin-top: 4px;
}

/* Inline figures inside the article */
.article-figure {
  margin: 44px 0;
}
.article-figure--wide {
  margin: 56px calc(-1 * (50vw - 50%)) 56px calc(-1 * (50vw - 50%));
  max-width: 100vw;
  width: 100vw;
}
.article-figure--bleed {
  margin: 56px -80px;
  max-width: none;
  width: auto;
}
@media (max-width: 1100px) { .article-figure--bleed { margin: 44px -40px; } }
@media (max-width: 720px)  { .article-figure--bleed, .article-figure--wide { margin: 36px -22px; width: auto; max-width: none; } }
.article-figure__img {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 24px;
  overflow: hidden;
  background: var(--peach-soft);
  box-shadow: var(--shadow-soft);
}
.article-figure--wide .article-figure__img { border-radius: 0; aspect-ratio: 21 / 9; }
.article-figure__img svg, .article-figure__img img { width: 100%; height: 100%; object-fit: cover; }
.article-figure figcaption {
  margin-top: 14px;
  padding: 0 6px;
  font-size: 13.5px;
  color: var(--muted);
  font-family: var(--display);
  font-style: italic;
  text-align: center;
  max-width: 60ch;
  margin-left: auto; margin-right: auto;
}

/* Two-up inline gallery */
.article-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 44px 0;
}
.article-pair .article-figure { margin: 0; }
.article-pair .article-figure__img { aspect-ratio: 3 / 4; }
@media (max-width: 640px) { .article-pair { grid-template-columns: 1fr; } }

/* Pull quote (in-flow, not blockquote) */
.pull-quote {
  margin: 56px 0;
  padding: 36px 0;
  border-top: 1px solid rgba(132,133,136,.2);
  border-bottom: 1px solid rgba(132,133,136,.2);
  text-align: center;
}
.pull-quote__text {
  font-family: var(--display);
  font-size: clamp(1.5rem, 3.2vw, 2.2rem);
  color: var(--tyrian);
  font-weight: 500;
  letter-spacing: -.008em;
  line-height: 1.22;
  text-wrap: balance;
  font-style: italic;
}
.pull-quote__text em { color: var(--razzmatazz); }
.pull-quote__mark {
  font-family: var(--display);
  font-size: 3rem;
  color: var(--razzmatazz);
  line-height: 0;
  display: block;
  margin-bottom: 18px;
  opacity: .6;
}

/* Tags row */
.article-tags {
  max-width: 720px;
  margin: 32px auto 0;
  display: flex; flex-wrap: wrap; gap: 8px;
  align-items: center;
}
.article-tags__label {
  font-size: 11.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  margin-right: 8px;
}
.article-tags a {
  padding: 7px 14px;
  border-radius: var(--r-pill);
  background: var(--off-white);
  border: 1px solid rgba(132,133,136,.16);
  font-size: 13px;
  color: var(--ink-soft);
  transition: background .25s, color .25s, border-color .25s;
}
.article-tags a:hover { background: var(--pink-softer); color: var(--tyrian); border-color: rgba(207,41,109,.3); }

/* Credits & mentions block */
.credits-block {
  max-width: 720px;
  margin: 56px auto 0;
  padding: 28px 32px;
  background: var(--warm-50);
  border-radius: var(--r-card);
  border: 1px solid rgba(132,133,136,.14);
}
.credits-block__head {
  font-size: 11.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--razzmatazz);
  font-weight: 500;
  margin-bottom: 16px;
}
.credits-block dl {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 10px 24px;
  margin: 0;
}
.credits-block dt {
  font-size: 12.5px;
  letter-spacing: .08em;
  color: var(--muted);
  font-weight: 500;
  text-transform: uppercase;
}
.credits-block dd {
  margin: 0;
  font-family: var(--display);
  color: var(--tyrian);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
}
.credits-block dd a {
  border-bottom: 1px solid transparent;
  transition: border-color .25s;
}
.credits-block dd a:hover { border-color: var(--razzmatazz); }
@media (max-width: 640px) {
  .credits-block { padding: 22px 22px; }
  .credits-block dl { grid-template-columns: 1fr; gap: 4px 0; }
  .credits-block dt { margin-top: 12px; }
  .credits-block dt:first-child { margin-top: 0; }
}

/* Author bio card — end of article */
.author-bio {
  max-width: 720px;
  margin: 48px auto 0;
  padding: 32px;
  background: var(--off-white);
  border: 1px solid rgba(132,133,136,.12);
  border-radius: var(--r-card);
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 26px;
  align-items: start;
}
.author-bio__avatar {
  width: 100px; height: 100px;
  border-radius: 50% 50% 24px 50% / 50% 50% 24px 50%;
  overflow: hidden;
  background: var(--peach-soft);
}
.author-bio__avatar svg { width: 100%; height: 100%; }
.author-bio__label {
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--razzmatazz);
  font-weight: 500;
  margin-bottom: 6px;
}
.author-bio__name {
  font-family: var(--display);
  font-size: 1.4rem;
  color: var(--tyrian);
  font-weight: 500;
  margin-bottom: 6px;
}
.author-bio__role {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: .04em;
  margin-bottom: 12px;
  font-style: italic;
  font-family: var(--display);
}
.author-bio__about {
  font-size: 14.5px;
  color: var(--ink-soft);
  font-weight: 300;
  line-height: 1.6;
}
@media (max-width: 560px) {
  .author-bio { grid-template-columns: 1fr; padding: 24px; }
  .author-bio__avatar { width: 80px; height: 80px; }
}

/* Related stories at the foot of an article */
.related-stories {
  max-width: 1100px;
  margin: 72px auto 0;
}
.related-stories__head {
  display: flex; align-items: end; justify-content: space-between;
  margin-bottom: 28px;
  flex-wrap: wrap; gap: 14px;
}
.related-stories__head h2 {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 400;
}
.related-stories__head a {
  font-size: 12.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--razzmatazz);
  font-weight: 500;
}
.related-stories__head a::after { content: " →"; }
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 880px) { .related-grid { grid-template-columns: repeat(2, 1fr); } .related-grid > :nth-child(3) { display: none; } }
@media (max-width: 560px) { .related-grid { grid-template-columns: 1fr; } .related-grid > :nth-child(3) { display: flex; } }

/* Newsletter / subscribe strip */
.subscribe-strip {
  margin: 96px auto 0;
  max-width: 1100px;
  padding: 48px 56px;
  background: linear-gradient(135deg, var(--plum-soft) 0%, var(--pink-softer) 100%);
  border-radius: var(--r-large);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 36px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.subscribe-strip::before {
  content: "";
  position: absolute;
  right: -60px; top: -40px;
  width: 240px; height: 240px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(207,41,109,.12), transparent 70%);
  pointer-events: none;
}
.subscribe-strip h3 {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 400;
  margin-bottom: 10px;
}
.subscribe-strip h3 em { font-style: italic; color: var(--razzmatazz); }
.subscribe-strip p {
  color: var(--ink-soft);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.55;
  max-width: 42ch;
}
.subscribe-strip form {
  display: flex; gap: 10px;
  background: var(--ivory);
  border-radius: var(--r-pill);
  padding: 6px;
  border: 1px solid rgba(132,133,136,.18);
  z-index: 2; position: relative;
}
.subscribe-strip input {
  border: none;
  background: transparent;
  padding: 12px 20px;
  font-family: var(--body);
  font-size: 14.5px;
  color: var(--ink);
  flex: 1; min-width: 0;
  outline: none;
  font-weight: 300;
}
.subscribe-strip button {
  padding: 12px 24px;
  border-radius: var(--r-pill);
  background: var(--tyrian);
  color: var(--off-white);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .02em;
  transition: background .25s, transform .25s;
}
.subscribe-strip button:hover { background: var(--razzmatazz); transform: translateY(-1px); }
@media (max-width: 760px) {
  .subscribe-strip { grid-template-columns: 1fr; padding: 32px 28px; margin-top: 64px; }
  .subscribe-strip form { flex-direction: column; padding: 8px; border-radius: 20px; }
  .subscribe-strip input { padding: 10px 14px; }
  .subscribe-strip button { width: 100%; }
}

/* Stat callout (numbers inline within an article) */
.stat-callout {
  margin: 48px 0;
  padding: 28px 32px;
  background: var(--off-white);
  border-radius: var(--r-card);
  border: 1px solid rgba(132,133,136,.12);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.stat-callout__item .n {
  font-family: var(--display);
  font-size: 2rem;
  color: var(--tyrian);
  font-weight: 500;
  display: block;
  line-height: 1;
}
.stat-callout__item .l {
  font-size: 12.5px;
  color: var(--muted);
  letter-spacing: .04em;
  margin-top: 8px;
  display: block;
}
@media (max-width: 640px) {
  .stat-callout { grid-template-columns: 1fr; padding: 22px; }
  .stat-callout__item { padding: 10px 0; border-bottom: 1px solid rgba(132,133,136,.15); }
  .stat-callout__item:last-child { border-bottom: none; }
}

/* Article responsive */
@media (max-width: 760px) {
  .article { padding: 0 22px; }
  .byline { gap: 18px; padding: 18px 0; }
  .byline__share { margin-left: 0; }
  .article-body p, .article-body ul, .article-body ol { font-size: 1.05rem; line-height: 1.7; }
  .article-body blockquote { margin: 32px 0; padding: 22px 22px; }
  .article-body > p:first-of-type::first-letter { font-size: 3.6rem; }
  .article-cover { aspect-ratio: 4/3; margin: 28px auto 40px; }
}

