/* ════════════════════════════════════════════════════════════════
   HUMAN RESTORATION PROJECT AUSTRALIA - shared stylesheet
   Brand Book v1.0 palette + typography
   ════════════════════════════════════════════════════════════════ */

:root {
  /* ── Brand greens (eucalyptus palette) ── */
  --hrp-green: #1F5D50;          /* Primary Green */
  --hrp-green-dark: #174a40;
  --hrp-green-darker: #103a31;
  --hrp-green-light: #e3efe9;
  --hrp-green-muted: #eef5f1;
  --hrp-eucalyptus: #4C8B7A;     /* Eucalyptus Green */
  --hrp-eucalyptus-light: #dcebe5;

  /* ── Australian gold ── */
  --hrp-gold: #D6A521;           /* Australian Gold */
  --hrp-gold-dark: #b0861a;
  --hrp-gold-light: #f6ecc9;

  --accent-blue: #2f6f9e;

  /* ── Neutrals: warm paper palette ── */
  --black: #1c1c1c;
  --ink: #2E2E2E;                /* Charcoal - primary body text */
  --dark-gray: #444444;
  --mid-gray: #7A7A7A;           /* Soft Grey - supporting text */
  --light-gray: #b8b4ab;
  --border-gray: #e6e1d6;
  --border-strong: #2E2E2E;
  --paper: #FAF9F6;             /* Warm White - primary background */
  --paper-warm: #F5F2EA;        /* Sand - alternate sections, cards */
  --paper-bright: #ffffff;
  --white: #ffffff;

  /* ── Grid line colour ── */
  --grid-line: rgba(46, 46, 46, 0.045);
  --grid-line-strong: rgba(46, 46, 46, 0.09);
  --dot-color: rgba(46, 46, 46, 0.16);

  /* ── Fonts ── */
  --font-display: "Manrope", "Avenir Next", system-ui, sans-serif;  /* headings */
  --font-body: "Inter", system-ui, sans-serif;                       /* body */
  --font-quote: "Cormorant Garamond", Georgia, serif;               /* quotes, testimonials, leads */
  /* Accent/label font (uppercase tracked labels) */
  --font-mono: "Manrope", system-ui, sans-serif;

  /* ── Layout ── */
  --max-width: 1280px;
  --section-gap: 6rem;
  --container-px: 2rem;

  --radius-sm: 4px;
  --radius-md: 10px;

  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
  --duration: 0.3s;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: hidden;
}

img, svg, video { max-width: 100%; display: block; }
a { color: var(--hrp-green); text-decoration: none; transition: color var(--duration) var(--ease); }
a:hover { color: var(--hrp-green-dark); }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-px);
  position: relative;
}

/* ── Type scale ── */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-wrap: balance;
}
h1 { font-size: clamp(2.8rem, 6.2vw, 4.8rem); font-weight: 750; }
h2 { font-size: clamp(2rem, 4.2vw, 3.1rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.35rem, 2.3vw, 1.75rem); margin-bottom: 0.5rem; font-weight: 700; }
h4 {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--hrp-eucalyptus);
}

p { margin-bottom: 1rem; color: var(--dark-gray); font-size: 1.05rem; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

.lead {
  font-family: var(--font-quote);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  line-height: 1.35;
  color: var(--dark-gray);
  letter-spacing: 0;
  text-wrap: pretty;
}

.ph, [class^="ph-"] { vertical-align: -0.125em; }

section { padding: var(--section-gap) 0; position: relative; }

/* ════════════════════════════════════════════════
   GRID / DOT BACKDROPS
   ════════════════════════════════════════════════ */
.grid-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(to right, var(--grid-line) 1px, transparent 1px),
    linear-gradient(to bottom, var(--grid-line) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 12%, rgba(0,0,0,1) 88%, rgba(0,0,0,0) 100%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 12%, rgba(0,0,0,1) 88%, rgba(0,0,0,0) 100%);
  z-index: 0;
}
.dot-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(var(--dot-color) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 15%, rgba(0,0,0,1) 85%, rgba(0,0,0,0) 100%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 15%, rgba(0,0,0,1) 85%, rgba(0,0,0,0) 100%);
  opacity: 0.55;
  z-index: 0;
}

