@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,600;0,9..144,700;0,9..144,900;1,9..144,400;1,9..144,600&family=Outfit:wght@400;500;600;700&display=swap');

:root {
  --bg: #f5ede0;
  --bg-strong: #ede0cc;
  --surface: rgba(255, 251, 245, 0.88);
  --surface-strong: #fffbf5;
  --surface-accent: #f0e4d4;
  --ink: #1e2d28;
  --ink-soft: #5a6660;
  --ink-faint: #8a9894;
  --accent: #c0512d;
  --accent-deep: #933a1c;
  --accent-2: #1a6359;
  --accent-2-light: rgba(26, 99, 89, 0.10);
  --accent-3: #c99636;
  --border: rgba(30, 45, 40, 0.10);
  --border-strong: rgba(30, 45, 40, 0.18);
  --shadow-sm: 0 4px 16px rgba(40, 28, 12, 0.07);
  --shadow: 0 20px 52px rgba(40, 28, 12, 0.11);
  --shadow-lg: 0 32px 72px rgba(40, 28, 12, 0.16);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --container: 1180px;
  --section-space: clamp(4rem, 8vw, 6.5rem);
  --display: 'Fraunces', 'Iowan Old Style', 'Palatino Linotype', Georgia, serif;
  --body: 'Outfit', 'Avenir Next', 'Segoe UI', Helvetica, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: var(--body);
  color: var(--ink);
  background:
    radial-gradient(ellipse at 8% 0%, rgba(192, 81, 45, 0.14) 0%, transparent 38%),
    radial-gradient(ellipse at 92% 4%, rgba(26, 99, 89, 0.14) 0%, transparent 30%),
    radial-gradient(ellipse at 50% 100%, rgba(201, 150, 54, 0.10) 0%, transparent 40%),
    linear-gradient(175deg, #fbf5ec 0%, #f5ede0 40%, #eee0cd 100%);
  background-attachment: fixed;
}

/* Grain texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.032;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px 180px;
}

body > * {
  position: relative;
  z-index: 1;
}

/* Header layer must sit above page content in the root stacking context */
[data-site-header] {
  z-index: 10;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

/* ── Skip link ── */
.skip-link {
  position: absolute;
  top: -3rem;
  left: 1rem;
  z-index: 40;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
}

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  /* No backdrop-filter here — it would create a containing block that traps
     position:fixed children. Use ::before pseudo-element for the blur instead. */
  background: transparent;
  transition: box-shadow 0.3s ease;
}

/* Blurred background lives on a pseudo-element so it can never trap real descendants */
.site-header::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  backdrop-filter: blur(20px) saturate(1.6);
  -webkit-backdrop-filter: blur(20px) saturate(1.6);
  background: rgba(245, 237, 224, 0.84);
  border-bottom: 1px solid rgba(30, 45, 40, 0.07);
  pointer-events: none;
  transition: box-shadow 0.3s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 2px 24px rgba(30, 45, 40, 0.10);
}

.site-header__inner,
.site-footer__inner,
.section-shell,
.hero__inner,
.callout-band__inner {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 80px;
}

.brand {
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand__logo {
  display: block;
  height: 58px;
  width: auto;
  transition: opacity 0.2s ease;
}

.brand:hover .brand__logo {
  opacity: 0.85;
}

.brand__logo--footer {
  height: 50px;
}

.site-nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.7rem;
  flex: 1;
}

.site-nav__desktop {
  display: flex;
  align-items: center;
}

.site-nav__links {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  flex-wrap: nowrap;
}

.site-nav__links a,
.nav-more summary {
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 0.94rem;
  font-weight: 500;
  transition: background 0.18s ease, color 0.18s ease;
}

.site-nav__links a:hover,
.site-nav__links a[aria-current="page"],
.nav-more summary:hover,
.nav-more[open] summary,
.nav-more.is-active summary {
  background: rgba(30, 45, 40, 0.07);
  color: var(--ink);
}

.site-nav__links a[aria-current="page"] {
  color: var(--accent-2);
  font-weight: 600;
}

.nav-more {
  position: relative;
}

.nav-more summary {
  list-style: none;
  cursor: pointer;
  user-select: none;
}

.nav-more summary::-webkit-details-marker {
  display: none;
}

.nav-more__menu {
  position: absolute;
  top: calc(100% + 0.6rem);
  right: 0;
  min-width: 220px;
  display: grid;
  gap: 0.15rem;
  padding: 0.5rem;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: rgba(255, 251, 245, 0.98);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(12px);
  animation: menuReveal 0.18s ease forwards;
}

