:root {
  --green-950: #283618;
  --green-850: #445128;
  --olive: #606c38;
  --cream: #fefae0;
  --paper: #fffdf0;
  --ochre: #dda15e;
  --terracotta: #bc6c25;
  --terracotta-dark: #9f5622;
  --ochre-deep: #c9863b;
  --sage: #737c49;
  --sage-soft: #8a9258;
  --line: rgba(96, 108, 56, 0.18);
  --radius: 8px;
  --shadow-soft: 0 18px 42px rgba(40, 54, 24, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 100px;
}

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

  .testimonial-full {
    transition: none;
  }

  .journey-detail,
  .bio-detail,
  .landing-header {
    transition: none;
  }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--green-950);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.65;
}

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

a {
  color: inherit;
}

:focus-visible {
  outline: 3px solid rgba(221, 161, 94, 0.58);
  outline-offset: 3px;
}

.landing-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(14px, 2vw, 24px);
  padding: 12px clamp(18px, 4vw, 64px);
  border-bottom: 1px solid var(--line);
  background: rgba(254, 250, 224, 0.94);
  backdrop-filter: blur(14px);
  transition: transform 220ms ease;
  will-change: transform;
}

.landing-header.is-hidden {
  transform: translateY(calc(-100% - 8px));
}

.brand,
.landing-nav,
.button {
  text-decoration: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  padding: 6px 16px 6px 7px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green-950), var(--green-850));
  box-shadow: 0 10px 24px rgba(40, 54, 24, 0.18);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  overflow: hidden;
  border: 1px solid rgba(254, 250, 224, 0.7);
  border-radius: 50%;
  background: var(--paper);
  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.22);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
}

.brand-wordmark {
  width: clamp(136px, 15vw, 205px);
  max-height: 46px;
  object-fit: contain;
}

.landing-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: clamp(3px, 0.6vw, 7px);
  font-size: clamp(13px, 1.02vw, 16px);
}

.landing-nav a {
  min-height: 42px;
  padding: 8px clamp(7px, 0.78vw, 12px);
  border-radius: 999px;
  color: var(--green-850);
  text-decoration: none;
}

.landing-nav a:hover,
.landing-nav a:focus-visible {
  background: rgba(96, 108, 56, 0.12);
  outline: none;
}

.landing-nav .nav-cta {
  background: var(--terracotta);
  color: var(--paper);
  font-weight: 800;
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 9px 12px;
  border: 0;
  border-radius: 999px;
  background: var(--green-950);
  color: var(--cream);
  font: inherit;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
}

.menu-toggle-icon,
.menu-toggle-icon::before,
.menu-toggle-icon::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.menu-toggle-icon {
  position: relative;
}

.menu-toggle-icon::before,
.menu-toggle-icon::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-toggle-icon::before {
  top: -6px;
}

.menu-toggle-icon::after {
  top: 6px;
}

@media (min-width: 769px) and (max-width: 1100px) {
  [id] {
    scroll-margin-top: 92px;
  }

  .landing-header {
    gap: 10px;
    padding-inline: 18px;
  }

  .brand {
    gap: 8px;
    min-height: 48px;
    padding-right: 12px;
  }

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

  .brand-wordmark {
    width: 126px;
  }

  .landing-nav {
    flex-wrap: nowrap;
    gap: 3px;
    font-size: 13px;
  }

  .landing-nav a {
    min-height: 38px;
    padding: 7px 7px;
  }
}

.section-band,
.deep-section,
.closing-section {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.section-band {
  padding: clamp(72px, 9vw, 124px) 0;
}

.hero-section {
  position: relative;
  width: 100%;
  min-height: clamp(650px, 78svh, 720px);
  display: grid;
  align-items: start;
  overflow: hidden;
  padding: clamp(38px, 5vw, 64px) max(20px, calc((100vw - 1120px) / 2)) clamp(58px, 7vw, 90px);
  background:
    linear-gradient(90deg, rgba(255, 253, 240, 0.98) 0%, rgba(255, 253, 240, 0.9) 28%, rgba(254, 250, 224, 0.5) 55%, rgba(254, 250, 224, 0.1) 78%, rgba(254, 250, 224, 0) 100%),
    radial-gradient(circle at 18% 22%, rgba(221, 161, 94, 0.16), transparent 34%),
    var(--cream);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: min(590px, 50vw);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--terracotta-dark);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--green-950);
  font-weight: 700;
  line-height: 1.02;
}

h1 {
  font-size: clamp(58px, 9vw, 118px);
}

h2 {
  font-size: clamp(36px, 5.6vw, 68px);
}

h3 {
  font-size: clamp(24px, 3vw, 34px);
}

.hero-claim {
  max-width: 600px;
  margin: 18px 0 0;
  color: var(--green-850);
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 700;
  line-height: 1.22;
}

.hero-definition {
  max-width: 520px;
  margin: 18px 0 0;
  color: var(--terracotta-dark);
  font-size: clamp(19px, 2vw, 24px);
  font-weight: 800;
  line-height: 1.28;
}

.hero-wordmark {
  display: block;
  width: min(520px, 100%);
  height: auto;
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: Arial, sans-serif;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.1;
}

.button.primary {
  background: var(--terracotta);
  color: var(--paper);
}

.button.secondary {
  border-color: rgba(96, 108, 56, 0.24);
  background: rgba(254, 250, 224, 0.72);
  color: var(--green-950);
}

.button:hover,
.button:focus-visible {
  box-shadow: 0 10px 24px rgba(40, 54, 24, 0.12);
}

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

.button.secondary:hover,
.button.secondary:focus-visible {
  border-color: rgba(96, 108, 56, 0.38);
  background: rgba(254, 250, 224, 0.92);
}

.hero-section .button.secondary {
  border-color: transparent;
  background: transparent;
  color: var(--green-850);
  text-decoration: underline;
  text-underline-offset: 5px;
  box-shadow: none;
}

.hero-visual {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  margin: 0;
  overflow: hidden;
  background: transparent;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(255, 253, 240, 0.94) 0%, rgba(255, 253, 240, 0.72) 31%, rgba(255, 253, 240, 0.26) 56%, rgba(255, 253, 240, 0) 78%),
    linear-gradient(0deg, rgba(255, 253, 240, 0.58) 0%, rgba(255, 253, 240, 0) 20%);
  pointer-events: none;
}

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

.presentation-program-block {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
  max-width: 1040px;
  margin: 0 auto;
  padding: clamp(48px, 6vw, 78px) max(20px, calc((100vw - 1040px) / 2));
  color: var(--green-850);
  text-align: center;
}

.presentation-program-item {
  max-width: 420px;
  margin: 0 auto;
}

.presentation-program-item p {
  margin: 0;
}

.presentation-program-item p + p,
.presentation-program-item .button {
  margin-top: 10px;
}

.presentation-program-eyebrow {
  color: var(--terracotta);
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.presentation-program-date {
  color: var(--green-950);
  font-size: clamp(22px, 2.25vw, 32px);
  font-weight: 760;
  line-height: 1.15;
  text-wrap: balance;
}

.presentation-program-item .button {
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.presentation-program-separator {
  width: 1px;
  height: min(150px, 100%);
  background: linear-gradient(180deg, transparent, rgba(188, 108, 37, 0.36), transparent);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 38px;
}

.narrative-section {
  position: relative;
  padding-top: clamp(72px, 8vw, 112px);
  padding-bottom: clamp(82px, 9vw, 128px);
}

.narrative-section .section-heading {
  max-width: 920px;
  margin-bottom: clamp(30px, 4.2vw, 52px);
}

.narrative-section .section-heading h2 {
  font-size: clamp(38px, 4.1vw, 58px);
}

.narrative-flow {
  display: grid;
  gap: clamp(24px, 3.2vw, 40px);
}

.narrative-intro {
  max-width: 820px;
}

.narrative-intro p {
  margin: 0;
  color: var(--green-950);
  font-size: clamp(23px, 3vw, 34px);
  font-weight: 700;
  line-height: 1.18;
}

.narrative-intro p + p {
  max-width: 700px;
  margin-top: 14px;
  color: rgba(40, 54, 24, 0.72);
  font-size: clamp(19px, 1.8vw, 22px);
  font-weight: 400;
  line-height: 1.42;
}

.narrative-copy {
  max-width: 760px;
  color: rgba(40, 54, 24, 0.82);
  font-size: clamp(18px, 1.65vw, 21px);
  line-height: 1.66;
}

.narrative-copy p {
  margin: 0;
}

.narrative-copy p + p {
  margin-top: 20px;
}

.narrative-copy--start {
  margin-left: min(7vw, 86px);
}

.narrative-copy--shifted {
  justify-self: end;
  margin-right: min(5vw, 68px);
}

.narrative-copy--closing {
  max-width: 720px;
  margin-left: min(4vw, 50px);
}

.narrative-statement,
.narrative-soft-emphasis {
  max-width: 760px;
  margin: 0;
  color: var(--green-950);
  font-size: clamp(26px, 3.4vw, 42px);
  font-weight: 700;
  line-height: 1.14;
}

.narrative-statement {
  max-width: 780px;
}

.narrative-soft-emphasis {
  justify-self: end;
  max-width: 600px;
  margin-right: min(6vw, 78px);
  color: var(--terracotta-dark);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 650;
  text-align: left;
}

.narrative-question {
  max-width: 860px;
  padding-top: clamp(6px, 1.2vw, 16px);
}

.narrative-question p {
  max-width: 760px;
  margin: 0;
  color: var(--green-950);
  font-size: clamp(28px, 2.6vw, 36px);
  font-weight: 680;
  line-height: 1.18;
}

.narrative-question span {
  display: block;
  max-width: 640px;
  margin-top: 16px;
  color: rgba(40, 54, 24, 0.76);
  font-size: clamp(18px, 1.75vw, 21px);
  line-height: 1.5;
}

.body-gateway {
  padding-top: clamp(78px, 9vw, 126px);
  padding-bottom: clamp(86px, 10vw, 138px);
}

.body-gateway-flow {
  display: grid;
  gap: clamp(28px, 4vw, 52px);
}

.body-gateway-heading {
  max-width: 780px;
}

.body-gateway-heading h2 {
  margin: 0;
  color: var(--green-950);
  font-size: clamp(38px, 4vw, 56px);
  line-height: 1.06;
}

.body-gateway-copy {
  max-width: 700px;
  color: rgba(40, 54, 24, 0.82);
  font-size: clamp(18px, 1.52vw, 20px);
  line-height: 1.72;
}

.body-gateway-copy p {
  margin: 0;
}

.body-gateway-copy p + p {
  margin-top: 21px;
}

.body-gateway-copy strong {
  color: var(--green-950);
  font-weight: 800;
}

.body-gateway-copy--opening {
  margin-left: min(5vw, 64px);
}

.body-gateway-copy--sensing {
  max-width: 650px;
  margin-left: min(10vw, 124px);
}

.body-gateway-image {
  justify-self: end;
  width: min(420px, 42vw);
  margin: clamp(-20px, -1.4vw, -8px) min(3vw, 38px) clamp(-8px, -0.6vw, -4px) 0;
}

.body-gateway-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(40, 54, 24, 0.08);
}

.body-gateway-copy--movement {
  max-width: 760px;
  margin-left: min(3vw, 42px);
}

.body-gateway-copy--discernment {
  max-width: 720px;
  justify-self: center;
}

.body-gateway-copy--closing {
  max-width: 660px;
  margin-top: clamp(10px, 1.5vw, 20px);
  margin-left: min(7vw, 88px);
}

.body-gateway-pause,
.body-gateway-attention,
.body-gateway-realization,
.body-gateway-information {
  color: var(--green-950);
  text-wrap: balance;
}

.body-gateway-pause {
  max-width: 650px;
  margin-top: clamp(24px, 4vw, 42px);
  margin-bottom: clamp(24px, 4vw, 42px);
  font-size: clamp(20px, 1.9vw, 24px);
  font-weight: 650;
  line-height: 1.45;
}

.body-gateway-statement {
  max-width: 850px;
  margin: clamp(8px, 1vw, 14px) 0 clamp(8px, 1vw, 14px) min(8vw, 98px);
  color: var(--green-950);
  font-size: clamp(27px, 3.15vw, 40px);
  font-weight: 700;
  line-height: 1.12;
  text-wrap: balance;
}

.body-gateway-attention {
  margin-top: clamp(28px, 4.5vw, 54px);
  font-size: clamp(21px, 2.1vw, 27px);
  font-weight: 650;
  line-height: 1.42;
}

.body-gateway-quote {
  max-width: 620px;
  margin: clamp(4px, 1vw, 12px) min(8vw, 96px) clamp(6px, 1vw, 16px) auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.body-gateway-quote p {
  margin: 0;
  color: var(--terracotta-dark);
  font-size: clamp(22px, 2.3vw, 31px);
  font-weight: 650;
  line-height: 1.28;
  text-wrap: balance;
}

.body-gateway-quote footer {
  margin-top: 14px;
  color: rgba(40, 54, 24, 0.62);
  font-size: clamp(15px, 1.35vw, 17px);
  line-height: 1.45;
}

.body-gateway-quote cite {
  font-style: italic;
}

.body-gateway-quote span {
  display: block;
}

.body-gateway-realization {
  max-width: 700px;
  margin-top: clamp(28px, 4vw, 46px);
  color: var(--green-850);
  font-size: clamp(21px, 2vw, 26px);
  font-weight: 650;
  line-height: 1.38;
}

.body-gateway-small-pause {
  margin-top: clamp(26px, 4vw, 46px);
  margin-bottom: clamp(24px, 3.6vw, 40px);
  color: var(--terracotta-dark);
  font-size: clamp(20px, 1.8vw, 24px);
  font-weight: 700;
}

.body-gateway-information {
  max-width: 700px;
  margin-top: clamp(28px, 4vw, 46px);
  margin-bottom: clamp(28px, 4vw, 46px);
  color: var(--green-850);
  font-size: clamp(21px, 1.95vw, 25px);
  font-weight: 650;
  line-height: 1.4;
}

.body-gateway-final {
  max-width: 820px;
  margin: clamp(2px, 0.8vw, 12px) 0 0 min(12vw, 140px);
  color: var(--green-950);
  font-size: clamp(29px, 3.35vw, 46px);
  font-weight: 700;
  line-height: 1.08;
  text-wrap: balance;
}

.wide-copy,
.method-copy {
  max-width: 800px;
  color: rgba(40, 54, 24, 0.8);
  font-size: clamp(20px, 2.4vw, 25px);
}

.image-text-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.76fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}

.image-text-grid figure,
.facilitator-layout figure {
  margin: 0;
}

.image-text-grid img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

blockquote {
  margin: 30px 0 0;
  padding: 24px 28px;
  border-left: 4px solid var(--terracotta);
  border-radius: var(--radius);
  background: rgba(221, 161, 94, 0.14);
}

blockquote p {
  margin: 0;
  color: var(--green-950);
  font-size: clamp(24px, 3.2vw, 38px);
  font-weight: 700;
  line-height: 1.16;
}

.testimonial-voice,
.testimonial-fragment blockquote,
.testimonial-central,
.testimonial-full blockquote {
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.testimonial-voice {
  max-width: 680px;
  color: var(--green-950);
}

.testimonial-voice--participant {
  position: relative;
  padding-left: clamp(18px, 2.4vw, 28px);
}

.testimonial-voice--participant::before {
  content: "UNA VOZ DE VOLVER AL SER";
  display: block;
  width: fit-content;
  margin-bottom: 14px;
  padding-top: 10px;
  border-top: 2px solid rgba(188, 108, 37, 0.72);
  color: rgba(188, 108, 37, 0.86);
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
}

.testimonial-voice p {
  margin: 0;
  color: var(--green-950);
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 650;
  line-height: 1.34;
  text-wrap: balance;
}

.testimonial-voice p + p {
  margin-top: 18px;
}

.testimonial-voice footer,
.testimonial-full footer,
.testimonial-central footer {
  margin-top: 14px;
  color: rgba(40, 54, 24, 0.58);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
}

.testimonial-voice--yolanda {
  width: min(64%, 680px);
  margin: clamp(8px, 1vw, 16px) 0 clamp(4px, 1vw, 12px) min(11vw, 130px);
}

.testimonial-fragment {
  max-width: 720px;
  color: rgba(40, 54, 24, 0.78);
}

.testimonial-fragment--elisenda {
  justify-self: end;
  width: min(64%, 720px);
  margin-right: min(4vw, 52px);
}

.testimonial-fragment--maria {
  max-width: 720px;
  margin-top: clamp(48px, 6vw, 76px);
  margin-left: min(7vw, 88px);
}

.testimonial-transition {
  max-width: 620px;
  margin: 0 0 18px;
  color: rgba(40, 54, 24, 0.62);
  font-size: clamp(16px, 1.25vw, 18px);
  line-height: 1.6;
}

.testimonial-toggle {
  display: inline-flex;
  min-height: 44px;
  margin-top: 18px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--terracotta-dark);
  font: inherit;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.35;
  text-align: left;
  text-decoration: underline;
  text-underline-offset: 0.24em;
  cursor: pointer;
}

.testimonial-toggle:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 6px;
  border-radius: 2px;
}