/* ════════════════════════════════════════════════
   HEADER
   ════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250, 249, 246, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-gray);
}
.site-header.on-hero {
  background: transparent;
  border-bottom-color: rgba(255,255,255,0.15);
  color: var(--white);
}
.site-header.on-hero .header-brand,
.site-header.on-hero nav a { color: var(--white); }
.site-header.on-hero nav a:hover { color: var(--white); opacity: 1; }

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
  max-width: none;
  padding: 0 1.75rem;
}
.header-brand {
  display: inline-flex;
  align-items: center;
  gap: 1.05rem;
  color: var(--ink);
  transition: color var(--duration) var(--ease);
}
.header-brand img { height: 74px; width: auto; }
.header-brand__text {
  font-family: var(--font-mono);
  font-weight: 700;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  line-height: 1.12;
}
.header-brand__text .brand-main {
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.header-brand__text .brand-sub {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  opacity: 0.82;
}
@media (max-width: 600px) {
  .header-brand img { height: 56px; }
  .header-brand { gap: 0.8rem; }
  .header-brand__text .brand-main { font-size: 0.86rem; letter-spacing: 0.04em; }
  .header-brand__text .brand-sub { font-size: 0.7rem; letter-spacing: 0.16em; }
}
.site-header nav {
  display: flex;
  gap: 0.15rem;
  align-items: center;
}
.site-header nav a {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--dark-gray);
  padding: 0.55rem 0.8rem;
  border-radius: var(--radius-sm);
  transition: opacity var(--duration) var(--ease), color var(--duration) var(--ease), background var(--duration) var(--ease);
}
.site-header nav a:hover { color: var(--hrp-green); }
.site-header.on-hero nav a:hover { opacity: 0.75; }

.site-header nav a.active {
  color: var(--hrp-green);
  background: var(--hrp-green-light);
}
.site-header.on-hero nav a.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
}
.site-header nav a.nav-cta.active { background: var(--hrp-green); }

.nav-cta {
  background: var(--hrp-green);
  color: var(--white) !important;
  font-weight: 600 !important;
  margin-left: 0.5rem;
  padding: 0.55rem 1.1rem !important;
}
.nav-cta:hover { background: var(--hrp-green-dark); }
.site-header.on-hero .nav-cta { background: var(--white); color: var(--ink) !important; }
.site-header.on-hero .nav-cta:hover { background: var(--hrp-gold); opacity: 1; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; color: inherit; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: currentColor; margin: 5px 0; }
@media (max-width: 980px) {
  .nav-toggle { display: block; }
  .site-header nav {
    position: fixed; top: 100px; left: 0; right: 0;
    background: var(--paper-bright);
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem;
    gap: 0.25rem;
    border-bottom: 1px solid var(--border-gray);
    transform: translateY(-120%);
    visibility: hidden;
    transition: transform 0.3s var(--ease), visibility 0.3s var(--ease);
  }
  .site-header nav.open { transform: translateY(0); visibility: visible; }
  .site-header.on-hero nav { background: var(--paper-bright); }
  .site-header.on-hero nav a { color: var(--ink); }
  .site-header.on-hero .nav-cta { background: var(--hrp-green); color: var(--white) !important; }
}

/* ════════════════════════════════════════════════
   HERO (home) - full-bleed bg video + dark scrim
   ════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  padding: 9rem 0 4rem;
  color: var(--white);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(135deg, #0d2c25 0%, #154a3f 50%, #1F5D50 100%);
}
.hero__media { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero__media video,
.hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.78;
  transition: opacity 1.2s ease;
}
.hero__media video.is-fading { opacity: 0; }
.hero__scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(11,32,25,0.45) 0%, rgba(11,32,25,0.40) 40%, rgba(11,32,25,0.85) 100%),
    radial-gradient(ellipse at 30% 30%, rgba(31,93,80,0.22) 0%, transparent 60%);
}
.hero__grid {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,1) 30%, rgba(0,0,0,1) 70%, rgba(0,0,0,0.4) 100%);
}
.hero .container { position: relative; z-index: 3; max-width: 1080px; }
.hero__primary { max-width: 820px; }
.hero h1 { color: var(--white); margin-bottom: 1.5rem; letter-spacing: -0.025em; }
.hero h1 em { font-style: normal; color: var(--hrp-gold); }
.hero__tagline {
  font-family: var(--font-quote);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.3rem, 2.1vw, 1.7rem);
  color: rgba(255,255,255,0.9);
  max-width: 620px;
  margin-bottom: 1.5rem;
  line-height: 1.35;
}
.hero__lead {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  max-width: 620px;
  margin-bottom: 2rem;
  line-height: 1.65;
}
.hero__cta-row { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ════════════════════════════════════════════════
   PAGE HERO (sub-pages)
   ════════════════════════════════════════════════ */
.page-hero {
  position: relative;
  padding: 11rem 0 4.5rem;
  background: var(--paper-warm);
  border-bottom: 1px solid var(--border-gray);
  overflow: hidden;
}
.page-hero .container { position: relative; z-index: 2; max-width: 960px; }
.page-hero h4 { margin-bottom: 1rem; }
.page-hero h1 { margin-bottom: 1.25rem; }
.page-hero .lead { max-width: 760px; }
.page-hero__crumb {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin-bottom: 1.25rem;
}
.page-hero__crumb a { color: var(--mid-gray); }
.page-hero__crumb a:hover { color: var(--hrp-green); }

/* ════════════════════════════════════════════════
   BUTTONS
   ════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.9rem 1.5rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid transparent;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: transform var(--duration) var(--ease), background var(--duration) var(--ease),
              border-color var(--duration) var(--ease), color var(--duration) var(--ease);
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0) scale(0.96); }
.btn-primary { background: var(--hrp-green); color: var(--white); border-color: var(--hrp-green); }
.btn-primary:hover { background: var(--hrp-green-dark); border-color: var(--hrp-green-dark); color: var(--white); }
.btn-gold { background: var(--hrp-gold); color: var(--ink); border-color: var(--hrp-gold); }
.btn-gold:hover { background: var(--hrp-gold-dark); border-color: var(--hrp-gold-dark); color: var(--ink); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--white); }
.btn-on-dark.btn-outline { color: var(--white); border-color: var(--white); }
.btn-on-dark.btn-outline:hover { background: var(--white); color: var(--ink); }

/* ════════════════════════════════════════════════
   GENERIC SECTION HELPERS
   ════════════════════════════════════════════════ */
.section-paper { background: var(--paper); border-bottom: 1px solid var(--border-gray); position: relative; }
.section-bright { background: var(--paper-bright); border-bottom: 1px solid var(--border-gray); position: relative; }
.section-sand { background: var(--paper-warm); border-bottom: 1px solid var(--border-gray); position: relative; }
.section-head { max-width: 860px; margin: 0 auto 3rem; text-align: center; position: relative; z-index: 2; }
.section-head .lead { margin-top: 1rem; }
.narrow { max-width: 880px; }
.prose p { font-size: 1.08rem; line-height: 1.75; }
.prose p strong, .mission-text strong {
  color: var(--ink); font-weight: 600;
  box-shadow: inset 0 -0.4em 0 rgba(31, 93, 80, 0.14);
}

/* ════════════════════════════════════════════════
   MISSION / PROSE BLOCK
   ════════════════════════════════════════════════ */
.mission { background: var(--paper); border-bottom: 1px solid var(--border-gray); position: relative; }
.mission .container { position: relative; z-index: 2; max-width: 880px; }
.mission h2 { margin-bottom: 2rem; }
.mission-text { font-family: var(--font-body); font-size: 1.1rem; line-height: 1.7; color: var(--dark-gray); }
.mission-text + .mission-text { margin-top: 1.25rem; }

/* ════════════════════════════════════════════════
   PULL QUOTE
   ════════════════════════════════════════════════ */
.pullquote-section {
  background: var(--paper-warm);
  border-top: 1px solid var(--border-gray);
  border-bottom: 1px solid var(--border-gray);
  padding: 4.5rem 0;
  position: relative;
}
.pullquote-section .dot-bg { opacity: 0.4; }
.pullquote {
  max-width: 940px; margin: 0 auto;
  padding: 0 var(--container-px);
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.75rem;
  align-items: start;
}
.pullquote__mark {
  font-family: var(--font-quote);
  font-size: clamp(5rem, 10vw, 8rem);
  font-weight: 600;
  line-height: 0.7;
  color: var(--hrp-green);
  font-style: italic;
  margin-top: -0.25rem;
}
.pullquote__body {
  font-family: var(--font-quote);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  line-height: 1.3;
  letter-spacing: 0;
  color: var(--ink);
}
.pullquote__body em {
  font-style: italic;
  background-image: linear-gradient(transparent 60%, rgba(214, 165, 33, 0.45) 60%, rgba(214, 165, 33, 0.45) 90%, transparent 90%);
  padding: 0 0.1em;
}
.pullquote__cite {
  display: block;
  margin-top: 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mid-gray);
  font-style: normal;
}