@keyframes menuReveal {
  from { opacity: 0; transform: translateY(-6px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.nav-more:not([open]) .nav-more__menu {
  display: none;
}

.nav-more__menu a {
  display: block;
  padding: 0.7rem 0.85rem;
  border-radius: 14px;
  color: var(--ink-soft);
  font-size: 0.93rem;
  font-weight: 500;
  transition: background 0.15s ease, color 0.15s ease;
}

.nav-more__menu a:hover,
.nav-more__menu a[aria-current="page"] {
  background: rgba(30, 45, 40, 0.06);
  color: var(--ink);
}

.site-nav__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.menu-toggle {
  display: none;
  cursor: pointer;
}

.site-nav__mobile-links {
  display: none;
}

/* ── Buttons ── */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.3rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.94rem;
  line-height: 1.1;
  letter-spacing: 0.01em;
  transition: transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.22s ease, background 0.18s ease, opacity 0.18s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(0);
}

.button--primary {
  color: #fff;
  background: linear-gradient(140deg, var(--accent) 0%, var(--accent-deep) 100%);
  box-shadow: 0 8px 24px rgba(192, 81, 45, 0.28), 0 2px 6px rgba(192, 81, 45, 0.18);
}

.button--primary:hover {
  box-shadow: 0 14px 32px rgba(192, 81, 45, 0.34), 0 2px 8px rgba(192, 81, 45, 0.22);
}

.button--secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.65);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-sm);
}

.button--secondary:hover {
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 8px 24px rgba(40, 28, 12, 0.12);
}

.button--ghost {
  color: var(--accent-2);
  background: var(--accent-2-light);
  border-color: rgba(26, 99, 89, 0.15);
}

.button--ghost:hover {
  background: rgba(26, 99, 89, 0.15);
}

/* ── Hero ── */
.hero {
  position: relative;
  padding: clamp(1.5rem, 3vw, 2.6rem) 0 clamp(1.5rem, 3vw, 2.6rem);
}

.hero__panel {
  position: relative;
  overflow: clip;
  width: min(calc(100% - 3rem), 1380px);
  margin: 0 auto;
  border: 1px solid rgba(30, 45, 40, 0.09);
  border-radius: 44px;
  background:
    radial-gradient(ellipse at top right, rgba(192, 81, 45, 0.16) 0%, transparent 38%),
    radial-gradient(ellipse at 8% 18%, rgba(26, 99, 89, 0.13) 0%, transparent 32%),
    radial-gradient(ellipse at 60% 90%, rgba(201, 150, 54, 0.10) 0%, transparent 30%),
    linear-gradient(148deg, rgba(255, 251, 245, 0.95) 0%, rgba(242, 232, 216, 0.92) 100%);
  box-shadow: var(--shadow-lg);
}

/* Decorative hero corner accent */
.hero__panel::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 150, 54, 0.18) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  padding: clamp(2.2rem, 5vw, 4.2rem);
}

.hero--compact .hero__inner {
  grid-template-columns: minmax(0, 1.28fr) minmax(280px, 0.85fr);
}

/* ── Eyebrow ── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.1rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-2);
}

.eyebrow::before {
  content: '';
  width: 2rem;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  flex-shrink: 0;
}

/* ── Headings ── */
.hero h1,
.page-intro h1,
.section-title {
  margin: 0;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.96;
}

.hero h1 {
  font-size: clamp(2.8rem, 6.5vw, 5.6rem);
  max-width: 12ch;
  font-weight: 700;
}

.page-intro h1 {
  font-size: clamp(2.4rem, 5.2vw, 4.6rem);
}

/* ── Body text ── */
.hero__lede,
.page-intro__lede,
.section-copy,
.card p,
.timeline__body p,
.stat-card p,
.support-note,
.quote-panel p,
.callout-band p,
.footer-note {
  color: var(--ink-soft);
  line-height: 1.72;
}

.hero__lede,
.page-intro__lede {
  font-size: clamp(1rem, 2vw, 1.18rem);
  max-width: 60ch;
  margin: 1.4rem 0 0;
  font-weight: 400;
}

.hero-note {
  max-width: 52ch;
  margin: 0.9rem 0 0;
  color: var(--accent-2);
  font-size: 0.96rem;
  line-height: 1.65;
  padding: 0.75rem 1rem;
  background: var(--accent-2-light);
  border-radius: var(--radius-sm);
  border-left: 2px solid var(--accent-2);
}

/* ── Actions & chips ── */
.hero__actions,
.page-intro__actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.8rem;
}

