/* =====================================================================
   Jaden's Place — Editorial Activism Design System
   Fraunces + DM Sans · Ink / Paper / Orange
   Canonical source. Also inlined in each HTML <style> block so preview
   renders correctly without external resource loading.
   ===================================================================== */

/* ---------- Typography (Google Fonts + system fallback) ---------- */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght,SOFT@0,9..144,300..900,0..100;1,9..144,300..900,0..100&family=DM+Sans:ital,opsz,wght@0,9..40,300..700;1,9..40,400..700&display=swap');

:root {
  /* Editorial palette */
  --ink: #0a0a0a;
  --ink-2: #1b1b1b;
  --ink-3: #2a2a2a;
  --paper: #f7f3ec;
  --paper-2: #efe9dc;
  --bone: #e9e3d4;
  --stone: #d9d4c6;
  --mute: #71695d;
  --orange: #ff5a1f;
  --ember: #c43f08;
  --amber: #ffb27a;
  --white: #ffffff;
  --ring: rgba(255,90,31,0.28);

  /* Type */
  --serif: "Fraunces", "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, "Times New Roman", serif;
  --sans: "DM Sans", "Helvetica Neue", Helvetica, Arial, system-ui, -apple-system, sans-serif;

  /* Scale */
  --container: 1280px;
  --gutter: clamp(22px, 4.4vw, 60px);

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in: cubic-bezier(0.7, 0, 0.84, 0);

  /* Radii */
  --r-sm: 6px;
  --r: 14px;
  --r-lg: 28px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  font-feature-settings: "ss01", "cv11";
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }
::selection { background: var(--orange); color: var(--paper); }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; border-radius: 4px; }

/* ---------- Typography Utilities ---------- */
.display {
  font-family: var(--serif);
  font-weight: 500;
  font-variation-settings: "opsz" 144, "SOFT" 20;
  letter-spacing: -0.035em;
  line-height: 0.92;
  color: var(--ink);
}
.display em { font-style: italic; font-variation-settings: "opsz" 144, "SOFT" 100; color: var(--orange); }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.028em;
  line-height: 1.02;
  margin: 0 0 0.4em;
  color: var(--ink);
}
h1 { font-size: clamp(2.6rem, 8.4vw, 7rem); font-variation-settings: "opsz" 144, "SOFT" 20; letter-spacing: -0.045em; line-height: 0.92; }
h2 { font-size: clamp(2rem, 4.6vw, 3.8rem); letter-spacing: -0.035em; line-height: 0.98; }
h3 { font-size: clamp(1.35rem, 2vw, 1.75rem); letter-spacing: -0.02em; line-height: 1.12; }
h4 { font-size: 1.1rem; letter-spacing: -0.01em; line-height: 1.25; font-family: var(--sans); font-weight: 600; }

p { margin: 0 0 1em; }

.kicker {
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.kicker::before {
  content: "";
  width: 28px;
  height: 1.5px;
  background: var(--orange);
}
.kicker-tag {
  display: inline-block;
  padding: 7px 14px 6px;
  background: var(--orange);
  color: var(--paper);
  font-family: var(--sans);
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transform: rotate(-2.2deg);
  box-shadow: 2px 2px 0 var(--ink);
}
.kicker-tag.alt { background: var(--ink); color: var(--paper); box-shadow: 2px 2px 0 var(--orange); }

.lead {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.18rem, 1.7vw, 1.5rem);
  line-height: 1.42;
  letter-spacing: -0.01em;
  color: var(--ink-2);
  max-width: 58ch;
}
.standfirst {
  font-family: var(--sans);
  font-size: 1.06rem;
  line-height: 1.58;
  color: var(--mute);
  max-width: 48ch;
}

.pull {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.6rem, 3.4vw, 2.8rem);
  letter-spacing: -0.02em;
  line-height: 1.12;
  color: var(--ink);
}

