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

:root {
  --ink: #111111;
  --ink-soft: #252525;
  --paper: #f5f3ee;
  --white: #ffffff;
  --muted: #696965;
  --line: #d9d7d0;
  --red: #f21b22;
  --red-dark: #ca0d13;
  --radius: 22px;
  --shadow: 0 22px 60px rgba(17, 17, 17, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

html,
body {
  font-family: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
  transform: translateY(-180%);
}

.skip-link:focus {
  transform: translateY(0);
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid rgba(242, 27, 34, 0.65);
  outline-offset: 4px;
}

.sr-only,
.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.not-found-page {
  min-height: 70vh;
  padding-top: 180px;
}

.not-found-page h1 {
  max-width: 900px;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.95;
}

.section {
  padding: 112px 0;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  letter-spacing: -0.045em;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.45rem, 5vw, 5.3rem);
  font-weight: 650;
  line-height: 0.98;
}

h3 {
  font-size: clamp(1.5rem, 2.3vw, 2.3rem);
  line-height: 1.08;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid var(--red);
  border-radius: 999px;
  background: var(--red);
  color: var(--white);
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  padding: 14px 23px;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover {
  border-color: var(--red-dark);
  background: var(--red-dark);
  transform: translateY(-2px);
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
  transform: none;
}

.button-large {
  min-height: 58px;
  padding-inline: 30px;
}

.button-small {
  min-height: 42px;
  padding: 10px 18px;
}

.button-inverse {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.button-inverse:hover {
  border-color: var(--paper);
  background: var(--paper);
}

.text-link,
.text-button {
  border: 0;
  background: none;
  color: inherit;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 800;
  padding: 8px 0;
  text-decoration: underline;
  text-decoration-color: rgba(17, 17, 17, 0.3);
  text-underline-offset: 6px;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(17, 17, 17, 0.96);
  color: var(--white);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  width: min(1380px, calc(100% - 40px));
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.brand-mark {
  display: inline-block;
  width: 20px;
  height: 31px;
  background: var(--red);
  clip-path: polygon(36% 0, 100% 0, 63% 100%, 0 100%);
  transform: skewX(-8deg);
}

.brand-word {
  color: var(--white);
  font-size: 1.25rem;
  font-style: italic;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 23px;
}

.primary-nav > a:not(.button) {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.75rem;
  font-weight: 700;
  transition: color 160ms ease;
}

.primary-nav > a:not(.button):hover {
  color: var(--white);
}

.menu-button {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100vh - 74px);
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.hero-copy {
  display: flex;
  align-items: center;
  margin-right: 0;
  padding-block: 90px;
}

.hero-content {
  max-width: 690px;
  padding-right: 70px;
}

.hero h1 {
  margin-bottom: 28px;
  font-size: clamp(3.4rem, 6.35vw, 7.3rem);
  font-weight: 600;
  line-height: 0.88;
}

.hero h1 em {
  color: var(--red);
  font-style: normal;
}

.hero-lead {
  max-width: 630px;
  margin-bottom: 36px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 27px;
}

.hero .text-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration-color: rgba(255, 255, 255, 0.26);
}

.hero-visual {
  position: relative;
  min-width: 0;
}

.hero-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(17, 17, 17, 0.64) 0, rgba(17, 17, 17, 0.03) 33%), linear-gradient(0deg, rgba(17, 17, 17, 0.48), transparent 50%);
  content: "";
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-visual-label {
  position: absolute;
  z-index: 2;
  right: 34px;
  bottom: 30px;
  display: flex;
  gap: 8px;
}

.hero-visual-label span {
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.42);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 10px 14px;
  backdrop-filter: blur(8px);
}

.authority-strip {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

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

.authority-grid span {
  display: flex;
  min-height: 85px;
  align-items: center;
  border-right: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 20px 26px;
  text-transform: uppercase;
}

.authority-grid span:first-child {
  border-left: 1px solid var(--line);
}

.section-heading {
  margin-bottom: 54px;
}

.split-heading {
  display: grid;
  align-items: end;
  gap: 60px;
  grid-template-columns: 1.35fr 0.65fr;
}

.split-heading > p {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.pillar-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, 1fr);
}

.pillar-card {
  position: relative;
  min-height: 470px;
  border-radius: var(--radius);
  overflow: hidden;
  padding: 34px;
}

.pillar-card .pillar-number {
  position: absolute;
  top: 28px;
  right: 30px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.pillar-card h3 {
  margin-top: 150px;
  margin-bottom: 32px;
  font-size: clamp(2.7rem, 4.2vw, 4.8rem);
}

.pillar-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.pillar-card li {
  border-top: 1px solid currentColor;
  font-size: 0.86rem;
  font-weight: 700;
  opacity: 0.8;
  padding: 12px 0;
}

.pillar-dark {
  background: var(--ink);
  color: var(--white);
}

.pillar-red {
  background: var(--red);
  color: var(--white);
}

.pillar-red .eyebrow,
.pillar-dark .eyebrow {
  color: rgba(255, 255, 255, 0.65);
}

.pillar-light {
  border: 1px solid var(--line);
  background: var(--white);
}

.ecosystem-line {
  margin: 34px 0 0;
  font-size: 1.05rem;
  font-weight: 800;
  text-align: center;
}

.continuum-section {
  padding: 90px 0;
  background: var(--ink);
  color: var(--white);
}

.continuum {
  display: grid;
  margin-top: 40px;
  grid-template-columns: repeat(7, 1fr);
}

.continuum-step {
  position: relative;
  display: flex;
  min-height: 142px;
  flex-direction: column;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  padding: 18px 18px 22px;
}

.continuum-step::before {
  position: absolute;
  top: -5px;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--red);
  content: "";
}

.continuum-step span {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.7rem;
  font-weight: 700;
}

.continuum-step strong {
  font-size: 1rem;
  text-transform: uppercase;
}

.continuum-copy {
  max-width: 680px;
  margin: 36px 0 0;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

.discovery-section {
  background: linear-gradient(135deg, #ece9e1 0%, var(--paper) 60%);
}

.discovery-intro,
.quiz-shell {
  border-radius: 30px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.discovery-intro {
  display: grid;
  align-items: center;
  gap: 48px;
  grid-template-columns: 1.15fr 0.85fr;
  padding: clamp(36px, 6vw, 78px);
}

.discovery-intro h2 {
  max-width: 650px;
  margin-bottom: 25px;
}

.discovery-intro > div:first-child > p:last-child {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.8;
}

.discovery-benefits {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}

.discovery-benefits span {
  border-bottom: 1px solid var(--line);
  font-size: 0.83rem;
  font-weight: 750;
  padding: 17px 0;
}

.discovery-intro .button {
  grid-column: 1 / -1;
  justify-self: start;
}

.quiz-shell {
  min-height: 640px;
  overflow: hidden;
  padding: clamp(28px, 5vw, 68px);
}

.quiz-topline {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.quiz-progress {
  height: 4px;
  margin-top: 18px;
  overflow: hidden;
  border-radius: 999px;
  background: #e8e6e0;
}

.quiz-progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--red);
  transition: width 300ms ease;
}

.quiz-question,
.contact-capture,
.result-card {
  max-width: 900px;
  margin: 62px auto 0;
}

.quiz-question h3,
.contact-capture h3,
.result-card h3 {
  max-width: 820px;
  margin-bottom: 18px;
  font-size: clamp(2rem, 4.3vw, 4rem);
}

.quiz-hint,
.contact-capture > p,
.result-notice {
  max-width: 720px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.quiz-options {
  display: grid;
  gap: 10px;
  margin-top: 34px;
  grid-template-columns: repeat(2, 1fr);
}

.quiz-option {
  display: grid;
  min-height: 90px;
  align-items: center;
  gap: 15px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #faf9f6;
  color: var(--ink);
  cursor: pointer;
  grid-template-columns: auto 1fr auto;
  padding: 18px;
  text-align: left;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.quiz-option:hover {
  border-color: #a9a8a2;
  transform: translateY(-2px);
}

.quiz-option.is-selected {
  border-color: var(--red);
  background: #fff3f3;
}

.option-indicator {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border: 1px solid #bebdb7;
  border-radius: 50%;
  color: var(--white);
  font-size: 0.72rem;
}

.is-multi .option-indicator {
  border-radius: 7px;
}

.quiz-option.is-selected .option-indicator {
  border-color: var(--red);
  background: var(--red);
}

.quiz-option strong {
  display: block;
  font-size: 0.92rem;
  line-height: 1.35;
}

.quiz-option small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.option-arrow {
  color: var(--muted);
  font-size: 1.25rem;
}

.quiz-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 30px;
}

.form-grid {
  display: grid;
  gap: 17px;
  margin-top: 34px;
  grid-template-columns: repeat(2, 1fr);
}

.form-grid label,
.form-wide {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.form-grid label > span {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.form-grid input {
  min-height: 54px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #faf9f6;
  padding: 13px 15px;
}

.form-wide {
  grid-column: 1 / -1;
}

.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 23px;
  color: var(--ink-soft);
  cursor: pointer;
  font-size: 0.84rem;
  line-height: 1.55;
}

.consent-row input {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  margin-top: 1px;
  accent-color: var(--red);
}

.safety-note,
.clinical-note {
  border-left: 3px solid var(--red);
  background: #f8f6f1;
  color: var(--muted) !important;
  font-size: 0.78rem !important;
  line-height: 1.55 !important;
  margin-top: 22px;
  padding: 13px 16px;
}

.form-error {
  margin-top: 18px;
  color: #a20b10 !important;
  font-weight: 700;
}

.result-card {
  margin-top: 28px;
}

.result-notice {
  border-radius: 12px;
  background: #f4f2ec;
  padding: 14px 16px;
}

.result-summary {
  display: grid;
  gap: 12px;
  margin: 34px 0;
  grid-template-columns: 0.8fr 1.4fr;
}

.result-summary > div {
  display: flex;
  min-height: 150px;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
}

.result-summary > div span {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.result-summary > div strong {
  font-size: 1.22rem;
  line-height: 1.3;
}

.result-summary .result-primary {
  background: var(--red);
  color: var(--white);
  grid-row: span 2;
}

.result-summary .result-primary span {
  color: rgba(255, 255, 255, 0.68);
}

.result-summary .result-primary strong {
  font-size: clamp(1.8rem, 3.3vw, 3.3rem);
  letter-spacing: -0.045em;
}

.result-why {
  border-top: 1px solid var(--line);
  padding-top: 26px;
}

.result-why > p {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.result-why ul {
  display: grid;
  gap: 10px;
  padding-left: 20px;
  color: var(--muted);
  grid-template-columns: repeat(3, 1fr);
}

.result-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 32px;
}

.why-section {
  background: var(--white);
}

.why-grid {
  display: grid;
  gap: 70px;
  grid-template-columns: 1.15fr 0.85fr;
}

.why-copy {
  padding-top: 40px;
}

.why-copy p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

.process-grid {
  display: grid;
  gap: 14px;
  margin-top: 75px;
  grid-template-columns: repeat(3, 1fr);
}

.process-grid article {
  min-height: 275px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 29px;
}

.process-grid article > span {
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 800;
}

.process-grid article h3 {
  margin: 70px 0 16px;
  font-size: 1.55rem;
}

.process-grid article p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.65;
}

.team-preview {
  background: #e9e6de;
}

.featured-team-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, 1fr);
}

.featured-member {
  border-radius: 16px;
  background: var(--white);
  overflow: hidden;
  transition: transform 180ms ease;
}

.featured-member:hover {
  transform: translateY(-5px);
}

.featured-member-photo {
  position: relative;
  aspect-ratio: 0.84;
  background: #d9d8d5;
  overflow: hidden;
}

.featured-member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.featured-member > div:last-child {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 17px;
}

.featured-member span {
  color: var(--muted);
  font-size: 0.75rem;
}

.final-cta {
  background: var(--red);
  color: var(--white);
  padding: 85px 0;
}

.final-cta .eyebrow {
  color: rgba(255, 255, 255, 0.64);
}

.final-cta-inner {
  display: grid;
  align-items: end;
  gap: 70px;
  grid-template-columns: 1fr auto;
}

.final-cta h2 {
  max-width: 820px;
  font-size: clamp(2.8rem, 5.5vw, 6rem);
}

.site-footer {
  background: var(--ink);
  color: var(--white);
  padding: 80px 0 24px;
}

.footer-grid {
  display: grid;
  gap: 80px;
  grid-template-columns: 1.3fr 0.6fr 0.8fr;
}

.footer-brand {
  margin-bottom: 25px;
}

.footer-statement {
  max-width: 400px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.7;
}

.footer-label {
  color: rgba(255, 255, 255, 0.36);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li {
  margin-bottom: 11px;
}

.footer-links a,
.footer-contact {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.85rem;
}

.footer-links a:hover,
.footer-contact:hover {
  color: var(--white);
}

.footer-contact {
  display: block;
  margin-bottom: 10px;
}

.site-footer address {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
  font-style: normal;
  line-height: 1.75;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 70px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.68rem;
  padding-top: 22px;
}

/* Interior routes */
.page-hero {
  padding: 105px 0 80px;
  background: var(--ink);
  color: var(--white);
}

.page-hero h1 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(3.4rem, 8vw, 8rem);
  font-weight: 620;
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.page-hero p:last-child {
  max-width: 680px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 1rem;
  line-height: 1.75;
}

.page-section {
  padding: 90px 0 120px;
}

.team-page-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, 1fr);
}

.source-note,
.legacy-notice {
  display: grid;
  gap: 10px 24px;
  border-left: 4px solid var(--red);
  margin-bottom: 42px;
  background: #ebe8e0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.65;
  padding: 20px 22px;
}

.source-note strong,
.legacy-notice strong {
  color: var(--ink);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.legacy-notice p {
  margin: 0;
}

.team-card {
  border: 0;
  border-radius: 17px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  overflow: hidden;
  padding: 0;
  text-align: left;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.team-card-button {
  display: block;
  width: 100%;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  padding: 0;
  text-align: left;
}

.team-card:hover {
  box-shadow: 0 14px 40px rgba(17, 17, 17, 0.12);
  transform: translateY(-5px);
}

.team-card-photo {
  position: relative;
  aspect-ratio: 0.86;
  background: #d9d8d4;
  overflow: hidden;
}

.team-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.team-card-photo > span,
.modal-photo > span {
  display: grid;
  height: 100%;
  place-items: center;
  background: linear-gradient(145deg, #d9d7d1, #f2f0eb);
  color: #999690;
  font-size: 2.4rem;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.team-card.is-placeholder {
  border: 1px dashed #bbb8b0;
}

.team-placeholder-photo {
  display: grid;
  height: 100%;
  place-items: center;
  background: linear-gradient(145deg, #d9d7d1, #f2f0eb);
  color: #999690;
  font-size: 2rem;
  font-weight: 800;
}

.team-card-copy {
  min-height: 185px;
  padding: 20px;
}

.team-card-copy h2 {
  margin-bottom: 7px;
  font-size: 1.35rem;
}

.team-card-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.55;
}

.team-role {
  color: var(--red) !important;
  font-size: 0.77rem !important;
  font-weight: 800;
  line-height: 1.5 !important;
}

.expertise-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 20px 0 30px;
}

.expertise-list span {
  border-radius: 999px;
  background: #efede7;
  color: var(--ink-soft);
  font-size: 0.66rem;
  font-weight: 800;
  padding: 8px 11px;
}

.team-card-title {
  min-height: 34px;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.45;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 15px;
}

.chip {
  border-radius: 999px;
  background: #efede7;
  color: #5a5955;
  font-size: 0.62rem;
  font-weight: 700;
  padding: 7px 9px;
}

.modal-backdrop {
  position: fixed;
  z-index: 200;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.78);
  padding: 25px;
}

.team-modal {
  position: relative;
  display: grid;
  width: min(1040px, 100%);
  max-height: calc(100vh - 50px);
  border-radius: 22px;
  background: var(--white);
  grid-template-columns: 0.8fr 1.2fr;
  overflow: hidden;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.4);
}

.modal-photo {
  position: relative;
  min-height: 650px;
  background: #d9d8d4;
}

.modal-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.modal-copy {
  overflow-y: auto;
  padding: 54px 50px;
}

.modal-copy h2 {
  margin-bottom: 10px;
  font-size: 3.3rem;
}

.modal-copy > p {
  color: var(--muted);
  line-height: 1.75;
}

.modal-title {
  color: var(--red) !important;
  font-size: 0.8rem;
  font-weight: 800;
}

.modal-close {
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 18px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
  font-size: 1.1rem;
}

.faq-navigation {
  display: grid;
  gap: 10px;
  margin-bottom: 45px;
  grid-template-columns: repeat(4, 1fr);
}

.faq-search {
  display: grid;
  gap: 10px;
  max-width: 1000px;
  margin: 0 auto 38px;
}

.faq-search label {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.faq-search > div {
  display: flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  overflow: hidden;
}

.faq-search input {
  min-width: 0;
  flex: 1;
  border: 0;
  background: transparent;
  color: var(--ink);
  outline: 0;
  padding: 17px 22px;
}

.faq-search button {
  border: 0;
  background: transparent;
  color: var(--red);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 0 22px;
}

.faq-search > span {
  color: var(--muted);
  font-size: 0.72rem;
}

.faq-empty {
  border-radius: var(--radius);
  background: var(--white);
  padding: 55px;
  text-align: center;
}

.faq-nav-tile {
  display: flex;
  min-height: 110px;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  padding: 17px;
  transition: border-color 160ms ease, transform 160ms ease;
}

.faq-nav-tile:hover {
  border-color: var(--red);
  transform: translateY(-3px);
}

.faq-nav-tile span:first-child {
  color: var(--red);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.faq-nav-tile strong {
  font-size: 0.82rem;
  line-height: 1.35;
}

.faq-nav-tile span:last-child {
  color: var(--muted);
  font-size: 0.64rem;
}

.legacy-remark {
  border-left: 3px solid var(--red);
  margin-bottom: 65px;
  background: #eeeae1;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.55;
  padding: 16px 18px;
}

.faq-family {
  max-width: 1000px;
  margin: 0 auto 76px;
  scroll-margin-top: 110px;
}

.faq-family-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 2px solid var(--ink);
  margin-bottom: 3px;
  padding-bottom: 22px;
}

.faq-family-header h2 {
  max-width: 760px;
  font-size: clamp(2rem, 3.8vw, 3.7rem);
}

.faq-count {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.45;
  list-style: none;
  padding: 22px 5px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  flex: 0 0 auto;
  color: var(--red);
  content: "+";
  font-size: 1.5rem;
  font-weight: 400;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-answer {
  max-width: 850px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.75;
  padding: 0 5px 25px;
}

.faq-answer p:last-child,
.faq-answer ul:last-child {
  margin-bottom: 0;
}

.faq-answer li {
  margin-bottom: 6px;
}

.faq-section-actions {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 26px;
}

.policy-block,
.partners-block {
  max-width: 1000px;
  margin: 90px auto 0;
  scroll-margin-top: 110px;
}

.legal-section,
.partners-section {
  padding: 100px 0;
  background: var(--white);
}

.legal-section + .legal-section {
  border-top: 1px solid var(--line);
}

.legal-grid {
  display: grid;
  gap: 60px;
  grid-template-columns: 0.8fr 1.2fr;
}

.legal-grid h2,
.legal-heading h2 {
  font-size: clamp(2.5rem, 5vw, 5rem);
}

.legal-grid ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.legal-grid li {
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  line-height: 1.7;
  padding: 18px 0;
}

.privacy-section {
  background: #e9e6df;
}

.legal-heading {
  max-width: 760px;
  margin-bottom: 45px;
}

.legal-heading > p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.7;
}

.privacy-accordions {
  max-width: 1000px;
}

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

.policy-block h2,
.partners-block h2 {
  margin-bottom: 22px;
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.policy-card {
  border-radius: 17px;
  background: var(--white);
  padding: 30px;
}

.partner-grid {
  display: grid;
  gap: 8px;
  margin-top: 30px;
  grid-template-columns: repeat(4, 1fr);
}

.partner-grid span {
  display: grid;
  min-height: 95px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 800;
  padding: 14px;
  text-align: center;
}

.contact-layout {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, 1fr);
}

.contact-card {
  min-height: 250px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 30px;
}

.contact-card > .eyebrow {
  color: var(--red);
}

.contact-card > a,
.contact-card > address {
  display: block;
  margin-top: 70px;
  color: var(--ink);
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.45;
}

.contact-card > p:last-child {
  margin-top: 18px;
}

.contact-card > span {
  color: var(--red);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-card h2 {
  margin-top: 80px;
  font-size: 1.65rem;
  line-height: 1.15;
}

.contact-card p,
.contact-card address,
.contact-card a {
  color: var(--muted);
  font-size: 0.9rem;
  font-style: normal;
  line-height: 1.7;
}

.contact-card a:hover {
  color: var(--red);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 65px;
}

.disabled-action {
  display: inline-flex;
  min-height: 45px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #aaa8a2;
  cursor: not-allowed;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 11px 16px;
}

.contact-discovery-cta {
  display: grid;
  align-items: end;
  gap: 45px;
  border-radius: 26px;
  margin-top: 30px;
  background: var(--red);
  color: var(--white);
  grid-template-columns: 1fr auto;
  padding: clamp(32px, 5vw, 62px);
}

.contact-discovery-cta h2 {
  max-width: 700px;
  font-size: clamp(2.3rem, 4.8vw, 4.8rem);
}

@media (max-width: 1120px) {
  .primary-nav {
    gap: 15px;
  }

  .primary-nav > a:not(.button) {
    font-size: 0.68rem;
  }

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

@media (max-width: 900px) {
  .shell {
    width: min(100% - 36px, 720px);
  }

  .section {
    padding: 82px 0;
  }

  .menu-button {
    display: flex;
    width: 46px;
    height: 46px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    background: transparent;
  }

  .menu-button span:not(.sr-only) {
    width: 19px;
    height: 1px;
    background: var(--white);
  }

  .primary-nav {
    position: absolute;
    top: 74px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: var(--ink);
    padding: 16px 20px 24px;
  }

  .primary-nav.is-open {
    display: flex;
  }

  .primary-nav > a:not(.button) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.8rem;
    padding: 16px 5px;
  }

  .primary-nav .button {
    margin-top: 18px;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    min-height: 670px;
    margin: 0 auto;
    padding-block: 70px;
  }

  .hero-content {
    max-width: 760px;
    padding: 0;
  }

  .hero h1 {
    font-size: clamp(3.6rem, 12vw, 6.6rem);
  }

  .hero-visual {
    min-height: 530px;
  }

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

  .authority-grid span:nth-child(3) {
    border-left: 1px solid var(--line);
  }

  .split-heading,
  .why-grid,
  .discovery-intro,
  .final-cta-inner,
  .contact-discovery-cta {
    grid-template-columns: 1fr;
  }

  .legal-grid {
    grid-template-columns: 1fr;
  }

  .pillar-grid,
  .process-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .pillar-card {
    min-height: 410px;
  }

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

  .continuum-step {
    min-height: 120px;
  }

  .discovery-intro .button {
    grid-column: auto;
  }

  .featured-team-grid,
  .faq-navigation,
  .partner-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    gap: 50px;
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }

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

  .team-modal {
    grid-template-columns: 0.85fr 1.15fr;
  }

  .modal-photo {
    min-height: 570px;
  }

  .modal-copy {
    padding: 50px 34px;
  }
}

@media (max-width: 620px) {
  .shell {
    width: calc(100% - 28px);
  }

  h2 {
    font-size: clamp(2.5rem, 13vw, 4rem);
  }

  .section {
    padding: 68px 0;
  }

  .header-inner {
    width: calc(100% - 28px);
  }

  .hero-copy {
    min-height: auto;
    padding-block: 68px;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 16vw, 5rem);
  }

  .hero-lead {
    font-size: 0.95rem;
  }

  .hero-actions,
  .result-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .text-link {
    align-self: flex-start;
  }

  .hero-visual {
    min-height: 380px;
  }

  .hero-visual-label {
    right: 15px;
    bottom: 15px;
    left: 15px;
    justify-content: center;
  }

  .hero-visual-label span {
    font-size: 0.62rem;
    padding: 8px 10px;
  }

  .authority-grid {
    grid-template-columns: 1fr;
  }

  .authority-grid span,
  .authority-grid span:nth-child(3) {
    min-height: 62px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    border-left: 1px solid var(--line);
  }

  .split-heading {
    gap: 30px;
  }

  .pillar-card {
    min-height: 380px;
    padding: 28px;
  }

  .pillar-card h3 {
    margin-top: 130px;
  }

  .continuum {
    grid-template-columns: 1fr;
  }

  .continuum-step {
    min-height: 86px;
    flex-direction: row;
    align-items: end;
  }

  .discovery-intro,
  .quiz-shell {
    border-radius: 20px;
  }

  .discovery-intro {
    gap: 28px;
    padding: 32px 22px;
  }

  .discovery-intro .button,
  .quiz-actions .button,
  .contact-capture .button {
    width: 100%;
  }

  .quiz-shell {
    min-height: 610px;
    padding: 26px 18px;
  }

  .quiz-question,
  .contact-capture {
    margin-top: 42px;
  }

  .quiz-question h3,
  .contact-capture h3,
  .result-card h3 {
    font-size: 2.25rem;
  }

  .quiz-options,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .quiz-option {
    min-height: 82px;
  }

  .form-wide {
    grid-column: auto;
  }

  .quiz-actions {
    align-items: stretch;
    flex-direction: column-reverse;
  }

  .quiz-actions .text-button {
    align-self: flex-start;
  }

  .result-summary {
    grid-template-columns: 1fr;
  }

  .result-summary .result-primary {
    min-height: 210px;
    grid-row: auto;
  }

  .result-why ul {
    grid-template-columns: 1fr;
  }

  .why-copy {
    padding-top: 0;
  }

  .featured-team-grid {
    gap: 10px;
  }

  .featured-member > div:last-child {
    padding: 13px;
  }

  .featured-member span {
    display: none;
  }

  .final-cta {
    padding: 68px 0;
  }

  .footer-grid,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    display: grid;
  }

  .footer-grid > div:first-child {
    grid-column: auto;
  }

  .footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .page-hero {
    padding: 72px 0 60px;
  }

  .page-hero h1 {
    font-size: clamp(3.4rem, 18vw, 5.5rem);
  }

  .page-section {
    padding: 60px 0 85px;
  }

  .team-page-grid,
  .faq-navigation,
  .partner-grid {
    grid-template-columns: 1fr;
  }

  .team-card-copy {
    min-height: 0;
  }

  .modal-backdrop {
    align-items: end;
    padding: 0;
  }

  .team-modal {
    display: block;
    max-height: 92vh;
    border-radius: 20px 20px 0 0;
    overflow-y: auto;
  }

  .modal-photo {
    min-height: 380px;
  }

  .modal-copy {
    overflow: visible;
    padding: 34px 22px 50px;
  }

  .modal-copy h2 {
    font-size: 2.65rem;
  }

  .faq-family-header {
    align-items: start;
    flex-direction: column;
  }

  .faq-item summary {
    font-size: 0.88rem;
    padding: 19px 3px;
  }

  .faq-section-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-discovery-cta {
    gap: 30px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