.hero__chips,
.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.4rem;
}

.chip,
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--border);
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}

/* ── Hero image ── */
.hero-image {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 360px;
}

.hero-image img {
  width: min(100%, 460px);
  height: auto;
  filter: drop-shadow(0 24px 48px rgba(40, 28, 12, 0.12));
}

.hero__panel--ambient .hero__inner {
  grid-template-columns: minmax(0, 1fr);
  min-height: 560px;
  align-items: end;
}

.hero__panel--ambient .page-intro {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.hero__panel--ambient .hero-image {
  position: absolute;
  inset: 0;
  min-height: 0;
  pointer-events: none;
  opacity: 0.24;
}

.hero__panel--ambient .hero-image img {
  position: absolute;
  right: -24px;
  top: 50%;
  transform: translateY(-50%);
  width: min(58%, 620px);
  filter: drop-shadow(0 30px 60px rgba(40, 28, 12, 0.08));
}

/* ── Hero visual ── */
.hero-visual {
  position: relative;
  min-height: 360px;
}

.hero-visual__orb {
  position: absolute;
  inset: 8% 2% auto auto;
  width: 55%;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.72), transparent 35%),
    linear-gradient(148deg, rgba(201, 150, 54, 0.70), rgba(192, 81, 45, 0.65));
  opacity: 0.44;
  filter: blur(1px);
}

.hero-visual__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 0.85rem;
  height: 100%;
  min-height: 330px;
}

/* ── Cards (shared) ── */
.floating-card,
.card,
.stat-card,
.quote-panel,
.timeline__item,
.band-card,
.contact-card,
.policy-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: transform 0.28s cubic-bezier(0.34, 1.3, 0.64, 1), box-shadow 0.28s ease, border-color 0.2s ease;
}

.card:hover,
.stat-card:hover,
.band-card:hover,
.policy-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--border-strong);
}

.floating-card {
  position: relative;
  padding: 1.2rem 1.1rem;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.floating-card h3,
.card h3,
.timeline__item h3,
.stat-card h3,
.policy-card h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.floating-card p,
.card p,
.timeline__item p,
.stat-card p,
.policy-card p {
  margin: 0.7rem 0 0;
  font-size: 0.95rem;
  line-height: 1.65;
}

.floating-card--main {
  grid-column: 1 / span 7;
  grid-row: 4 / span 4;
  padding: 1.6rem;
}

.floating-card--mentor {
  grid-column: 8 / span 5;
  grid-row: 1 / span 3;
}

.floating-card--practice {
  grid-column: 8 / span 4;
  grid-row: 5 / span 3;
}

.floating-card--impact {
  grid-column: 2 / span 5;
  grid-row: 8 / span 2;
}

.floating-card--secondary {
  grid-column: 4 / -1;
  grid-row: 1 / span 2;
}

.floating-card__tag {
  display: inline-flex;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  background: var(--accent-2-light);
  color: var(--accent-2);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.floating-card__people {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.9rem;
}

.floating-card__people span {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(26, 99, 89, 0.3), rgba(192, 81, 45, 0.35));
  border: 2px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 2px 6px rgba(30, 45, 40, 0.12);
}

.floating-card__metric {
  display: grid;
  gap: 0.15rem;
  margin-top: 0.9rem;
}

.floating-card__metric strong {
  font-family: var(--display);
  font-size: clamp(2rem, 3vw, 2.6rem);
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--ink);
}

.floating-card__footer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.9rem;
}

.floating-card__footer-tags span {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.65rem;
  border-radius: 999px;
  background: var(--accent-2-light);
  color: var(--accent-2);
  font-size: 0.80rem;
  font-weight: 600;
}

/* ── Band card ── */
.band-card {
  padding: 1.3rem 1.35rem;
}

.band-card strong {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 1.06rem;
  font-weight: 600;
}

/* ── Sections ── */
.section {
  padding: var(--section-space) 0;
}

.section--tight {
  padding: 3.4rem 0;
}

.section--soft {
  background:
    radial-gradient(ellipse at 100% 50%, rgba(255, 249, 235, 0.7) 0%, transparent 50%),
    linear-gradient(180deg, rgba(255, 251, 244, 0.7) 0%, rgba(255, 248, 238, 0) 100%);
}

.section--alt {
  background:
    radial-gradient(ellipse at 0% 60%, rgba(26, 99, 89, 0.05) 0%, transparent 50%),
    linear-gradient(180deg, rgba(240, 250, 248, 0.5) 0%, transparent 100%);
}

.section__header,
.page-intro {
  margin-bottom: 2.4rem;
}