/* ---------- Layout Primitives ---------- */
.wrap {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section { padding-block: clamp(72px, 10vw, 140px); position: relative; }
.section-sm { padding-block: clamp(48px, 7vw, 90px); }
.section.ink { background: var(--ink); color: var(--paper); }
.section.ink h1, .section.ink h2, .section.ink h3, .section.ink h4, .section.ink .display { color: var(--paper); }
.section.ink .kicker { color: var(--paper); }
.section.ink .lead { color: rgba(247,243,236,0.75); }
.section.ink .standfirst { color: rgba(247,243,236,0.65); }

.section.paper-2 { background: var(--paper-2); }
.section.bone { background: var(--bone); }

.rule {
  height: 1px;
  background: var(--stone);
  border: 0;
  margin: 0;
}
.section.ink .rule { background: var(--ink-3); }

/* ---------- Grain + texture overlays ---------- */
.grain::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.09 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  pointer-events: none;
  mix-blend-mode: overlay;
  opacity: 0.6;
  z-index: 0;
}
.grain > * { position: relative; z-index: 1; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 90;
  padding: 18px 0;
  transition: padding 0.35s var(--ease), background 0.35s var(--ease), box-shadow 0.35s var(--ease), color 0.35s var(--ease);
}
.site-header.scrolled {
  background: rgba(247,243,236,0.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  padding: 12px 0;
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}
body.ink-hero .site-header:not(.scrolled) { color: var(--paper); }
body.ink-hero .site-header:not(.scrolled) .brand .mark b { color: var(--paper); }
body.ink-hero .site-header:not(.scrolled) .brand .mark small { color: rgba(247,243,236,0.6); }
body.ink-hero .site-header:not(.scrolled) .nav-links a { color: var(--paper); }
body.ink-hero .site-header:not(.scrolled) .nav-links a:hover { color: var(--amber); }
body.ink-hero .site-header:not(.scrolled) .nav-links a.active { color: var(--amber); }
body.ink-hero .site-header:not(.scrolled) .nav-toggle { background: var(--paper); color: var(--ink); }
body.ink-hero .site-header:not(.scrolled) .nav-toggle span,
body.ink-hero .site-header:not(.scrolled) .nav-toggle span::before,
body.ink-hero .site-header:not(.scrolled) .nav-toggle span::after { background: var(--ink); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand .logo { width: 44px; height: 44px; object-fit: contain; }
.brand .mark {
  line-height: 1;
}
.brand .mark b {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  font-variation-settings: "opsz" 44, "SOFT" 50;
  color: var(--ink);
  display: block;
}
.brand .mark b em { font-style: italic; color: var(--orange); }
.brand .mark small {
  display: block;
  font-family: var(--sans);
  font-size: 9.5px;
  letter-spacing: 0.28em;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--mute);
  margin-top: 4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav-links a {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.94rem;
  letter-spacing: -0.005em;
  position: relative;
  padding: 6px 0;
  transition: color 0.25s var(--ease);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--orange);
  transition: width 0.35s var(--ease);
}
.nav-links a:hover { color: var(--orange); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--orange); }

.nav-cta { display: flex; align-items: center; gap: 10px; }

.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  background: var(--ink);
  color: var(--paper);
  border-radius: 50%;
  align-items: center; justify-content: center;
  position: relative;
  z-index: 110;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  position: absolute;
  width: 18px; height: 2px;
  background: var(--paper);
  transition: transform 0.4s var(--ease), top 0.3s var(--ease), opacity 0.2s var(--ease);
}
.nav-toggle span { top: 50%; }
.nav-toggle span::before { content: ""; top: -6px; left: 0; }
.nav-toggle span::after  { content: ""; top: 6px;  left: 0; }
body.nav-open .nav-toggle { background: var(--orange); }
body.nav-open .nav-toggle span { background: transparent; }
body.nav-open .nav-toggle span::before { top: 0; transform: rotate(45deg); }
body.nav-open .nav-toggle span::after  { top: 0; transform: rotate(-45deg); }