.testimonial-full {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 260ms ease,
    opacity 220ms ease,
    margin-top 260ms ease;
}

.testimonial-full.is-open {
  max-height: 6200px;
  margin-top: clamp(22px, 3vw, 34px);
  opacity: 1;
}

.testimonial-full blockquote {
  max-width: 700px;
  color: rgba(40, 54, 24, 0.78);
  font-size: clamp(17px, 1.35vw, 19px);
  line-height: 1.72;
}

.testimonial-full p {
  margin: 0;
  color: rgba(40, 54, 24, 0.78);
  font-size: inherit;
  font-weight: 400;
  line-height: inherit;
  text-wrap: initial;
}

.testimonial-full p + p {
  margin-top: 18px;
}

.testimonial-voice--elisenda-second {
  width: min(62%, 660px);
  margin: clamp(34px, 4.8vw, 62px) min(8vw, 98px) clamp(30px, 4.4vw, 56px) auto;
  color: var(--cream);
}

.testimonial-voice--elisenda-second p {
  color: var(--cream);
}

.testimonial-voice--elisenda-second::before {
  border-top-color: rgba(221, 161, 94, 0.88);
  color: rgba(254, 250, 224, 0.78);
}

.testimonial-voice--elisenda-second footer {
  color: rgba(254, 250, 224, 0.74);
}

.testimonial-voice--maria-brief {
  max-width: 620px;
  margin: clamp(34px, 4.5vw, 54px) 0 clamp(32px, 4vw, 48px) min(4vw, 54px);
}

.testimonial-central {
  max-width: 760px;
  margin: clamp(34px, 5vw, 62px) auto 0;
  color: rgba(40, 54, 24, 0.8);
  font-size: clamp(19px, 1.55vw, 21px);
  line-height: 1.72;
}

.participant-voice-intro {
  max-width: 620px;
  margin: clamp(66px, 8vw, 110px) auto 0;
  padding-top: clamp(26px, 4vw, 44px);
  border-top: 1px solid rgba(96, 108, 56, 0.22);
}

.participant-voice-intro p {
  margin: 0;
}

.participant-voice-intro p:first-child {
  color: rgba(188, 108, 37, 0.86);
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.participant-voice-intro p:last-child {
  margin-top: 10px;
  color: var(--green-950);
  font-size: clamp(24px, 2.2vw, 31px);
  font-weight: 700;
  line-height: 1.12;
}

.testimonial-central p {
  margin: 0;
  color: rgba(40, 54, 24, 0.8);
  font-size: inherit;
  font-weight: 400;
  line-height: inherit;
}

.testimonial-central p + p {
  margin-top: 22px;
}

.testimonial-central span {
  display: block;
  margin-top: clamp(28px, 4vw, 48px);
  color: var(--green-950);
  font-size: clamp(26px, 2.7vw, 32px);
  font-weight: 720;
  line-height: 1.22;
  text-wrap: balance;
}

.testimonial-section {
  max-width: none;
  width: 100%;
  margin: 0;
  padding: clamp(82px, 10vw, 138px) max(20px, calc((100vw - 1120px) / 2)) clamp(88px, 10vw, 144px);
  background:
    radial-gradient(circle at 16% 8%, rgba(221, 161, 94, 0.12), transparent 28%),
    linear-gradient(180deg, var(--paper) 0%, var(--cream) 44%, var(--paper) 100%);
}

.testimonial-editorial {
  max-width: 1040px;
  margin: 0 auto;
}

.testimonial-section .section-heading {
  max-width: 760px;
  margin-bottom: clamp(48px, 7vw, 92px);
}

.testimonial-section .section-heading h2 {
  margin: 0;
  color: var(--green-950);
  font-size: clamp(34px, 3.7vw, 52px);
  line-height: 1.06;
  text-wrap: balance;
}

.testimonial-section .section-heading p {
  max-width: 620px;
  margin: 18px 0 0;
  color: rgba(40, 54, 24, 0.72);
  font-size: clamp(18px, 1.55vw, 20px);
  line-height: 1.58;
}

.testimonial-collection {
  display: grid;
  gap: clamp(46px, 5.8vw, 74px);
}

.testimonial-fragment--collection {
  width: min(62%, 700px);
}

.testimonial-fragment--collection-elisenda {
  margin-left: min(5vw, 70px);
}

.testimonial-fragment--collection-matilde {
  width: min(68%, 760px);
  margin-left: min(4vw, 58px);
}

.testimonial-fragment--collection-maria {
  justify-self: end;
  margin-right: min(4vw, 58px);
}

.testimonial-fragment--collection-judith {
  width: min(70%, 780px);
  margin-left: min(7vw, 88px);
}

#testimonios .testimonial-voice--participant {
  padding-left: 0;
}

#testimonios .testimonial-voice--participant::before {
  content: none;
}

.testimonial-voice--yolanda-full {
  width: min(72%, 760px);
  margin-left: min(12vw, 140px);
}

.testimonial-voice--yolanda-full p {
  font-size: clamp(19px, 1.65vw, 22px);
  font-weight: 520;
  line-height: 1.62;
  text-wrap: initial;
}

.testimonial-voice--yolanda-full p:first-child {
  color: var(--green-950);
  font-size: clamp(23px, 2.15vw, 28px);
  font-weight: 680;
  line-height: 1.34;
  text-wrap: balance;
}

.testimonial-voice--judith-body {
  justify-self: start;
  width: min(66%, 700px);
  margin: clamp(6px, 1vw, 12px) 0 clamp(6px, 1vw, 14px) min(7vw, 88px);
}

.testimonial-voice--judith-group {
  max-width: 650px;
  margin-top: clamp(28px, 4vw, 46px);
}

.deep-section {
  max-width: none;
  width: 100%;
  margin: 0;
  padding: clamp(86px, 11vw, 148px) max(20px, calc((100vw - 1120px) / 2));
  background: var(--green-950);
  color: var(--cream);
}

.inner-work-flow {
  display: grid;
  gap: clamp(28px, 4.4vw, 58px);
}

.inner-work-heading {
  max-width: 860px;
}

.inner-work-heading h2 {
  margin: 0;
  color: var(--cream);
  font-size: clamp(38px, 4.1vw, 58px);
  line-height: 1.06;
}

.inner-work-copy {
  max-width: 720px;
  color: rgba(254, 250, 224, 0.8);
  font-size: clamp(18px, 1.5vw, 20px);
  line-height: 1.72;
}

.inner-work-copy p,
.inner-work-instant p,
.inner-work-question-block p {
  margin: 0;
}

.inner-work-copy p + p {
  margin-top: 21px;
}

.inner-work-copy strong {
  color: var(--cream);
  font-weight: 760;
}

.inner-work-copy--opening {
  margin-left: min(5vw, 64px);
}

.inner-work-copy--happening {
  max-width: 780px;
  margin-left: min(10vw, 124px);
}

.inner-work-copy--happening p:first-child {
  color: var(--cream);
  font-size: clamp(22px, 2.25vw, 30px);
  font-weight: 650;
  line-height: 1.34;
  text-wrap: balance;
}

.inner-work-copy--happening p:first-child strong {
  color: var(--ochre);
  font-weight: 760;
}

.inner-work-instant {
  max-width: 560px;
  margin-left: min(3vw, 42px);
  color: rgba(254, 250, 224, 0.82);
  font-size: clamp(19px, 1.7vw, 23px);
  line-height: 1.52;
}

.inner-work-instant p + p {
  margin-top: 12px;
  color: rgba(254, 250, 224, 0.84);
  font-size: clamp(18px, 1.45vw, 20px);
  font-weight: 600;
}

.inner-work-presence {
  max-width: 760px;
  margin: 0 min(5vw, 68px) 0 auto;
  color: var(--cream);
  font-size: clamp(22px, 2.1vw, 28px);
  font-weight: 620;
  line-height: 1.34;
  text-wrap: balance;
}

.inner-work-copy--patterns {
  max-width: 760px;
  justify-self: center;
}

.inner-work-choice {
  max-width: 680px;
  margin: 0 0 0 min(8vw, 96px);
  color: rgba(254, 250, 224, 0.9);
  font-size: clamp(21px, 1.85vw, 25px);
  font-weight: 650;
  line-height: 1.34;
  text-wrap: balance;
}

.inner-work-copy--life {
  max-width: 780px;
  justify-self: end;
}

.inner-work-return {
  color: var(--cream);
  font-size: clamp(20px, 1.85vw, 25px);
  font-weight: 650;
  line-height: 1.42;
  text-wrap: balance;
}

.inner-work-question-block {
  max-width: 760px;
  margin-top: clamp(8px, 1.6vw, 22px);
  margin-left: min(7vw, 88px);
  color: rgba(254, 250, 224, 0.76);
  font-size: clamp(18px, 1.5vw, 20px);
  line-height: 1.68;
}

.inner-work-question {
  max-width: 720px;
  margin-top: clamp(24px, 4vw, 48px);
  margin-bottom: clamp(22px, 3.8vw, 42px);
  color: var(--cream);
  font-size: clamp(31px, 3.65vw, 50px);
  font-weight: 700;
  line-height: 1.1;
  text-wrap: balance;
}

.inner-work-close {
  max-width: 700px;
  margin: 0 min(7vw, 86px) 0 auto;
  color: rgba(254, 250, 224, 0.84);
  font-size: clamp(20px, 1.9vw, 25px);
  font-weight: 500;
  line-height: 1.5;
  text-wrap: balance;
}