.section__header {
  max-width: 680px;
}

.section-title {
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  font-family: var(--display);
  letter-spacing: -0.04em;
  line-height: 1;
}

.section-copy {
  margin: 1rem 0 0;
  font-size: 1.02rem;
  max-width: 60ch;
}

/* ── Grid ── */
.grid {
  display: grid;
  gap: 1rem;
}

.grid > * {
  min-width: 0;
}

.grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.framework-visual {
  position: relative;
  margin: 0 0 1.6rem;
  padding: clamp(1.2rem, 2.8vw, 1.8rem);
  min-height: 420px;
  border-radius: 36px;
  overflow: hidden;
  border: 1px solid rgba(30, 45, 40, 0.10);
  background:
    radial-gradient(circle at 15% 18%, rgba(26, 99, 89, 0.12) 0%, transparent 18%),
    radial-gradient(circle at 85% 18%, rgba(192, 81, 45, 0.12) 0%, transparent 20%),
    radial-gradient(circle at 18% 82%, rgba(201, 150, 54, 0.14) 0%, transparent 19%),
    radial-gradient(circle at 82% 80%, rgba(26, 99, 89, 0.12) 0%, transparent 20%),
    radial-gradient(circle at 50% 48%, rgba(26, 99, 89, 0.10) 0%, transparent 26%),
    linear-gradient(180deg, rgba(255, 252, 247, 0.96) 0%, rgba(251, 245, 236, 0.9) 100%);
  box-shadow: var(--shadow);
}

.framework-visual::before,
.framework-visual::after {
  content: '';
  position: absolute;
  border-radius: 999px;
  filter: blur(12px);
  opacity: 0.5;
}

.framework-visual::before {
  width: 220px;
  height: 220px;
  top: -80px;
  left: -40px;
  background: rgba(26, 99, 89, 0.08);
}

.framework-visual::after {
  width: 240px;
  height: 240px;
  right: -70px;
  bottom: -90px;
  background: rgba(192, 81, 45, 0.08);
}

.framework-visual__lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.framework-visual__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-areas:
    "chapter chapter logistics logistics"
    ". core core ."
    "support support network network";
  gap: 1rem;
  min-height: 360px;
  align-items: center;
}

.framework-visual__node,
.framework-visual__core {
  position: relative;
  border-radius: 24px;
  border: 1px solid rgba(30, 45, 40, 0.10);
  background: rgba(255, 251, 245, 0.82);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.framework-visual__node {
  padding: 1rem 1.15rem 1.1rem;
  max-width: 250px;
}

.framework-visual__node::before,
.framework-visual__core::before {
  content: '';
  position: absolute;
  left: 1rem;
  top: 0.9rem;
  width: 2.4rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.42;
}

.framework-visual__node strong,
.framework-visual__core strong {
  display: block;
  margin-top: 0.3rem;
  font-size: 1.02rem;
  line-height: 1.2;
}

.framework-visual__eyebrow {
  display: inline-flex;
  margin-top: 0.35rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: inherit;
}

.framework-visual__node--chapter {
  grid-area: chapter;
  justify-self: start;
  align-self: start;
  color: var(--accent-2);
}

.framework-visual__node--logistics {
  grid-area: logistics;
  justify-self: end;
  align-self: start;
  color: var(--accent);
}

.framework-visual__node--support {
  grid-area: support;
  justify-self: start;
  align-self: end;
  color: var(--accent-3);
}

.framework-visual__node--network {
  grid-area: network;
  justify-self: end;
  align-self: end;
  color: var(--accent-2);
}

.framework-visual__core {
  grid-area: core;
  justify-self: center;
  width: min(100%, 400px);
  padding: 1.5rem 1.6rem;
  text-align: center;
  color: var(--ink);
  background:
    radial-gradient(circle at 50% 0%, rgba(26, 99, 89, 0.10) 0%, transparent 70%),
    rgba(255, 252, 247, 0.92);
  box-shadow: 0 24px 50px rgba(40, 28, 12, 0.14);
}

.framework-visual__core::before {
  left: 50%;
  top: 1rem;
  width: 3rem;
  transform: translateX(-50%);
}

.framework-visual__core strong {
  font-family: var(--display);
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  letter-spacing: -0.03em;
  line-height: 1.02;
}

.framework-visual__core p {
  margin: 0.65rem auto 0;
  max-width: 28ch;
  color: var(--ink-soft);
  font-size: 0.96rem;
  line-height: 1.5;
}

.operating-flow {
  margin-bottom: 1.5rem;
  padding: clamp(1.2rem, 2.8vw, 1.8rem);
  border-radius: 34px;
  border: 1px solid rgba(30, 45, 40, 0.10);
  background:
    radial-gradient(circle at 12% 16%, rgba(26, 99, 89, 0.08) 0%, transparent 18%),
    radial-gradient(circle at 88% 14%, rgba(192, 81, 45, 0.08) 0%, transparent 18%),
    linear-gradient(180deg, rgba(255, 252, 247, 0.96) 0%, rgba(251, 245, 236, 0.9) 100%);
  box-shadow: var(--shadow);
}

.operating-flow__rail {
  display: grid;
  gap: 1rem;
  margin-bottom: 1rem;
}

.operating-flow__rail--top {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.operating-flow__anchor,
.operating-flow__step {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(30, 45, 40, 0.10);
  background: rgba(255, 251, 245, 0.82);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.operating-flow__anchor {
  padding: 1rem 1.1rem 1.1rem;
}

.operating-flow__anchor::before,
.operating-flow__step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, rgba(26, 99, 89, 0.28), rgba(192, 81, 45, 0.18));
}

.operating-flow__eyebrow {
  display: inline-flex;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent-2);
}