@media (max-width: 960px) {
  .nav-toggle { display: inline-flex; z-index: 1002; position: relative; }
  body.nav-open .site-header { z-index: 1001; }
  .nav-links {
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    background: var(--ink);
    color: var(--paper);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 22px;
    transform: translateY(-100%);
    transition: transform 0.55s var(--ease);
    padding: 100px 24px 40px;
    z-index: 1000;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .nav-links a {
    color: var(--paper);
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(1.8rem, 6.5vw, 2.6rem);
    letter-spacing: -0.03em;
    padding: 4px 0;
  }
  .nav-links a::after { background: var(--orange); }
  body.nav-open .nav-links { transform: translateY(0); }
  .nav-cta .btn.hide-m { display: none; }
}

/* ---------- Buttons ---------- */
.btn {
  --_bg: var(--orange);
  --_fg: var(--paper);
  --_bd: transparent;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 26px;
  background: var(--_bg);
  color: var(--_fg);
  border: 1.5px solid var(--_bd);
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.94rem;
  letter-spacing: -0.005em;
  border-radius: 999px;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  white-space: nowrap;
  line-height: 1;
}
.btn svg { width: 16px; height: 16px; transition: transform 0.35s var(--ease); }
.btn:hover svg { transform: translateX(4px); }
.btn:hover { transform: translateY(-2px); }
.btn.primary { box-shadow: 0 10px 30px -10px var(--ember); }
.btn.primary:hover { --_bg: var(--ember); box-shadow: 0 16px 40px -10px var(--ember); }
.btn.ink { --_bg: var(--ink); --_fg: var(--paper); }
.btn.ink:hover { --_bg: var(--orange); }
.btn.outline { --_bg: transparent; --_fg: var(--ink); --_bd: var(--ink); }
.btn.outline:hover { --_bg: var(--ink); --_fg: var(--paper); }
.btn.ghost { --_bg: transparent; --_fg: var(--paper); --_bd: rgba(247,243,236,0.35); }
.btn.ghost:hover { --_bg: var(--paper); --_fg: var(--ink); --_bd: var(--paper); }
.btn.lg { padding: 18px 34px; font-size: 1.02rem; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-weight: 600;
  color: var(--orange);
  font-size: 0.96rem;
  border-bottom: 1.5px solid transparent;
  padding-bottom: 2px;
  transition: gap 0.3s var(--ease), border-color 0.3s var(--ease);
}
.link-arrow svg { width: 14px; height: 14px; }
.link-arrow:hover { gap: 14px; border-color: var(--orange); }

/* ---------- Hero (editorial) ---------- */
.hero {
  position: relative;
  padding-top: clamp(130px, 16vw, 180px);
  padding-bottom: clamp(70px, 10vw, 130px);
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(55% 55% at 88% 8%, rgba(255,90,31,0.38), transparent 60%),
    radial-gradient(45% 60% at 8% 100%, rgba(255,90,31,0.22), transparent 70%),
    linear-gradient(180deg, #060606 0%, #101010 100%);
  z-index: -2;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.08 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: 0.55;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(30px, 5vw, 80px);
  align-items: center;
}
.hero .display {
  color: var(--paper);
  font-size: clamp(2.8rem, 9.5vw, 8.2rem);
  margin-bottom: 28px;
}
.hero .display em { color: var(--orange); }

.hero-meta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 9px 16px 8px;
  background: rgba(255,90,31,0.14);
  border: 1px solid rgba(255,90,31,0.35);
  color: var(--amber);
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 26px;
}
.hero-meta .dot {
  width: 8px; height: 8px; background: var(--orange); border-radius: 50%;
  box-shadow: 0 0 12px var(--orange);
  animation: pulse 2.2s infinite ease-in-out;
}
@keyframes pulse { 0%,100% {opacity:1;} 50% {opacity:0.35;} }

.hero-standfirst {
  color: rgba(247,243,236,0.78);
  font-family: var(--serif);
  font-size: clamp(1.18rem, 1.6vw, 1.42rem);
  line-height: 1.42;
  max-width: 44ch;
  margin-bottom: 36px;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 36px; }

.hero-byline {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--sans);
  font-size: 0.84rem;
  letter-spacing: 0.04em;
  color: rgba(247,243,236,0.6);
  border-top: 1px solid rgba(247,243,236,0.12);
  padding-top: 22px;
  max-width: 44ch;
}
.hero-byline b { color: var(--paper); font-weight: 600; display: block; }
.hero-byline .dash { color: var(--orange); }

/* Photo stack */
.photo-stack {
  position: relative;
  aspect-ratio: 4/5;
  max-width: 560px;
  margin-left: auto;
}
.photo-stack .ph {
  position: absolute;
  overflow: hidden;
  border-radius: 4px;
  background: var(--ink-3);
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.55);
}
.photo-stack .ph img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease); }
.photo-stack .ph:hover img { transform: scale(1.06); }
.photo-stack .ph-1 { inset: 0 12% 12% 0; z-index: 3; transform: rotate(-2.2deg); }
.photo-stack .ph-2 { top: 14%; right: 0; width: 54%; height: 52%; z-index: 2; transform: rotate(4deg); }
.photo-stack .ph-3 { bottom: 0; left: 2%; width: 38%; height: 38%; z-index: 4; transform: rotate(-6deg); border: 6px solid var(--paper); }

.hero-badge {
  position: absolute;
  z-index: 5;
  padding: 14px 18px;
  background: var(--paper);
  color: var(--ink);
  border-radius: 4px;
  box-shadow: 8px 8px 0 var(--orange);
  font-family: var(--sans);
  min-width: 140px;
}
.hero-badge b {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.9rem;
  letter-spacing: -0.03em;
  color: var(--orange);
  display: block;
  line-height: 1;
  font-variation-settings: "opsz" 72;
}
.hero-badge span { font-size: 10.5px; letter-spacing: 0.16em; font-weight: 600; text-transform: uppercase; color: var(--mute); }
.hero-badge.b1 { top: 8%; right: -5%; transform: rotate(3.5deg); }
.hero-badge.b2 { bottom: 6%; left: -8%; transform: rotate(-4deg); box-shadow: 8px 8px 0 var(--ink); }