.journey-section {
  max-width: none;
  width: 100%;
  margin: 0;
  padding: clamp(82px, 10vw, 140px) max(20px, calc((100vw - 1120px) / 2)) clamp(86px, 11vw, 152px);
  background:
    radial-gradient(circle at 80% 10%, rgba(221, 161, 94, 0.12), transparent 28%),
    linear-gradient(180deg, var(--cream) 0%, var(--paper) 54%, var(--cream) 100%);
}

.journey-intro {
  max-width: 880px;
}

.journey-intro .eyebrow {
  color: var(--terracotta-dark);
  margin-bottom: clamp(18px, 2.5vw, 30px);
  font-size: clamp(17px, 1.35vw, 20px);
  letter-spacing: 0.04em;
}

.journey-intro h2 {
  max-width: 820px;
  margin: 0;
  color: var(--green-950);
  font-size: clamp(42px, 5.1vw, 72px);
  line-height: 1;
}

.journey-intro {
  padding-top: clamp(18px, 3vw, 44px);
}

.journey-lead {
  max-width: 660px;
  margin: clamp(26px, 4vw, 46px) 0 0 min(4vw, 54px);
  color: var(--green-950);
  font-size: clamp(26px, 2.8vw, 38px);
  font-weight: 700;
  line-height: 1.18;
  text-wrap: balance;
}

.journey-intro-copy {
  max-width: 760px;
  margin: clamp(24px, 4vw, 46px) 0 0 min(8vw, 96px);
  color: rgba(40, 54, 24, 0.78);
  font-size: clamp(19px, 1.55vw, 21px);
  line-height: 1.72;
}

.journey-intro-copy p {
  margin: 0;
}

.journey-intro-copy p + p {
  margin-top: 22px;
}

.journey-spiral-line {
  color: var(--green-950);
  font-size: clamp(23px, 2.1vw, 29px);
  font-weight: 700;
  line-height: 1.32;
  text-wrap: balance;
}

.journey-integration-line {
  color: var(--green-850);
  font-weight: 650;
}

.journey-map {
  display: flex;
  justify-content: center;
  margin: clamp(56px, 7vw, 88px) 0 clamp(56px, 7.2vw, 94px);
}

.journey-map picture {
  display: block;
  width: min(100%, 1120px);
}

.journey-map img {
  display: block;
  width: 100%;
  height: auto;
}

.journey-intro-copy--after-map {
  margin-top: 0;
}

.journey-glance {
  max-width: 1040px;
  margin: clamp(58px, 7.5vw, 98px) auto clamp(64px, 8vw, 108px);
}

.journey-glance > .eyebrow {
  max-width: 780px;
  margin-bottom: clamp(26px, 3.8vw, 42px);
  color: rgba(188, 108, 37, 0.86);
}

.journey-glance-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 54px);
  align-items: start;
}

.journey-glance-group {
  position: relative;
  padding-top: clamp(18px, 2.5vw, 28px);
  border-top: 1px solid rgba(96, 108, 56, 0.2);
}

.journey-glance-group img {
  width: clamp(54px, 5vw, 72px);
  height: auto;
  margin-bottom: clamp(16px, 2vw, 24px);
}

.journey-glance-group h3 {
  max-width: 280px;
  margin: 0 0 clamp(18px, 2.4vw, 26px);
  color: var(--green-950);
  font-size: clamp(21px, 2vw, 28px);
  line-height: 1.12;
  text-wrap: balance;
}

.journey-glance-group ol {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.journey-glance-group li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 10px;
  color: rgba(40, 54, 24, 0.78);
  font-size: clamp(16px, 1.22vw, 18px);
  font-weight: 600;
  line-height: 1.35;
}

.journey-glance-group span {
  color: rgba(188, 108, 37, 0.82);
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.journey-toggle,
.bio-toggle {
  display: none;
  align-items: center;
  min-height: 44px;
  margin-top: clamp(18px, 2.5vw, 26px);
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--terracotta-dark);
  font-family: Arial, sans-serif;
  font-size: clamp(14px, 1vw, 16px);
  font-weight: 850;
  line-height: 1.2;
  text-align: left;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.28em;
  cursor: pointer;
}

.disclosure-ready .journey-toggle,
.disclosure-ready .bio-toggle {
  display: inline-flex;
}

.journey-toggle:focus-visible,
.bio-toggle:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 6px;
  border-radius: 2px;
}

.journey-detail,
.bio-detail {
  margin-top: clamp(18px, 2.6vw, 28px);
}

.disclosure-ready .journey-detail,
.disclosure-ready .bio-detail {
  max-height: 0;
  margin-top: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 260ms ease,
    opacity 220ms ease,
    margin-top 260ms ease;
}

.disclosure-ready .journey-detail.is-open,
.disclosure-ready .bio-detail.is-open {
  max-height: 1500px;
  margin-top: clamp(18px, 2.6vw, 28px);
  opacity: 1;
}

.journey-detail p,
.bio-detail p {
  margin: 0;
}

.journey-detail p + p,
.bio-detail p + p {
  margin-top: 20px;
}

.journey-encounters {
  max-width: 980px;
  margin: clamp(64px, 8vw, 108px) auto 0;
}

.journey-encounters-intro {
  max-width: 840px;
}

.journey-encounters-intro .eyebrow {
  color: var(--terracotta-dark);
}

.journey-encounters-intro h3 {
  max-width: 680px;
  margin: 0;
  color: var(--green-950);
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1.03;
  text-wrap: balance;
}

.journey-encounters-copy {
  max-width: 760px;
  margin: clamp(26px, 4vw, 42px) 0 0 min(5vw, 64px);
  color: rgba(40, 54, 24, 0.78);
  font-size: clamp(18px, 1.45vw, 20px);
  line-height: 1.74;
}

.journey-encounters-copy p {
  margin: 0;
}

.journey-encounters-copy p + p {
  margin-top: 20px;
}

.encounter-block {
  position: relative;
  margin-top: clamp(54px, 7vw, 88px);
}

.encounter-block::before {
  content: none;
}

.encounter-block-header {
  display: grid;
  grid-template-columns: clamp(58px, 6vw, 78px) minmax(0, 1fr);
  gap: clamp(16px, 2.4vw, 28px);
  align-items: center;
  max-width: 780px;
  margin-bottom: clamp(22px, 3.8vw, 38px);
}

.encounter-block-header img {
  display: block;
  width: 100%;
  height: auto;
}

.encounter-block-number {
  margin: 0 0 8px;
  color: rgba(188, 108, 37, 0.82);
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.encounter-block h4 {
  max-width: 650px;
  margin: 0;
  color: var(--green-950);
  font-size: clamp(24px, 2.35vw, 33px);
  line-height: 1.12;
  text-wrap: balance;
}

.encounter-item {
  position: relative;
  display: grid;
  grid-template-columns: clamp(54px, 6vw, 78px) minmax(0, 1fr);
  gap: clamp(18px, 3.2vw, 42px);
  max-width: 860px;
  padding: clamp(22px, 3vw, 34px) 0;
}

.encounter-item + .encounter-item {
  margin-top: 0;
}

.encounter-number {
  align-self: start;
  display: block;
  margin: 0.18em 0 0;
  color: rgba(188, 108, 37, 0.72);
  font-family: Arial, sans-serif;
  font-size: clamp(18px, 1.7vw, 24px);
  font-weight: 750;
  letter-spacing: 0.03em;
  line-height: 1;
}

.encounter-copy {
  max-width: 700px;
  color: rgba(40, 54, 24, 0.78);
  font-size: clamp(17px, 1.36vw, 19px);
  line-height: 1.72;
}

.encounter-copy h5 {
  margin: 0 0 clamp(14px, 2vw, 18px);
  color: var(--green-950);
  font-size: clamp(23px, 2.1vw, 30px);
  line-height: 1.12;
  text-wrap: balance;
}

.encounter-brief {
  max-width: 650px;
  margin: 0;
  color: rgba(40, 54, 24, 0.72);
  font-size: clamp(17px, 1.32vw, 19px);
  font-weight: 400;
  line-height: 1.58;
}

.encounter-context {
  margin: -6px 0 clamp(18px, 2.4vw, 24px) !important;
  color: rgba(188, 108, 37, 0.82);
  font-family: Arial, sans-serif;
  font-size: clamp(12px, 1vw, 14px);
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1.35;
  text-transform: uppercase;
}

.encounter-copy p {
  margin: 0;
}

.encounter-question {
  max-width: 640px;
  margin-top: clamp(20px, 2.8vw, 30px) !important;
  color: var(--terracotta-dark);
  font-size: clamp(18px, 1.45vw, 21px);
  font-style: italic;
  font-weight: 520;
  line-height: 1.42;
  text-wrap: balance;
}

.encounter-copy .journey-toggle {
  margin-top: clamp(12px, 1.8vw, 18px);
}

.disclosure-ready .encounter-copy .journey-detail.is-open {
  margin-top: clamp(16px, 2.2vw, 22px);
}

.encounter-block--two {
  max-width: 920px;
  margin-left: auto;
}

.encounter-block--three {
  margin-left: min(4vw, 48px);
}

.journey-residential {
  max-width: 1040px;
  margin: clamp(88px, 10vw, 138px) auto 0;
  padding-top: clamp(44px, 5vw, 68px);
  border-top: 1px solid rgba(188, 108, 37, 0.2);
}

.journey-residential-content {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.72fr);
  grid-template-areas:
    "text image"
    "actions image";
  column-gap: clamp(34px, 5vw, 66px);
  row-gap: clamp(24px, 3vw, 34px);
  align-items: center;
}

.journey-residential-text {
  grid-area: text;
}

.journey-residential-actions {
  grid-area: actions;
  max-width: 700px;
  margin-left: min(3vw, 34px);
}

.journey-residential h3 {
  max-width: 820px;
  margin: 0;
  color: var(--green-950);
  font-size: clamp(26px, 2.7vw, 38px);
  line-height: 1.08;
  text-wrap: balance;
}

.journey-residential-meta {
  margin: clamp(14px, 2vw, 20px) 0 0;
  color: rgba(188, 108, 37, 0.82);
  font-family: Arial, sans-serif;
  font-size: clamp(12px, 1vw, 14px);
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1.35;
  text-transform: uppercase;
}

.journey-residential-copy {
  max-width: 700px;
  margin-top: clamp(28px, 4vw, 48px);
  margin-left: min(3vw, 34px);
  color: rgba(40, 54, 24, 0.78);
  font-size: clamp(18px, 1.42vw, 20px);
  line-height: 1.72;
}

.journey-residential-image {
  grid-area: image;
  margin: 0;
  padding: clamp(8px, 1.4vw, 14px);
  border: 1px solid rgba(96, 108, 56, 0.12);
  border-radius: 10px;
  background: rgba(255, 253, 240, 0.38);
}

.journey-residential-image img {
  width: 100%;
  height: auto;
  border-radius: 7px;
}

.journey-residential-copy p {
  margin: 0;
}

.journey-residential-copy p + p {
  margin-top: 20px;
}

.journey-residential-copy .journey-toggle {
  margin-top: clamp(18px, 2.6vw, 28px);
}

.journey-residential-actions .journey-toggle {
  margin-top: 0;
}

.disclosure-ready .journey-residential-actions .journey-detail.is-open {
  margin-top: clamp(18px, 2.6vw, 28px);
}

.journey-residential-question {
  max-width: 640px;
  margin-top: clamp(24px, 3.8vw, 42px) !important;
  color: var(--terracotta-dark);
  font-size: clamp(24px, 2.4vw, 34px);
  font-style: italic;
  font-weight: 650;
  line-height: 1.22;
  text-wrap: balance;
}

.mid-cta {
  width: 100%;
  margin: 0;
  padding: clamp(58px, 7vw, 92px) max(20px, calc((100vw - 940px) / 2));
  background:
    radial-gradient(circle at 76% 26%, rgba(221, 161, 94, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(254, 250, 224, 0.78), rgba(255, 253, 240, 0.94));
  color: var(--green-950);
  text-align: center;
}

.mid-cta p {
  margin: 0 auto;
}

.direct-contact-copy p:first-child {
  max-width: 720px;
  font-size: clamp(25px, 2.9vw, 38px);
  font-weight: 700;
  line-height: 1.16;
  text-wrap: balance;
}

.direct-contact-copy p + p {
  max-width: 640px;
  margin-top: clamp(16px, 2vw, 22px);
  color: rgba(40, 54, 24, 0.72);
  font-size: clamp(18px, 1.45vw, 20px);
  line-height: 1.62;
}

.direct-contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 22px;
  margin-top: clamp(24px, 3vw, 34px);
}

.direct-contact-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: Arial, sans-serif;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.1;
  text-decoration: none;
}

.direct-contact-button--primary {
  background: var(--terracotta);
  color: var(--paper);
}

.direct-contact-button--secondary {
  border-color: rgba(96, 108, 56, 0.34);
  background: rgba(255, 253, 240, 0.68);
  color: var(--green-950);
}

.direct-contact-button--primary:hover,
.direct-contact-button--primary:focus-visible {
  background: var(--terracotta-dark);
  color: var(--paper);
  box-shadow: 0 10px 24px rgba(40, 54, 24, 0.12);
}

.direct-contact-button--secondary:hover,
.direct-contact-button--secondary:focus-visible {
  border-color: rgba(96, 108, 56, 0.5);
  background: rgba(254, 250, 224, 0.95);
  color: var(--green-950);
  box-shadow: 0 10px 24px rgba(40, 54, 24, 0.1);
}