/* ════════════════════════════════════════════════
   PILLARS / CARD GRID (3 + 4 column variants)
   ════════════════════════════════════════════════ */
.pillars { background: var(--paper-bright); border-bottom: 1px solid var(--border-gray); position: relative; }
.pillars-head {
  display: grid; grid-template-columns: 1fr auto; gap: 2rem;
  align-items: end; margin-bottom: 3rem; position: relative; z-index: 2;
}
.pillars-head .lead { max-width: 480px; }

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative; z-index: 2;
  border: 1px solid var(--border-strong);
  background: var(--border-gray);
}
.pillars-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.pillar-card {
  background: var(--paper-bright);
  padding: 3rem 1.85rem 2.25rem;
  position: relative;
  transition: background var(--duration) var(--ease);
  text-align: center;
  display: flex;
  flex-direction: column;
}
.pillar-card:hover { background: var(--paper); }
.pillar-card + .pillar-card { border-left: 1px solid var(--border-strong); }

.pillar-step {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--hrp-eucalyptus);
  margin-bottom: 0.75rem;
}
.pillar-icon {
  width: 68px; height: 68px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%; margin: 0 auto 1.5rem;
  font-size: 1.85rem;
  border: 1.5px solid var(--ink);
}
.pillar-card:nth-child(4n+1) .pillar-icon { background: var(--hrp-green-light); color: var(--hrp-green-dark); }
.pillar-card:nth-child(4n+2) .pillar-icon { background: var(--hrp-gold-light); color: var(--hrp-gold-dark); }
.pillar-card:nth-child(4n+3) .pillar-icon { background: var(--hrp-eucalyptus-light); color: var(--hrp-green-dark); }
.pillar-card:nth-child(4n+4) .pillar-icon { background: #dbe6ef; color: var(--accent-blue); }
.pillar-card h3 { color: var(--ink); margin-bottom: 0.65rem; }
.pillar-card p { color: var(--dark-gray); font-size: 0.98rem; flex-grow: 1; }

.pillar-stat { margin-top: 1.75rem; padding-top: 1.25rem; border-top: 1px dashed var(--border-gray); }
.pillar-stat-num {
  display: block; font-family: var(--font-display);
  font-weight: 800; font-size: 2.3rem; color: var(--hrp-green);
  line-height: 1; letter-spacing: -0.02em; margin-bottom: 0.5rem;
  font-variant-numeric: tabular-nums;
}
.pillar-stat-label { font-family: var(--font-body); font-size: 0.88rem; color: var(--mid-gray); line-height: 1.55; }
.pillar-stat-label a { font-size: 0.82rem; }

@supports (grid-template-rows: subgrid) {
  @media (min-width: 881px) {
    .pillars-grid:not(.cols-4) { grid-template-rows: auto auto auto auto; }
    .pillars-grid:not(.cols-4) .pillar-card { display: grid; grid-template-rows: subgrid; grid-row: 1 / span 4; }
  }
}
@media (max-width: 980px) {
  .pillars-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .pillars-grid.cols-4 .pillar-card:nth-child(3) { border-left: none; }
  .pillars-grid.cols-4 .pillar-card:nth-child(n+3) { border-top: 1px solid var(--border-strong); }
}
@media (max-width: 880px) {
  .pillars-head { grid-template-columns: 1fr; align-items: start; }
  .pillars-grid, .pillars-grid.cols-4 { grid-template-columns: 1fr; }
  .pillar-card + .pillar-card { border-left: none; border-top: 1px solid var(--border-strong); }
}

.pillars-loop {
  text-align: center; margin: 2.5rem auto 0;
  font-family: var(--font-body); font-size: 0.95rem;
  color: var(--mid-gray); max-width: 720px; line-height: 1.55;
}
.pillars-loop i { color: var(--hrp-green); margin-right: 0.5rem; }
.pillars-loop a {
  color: var(--hrp-green); text-decoration: underline;
  text-decoration-color: rgba(31, 93, 80, 0.35);
  text-underline-offset: 3px;
  transition: text-decoration-color var(--duration) var(--ease);
}
.pillars-loop a:hover { text-decoration-color: var(--hrp-green); }

/* ════════════════════════════════════════════════
   ARC EXPLORER (interactive venn)
   ════════════════════════════════════════════════ */
.map-section { background: var(--paper); border-bottom: 1px solid var(--border-gray); position: relative; }
.map-section .container { max-width: 1360px; }
.map-intro { max-width: 880px; margin: 0 auto 2.75rem; text-align: center; position: relative; z-index: 2; }

.map-explorer {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 2.25rem;
  align-items: stretch;
  position: relative; z-index: 2;
}
.map-explorer__venn {
  background: var(--paper-bright);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem 1.5rem;
  position: relative;
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
}
.map-explorer__venn::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, var(--grid-line) 1px, transparent 1px),
    linear-gradient(to bottom, var(--grid-line) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none; opacity: 0.55; border-radius: var(--radius-md);
}
.map-venn { width: 100%; max-width: 560px; height: auto; position: relative; z-index: 1; display: block; }
.map-explorer__hint {
  position: relative; z-index: 1; text-align: center;
  font-family: var(--font-quote); font-style: italic; font-weight: 500;
  font-size: 1.05rem; color: var(--mid-gray); margin: 0;
  padding: 1rem 1.5rem 0; border-top: 1px dashed var(--border-gray);
  width: 100%; max-width: 560px;
}
.map-explorer__hint i { color: var(--hrp-green); margin-right: 0.4rem; font-size: 1rem; vertical-align: -0.18em; font-style: normal; }

.map-explorer__panel {
  background: var(--paper-bright);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  padding: 2.75rem 2.5rem;
  position: relative;
  display: flex; flex-direction: column; justify-content: center;
}
.map-cards { position: relative; }
.map-card { display: none; animation: mapCardFade 0.35s var(--ease); }
.map-card.active { display: block; }
@keyframes mapCardFade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }
.map-card h3 { font-size: clamp(1.5rem, 2.6vw, 2.05rem); margin-bottom: 0.55rem; }
.map-tagline {
  display: block; font-family: var(--font-quote); font-style: italic;
  font-weight: 500; font-size: 1.25rem; color: var(--mid-gray); margin-bottom: 1.25rem;
}
.map-card p { font-size: 1.05rem; line-height: 1.7; }
.map-card blockquote {
  margin-top: 1.5rem; padding: 1.1rem 1.25rem;
  border-left: 3px solid var(--hrp-green);
  background: var(--paper);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-family: var(--font-body); font-size: 0.95rem; font-style: italic; color: var(--dark-gray);
}
.map-card[data-pillar="1"] blockquote { border-left-color: var(--hrp-gold-dark); }
.map-card[data-pillar="2"] blockquote { border-left-color: var(--accent-blue); }
.map-card[data-pillar="3"] blockquote { border-left-color: var(--ink); }