@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 24px; }
  .photo-stack { max-width: 440px; margin: 20px auto 0; }
  .hero-badge.b2 { left: 6%; }
  .hero-badge.b1 { right: 4%; }
}
@media (max-width: 700px) {
  .hero { padding-bottom: 60px; }
  .photo-stack {
    max-width: none;
    width: 100%;
    aspect-ratio: 4 / 3;
    margin: 16px 0 0;
  }
  .photo-stack .ph-1 {
    inset: 0 !important;
    transform: none !important;
    border-radius: 4px;
    border: none;
  }
  .photo-stack .ph-2,
  .photo-stack .ph-3,
  .hero-badge { display: none; }
  .hero-byline { padding-top: 18px; }
  /* Ensure hero content shows even if JS is slow/blocked */
  .h-stage,
  .photo-stack .ph {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ---------- Impact strip ---------- */
.impact {
  background: var(--ink);
  color: var(--paper);
  position: relative;
  padding: 40px 0;
  overflow: hidden;
  border-top: 1px solid var(--ink-3);
  border-bottom: 1px solid var(--ink-3);
}
.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: end;
  gap: clamp(24px, 3vw, 50px);
}
.impact-grid > * + * { border-left: 1px solid var(--ink-3); padding-left: clamp(20px, 2.5vw, 40px); }
.impact-stat {
  display: grid;
}
.impact-stat b {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(3rem, 6vw, 5.4rem);
  letter-spacing: -0.04em;
  line-height: 0.95;
  color: var(--orange);
  font-variation-settings: "opsz" 144, "SOFT" 10;
}
.impact-stat span {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(247,243,236,0.7);
  font-weight: 600;
  margin-top: 12px;
}
@media (max-width: 800px) {
  .impact-grid { grid-template-columns: repeat(2, 1fr); gap: 34px; }
  .impact-grid > * + * { border-left: 0; padding-left: 0; }
  .impact-grid > :nth-child(2), .impact-grid > :nth-child(4) { border-left: 1px solid var(--ink-3); padding-left: 24px; }
}

/* ---------- Chapter Mark (01 / The Story) ---------- */
.chapter {
  display: flex;
  align-items: baseline;
  gap: 24px;
  margin-bottom: 32px;
  font-family: var(--serif);
  color: var(--ink);
}
.chapter .num {
  font-size: clamp(4rem, 10vw, 9rem);
  font-weight: 300;
  letter-spacing: -0.06em;
  line-height: 0.8;
  color: var(--orange);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  font-style: italic;
}
.chapter .slash { color: var(--stone); font-weight: 300; font-size: clamp(3rem, 7vw, 6rem); line-height: 0.8; }
.chapter .label {
  font-family: var(--sans);
  font-size: 11.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink);
  padding-bottom: 14px;
}
.section.ink .chapter .label { color: var(--paper); }
.section.ink .chapter .slash { color: var(--ink-3); }

/* ---------- Split (editorial, asymmetric) ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4.5vw, 80px);
  align-items: center;
}
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }
.split-visual {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--stone);
  border-radius: 4px;
}
.split-visual img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.6s var(--ease);
  filter: saturate(1.02) contrast(1.02);
}
.split-visual:hover img { transform: scale(1.05); }
.split-visual-wrap { position: relative; }
.split-visual-wrap::before {
  content: "";
  position: absolute;
  inset: -16px -16px 40% 40%;
  background: var(--orange);
  z-index: -1;
  border-radius: 4px;
}
.split.reverse .split-visual-wrap::before { inset: -16px 40% 40% -16px; }
.split-caption {
  position: absolute;
  bottom: 20px; left: 20px; right: 20px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--paper);
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
  font-weight: 600;
  display: flex; align-items: center; gap: 10px;
}
.split-caption::before { content: ""; width: 20px; height: 1.5px; background: var(--orange); }
@media (max-width: 900px) {
  .split, .split.reverse { grid-template-columns: 1fr; direction: ltr; }
}

/* ---------- Program cards (editorial) ---------- */
.progs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: var(--stone);
  border: 1px solid var(--stone);
}
.section.ink .progs { background: var(--ink-3); border-color: var(--ink-3); }
.prog {
  padding: clamp(28px, 3vw, 44px);
  background: var(--paper);
  transition: background 0.35s var(--ease), color 0.35s var(--ease);
  display: flex; flex-direction: column;
  min-height: 300px;
  position: relative;
}
.section.ink .prog { background: var(--ink); color: var(--paper); }
.prog:hover { background: var(--orange); color: var(--paper); }
.prog:hover h3, .prog:hover .prog-num { color: var(--paper); }
.prog:hover p { color: rgba(247,243,236,0.88); }
.prog .prog-num {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: 2.3rem;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--orange);
  margin-bottom: 22px;
  transition: color 0.35s var(--ease);
}
.prog h3 { margin-bottom: 10px; }
.section.ink .prog h3 { color: var(--paper); }
.prog p {
  color: var(--mute);
  font-size: 0.98rem;
  flex: 1;
  margin-bottom: 18px;
  transition: color 0.35s var(--ease);
}
.section.ink .prog p { color: rgba(247,243,236,0.7); }
.prog-tag {
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--orange);
  transition: color 0.35s var(--ease);
}
.prog:hover .prog-tag { color: var(--paper); }