.program-signup-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(20px, 4vw, 42px);
  width: min(860px, calc(100% - 40px));
  max-width: 860px;
  margin: 0 auto;
  padding: clamp(34px, 4.5vw, 54px) 0;
  color: var(--green-950);
  text-align: left;
}

.program-signup-cta p {
  flex: 1 1 520px;
  min-width: 0;
  max-width: 680px;
  margin: 0;
  color: rgba(40, 54, 24, 0.78);
  font-size: clamp(18px, 1.45vw, 20px);
  line-height: 1.62;
  overflow-wrap: normal;
  word-break: normal;
}

.program-signup-cta .button {
  flex: 0 0 auto;
  margin-top: 0;
  text-decoration: none;
}

.session-timeline p,
.method-notes p,
.info-grid li,
.info-grid dd,
.faq-list p,
.contact-section p,
.closing-section p {
  color: rgba(40, 54, 24, 0.76);
}

.method-layout,
.info-grid,
.contact-layout,
.facilitator-layout,
.testimonial-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: start;
}

.method-notes,
.residential-callout,
.info-grid section,
.testimonial-main,
.testimonial-list blockquote {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(254, 250, 224, 0.54);
}

.method-notes {
  padding: 24px;
}

.method-notes p {
  margin: 0;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
}

.method-notes p:last-child {
  border-bottom: 0;
}

.residential-callout {
  max-width: 760px;
  margin-top: 44px;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(221, 161, 94, 0.16), rgba(254, 250, 224, 0.78)),
    var(--paper);
}

.method-section {
  position: relative;
  max-width: none;
  width: 100%;
  margin: 0;
  overflow: hidden;
  padding: clamp(78px, 9vw, 130px) max(20px, calc((100vw - 1120px) / 2)) clamp(86px, 10vw, 140px);
  background:
    linear-gradient(180deg, var(--cream) 0%, var(--paper) 54%, var(--cream) 100%);
}

.method-editorial {
  position: relative;
  z-index: 1;
  max-width: 1040px;
  margin: 0 auto;
}

.method-thread {
  position: absolute;
  z-index: 0;
  top: clamp(80px, 7vw, 118px);
  right: max(12px, calc((100vw - 1120px) / 2 - 8px));
  width: clamp(250px, 28vw, 410px);
  height: auto;
  object-fit: contain;
  object-position: top center;
  opacity: 0.42;
  pointer-events: none;
}

.method-heading {
  max-width: 560px;
}

.method-heading h2 {
  margin: 0;
  color: var(--green-950);
  font-size: clamp(35px, 4.5vw, 62px);
  line-height: 1;
  text-wrap: balance;
}

.method-copy {
  max-width: 700px;
  margin-top: clamp(34px, 5vw, 66px);
  color: rgba(40, 54, 24, 0.78);
  font-size: clamp(18px, 1.45vw, 20px);
  line-height: 1.74;
}

.method-copy p,
.method-sample p {
  margin: 0;
}

.method-copy p + p,
.method-sample p + p {
  margin-top: 20px;
}

.method-key {
  max-width: 660px;
  margin-top: clamp(34px, 5vw, 58px) !important;
  margin-bottom: clamp(28px, 4vw, 46px) !important;
  color: var(--green-950);
  font-size: clamp(24px, 2.45vw, 34px);
  font-weight: 700;
  line-height: 1.18;
  text-wrap: balance;
}

.method-flow {
  display: grid;
  gap: 0;
  max-width: 720px;
  margin: clamp(30px, 4.4vw, 50px) 0 clamp(34px, 4.8vw, 54px);
  border-top: 1px solid rgba(96, 108, 56, 0.22);
  border-bottom: 1px solid rgba(96, 108, 56, 0.16);
}

.method-step {
  display: grid;
  grid-template-columns: minmax(150px, 0.34fr) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 34px);
  padding: clamp(18px, 2.7vw, 28px) 0;
  border-bottom: 1px solid rgba(96, 108, 56, 0.14);
}

.method-step:last-child {
  border-bottom: 0;
}

.method-step p {
  margin: 0;
}

.method-step-title {
  color: rgba(188, 108, 37, 0.86);
  font-family: Arial, sans-serif;
  font-size: clamp(12px, 1vw, 14px);
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.35;
}

.method-materials {
  margin-top: 18px !important;
  margin-bottom: 24px !important;
  color: rgba(188, 108, 37, 0.86);
  font-family: Arial, sans-serif;
  font-size: clamp(12px, 1vw, 14px);
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.35;
}

.method-return-emphasis {
  color: var(--terracotta-dark);
  font-size: 1.05em;
  font-weight: 760;
  line-height: inherit;
}

.method-sample {
  max-width: 700px;
  margin-top: clamp(58px, 7vw, 94px);
  color: rgba(40, 54, 24, 0.78);
  font-size: clamp(18px, 1.42vw, 20px);
  line-height: 1.72;
}

.method-sample {
  padding-top: clamp(28px, 4vw, 44px);
  border-top: 1px solid rgba(96, 108, 56, 0.18);
}

.method-sample h3 {
  max-width: 620px;
  margin: 0 0 clamp(20px, 3vw, 32px);
  color: var(--green-950);
  font-size: clamp(23px, 2.2vw, 31px);
  line-height: 1.16;
  text-wrap: balance;
}

.method-sample-link {
  display: inline-block;
  margin-top: 24px;
  cursor: default;
  text-underline-offset: 0.24em;
}

.facilitator-layout {
  align-items: center;
}

.image-placeholder {
  display: grid;
  place-items: center;
  min-height: 420px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 70% 22%, rgba(221, 161, 94, 0.18), transparent 32%),
    rgba(96, 108, 56, 0.08);
  color: rgba(40, 54, 24, 0.62);
  font-family: Arial, sans-serif;
  font-weight: 800;
}

.text-link {
  color: var(--terracotta-dark);
  font-weight: 800;
}

.facilitator-section {
  max-width: none;
  width: 100%;
  margin: 0;
  padding: clamp(82px, 10vw, 142px) max(20px, calc((100vw - 1120px) / 2)) clamp(88px, 11vw, 154px);
  background:
    radial-gradient(circle at 88% 12%, rgba(221, 161, 94, 0.12), transparent 28%),
    linear-gradient(180deg, var(--paper) 0%, var(--cream) 48%, var(--paper) 100%);
}

.facilitator-editorial {
  max-width: 1040px;
  margin: 0 auto;
}

.facilitator-heading {
  display: grid;
  grid-template-columns: minmax(350px, 0.58fr) minmax(0, 0.86fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: start;
}

.facilitator-heading h2 {
  max-width: 520px;
  margin: 0;
  color: var(--green-950);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 0.98;
  text-wrap: balance;
}

.facilitator-opening,
.facilitator-story {
  color: rgba(40, 54, 24, 0.78);
  font-size: clamp(18px, 1.45vw, 20px);
  line-height: 1.74;
}

.facilitator-opening {
  max-width: 650px;
  padding-top: clamp(4px, 1.2vw, 18px);
}

.facilitator-opening p,
.facilitator-story p {
  margin: 0;
}

.facilitator-opening p + p,
.facilitator-story > p + p,
.facilitator-flow p + p {
  margin-top: 20px;
}

.facilitator-story {
  max-width: 720px;
  margin: clamp(54px, 7vw, 92px) auto 0;
}

.facilitator-photo {
  width: min(360px, 34vw);
  margin: clamp(36px, 5vw, 64px) 0 clamp(16px, 2.5vw, 28px);
}

.facilitator-photo img {
  width: 100%;
  aspect-ratio: 3 / 4.35;
  height: auto;
  max-height: 620px;
  border-radius: var(--radius);
  object-fit: cover;
  object-position: center center;
  box-shadow: 0 22px 54px rgba(40, 54, 24, 0.12);
}

.facilitator-photo--option-4 {
  margin-left: min(7vw, 88px);
}

.facilitator-moment,
.facilitator-flow,
.facilitator-close,
.facilitator-signature {
  margin-top: clamp(40px, 5.4vw, 68px);
}

.facilitator-flow--accompanying {
  max-width: 680px;
  margin-left: min(6vw, 72px);
}

.facilitator-line,
.facilitator-question {
  color: var(--green-950);
  font-weight: 700;
  line-height: 1.22;
  text-wrap: balance;
}

.facilitator-line {
  max-width: 680px;
  margin-top: clamp(24px, 4vw, 42px) !important;
  font-size: clamp(23px, 2.35vw, 32px);
}

.facilitator-line--quiet {
  max-width: 520px;
  color: var(--terracotta-dark);
  font-size: clamp(22px, 2.1vw, 29px);
  font-style: italic;
  font-weight: 620;
}

.facilitator-line--subtle {
  color: var(--green-850);
  font-size: clamp(21px, 2vw, 27px);
  font-weight: 650;
}

.facilitator-line--strong {
  max-width: 520px;
  color: var(--terracotta-dark);
  font-size: clamp(30px, 3.2vw, 44px);
  font-weight: 720;
  line-height: 1.08;
}

.facilitator-question {
  max-width: 620px;
  margin-top: clamp(24px, 4vw, 44px) !important;
  margin-bottom: clamp(22px, 3.6vw, 38px) !important;
  color: var(--terracotta-dark);
  font-size: clamp(26px, 2.8vw, 38px);
  font-style: italic;
  font-weight: 650;
}

.facilitator-inline-question {
  color: var(--terracotta-dark);
  font-style: italic;
  font-weight: 720;
}

.facilitator-close {
  max-width: 660px;
  margin-left: auto;
  color: var(--green-950);
}

.facilitator-close p {
  font-size: clamp(25px, 2.55vw, 36px);
  font-weight: 690;
  line-height: 1.22;
  text-wrap: balance;
}

.facilitator-close p + p {
  margin-top: 24px;
  color: var(--terracotta-dark);
}

.facilitator-signature {
  max-width: 520px;
  padding-top: clamp(24px, 4vw, 44px);
  border-top: 1px solid rgba(96, 108, 56, 0.22);
}

.facilitator-signature p {
  color: rgba(40, 54, 24, 0.74);
  font-size: 17px;
  line-height: 1.5;
}

.facilitator-signature .facilitator-name {
  color: var(--green-950);
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 760;
}

.facilitator-signature .text-link {
  display: inline-block;
  margin-top: 18px;
  color: var(--terracotta-dark);
  font-size: 16px;
  text-underline-offset: 0.22em;
}

.testimonial-main,
.testimonial-list blockquote {
  margin: 0;
  padding: 26px;
}

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

.info-section {
  max-width: none;
  width: 100%;
  margin: 0;
  padding: clamp(78px, 9vw, 124px) max(20px, calc((100vw - 1120px) / 2));
  background:
    linear-gradient(180deg, var(--paper) 0%, var(--cream) 100%);
}

.info-editorial,
.faq-editorial {
  max-width: 1040px;
  margin: 0 auto;
}

.info-section .section-heading {
  max-width: 680px;
  margin-bottom: clamp(42px, 6vw, 76px);
}

.info-section .section-heading h2,
.faq-section .section-heading h2 {
  font-size: clamp(36px, 4.2vw, 56px);
}

.info-section .section-heading > p:last-child {
  margin: 14px 0 0;
  color: rgba(40, 54, 24, 0.74);
  font-size: clamp(20px, 1.8vw, 24px);
  line-height: 1.35;
}

.info-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1fr);
  gap: clamp(38px, 6vw, 82px);
  align-items: start;
}

.info-primary,
.info-secondary {
  display: grid;
  gap: clamp(28px, 4vw, 42px);
}

.info-block {
  padding-top: clamp(18px, 2.4vw, 26px);
  border-top: 1px solid rgba(96, 108, 56, 0.18);
}

.info-block h3 {
  margin: 0 0 12px;
  color: var(--terracotta-dark);
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.07em;
  line-height: 1.2;
  text-transform: uppercase;
}

.info-block p {
  margin: 0;
  color: rgba(40, 54, 24, 0.78);
  font-size: clamp(18px, 1.45vw, 20px);
  line-height: 1.62;
}

.info-block p + p {
  margin-top: 12px;
}

.info-block a {
  overflow-wrap: anywhere;
}

.info-block strong {
  color: var(--green-950);
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 760;
  line-height: 1.1;
}

.info-block--place strong,
.info-block--program-start strong,
.info-block--presentation strong {
  font-size: clamp(23px, 2.05vw, 30px);
}

.info-block--presentation {
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid rgba(188, 108, 37, 0.22);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(254, 250, 224, 0.86), rgba(221, 161, 94, 0.14));
}

.info-block--program-start {
  border-top-color: rgba(188, 108, 37, 0.32);
}

.info-cta {
  margin-top: 16px;
  color: var(--terracotta-dark);
  font-size: 16px;
  font-weight: 800;
  text-underline-offset: 0.24em;
}

.info-cta.button {
  display: inline-flex;
  color: var(--cream);
  text-decoration: none;
}

.koan-map {
  display: block;
  width: 100%;
  height: clamp(300px, 26vw, 360px);
  margin-top: clamp(18px, 2.6vw, 28px);
  border: 1px solid rgba(96, 108, 56, 0.22);
  border-radius: var(--radius);
  background: var(--cream);
}

.date-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: dates;
}

.date-list li {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 10px;
  align-items: baseline;
  color: rgba(40, 54, 24, 0.78);
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.4;
  counter-increment: dates;
}

