:root {
  color-scheme: light;
  --bg: #f7f4ef;
  --bg-soft: #efebe4;
  --ink: #161716;
  --muted: #646861;
  --line: #d9d2c7;
  --accent: #2d6d64;
  --accent-dark: #1d4d47;
  --accent-soft: #e5efec;
  --white: #fffdfa;
  --max: 1180px;
  --gutter: clamp(20px, 4vw, 56px);
  --header-h: 74px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 24px);
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 18px 18px, rgba(22, 23, 22, 0.035) 1px, transparent 1.2px),
    var(--bg);
  background-size: 34px 34px, auto;
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

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

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

ul {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  min-height: var(--header-h);
  padding: 0;
  border-bottom: 1px solid transparent;
  background: rgba(247, 244, 239, 0.88);
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, background 180ms ease;
}

.site-header > .container-xl {
  min-height: var(--header-h);
}

.site-header.is-scrolled {
  border-bottom-color: rgba(22, 23, 22, 0.1);
  background: rgba(247, 244, 239, 0.96);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  padding: 0;
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 650;
  letter-spacing: 0;
}

.brand:hover,
.brand:focus-visible {
  color: var(--ink);
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--ink);
  color: var(--ink);
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", serif;
  font-size: 0.84rem;
}

.site-nav .navbar-nav {
  gap: clamp(18px, 2.5vw, 34px);
  color: var(--muted);
  font-size: 0.93rem;
}

.site-nav .nav-link {
  padding: 0;
  color: var(--muted);
  transition: color 160ms ease;
}

.site-nav .nav-link:hover,
.site-nav .nav-link:focus-visible,
.site-nav .nav-link[aria-current="page"] {
  color: var(--ink);
}

.nav-contact {
  padding: 9px 14px !important;
  border: 1px solid var(--line);
  color: var(--ink) !important;
  background: rgba(255, 253, 250, 0.45);
}

.nav-toggle {
  width: 42px;
  height: 42px;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 0;
  background: rgba(255, 253, 250, 0.36);
  color: var(--ink);
  box-shadow: none;
}

.nav-toggle:focus {
  box-shadow: none;
}

.nav-toggle-line {
  display: block;
  width: 17px;
  height: 1px;
  background: currentColor;
}

.container-xl {
  --bs-gutter-x: calc(var(--gutter) * 2);
  max-width: var(--max);
}

@media (max-width: 991.98px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    padding: 14px 0 20px;
    border-top: 1px solid rgba(22, 23, 22, 0.08);
  }

  .site-nav .navbar-nav {
    gap: 0;
  }

  .site-nav .nav-link {
    padding: 14px 0;
    border-bottom: 1px solid rgba(22, 23, 22, 0.08);
    color: var(--ink);
    font-size: 1.04rem;
  }

  .nav-contact {
    margin-top: 14px;
    padding: 14px 16px !important;
    border-color: var(--ink);
    text-align: center;
  }
}

.section {
  padding-top: clamp(56px, 8vw, 112px);
  padding-bottom: clamp(56px, 8vw, 112px);
}

.section-tight {
  padding-top: clamp(32px, 5vw, 64px);
}

.hero {
  min-height: calc(100svh - var(--header-h));
  display: flex;
  align-items: center;
  padding-top: clamp(48px, 7vw, 92px);
  padding-bottom: clamp(32px, 5vw, 64px);
}

.eyebrow,
.section-kicker {
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 720;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2 {
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", serif;
  font-weight: 520;
  letter-spacing: 0;
  text-wrap: balance;
}

h1 {
  max-width: 720px;
  margin-top: 20px;
  font-size: clamp(2.35rem, 4.8vw, 4.5rem);
  line-height: 0.98;
}

h2 {
  font-size: clamp(1.75rem, 3.2vw, 3.3rem);
  line-height: 1.06;
}

h3 {
  font-size: clamp(1.05rem, 1.35vw, 1.3rem);
  line-height: 1.28;
  font-weight: 690;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 760px;
  margin-top: clamp(18px, 3vw, 30px);
  color: #3f423d;
  font-size: clamp(1.02rem, 1.45vw, 1.25rem);
  line-height: 1.5;
}

.page-intro {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.2vw, 1.12rem);
}

