/* ===========================================================
   Murarijyoti Welfare Foundation — shared stylesheet
   Monochrome & premium. Rich near-black (from the logo) +
   warm ivory + graphite greys. The photography carries the
   colour. No competing accent hue. Mobile-first.
   =========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Spectral:ital,wght@0,400;0,500;0,600;0,700;1,400&family=IBM+Plex+Sans:wght@400;500;600;700&family=IBM+Plex+Mono:wght@400;500&display=swap');

:root {
  /* Monochrome system. --red/--marigold names are kept so existing
     rules re-point cleanly; the values are now black & warm neutral. */
  --red: #1C1A15;        /* near-black — the brand 'accent' is the ink itself */
  --red-deep: #000000;
  --marigold: #CDC6B6;   /* warm light stone, for accents on dark backgrounds */
  --ink: #1A1814;
  --body: #4D4940;
  --muted: #8A857A;
  --line: #E6E1D6;
  --paper: #F8F6F1;      /* warm ivory */
  --cream: #EFEBE1;      /* warm stone section */
  --white: #FFFFFF;
  --green-wash: #EFEBE1; /* warm neutral wash for hovers / tags */

  --maxw: 1120px;
  --gutter: clamp(20px, 5vw, 64px);

  --serif: 'Spectral', Georgia, 'Times New Roman', serif;
  --sans: 'IBM Plex Sans', system-ui, sans-serif;
  --mono: 'IBM Plex Mono', ui-monospace, monospace;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--body);
  background: var(--paper);
  font-size: 17px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }

a { color: var(--red); text-decoration: none; }
a:hover { color: var(--red-deep); }

h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--ink);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0 0 1.1em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

/* ---------- layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(56px, 9vw, 110px); }
.section--cream { background: var(--cream); }
.section--ink { background: var(--ink); color: #D8D3C8; }
.section--red { background: var(--ink); color: #D8D3C8; }

.eyebrow {
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px; background: var(--red); display: inline-block;
}
.section--ink .eyebrow, .section--red .eyebrow { color: var(--marigold); }
.section--ink .eyebrow::before, .section--red .eyebrow::before { background: var(--marigold); }

/* ---------- clean hairline divider ---------- */
.motif { height: 1px; background: var(--line); }