.operating-flow__anchor strong {
  display: block;
  margin-top: 0.45rem;
  font-size: 1.02rem;
  line-height: 1.2;
}

.operating-flow__anchor p {
  margin: 0.7rem 0 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.62;
}

.operating-flow__steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.operating-flow__steps::before {
  content: '';
  position: absolute;
  left: 6%;
  right: 6%;
  top: 2.15rem;
  height: 2px;
  background: linear-gradient(90deg, rgba(26, 99, 89, 0.22), rgba(201, 150, 54, 0.18), rgba(192, 81, 45, 0.22));
  z-index: 0;
}

.operating-flow__step {
  z-index: 1;
  padding: 1rem 1rem 1.1rem;
}

.operating-flow__number {
  display: inline-grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  margin-bottom: 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(30, 45, 40, 0.10);
  background: rgba(255, 251, 245, 0.96);
  color: var(--accent-2);
  font-size: 0.92rem;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}

.operating-flow__step h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.25;
}

.operating-flow__step p {
  margin: 0.75rem 0 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.62;
}

.operating-flow__note {
  margin: 1rem 0 0;
  padding: 0.95rem 1rem 0;
  border-top: 1px solid rgba(30, 45, 40, 0.10);
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.65;
}

.split--operating {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.split--operating > .card {
  height: 100%;
}


/* ── Card paddings ── */
.card,
.stat-card,
.quote-panel,
.contact-card,
.policy-card {
  padding: 1.5rem;
  width: 100%;
}

.card {
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--accent-2);
  border-radius: 0 2px 2px 0;
  transition: height 0.3s ease;
}

.card:hover::before {
  height: 100%;
}

.card__eyebrow {
  display: inline-flex;
  margin-bottom: 0.75rem;
  font-size: 0.75rem;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--accent-2);
  font-weight: 700;
}

.card ul,
.policy-card ul,
.timeline__item ul,
.list-column ul {
  margin: 0.9rem 0 0;
  padding-left: 1.1rem;
  color: var(--ink-soft);
  line-height: 1.72;
}

.card li + li,
.policy-card li + li,
.timeline__item li + li,
.list-column li + li {
  margin-top: 0.4rem;
}

/* ── Split layout ── */
.split {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
  gap: 1rem;
}

/* ── Stat card ── */
.stat-stack {
  display: grid;
  gap: 1rem;
}

.stat-card strong {
  display: block;
  margin-top: 0.75rem;
  font-family: var(--display);
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  letter-spacing: -0.05em;
  line-height: 1;
  color: var(--ink);
}

/* ── Quote panel ── */
.quote-panel {
  display: grid;
  gap: 1rem;
  align-content: center;
  justify-items: center;
  text-align: center;
  background:
    radial-gradient(ellipse at 90% 10%, rgba(201, 150, 54, 0.22) 0%, transparent 32%),
    rgba(255, 251, 245, 0.82);
  position: relative;
  overflow: hidden;
  min-height: 100%;
}

.quote-panel::after {
  content: '"';
  position: absolute;
  bottom: -0.2rem;
  right: 0.8rem;
  font-family: var(--display);
  font-size: 8rem;
  line-height: 1;
  color: rgba(201, 150, 54, 0.15);
  pointer-events: none;
}

.quote-panel blockquote {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.45rem, 2.8vw, 2.1rem);
  letter-spacing: -0.03em;
  line-height: 1.2;
  font-style: italic;
  position: relative;
}