@media (max-width: 960px) {
  .map-explorer { grid-template-columns: 1fr; gap: 1.75rem; }
  .map-explorer__venn { padding: 2rem 1.25rem 1.25rem; }
  .map-explorer__panel { padding: 2rem 1.5rem; }
}

/* ════════════════════════════════════════════════
   ARC DETAIL (full A/R/C rows on framework page)
   ════════════════════════════════════════════════ */
.arc-detail { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--border-strong); border-radius: var(--radius-md); overflow: hidden; position: relative; z-index: 2; }
.arc-row {
  display: grid; grid-template-columns: 220px 1fr; gap: 2.5rem;
  padding: 2.75rem 2.5rem; background: var(--paper-bright);
  align-items: start;
}
.arc-row + .arc-row { border-top: 1px solid var(--border-strong); }
.arc-row:nth-child(2) { background: var(--paper); }
.arc-letter {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(3.5rem, 7vw, 5.5rem); line-height: 1;
  color: var(--hrp-green); letter-spacing: -0.03em;
}
.arc-row:nth-child(1) .arc-letter { color: var(--hrp-green); }
.arc-row:nth-child(2) .arc-letter { color: var(--accent-blue); }
.arc-row:nth-child(3) .arc-letter { color: var(--hrp-gold-dark); }
.arc-letter span { display: block; font-family: var(--font-mono); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink); margin-top: 0.5rem; }
.arc-row h3 { margin-bottom: 0.75rem; }
.arc-row .arc-strength {
  margin-top: 1.1rem; font-family: var(--font-body); font-size: 0.95rem; color: var(--mid-gray);
  padding-top: 1rem; border-top: 1px dashed var(--border-gray);
}
.arc-row .arc-strength strong { color: var(--ink); }
@media (max-width: 760px) {
  .arc-row { grid-template-columns: 1fr; gap: 1rem; padding: 2rem 1.5rem; }
}

/* ════════════════════════════════════════════════
   PARTNERSHIP (Vaughan + USA movement)
   ════════════════════════════════════════════════ */
.partnership { background: var(--paper-bright); border-bottom: 1px solid var(--border-gray); position: relative; }
.partnership-layout {
  display: grid; grid-template-columns: 320px 1fr; gap: 3.5rem;
  align-items: start; margin-top: 2rem; position: relative; z-index: 2;
}
.partner-photo {
  width: 100%; aspect-ratio: 1; border-radius: var(--radius-md);
  overflow: hidden; border: 1px solid var(--border-strong);
  background: var(--paper); position: relative;
}
.partner-photo img { width: 100%; height: 100%; object-fit: cover; }
.partner-name-row { display: flex; align-items: center; gap: 0.85rem; margin-bottom: 0.4rem; }
.partner-name-row h3 { font-size: clamp(1.7rem, 2.6vw, 2.1rem); margin-bottom: 0; }
.partner-role { font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--hrp-eucalyptus); margin-bottom: 0.5rem; }
.partner-name-row a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: var(--radius-sm);
  background: var(--paper); border: 1px solid var(--border-strong);
  color: var(--dark-gray); flex-shrink: 0;
  transition: background var(--duration) var(--ease), border-color var(--duration) var(--ease), color var(--duration) var(--ease);
}
.partner-name-row a:hover { background: var(--hrp-green); border-color: var(--hrp-green); color: var(--white); }
.partner-name-row a:active { scale: 0.96; }
.partner-info { padding-top: 0.5rem; }
.partner-info p { font-size: 1.06rem; line-height: 1.75; margin-bottom: 1rem; }
.partner-info p:first-of-type { padding-top: 1.25rem; border-top: 1px dashed var(--border-gray); }
.partner-info p strong { color: var(--ink); font-weight: 600; box-shadow: inset 0 -0.4em 0 rgba(31, 93, 80, 0.14); }
.partner-email {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-family: var(--font-mono); font-size: 0.88rem; font-weight: 600;
  color: var(--hrp-green); margin-top: 1rem;
  padding: 0.55rem 0.95rem; background: var(--hrp-green-light); border-radius: var(--radius-sm);
}
@media (max-width: 880px) {
  .partnership-layout { grid-template-columns: 1fr; gap: 2rem; }
  .partner-photo { max-width: 280px; }
}

/* ── International movement / USA partnership block ── */
.movement { background: var(--hrp-green); color: rgba(255,255,255,0.85); position: relative; overflow: hidden; }
.movement::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 30%, rgba(0,0,0,1) 70%, rgba(0,0,0,0) 100%);
}
.movement .container { position: relative; z-index: 2; max-width: 980px; text-align: center; }
.movement h4 { color: var(--hrp-gold); }
.movement h2 { color: var(--white); margin-top: 0.75rem; }
.movement p { color: rgba(255,255,255,0.85); font-size: 1.1rem; line-height: 1.75; max-width: 760px; margin: 1.25rem auto 0; }
.movement .lead { color: rgba(255,255,255,0.92); }
.movement a.movement-link {
  color: var(--hrp-gold); font-weight: 600;
  text-decoration: underline; text-underline-offset: 3px;
  text-decoration-color: rgba(214,165,33,0.5);
}
.movement a.movement-link:hover { text-decoration-color: var(--hrp-gold); }
.movement-eco {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0.6rem; margin-top: 2rem;
}
.movement-eco span {
  font-family: var(--font-body); font-size: 0.88rem; font-weight: 500;
  color: rgba(255,255,255,0.9);
  padding: 0.5rem 1rem; border: 1px solid rgba(255,255,255,0.25); border-radius: 999px;
}
.movement-eco span i { color: var(--hrp-gold); margin-right: 0.4rem; vertical-align: -0.1em; }
.movement .btn { margin-top: 2.25rem; }

/* ════════════════════════════════════════════════
   FAQ
   ════════════════════════════════════════════════ */