/* ---------- Event list (editorial ledger) ---------- */
.events {
  border-top: 1px solid var(--stone);
}
.section.ink .events { border-top-color: var(--ink-3); }
.event {
  display: grid;
  grid-template-columns: 200px 1fr 160px;
  gap: clamp(24px, 3vw, 60px);
  align-items: center;
  padding: clamp(26px, 3vw, 42px) 0;
  border-bottom: 1px solid var(--stone);
  position: relative;
  transition: background 0.35s var(--ease);
}
.section.ink .event { border-bottom-color: var(--ink-3); }
.event:hover { background: var(--bone); }
.section.ink .event:hover { background: var(--ink-2); }
.event-date {
  font-family: var(--serif);
}
.event-date .d {
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.92;
  color: var(--ink);
  display: block;
  font-variation-settings: "opsz" 144;
}
.section.ink .event-date .d { color: var(--paper); }
.event-date .my {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--orange);
  margin-top: 6px;
  display: block;
}
.event h3 { margin-bottom: 6px; font-family: var(--serif); font-weight: 500; font-size: clamp(1.3rem, 2vw, 1.75rem); }
.event-meta {
  display: flex; gap: 20px; flex-wrap: wrap;
  font-size: 0.88rem; color: var(--mute);
  margin-top: 10px;
}
.section.ink .event-meta { color: rgba(247,243,236,0.65); }
.event-meta span { display: inline-flex; align-items: center; gap: 6px; }
.event-meta svg { width: 14px; height: 14px; color: var(--orange); }
.event-cta { justify-self: end; }
@media (max-width: 800px) {
  .event { grid-template-columns: 1fr; gap: 14px; }
  .event-cta { justify-self: start; }
  .event-date { display: flex; align-items: baseline; gap: 12px; }
  .event-date .d { font-size: 2.4rem; }
}

/* ---------- Post / Blog cards ---------- */
.posts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(22px, 2vw, 34px);
}
.post {
  display: grid;
  grid-template-rows: auto 1fr;
  background: transparent;
  transition: transform 0.4s var(--ease);
}
.post:hover { transform: translateY(-4px); }
.post .pic {
  aspect-ratio: 5/4;
  overflow: hidden;
  background: var(--stone);
  border-radius: 4px;
  margin-bottom: 20px;
}
.post .pic img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease), filter 0.6s var(--ease); filter: saturate(1.05); }
.post:hover .pic img { transform: scale(1.06); }
.post .meta {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--mute);
  margin-bottom: 10px;
  display: flex; gap: 8px; align-items: center;
}
.post .meta b { color: var(--orange); font-weight: 700; }
.post h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.3rem, 1.8vw, 1.6rem);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.post p { color: var(--mute); font-size: 0.98rem; margin: 0; }

.post.feature {
  grid-template-columns: 1.15fr 1fr;
  grid-template-rows: auto;
  gap: clamp(24px, 4vw, 60px);
  align-items: center;
}
.post.feature .pic { margin-bottom: 0; aspect-ratio: auto; height: 100%; min-height: 400px; }
.post.feature h3 { font-size: clamp(1.8rem, 3vw, 2.6rem); }
@media (max-width: 800px) {
  .post.feature { grid-template-columns: 1fr; }
  .post.feature .pic { min-height: 260px; }
}

/* ---------- CTA pull-quote ---------- */
.cta-pull {
  background: var(--orange);
  color: var(--paper);
  padding: clamp(40px, 7vw, 90px) clamp(28px, 5vw, 80px);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: end;
}
.cta-pull::before {
  content: "\201C";
  position: absolute;
  top: -30px; left: 14px;
  font-family: var(--serif);
  font-size: 14rem;
  line-height: 1;
  color: rgba(255,255,255,0.15);
  font-weight: 300;
}
.cta-pull .display {
  color: var(--paper);
  font-size: clamp(1.9rem, 3.8vw, 3.6rem);
  letter-spacing: -0.03em;
  line-height: 1.02;
}
.cta-pull .display em { color: var(--ink); }
.cta-pull p { color: rgba(247,243,236,0.9); font-size: 1.02rem; margin: 14px 0 0; max-width: 50ch; }
.cta-pull .ctas {
  display: flex; flex-direction: column; gap: 12px; align-items: flex-start;
  justify-self: end;
}
@media (max-width: 800px) {
  .cta-pull { grid-template-columns: 1fr; }
  .cta-pull .ctas { justify-self: start; }
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background: var(--ink);
  color: var(--paper);
  padding-top: clamp(150px, 18vw, 220px);
  padding-bottom: clamp(60px, 8vw, 110px);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(55% 60% at 90% 0%, rgba(255,90,31,0.38), transparent 60%),
    radial-gradient(40% 50% at 0% 100%, rgba(255,90,31,0.18), transparent 70%);
  z-index: 0;
}
.page-hero > .wrap { position: relative; z-index: 1; }
.page-hero .display { color: var(--paper); margin-bottom: 20px; }
.page-hero .lead { color: rgba(247,243,236,0.78); font-family: var(--serif); }