.hero-portrait {
  position: relative;
  align-self: end;
  margin: 0;
}

.hero-portrait::before {
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 1px solid var(--line);
  content: "";
}

.hero-portrait img {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid var(--ink);
  filter: saturate(0.82) contrast(1.02);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 1px solid var(--ink);
  font-weight: 680;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

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

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.button-secondary {
  background: rgba(255, 253, 250, 0.48);
  color: var(--ink);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: var(--white);
}

.trusted {
  max-width: 920px;
  margin-top: clamp(24px, 4vw, 40px);
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: clamp(0.98rem, 1.5vw, 1.13rem);
}

.trusted span {
  color: var(--ink);
  font-weight: 650;
}

.section-heading h2 {
  margin-top: 14px;
}

.section-heading {
  max-width: 820px;
  margin-bottom: clamp(34px, 5vw, 64px);
}

.dense-copy,
.matter-content,
.research-content,
.about-copy,
.workshop-copy {
  color: #373a36;
  font-size: clamp(1rem, 1.35vw, 1.17rem);
}

.dense-copy p + p,
.matter-content p + p,
.about-copy p + p,
.workshop-copy p + p {
  margin-top: 20px;
}

.pillar-grid {
  border-top: 1px solid var(--line);
}

.pillar {
  min-height: 300px;
  padding: clamp(26px, 4vw, 44px);
  border-right: 1px solid var(--line);
  background: rgba(255, 253, 250, 0.22);
}

.pillar:last-child {
  border-right: 0;
}

.pillar-number,
.service-label {
  display: block;
  margin-bottom: 42px;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 740;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pillar p {
  margin-top: 18px;
  color: var(--muted);
}

.matter-section {
  border-bottom: 1px solid var(--line);
}

.change-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  margin: 28px 0;
}

.change-list li {
  position: relative;
  padding-left: 20px;
  color: var(--ink);
  font-weight: 610;
}

.change-list li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--accent);
  content: "";
}

.service-list {
  border-top: 1px solid var(--line);
}

.service {
  padding: clamp(30px, 5vw, 58px) 0;
  border-bottom: 1px solid var(--line);
}

.service-label {
  margin-bottom: 16px;
}

.service p {
  max-width: 660px;
  color: #3f423d;
  font-size: clamp(1rem, 1.25vw, 1.12rem);
}

.workshop-panel {
  padding: clamp(34px, 6vw, 76px);
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(229, 239, 236, 0.86), rgba(255, 253, 250, 0.54));
}

.workshop-panel .section-kicker {
  color: var(--accent-dark);
}

.workshop-copy {
  color: #343834;
}

.workshop-details {
  margin: 28px 0 22px;
}

.workshop-detail {
  height: 100%;
  padding: 18px;
  border: 1px solid rgba(22, 23, 22, 0.12);
  background: rgba(255, 253, 250, 0.52);
}

.workshop-detail span {
  display: block;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.workshop-detail p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.workshop-note {
  padding-left: 16px;
  border-left: 3px solid rgba(45, 109, 100, 0.36);
  margin-bottom: 2em;
  margin-top: 1.5em;
}

.workshop-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  align-items: center;
  margin-top: 24px;
}