.faq-section { background: var(--paper); border-bottom: 1px solid var(--border-gray); position: relative; }
.faq-section .container { max-width: 940px; position: relative; z-index: 2; }
.faq-head { max-width: 720px; margin: 0 auto 3rem; text-align: center; }
.faq-head p {
  font-family: var(--font-quote); font-style: italic; font-weight: 500;
  font-size: clamp(1.2rem, 2vw, 1.45rem); color: var(--dark-gray); line-height: 1.5; margin-top: 0.85rem;
}
.faq-list { border-top: 1px solid var(--border-gray); }
.faq-item { border-bottom: 1px solid var(--border-gray); }
.faq-item > summary {
  list-style: none; cursor: pointer; padding: 1.5rem 0;
  display: grid; grid-template-columns: 3rem 1fr auto; gap: 0.85rem;
  align-items: baseline; font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.7vw, 1.25rem); font-weight: 700;
  color: var(--ink); line-height: 1.35; transition: color 0.2s var(--ease);
}
.faq-item > summary::-webkit-details-marker,
.faq-item > summary::marker { display: none; content: ""; }
.faq-item > summary:hover { color: var(--hrp-green); }
.faq-num { font-family: var(--font-mono); font-size: 0.95rem; color: var(--hrp-green); font-weight: 700; align-self: baseline; }
.faq-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border: 1.5px solid var(--ink); border-radius: 50%;
  color: var(--ink); flex-shrink: 0;
  transition: transform 0.3s var(--ease), background 0.2s, color 0.2s; align-self: center;
}
.faq-toggle svg { width: 14px; height: 14px; }
.faq-item[open] > summary .faq-toggle { background: var(--hrp-green); border-color: var(--hrp-green); color: var(--white); transform: rotate(45deg); }
.faq-answer { padding: 0 3rem 1.75rem; max-width: 760px; animation: faqFadeIn 0.4s var(--ease); }
@keyframes faqFadeIn { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: translateY(0); } }
.faq-answer p { font-size: 1.05rem; line-height: 1.7; color: var(--dark-gray); }
.faq-answer p + p { margin-top: 0.9rem; }
.faq-answer p strong { color: var(--ink); }
.faq-answer a {
  color: var(--hrp-green); font-weight: 500; text-decoration: underline;
  text-decoration-color: rgba(31, 93, 80, 0.35); text-underline-offset: 3px;
  transition: text-decoration-color var(--duration) var(--ease);
}
.faq-answer a:hover { text-decoration-color: var(--hrp-green); }
.faq-answer ul { list-style: none; padding: 0.5rem 0 0; margin: 0; }
.faq-answer ul li { padding: 0.4rem 0 0.4rem 1.5rem; position: relative; font-size: 1rem; color: var(--dark-gray); line-height: 1.55; }
.faq-answer ul li::before { content: ""; position: absolute; left: 0; top: 0.95rem; width: 8px; height: 1px; background: var(--hrp-green); }
@media (max-width: 600px) {
  .faq-item > summary { grid-template-columns: 2rem 1fr auto; gap: 0.5rem; }
  .faq-answer { padding-left: 2rem; padding-right: 0; }
}

/* ════════════════════════════════════════════════
   CONTACT
   ════════════════════════════════════════════════ */
.contact { background: var(--paper); border-bottom: 1px solid var(--border-gray); position: relative; }
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; margin-top: 2.5rem; position: relative; z-index: 2; }
.contact-info h3 { margin-bottom: 1rem; font-size: clamp(1.6rem, 2.5vw, 2.1rem); }
.contact-info p { font-size: 1.06rem; }
.contact-info .lead { margin: 1.25rem 0; }
.contact-form {
  background: var(--paper-bright); border: 1px solid var(--border-strong);
  border-radius: var(--radius-md); padding: 2.25rem;
  display: flex; flex-direction: column; gap: 1.15rem; position: relative;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.15rem; }