.quote-panel__credit {
  font-size: 0.80rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--accent-2);
}

/* ── Process / Timeline ── */
.process {
  display: grid;
  gap: 1rem;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1rem;
  position: relative;
}

/* Connecting line for timeline */
.timeline::before {
  content: '';
  position: absolute;
  top: 2.2rem;
  left: calc(1.3rem + 1rem);
  right: calc(1.3rem + 1rem);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-strong) 10%, var(--border-strong) 90%, transparent);
  pointer-events: none;
  z-index: 0;
}

.timeline__item {
  position: relative;
  z-index: 1;
  padding: 1.3rem;
}

.timeline__item::before {
  content: attr(data-step);
  display: inline-grid;
  place-items: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  margin-bottom: 0.85rem;
  background: var(--surface-strong);
  border: 1.5px solid var(--border-strong);
  color: var(--accent-2);
  font-size: 0.80rem;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(30, 45, 40, 0.10);
}

/* ── List columns ── */
.list-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.list-column {
  padding: 1.45rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: rgba(255, 251, 245, 0.72);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.2s ease;
}

.list-column:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--border-strong);
}

.list-column h3 {
  margin: 0;
  font-size: 1.04rem;
  font-weight: 600;
}

/* ── Pathways ── */
.pathways {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.path-card {
  padding: 1.35rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: transform 0.28s cubic-bezier(0.34, 1.3, 0.64, 1), box-shadow 0.28s ease, border-color 0.2s ease;
}

.path-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--border-strong);
}

.path-card h3 {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 600;
}

.path-card p {
  margin: 0.8rem 0 0;
  color: var(--ink-soft);
  line-height: 1.65;
  font-size: 0.94rem;
}

/* ── CTA ── */
.call-to-action {
  padding: 0 0 var(--section-space);
}

.cta-panel {
  overflow: clip;
  position: relative;
  padding: clamp(2rem, 4.5vw, 3rem) clamp(1.5rem, 4vw, 2.8rem);
  border-radius: 40px;
  background:
    radial-gradient(ellipse at top left, rgba(26, 99, 89, 0.25) 0%, transparent 40%),
    radial-gradient(ellipse at bottom right, rgba(201, 150, 54, 0.20) 0%, transparent 40%),
    linear-gradient(148deg, #122f2a 0%, #1d4a42 40%, #6b4c20 100%);
  color: #fff;
  box-shadow: 0 32px 72px rgba(12, 32, 28, 0.28);
}

/* Decorative circles on CTA panel */
.cta-panel::before {
  content: '';
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.07);
  pointer-events: none;
}

.cta-panel::after {
  content: '';
  position: absolute;
  right: -20px;
  bottom: -20px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(201, 150, 54, 0.12);
  pointer-events: none;
}

.cta-panel h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  letter-spacing: -0.04em;
  line-height: 1;
  max-width: 13ch;
  font-weight: 700;
}

.cta-panel p {
  max-width: 56ch;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.72;
  margin-top: 1rem;
}

.cta-panel .button-row {
  position: relative;
  z-index: 1;
}

.cta-panel .button--secondary {
  background: rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.18);
}

.cta-panel .button--secondary:hover {
  background: rgba(255, 255, 255, 0.18);
  box-shadow: none;
}

/* ── Form ── */
.form-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 1rem;
}

.form-panel,
.contact-card {
  padding: 1.6rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: rgba(255, 251, 245, 0.80);
  box-shadow: var(--shadow);
}

.interest-form {
  display: grid;
  gap: 0.9rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.field {
  display: grid;
  gap: 0.4rem;
}

.field--full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.01em;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border);
  background: rgba(255, 255, 255, 0.75);
  color: var(--ink);
  font-size: 0.95rem;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent-2);
  box-shadow: 0 0 0 3px rgba(26, 99, 89, 0.12);
  background: rgba(255, 255, 255, 0.92);
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.form-note,
.contact-card p,
.page-note,
.support-note {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.65;
  font-size: 0.92rem;
}

.contact-stack {
  display: grid;
  gap: 1rem;
}

.contact-card h3 {
  margin: 0 0 0.65rem;
  font-size: 1rem;
  font-weight: 600;
}

/* ── Support grid ── */
.support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.support-card {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: rgba(255, 251, 245, 0.75);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.support-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.support-card strong {
  display: block;
  font-family: var(--display);
  font-size: 2.4rem;
  letter-spacing: -0.05em;
  line-height: 1;
  color: var(--ink);
}

/* ── Map / country grid ── */
.map-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 1rem;
}