.crumbs {
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(247,243,236,0.5);
  margin-bottom: 26px;
  display: flex; gap: 10px; align-items: center;
}
.crumbs a { color: rgba(247,243,236,0.85); }
.crumbs a:hover { color: var(--orange); }
.crumbs .sep { color: var(--orange); }

/* ---------- Donate page ---------- */
.donate-split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(28px, 4vw, 70px);
  align-items: start;
}
@media (max-width: 900px) { .donate-split { grid-template-columns: 1fr; } }

.donate-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 24px 0 28px;
}
.tier {
  padding: 22px 14px 18px;
  border: 1.5px solid var(--stone);
  background: var(--paper);
  text-align: left;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  border-radius: 4px;
  position: relative;
}
.tier:hover, .tier.active {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-4px);
}
.tier:hover .tier-num, .tier.active .tier-num { color: var(--orange); }
.tier:hover .tier-label, .tier.active .tier-label { color: rgba(247,243,236,0.75); }
.tier-num {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: 2.2rem;
  letter-spacing: -0.04em;
  color: var(--ink);
  line-height: 0.95;
  display: block;
  font-variation-settings: "opsz" 144;
  transition: color 0.3s var(--ease);
}
.tier-label {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--mute);
  margin-top: 8px;
  display: block;
  transition: color 0.3s var(--ease);
}

.donate-aside {
  padding: clamp(28px, 3vw, 44px);
  background: var(--paper);
  border: 1px solid var(--stone);
  border-radius: 4px;
  position: sticky;
  top: 110px;
}
.impact-rows li {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px dashed var(--stone);
  align-items: start;
}
.impact-rows li:last-child { border-bottom: 0; }
.impact-rows b {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--orange);
  letter-spacing: -0.02em;
  font-variation-settings: "opsz" 72;
}
.impact-rows h4 { margin: 0 0 4px; font-size: 1rem; }
.impact-rows p { margin: 0; font-size: 0.9rem; color: var(--mute); }

.trust {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: var(--bone);
  border-left: 3px solid var(--orange);
  font-size: 0.88rem;
  color: var(--ink-2);
  border-radius: 0 4px 4px 0;
  margin-top: 16px;
}
.trust svg { color: var(--orange); flex-shrink: 0; width: 20px; height: 20px; }

/* ---------- Form ---------- */
.form { display: grid; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field label {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 6px;
  color: var(--ink-2);
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--paper);
  border: 1.5px solid var(--stone);
  border-radius: 4px;
  font: inherit;
  color: var(--ink);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 0;
  border-color: var(--orange);
  box-shadow: 0 0 0 4px var(--ring);
}
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

/* ---------- Marquee ---------- */
.marquee {
  overflow: hidden;
  padding: 26px 0;
  background: var(--paper-2);
  border-top: 1px solid var(--stone);
  border-bottom: 1px solid var(--stone);
}
.marquee-track {
  display: flex;
  gap: 54px;
  width: max-content;
  animation: scroll 38s linear infinite;
}
.marquee-item {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  letter-spacing: -0.03em;
  color: var(--ink);
  white-space: nowrap;
  display: inline-flex; align-items: center; gap: 20px;
  font-variation-settings: "opsz" 144, "SOFT" 40;
}
.marquee-item::after {
  content: ""; width: 10px; height: 10px; background: var(--orange); border-radius: 50%;
}
@keyframes scroll { to { transform: translateX(-50%); } }

/* ---------- Timeline ---------- */
.timeline {
  position: relative;
  display: grid;
  gap: 6px;
}
.tl {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 30px;
  padding: 26px 0;
  border-top: 1px solid var(--stone);
}
.tl:last-child { border-bottom: 1px solid var(--stone); }
.section.ink .tl { border-top-color: var(--ink-3); }
.section.ink .tl:last-child { border-bottom-color: var(--ink-3); }
.tl-year {
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 2.4rem);
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.03em;
  color: var(--orange);
  line-height: 1;
  font-variation-settings: "opsz" 144;
}
.tl h4 { margin: 0 0 6px; font-family: var(--serif); font-weight: 500; font-size: 1.3rem; font-variation-settings: "opsz" 72; }
.tl p { margin: 0; color: var(--mute); }
.section.ink .tl p { color: rgba(247,243,236,0.7); }
@media (max-width: 700px) {
  .tl { grid-template-columns: 1fr; gap: 8px; }
}