.form-group { display: flex; flex-direction: column; gap: 0.45rem; }
.form-group label {
  font-family: var(--font-mono); font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.14em; color: var(--mid-gray);
  display: inline-flex; align-items: center; gap: 0.45rem;
}
.form-group input, .form-group textarea, .form-group select {
  font-family: var(--font-body); font-size: 1rem; padding: 0.78rem 0.95rem;
  border: 1.5px solid var(--border-gray); border-radius: var(--radius-sm);
  background: var(--paper); color: var(--ink); outline: none;
  transition: border-color var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--hrp-green); box-shadow: 0 0 0 3px rgba(31, 93, 80, 0.12);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-status {
  font-family: var(--font-body);
  font-size: 0.95rem;
  margin: 0;
  min-height: 1.2em;
}
.form-status.ok { color: var(--hrp-green-dark); font-weight: 600; }
.form-status.error { color: #b23b2e; font-weight: 500; }
@media (max-width: 880px) { .contact-layout { grid-template-columns: 1fr; } .form-row { grid-template-columns: 1fr; } }

.social-pills { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-top: 1.25rem; }
.social-pill {
  display: inline-flex; align-items: center; gap: 0.45rem;
  padding: 0.5rem 0.95rem; background: var(--paper-bright);
  border: 1px solid var(--border-gray); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 0.88rem; font-weight: 500;
  color: var(--dark-gray);
  transition: background var(--duration) var(--ease), border-color var(--duration) var(--ease), color var(--duration) var(--ease);
}
.social-pill:hover { background: var(--hrp-green-light); color: var(--hrp-green-dark); border-color: var(--hrp-green); text-decoration: none; }
.social-pill:active { scale: 0.96; }
.social-pill i { font-size: 1rem; }

/* ════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════ */
.site-footer { background: var(--ink); color: rgba(255,255,255,0.75); margin-top: 30px; padding: 4rem 0 3rem; font-size: 0.9rem; position: relative; overflow: hidden; }
.site-footer::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.027) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.027) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 30%);
}
.site-footer .container { position: relative; z-index: 2; }
.footer-inner { display: grid; grid-template-columns: auto 1fr; gap: 3rem; align-items: center; flex-wrap: wrap; padding-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,0.12); }
.footer-logo { height: 52px; opacity: 0.95; filter: brightness(0) invert(1); }
.footer-links { display: flex; gap: 1.4rem; flex-wrap: wrap; justify-content: flex-end; }
.footer-links a { color: rgba(255,255,255,0.7); font-family: var(--font-body); font-size: 0.88rem; font-weight: 500; }
.footer-links a:hover { color: var(--hrp-gold); }
.footer-note { margin-top: 1.5rem; font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.06em; color: rgba(255,255,255,0.5); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-note a { color: var(--hrp-gold); }
@media (max-width: 720px) {
  .footer-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-links { justify-content: flex-start; }
}

/* ════════════════════════════════════════════════
   SECTORS (who we help)
   ════════════════════════════════════════════════ */
.sectors { background: var(--paper-bright); border-bottom: 1px solid var(--border-gray); position: relative; }
.sectors .container { position: relative; z-index: 2; }
.sectors-head { max-width: 840px; margin: 0 auto 3rem; text-align: center; }
.sectors-head .lead { margin-top: 1rem; }
.sectors-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; border: 1px solid var(--border-strong); background: var(--border-strong); }
.sector-card { background: var(--paper-bright); padding: 2.4rem 1.1rem; text-align: center; transition: background var(--duration) var(--ease); }
.sector-card:hover { background: var(--paper); }
.sector-icon {
  width: 62px; height: 62px; margin: 0 auto 1.15rem;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%; font-size: 1.65rem; border: 1.5px solid var(--ink);
  background: var(--hrp-green-light); color: var(--hrp-green-dark);
}
.sector-card:nth-child(2) .sector-icon { background: var(--hrp-gold-light); color: var(--hrp-gold-dark); }
.sector-card:nth-child(3) .sector-icon { background: #dbe6ef; color: var(--accent-blue); }
.sector-card:nth-child(4) .sector-icon { background: var(--hrp-green-light); color: var(--hrp-green-dark); }
.sector-card:nth-child(5) .sector-icon { background: var(--hrp-gold-light); color: var(--hrp-gold-dark); }
.sector-card h3 { font-size: 1.02rem; line-height: 1.25; color: var(--ink); margin-bottom: 0; }
@media (max-width: 900px) { .sectors-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .sectors-grid { grid-template-columns: 1fr; } }

/* ── Sectors with descriptions (Who We Help page) ── */
.sector-detail { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; position: relative; z-index: 2; }
.sector-detail-card {
  background: var(--paper-bright); border: 1px solid var(--border-strong);
  border-radius: var(--radius-md); padding: 2.25rem 2rem;
  display: flex; flex-direction: column; transition: transform var(--duration) var(--ease);
}
.sector-detail-card:hover { transform: translateY(-3px); }
.sector-detail-card .sector-icon { margin: 0 0 1.25rem; }
.sector-detail-card:nth-child(5) { grid-column: 1 / -1; }
.sector-detail-card h3 { margin-bottom: 0.6rem; }
.sector-detail-card p { font-size: 1rem; line-height: 1.7; }
@media (max-width: 760px) {
  .sector-detail { grid-template-columns: 1fr; }
  .sector-detail-card:nth-child(5) { grid-column: auto; }
}

/* ════════════════════════════════════════════════
   PROBLEM / WHY NOW
   ════════════════════════════════════════════════ */
.problem { background: var(--paper); border-bottom: 1px solid var(--border-gray); position: relative; }
.problem .container { position: relative; z-index: 2; }
.problem-head { max-width: 880px; margin: 0 auto 3rem; text-align: center; }
.problem-head .lead { margin-top: 1rem; }
.problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.problem-col { background: var(--paper-bright); border: 1px solid var(--border-strong); border-radius: var(--radius-md); padding: 2.25rem 2rem; }
.problem-col__head { display: flex; align-items: center; gap: 0.85rem; margin-bottom: 1.25rem; padding-bottom: 1.25rem; border-bottom: 1px dashed var(--border-gray); }
.problem-col__icon { width: 48px; height: 48px; flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; font-size: 1.35rem; border: 1.5px solid var(--ink); }
.problem-col:nth-child(1) .problem-col__icon { background: var(--hrp-green-light); color: var(--hrp-green-dark); }
.problem-col:nth-child(2) .problem-col__icon { background: var(--hrp-gold-light); color: var(--hrp-gold-dark); }
.problem-col__head h3 { font-size: 1.35rem; margin-bottom: 0; }
.problem-list { list-style: none; padding: 0; margin: 0; }
.problem-list li { position: relative; padding: 0.5rem 0 0.5rem 1.6rem; font-size: 1rem; color: var(--dark-gray); line-height: 1.55; }
.problem-list li::before { content: ""; position: absolute; left: 0; top: 0.95rem; width: 9px; height: 1px; background: var(--hrp-green); }
@media (max-width: 800px) { .problem-grid { grid-template-columns: 1fr; } }

/* ════════════════════════════════════════════════
   PRACTICE / LENSES + INSIGHT cards
   ════════════════════════════════════════════════ */
.practice { background: var(--paper-bright); border-bottom: 1px solid var(--border-gray); position: relative; }
.practice .container { position: relative; z-index: 2; }
.practice-head { max-width: 840px; margin: 0 auto 2.5rem; text-align: center; }
.practice-head p { margin-top: 1rem; }
.practice-head p strong { color: var(--ink); font-weight: 600; box-shadow: inset 0 -0.4em 0 rgba(31, 93, 80, 0.14); }
.lenses { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; border: 1px solid var(--border-strong); background: var(--border-strong); }
.lens-card { background: var(--paper-bright); padding: 2.4rem 1.85rem; transition: background var(--duration) var(--ease); }
.lens-card:hover { background: var(--paper); }
.lens-icon {
  width: 56px; height: 56px; margin-bottom: 1.1rem;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%; font-size: 1.5rem; border: 1.5px solid var(--ink);
  background: var(--hrp-green-light); color: var(--hrp-green-dark);
}
.lens-card:nth-child(2) .lens-icon { background: var(--hrp-gold-light); color: var(--hrp-gold-dark); }
.lens-card:nth-child(3) .lens-icon { background: #dbe6ef; color: var(--accent-blue); }
.lens-card:nth-child(4) .lens-icon { background: var(--hrp-eucalyptus-light); color: var(--hrp-green-dark); }
.lens-card h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.lens-card p { font-size: 0.98rem; }
@media (max-width: 800px) { .lenses { grid-template-columns: 1fr; } }

.grounding { margin-top: 2.75rem; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 1.1rem; }
.grounding__chips { display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center; }
.grounding__chip {
  font-family: var(--font-body); font-size: 0.9rem; font-weight: 500; color: var(--dark-gray);
  padding: 0.55rem 1.05rem; background: var(--paper); border: 1px solid var(--border-gray); border-radius: 999px;
}
.grounding__chip i { color: var(--hrp-green); margin-right: 0.45rem; vertical-align: -0.1em; }

/* ── Insight split rows (mixed methods etc.) ── */
.insight-rows { display: flex; flex-direction: column; gap: 1.5rem; position: relative; z-index: 2; }
.insight-row {
  display: grid; grid-template-columns: 64px 1fr; gap: 1.75rem;
  background: var(--paper-bright); border: 1px solid var(--border-strong);
  border-radius: var(--radius-md); padding: 2.25rem 2.25rem;
}
.insight-row__icon {
  width: 64px; height: 64px; display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%; font-size: 1.7rem; border: 1.5px solid var(--ink);
  background: var(--hrp-green-light); color: var(--hrp-green-dark);
}
.insight-row:nth-child(2) .insight-row__icon { background: var(--hrp-gold-light); color: var(--hrp-gold-dark); }
.insight-row:nth-child(3) .insight-row__icon { background: #dbe6ef; color: var(--accent-blue); }
.insight-row:nth-child(4) .insight-row__icon { background: var(--hrp-eucalyptus-light); color: var(--hrp-green-dark); }
.insight-row h3 { margin-bottom: 0.6rem; }
.insight-row p { font-size: 1.02rem; line-height: 1.7; }
@media (max-width: 640px) { .insight-row { grid-template-columns: 1fr; gap: 1rem; } }

/* ── Polaris callout ── */
.polaris {
  margin-top: 1.5rem; position: relative; z-index: 2;
  background: var(--paper-warm); border: 1px solid var(--border-strong);
  border-radius: var(--radius-md); padding: 2.5rem 2.25rem;
}
.polaris .polaris-note { margin-top: 1rem; font-style: italic; font-family: var(--font-quote); font-size: 1.2rem; color: var(--hrp-green-dark); }

/* Polaris brand lockup (authentic North-Star mark) */
.polaris__head {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 1.1rem; padding-bottom: 1.1rem;
  border-bottom: 1px dashed var(--border-gray);
}
.polaris__mark {
  flex-shrink: 0;
  width: 58px; height: 58px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: var(--radius-md);
  background: var(--hrp-green); color: var(--hrp-gold);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
}
.polaris__mark svg { width: 38px; height: 38px; display: block; }
.polaris__id { display: flex; flex-direction: column; line-height: 1.2; }
.polaris__name {
  font-family: var(--font-display);
  font-weight: 800; font-size: 1.5rem; color: var(--ink);
  letter-spacing: -0.01em;
}
.polaris__tag {
  font-family: var(--font-mono);
  font-size: 0.72rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--hrp-eucalyptus); margin-top: 0.2rem;
}
.eco-mark {
  width: 1.05em; height: 1.05em;
  display: inline-block; vertical-align: -0.18em;
  color: var(--hrp-gold); margin-right: 0.15rem;
}

/* ════════════════════════════════════════════════
   CTA STRIP
   ════════════════════════════════════════════════ */
.cta-strip { background: var(--paper-warm); border-bottom: 1px solid var(--border-gray); text-align: center; position: relative; }
.cta-strip .container { position: relative; z-index: 2; max-width: 760px; }
.cta-strip p { margin: 1rem auto 2rem; font-size: 1.1rem; }
.cta-strip .btn { margin: 0 0.4rem; }

/* ════════════════════════════════════════════════
   ANIMATIONS
   ════════════════════════════════════════════════ */
.animate-in { opacity: 0; transform: translateY(20px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.animate-in.visible { opacity: 1; transform: translateY(0); }
.stagger-1 { transition-delay: 0.08s; }
.stagger-2 { transition-delay: 0.16s; }
.stagger-3 { transition-delay: 0.24s; }
.stagger-4 { transition-delay: 0.32s; }
@media (prefers-reduced-motion: reduce) {
  .animate-in { opacity: 1; transform: none; transition: none; }
  .hero__media video { display: none; }
  .btn:active, .partner-name-row a:active, .social-pill:active { scale: 1; transform: none; }
}

/* ════════════════════════════════════════════════════════════════
   RESOURCES — index, article & podcast pages
   ════════════════════════════════════════════════════════════════ */

/* ── "Coming soon" banner ── */
.rl-intro { padding: 2.5rem 0 0; }
.rl-intro + .rl-section { padding-top: 20px; }
.rl-comingsoon { margin: 0; font-size: 1.05rem; line-height: 1.65; color: var(--dark-gray); }
.rl-comingsoon strong { color: var(--ink); }

/* ── Section heads ── */
.rl-section { padding: 3.5rem 0; }
.rl-section + .rl-section { border-top: 1px solid var(--border-gray); }
.rl-section-head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.6rem; }
.rl-section-head h2 { margin: 0; }
.rl-section-head p { margin: 0.35rem 0 0; color: var(--mid-gray); max-width: 640px; }
.rl-viewall { font-family: var(--font-display); font-weight: 600; font-size: 0.95rem; color: var(--hrp-green); text-decoration: none; white-space: nowrap; }
.rl-viewall:hover { color: var(--hrp-green-dark); }

/* ── Card grid ── */
.rl-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.rl-card {
  display: flex;
  flex-direction: column;
  background: var(--paper-bright);
  border: 1px solid var(--border-gray);
  border-radius: var(--radius-md);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease), border-color var(--duration) var(--ease);
}
.rl-card:hover { transform: translateY(-3px); box-shadow: 0 14px 30px -18px rgba(28,28,28,0.35); border-color: var(--hrp-eucalyptus); }
.rl-card__img { aspect-ratio: 16 / 10; width: 100%; object-fit: cover; background: var(--paper-warm); }
.rl-card__body { padding: 1.25rem 1.3rem 1.4rem; display: flex; flex-direction: column; gap: 0.5rem; flex: 1; }
.rl-card__eyebrow { font-family: var(--font-display); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--hrp-eucalyptus); }
.rl-card__title { font-family: var(--font-display); font-weight: 700; font-size: 1.18rem; line-height: 1.25; color: var(--ink); margin: 0; }
.rl-card__meta { font-size: 0.9rem; color: var(--mid-gray); }
.rl-card__summary { font-size: 0.96rem; line-height: 1.55; color: var(--dark-gray); margin: 0.1rem 0 0; }
.rl-card__more { margin-top: auto; padding-top: 0.6rem; font-family: var(--font-display); font-weight: 600; font-size: 0.9rem; color: var(--hrp-green); }

/* ── Programs (stylized brand cards) ── */
.rl-programs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.rl-program {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.1rem;
  padding: 2rem 1.5rem 1.6rem;
  background: var(--paper-bright);
  border: 1px solid var(--border-gray);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: inherit;
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease), border-color var(--duration) var(--ease);
}
.rl-program:hover { transform: translateY(-4px); box-shadow: 0 16px 34px -18px rgba(28,28,28,0.4); border-color: var(--hrp-eucalyptus); }
.rl-program__logo {
  height: 70px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid var(--border-gray);
}
.rl-program__logo img { max-height: 56px; max-width: 190px; width: auto; object-fit: contain; }
.rl-program p { margin: 0; font-size: 0.96rem; color: var(--dark-gray); line-height: 1.55; flex: 1; }
.rl-program__cta { font-family: var(--font-display); font-weight: 600; font-size: 0.9rem; color: var(--hrp-green); display: inline-flex; align-items: center; gap: 0.35rem; }
.rl-program:hover .rl-program__cta { color: var(--hrp-green-dark); }