.country-card {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: rgba(255, 251, 245, 0.78);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.2s ease;
}

.country-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--border-strong);
}

.country-card h3 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 600;
}

.country-card p {
  margin: 0.8rem 0 0;
  color: var(--ink-soft);
  line-height: 1.7;
}

.country-card__status {
  display: inline-flex;
  margin-bottom: 0.75rem;
  padding: 0.38rem 0.65rem;
  border-radius: 999px;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  background: var(--accent-2-light);
  color: var(--accent-2);
}

/* ── Footer ── */
.site-footer {
  margin-top: 3rem;
  padding: 3.5rem 0 2.4rem;
  color: rgba(255, 255, 255, 0.82);
  background:
    radial-gradient(ellipse at top right, rgba(201, 150, 54, 0.14) 0%, transparent 28%),
    radial-gradient(ellipse at bottom left, rgba(26, 99, 89, 0.12) 0%, transparent 28%),
    linear-gradient(175deg, #162f2a 0%, #0f201c 100%);
  position: relative;
  overflow: hidden;
}

/* Footer decorative arc */
.site-footer::before {
  content: '';
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 240px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.site-footer__inner {
  display: grid;
  gap: 2rem;
  position: relative;
}

.site-footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  gap: 2rem;
}

.site-footer .footer-note {
  margin-top: 0.9rem;
  max-width: 36ch;
  font-size: 0.93rem;
}

.site-footer .brand__name span,
.site-footer a {
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.15s ease;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.footer-column h3 {
  margin: 0 0 1rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.40);
  font-weight: 600;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-links a {
  font-size: 0.92rem;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.40);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.55);
}

.footer-bottom a:hover {
  color: rgba(255, 255, 255, 0.85);
}

/* ── Policy grid ── */
.policy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

/* ── Scroll reveal ── */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1), transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal][data-reveal-delay="1"] { transition-delay: 0.08s; }
[data-reveal][data-reveal-delay="2"] { transition-delay: 0.16s; }
[data-reveal][data-reveal-delay="3"] { transition-delay: 0.24s; }
[data-reveal][data-reveal-delay="4"] { transition-delay: 0.32s; }
[data-reveal][data-reveal-delay="5"] { transition-delay: 0.40s; }
[data-reveal][data-reveal-delay="6"] { transition-delay: 0.48s; }

/* ── Utility ── */
.hidden {
  display: none !important;
}