.date-list li::before {
  content: counter(dates, decimal-leading-zero);
  color: rgba(188, 108, 37, 0.76);
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.info-block--residential {
  padding-top: clamp(24px, 3.2vw, 34px);
  border-top-color: rgba(188, 108, 37, 0.28);
}

.info-block--residential h3 {
  color: var(--green-850);
}

.info-block--weekly {
  max-width: 640px;
}

.faq-section {
  max-width: none;
  width: 100%;
  margin: 0;
  padding: clamp(80px, 10vw, 132px) max(20px, calc((100vw - 1120px) / 2)) clamp(88px, 11vw, 146px);
  background:
    radial-gradient(circle at 86% 10%, rgba(221, 161, 94, 0.1), transparent 26%),
    linear-gradient(180deg, var(--cream) 0%, var(--paper) 100%);
}

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

.faq-list {
  display: grid;
  gap: 0;
  max-width: 860px;
}

.faq-item {
  border-top: 1px solid rgba(96, 108, 56, 0.18);
}

.faq-item:last-child {
  border-bottom: 1px solid rgba(96, 108, 56, 0.18);
}

.faq-item h3 {
  margin: 0;
}

.faq-question {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  width: 100%;
  padding: 23px 0;
  border: 0;
  background: transparent;
  color: var(--green-950);
  font: inherit;
  font-size: clamp(20px, 1.7vw, 24px);
  font-weight: 700;
  line-height: 1.24;
  text-align: left;
  cursor: pointer;
}

.faq-question::after {
  content: "+";
  color: var(--terracotta-dark);
  font-family: Arial, sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
}

.faq-question[aria-expanded="true"]::after {
  content: "−";
}

.faq-answer {
  max-width: 740px;
  padding: 0 0 clamp(24px, 3.2vw, 34px);
  color: rgba(40, 54, 24, 0.78);
  font-size: clamp(17px, 1.35vw, 19px);
  line-height: 1.68;
}

.faq-answer p {
  margin: 0;
}

.faq-answer p + p {
  margin-top: 16px;
}

.faq-sample-link {
  display: inline-block;
  margin-top: 18px;
  color: var(--terracotta-dark);
  font-size: 16px;
  cursor: default;
  text-underline-offset: 0.24em;
}

.contact-section {
  max-width: none;
  width: 100%;
  margin: 0;
  padding: clamp(78px, 9vw, 124px) max(20px, calc((100vw - 1120px) / 2));
  background:
    linear-gradient(180deg, var(--paper) 0%, var(--cream) 52%, var(--paper) 100%);
}

.contact-editorial {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(340px, 0.86fr);
  gap: clamp(34px, 5vw, 72px) clamp(42px, 7vw, 92px);
  align-items: start;
  max-width: 1040px;
  margin: 0 auto;
}

.contact-intro {
  max-width: 680px;
}

.contact-intro h2 {
  margin: 0;
  font-size: clamp(36px, 4.5vw, 62px);
  line-height: 1.02;
}

.contact-intro p:not(.eyebrow) {
  margin: clamp(22px, 3vw, 32px) 0 0;
  color: rgba(40, 54, 24, 0.78);
  font-size: clamp(19px, 1.55vw, 21px);
  line-height: 1.62;
}

.contact-direct {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-content: start;
  padding-top: clamp(8px, 1vw, 14px);
}

.contact-direct a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: Arial, sans-serif;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.12;
  text-align: center;
  text-decoration: none;
}

.contact-direct a:first-child {
  background: var(--terracotta);
  color: var(--paper);
}

.contact-direct a:last-child {
  border-color: rgba(96, 108, 56, 0.34);
  background: rgba(255, 253, 240, 0.68);
  color: var(--green-950);
}

.contact-direct a:first-child:hover,
.contact-direct a:first-child:focus-visible {
  background: var(--terracotta-dark);
  color: var(--paper);
  box-shadow: 0 10px 24px rgba(40, 54, 24, 0.12);
}

.contact-direct a:last-child:hover,
.contact-direct a:last-child:focus-visible {
  border-color: rgba(96, 108, 56, 0.5);
  background: rgba(254, 250, 224, 0.95);
  color: var(--green-950);
  box-shadow: 0 10px 24px rgba(40, 54, 24, 0.1);
}

.contact-direct span {
  color: var(--terracotta-dark);
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.contact-request {
  grid-column: 2;
  grid-row: 1;
  align-self: start;
  max-width: 760px;
  margin-top: clamp(82px, 7vw, 96px);
}

.signup-invitation {
  grid-column: 1 / -1;
  max-width: 760px;
}

.contact-request summary {
  display: inline-flex;
  cursor: pointer;
  color: var(--terracotta-dark);
  font-size: clamp(19px, 1.6vw, 22px);
  font-weight: 760;
  list-style: none;
  text-decoration: underline;
  text-underline-offset: 0.24em;
}

.contact-request summary::-webkit-details-marker {
  display: none;
}

.request-form {
  display: grid;
  gap: 18px;
  margin-top: clamp(26px, 4vw, 44px);
  padding-top: clamp(26px, 4vw, 44px);
  border-top: 1px solid rgba(96, 108, 56, 0.18);
}

.request-form h3,
.signup-invitation h3 {
  margin: 0;
  color: var(--green-950);
  font-size: clamp(25px, 2.7vw, 37px);
  line-height: 1.12;
}

.request-form label,
.request-form legend {
  color: var(--green-950);
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.35;
  text-transform: uppercase;
}

.request-form label {
  display: grid;
  gap: 8px;
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.request-form .long-field {
  color: rgba(40, 54, 24, 0.78);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  text-transform: none;
}

.request-form input:not([type="radio"]):not([type="checkbox"]),
.request-form textarea {
  width: 100%;
  border: 1px solid rgba(96, 108, 56, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 253, 240, 0.82);
  color: var(--green-950);
  font: inherit;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.45;
  padding: 13px 14px;
}

.request-form input[aria-invalid="true"],
.request-form textarea[aria-invalid="true"] {
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(188, 108, 37, 0.14);
}

.request-form textarea {
  resize: vertical;
}

.request-form fieldset {
  display: grid;
  gap: 10px;
  margin: 4px 0 0;
  padding: 0;
  border: 0;
}

.request-form fieldset label,
.optional-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: rgba(40, 54, 24, 0.78);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  text-transform: none;
}

.request-form input[type="radio"],
.request-form input[type="checkbox"] {
  flex: 0 0 auto;
  margin-top: 0.36em;
  accent-color: var(--terracotta);
}

.privacy-note {
  display: grid;
  gap: 7px;
  margin: 4px 0 0;
  color: rgba(40, 54, 24, 0.68);
  font-size: 15px;
  line-height: 1.5;
}

.privacy-note p,
.form-status {
  margin: 0;
}

.privacy-note a {
  color: var(--terracotta-dark);
  font-weight: 700;
  text-underline-offset: 0.22em;
}

.form-status {
  min-height: 1.5em;
  color: var(--terracotta-dark);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
}

.request-form .button[aria-disabled="true"],
.request-form .button:disabled {
  justify-self: start;
  opacity: 0.58;
  cursor: not-allowed;
}

.signup-invitation {
  margin-top: clamp(18px, 3vw, 34px);
  padding-top: clamp(38px, 5vw, 58px);
  border-top: 1px solid rgba(188, 108, 37, 0.24);
}

.signup-invitation p {
  max-width: 680px;
  margin: 18px 0 0;
  color: rgba(40, 54, 24, 0.78);
  font-size: clamp(18px, 1.45vw, 20px);
  line-height: 1.66;
}

.signup-invitation .button {
  display: inline-block;
  margin-top: 24px;
  font-size: 17px;
  text-decoration: none;
}

.floating-contact {
  position: fixed;
  right: clamp(14px, 2vw, 24px);
  bottom: clamp(14px, 2vw, 24px);
  z-index: 40;
  display: grid;
  justify-items: end;
  gap: 10px;
  pointer-events: none;
}

.floating-contact-toggle,
.floating-contact-close,
.floating-contact-panel a {
  pointer-events: auto;
}

.floating-contact-toggle {
  order: 2;
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid rgba(254, 250, 224, 0.28);
  border-radius: 999px;
  background: rgba(68, 81, 40, 0.94);
  color: var(--paper);
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.1;
  box-shadow: 0 8px 22px rgba(40, 54, 24, 0.16);
  cursor: pointer;
}

.floating-contact-panel {
  order: 1;
  display: grid;
  gap: 10px;
  width: min(320px, calc(100vw - 28px));
  padding: 18px;
  border: 1px solid rgba(96, 108, 56, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 253, 240, 0.97);
  color: var(--green-950);
  box-shadow: 0 12px 28px rgba(40, 54, 24, 0.14);
}

.floating-contact-panel[hidden] {
  display: none;
}

.floating-contact-close {
  justify-self: end;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(40, 54, 24, 0.66);
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.floating-contact-title,
.floating-contact-text {
  margin: 0;
  color: var(--green-950);
}

.floating-contact-title {
  max-width: 260px;
  font-size: 19px;
  font-weight: 760;
  line-height: 1.18;
}

.floating-contact-text {
  color: rgba(40, 54, 24, 0.72);
  font-size: 15px;
  line-height: 1.48;
}

.floating-contact-panel a {
  display: block;
  padding: 11px 12px;
  border-radius: 999px;
  background: rgba(96, 108, 56, 0.11);
  color: var(--green-950);
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: 850;
  text-align: center;
  text-decoration: none;
}

.floating-contact-panel a:hover,
.floating-contact-panel a:focus-visible {
  background: rgba(188, 108, 37, 0.16);
  color: var(--terracotta-dark);
}

.floating-contact-toggle:focus-visible,
.floating-contact-close:focus-visible {
  outline: 3px solid rgba(188, 108, 37, 0.36);
  outline-offset: 3px;
}

.closing-section {
  max-width: none;
  width: 100%;
  margin: 0;
  padding: clamp(96px, 11vw, 156px) max(20px, calc((100vw - 1120px) / 2)) clamp(84px, 10vw, 138px);
  background:
    radial-gradient(circle at 14% 10%, rgba(221, 161, 94, 0.13), transparent 28%),
    radial-gradient(circle at 86% 62%, rgba(96, 108, 56, 0.1), transparent 30%),
    linear-gradient(180deg, rgba(254, 250, 224, 0.96) 0%, rgba(250, 244, 214, 0.78) 56%, rgba(255, 253, 240, 0.98) 100%);
}

.closing-editorial {
  max-width: 1120px;
  margin: 0 auto;
}

.closing-kicker {
  margin: 0;
  color: var(--green-950);
  font-size: clamp(54px, 7.2vw, 104px);
  font-weight: 760;
  letter-spacing: 0.015em;
  line-height: 0.94;
}

.closing-body {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.72fr);
  gap: clamp(38px, 6vw, 82px);
  align-items: center;
  margin-top: clamp(34px, 4.8vw, 64px);
}

.closing-copy {
  max-width: 660px;
  color: rgba(40, 54, 24, 0.78);
  font-size: clamp(20px, 1.55vw, 22px);
  line-height: 1.68;
}

.closing-copy p,
.closing-question p,
.closing-final p {
  margin: 0;
}

.closing-copy p + p {
  margin-top: 14px;
}

.closing-image {
  margin: 0;
}

.closing-image img {
  display: block;
  width: 100%;
  max-height: 430px;
  object-fit: cover;
  object-position: center;
  border-radius: 18px;
}

.closing-final {
  max-width: 820px;
  margin-top: clamp(58px, 7vw, 96px);
}

.closing-name {
  margin: 0;
  color: var(--green-950);
  font-size: clamp(42px, 5.8vw, 78px);
  font-weight: 760;
  letter-spacing: 0.01em;
  line-height: 0.98;
}

.closing-question {
  margin: clamp(16px, 2vw, 26px) 0 0;
  color: var(--terracotta-dark);
  font-size: clamp(25px, 2.6vw, 36px);
  font-weight: 680;
  line-height: 1.14;
}

.closing-actions {
  display: flex;
  margin-top: clamp(28px, 4vw, 50px);
}

.signup-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 82% 8%, rgba(221, 161, 94, 0.12), transparent 28%),
    linear-gradient(180deg, var(--cream) 0%, var(--paper) 100%);
}

.signup-main {
  width: min(900px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(72px, 10vw, 132px) 0 clamp(88px, 12vw, 150px);
}

.signup-header {
  max-width: 720px;
  margin-bottom: clamp(34px, 5vw, 62px);
}

.signup-header .brand {
  width: fit-content;
  margin-bottom: clamp(36px, 6vw, 70px);
}

.presentation-page .signup-header .brand {
  margin-bottom: clamp(28px, 4.8vw, 56px);
}

.signup-header h1 {
  margin: 0;
  color: var(--green-950);
  font-size: clamp(38px, 5.5vw, 72px);
  line-height: 1;
}

.signup-header p {
  margin: 24px 0 0;
  color: rgba(40, 54, 24, 0.78);
  font-size: clamp(18px, 1.55vw, 21px);
  line-height: 1.68;
}

.signup-page .request-form {
  max-width: 760px;
  margin-top: 0;
}

.presentation-reserve {
  max-width: 680px;
  margin: clamp(20px, 3vw, 34px) 0 0;
  padding: clamp(18px, 2.8vw, 26px);
  border: 1px solid rgba(96, 108, 56, 0.2);
  border-radius: var(--radius);
  background: rgba(254, 250, 224, 0.58);
  color: rgba(40, 54, 24, 0.78);
  font-size: clamp(18px, 1.45vw, 20px);
  line-height: 1.5;
}

.presentation-reserve strong {
  color: var(--green-950);
}

.presentation-date {
  margin-top: clamp(18px, 2.4vw, 26px) !important;
}

.back-link {
  display: inline-block;
  margin-top: clamp(34px, 5vw, 58px);
  color: var(--terracotta-dark);
  font-weight: 800;
  text-underline-offset: 0.24em;
}

.legal-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  justify-content: center;
  padding: 28px 20px 34px;
  border-top: 1px solid rgba(96, 108, 56, 0.14);
  background: var(--paper);
  color: rgba(40, 54, 24, 0.72);
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
}