/* ── More + socials band ── */
.rl-more { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 0.5rem; }
.rl-pill { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.6rem 1.1rem; border: 1px solid var(--border-strong); border-radius: 999px; font-family: var(--font-display); font-weight: 600; font-size: 0.92rem; color: var(--ink); text-decoration: none; background: var(--paper-bright); transition: background var(--duration) var(--ease), color var(--duration) var(--ease); }
.rl-pill:hover { background: var(--hrp-green); color: #fff; border-color: var(--hrp-green); }

/* ════ Article & podcast reading view ════ */
.article-hero { padding: 8.5rem 0 1.5rem; }
.article-hero__crumb { font-family: var(--font-display); font-size: 0.85rem; color: var(--mid-gray); margin-bottom: 1rem; }
.article-hero__crumb a { color: var(--hrp-green); text-decoration: none; }
.article-hero__eyebrow { font-family: var(--font-display); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--hrp-eucalyptus); }
.article-hero h1 { margin: 0.5rem 0 0.75rem; max-width: 18ch; }
.article-hero__meta { color: var(--mid-gray); font-size: 0.98rem; }
.article-hero__meta a { color: var(--hrp-green); }
.article-figure { margin: 1.5rem 0 0; }
.article-figure img { width: 100%; max-height: 460px; object-fit: cover; border-radius: var(--radius-md); border: 1px solid var(--border-gray); }

