:root {
  --ink: #102925;
  --ink-soft: #24433e;
  --forest: #123d36;
  --forest-dark: #092a26;
  --mint: #b9e6cf;
  --mint-bright: #d8f5e6;
  --coral: #ff826a;
  --cream: #f5f1e7;
  --paper: #fcfaf4;
  --line: rgba(16, 41, 37, 0.16);
  --sans: "DM Sans", sans-serif;
  --display: "Manrope", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; }
.sr-only, .skip-link:not(:focus) { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; }
.skip-link:focus { position: fixed; z-index: 1000; top: 1rem; left: 1rem; padding: .75rem 1rem; background: white; color: var(--ink); }

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.15rem clamp(1.25rem, 4vw, 4.5rem);
  border-bottom: 1px solid transparent;
  transition: background .3s, border-color .3s, padding .3s;
}
.site-header.scrolled { padding-top: .75rem; padding-bottom: .75rem; background: rgba(252, 250, 244, .92); border-color: var(--line); backdrop-filter: blur(18px); }
.brand { display: flex; align-items: center; gap: .75rem; font-family: var(--display); font-weight: 700; line-height: 1; }
.brand-mark { display: grid; place-items: center; width: 2.2rem; aspect-ratio: 1; color: var(--cream); background: var(--forest); border-radius: 50%; font-size: .72rem; letter-spacing: -.04em; }
.brand-name span { color: #5d7771; font-weight: 500; }
.site-nav { display: flex; align-items: center; gap: clamp(1rem, 2.2vw, 2rem); font-size: .88rem; font-weight: 600; }
.site-nav a:not(.nav-cta) { position: relative; }
.site-nav a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; bottom: -.35rem; width: 100%; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform .25s; }
.site-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-actions { display: flex; align-items: center; gap: .55rem; }
.nav-cta { padding: .65rem 1rem; border: 1px solid var(--ink); border-radius: 999px; transition: .25s; }
.nav-cta:hover { color: var(--paper); background: var(--ink); }
.nav-cta-book { color: var(--paper); background: var(--forest); border-color: var(--forest); }
.nav-cta-book span { margin-left: .25rem; color: var(--mint); }
.nav-cta-book:hover { background: var(--coral); border-color: var(--coral); }
.menu-toggle { display: none; border: 0; background: transparent; }

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, .75fr);
  grid-template-rows: 1fr auto;
  align-items: center;
  gap: 2rem 6vw;
  padding: 9rem clamp(1.25rem, 7vw, 8rem) 3rem;
  background: var(--cream);
}
.hero-grid { position: absolute; inset: 0; opacity: .45; background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px); background-size: 80px 80px; mask-image: linear-gradient(to bottom, black, transparent 85%); }
.orb { position: absolute; border-radius: 50%; filter: blur(1px); }
.orb-one { width: 28rem; height: 28rem; right: -10rem; top: 8%; background: rgba(185, 230, 207, .65); }
.orb-two { width: 10rem; height: 10rem; left: 48%; top: 16%; border: 1px solid rgba(16, 41, 37, .25); }
.hero-content, .hero-card, .hero-proof { position: relative; z-index: 1; }
.eyebrow { display: flex; align-items: center; gap: .7rem; margin: 0 0 1.5rem; color: var(--ink-soft); font-size: .76rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow span { width: 2.5rem; height: 2px; background: var(--coral); }
h1, h2, h3 { font-family: var(--display); line-height: 1.08; letter-spacing: -.045em; }
h1 { max-width: 900px; margin: 0; font-size: clamp(3.4rem, 7.5vw, 7.8rem); font-weight: 700; }
h1 em, h2 em { color: var(--forest); font-family: Georgia, serif; font-weight: 400; }
.hero-intro { max-width: 680px; margin: 2rem 0; color: var(--ink-soft); font-size: clamp(1.05rem, 1.4vw, 1.28rem); }
.hero-actions { display: flex; align-items: center; gap: 1.75rem; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 1.2rem; min-height: 3.3rem; padding: .75rem 1.3rem; border-radius: 999px; font-weight: 700; transition: transform .25s, background .25s, color .25s; }
.button:hover { transform: translateY(-3px); }
.button-primary { color: var(--paper); background: var(--forest); }
.button-primary:hover { background: var(--ink); }
.text-link { padding-bottom: .25rem; border-bottom: 1px solid; font-weight: 700; }
.text-link span { color: var(--coral); }

.hero-card { justify-self: end; width: min(100%, 390px); padding: 1.2rem; border: 1px solid rgba(16, 41, 37, .18); background: rgba(252, 250, 244, .7); backdrop-filter: blur(12px); box-shadow: 0 30px 80px rgba(16, 41, 37, .12); }
.profile-photo { position: relative; aspect-ratio: 1; overflow: hidden; background: var(--forest); }
.profile-photo::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(to top, rgba(9, 42, 38, .76), transparent 42%); }
.profile-photo img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center 34%; filter: saturate(.86) contrast(1.03); transition: transform .7s cubic-bezier(.22, 1, .36, 1), filter .4s; }
.hero-card:hover .profile-photo img { transform: scale(1.035); filter: saturate(1) contrast(1.02); }
.photo-caption { position: absolute; z-index: 1; right: 1rem; bottom: .9rem; left: 1rem; display: flex; align-items: flex-end; justify-content: space-between; color: white; }
.photo-caption span { font-family: var(--display); font-size: 1rem; font-weight: 700; letter-spacing: -.02em; }
.photo-caption small { color: var(--mint-bright); font-size: .68rem; font-weight: 800; letter-spacing: .14em; }
.profile-meta { display: flex; justify-content: space-between; gap: 1rem; margin: 1.15rem 0; padding-bottom: 1rem; border-bottom: 1px solid var(--line); font-size: .82rem; }
.profile-meta p { margin: 0; color: #668078; }
.profile-meta strong, .profile-meta a { display: block; margin-top: .12rem; font-weight: 700; }
.profile-contact { text-align: right; }
.profile-contact a { transition: color .2s; }
.profile-contact a:hover { color: var(--coral); }
.profile-tags { display: flex; flex-wrap: wrap; gap: .45rem; }
.profile-tags span { padding: .38rem .65rem; color: var(--forest); background: #e6eee7; border-radius: 999px; font-size: .7rem; font-weight: 700; }
.hero-proof { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.hero-proof div { display: flex; align-items: center; gap: 1rem; padding: 1.4rem 1.5rem 0 0; }
.hero-proof div + div { padding-left: 2rem; border-left: 1px solid var(--line); }
.hero-proof strong { font-family: var(--display); font-size: 1.4rem; }
.hero-proof span { max-width: 190px; color: #61766f; font-size: .76rem; line-height: 1.35; }

.section { padding: clamp(5rem, 10vw, 9rem) clamp(1.25rem, 7vw, 8rem); }
.section-label { display: flex; align-items: center; gap: .75rem; min-width: 170px; font-size: .75rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.section-label span { color: var(--coral); }
.section-label-light { color: var(--mint-bright); }
.about { display: grid; grid-template-columns: .3fr 1fr; gap: 6vw; }
.about h2 { max-width: 970px; margin: 0 0 3rem; font-size: clamp(2.4rem, 4.8vw, 5rem); }
.about-columns { display: grid; grid-template-columns: repeat(2, 1fr); gap: 4rem; max-width: 900px; }
.about-columns p { margin: 0; color: #4a625c; font-size: 1.08rem; }
.about-columns p:first-child::first-letter { float: left; margin: .1rem .55rem 0 0; color: var(--forest); font-family: Georgia, serif; font-size: 4rem; line-height: .75; }

.impact { color: var(--cream); background: var(--forest-dark); }
.section-heading { display: grid; grid-template-columns: .3fr 1fr; gap: 6vw; align-items: end; margin-bottom: 4rem; }
.section-heading h2 { max-width: 780px; margin: 0; font-size: clamp(2.5rem, 4.7vw, 4.8rem); }
.impact-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid rgba(216, 245, 230, .2); border-left: 1px solid rgba(216, 245, 230, .2); }
.impact-card { position: relative; min-height: 430px; display: flex; flex-direction: column; justify-content: space-between; padding: 2rem; overflow: hidden; border-right: 1px solid rgba(216, 245, 230, .2); border-bottom: 1px solid rgba(216, 245, 230, .2); }
.impact-card::before { content: ""; position: absolute; inset: 0; background: var(--mint); transform: translateY(101%); transition: transform .45s cubic-bezier(.22, 1, .36, 1); }
.impact-card > * { position: relative; z-index: 1; }
.impact-card:hover::before { transform: translateY(0); }
.impact-card:hover { color: var(--ink); }
.impact-card-featured { background: #164b42; }
.card-index { align-self: flex-end; color: var(--coral); font-size: .75rem; font-weight: 700; }
.card-kicker { margin: 0 0 1rem; color: var(--coral); font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.impact-card h3 { max-width: 530px; margin: 0 0 1.3rem; font-size: clamp(1.7rem, 2.6vw, 2.7rem); }
.impact-card p:last-child { max-width: 570px; margin: 0; color: #a9c0b9; }
.impact-card:hover p:last-child { color: var(--ink-soft); }
.card-line { width: 3rem; height: 3px; margin-top: 2rem; background: var(--coral); }

.kpi-dashboard { color: var(--cream); background: #0d2724; }
.kpi-topline { display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding-bottom: 1.4rem; border-bottom: 1px solid rgba(216, 245, 230, .16); }
.kpi-topline p { margin: 0; color: #8da8a1; font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; }
.kpi-heading { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(260px, .5fr); gap: 6vw; align-items: end; margin: 4rem 0; }
.kpi-heading h2 { max-width: 900px; margin: 0; font-size: clamp(2.7rem, 5vw, 5.4rem); }
.kpi-heading > p { margin: 0; color: #9fb7b1; }
.kpi-command-center { display: grid; grid-template-columns: 1.55fr .7fr; gap: 1rem; }
.overall-score { min-height: 440px; display: grid; grid-template-columns: minmax(260px, .8fr) 1fr; align-items: center; gap: 3rem; padding: clamp(2rem, 4vw, 4rem); overflow: hidden; background: linear-gradient(135deg, #17483f, #10332e); border: 1px solid rgba(216, 245, 230, .14); }
.score-orbit { position: relative; width: min(100%, 340px); aspect-ratio: 1; margin: auto; }
.score-orbit::before, .score-orbit::after { content: ""; position: absolute; border: 1px solid rgba(216, 245, 230, .1); border-radius: 50%; }
.score-orbit::before { inset: -8%; }
.score-orbit::after { inset: -18%; }
.score-orbit svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.score-track, .score-progress, .score-inner { fill: none; }
.score-track { stroke: rgba(216, 245, 230, .12); stroke-width: 12; }
.score-progress { stroke: var(--coral); stroke-width: 12; stroke-linecap: round; stroke-dasharray: 95 100; stroke-dashoffset: 95; transition: stroke-dashoffset 1.6s cubic-bezier(.22, 1, .36, 1); }
.overall-score.visible .score-progress { stroke-dashoffset: 0; }
.score-inner { stroke: rgba(216, 245, 230, .09); stroke-width: 1; stroke-dasharray: 2 4; }
.score-value { position: absolute; inset: 0; display: grid; place-content: center; text-align: center; }
.score-value strong { font-family: var(--display); font-size: clamp(4rem, 7vw, 7rem); line-height: .9; letter-spacing: -.08em; }
.score-value small { margin-top: .8rem; color: var(--mint); font-size: .7rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.status-pill { display: inline-flex; align-items: center; gap: .55rem; width: fit-content; padding: .45rem .8rem; color: var(--mint-bright); background: rgba(185, 230, 207, .1); border: 1px solid rgba(185, 230, 207, .18); border-radius: 999px; font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.status-pill i { width: .45rem; height: .45rem; background: #6ee7a7; border-radius: 50%; box-shadow: 0 0 0 5px rgba(110, 231, 167, .1); }
.score-copy h3 { max-width: 480px; margin: 1.4rem 0; font-size: clamp(2rem, 3vw, 3.5rem); }
.score-copy p { max-width: 530px; margin: 0; color: #abc1bb; }
.kpi-summary-cards { display: grid; grid-template-rows: repeat(3, 1fr); gap: 1rem; }
.kpi-stat { display: flex; align-items: center; gap: 1.2rem; padding: 1.5rem; background: #13332f; border: 1px solid rgba(216, 245, 230, .12); }
.stat-icon { display: grid; place-items: center; width: 3.4rem; aspect-ratio: 1; flex: 0 0 auto; color: var(--coral); border: 1px solid rgba(255, 130, 106, .45); border-radius: 50%; font-family: var(--display); font-size: .72rem; font-weight: 800; }
.kpi-stat strong { font-family: var(--display); font-size: 1.75rem; line-height: 1; }
.kpi-stat p { margin: .35rem 0 0; color: #8ea7a0; font-size: .74rem; line-height: 1.3; }
.domain-heading { display: flex; align-items: end; justify-content: space-between; gap: 2rem; margin: 6rem 0 1.5rem; }
.domain-heading p { margin-bottom: 0; }
.domain-heading > p:last-child { max-width: 480px; color: #819b94; font-size: .75rem; text-align: right; }
.domain-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(216, 245, 230, .15); border-left: 1px solid rgba(216, 245, 230, .15); }
.domain-card { position: relative; min-height: 390px; display: flex; flex-direction: column; padding: 1.6rem; border-right: 1px solid rgba(216, 245, 230, .15); border-bottom: 1px solid rgba(216, 245, 230, .15); transition: background .3s, transform .3s; }
.domain-card:hover { z-index: 1; background: #153b35; transform: translateY(-5px); }
.domain-number { color: #78918b; font-size: .68rem; font-weight: 700; }
.domain-symbol { display: grid; place-items: center; width: 3.5rem; height: 3.5rem; margin: 2rem 0; color: var(--domain-color); border: 1px solid var(--domain-color); border-radius: 50%; font-family: var(--display); font-size: 1.45rem; }
.domain-card h3 { min-height: 3.8rem; margin: 0 0 1rem; font-size: 1.45rem; }
.domain-card > p { margin: 0; color: #91aaa4; font-size: .84rem; }
.domain-meter { height: 3px; margin-top: auto; overflow: hidden; background: rgba(216, 245, 230, .1); }
.domain-meter span { display: block; width: 0; height: 100%; background: var(--domain-color); transition: width 1.2s .15s cubic-bezier(.22, 1, .36, 1); }
.domain-card.visible .domain-meter span { width: var(--domain-width); }
.domain-foot { display: flex; align-items: baseline; justify-content: space-between; gap: .5rem; padding-top: 1rem; }
.domain-foot strong { font-family: var(--display); font-size: 1.5rem; }
.domain-foot span { color: #748e87; font-size: .66rem; }
.kpi-explorer { margin-top: 5rem; padding: clamp(1.5rem, 3vw, 3rem); color: var(--ink); background: var(--cream); }
.explorer-header { display: flex; align-items: end; justify-content: space-between; gap: 2rem; padding-bottom: 2rem; border-bottom: 1px solid var(--line); }
.explorer-header h3 { margin: 0; font-size: clamp(2rem, 3.5vw, 3.5rem); }
.explorer-key { display: flex; align-items: center; gap: .55rem; color: #61766f; font-size: .72rem; }
.explorer-key span { width: 2rem; height: 3px; background: var(--coral); }
.measure { display: grid; grid-template-columns: 38px minmax(220px, 1.2fr) minmax(140px, .8fr) 50px; gap: 1.2rem; align-items: center; min-height: 62px; border-bottom: 1px solid var(--line); }
.measure > span { color: var(--coral); font-size: .68rem; font-weight: 800; }
.measure p { margin: 0; font-size: .82rem; font-weight: 600; }
.measure > div { height: 5px; overflow: hidden; background: rgba(16, 41, 37, .09); border-radius: 4px; }
.measure i { display: block; width: 0; height: 100%; background: linear-gradient(90deg, var(--forest), var(--mint)); border-radius: inherit; transition: width 1s cubic-bezier(.22, 1, .36, 1); }
.kpi-explorer.visible .measure i { width: var(--volume); }
.measure strong { font-family: var(--display); font-size: .9rem; text-align: right; }

.resource-work { background: var(--paper); }
.resource-lead { display: grid; grid-template-columns: .25fr 1fr .45fr; gap: 4vw; align-items: end; margin-bottom: 4rem; }
.resource-lead h2 { max-width: 780px; margin: 0; font-size: clamp(2.6rem, 4.7vw, 5rem); }
.resource-lead > p { margin: 0; color: #5a716b; }
.resource-showcase { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.resource-card { display: grid; grid-template-columns: minmax(180px, .7fr) 1fr; min-height: 430px; overflow: hidden; border: 1px solid var(--line); background: var(--cream); transition: transform .35s, box-shadow .35s; }
.resource-card:hover { transform: translateY(-6px); box-shadow: 0 30px 60px rgba(16, 41, 37, .1); }
.resource-card-featured { grid-column: 1 / -1; grid-template-columns: 1fr 1.25fr; min-height: 500px; }
.resource-preview { position: relative; min-height: 300px; overflow: hidden; padding: 2rem; color: white; }
.resource-preview-map { background: #164b42; }
.preview-grid { position: absolute; inset: -20%; opacity: .22; background-image: linear-gradient(rgba(216,245,230,.45) 1px, transparent 1px), linear-gradient(90deg, rgba(216,245,230,.45) 1px, transparent 1px); background-size: 42px 42px; transform: rotate(12deg); }
.map-pin { position: absolute; width: 1.1rem; height: 1.1rem; background: var(--coral); border: 4px solid rgba(255,255,255,.9); border-radius: 50% 50% 50% 0; transform: rotate(-45deg); box-shadow: 0 5px 18px rgba(0,0,0,.22); }
.pin-one { top: 25%; right: 24%; }
.pin-two { top: 52%; left: 28%; }
.pin-three { right: 38%; bottom: 20%; }
.resource-preview-wellness { background: #5c3277; }
.wellness-rings { position: absolute; inset: 0; }
.wellness-rings i { position: absolute; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; }
.wellness-rings i:nth-child(1) { width: 18rem; height: 18rem; top: -5rem; right: -7rem; }
.wellness-rings i:nth-child(2) { width: 12rem; height: 12rem; top: -2rem; right: -4rem; }
.wellness-rings i:nth-child(3) { width: 5rem; height: 5rem; right: 1rem; bottom: 1rem; background: rgba(255,130,106,.35); border-color: transparent; }
.resource-preview-voices { background: #af4d3d; }
.voice-bars { position: absolute; right: 2rem; bottom: 2rem; display: flex; align-items: flex-end; gap: .5rem; height: 9rem; opacity: .55; }
.voice-bars i { width: 1.2rem; background: var(--cream); border-radius: 1rem 1rem 0 0; }
.voice-bars i:nth-child(1) { height: 38%; }.voice-bars i:nth-child(2) { height: 72%; }.voice-bars i:nth-child(3) { height: 100%; }.voice-bars i:nth-child(4) { height: 58%; }
.preview-title { position: relative; z-index: 1; display: flex; flex-direction: column; height: 100%; justify-content: center; }
.preview-title small { margin-bottom: 1rem; color: rgba(255,255,255,.72); font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.preview-title strong { font-family: var(--display); font-size: clamp(2rem, 3.5vw, 4rem); line-height: .95; letter-spacing: -.055em; }
.preview-edition { position: absolute; z-index: 1; right: 1.5rem; bottom: 1.3rem; font-size: .62rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.resource-content { display: flex; flex-direction: column; padding: clamp(1.6rem, 3vw, 3rem); }
.resource-meta { display: flex; gap: .45rem; flex-wrap: wrap; }
.resource-meta span { padding: .35rem .55rem; color: var(--forest); background: #e1ebe3; border-radius: 999px; font-size: .63rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.resource-content h3 { margin: 2rem 0 1rem; font-size: clamp(1.8rem, 2.5vw, 2.7rem); }
.resource-content > p { margin: 0 0 1.5rem; color: #536a64; }
.resource-topics { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2rem; }
.resource-topics span { padding-right: .7rem; border-right: 1px solid var(--line); color: #6b807a; font-size: .72rem; }
.resource-link { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 1rem; border-top: 1px solid var(--line); font-size: .78rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.resource-link span { color: var(--coral); font-size: 1.1rem; transition: transform .2s; }
.resource-link:hover span { transform: translate(3px, -3px); }
.resource-source { display: flex; align-items: center; justify-content: space-between; gap: 2rem; margin-top: 1rem; padding: 1.5rem 2rem; color: var(--cream); background: var(--forest); }
.resource-source > div { display: flex; align-items: center; gap: 1rem; }
.source-seal { display: grid; place-items: center; width: 2.8rem; aspect-ratio: 1; flex: 0 0 auto; color: var(--forest); background: var(--mint-bright); border-radius: 50%; font-family: var(--display); font-size: .72rem; font-weight: 800; }
.resource-source p { margin: 0; color: #a9c0b9; font-size: .78rem; }
.resource-source p strong { display: block; color: white; }
.resource-source > a { flex: 0 0 auto; padding-bottom: .2rem; border-bottom: 1px solid rgba(255,255,255,.5); font-size: .75rem; font-weight: 700; }

.experience { background: var(--cream); }
.experience-layout { display: grid; grid-template-columns: .3fr 1fr; gap: 6vw; margin-top: 3rem; }
.experience-intro h2 { max-width: 380px; margin: 0 0 1.5rem; font-size: clamp(2.2rem, 3.4vw, 3.7rem); }
.experience-intro p { max-width: 340px; color: #5f756f; }
.role { display: grid; grid-template-columns: 180px 1fr; gap: 2rem; padding-top: 2rem; border-top: 2px solid var(--ink); }
.role-date { color: #627971; font-size: .83rem; font-weight: 600; }
.role-org { margin: 0 0 1.8rem; color: var(--coral); font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.role h3 { margin: 0; font-size: clamp(2rem, 3.5vw, 3.8rem); }
.role-subtitle { margin: .5rem 0 2rem; color: var(--forest); font-size: 1.05rem; font-weight: 700; }
.role ul { list-style: none; margin: 0; padding: 0; }
.role li { position: relative; padding: .9rem 0 .9rem 2rem; border-top: 1px solid var(--line); color: #405852; }
.role li::before { content: "+"; position: absolute; left: .3rem; color: var(--coral); font-weight: 700; }

.education { background: var(--paper); }
.education .section-heading { align-items: start; }
.credential-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 1rem; }
.credential, .membership { position: relative; min-height: 280px; display: flex; flex-direction: column; justify-content: space-between; padding: 2rem; border: 1px solid var(--line); }
.credential-primary { color: var(--cream); background: var(--forest); }
.credential-year { color: var(--coral); font-size: .75rem; font-weight: 700; letter-spacing: .08em; }
.credential p { margin: 0 0 .5rem; color: #678078; font-size: .82rem; font-weight: 700; text-transform: uppercase; }
.credential-primary p { color: var(--mint); }
.credential h3 { max-width: 500px; margin: 0; font-size: clamp(1.8rem, 3vw, 3rem); }
.credential-mark { position: absolute; right: 1.5rem; top: 1rem; color: rgba(216, 245, 230, .09); font-family: var(--display); font-size: clamp(4rem, 9vw, 9rem); font-weight: 800; }
.membership { grid-column: 1 / -1; min-height: auto; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 2rem; align-items: center; background: #eaf0e9; }
.membership > div { display: flex; align-items: center; gap: 1rem; }
.membership span { display: grid; place-items: center; width: 3.5rem; height: 3.5rem; flex: 0 0 auto; color: var(--cream); background: var(--forest); border-radius: 50%; font-size: .68rem; font-weight: 800; }
.membership p { margin: 0; }

.closing { position: relative; overflow: hidden; padding: clamp(6rem, 13vw, 12rem) clamp(1.25rem, 15vw, 16rem); color: var(--cream); background: var(--forest); text-align: center; }
.closing .eyebrow { justify-content: center; color: var(--mint); }
.closing h2 { position: relative; z-index: 1; max-width: 1000px; margin: 0 auto 2rem; font-size: clamp(3rem, 6.5vw, 7rem); }
.closing > p:not(.eyebrow) { position: relative; z-index: 1; max-width: 590px; margin: 0 auto 2.5rem; color: #b8d1ca; font-size: 1.1rem; }
.button-light { position: relative; z-index: 1; color: var(--forest); background: var(--mint-bright); }
.closing-actions { position: relative; z-index: 1; display: flex; align-items: center; justify-content: center; gap: 1.5rem; }
.closing-email { padding-bottom: .25rem; color: var(--mint-bright); border-bottom: 1px solid rgba(216, 245, 230, .55); font-size: .82rem; font-weight: 700; }
.closing-email span { color: var(--coral); }
.closing-ring { position: absolute; width: min(60vw, 700px); aspect-ratio: 1; top: 50%; left: 50%; border: 1px solid rgba(216, 245, 230, .16); border-radius: 50%; transform: translate(-50%, -50%); }
.closing-ring::before, .closing-ring::after { content: ""; position: absolute; inset: 13%; border: 1px solid rgba(216, 245, 230, .12); border-radius: 50%; }
.closing-ring::after { inset: 27%; }

footer { display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding: 2rem clamp(1.25rem, 4vw, 4.5rem); background: var(--paper); font-size: .78rem; }
footer p { color: #657a74; }
footer p a { color: var(--ink); font-weight: 700; }
footer > a:last-child { font-weight: 700; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s cubic-bezier(.22, 1, .36, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
  .site-header { background: rgba(252, 250, 244, .94); }
  .menu-toggle { z-index: 2; display: grid; gap: 6px; width: 2.75rem; height: 2.75rem; place-content: center; }
  .menu-toggle span:not(.sr-only) { display: block; width: 22px; height: 2px; background: var(--ink); transition: .25s; }
  .menu-toggle[aria-expanded="true"] span:nth-last-child(2) { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .site-nav { position: fixed; inset: 0; display: flex; flex-direction: column; justify-content: center; gap: 1.5rem; visibility: hidden; opacity: 0; background: var(--cream); font-family: var(--display); font-size: 1.8rem; transition: opacity .25s, visibility .25s; }
  .site-nav.open { visibility: visible; opacity: 1; }
  .nav-actions { align-items: stretch; flex-direction: column; gap: .75rem; text-align: center; }
  .nav-cta { font-family: var(--sans); font-size: .85rem; }
  .hero { grid-template-columns: 1fr; padding-top: 8rem; }
  .hero-card { justify-self: start; width: min(100%, 420px); }
  .profile-photo { aspect-ratio: 1.25; }
  .hero-proof { grid-template-columns: 1fr; }
  .hero-proof div + div { padding-left: 0; border-left: 0; }
  .about, .section-heading, .experience-layout { grid-template-columns: 1fr; }
  .section-label { margin-bottom: 1.5rem; }
  .impact-grid { grid-template-columns: 1fr; }
  .impact-card { min-height: 360px; }
  .kpi-heading, .kpi-command-center { grid-template-columns: 1fr; }
  .kpi-summary-cards { grid-template-columns: repeat(3, 1fr); grid-template-rows: auto; }
  .overall-score { grid-template-columns: 1fr 1fr; }
  .domain-grid { grid-template-columns: repeat(2, 1fr); }
  .resource-lead { grid-template-columns: 1fr; }
  .resource-card, .resource-card-featured { grid-template-columns: 1fr; }
  .resource-card-featured { grid-column: auto; }
  .resource-preview { min-height: 360px; }
  .credential-grid { grid-template-columns: 1fr; }
  .membership { grid-column: auto; grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .brand-name { font-size: .86rem; }
  h1 { font-size: clamp(3rem, 15vw, 4.5rem); }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 1.2rem; }
  .hero-proof strong { min-width: 85px; }
  .about-columns { grid-template-columns: 1fr; gap: 1.5rem; }
  .role { grid-template-columns: 1fr; gap: 1rem; }
  .kpi-topline, .domain-heading, .explorer-header { align-items: flex-start; flex-direction: column; }
  .domain-heading > p:last-child { text-align: left; }
  .overall-score { grid-template-columns: 1fr; }
  .score-orbit { max-width: 260px; }
  .kpi-summary-cards, .domain-grid { grid-template-columns: 1fr; }
  .measure { grid-template-columns: 28px 1fr 38px; gap: .7rem; padding: .8rem 0; }
  .measure > div { grid-column: 2 / -1; grid-row: 2; }
  .measure strong { grid-column: 3; grid-row: 1; }
  .resource-showcase { grid-template-columns: 1fr; }
  .resource-preview { min-height: 300px; }
  .resource-source { align-items: flex-start; flex-direction: column; }
  .closing-actions { flex-direction: column; }
  footer { align-items: flex-start; flex-direction: column; }
  footer p { margin: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