.workshop-actions .button {
  min-height: 44px;
  padding: 11px 16px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 4px;
  color: var(--accent-dark);
  font-weight: 720;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.research-profile-link {
  margin-top: 22px;
}

.research-intro {
  align-items: start;
  margin-bottom: clamp(48px, 7vw, 88px);
}

.research-intro .research-content {
  padding-top: clamp(48px, 8vw, 112px);
}

.research-topics {
  border-top: 1px solid var(--line);
}

.research-topic {
  align-items: center;
  padding: clamp(24px, 3.5vw, 38px) 0;
  border-bottom: 1px solid var(--line);
}

.research-topic h3 {
  font-size: clamp(1.22rem, 1.55vw, 1.45rem);
  line-height: 1.24;
}

.research-topic-copy p {
  margin-top: 12px;
  max-width: 34ch;
  color: var(--muted);
}

.research-topic-number {
  display: block;
  margin-bottom: 18px;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 740;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.featured-study {
  display: block;
  min-height: 190px;
  padding: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 253, 250, 0.44);
  transition: border-color 160ms ease, background 160ms ease;
}

.featured-study:hover,
.featured-study:focus-visible {
  border-color: var(--accent-dark);
  background: var(--white);
}

.featured-study small,
.featured-study span,
.featured-study em {
  display: block;
}

.featured-study small {
  color: var(--accent-dark);
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 740;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.featured-study span {
  margin-top: 34px;
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", serif;
  font-size: clamp(1.08rem, 1.5vw, 1.32rem);
  font-weight: 540;
  line-height: 1.18;
}

.featured-study em {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.9rem;
  font-style: normal;
}

.study-links {
  display: block;
  margin-top: -12px;
}

.study-links a {
  display: block;
  padding: 14px 0 16px;
  border-bottom: 1px solid rgba(22, 23, 22, 0.12);
  background: transparent;
  transition: color 160ms ease;
}

.study-links a:first-child {
  padding-top: 0;
}

.study-links a:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.study-links span,
.study-links small {
  display: block;
}

.study-links span {
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.35;
}

.study-links small {
  margin-top: 4px;
  max-width: 62ch;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.5;
}

.study-links a:hover,
.study-links a:focus-visible {
  color: var(--accent-dark);
}

.study-links a:hover small,
.study-links a:focus-visible small {
  color: #4e544d;
}

.about-portrait {
  margin: 0;
}

.about-portrait img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  border: 1px solid var(--line);
  filter: saturate(0.86) contrast(1.01);
}

.talks-hero {
  min-height: auto;
}

.talks-portrait {
  align-self: start;
}

.talk-item {
  height: 100%;
  padding: 22px 22px 24px;
  border: 1px solid var(--line);
  background: rgba(255, 253, 250, 0.24);
}

.talk-item h3 {
  margin-top: 14px;
}

.talk-item p {
  margin-top: 14px;
  color: var(--muted);
}

.talk-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 720;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.video-card {
  position: relative;
  display: block;
  margin-top: 24px;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line);
  overflow: hidden;
  background: var(--ink);
}

.video-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(22, 23, 22, 0.1), rgba(22, 23, 22, 0.62));
  content: "";
}

.video-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-card-badge,
.video-card-action {
  position: absolute;
  left: 18px;
  z-index: 1;
}

.video-card-badge {
  top: 18px;
  padding: 7px 10px;
  background: rgba(255, 253, 250, 0.9);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 720;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.video-card-action {
  bottom: 18px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 253, 250, 0.52);
  color: var(--white);
  background: rgba(22, 23, 22, 0.5);
  font-weight: 680;
}

.video-note {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.94rem;
}

.video-note a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.resource-links {
  align-items: stretch;
}

.resource-link {
  display: block;
  height: 100%;
  min-height: 170px;
  padding: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 253, 250, 0.2);
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.resource-link:hover,
.resource-link:focus-visible {
  border-color: var(--accent-dark);
  background: var(--white);
  color: var(--ink);
}

.resource-link span,
.resource-link small {
  display: block;
}

.resource-link span {
  font-size: clamp(1.08rem, 1.5vw, 1.28rem);
  font-weight: 710;
  overflow-wrap: anywhere;
}