/* ---------- Gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px;
}
.gallery .g {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--stone);
  border-radius: 4px;
}
.gallery .g img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s var(--ease), filter 0.5s var(--ease);
  filter: grayscale(0.1);
}
.gallery .g:hover img { transform: scale(1.06); filter: grayscale(0); }

/* ---------- Post (article) layout ---------- */
.article-hero { padding-top: clamp(130px, 16vw, 180px); padding-bottom: 30px; background: var(--paper); }
.article-hero .meta { font-family: var(--sans); font-size: 11px; letter-spacing: 0.22em; font-weight: 600; text-transform: uppercase; color: var(--mute); margin-bottom: 20px; }
.article-hero .meta b { color: var(--orange); }
.article-hero h1 { max-width: 22ch; margin-bottom: 16px; }
.article-hero .lead { max-width: 58ch; }

.article-cover {
  max-width: 1100px;
  margin: 0 auto 20px;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 4px;
  padding: 0 var(--gutter);
}
.article-cover > div {
  width: 100%; height: 100%;
  overflow: hidden; border-radius: 4px;
  background: var(--stone);
}
.article-cover img { width: 100%; height: 100%; object-fit: cover; }
.article-cover .cap { font-family: var(--sans); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600; color: var(--mute); text-align: center; margin-top: 14px; padding: 0 var(--gutter); }

.article {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 80px) var(--gutter);
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.18rem;
  line-height: 1.72;
  color: var(--ink-2);
  font-variation-settings: "opsz" 14;
}
.article > p:first-of-type::first-letter {
  float: left;
  font-family: var(--serif);
  font-size: 5.2rem;
  font-weight: 400;
  line-height: 0.9;
  margin: 4px 14px -4px 0;
  color: var(--orange);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  font-style: italic;
}
.article h2 { font-family: var(--serif); font-size: clamp(1.7rem, 2.6vw, 2.2rem); margin-top: 2em; margin-bottom: 0.6em; letter-spacing: -0.025em; color: var(--ink); }
.article h3 { font-family: var(--serif); font-size: 1.4rem; margin-top: 1.6em; margin-bottom: 0.5em; color: var(--ink); }
.article blockquote {
  border-left: 3px solid var(--orange);
  padding: 6px 28px;
  margin: 40px 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  line-height: 1.28;
  color: var(--ink);
  letter-spacing: -0.015em;
  font-variation-settings: "opsz" 144, "SOFT" 70;
}
.article a { color: var(--orange); text-decoration: underline; text-underline-offset: 4px; text-decoration-thickness: 1.5px; }
.article a:hover { color: var(--ember); }
.article ul { list-style: none; padding-left: 0; margin: 1em 0; }
.article ul li { position: relative; padding-left: 28px; margin-bottom: 8px; }
.article ul li::before { content: ""; position: absolute; left: 0; top: 0.72em; width: 14px; height: 1.5px; background: var(--orange); }
.article strong, .article b { font-family: var(--sans); font-weight: 700; color: var(--ink); }
.article em { font-style: italic; }

/* ---------- Footer ---------- */
.site-foot {
  background: var(--ink);
  color: rgba(247,243,236,0.7);
  padding: clamp(64px, 8vw, 110px) 0 30px;
  position: relative;
  overflow: hidden;
}
.site-foot::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(60% 60% at 100% 0%, rgba(255,90,31,0.18), transparent 70%);
  pointer-events: none;
}
.site-foot > .wrap { position: relative; }
.foot-top {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.3fr;
  gap: 50px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--ink-3);
}
.foot-brand .brand { margin-bottom: 20px; }
.foot-brand .brand .mark b { color: var(--paper); }
.foot-brand .brand .mark small { color: rgba(247,243,236,0.5); }
.foot-brand p { max-width: 34ch; font-size: 0.95rem; color: rgba(247,243,236,0.65); }
.site-foot h4 {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--paper);
  margin-bottom: 22px;
}
.foot-links li { margin-bottom: 10px; }
.foot-links a {
  font-size: 0.95rem;
  color: rgba(247,243,236,0.7);
  transition: color 0.25s var(--ease);
}
.foot-links a:hover { color: var(--orange); }

.contact-item {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.95rem;
  color: rgba(247,243,236,0.75);
  margin-bottom: 10px;
}
.contact-item svg { width: 18px; height: 18px; color: var(--orange); flex-shrink: 0; margin-top: 3px; }

.news {
  display: flex; gap: 8px; margin-top: 16px;
}
.news input {
  flex: 1;
  background: rgba(247,243,236,0.05);
  border: 1px solid rgba(247,243,236,0.14);
  color: var(--paper);
  padding: 13px 16px;
  border-radius: 999px;
  font-family: inherit;
}
.news input::placeholder { color: rgba(247,243,236,0.4); }
.news input:focus { border-color: var(--orange); outline: 0; }
.news button {
  padding: 0 22px;
  background: var(--orange);
  color: var(--paper);
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  transition: background 0.3s var(--ease);
}
.news button:hover { background: var(--ember); }