/* ── Tablet breakpoint ── */
@media (max-width: 1060px) {
  .site-nav__desktop {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.8rem;
    height: 2.8rem;
    border-radius: 999px;
    border: 1.5px solid var(--border-strong);
    background: rgba(255, 255, 255, 0.70);
    color: var(--ink);
    transition: background 0.18s ease, transform 0.18s ease;
  }

  .menu-toggle:hover {
    background: rgba(255, 255, 255, 0.90);
    transform: scale(1.05);
  }

  .site-nav.is-open .site-nav__mobile-links {
    position: fixed;
    top: 80px;
    right: 0.6rem;
    left: 0.6rem;
    display: grid;
    gap: 0.3rem;
    padding: 0.7rem;
    border-radius: 24px;
    background: rgba(255, 251, 245, 0.98);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    /* backdrop-filter is safe here since .site-header no longer has it */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    animation: menuReveal 0.2s ease forwards;
    z-index: 50;
  }

  .site-nav__mobile-links a {
    padding: 0.8rem 1rem;
    border-radius: 14px;
    font-size: 0.96rem;
    font-weight: 500;
    color: var(--ink-soft);
    transition: background 0.15s ease, color 0.15s ease;
  }

  .site-nav__mobile-links a:hover,
  .site-nav__mobile-links a[aria-current="page"] {
    background: rgba(30, 45, 40, 0.06);
    color: var(--ink);
  }

  .site-nav__mobile-links a[aria-current="page"] {
    color: var(--accent-2);
    font-weight: 600;
  }

  .site-nav__mobile-links .button {
    width: 100%;
    border-radius: 14px;
    justify-content: center;
    margin-top: 0.2rem;
  }

  .hero__inner,
  .hero--compact .hero__inner,
  .split,
  .form-shell,
  .site-footer__top,
  .map-grid {
    grid-template-columns: 1fr;
  }

  .split {
    gap: 1.2rem;
  }

  .grid--4,
  .pathways {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .operating-flow__rail--top,
  .operating-flow__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .operating-flow__steps::before {
    display: none;
  }

  .framework-visual {
    min-height: auto;
  }

  .framework-visual__lines {
    display: none;
  }

  .framework-visual__layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
      "chapter logistics"
      "core core"
      "support network";
    min-height: 0;
  }

  .framework-visual__node,
  .framework-visual__core {
    max-width: none;
    width: 100%;
  }

  .framework-visual__node--logistics,
  .framework-visual__node--network,
  .framework-visual__core,
  .framework-visual__node--chapter,
  .framework-visual__node--support {
    justify-self: stretch;
    align-self: stretch;
  }

  .timeline {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .timeline::before {
    display: none;
  }
}

/* ── Mobile breakpoint ── */
@media (max-width: 760px) {
  :root {
    --section-space: clamp(3rem, 7vw, 4.5rem);
  }

  .site-header__inner {
    min-height: 72px;
  }

  .brand__logo {
    height: 50px;
  }

  .site-nav__actions .button {
    padding: 0.72rem 1rem;
    font-size: 0.88rem;
  }

  .hero {
    padding: 1.4rem 0;
  }

  .hero__panel {
    width: min(calc(100% - 1rem), 1380px);
    border-radius: 30px;
    margin-bottom: 0.75rem;
  }

  .hero__inner,
  .section-shell,
  .site-header__inner,
  .site-footer__inner,
  .callout-band__inner {
    width: min(calc(100% - 1rem), var(--container));
  }

  .hero__inner {
    align-items: stretch;
    padding: 1.4rem 1.4rem 2rem;
    gap: 1.4rem;
  }

  .hero-image {
    min-height: 240px;
  }

  .hero-image img {
    width: min(100%, 360px);
  }

  .hero__panel--ambient .hero__inner {
    min-height: 0;
    align-items: stretch;
  }

  .hero__panel--ambient .hero-image {
    inset: auto 0 0 0;
    height: 56%;
    opacity: 0.18;
  }

  .hero__panel--ambient .hero-image img {
    right: 50%;
    top: auto;
    bottom: -8px;
    transform: translateX(50%);
    width: min(86%, 420px);
  }

  .hero-visual {
    width: 100%;
    min-height: 0;
    padding: 0;
  }

  /* Mobile: replace complex grid with two stacked cards */
  .hero-visual__grid {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    min-height: 0;
  }

  .hero-visual__orb {
    display: none;
  }

  .floating-card,
  .floating-card--main,
  .floating-card--secondary {
    width: 100%;
    padding: 1.1rem 1.15rem;
    grid-column: auto;
    grid-row: auto;
    position: static;
  }

  .floating-card--impact,
  .floating-card--mentor,
  .floating-card--practice {
    display: none;
  }

  .grid--2,
  .grid--3,
  .grid--4,
  .list-columns,
  .timeline,
  .pathways,
  .support-grid,
  .policy-grid,
  .footer-columns,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .timeline::before {
    display: none;
  }

  .framework-visual {
    padding: 1rem;
    border-radius: 28px;
  }

  .framework-visual__layout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "core"
      "chapter"
      "logistics"
      "support"
      "network";
  }

  .operating-flow {
    padding: 1rem;
    border-radius: 28px;
  }

  .operating-flow__rail--top,
  .operating-flow__steps {
    grid-template-columns: 1fr;
  }

  .operating-flow__anchor,
  .operating-flow__step {
    padding-left: 0.95rem;
    padding-right: 0.95rem;
  }

  .framework-visual__core {
    padding: 1.25rem 1.1rem;
  }

  .framework-visual__node {
    padding: 0.95rem 1rem 1rem;
  }

  .button,
  .button-row .button,
  .hero__actions .button,
  .page-intro__actions .button {
    width: 100%;
    justify-content: center;
  }

  /* Exception: CTA panel buttons can stay flexible */
  .cta-panel .button-row .button {
    width: auto;
    flex: 1 1 auto;
  }

  .site-nav__actions {
    gap: 0.4rem;
  }

  .section--tight {
    padding-top: 2.4rem;
    padding-bottom: 2.4rem;
  }

  .cta-panel {
    padding: 1.6rem;
    border-radius: 28px;
  }

  .cta-panel h2 {
    font-size: clamp(1.8rem, 7vw, 2.4rem);
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
  }

  .site-footer__top {
    gap: 1.6rem;
  }

  .section__header {
    margin-bottom: 1.8rem;
  }

  /* Reveal stays intact on mobile but shorter delay */
  [data-reveal][data-reveal-delay="4"],
  [data-reveal][data-reveal-delay="5"],
  [data-reveal][data-reveal-delay="6"] {
    transition-delay: 0s;
  }
}