/* ---------- header / nav ---------- */
.topbar { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,0.92); backdrop-filter: blur(8px); border-bottom: 1px solid var(--line); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 68px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand__logo {
  width: 42px; height: 42px; border-radius: 50%; flex: none; display: block;
  background: transparent;
}
.footer .brand__logo { background: #FFFFFF; padding: 2px; }

/* ---------- full-bleed hero ---------- */
.hero { position: relative; display: flex; align-items: flex-end; overflow: hidden;
  min-height: min(86vh, 780px); background: var(--ink); }
.hero__media { position: absolute; inset: 0;
  background-image: url('photos/IMG_8527.jpg');
  background-size: cover; background-position: center 26%; background-repeat: no-repeat; }
.hero__scrim { position: absolute; inset: 0;
  background:
    linear-gradient(178deg, rgba(14,16,13,0.05) 0%, rgba(14,16,13,0.20) 38%, rgba(14,16,13,0.68) 78%, rgba(14,16,13,0.88) 100%),
    linear-gradient(95deg, rgba(14,16,13,0.58) 0%, rgba(14,16,13,0.12) 60%, rgba(14,16,13,0) 100%); }
.hero__inner { position: relative; padding-block: clamp(40px, 6vw, 84px); color: #fff; }
.hero .eyebrow { color: var(--marigold); }
.hero .eyebrow::before { background: var(--marigold); }
.hero h1 { color: #fff; font-size: clamp(30px, 5vw, 62px); font-weight: 600;
  max-width: 19ch; margin-bottom: 22px; text-shadow: 0 2px 30px rgba(20,12,8,0.35); }
.hero__sub { font-family: var(--serif); font-size: clamp(18px, 2.3vw, 25px);
  color: #ECE6D9; max-width: 34ch; margin-bottom: 32px; line-height: 1.4; font-style: italic; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }
.brand__name { font-family: var(--serif); font-weight: 600; color: var(--ink); font-size: 16px; line-height: 1.15; letter-spacing: -0.01em; white-space: nowrap; }
.brand__sub { font-family: var(--mono); font-size: 10px; letter-spacing: 0.07em; color: var(--muted); text-transform: uppercase; white-space: nowrap; }

.navlinks { display: none; align-items: center; gap: 4px; }
.navlinks a {
  color: var(--body); font-weight: 500; font-size: 15px; white-space: nowrap;
  padding: 8px 11px; border-radius: 7px; transition: background .15s, color .15s;
}
.navlinks a:hover { background: rgba(28,26,21,0.06); color: var(--red-deep); }
.navlinks a.active { color: var(--red); }
.nav__donate {
  background: var(--red); color: #fff !important; padding: 9px 18px !important;
  border-radius: 7px; font-weight: 600;
}
.nav__donate:hover { background: var(--red-deep); }

.navtoggle { display: inline-flex; flex-direction: column; gap: 4px; background: none; border: 0; cursor: pointer; padding: 10px; margin-right: -8px; }
.navtoggle span { width: 22px; height: 2px; background: var(--ink); display: block; border-radius: 2px; transition: transform .2s; }

.mobilemenu { display: none; flex-direction: column; padding: 8px 0 16px; border-top: 1px solid var(--line); }
.mobilemenu.open { display: flex; }
.mobilemenu a { color: var(--ink); font-weight: 500; padding: 12px 4px; border-bottom: 1px solid var(--line); }
.mobilemenu a:last-child { border-bottom: 0; }

@media (min-width: 1000px) {
  .navlinks { display: flex; }
  .navtoggle { display: none; }
  .mobilemenu { display: none !important; }
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px; white-space: nowrap;
  font-family: var(--sans); font-weight: 600; font-size: 16px;
  padding: 14px 26px; border-radius: 8px; cursor: pointer;
  border: 2px solid transparent; transition: background .15s, color .15s, border-color .15s;
}
.btn--primary { background: var(--red); color: #fff; }
.btn--primary:hover { background: var(--red-deep); color: #fff; }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: #fff; }
.btn--onred { background: #fff; color: var(--red-deep); }
.btn--onred:hover { background: var(--green-wash); color: var(--red-deep); }
.btn--onink { background: #fff; color: var(--red-deep); }
.btn--onink:hover { background: var(--green-wash); color: var(--red-deep); }
.btn .arrow { transition: transform .15s; }
.btn:hover .arrow { transform: translateX(3px); }

/* ---------- real photographs (all uniform 3:2) ---------- */
.ph { display: block; margin: 0; border-radius: 14px; overflow: hidden; background: #E8EDE9; position: relative; aspect-ratio: 3 / 2; }
.ph img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ph--shadow { box-shadow: 0 18px 48px -22px rgba(42,32,28,0.55); }
.photo__note {
  font-family: var(--sans); font-size: 13.5px; letter-spacing: 0.01em;
  color: var(--muted); margin-top: 12px; line-height: 1.5; font-style: italic;
}

/* ---------- stat pull-outs ---------- */
.statbig { font-family: var(--serif); font-weight: 700; color: var(--red); line-height: 1; letter-spacing: -0.02em; }
.section--ink .statbig, .section--red .statbig { color: var(--marigold); }

/* generic prose measure */
.measure { max-width: 64ch; }
.measure-narrow { max-width: 54ch; }

/* ---------- footer ---------- */
.footer { background: var(--ink); color: #C9B9AC; padding-block: clamp(48px, 7vw, 80px); font-size: 15px; }
.footer a { color: #E9DDD2; }
.footer a:hover { color: #fff; }
.footer__grid { display: grid; gap: 40px; grid-template-columns: 1fr; }
.footer h4 { color: #fff; font-family: var(--mono); font-weight: 500; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 16px; }
.footer__brand .brand__name { color: #fff; }
.footer__statement { font-family: var(--serif); font-size: 17px; line-height: 1.5; color: #E9DDD2; max-width: 38ch; }
.footer__navlist { display: flex; flex-direction: column; gap: 10px; }
.footer__reg { font-size: 13.5px; line-height: 1.7; color: #A8978A; }
.footer__bottom { margin-top: 44px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.12); display: flex; flex-wrap: wrap; gap: 8px 20px; justify-content: space-between; font-size: 13px; color: #A8978A; }

@media (min-width: 720px) {
  .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; }
}

/* ---------- misc ---------- */
.tag {
  display: inline-block; font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--red); background: var(--green-wash);
  padding: 5px 11px; border-radius: 999px; font-weight: 500;
}
hr.rule { border: 0; border-top: 1px solid var(--line); margin: 0; }

/* ---------- home: story two-up ---------- */
.storygrid { display: grid; gap: clamp(28px,4vw,48px); grid-template-columns: 1fr; align-items: start; }
@media (min-width: 820px) {
  .storygrid { grid-template-columns: 1.5fr 1fr; }
  .storygrid .ph { position: sticky; top: 92px; }
}

/* a couple of genuine pull-stats inside the prose, lightly lifted */
.databody em {
  font-style: normal;
  font-weight: 600;
  color: var(--ink);
}
.databody strong {
  font-family: var(--serif);
  font-weight: 600;
  color: var(--red);
  font-size: 1.05em;
}

/* ---------- home: programme cards ---------- */
.proggrid { display: grid; gap: clamp(28px,4vw,44px); grid-template-columns: 1fr; }
@media (min-width: 720px) { .proggrid { grid-template-columns: 1fr 1fr; } }
.progcard h3 { font-size: clamp(20px,2.4vw,25px); margin-bottom: 12px; }
.progcard p { color: var(--body); }

.cardlink {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 15px; margin-top: 14px; color: var(--red);
}
.cardlink:hover { color: var(--red-deep); }
.cardlink .arrow { transition: transform .15s; }
.cardlink:hover .arrow { transform: translateX(3px); }

/* ---------- partners row ---------- */
.partnersrow {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: 1px; background: var(--line);
  border: 1px solid var(--line); border-radius: 12px; overflow: hidden;
  grid-template-columns: 1fr 1fr;
}
@media (min-width: 760px) { .partnersrow { grid-template-columns: repeat(3, 1fr); } }
.partnersrow li {
  background: var(--white);
  display: flex; align-items: center; justify-content: center; text-align: center;
  font-family: var(--serif); font-weight: 500; font-size: clamp(15px,1.8vw,19px);
  color: var(--ink); padding: 26px 18px; min-height: 96px;
  transition: background .15s;
}
.partnersrow li:hover { background: var(--green-wash); }

/* ---------- page intro (inner pages) ---------- */
.pageintro { padding-block: clamp(48px, 7vw, 96px) clamp(36px, 5vw, 60px); }
.pageintro h1 { font-size: clamp(34px, 6vw, 66px); max-width: 16ch; margin-bottom: 22px; }
.pageintro h1 em { font-style: italic; color: var(--red); }
.lede { font-family: var(--serif); font-size: clamp(20px, 2.6vw, 27px); line-height: 1.45; color: var(--ink); max-width: 30ch; }

/* ---------- donate: giving tiers ---------- */
.tiers { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; grid-template-columns: 1fr; }
@media (min-width: 620px) { .tiers { grid-template-columns: 1fr 1fr; } }
@media (min-width: 980px) { .tiers { grid-template-columns: repeat(4, 1fr); } }
.tier { background: #fff; padding: 30px 26px 28px; display: flex; flex-direction: column; gap: 12px; transition: background .15s; }
.tier:hover { background: var(--green-wash); }
.tier__amt { font-family: var(--serif); font-weight: 700; font-size: clamp(28px, 3.4vw, 38px); color: var(--ink); line-height: 1; letter-spacing: -0.02em; }
.tier__amt span { font-size: 0.6em; color: var(--muted); font-weight: 500; }
.tier__what { color: var(--body); font-size: 15.5px; line-height: 1.5; }
.tier__tag { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--red); font-weight: 500; }

/* ---------- donate: how to give ---------- */
.givegrid { display: grid; gap: clamp(20px, 3vw, 28px); grid-template-columns: 1fr; align-items: start; }
@media (min-width: 820px) { .givegrid { grid-template-columns: 1.3fr 1fr; } }
.card { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: clamp(26px, 3.4vw, 40px); }
.card--ink { background: var(--ink); color: #D8D3C8; border-color: transparent; }
.card h3 { font-size: clamp(20px, 2.4vw, 26px); margin-bottom: 6px; }
.card--ink h3 { color: #fff; }
.card__kicker { font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--red); margin-bottom: 18px; font-weight: 500; }

.detail { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 14px 0; border-top: 1px solid var(--line); }
.detail:first-of-type { border-top: 0; }
.detail__k { font-size: 13px; color: var(--muted); font-family: var(--mono); letter-spacing: 0.04em; text-transform: uppercase; flex: none; }
.detail__v { font-weight: 600; color: var(--ink); font-size: 16px; text-align: right; font-variant-numeric: tabular-nums; word-break: break-word; }
.copybtn { font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--red); background: var(--green-wash); border: 0; border-radius: 6px; padding: 6px 10px; cursor: pointer; flex: none; transition: background .15s, color .15s; }
.copybtn:hover { background: var(--red); color: #fff; }

.qrbox { display: flex; flex-direction: column; align-items: center; gap: 16px; text-align: center; }
.qrbox .qrimg { width: 260px; max-width: 100%; height: auto; background: #fff; border-radius: 14px; padding: 16px; box-shadow: 0 18px 44px -22px rgba(0,0,0,0.6); }
.upi__id { font-family: var(--mono); font-size: 15px; color: #fff; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.16); border-radius: 8px; padding: 10px 16px; letter-spacing: 0.03em; }

/* ---------- two-column prose (tax / transparency) ---------- */
.twocol { display: grid; gap: clamp(28px, 4vw, 56px); grid-template-columns: 1fr; }
@media (min-width: 820px) { .twocol { grid-template-columns: 1fr 1fr; } }
.note { font-size: 15.5px; color: var(--body); }
.note h3 { font-size: clamp(19px, 2.2vw, 24px); margin-bottom: 14px; }
.badgerow { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.badge80 { font-family: var(--mono); font-size: 12px; letter-spacing: 0.06em; color: var(--ink); border: 1px solid var(--line); border-radius: 999px; padding: 8px 15px; background: #fff; }

/* ---------- donate hero (photo band) ---------- */
.dhero { position: relative; display: flex; align-items: flex-end; overflow: hidden;
  min-height: min(70vh, 560px); background: var(--ink); }
.dhero__media { position: absolute; inset: 0; background-size: cover; background-position: center 30%; }
.dhero__scrim { position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(14,16,13,0.10) 0%, rgba(14,16,13,0.30) 45%, rgba(14,16,13,0.82) 100%),
    linear-gradient(95deg, rgba(14,16,13,0.55) 0%, rgba(14,16,13,0) 65%); }
.dhero__inner { position: relative; padding-block: clamp(36px, 5vw, 64px); color: #fff; }
.dhero h1 { color: #fff; font-size: clamp(32px, 5.4vw, 62px); max-width: 17ch; margin-bottom: 20px; text-shadow: 0 2px 26px rgba(10,12,9,0.4); }
.dhero h1 em { font-style: italic; color: #E4D9C0; }
.dhero__lede { font-family: var(--serif); font-size: clamp(18px, 2.3vw, 25px); line-height: 1.45; color: #E9E3D5; max-width: 46ch; font-style: italic; }

/* ---------- impact band (photos + stats) ---------- */
.impactgrid { display: grid; gap: clamp(16px, 2.4vw, 22px); grid-template-columns: 1fr; }
@media (min-width: 720px) { .impactgrid { grid-template-columns: repeat(3, 1fr); } }
.impactcard { position: relative; border-radius: 14px; overflow: hidden; aspect-ratio: 4 / 5; background: #E8EDE9; }
.impactcard img { width: 100%; height: 100%; object-fit: cover; display: block; }
.impactcard__scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(12,14,11,0) 38%, rgba(12,14,11,0.82) 100%); }
.impactcard__cap { position: absolute; left: 20px; right: 20px; bottom: 18px; color: #fff; }
.impactcard__num { font-family: var(--serif); font-weight: 700; font-size: clamp(30px, 4vw, 42px); line-height: 1; letter-spacing: -0.02em; display: block; }
.impactcard__lab { font-size: 14.5px; color: #E9E3D5; margin-top: 6px; display: block; line-height: 1.35; }

/* ===========================================================
   JANMAN-STYLE HOMEPAGE — editorial restructure (v4)
   Transparent sticky nav · counters · focus cards ·
   vision/mission/approach · voices · field updates
   =========================================================== */

/* ---------- transparent → solid sticky nav ---------- */
.topbar {
  position: sticky; top: 0; z-index: 60;
  background: transparent; backdrop-filter: none; border-bottom: 1px solid transparent;
  transition: background .28s ease, border-color .28s ease, box-shadow .28s ease, backdrop-filter .28s ease;
}
.topbar.scrolled {
  background: rgba(248,246,241,0.86); backdrop-filter: blur(12px) saturate(1.2);
  border-bottom: 1px solid var(--line); box-shadow: 0 10px 30px -22px rgba(28,26,21,0.5);
}
.topbar .nav { min-height: 78px; gap: clamp(20px, 4vw, 56px); }
.brand { align-items: center; gap: 13px; }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name { font-family: var(--serif); font-weight: 600; color: var(--ink); font-size: 17px; letter-spacing: -0.01em; white-space: nowrap; }
.brand__name em { font-style: italic; font-weight: 500; }
.brand__sub { font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.13em; color: var(--muted); text-transform: uppercase; white-space: nowrap; margin-top: 3px; }

.navlinks { display: none; align-items: center; gap: 2px; margin-inline: auto; padding-inline: 16px; }
.navlinks a { color: var(--body); font-weight: 500; font-size: 15px; white-space: nowrap; padding: 8px 14px; border-radius: 8px; transition: background .15s, color .15s; }
.navlinks a:hover { background: rgba(28,26,21,0.06); color: var(--ink); }
.navlinks a.active { color: var(--ink); font-weight: 600; }

.navactions { display: none; align-items: center; gap: 8px; }
.nav__ghost { font-weight: 600; font-size: 15px; color: var(--ink); padding: 9px 14px; border-radius: 8px; transition: background .15s; white-space: nowrap; }
.nav__ghost:hover { background: rgba(28,26,21,0.06); }
.nav__donate { background: var(--ink); color: #fff !important; padding: 11px 22px !important; border-radius: 999px; font-weight: 600; font-size: 15px; transition: background .15s, transform .15s; }
.nav__donate:hover { background: #000; transform: translateY(-1px); }

@media (min-width: 1040px) {
  .navlinks { display: flex; }
  .navactions { display: flex; }
  .navtoggle { display: none; }
  .mobilemenu { display: none !important; }
}

/* ---------- editorial text hero ---------- */
.hero2 { background: var(--paper); position: relative; overflow: hidden; }
.hero2::after {
  content: ""; position: absolute; right: -10%; top: -30%; width: 60vw; height: 120%;
  background: radial-gradient(closest-side, rgba(28,26,21,0.05), transparent 70%);
  pointer-events: none;
}
.hero2__inner { position: relative; padding-block: clamp(64px, 12vh, 150px) clamp(40px, 7vw, 78px); max-width: 980px; }
.hero2__badge {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--body); background: rgba(28,26,21,0.05); border: 1px solid var(--line);
  padding: 8px 16px; border-radius: 999px; margin: 0 0 clamp(24px,3.5vw,38px); font-weight: 500;
}
.hero2__head {
  font-family: var(--serif); font-weight: 600; color: var(--ink);
  font-size: clamp(44px, 8.4vw, 104px); line-height: 0.98; letter-spacing: -0.025em;
  margin: 0 0 clamp(26px,3.4vw,40px); text-wrap: balance;
}
.hero2__head em { font-style: italic; font-weight: 500; }
.hero2__lede { font-size: clamp(17px, 2.1vw, 21px); line-height: 1.6; color: var(--body); max-width: 60ch; margin: 0 0 22px; }
.hero2__tag { font-family: var(--serif); font-style: italic; font-size: clamp(18px,2.2vw,23px); color: var(--ink); margin: 0 0 clamp(30px,4vw,40px); }
.hero2__cta { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- home: split hero (text + framed photo) ---------- */
.hero2--split .hero2__inner { max-width: none; display: grid; gap: clamp(30px, 4.5vw, 64px); grid-template-columns: 1fr; align-items: center; }
@media (min-width: 940px) { .hero2--split .hero2__inner { grid-template-columns: 1.06fr 0.94fr; padding-block: clamp(56px, 9vh, 116px); } }
.hero2__media { margin: 0; }
.hero2--split .hero2__media .ph { aspect-ratio: 4 / 3; }
.hero2--split .hero2__media .ph img { object-position: center center; }
.hero2--split .hero2__head { font-size: clamp(40px, 6vw, 76px); }
.hero2--split .hero2__lede { max-width: 46ch; }

/* ---------- home: full-bleed photo hero ---------- */
.hero2--photo { background: var(--ink); }
.hero2--photo::after { content: none; }
.hero2--photo .hero2__bg { position: absolute; inset: 0; background-image: url('photos/IMG_0752.jpeg'); background-size: cover; background-position: center 30%; }
.hero2--photo .hero2__scrim { position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(12,14,11,0.78) 0%, rgba(12,14,11,0.58) 36%, rgba(12,14,11,0.26) 66%, rgba(12,14,11,0.06) 100%),
    linear-gradient(180deg, rgba(12,14,11,0.12) 0%, rgba(12,14,11,0) 45%, rgba(12,14,11,0.34) 100%); }
.hero2--photo .hero2__inner { max-width: 760px; padding-block: clamp(72px, 15vh, 168px) clamp(48px, 8vw, 96px); }
.hero2--photo .hero2__badge { color: #fff; background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.28); }
.hero2--photo .hero2__head { color: #fff; text-shadow: 0 2px 34px rgba(8,10,7,0.5); }
.hero2--photo .hero2__head em { color: #E4D9C0; }
.hero2--photo .hero2__lede { color: #ECE6D9; }
.hero2--photo .hero2__tag { color: #fff; }
.btn--ghostlight { background: transparent; color: #fff; border-color: rgba(255,255,255,0.42); }
.btn--ghostlight:hover { background: rgba(255,255,255,0.1); border-color: #fff; color: #fff; }

/* ---------- impact stat band ---------- */
.statband { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding-block: clamp(40px, 6vw, 72px); }
.statrow { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; }
@media (min-width: 920px) { .statrow { grid-template-columns: repeat(4, 1fr); } }
.stat { background: var(--paper); padding: clamp(26px,3.4vw,40px) clamp(22px,2.6vw,32px); }
.stat__num { font-family: var(--serif); font-weight: 700; color: var(--ink); font-size: clamp(42px, 6vw, 64px); line-height: 0.9; letter-spacing: -0.03em; margin: 0 0 14px; font-variant-numeric: tabular-nums; }
.stat__label { font-weight: 600; color: var(--ink); font-size: clamp(15px,1.7vw,17px); margin: 0 0 5px; }
.stat__note { font-size: 13.5px; color: var(--muted); line-height: 1.45; margin: 0; }

/* ---------- section head: § marks + display heading ---------- */
.sectionhead { max-width: 760px; margin-bottom: clamp(40px, 5vw, 64px); }
.smark { display: inline-flex; align-items: center; gap: 12px; font-family: var(--mono); font-size: 12.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--body); margin: 0 0 22px; font-weight: 500; }
.smark__no { display: none; }
.dhead { font-family: var(--serif); font-weight: 600; color: var(--ink); font-size: clamp(34px, 5.4vw, 62px); line-height: 1.02; letter-spacing: -0.025em; margin: 0; }
.dhead em { font-style: italic; font-weight: 500; }
.dhead__lede { font-size: clamp(16px,1.9vw,19px); line-height: 1.6; color: var(--body); max-width: 56ch; margin: 20px 0 0; }
.sectionhead--light .smark { color: #B8B1A4; }
.sectionhead--light .smark__no { color: #fff; border-right-color: rgba(255,255,255,0.22); }
.sectionhead--light .dhead { color: #fff; }

/* ---------- focus area cards ---------- */
.focusgrid { display: grid; gap: clamp(20px, 2.6vw, 30px); grid-template-columns: 1fr; }
@media (min-width: 720px) { .focusgrid { grid-template-columns: 1fr 1fr; } }
.focus {
  background: var(--white); border: 1px solid var(--line); border-radius: 16px; overflow: hidden;
  display: flex; flex-direction: column; transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.focus:hover { transform: translateY(-4px); box-shadow: 0 28px 60px -34px rgba(28,26,21,0.5); border-color: #D9D3C6; }
.focus__media { border-radius: 0; aspect-ratio: 16 / 10; margin: 0; }
.focus__media img { transition: transform .5s ease; }
.focus:hover .focus__media img { transform: scale(1.04); }
.focus__body { padding: clamp(24px,2.8vw,34px); display: flex; flex-direction: column; flex: 1; }
.focus__cat { font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--body); margin-bottom: 14px; font-weight: 500; }
.focus__title { font-size: clamp(21px,2.5vw,27px); margin-bottom: 13px; }
.focus__desc { color: var(--body); font-size: 16px; margin-bottom: 18px; }
.focus__metrics { font-family: var(--mono); font-size: 13px; letter-spacing: 0.02em; color: var(--ink); font-weight: 500; padding-top: 16px; border-top: 1px solid var(--line); margin: auto 0 16px; }
.focus .cardlink { margin-top: 0; }

/* ---------- vision / mission / approach ---------- */
.vma { display: grid; gap: clamp(18px,2.4vw,26px); grid-template-columns: 1fr; }
@media (min-width: 820px) { .vma { grid-template-columns: repeat(3, 1fr); } }
.vmacard { background: var(--white); border: 1px solid var(--line); border-radius: 16px; padding: clamp(28px,3.2vw,40px); display: flex; flex-direction: column; transition: transform .3s ease, box-shadow .3s ease; }
.vmacard:hover { transform: translateY(-4px); box-shadow: 0 28px 60px -34px rgba(28,26,21,0.45); }
.vmacard__no { font-family: var(--mono); font-size: 13px; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 24px; }
.vmacard__title { font-size: clamp(24px,2.8vw,30px); margin-bottom: 16px; }
.vmacard__text { color: var(--body); font-size: 16.5px; margin: 0; }

/* ---------- voices / testimonial ---------- */
.voice .voice__fig { margin: 0; max-width: 920px; }
.voice__quote { font-family: var(--serif); font-weight: 500; font-style: italic; color: #fff; font-size: clamp(24px, 3.6vw, 42px); line-height: 1.28; letter-spacing: -0.015em; margin: 0 0 clamp(28px,3.4vw,40px); text-wrap: pretty; }
.voice__quote::before { content: "\201C"; }
.voice__quote::after { content: "\201D"; }
.voice__cap { display: flex; align-items: center; gap: 18px; }
.voice__avatar { width: 56px; height: 56px; border-radius: 50%; background: var(--marigold); color: var(--ink); display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-weight: 700; font-size: 22px; flex: none; }
.voice__who { display: flex; flex-direction: column; gap: 3px; }
.voice__name { color: #fff; font-weight: 600; font-size: 18px; }
.voice__role { color: #B8B1A4; font-size: 14px; font-family: var(--mono); letter-spacing: 0.03em; }

/* ---------- photo gallery grid ---------- */
.galgrid { display: grid; gap: clamp(12px,1.6vw,20px); grid-template-columns: 1fr; }
@media (min-width: 460px) { .galgrid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .galgrid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1280px) { .galgrid { grid-template-columns: repeat(4, 1fr); } }
.gitem { position: relative; margin: 0; aspect-ratio: 4 / 3; border-radius: 16px; overflow: hidden; border: 1px solid var(--line); background: #E8E3D8; transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease; }
.gitem img { width: 100%; height: 100%; object-fit: cover; object-position: center 38%; display: block; transition: transform .6s ease; }
.gitem:hover { transform: translateY(-4px); box-shadow: 0 26px 56px -34px rgba(28,26,21,0.45); border-color: #D9D3C6; }
.gitem:hover img { transform: scale(1.05); }
.gitem__scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(18,17,13,0) 42%, rgba(18,17,13,0.66) 100%); opacity: 0; transition: opacity .3s ease; pointer-events: none; }
.gitem:hover .gitem__scrim { opacity: 1; }
.gitem__tag { position: absolute; left: 14px; right: 14px; bottom: 13px; color: #fff; font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.05em; text-transform: uppercase; line-height: 1.4; transform: translateY(7px); opacity: 0; transition: transform .3s ease, opacity .3s ease; pointer-events: none; }
.gitem:hover .gitem__tag { transform: none; opacity: 1; }

/* ---------- press clippings ---------- */
.pressgrid { display: grid; gap: clamp(16px,2vw,24px); grid-template-columns: 1fr; }
@media (min-width: 680px) { .pressgrid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .pressgrid { grid-template-columns: repeat(3, 1fr); } }
.presscard { margin: 0; background: var(--white); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; display: flex; flex-direction: column; transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease; }
.presscard:hover { transform: translateY(-4px); box-shadow: 0 26px 56px -34px rgba(28,26,21,0.45); border-color: #D9D3C6; }
.presscard__media { margin: 0; background: #F1ECE1; aspect-ratio: 16 / 11; display: flex; align-items: center; justify-content: center; overflow: hidden; padding: 14px; border-bottom: 1px solid var(--line); }
.presscard__media img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; display: block; }
.presscard__cap { padding: 16px clamp(18px,2vw,22px) 20px; display: flex; flex-direction: column; gap: 7px; }
.presscard__pub { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--red); }
.presscard__head { font-size: clamp(16px,1.8vw,19px); line-height: 1.28; color: var(--ink); margin: 0; }

/* ---------- closing CTA band ---------- */
.section--cta { background: var(--ink); color: #D8D3C8; }
.ctaband { max-width: 880px; }
.section--cta .smark { color: #B8B1A4; }
.section--cta .smark__no { color: #fff; border-right-color: rgba(255,255,255,0.22); }
.ctaband__line { font-family: var(--serif); font-size: clamp(24px,3.4vw,40px); line-height: 1.32; letter-spacing: -0.015em; color: #fff; margin: 0 0 clamp(30px,4vw,42px); text-wrap: pretty; }

/* ---------- footer wordmark ---------- */
.footer__wordmark { font-family: var(--serif); font-weight: 600; color: #fff; font-size: clamp(28px,3.4vw,38px); line-height: 1.04; letter-spacing: -0.02em; margin: 0 0 22px; }
.footer__wordmark em { font-style: italic; font-weight: 500; }
.footer__tag { font-family: var(--serif); font-style: italic; color: var(--marigold); font-size: 16px; margin: 16px 0 0; }
.footer__grid { grid-template-columns: 1fr; }
@media (min-width: 720px) { .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (min-width: 1000px) { .footer__grid { grid-template-columns: 1.6fr 1fr 1.1fr 1fr; gap: 48px; } }

/* ---------- get involved: marquee ribbon ---------- */
.marquee { background: var(--ink); color: #E9E3D5; overflow: hidden; padding-block: 18px; border-block: 1px solid rgba(255,255,255,0.08); }
.marquee__track { display: flex; width: max-content; animation: marquee 38s linear infinite; }
.marquee__set { display: flex; align-items: center; gap: 0; flex: none; }
.marquee__set > span { font-family: var(--serif); font-style: italic; font-size: clamp(16px,1.9vw,20px); white-space: nowrap; padding-inline: 28px; color: #E9E3D5; }
.marquee__set > span:not(:first-child) { border-left: 1px solid rgba(255,255,255,0.14); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; } }

/* ---------- get involved: ways grid ---------- */
.waysgrid { display: grid; gap: clamp(18px,2.4vw,26px); grid-template-columns: 1fr; }
@media (min-width: 660px) { .waysgrid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .waysgrid { grid-template-columns: repeat(3, 1fr); } }
.way { background: var(--white); border: 1px solid var(--line); border-radius: 16px; padding: clamp(26px,3vw,38px); display: flex; flex-direction: column; transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease; }
.way:hover { transform: translateY(-4px); box-shadow: 0 28px 60px -34px rgba(28,26,21,0.45); border-color: #D9D3C6; }
.way__no { font-family: var(--mono); font-size: 12.5px; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 22px; }
.way__title { font-size: clamp(21px,2.4vw,26px); margin-bottom: 7px; }
.way__kicker { font-family: var(--serif); font-style: italic; color: var(--body); font-size: 16px; margin: 0 0 14px; }
.way__desc { color: var(--body); font-size: 15.5px; margin-bottom: 20px; }
.way .cardlink { margin-top: auto; font-size: 14px; }

/* ---------- get involved: programme join pills ---------- */
.joinrow { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; }
.joinpill { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 8px 16px; background: var(--white); padding: clamp(22px,2.6vw,30px) clamp(22px,2.8vw,34px); transition: background .18s ease; }
.joinpill:hover { background: var(--green-wash); }
.joinpill__name { font-family: var(--serif); font-weight: 600; color: var(--ink); font-size: clamp(19px,2.3vw,25px); letter-spacing: -0.01em; }
.joinpill__meta { grid-column: 1; font-family: var(--mono); font-size: 12.5px; letter-spacing: 0.04em; color: var(--muted); }
.joinpill__arrow { grid-column: 2; grid-row: 1 / span 2; font-size: 22px; color: var(--ink); transition: transform .18s ease; }
.joinpill:hover .joinpill__arrow { transform: translateX(4px); }

/* ---------- get involved: closing contacts ---------- */
.cta__contacts { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 16px; font-family: var(--mono); font-size: clamp(14px,1.6vw,16px); letter-spacing: 0.03em; margin: 0 0 clamp(28px,3.4vw,38px); }
.cta__contacts a { color: #fff; border-bottom: 1px solid rgba(255,255,255,0.35); padding-bottom: 2px; }
.cta__contacts a:hover { border-color: #fff; }
.cta__contacts span { color: #6E685C; }

/* ===========================================================
   INNER PAGES — programmes / about / partners / impact / contact
   =========================================================== */

/* ---------- page sub-nav (anchor index) ---------- */
.subnav { background: var(--paper); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 40; }
.subnav__inner { display: flex; flex-wrap: wrap; gap: 4px 6px; padding-block: 14px; }
.subnav a { font-family: var(--mono); font-size: 12.5px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--body); padding: 8px 14px; border-radius: 999px; border: 1px solid transparent; transition: background .15s, color .15s, border-color .15s; white-space: nowrap; }
.subnav a:hover { background: rgba(28,26,21,0.06); color: var(--ink); border-color: var(--line); }
.subnav__num { color: var(--muted); margin-right: 7px; }

/* ---------- programme detail blocks ---------- */
.prog { scroll-margin-top: 96px; padding-block: clamp(54px, 8vw, 104px); border-top: 1px solid var(--line); }
.prog:first-of-type { border-top: 0; }
.prog--cream { background: var(--cream); border-top-color: transparent; }
.prog__grid { display: grid; gap: clamp(28px, 4vw, 56px); grid-template-columns: 1fr; align-items: start; }
@media (min-width: 900px) {
  .prog__grid { grid-template-columns: 1fr 1fr; }
  .prog--flip .prog__media { order: 2; }
}
.prog__media { position: relative; }
@media (min-width: 900px) { .prog__media { position: sticky; top: 100px; } }
.prog__media .ph { aspect-ratio: 4 / 5; }
.prog__eyebrow { display: inline-flex; align-items: center; gap: 12px; font-family: var(--mono); font-size: 12.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--body); margin: 0 0 18px; font-weight: 500; }
.prog__eyebrow b { display: none; }
.prog__title { font-family: var(--serif); font-weight: 600; color: var(--ink); font-size: clamp(28px, 3.8vw, 44px); line-height: 1.05; letter-spacing: -0.02em; margin: 0 0 20px; }
.prog__title em { font-style: italic; font-weight: 500; }
.prog__lead { font-family: var(--serif); font-size: clamp(18px, 2.1vw, 23px); line-height: 1.45; color: var(--ink); margin: 0 0 22px; }
.prog__body p { color: var(--body); font-size: 16.5px; margin: 0 0 1.1em; }
.prog__body strong { font-family: var(--serif); font-weight: 600; color: var(--red); }

/* inline stat pair under a programme */
.progstats { display: flex; flex-wrap: wrap; gap: clamp(24px, 4vw, 48px); margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--line); }
.prog--cream .progstats { border-top-color: rgba(28,26,21,0.14); }
.progstat__num { font-family: var(--serif); font-weight: 700; color: var(--ink); font-size: clamp(32px, 4vw, 46px); line-height: 1; letter-spacing: -0.02em; margin: 0; font-variant-numeric: tabular-nums; }
.progstat__lab { font-family: var(--mono); font-size: 12px; letter-spacing: 0.04em; color: var(--muted); margin: 8px 0 0; text-transform: uppercase; max-width: 22ch; }

/* a quiet pull-fact box inside prog body */
.factline { font-family: var(--serif); font-style: italic; color: var(--ink); font-size: clamp(17px, 2vw, 20px); line-height: 1.5; border-left: 2px solid var(--ink); padding: 4px 0 4px 20px; margin: 24px 0; }
.prog--cream .factline { border-left-color: var(--ink); }

/* ---------- about: full-bleed story hero ---------- */
.ahero { position: relative; display: flex; align-items: center; overflow: hidden; min-height: min(84vh, 720px); background: var(--ink); }
.ahero::after { content: none; }
.ahero__bg { position: absolute; inset: 0; background-image: url('photos/IMG_0752.jpeg'); background-size: cover; background-position: center 32%; }
.ahero__scrim { position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(14,16,13,0.10) 0%, rgba(14,16,13,0.30) 38%, rgba(14,16,13,0.74) 74%, rgba(14,16,13,0.86) 100%),
    linear-gradient(180deg, rgba(14,16,13,0) 45%, rgba(14,16,13,0.55) 100%); }
.ahero__inner { position: relative; width: 100%; }
.ahero__panel { margin-left: auto; max-width: 540px; color: #fff; padding-block: clamp(40px, 6vw, 76px); }
.ahero__badge { color: #fff; background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.28); }
.ahero__head { font-family: var(--serif); font-weight: 600; color: #fff; font-size: clamp(38px, 5.4vw, 70px); line-height: 1.0; letter-spacing: -0.025em; margin: 0 0 22px; text-shadow: 0 2px 30px rgba(10,12,9,0.45); }
.ahero__head em { font-style: italic; font-weight: 500; color: #E4D9C0; }
.ahero__lede { font-size: clamp(16px, 1.95vw, 19px); line-height: 1.6; color: #ECE6D9; margin: 0 0 18px; }
.ahero__tag { font-family: var(--serif); font-style: italic; font-size: clamp(18px, 2.1vw, 23px); color: #fff; margin: 0 0 clamp(26px, 3.4vw, 36px); }

/* ---------- story two-up (about) ---------- */
.story { display: grid; gap: clamp(28px, 4vw, 56px); grid-template-columns: 1fr; align-items: start; }
@media (min-width: 880px) { .story { grid-template-columns: 1fr 1.2fr; } .story .ph { position: sticky; top: 100px; aspect-ratio: 4/5; } }
.prose { max-width: 60ch; }
.prose p { color: var(--body); font-size: 17px; margin: 0 0 1.15em; }
.prose .lead { font-family: var(--serif); font-size: clamp(19px,2.2vw,24px); line-height: 1.45; color: var(--ink); margin-bottom: 1em; }

/* ---------- team: photo cards (equal billing for all members) ---------- */
.teamphoto { display: grid; gap: clamp(16px,2.2vw,26px); grid-template-columns: 1fr 1fr; }
@media (min-width: 720px) { .teamphoto { grid-template-columns: repeat(3, 1fr); } }
.tmember { background: var(--white); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; display: flex; flex-direction: column; transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease; }
.tmember:hover { transform: translateY(-4px); box-shadow: 0 28px 60px -34px rgba(28,26,21,0.45); border-color: #D9D3C6; }
.tmember__photo { display: block; width: 100%; aspect-ratio: 4 / 5; height: auto; object-fit: cover; object-position: center 22%; border-bottom: 1px solid var(--line); }
.tmember__private { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 13px; width: 100%; aspect-ratio: 4 / 5; height: auto; padding: 24px; text-align: center; border-bottom: 1px solid var(--line); background-color: var(--cream); background-image: radial-gradient(var(--line) 1px, transparent 1px); background-size: 11px 11px; }
.tmember__private svg { width: 52px; height: 52px; color: var(--muted); opacity: 0.85; }
.tmember__private-line { font-family: var(--mono); font-size: 11px; line-height: 1.6; letter-spacing: 0.09em; text-transform: uppercase; color: var(--muted); }
.tmember__body { padding: clamp(18px,2.1vw,26px); display: flex; flex-direction: column; gap: 5px; }
.tmember__name { font-family: var(--serif); font-weight: 600; color: var(--ink); font-size: clamp(18px,2vw,23px); letter-spacing: -0.01em; }
.tmember__role { font-family: var(--mono); font-size: 12px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--muted); }

/* ---------- partners list (editorial) ---------- */
.partnerlist { display: grid; gap: clamp(18px,2.4vw,26px); grid-template-columns: 1fr; }
@media (min-width: 760px) { .partnerlist { grid-template-columns: 1fr 1fr; } }
.partnercard { background: var(--white); border: 1px solid var(--line); border-radius: 16px; padding: clamp(28px,3vw,40px); display: flex; flex-direction: column; transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease; }
.partnercard:hover { transform: translateY(-4px); box-shadow: 0 28px 60px -34px rgba(28,26,21,0.45); border-color: #D9D3C6; }
.partnercard__no { font-family: var(--mono); font-size: 12.5px; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 18px; }
.partnercard__name { font-size: clamp(22px,2.6vw,28px); margin-bottom: 4px; }
.partnercard__loc { font-family: var(--mono); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--red); margin-bottom: 16px; }
.partnercard__text { color: var(--body); font-size: 16px; margin: 0; }

/* ---------- research timeline ---------- */
.timeline { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; grid-template-columns: 1fr; }
@media (min-width: 860px) { .timeline { grid-template-columns: repeat(3, 1fr); } }
.tstep { background: var(--white); padding: clamp(28px,3vw,40px); display: flex; flex-direction: column; }
.tstep__no { font-family: var(--mono); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--red); margin-bottom: 18px; font-weight: 500; }
.tstep__title { font-size: clamp(20px,2.3vw,25px); margin-bottom: 12px; }
.tstep__text { color: var(--body); font-size: 15.5px; margin: 0; }

/* ---------- contact ---------- */
.contactgrid { display: grid; gap: clamp(18px,2.4vw,26px); grid-template-columns: 1fr; }
@media (min-width: 760px) { .contactgrid { grid-template-columns: repeat(3, 1fr); } }
.contactcard { background: var(--white); border: 1px solid var(--line); border-radius: 16px; padding: clamp(26px,3vw,38px); display: flex; flex-direction: column; }
.contactcard__k { font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--red); margin-bottom: 16px; font-weight: 500; }
.contactcard__v { font-family: var(--serif); font-size: clamp(19px,2.2vw,23px); color: var(--ink); line-height: 1.35; margin: 0; word-break: break-word; }
.contactcard__v a { color: var(--ink); border-bottom: 1px solid var(--line); padding-bottom: 2px; }
.contactcard__v a:hover { border-color: var(--ink); }
.contactcard__note { font-size: 14.5px; color: var(--muted); margin: 12px 0 0; }

/* a quiet response-promise banner */
.promise { display: grid; gap: clamp(20px,3vw,40px); grid-template-columns: 1fr; align-items: center; }
@media (min-width: 820px) { .promise { grid-template-columns: 1.3fr 1fr; } }
.promise__big { font-family: var(--serif); font-size: clamp(24px,3.2vw,38px); line-height: 1.3; color: var(--ink); margin: 0; letter-spacing: -0.015em; }
.promise__big em { font-style: italic; color: var(--red); }

/* ---------- generic inner-page hero accent reuse for impact ---------- */
.section--cream + .section--cream { padding-top: 0; }

/* ---------- scroll reveal ---------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s cubic-bezier(.16,.7,.3,1), transform .7s cubic-bezier(.16,.7,.3,1); }
  .reveal.in { opacity: 1; transform: none; }
  .focusgrid .focus.reveal:nth-child(2), .vma .vmacard.reveal:nth-child(2), .statrow .stat.reveal:nth-child(2), .waysgrid .way.reveal:nth-child(2) { transition-delay: .08s; }
  .focusgrid .focus.reveal:nth-child(3), .vma .vmacard.reveal:nth-child(3), .statrow .stat.reveal:nth-child(3), .waysgrid .way.reveal:nth-child(3) { transition-delay: .16s; }
  .focusgrid .focus.reveal:nth-child(4), .statrow .stat.reveal:nth-child(4) { transition-delay: .24s; }
}

/* ---------- skip-to-content link ---------- */
.skiplink { position: absolute; left: 12px; top: -64px; z-index: 200; background: var(--ink); color: #fff; padding: 12px 18px; border-radius: 8px; font-weight: 600; font-size: 15px; transition: top .15s ease; }
.skiplink:focus { top: 12px; }

/* ---------- visible keyboard focus states ---------- */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible,
textarea:focus-visible, .btn:focus-visible, [tabindex]:focus-visible {
  outline: 3px solid var(--red); outline-offset: 2px; border-radius: 4px;
}

/* ---------- touch devices: always show gallery captions ---------- */
@media (hover: none) {
  .gitem__scrim { opacity: 1; }
  .gitem__tag { opacity: 1; transform: none; }
}