.socials { display: flex; gap: 10px; margin-top: 22px; }
.socials a {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(247,243,236,0.06);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
  color: var(--paper);
}
.socials a:hover { background: var(--orange); transform: translateY(-3px); }
.socials svg { width: 18px; height: 18px; }

.foot-credit {
  color: rgba(247,243,236,0.6);
  border-bottom: 1px solid rgba(247,243,236,0.18);
  padding-bottom: 1px;
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.foot-credit:hover {
  color: var(--orange);
  border-color: var(--orange);
}
.foot-base {
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: rgba(247,243,236,0.5);
  letter-spacing: 0.02em;
}
@media (max-width: 900px) { .foot-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .foot-top { grid-template-columns: 1fr; gap: 40px; } }

/* ---------- Reveals ---------- */
.rv { opacity: 0; transform: translateY(26px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.rv.in { opacity: 1; transform: translateY(0); }
.rv.d1 { transition-delay: 0.08s; }
.rv.d2 { transition-delay: 0.16s; }
.rv.d3 { transition-delay: 0.24s; }
.rv.d4 { transition-delay: 0.32s; }

/* Hero orchestrated entrance */
.h-stage { opacity: 0; transform: translateY(20px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.loaded .h-stage { opacity: 1; transform: translateY(0); }
.loaded .h-stage.s1 { transition-delay: 0.05s; }
.loaded .h-stage.s2 { transition-delay: 0.18s; }
.loaded .h-stage.s3 { transition-delay: 0.34s; }
.loaded .h-stage.s4 { transition-delay: 0.5s; }
.loaded .h-stage.s5 { transition-delay: 0.62s; }
.loaded .h-stage.s6 { transition-delay: 0.72s; }

/* Photo stack entrance */
.photo-stack .ph { opacity: 0; transition: opacity 1s var(--ease), transform 1s var(--ease); }
.loaded .photo-stack .ph-1 { opacity: 1; transform: rotate(-2.2deg); transition-delay: 0.3s; }
.loaded .photo-stack .ph-2 { opacity: 1; transform: rotate(4deg); transition-delay: 0.45s; }
.loaded .photo-stack .ph-3 { opacity: 1; transform: rotate(-6deg); transition-delay: 0.6s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .rv, .h-stage, .photo-stack .ph { opacity: 1 !important; transform: none !important; }
}

/* ---------- Misc ---------- */
.hide-m { }
@media (max-width: 600px) { .hide-m { display: none !important; } }

.note {
  padding: 18px 22px;
  background: var(--bone);
  border-left: 3px solid var(--orange);
  font-size: 0.95rem;
  color: var(--ink-2);
  border-radius: 0 4px 4px 0;
}

.tag {
  display: inline-block;
  padding: 5px 11px 4px;
  background: var(--bone);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 999px;
}
.tag.orange { background: var(--orange); color: var(--paper); }

.feat-rail {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}
.feat {
  padding: 30px 26px;
  background: var(--paper);
  border: 1px solid var(--stone);
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
  border-radius: 4px;
}
.feat:hover { border-color: var(--ink); transform: translateY(-4px); }
.feat .n {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: 2.6rem;
  letter-spacing: -0.04em;
  color: var(--orange);
  line-height: 0.95;
  margin-bottom: 16px;
  display: block;
  font-variation-settings: "opsz" 144;
}
.feat h4 { font-family: var(--serif); font-weight: 500; font-size: 1.3rem; letter-spacing: -0.02em; margin-bottom: 8px; }
.feat p { color: var(--mute); margin: 0; font-size: 0.95rem; }
.section.ink .feat { background: var(--ink-2); border-color: var(--ink-3); }
.section.ink .feat h4 { color: var(--paper); }
.section.ink .feat p { color: rgba(247,243,236,0.65); }
.section.ink .feat:hover { border-color: var(--orange); }

/* Hero scroll indicator */
.h-scroll {
  position: absolute;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(247,243,236,0.5);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  z-index: 2;
}
.h-scroll::after {
  content: ""; width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(247,243,236,0.6), transparent);
  animation: scrollLine 2.4s infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  50.1% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
@media (max-width: 900px) { .h-scroll { display: none; } }

/* ---------- Section intro (kicker + title + lead) ---------- */
.intro { max-width: 820px; margin-bottom: clamp(40px, 5vw, 80px); }
.intro.center { margin-inline: auto; text-align: center; }
.intro.center .kicker { justify-content: center; display: inline-flex; }
.intro .kicker { margin-bottom: 22px; }
.intro .lead { margin-top: 20px; }

/* Utility */
.mt-sm { margin-top: 10px; }
.mt-md { margin-top: 24px; }
.mt-lg { margin-top: 48px; }
.mb-0 { margin-bottom: 0; }
.fill { width: 100%; }
.tac { text-align: center; }
.flex-end { display: flex; justify-content: flex-end; }