.resource-link small {
  margin-top: 44px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.resource-link:hover small,
.resource-link:focus-visible small {
  color: var(--muted);
}

.about-section {
  padding-top: clamp(46px, 7vw, 88px);
}

.about-portrait {
  margin-top: clamp(28px, 5vw, 46px);
  max-width: 420px;
}

.about-portrait img {
  min-height: 236px;
}

.closing {
  padding-top: clamp(24px, 5vw, 58px);
}

.closing-inner {
  max-width: 820px;
  padding-top: clamp(24px, 4vw, 44px);
  border-top: 1px solid var(--line);
}

.talks-closing .closing-inner {
  border-top: 0;
  padding-top: 0;
}

.workshop-hero-page {
  min-height: calc(92svh - var(--header-h));
  display: flex;
  align-items: center;
  padding-top: clamp(52px, 7vw, 96px);
  padding-bottom: clamp(38px, 6vw, 76px);
}

.workshop-hero-card {
  position: relative;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--ink);
  background:
    linear-gradient(160deg, rgba(255, 253, 250, 0.9), rgba(229, 239, 236, 0.74)),
    var(--white);
  box-shadow: 18px 18px 0 rgba(45, 109, 100, 0.12);
}

.workshop-hero-card::before {
  position: absolute;
  top: -12px;
  right: 26px;
  width: 72px;
  height: 12px;
  background: var(--accent);
  content: "";
}

.workshop-hero-card span,
.outcome-card span,
.method-list span,
.format-label {
  display: block;
  color: var(--accent-dark);
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.workshop-hero-card strong {
  display: block;
  margin-top: 18px;
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.35vw, 2.1rem);
  font-weight: 520;
  line-height: 1.1;
}

.workshop-hero-card ul {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.workshop-hero-card li,
.format-card li {
  position: relative;
  padding-left: 22px;
  color: #383c37;
  font-weight: 610;
}

.workshop-hero-card li::before,
.format-card li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--accent);
  content: "";
}

.ai-review-section {
  padding-top: clamp(24px, 5vw, 58px);
}

.evidence-section {
  padding-top: clamp(22px, 5vw, 56px);
}

.evidence-panel,
.ai-review-panel,
.facilitator-panel,
.workshop-closing .closing-inner {
  padding: clamp(34px, 6vw, 72px);
  border: 1px solid var(--line);
  background: rgba(255, 253, 250, 0.34);
}

.evidence-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 32px);
  margin-top: 28px;
}

.evidence-points article {
  padding-top: 16px;
  border-top: 1px solid rgba(22, 23, 22, 0.12);
}

.evidence-points span {
  display: block;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.evidence-points p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.48;
}

.ai-question-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 32px);
  margin-top: 28px;
}

.ai-question-grid div {
  padding-top: 16px;
  border-top: 1px solid rgba(22, 23, 22, 0.12);
}

.ai-question-grid span {
  display: block;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ai-question-grid p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.48;
}

.outcome-grid {
  align-items: stretch;
}