.legal-footer--standalone {
  padding-top: 10px;
}

.legal-footer a {
  text-decoration: underline;
  text-underline-offset: 0.24em;
}

.legal-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 82% 8%, rgba(221, 161, 94, 0.1), transparent 28%),
    linear-gradient(180deg, var(--cream) 0%, var(--paper) 100%);
}

.legal-main {
  width: min(860px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(54px, 8vw, 96px) 0 clamp(70px, 10vw, 118px);
}

.legal-header {
  max-width: 720px;
  margin-bottom: clamp(34px, 5vw, 58px);
}

.legal-header .brand {
  width: fit-content;
  margin-bottom: clamp(34px, 5vw, 56px);
}

.legal-header h1 {
  margin: 0;
  color: var(--green-950);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
}

.legal-header p {
  margin: 18px 0 0;
  color: rgba(40, 54, 24, 0.72);
  font-size: clamp(18px, 1.45vw, 20px);
  line-height: 1.62;
}

.legal-content {
  display: grid;
  gap: clamp(28px, 4vw, 42px);
  color: rgba(40, 54, 24, 0.8);
  font-size: clamp(17px, 1.3vw, 19px);
  line-height: 1.68;
}

.legal-content section {
  padding-top: clamp(22px, 3vw, 32px);
  border-top: 1px solid rgba(96, 108, 56, 0.18);
}

.legal-content h2 {
  margin: 0 0 14px;
  color: var(--green-950);
  font-size: clamp(23px, 2.2vw, 32px);
  line-height: 1.12;
}

.legal-content p,
.legal-content ul {
  margin: 0;
}

.legal-content p + p,
.legal-content ul + p,
.legal-content p + ul {
  margin-top: 14px;
}

.legal-content ul {
  padding-left: 1.2em;
}

@media (max-width: 1024px) {
  .image-text-grid,
  .method-layout,
  .info-grid,
  .contact-layout,
  .facilitator-layout,
  .testimonial-layout {
    grid-template-columns: 1fr;
  }

  .narrative-copy--start,
  .narrative-copy--shifted,
  .narrative-copy--closing {
    justify-self: start;
    margin-left: 0;
    margin-right: 0;
  }

  .narrative-soft-emphasis {
    justify-self: start;
    text-align: left;
    margin-right: 0;
  }

  .body-gateway-copy--opening,
  .body-gateway-copy--sensing,
  .body-gateway-copy--movement,
  .body-gateway-copy--closing,
  .body-gateway-statement,
  .body-gateway-final {
    margin-left: 0;
  }

  .body-gateway-image,
  .body-gateway-quote {
    margin-right: 0;
  }

  .body-gateway-image,
  .body-gateway-copy--discernment {
    justify-self: start;
  }

  .body-gateway-image {
    width: min(440px, 72vw);
    margin-top: 0;
  }

  .inner-work-copy--opening,
  .inner-work-copy--happening,
  .inner-work-instant,
  .inner-work-choice,
  .inner-work-question-block {
    margin-left: 0;
  }

  .inner-work-presence,
  .inner-work-close {
    margin-right: 0;
  }

  .inner-work-copy--patterns,
  .inner-work-copy--life {
    justify-self: start;
  }

  .journey-intro-copy,
  .journey-lead {
    margin-left: 0;
  }

  .journey-map picture {
    width: min(92vw, 900px);
  }

  .journey-glance-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .journey-glance-group {
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 0 22px;
    align-items: start;
  }

  .journey-glance-group img {
    grid-row: span 2;
    width: 66px;
    margin-bottom: 0;
  }

  .method-thread {
    right: 18px;
    width: 260px;
    opacity: 0.32;
  }

  .info-layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .info-primary,
  .info-secondary {
    gap: 30px;
  }

  .contact-editorial {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .contact-request,
  .signup-invitation {
    grid-column: 1;
    grid-row: auto;
  }

  .facilitator-heading {
    grid-template-columns: 1fr;
  }

  .facilitator-heading h2 {
    max-width: 720px;
  }

  .facilitator-photo {
    width: min(380px, 62vw);
    margin-left: 0;
  }

  .facilitator-opening,
  .facilitator-story {
    max-width: 720px;
  }

  .facilitator-flow--accompanying,
  .facilitator-close {
    margin-left: 0;
  }
}

@media (max-width: 768px) {
  [id] {
    scroll-margin-top: 84px;
  }

  .landing-header {
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 10px 18px;
  }

  .brand {
    gap: 8px;
    min-height: 44px;
    padding: 5px 12px 5px 6px;
  }

  .brand-wordmark {
    width: 124px;
    max-height: 36px;
  }

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

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .landing-nav {
    display: none;
    width: 100%;
    padding: 10px 0 2px;
  }

  .landing-nav.is-open {
    display: grid;
    grid-template-columns: 1fr;
  }

  .landing-nav a {
    min-height: 48px;
    padding: 12px 14px;
    border: 1px solid rgba(96, 108, 56, 0.18);
    border-radius: var(--radius);
    background: var(--paper);
    color: var(--green-950);
  }

  .landing-nav .nav-cta {
    background: var(--terracotta);
    color: var(--paper);
  }

  .program-signup-cta {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 18px;
    width: min(100% - 40px, 680px);
    text-align: left;
  }

  .program-signup-cta .button {
    width: 100%;
  }

  .program-signup-cta p {
    flex: 0 1 auto;
  }

  .presentation-program-block {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 44px 20px 50px;
  }

  .presentation-program-separator {
    width: min(260px, 64vw);
    height: 1px;
    margin: 0 auto;
    background: linear-gradient(90deg, transparent, rgba(188, 108, 37, 0.36), transparent);
  }

  .presentation-program-item {
    max-width: 620px;
  }

  .journey-residential-content {
    grid-template-columns: 1fr;
    grid-template-areas:
      "text"
      "image"
      "actions";
    gap: 26px;
  }

  .journey-residential-copy {
    max-width: 680px;
    margin-left: 0;
  }

  .journey-residential-actions {
    max-width: 680px;
    margin-left: 0;
  }

  .journey-residential-image {
    width: min(100%, 620px);
    margin: 0 auto 2px;
  }

  .hero-section {
    min-height: auto;
    gap: 34px;
    padding-top: 54px;
    background:
      linear-gradient(180deg, var(--paper), var(--cream));
  }

  .hero-copy {
    order: 1;
    max-width: 680px;
  }

  .hero-visual {
    position: relative;
    order: 2;
    width: min(760px, 100%);
    aspect-ratio: 1774 / 887;
    justify-self: end;
    margin: 22px 0 -36px;
  }

  .hero-visual img {
    object-fit: contain;
  }

  .body-gateway {
    padding-top: 64px;
    padding-bottom: 76px;
  }

  .body-gateway-flow {
    gap: 30px;
  }

  .body-gateway-heading h2 {
    font-size: 34px;
  }

  .body-gateway-copy {
    max-width: 100%;
    font-size: 19px;
    line-height: 1.68;
  }

  .body-gateway-pause,
  .body-gateway-attention,
  .body-gateway-realization,
  .body-gateway-information {
    font-size: clamp(20px, 4.8vw, 23px);
  }

  .body-gateway-statement {
    max-width: 100%;
    font-size: clamp(26px, 5.6vw, 33px);
  }

  .body-gateway-quote {
    max-width: 100%;
  }

  .body-gateway-quote p {
    font-size: clamp(22px, 5vw, 28px);
  }

  .body-gateway-final {
    max-width: 100%;
    font-size: clamp(28px, 6vw, 38px);
  }

  .inner-work-flow {
    gap: 32px;
  }

  .inner-work-heading h2 {
    font-size: 34px;
  }

  .inner-work-copy,
  .inner-work-question-block {
    max-width: 100%;
    font-size: 19px;
    line-height: 1.68;
  }

  .inner-work-copy--happening p:first-child,
  .inner-work-presence {
    max-width: 100%;
    font-size: clamp(22px, 5vw, 28px);
  }

  .inner-work-choice,
  .inner-work-return {
    max-width: 100%;
    font-size: clamp(20px, 4.6vw, 24px);
  }

  .inner-work-question {
    max-width: 100%;
    font-size: clamp(30px, 6.4vw, 42px);
  }

  .inner-work-close {
    max-width: 100%;
    font-size: clamp(20px, 4.4vw, 24px);
  }

  .journey-section {
    padding-top: 68px;
    padding-bottom: 82px;
  }

  .journey-intro h2 {
    font-size: 44px;
  }

  .journey-lead {
    font-size: clamp(25px, 5.5vw, 34px);
  }

  .journey-intro-copy {
    max-width: 100%;
    font-size: 19px;
    line-height: 1.68;
  }

  .journey-spiral-line {
    font-size: clamp(22px, 4.7vw, 27px);
  }

  .journey-map {
    margin: 52px 0 58px;
  }

  .journey-map picture {
    width: min(94vw, 760px);
  }

  .journey-intro-copy--after-map {
    margin-left: 0;
  }

  .journey-encounters {
    margin-top: 68px;
  }

  .journey-encounters-intro h3 {
    font-size: clamp(32px, 6vw, 44px);
  }

  .journey-encounters-copy {
    max-width: 100%;
    margin-left: min(4vw, 32px);
    font-size: 19px;
    line-height: 1.68;
  }

  .encounter-block {
    margin-top: 58px;
  }

  .encounter-block-header {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 18px;
  }

  .encounter-block h4 {
    font-size: clamp(25px, 5vw, 34px);
  }

  .encounter-item {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 18px;
    padding: 26px 0;
  }

  .encounter-copy {
    max-width: 100%;
    font-size: 18px;
    line-height: 1.68;
  }

  .encounter-brief {
    font-size: 18px;
    line-height: 1.58;
  }

  .encounter-copy h5 {
    font-size: clamp(24px, 4.8vw, 31px);
  }

  .encounter-question {
    font-size: clamp(18px, 3.4vw, 20px);
  }

  .method-section {
    padding-top: 72px;
    padding-bottom: 84px;
  }

  .mid-cta {
    width: 100%;
    padding: 46px 20px 48px;
  }

  .direct-contact-copy p:first-child {
    font-size: clamp(24px, 5.8vw, 32px);
  }

  .direct-contact-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
    gap: 14px;
  }

  .direct-contact-actions a {
    width: min(100%, 320px);
  }

  .method-heading,
  .method-copy,
  .method-sample {
    max-width: 720px;
  }

  .method-thread {
    top: 120px;
    right: -68px;
    width: 220px;
    height: auto;
    opacity: 0.2;
  }

  .method-heading h2 {
    font-size: clamp(34px, 7vw, 48px);
  }

  .method-copy,
  .method-sample {
    font-size: 19px;
    line-height: 1.68;
  }

  .method-flow {
    margin-top: 32px;
    margin-bottom: 34px;
  }

  .method-step {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 20px 0;
  }

  .method-key {
    font-size: clamp(24px, 5.4vw, 31px);
  }

  .method-return-emphasis {
    font-size: 1.05em;
  }

  .info-section,
  .faq-section {
    padding-top: 72px;
    padding-bottom: 84px;
  }

  .info-section .section-heading,
  .faq-section .section-heading {
    margin-bottom: 40px;
  }

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

  .faq-question {
    padding: 21px 0;
    font-size: 21px;
  }

  .faq-answer {
    max-width: 100%;
    font-size: 18px;
    line-height: 1.66;
  }

  .contact-section,
  .closing-section {
    padding-top: 72px;
    padding-bottom: 84px;
  }

  .contact-direct a {
    min-height: 58px;
    font-size: 16px;
  }

  .request-form,
  .signup-invitation {
    max-width: 100%;
  }

  .closing-editorial {
    max-width: 720px;
  }

  .facilitator-section {
    padding-top: 72px;
    padding-bottom: 82px;
  }

  .facilitator-heading h2 {
    font-size: clamp(33px, 7vw, 48px);
  }

  .facilitator-opening,
  .facilitator-story {
    font-size: 19px;
    line-height: 1.68;
  }

  .facilitator-photo {
    width: min(100%, 330px);
  }

  .facilitator-story {
    margin-top: 46px;
  }

  .facilitator-moment,
  .facilitator-flow,
  .bio-toggle,
  .facilitator-close,
  .facilitator-signature {
    margin-top: 46px;
  }

  .participant-voice-intro {
    margin-top: 58px;
  }

  .facilitator-line {
    font-size: clamp(22px, 5.5vw, 29px);
  }

  .facilitator-line--strong {
    font-size: clamp(30px, 7.4vw, 40px);
  }

  .facilitator-question {
    font-size: clamp(27px, 6.8vw, 36px);
  }

  .facilitator-close p {
    font-size: clamp(24px, 6vw, 32px);
  }
}

@media (max-width: 560px) {
  body {
    font-size: 17px;
  }

  .section-band,
  .closing-section {
    width: calc(100% - 36px);
    padding: 58px 0;
  }

  .facilitator-section {
    width: 100%;
    padding: 62px 18px 76px;
  }

  .method-section {
    width: 100%;
    padding: 62px 18px 76px;
  }

  .method-thread {
    top: 164px;
    right: -92px;
    width: 190px;
    height: 760px;
    opacity: 0.16;
  }

  .method-heading h2 {
    font-size: 34px;
    line-height: 1.03;
  }

  .method-copy,
  .method-sample {
    font-size: 18px;
    line-height: 1.66;
  }

  .method-copy {
    margin-top: 34px;
  }

  .method-copy p + p,
  .method-sample p + p {
    margin-top: 18px;
  }

  .method-key {
    margin-top: 30px !important;
    margin-bottom: 26px !important;
    font-size: 25px;
    line-height: 1.22;
  }

  .method-materials {
    font-size: 12px;
    line-height: 1.45;
  }

  .method-return-emphasis {
    font-size: 1.04em;
  }

  .method-sample {
    margin-top: 48px;
  }

  .method-sample h3 {
    font-size: 24px;
  }

  .journey-residential {
    margin-top: 72px;
    padding-top: 36px;
  }

  .journey-residential h3 {
    font-size: 29px;
  }

  .journey-residential-content {
    gap: 24px;
  }

  .journey-residential-image {
    padding: 7px;
    border-radius: 9px;
  }

  .floating-contact {
    top: 70px;
    right: 12px;
    bottom: auto;
  }

  .floating-contact-toggle {
    min-height: 38px;
    padding: 9px 13px;
    font-size: 13px;
  }

  .floating-contact-panel {
    width: min(292px, calc(100vw - 24px));
  }

  @media (max-width: 340px) {
    .floating-contact {
      top: 124px;
    }
  }

  .info-section,
  .faq-section {
    padding: 62px 18px 76px;
  }

  .info-section .section-heading h2,
  .faq-section .section-heading h2 {
    font-size: 34px;
    line-height: 1.04;
  }

  .info-section .section-heading > p:last-child {
    font-size: 20px;
  }

  .info-layout {
    gap: 38px;
  }

  .info-block {
    padding-top: 20px;
  }

  .info-block p {
    font-size: 18px;
    line-height: 1.62;
  }

  .koan-map {
    height: 280px;
  }

  .info-block strong {
    font-size: 27px;
  }

  .date-list li {
    grid-template-columns: 28px minmax(0, 1fr);
    font-size: 17px;
  }

  .faq-question {
    gap: 14px;
    padding: 20px 0;
    font-size: 20px;
  }

  .faq-question::after {
    font-size: 22px;
  }

  .faq-answer {
    padding-bottom: 26px;
    font-size: 17px;
  }

  .contact-section,
  .closing-section {
    padding: 62px 18px 76px;
  }

  .contact-intro h2 {
    font-size: 34px;
    line-height: 1.04;
  }

  .contact-intro p:not(.eyebrow) {
    font-size: 18px;
    line-height: 1.62;
  }

  .contact-direct a {
    width: 100%;
    min-height: 50px;
    padding: 13px 18px;
    font-size: 16px;
  }

  .contact-request summary {
    font-size: 20px;
  }

  .request-form h3,
  .signup-invitation h3 {
    font-size: 27px;
  }

  .request-form {
    gap: 16px;
  }

  .request-form fieldset label,
  .optional-consent {
    font-size: 16px;
  }

  .request-form .button[aria-disabled="true"],
  .closing-actions .button {
    width: 100%;
  }

  .signup-main {
    width: calc(100% - 36px);
    padding-top: 52px;
    padding-bottom: 74px;
  }

  .signup-header .brand {
    margin-bottom: 42px;
  }

  .signup-header h1 {
    font-size: 38px;
  }

  .signup-header p {
    font-size: 18px;
    line-height: 1.64;
  }

  .closing-copy,
  .closing-question,
  .closing-final {
    font-size: 18px;
    line-height: 1.66;
  }

  .closing-return {
    margin: 38px 0;
    font-size: 29px;
  }

  .closing-question h2 {
    font-size: 42px;
  }

  .closing-final p:last-child {
    font-size: 24px;
  }

  .closing-actions {
    display: grid;
    gap: 16px;
  }

  .facilitator-heading {
    gap: 28px;
  }

  .facilitator-heading h2 {
    font-size: 34px;
    line-height: 1.02;
  }

  .facilitator-opening,
  .facilitator-story {
    font-size: 18px;
    line-height: 1.66;
  }

  .facilitator-opening p + p,
  .facilitator-story > p + p,
  .facilitator-flow p + p {
    margin-top: 18px;
  }

  .facilitator-story {
    margin-top: 38px;
  }

  .facilitator-moment,
  .facilitator-flow,
  .facilitator-close,
  .facilitator-signature {
    margin-top: 38px;
  }

  .facilitator-line {
    margin-top: 24px !important;
    font-size: 23px;
    line-height: 1.25;
  }

  .facilitator-line--quiet,
  .facilitator-line--subtle {
    font-size: 22px;
  }

  .facilitator-line--strong {
    font-size: 31px;
  }

  .facilitator-question {
    margin-top: 30px !important;
    margin-bottom: 26px !important;
    font-size: 29px;
  }

  .facilitator-question--final {
    margin-top: 48px !important;
    margin-bottom: 30px !important;
    font-size: 43px;
  }

  .facilitator-close p {
    font-size: 25px;
  }

  .facilitator-signature p {
    font-size: 16px;
  }

  .narrative-section {
    padding-top: 58px;
    padding-bottom: 68px;
  }

  .narrative-section .section-heading {
    margin-bottom: 30px;
  }

  .narrative-flow {
    gap: 28px;
  }

  .narrative-section .section-heading h2 {
    font-size: 34px;
  }

  .narrative-intro p {
    font-size: 24px;
  }

  .narrative-intro p + p,
  .narrative-copy,
  .narrative-question span {
    font-size: 19px;
  }

  .narrative-statement,
  .narrative-soft-emphasis {
    font-size: 26px;
  }

  .narrative-soft-emphasis {
    font-size: 23px;
  }

  .narrative-question p {
    font-size: 28px;
    line-height: 1.18;
  }

  .hero-section {
    gap: 30px;
    padding-top: 44px;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-claim {
    max-width: 100%;
    font-size: 23px;
  }

  .hero-definition {
    font-size: 19px;
  }

  .hero-wordmark {
    width: min(330px, 100%);
  }

  .action-row,
  .button {
    width: 100%;
  }

  .hero-section .button.secondary {
    justify-content: flex-start;
    min-height: 40px;
    padding-inline: 0;
  }

  .hero-visual {
    width: calc(100% + 36px);
    aspect-ratio: 1 / 0.95;
    margin: 12px -18px -58px;
  }

  .hero-visual::before {
    background:
      linear-gradient(180deg, rgba(254, 250, 224, 0) 0%, rgba(255, 253, 240, 0.78) 100%);
  }

  .hero-visual img {
    object-fit: cover;
    object-position: 90% center;
  }

  .body-gateway {
    padding-top: 58px;
    padding-bottom: 68px;
  }

  .body-gateway-flow {
    gap: 28px;
  }

  .body-gateway-copy {
    font-size: 18px;
    line-height: 1.68;
  }

  .body-gateway-image {
    width: min(100%, 380px);
  }

  .body-gateway-copy p + p {
    margin-top: 18px;
  }

  .body-gateway-pause,
  .body-gateway-attention,
  .body-gateway-realization,
  .body-gateway-information {
    margin-top: 24px;
    margin-bottom: 24px;
    font-size: 20px;
    line-height: 1.42;
  }

  .body-gateway-statement {
    font-size: clamp(25px, 6.6vw, 31px);
    line-height: 1.13;
  }

  .body-gateway-quote p {
    font-size: clamp(22px, 6vw, 27px);
  }

  .body-gateway-small-pause {
    margin-top: 24px;
    margin-bottom: 22px;
    font-size: 20px;
  }

  .body-gateway-final {
    font-size: clamp(27px, 7vw, 34px);
  }

  .inner-work-flow {
    gap: 28px;
  }

  .inner-work-copy,
  .inner-work-question-block {
    font-size: 18px;
    line-height: 1.68;
  }

  .inner-work-copy p + p {
    margin-top: 18px;
  }

  .inner-work-copy--happening p:first-child,
  .inner-work-presence {
    font-size: clamp(21px, 5.8vw, 26px);
    line-height: 1.34;
  }

  .inner-work-instant {
    font-size: 19px;
  }

  .inner-work-choice,
  .inner-work-return {
    font-size: 20px;
    line-height: 1.42;
  }

  .inner-work-question {
    margin-top: 26px;
    margin-bottom: 24px;
    font-size: clamp(29px, 7vw, 36px);
  }

  .inner-work-close {
    font-size: 20px;
    line-height: 1.48;
  }

  .journey-section {
    padding-right: 18px;
    padding-left: 18px;
  }

  .journey-intro h2 {
    font-size: 38px;
  }

  .journey-lead {
    margin-top: 26px;
    font-size: 27px;
  }

  .journey-intro-copy {
    margin-top: 24px;
    font-size: 18px;
    line-height: 1.68;
  }

  .journey-intro-copy p + p {
    margin-top: 18px;
  }

  .journey-map {
    margin: 44px 0 50px;
  }

  .journey-map picture {
    width: 100%;
  }

  .journey-encounters {
    margin-top: 56px;
  }

  .journey-glance {
    margin: 52px auto 58px;
  }

  .journey-glance > .eyebrow {
    margin-bottom: 24px;
  }

  .journey-glance-group {
    display: block;
    padding-top: 22px;
  }

  .journey-glance-group img {
    width: 58px;
    margin-bottom: 16px;
  }

  .journey-glance-group h3 {
    font-size: 23px;
  }

  .journey-glance-group li {
    grid-template-columns: 32px minmax(0, 1fr);
    font-size: 16px;
  }

  .journey-encounters-intro h3 {
    font-size: 34px;
  }

  .journey-encounters-copy {
    margin-top: 24px;
    margin-left: 0;
    font-size: 18px;
    line-height: 1.66;
  }

  .journey-encounters-copy p + p {
    margin-top: 18px;
  }

  .encounter-block {
    margin-top: 52px;
  }

  .encounter-block-header {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 15px;
    margin-bottom: 20px;
  }

  .encounter-block-number {
    font-size: 12px;
  }

  .encounter-block h4 {
    font-size: 25px;
  }

  .encounter-block--two,
  .encounter-block--three {
    max-width: 100%;
    margin-left: 0;
  }

  .encounter-item {
    display: block;
    padding: 24px 0;
  }

  .encounter-item + .encounter-item {
    margin-top: 8px;
  }

  .encounter-number {
    width: auto;
    height: auto;
    margin: 0 0 11px;
    background: none;
    font-size: 15px;
    letter-spacing: 0.04em;
  }

  .encounter-copy {
    font-size: 17px;
    line-height: 1.66;
  }

  .encounter-copy h5 {
    margin-bottom: 13px;
    font-size: 24px;
    line-height: 1.12;
  }

  .encounter-question {
    margin-top: 18px !important;
    font-size: 18px;
    line-height: 1.42;
  }

  blockquote,
  .method-notes,
  .residential-callout,
  .info-grid section,
  .testimonial-main,
  .testimonial-list blockquote {
    padding: 20px;
  }
}

@media (max-width: 900px) {
  .testimonial-voice--yolanda,
  .testimonial-fragment--elisenda,
  .testimonial-voice--elisenda-second,
  .testimonial-voice--maria-brief,
  .testimonial-fragment--maria,
  .testimonial-fragment--collection,
  .testimonial-fragment--collection-matilde,
  .testimonial-fragment--collection-judith,
  .testimonial-voice--judith-body,
  .testimonial-voice--judith-group,
  .testimonial-voice--yolanda-full {
    width: 100%;
    max-width: 100%;
    margin-right: 0;
    margin-left: 0;
  }

  .testimonial-central {
    max-width: 100%;
    margin-top: 58px;
  }

  .testimonial-section {
    padding-top: 72px;
    padding-bottom: 84px;
  }

  .testimonial-section .section-heading {
    margin-bottom: 46px;
  }

  .testimonial-collection {
    gap: 54px;
  }
}

@media (max-width: 640px) {
  .testimonial-section {
    width: 100%;
    padding-right: 18px;
    padding-left: 18px;
  }

  .testimonial-voice,
  .testimonial-fragment blockquote,
  .testimonial-central,
  .testimonial-full blockquote {
    padding: 0;
  }

  .testimonial-voice--participant {
    padding-left: 16px;
  }

  .testimonial-voice p {
    font-size: 22px;
    line-height: 1.38;
  }

  .testimonial-full blockquote,
  .testimonial-central {
    font-size: 17px;
    line-height: 1.68;
  }

  .testimonial-central span {
    font-size: 24px;
  }

  .testimonial-section .section-heading h2 {
    font-size: 34px;
  }

  .testimonial-section .section-heading p,
  .testimonial-voice--yolanda-full p {
    font-size: 17px;
  }

  .testimonial-collection {
    gap: 48px;
  }

  .testimonial-voice--yolanda-full p:first-child {
    font-size: 22px;
  }

  .testimonial-toggle {
    min-height: 48px;
    font-size: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .testimonial-full,
  .journey-detail,
  .bio-detail,
  .landing-header {
    transition: none;
  }
}

@media (min-width: 1025px) {
  .body-gateway-flow {
    grid-template-columns: minmax(0, 0.94fr) minmax(320px, 0.58fr);
    column-gap: clamp(44px, 6vw, 86px);
    align-items: start;
  }

  .body-gateway-heading,
  .body-gateway-statement,
  .testimonial-fragment--elisenda,
  .testimonial-voice--judith-body,
  .body-gateway-copy--sensing,
  .body-gateway-quote,
  .body-gateway-copy--movement,
  .body-gateway-copy--discernment,
  .body-gateway-copy--closing,
  .body-gateway-final {
    grid-column: 1 / -1;
  }

  .body-gateway-copy--opening {
    grid-column: 1;
    max-width: 660px;
    margin-left: min(3vw, 36px);
  }

  .body-gateway-image {
    grid-column: 2;
    grid-row: 2 / span 2;
    align-self: center;
    justify-self: end;
    width: min(100%, 430px);
    margin: 0 min(1.2vw, 18px) 0 0;
  }

  .body-gateway-statement {
    max-width: 820px;
    margin-top: clamp(18px, 2vw, 30px);
  }
}

.motion-ready [data-reveal] {
  opacity: 0.82;
  transform: translateY(16px);
  transition:
    opacity 520ms cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 520ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.motion-ready [data-reveal="soft"] {
  opacity: 0.88;
  transform: translateY(10px);
}

.motion-ready [data-reveal-delay] {
  transition-delay: 80ms;
}

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

.presentation-program-block {
  position: relative;
  max-width: none;
  background:
    linear-gradient(180deg, rgba(250, 244, 214, 0.72) 0%, rgba(255, 253, 240, 0.84) 100%);
}

.presentation-program-block::before,
.narrative-section::before,
.body-gateway::before,
.journey-section::before,
.testimonial-section::before,
.info-section::before,
.contact-section::before {
  content: "";
  display: block;
  width: min(180px, 42vw);
  height: 1px;
  margin: 0 auto clamp(42px, 5.2vw, 72px);
  background: linear-gradient(90deg, transparent, rgba(96, 108, 56, 0.24), transparent);
}

.narrative-section::before {
  background: linear-gradient(90deg, transparent, rgba(188, 108, 37, 0.16), transparent);
}

.presentation-program-block::before {
  position: absolute;
  top: clamp(28px, 3vw, 44px);
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
}

.body-gateway {
  max-width: none;
  width: 100%;
  margin: 0;
  padding-right: max(20px, calc((100vw - 1120px) / 2));
  padding-left: max(20px, calc((100vw - 1120px) / 2));
  background:
    radial-gradient(circle at 84% 18%, rgba(96, 108, 56, 0.1), transparent 30%),
    linear-gradient(180deg, rgba(254, 250, 224, 0.95) 0%, rgba(236, 233, 204, 0.58) 48%, rgba(255, 253, 240, 0.96) 100%);
}

.body-gateway-flow {
  max-width: 1120px;
  margin: 0 auto;
}

.journey-section {
  background:
    radial-gradient(circle at 82% 12%, rgba(221, 161, 94, 0.11), transparent 28%),
    radial-gradient(circle at 12% 42%, rgba(96, 108, 56, 0.08), transparent 32%),
    linear-gradient(180deg, rgba(250, 244, 214, 0.58) 0%, var(--cream) 42%, rgba(255, 253, 240, 0.96) 100%);
}

.journey-section::before {
  width: min(240px, 48vw);
  background: linear-gradient(90deg, transparent, rgba(188, 108, 37, 0.22), rgba(96, 108, 56, 0.18), transparent);
}

.body-gateway {
  padding-top: clamp(84px, 9vw, 126px);
}

.deep-section {
  padding-top: clamp(92px, 10vw, 140px);
  padding-bottom: clamp(92px, 10vw, 142px);
}

.method-section {
  padding-top: clamp(82px, 8vw, 116px);
  background:
    linear-gradient(180deg, var(--paper) 0%, rgba(254, 250, 224, 0.84) 58%, var(--paper) 100%);
}

.testimonial-section {
  background:
    radial-gradient(circle at 16% 8%, rgba(221, 161, 94, 0.11), transparent 28%),
    radial-gradient(circle at 84% 72%, rgba(96, 108, 56, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(250, 244, 214, 0.62) 0%, rgba(254, 250, 224, 0.92) 48%, rgba(255, 253, 240, 0.98) 100%);
}

.info-section {
  background:
    radial-gradient(circle at 90% 8%, rgba(221, 161, 94, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(255, 253, 240, 0.98) 0%, rgba(239, 235, 204, 0.54) 100%);
}

.info-layout {
  padding-top: clamp(8px, 1vw, 14px);
}

.info-primary,
.info-secondary {
  gap: clamp(30px, 4.8vw, 50px);
}

.contact-section {
  background:
    radial-gradient(circle at 12% 12%, rgba(221, 161, 94, 0.13), transparent 28%),
    linear-gradient(180deg, rgba(254, 250, 224, 0.92) 0%, rgba(255, 253, 240, 0.98) 52%, rgba(254, 250, 224, 0.9) 100%);
}

.contact-editorial {
  padding-top: clamp(4px, 1vw, 12px);
}

@media (min-width: 901px) and (max-width: 1024px) {
  .contact-request {
    grid-column: 2;
    grid-row: 1;
    margin-top: clamp(82px, 7vw, 96px);
  }
}

.closing-section {
  padding-top: clamp(84px, 10vw, 132px);
  padding-bottom: clamp(76px, 9vw, 116px);
}

@media (max-width: 900px) {
  .motion-ready [data-reveal] {
    opacity: 0.92;
    transform: translateY(10px);
  }

  .contact-editorial {
    grid-template-columns: 1fr;
  }

  .contact-direct,
  .contact-request,
  .signup-invitation {
    grid-column: 1;
    grid-row: auto;
  }

  .contact-direct {
    width: 100%;
  }

  .contact-direct a,
  .signup-invitation .button {
    width: min(100%, 320px);
  }

  .contact-request {
    width: 100%;
    max-width: 100%;
    margin-top: 0;
  }

  .journey-section {
    padding-top: 70px;
    padding-bottom: 84px;
  }

  .body-gateway {
    padding-top: 70px;
  }

  .deep-section {
    padding-top: 76px;
    padding-bottom: 82px;
  }
}

@media (max-width: 900px) {
  .closing-section {
    width: 100%;
    padding: 78px 18px 86px;
  }

  .closing-editorial {
    max-width: 720px;
  }

  .closing-kicker {
    font-size: clamp(50px, 13vw, 82px);
  }

  .closing-body {
    grid-template-columns: 1fr;
    gap: 34px;
    margin-top: 34px;
  }

  .closing-copy {
    max-width: 640px;
    font-size: 19px;
    line-height: 1.66;
  }

  .closing-image {
    max-width: 620px;
  }

  .closing-image img {
    max-height: 360px;
    border-radius: 14px;
  }

  .closing-final {
    margin-top: 46px;
  }

  .closing-name {
    font-size: clamp(40px, 11vw, 64px);
  }

  .closing-question {
    font-size: clamp(25px, 6.2vw, 32px);
  }

  .closing-actions .button {
    width: min(100%, 320px);
  }
}

@media (max-width: 430px) {
  .closing-section {
    padding: 66px 18px 78px;
  }

  .closing-body {
    gap: 28px;
    margin-top: 30px;
  }

  .closing-copy {
    font-size: 18px;
    line-height: 1.64;
  }

  .closing-image img {
    max-height: 260px;
    object-position: 42% center;
  }

  .closing-final {
    margin-top: 40px;
  }

  .closing-actions {
    display: grid;
  }

  .closing-actions .button {
    width: 100%;
  }
}

@media (max-width: 340px) {
  .closing-kicker {
    font-size: 48px;
    letter-spacing: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .motion-ready [data-reveal],
  .motion-ready [data-reveal].is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.sample-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 82% 8%, rgba(221, 161, 94, 0.12), transparent 28%),
    radial-gradient(circle at 12% 48%, rgba(96, 108, 56, 0.08), transparent 32%),
    linear-gradient(180deg, var(--cream) 0%, var(--paper) 54%, var(--cream) 100%);
}

.sample-header,
.sample-main {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.sample-header {
  padding: clamp(22px, 3vw, 38px) 0 0;
}

.sample-main {
  padding: clamp(54px, 8vw, 108px) 0 clamp(76px, 9vw, 120px);
}

.sample-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(300px, 0.62fr);
  gap: clamp(38px, 7vw, 96px);
  align-items: center;
}

.sample-hero-copy {
  max-width: 720px;
}

.sample-hero h1,
.sample-section-heading h2,
.sample-cta h2 {
  margin: 0;
  color: var(--green-950);
  line-height: 1.04;
  text-wrap: balance;
}

.sample-hero h1 {
  max-width: 720px;
  font-size: clamp(40px, 5vw, 70px);
}

.sample-hero-copy p:not(.eyebrow),
.sample-section-heading p,
.sample-note p {
  color: rgba(40, 54, 24, 0.76);
  font-size: clamp(19px, 1.5vw, 21px);
  line-height: 1.66;
}

.sample-hero-copy p:not(.eyebrow) {
  max-width: 620px;
  margin: clamp(22px, 3vw, 34px) 0 0;
}

.sample-hero-image {
  margin: 0;
}

.sample-hero-image img {
  display: block;
  width: 100%;
  border-radius: 18px;
}

.sample-month,
.sample-materials,
.sample-note,
.sample-cta {
  margin-top: clamp(72px, 9vw, 124px);
}

.sample-section-heading {
  max-width: 780px;
}

.sample-section-heading h2 {
  max-width: 760px;
  font-size: clamp(32px, 4vw, 52px);
}

.sample-section-heading p {
  max-width: 660px;
  margin: clamp(18px, 2.5vw, 28px) 0 0;
}

.sample-weeks {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2.5vw, 28px);
  margin-top: clamp(34px, 5vw, 58px);
}

.sample-weeks article {
  padding-top: 20px;
  border-top: 1px solid rgba(96, 108, 56, 0.22);
}

.sample-weeks span,
.sample-audio span {
  color: var(--terracotta-dark);
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.sample-weeks h3,
.sample-practice h2,
.sample-audio h2 {
  margin: 12px 0 0;
  color: var(--green-950);
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.12;
  text-wrap: balance;
}

.sample-weeks p,
.sample-reading > p,
.sample-practice li,
.sample-audio p {
  color: rgba(40, 54, 24, 0.76);
  font-size: clamp(17px, 1.25vw, 19px);
  line-height: 1.62;
}

.sample-weeks p {
  margin: 14px 0 0;
}

.sample-materials {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.72fr);
  gap: clamp(42px, 7vw, 92px);
  align-items: start;
}

.sample-reading {
  grid-row: span 2;
  max-width: 700px;
}

.sample-reading blockquote {
  margin: clamp(22px, 3vw, 36px) 0 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.sample-reading blockquote p {
  margin: 0;
  color: var(--green-950);
  font-size: clamp(27px, 3vw, 42px);
  font-weight: 680;
  line-height: 1.22;
  text-wrap: balance;
}

.sample-reading > p:not(.eyebrow) {
  max-width: 620px;
  margin: clamp(24px, 3.4vw, 42px) 0 0;
}

.sample-practice,
.sample-audio {
  padding-top: clamp(24px, 4vw, 38px);
  border-top: 1px solid rgba(188, 108, 37, 0.22);
}

.sample-practice ol {
  display: grid;
  gap: 12px;
  margin: clamp(22px, 3vw, 30px) 0 0;
  padding-left: 1.25em;
}

.sample-audio {
  margin-top: clamp(20px, 3vw, 36px);
}

.sample-audio p {
  margin: clamp(16px, 2.5vw, 24px) 0 0;
}

.sample-audio span {
  display: inline-block;
  margin-top: 18px;
  color: rgba(96, 108, 56, 0.78);
}

.sample-note {
  max-width: 760px;
  padding-top: clamp(28px, 4vw, 46px);
  border-top: 1px solid rgba(96, 108, 56, 0.2);
}

.sample-note p {
  margin: 0;
  color: var(--green-950);
  font-weight: 650;
}

.sample-cta {
  max-width: 820px;
}

.sample-cta h2 {
  max-width: 680px;
  font-size: clamp(34px, 4.3vw, 58px);
}

.sample-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 16px;
  margin-top: clamp(26px, 4vw, 44px);
}

.method-sample-link,
.faq-sample-link {
  cursor: pointer;
}

@media (max-width: 900px) {
  .sample-hero,
  .sample-materials {
    grid-template-columns: 1fr;
  }

  .sample-hero-image {
    max-width: 620px;
  }

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

@media (max-width: 640px) {
  .sample-header,
  .sample-main {
    width: calc(100% - 36px);
  }

  .sample-main {
    padding-top: 48px;
    padding-bottom: 78px;
  }

  .sample-hero h1 {
    font-size: 38px;
  }

  .sample-hero-copy p:not(.eyebrow),
  .sample-section-heading p,
  .sample-note p {
    font-size: 18px;
    line-height: 1.62;
  }

  .sample-month,
  .sample-materials,
  .sample-note,
  .sample-cta {
    margin-top: 62px;
  }

  .sample-weeks {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .sample-reading blockquote p {
    font-size: 27px;
    line-height: 1.2;
  }

  .sample-actions {
    display: grid;
  }

  .sample-actions .button {
    width: 100%;
  }
}