.article-body { max-width: 720px; margin: 0 auto; padding: 1rem 0 1rem; }
.key-takeaways { background: var(--hrp-green-muted); border: 1px solid var(--hrp-eucalyptus-light); border-radius: var(--radius-md); padding: 1.3rem 1.5rem; margin: 0 0 2.5rem; }
.key-takeaways h2 { font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--hrp-green-dark); margin: 0 0 0.7rem; }
.key-takeaways ul { margin: 0; padding-left: 1.1rem; }
.key-takeaways li { margin: 0.4rem 0; color: var(--dark-gray); }

.article-content { font-family: var(--font-body); font-size: 1.09rem; line-height: 1.78; color: var(--ink); }
.article-content > p { margin: 0 0 1.4rem; }
.article-content h2 { font-family: var(--font-display); font-size: 1.7rem; margin: 2.6rem 0 1rem; color: var(--hrp-green-dark); }
.article-content h3 { font-family: var(--font-display); font-size: 1.3rem; margin: 2rem 0 0.8rem; color: var(--ink); }
.article-content a { color: var(--hrp-green); text-decoration: underline; text-underline-offset: 2px; }
.article-content ul, .article-content ol { margin: 0 0 1.4rem; padding-left: 1.4rem; }
.article-content li { margin: 0.4rem 0; }
.article-content img { width: 100vw; max-width: 100vw; position: relative; left: 50%; transform: translateX(-50%); max-height: 520px; object-fit: cover; margin: 2.5rem 0; border-top: 1px solid var(--border-gray); border-bottom: 1px solid var(--border-gray); }
.article-content blockquote { margin: 2rem 0; padding: 0.4rem 0 0.4rem 1.4rem; border-left: 3px solid var(--hrp-gold); font-family: var(--font-quote); font-size: 1.5rem; font-style: italic; line-height: 1.5; color: var(--hrp-green-dark); }
.article-content blockquote p { margin: 0 0 0.6rem; font-size: 1.5rem; line-height: 1.5; }
.article-content blockquote footer { display: block; font-family: var(--font-body); font-style: normal; font-size: 0.92rem; line-height: 1.5; margin-top: 0.9rem; color: var(--mid-gray); }
.article-content cite { font-style: italic; }
.article-content sup.fn-ref { font-size: 0.7em; line-height: 0; vertical-align: super; }
.article-content sup.fn-ref a { text-decoration: none; color: var(--hrp-green); font-weight: 600; padding: 0 0.1em; }

.references { max-width: 720px; margin: 2.5rem auto 0; padding: 1.8rem 0 0; border-top: 1px solid var(--border-gray); }
.references h2 { font-size: 0.95rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--mid-gray); margin: 0 0 1rem; }
.references ol { margin: 0; padding-left: 1.4rem; }
.references li { margin: 0.55rem 0; font-size: 0.92rem; line-height: 1.55; color: var(--dark-gray); }
.references li a { color: var(--hrp-green); }
.references .ref-title { font-style: italic; }

.article-foot { max-width: 720px; margin: 2.5rem auto 0; padding: 1.6rem 0 0; border-top: 1px solid var(--border-gray); font-size: 0.95rem; color: var(--mid-gray); }
.article-foot a { color: var(--hrp-green); }

/* ── Podcast cards: guest headshot on the left ── */
.rl-card--podcast { flex-direction: row; align-items: stretch; }
.rl-card__shot { width: 40%; max-width: 150px; min-width: 104px; object-fit: cover; object-position: center top; background: var(--paper-warm); border-right: 1px solid var(--border-gray); }
.rl-card--podcast .rl-card__body { padding: 1.1rem 1.2rem 1.2rem; }

/* ── Podcast page: headshot beside the title, no splash ── */
.podcast-head { display: flex; gap: 1.8rem; align-items: center; flex-wrap: wrap; margin-top: 0.5rem; }
.podcast-head__shot { width: 190px; height: 190px; object-fit: cover; object-position: center top; border-radius: var(--radius-md); border: 1px solid var(--border-gray); flex-shrink: 0; }
.podcast-head__info { flex: 1; min-width: 260px; }
.podcast-head__info h1 { margin: 0.4rem 0 0.6rem; }
.podcast-listen { display: inline-flex; align-items: center; gap: 0.5rem; margin: 0.5rem 0 1.5rem; }
.podcast-meta { font-size: 0.98rem; color: var(--mid-gray); margin-bottom: 0.5rem; }
@media (max-width: 560px) { .podcast-head__shot { width: 128px; height: 128px; } }

@media (max-width: 900px) {
  .rl-grid, .rl-programs { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .rl-grid, .rl-programs { grid-template-columns: 1fr; }
  .article-content img { border-radius: 0; }
}