.outcome-card {
  height: 100%;
  min-height: 250px;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid var(--line);
  background: rgba(255, 253, 250, 0.32);
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.outcome-card:hover {
  border-color: rgba(45, 109, 100, 0.42);
  background: rgba(255, 253, 250, 0.62);
  transform: translateY(-2px);
}

.outcome-card h3 {
  margin-top: 44px;
}

.outcome-card p {
  margin-top: 14px;
  color: var(--muted);
}

.method-list {
  display: grid;
  gap: 14px;
}

.method-list article {
  display: grid;
  grid-template-columns: minmax(100px, 0.28fr) 1fr;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(22, 23, 22, 0.12);
}

.method-list article:first-child {
  padding-top: 0;
}

.method-list p {
  color: #373a36;
  font-size: clamp(1rem, 1.25vw, 1.1rem);
}

.format-grid {
  align-items: stretch;
}

.format-card {
  height: 100%;
  padding: clamp(24px, 3.5vw, 34px);
  border: 1px solid var(--line);
  background: rgba(255, 253, 250, 0.32);
}

.format-card-featured {
  border-color: rgba(45, 109, 100, 0.52);
  box-shadow: inset 0 4px 0 rgba(45, 109, 100, 0.42);
}

.format-card h3 {
  margin-top: 28px;
}

.format-card p {
  margin-top: 16px;
  color: var(--muted);
}

.format-card ul {
  display: grid;
  gap: 10px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(22, 23, 22, 0.1);
}

.format-note {
  width: 100%;
  margin-top: 26px;
  padding-top: 16px;
  border-top: 1px solid rgba(22, 23, 22, 0.12);
  color: var(--muted);
  font-size: 0.96rem;
}

.proof-section {
  padding-top: clamp(34px, 6vw, 72px);
}

.testimonial-grid {
  align-items: stretch;
}

.testimonial-card {
  height: 100%;
  margin: 0;
  padding: clamp(24px, 3vw, 32px);
  border: 1px solid var(--line);
  background: rgba(255, 253, 250, 0.32);
}

.testimonial-card p {
  color: var(--ink);
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", serif;
  font-size: clamp(1.08rem, 1.45vw, 1.28rem);
  line-height: 1.35;
}

.testimonial-card footer {
  margin-top: 28px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.workshop-facilitator {
  padding-top: clamp(34px, 6vw, 72px);
}

.facilitator-panel .section-heading {
  margin-bottom: clamp(28px, 4vw, 42px);
}

.facilitator-portrait {
  height: 100%;
  margin-top: 0;
  max-width: none;
}

.facilitator-copy {
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  padding: clamp(24px, 4vw, 42px);
  border-left: 1px solid var(--line);
}

.workshop-closing .closing-inner {
  max-width: none;
  border-top: 1px solid var(--line);
}

.workshop-closing .closing-inner p:not(.section-kicker) {
  max-width: 760px;
}

.workshop-closing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.workshop-closing .workshop-closing-actions .button {
  margin-top: 0;
}

.closing-inner h2 {
  margin-top: 14px;
}

.closing-inner p:not(.section-kicker) {
  max-width: 680px;
  margin-top: 22px;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.5vw, 1.22rem);
}

.closing-inner .button {
  margin-top: 30px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding: 30px var(--gutter);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer div {
  display: flex;
  gap: 22px;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--ink);
}

@media (max-width: 920px) {
  .brand-text {
    display: none;
  }

  .hero-portrait {
    width: min(100%, 320px);
    justify-self: start;
  }

  .resource-link {
    min-height: 150px;
  }

  .resource-link small {
    margin-top: 44px;
  }

  .study-links {
    margin-top: 0;
  }

  .research-intro {
    margin-bottom: clamp(34px, 6vw, 58px);
  }

  .research-intro .research-content {
    padding-top: 0;
  }
}

@media (max-width: 767.98px) {
  .pillar {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .pillar:last-child {
    border-bottom: 0;
  }

  .pillar-number {
    margin-bottom: 26px;
  }
}

@media (max-width: 620px) {
  :root {
    --header-h: 68px;
    --gutter: 20px;
  }

  body {
    background-size: 28px 28px, auto;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .section {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .hero {
    min-height: auto;
    padding-top: 44px;
    padding-bottom: 36px;
  }

  h1 {
    font-size: clamp(2.15rem, 10vw, 3.25rem);
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-portrait {
    width: min(100%, 260px);
  }

  .hero-portrait::before {
    inset: 12px -12px -12px 12px;
  }

  .hero-actions,
  .site-footer,
  .site-footer div {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .trusted {
    margin-top: 46px;
  }

  .change-list {
    grid-template-columns: 1fr;
  }

  .workshop-panel {
    padding: 28px 20px;
  }

  .featured-study {
    min-height: auto;
  }

  .workshop-hero-page {
    min-height: auto;
  }

  .workshop-hero-card {
    box-shadow: 12px 12px 0 rgba(45, 109, 100, 0.12);
  }

  .evidence-panel,
  .ai-review-panel {
    padding: 28px 20px;
  }

  .evidence-points,
  .ai-question-grid {
    grid-template-columns: 1fr;
  }

  .facilitator-panel,
  .workshop-closing .closing-inner {
    padding: 28px 20px;
  }

  .facilitator-copy {
    padding: 22px 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
    background: transparent;
  }

  .method-list article {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
