:root {
  --magenta: #a50054;
  --green: #004d40;
  --sand: #e7dccb;
  --gold: #c8a96b;
  --ivory: #f8f5f0;
  --ink: #312a26;
  --muted: #675d55;
  --line: rgba(49, 42, 38, 0.12);
  --magenta-soft: rgba(165, 0, 84, 0.08);
  --green-soft: rgba(73, 106, 82, 0.1);
  --shadow: 0 24px 70px rgba(49, 42, 38, 0.12);
  --ease-soft: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  background: var(--sand);
  color: var(--ink);
  font-family: "Montserrat", Arial, sans-serif;
  line-height: 1.65;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    repeating-linear-gradient(0deg, rgba(49, 42, 38, 0.028) 0 1px, transparent 1px 4px),
    repeating-linear-gradient(90deg, rgba(49, 42, 38, 0.022) 0 1px, transparent 1px 5px);
  background-size: 18px 18px, 22px 22px;
  opacity: 0.28;
  animation: linenDrift 36s ease-in-out infinite alternate;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(24px, 4vw, 64px);
  color: var(--ink);
  background: rgba(248, 245, 240, 0.54);
  border-bottom: 1px solid rgba(49, 42, 38, 0.08);
  backdrop-filter: blur(20px);
}

.brand,
.nav-links {
  display: flex;
  align-items: center;
}

.menu-toggle {
  display: none;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  padding: 0;
  border: 1px solid rgba(165, 0, 84, 0.16);
  border-radius: 50%;
  background: rgba(165, 0, 84, 0.055);
  color: var(--magenta);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  transition: opacity 250ms var(--ease-soft), transform 250ms var(--ease-soft);
}

.brand {
  min-width: max-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 56px;
  height: 66px;
  border: 0;
  border-radius: 0;
  background: transparent;
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.nav-links {
  margin-left: auto;
  gap: clamp(14px, 2vw, 34px);
  font-size: clamp(0.7rem, 0.78vw, 0.84rem);
  font-weight: 600;
  white-space: nowrap;
  text-transform: uppercase;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border-radius: 6px;
  background: var(--magenta);
  color: var(--ivory);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  transition: background 250ms ease-out, transform 250ms ease-out, color 250ms ease-out, box-shadow 250ms ease-out;
}

.header-cta:hover {
  background: var(--green);
  box-shadow: 0 10px 24px rgba(49, 42, 38, 0.08);
  transform: translateY(-2px);
}

.nav-links a {
  position: relative;
  transition: color 250ms var(--ease-soft);
}

.nav-links a::after {
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 2px;
  content: "";
  background: var(--green);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 250ms var(--ease-soft);
}

.nav-links a:hover {
  color: var(--magenta);
}

.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: center;
}

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-dropdown::after {
  position: absolute;
  top: 100%;
  left: -18px;
  right: -18px;
  height: 24px;
  content: "";
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-submenu-toggle {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--green);
  cursor: pointer;
  transition: color 240ms var(--ease-soft), background 240ms var(--ease-soft), transform 240ms var(--ease-soft);
}

.nav-submenu-toggle svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 240ms var(--ease-soft);
}

.nav-dropdown:hover .nav-submenu-toggle,
.nav-dropdown:focus-within .nav-submenu-toggle,
.nav-dropdown.is-submenu-open .nav-submenu-toggle {
  color: var(--magenta);
  background: rgba(165, 0, 84, 0.06);
}

.nav-dropdown:hover .nav-submenu-toggle svg,
.nav-dropdown:focus-within .nav-submenu-toggle svg,
.nav-dropdown.is-submenu-open .nav-submenu-toggle svg {
  transform: rotate(180deg);
}

.nav-submenu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  z-index: 20;
  display: grid;
  min-width: 310px;
  padding: 10px;
  border: 1px solid rgba(0, 77, 64, 0.12);
  border-radius: 8px;
  background: rgba(248, 245, 240, 0.96);
  box-shadow: 0 24px 64px rgba(49, 42, 38, 0.13);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -6px);
  transform-origin: top center;
  visibility: hidden;
  transition: opacity 240ms var(--ease-soft), transform 240ms var(--ease-soft), visibility 240ms var(--ease-soft);
}

.nav-dropdown:hover .nav-submenu,
.nav-dropdown:focus-within .nav-submenu,
.nav-dropdown.is-submenu-open .nav-submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
  visibility: visible;
}

.nav-submenu a {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 11px 12px;
  border-radius: 6px;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  transition: background 220ms var(--ease-soft), color 220ms var(--ease-soft), transform 220ms var(--ease-soft);
}

.nav-submenu a::after {
  content: none;
}

.nav-submenu a span {
  flex: 0 0 20px;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--item-color);
}

.program-symbol {
  display: block;
  flex: 0 0 auto;
  width: var(--symbol-size, 56px);
  height: var(--symbol-size, 56px);
  object-fit: contain;
}

.program-symbol-menu {
  --symbol-size: 24px;
  margin-right: 2px;
}

.nav-submenu a .program-symbol-menu {
  flex-basis: 24px;
}

.program-symbol-inline {
  --symbol-size: 28px;
  display: inline-block;
  margin-right: 10px;
  vertical-align: middle;
}

.nav-submenu a:hover,
.nav-submenu a:focus-visible {
  background: rgba(0, 77, 64, 0.06);
  color: var(--magenta);
  outline: none;
  transform: translateX(2px);
}

.nav-dropdown-trigger > a:focus-visible,
.nav-submenu-toggle:focus-visible,
.nav-links > a:focus-visible {
  outline: 2px solid rgba(165, 0, 84, 0.34);
  outline-offset: 6px;
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--ink);
}

.hero-banner {
  min-height: 100svh;
  padding: 108px 0 0 clamp(24px, 5vw, 72px);
  background: linear-gradient(90deg, #fbf7ef 0%, var(--ivory) 44%, #efe6d9 100%);
}

.hero-shell::before {
  content: none;
}

.section {
  position: relative;
}

.section::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background-image:
    repeating-linear-gradient(0deg, rgba(49, 42, 38, 0.022) 0 1px, transparent 1px 5px),
    repeating-linear-gradient(90deg, rgba(49, 42, 38, 0.018) 0 1px, transparent 1px 6px);
  opacity: 0.26;
}

.section > * {
  position: relative;
  z-index: 1;
}

.hero-banner::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background-image:
    repeating-linear-gradient(0deg, rgba(49, 42, 38, 0.02) 0 1px, transparent 1px 5px),
    repeating-linear-gradient(90deg, rgba(49, 42, 38, 0.018) 0 1px, transparent 1px 6px);
  background-size: 20px 20px, 24px 24px;
  opacity: 0.18;
}

.hero-banner::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(251, 247, 239, 0) 0%, rgba(251, 247, 239, 0) 42%, rgba(251, 247, 239, 0.12) 50%, rgba(251, 247, 239, 0) 62%),
    linear-gradient(0deg, rgba(231, 220, 203, 0.08) 0%, transparent 24%);
}

.hero-photo {
  position: absolute;
  inset: 0 0 0 auto;
  z-index: 0;
  width: min(52vw, 980px);
  overflow: hidden;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 56% 18%;
  filter: saturate(0.94) contrast(0.96) brightness(1.06);
  opacity: 0;
  transform: translateY(14px);
  animation: photoReveal 1.25s var(--ease-soft) 160ms both;
}

@media (min-width: 821px) and (max-height: 760px) {
  .hero-banner {
    padding-top: 94px;
  }

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

  .hero-copy h1 {
    font-size: clamp(3.65rem, 6vw, 6.4rem);
    margin-bottom: 18px;
  }

  .hero-photo {
    width: min(50vw, 900px);
  }

  .hero-photo img {
    object-position: 56% 16%;
    transform: scale(0.96);
  }
}

.hero-photo::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, #fbf7ef 0%, rgba(251, 247, 239, 0.52) 8%, rgba(251, 247, 239, 0.16) 22%, rgba(251, 247, 239, 0) 42%),
    linear-gradient(180deg, rgba(248, 245, 240, 0.08) 0%, rgba(248, 245, 240, 0) 42%, rgba(231, 220, 203, 0.1) 100%);
}

.hero-shell {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  width: min(39vw, 560px);
  min-height: calc(100svh - 108px);
}

.hero-copy {
  position: relative;
  width: 100%;
  max-width: 560px;
  padding-top: 0;
  text-align: left;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
  color: var(--magenta);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.42em;
  text-transform: uppercase;
}

.hero-kicker::after {
  width: 72px;
  height: 1px;
  content: "";
  background: var(--magenta);
  transform: scaleX(0);
  transform-origin: left;
  animation: lineGrow 1s var(--ease-soft) 520ms both;
}

.hero-copy h1 {
  display: grid;
  gap: 0.02em;
  width: 100%;
  max-width: 560px;
  margin-bottom: clamp(32px, 4.2vw, 58px);
  color: var(--magenta);
  font-size: clamp(3.25rem, 3.85vw, 5.55rem);
  line-height: 0.88;
  text-align: left;
  text-transform: uppercase;
}

.hero-copy h1 span {
  opacity: 0;
  transform: translateY(12px);
  animation: titleReveal 800ms var(--ease-soft) both;
}

.hero-copy h1 span:nth-child(2) {
  animation-delay: 90ms;
}

.hero-copy h1::after {
  content: none;
}

.hero-wellbeing-card {
  max-width: 540px;
  padding: 0;
  background: transparent;
  text-align: left;
}

.hero-ritual-line {
  margin: 0 0 22px;
  color: var(--magenta);
  font-size: clamp(1.08rem, 1.35vw, 1.38rem);
  font-weight: 900;
  line-height: 1.35;
}

.hero-subtitle {
  margin-bottom: 0;
  color: var(--green);
  font-size: clamp(0.76rem, 0.92vw, 0.96rem);
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.hero-text {
  max-width: 540px;
  margin: 0;
  color: rgba(49, 42, 38, 0.86);
  font-size: clamp(1.08rem, 1.25vw, 1.24rem);
  line-height: 1.5;
  text-align: left;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: clamp(34px, 4vw, 52px);
}

.hero-main-cta {
  min-width: min(100%, 500px);
  justify-content: center;
  border-radius: 4px;
  padding: 22px 34px;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
}

.button span {
  margin-left: 12px;
  transition: transform 250ms var(--ease-soft);
}

.button:hover span {
  transform: translateX(4px);
}

.motion-ready .motion-section {
  opacity: 0.001;
  transform: translate3d(0, var(--section-y, 18px), 0);
  transition: opacity var(--section-duration, 820ms) var(--motion-ease, ease-out), transform var(--section-duration, 820ms) var(--motion-ease, ease-out);
  will-change: opacity, transform;
}

.motion-ready .motion-section.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.motion-ready .motion-item {
  opacity: 0;
  transform: translate3d(0, var(--item-y, 26px), 0);
  transition: opacity var(--item-duration, 820ms) var(--motion-ease, ease-out), transform var(--item-duration, 820ms) var(--motion-ease, ease-out);
  transition-delay: var(--motion-delay, 0ms);
  will-change: opacity, transform;
}

.motion-ready .motion-section.is-visible .motion-item {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.motion-ready .motion-title.motion-item {
  opacity: 1;
  transform: none;
}

.motion-title-line {
  display: block;
}

.motion-ready .motion-title-line {
  opacity: 0;
  transform: translate3d(0, var(--title-y, 22px), 0);
  animation: none;
  transition: opacity var(--title-duration, 860ms) var(--motion-ease, ease-out), transform var(--title-duration, 860ms) var(--motion-ease, ease-out);
  transition-delay: calc(var(--motion-delay, 0ms) + var(--line-delay, 0ms));
  will-change: opacity, transform;
}

.motion-ready .motion-section.is-visible .motion-title-line {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}


.impact-tags span {
  padding: 10px 14px;
  border: 1px solid rgba(165, 0, 84, 0.18);
  border-radius: 999px;
  background: var(--magenta-soft);
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 700;
}

.section {
  padding: clamp(72px, 9vw, 124px) clamp(18px, 5vw, 72px);
}

.section-label {
  display: block;
  margin: 0 0 16px;
  color: var(--magenta);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  letter-spacing: 0;
}

h1,
h2 {
  color: var(--magenta);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  line-height: 1.04;
}

h1 {
  max-width: 900px;
  font-size: clamp(2.7rem, 5vw, 5.2rem);
}

h2 {
  font-size: clamp(2.1rem, 4vw, 4.4rem);
}

h3 {
  color: var(--green);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 500;
  line-height: 1.1;
}

p {
  color: var(--muted);
  font-size: 1.04rem;
}

.lead {
  color: var(--ink);
  font-size: clamp(1.16rem, 1.5vw, 1.35rem);
  font-weight: 600;
}

.about-section,
.section-heading,
.programs-section,
.speaking-section,
.reflections-section,
.podcast-section,
.manifesto-section,
.impact-section {
  display: grid;
  grid-template-columns: minmax(210px, 0.36fr) minmax(0, 0.64fr);
  gap: clamp(30px, 6vw, 92px);
}

.about-copy {
  max-width: 820px;
}

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

.history-teaser {
  display: grid;
  grid-template-columns: minmax(260px, 0.4fr) minmax(320px, 0.6fr);
  gap: clamp(42px, 8vw, 128px);
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(251, 247, 239, 0.98), rgba(248, 245, 240, 0.94)),
    var(--ivory);
}

.history-teaser-copy {
  position: relative;
  max-width: 780px;
  padding-left: clamp(24px, 2.8vw, 38px);
}

.history-teaser-copy::before {
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 0;
  width: 2px;
  content: "";
  background: linear-gradient(180deg, var(--magenta), rgba(73, 106, 82, 0.62));
}

.history-teaser-copy h2 {
  max-width: 680px;
  margin-bottom: clamp(22px, 3vw, 34px);
  color: var(--magenta);
  font-size: clamp(3rem, 4.9vw, 6.2rem);
  line-height: 0.92;
  text-transform: none;
}

.history-teaser-copy p {
  max-width: 720px;
  margin-bottom: clamp(24px, 3vw, 34px);
  color: rgba(49, 42, 38, 0.78);
  font-size: clamp(1.02rem, 1.12vw, 1.16rem);
  line-height: 1.62;
}

.philosophy-teaser-lead {
  max-width: 660px !important;
  margin-bottom: clamp(24px, 3vw, 34px) !important;
  color: var(--green) !important;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.85rem, 2.45vw, 3rem) !important;
  font-style: italic;
  font-weight: 500;
  line-height: 1.08 !important;
}

.history-teaser-copy p:last-of-type {
  margin-bottom: clamp(30px, 4vw, 48px);
}

.history-teaser-photo {
  position: relative;
  align-self: stretch;
  min-height: clamp(520px, 54vw, 760px);
  margin: 0;
  border-radius: 10px;
  background: var(--ivory);
  box-shadow: none;
  overflow: hidden;
}

.history-teaser-photo::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(248, 245, 240, 0.14), rgba(248, 245, 240, 0) 42%),
    linear-gradient(180deg, rgba(248, 245, 240, 0.04), rgba(231, 220, 203, 0.12));
  border-radius: inherit;
}

.history-teaser-photo::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(180deg, rgba(248, 245, 240, 0.02), rgba(231, 220, 203, 0.08));
  border-radius: inherit;
}

.history-teaser-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: 42% center;
  filter: saturate(0.94) contrast(0.97) brightness(1.04);
}

.page-hero {
  display: grid;
  min-height: clamp(520px, 62vh, 720px);
  padding-top: clamp(150px, 13vw, 190px);
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 24%, rgba(165, 0, 84, 0.08), transparent 34%),
    linear-gradient(135deg, rgba(248, 245, 240, 0.98), rgba(231, 220, 203, 0.58)),
    var(--ivory);
}

.page-hero::before {
  background-image:
    repeating-linear-gradient(0deg, rgba(49, 42, 38, 0.032) 0 1px, transparent 1px 6px),
    repeating-linear-gradient(90deg, rgba(49, 42, 38, 0.026) 0 1px, transparent 1px 7px);
  opacity: 0.06;
}

.page-hero::after {
  position: absolute;
  right: clamp(-180px, -7vw, -70px);
  bottom: clamp(-180px, -8vw, -80px);
  z-index: 0;
  width: clamp(420px, 42vw, 740px);
  aspect-ratio: 1;
  pointer-events: none;
  content: "";
  background: url("assets/isotipo-yessica-muller-original.png") center / contain no-repeat;
  opacity: 0.055;
  mix-blend-mode: multiply;
}

.history-page-hero {
  grid-template-columns: minmax(0, 0.6fr) minmax(280px, 0.4fr);
  gap: clamp(44px, 6vw, 96px);
  align-items: center;
  min-height: 100svh;
  padding-top: clamp(136px, 11vw, 172px);
  padding-bottom: clamp(70px, 8vw, 112px);
  background:
    linear-gradient(135deg, rgba(251, 247, 239, 0.98), rgba(248, 245, 240, 0.94)),
    var(--ivory);
}

.history-page-hero::after {
  display: none;
}

.page-hero-copy {
  position: relative;
  z-index: 1;
  align-self: center;
  max-width: 960px;
}

.page-hero h1 {
  margin-bottom: 22px;
  font-size: clamp(4rem, 8vw, 8.4rem);
  line-height: 0.86;
}

.page-hero p {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--green);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 3.3vw, 3.9rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.04;
}

.history-page-hero .page-hero-copy {
  max-width: 780px;
}

.history-page-hero h1 {
  max-width: 640px;
  margin-bottom: clamp(34px, 4vw, 54px);
  color: var(--magenta);
  font-size: clamp(4.4rem, 6.8vw, 7.3rem);
  line-height: 0.86;
  text-transform: uppercase;
}

.history-page-hero h1 > span:first-child,
.history-page-hero h1 .motion-title-line:first-child {
  font-size: 0.66em;
}

.history-hero-statement {
  max-width: 620px;
  margin: 0;
  padding: 0;
  border-left: 0;
}

.history-hero-statement p {
  max-width: 100%;
  margin: 0;
  color: var(--green);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.75rem, 2.3vw, 2.85rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.08;
}

.history-hero-statement span {
  font-size: clamp(2.08rem, 3.2vw, 3.7rem);
}

.history-hero-body {
  display: grid;
  gap: 18px;
  max-width: 700px;
}

.history-hero-body p {
  margin: 0;
  color: var(--muted);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(0.96rem, 1.05vw, 1.08rem);
  font-style: normal;
  font-weight: 400;
  line-height: 1.72;
}

.history-hero-photo {
  position: relative;
  z-index: 1;
  align-self: center;
  justify-self: center;
  width: 100%;
  max-width: clamp(320px, 30vw, 500px);
  height: clamp(380px, 52vh, 560px);
  min-height: 0;
  margin: 0;
  border-radius: 28px;
  overflow: hidden;
}

.history-hero-photo::before {
  position: absolute;
  inset: 24px;
  z-index: 1;
  pointer-events: none;
  content: "";
  border: 1px solid rgba(165, 0, 84, 0.18);
}

.history-hero-photo::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(248, 245, 240, 0.26), transparent 32%),
    linear-gradient(180deg, transparent 70%, rgba(231, 220, 203, 0.18));
}

.history-hero-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center 42%;
}

.history-page .philosophy-meaning-section,
.history-page .identity-section,
.history-page .trajectory-section,
.history-page .purpose-section {
  padding-top: clamp(52px, 6vw, 86px);
  padding-bottom: clamp(56px, 7vw, 96px);
}

.history-page .history-page-hero + .philosophy-meaning-section {
  padding-top: clamp(72px, 8vw, 112px);
}

.philosophy-meaning-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 18%, rgba(215, 201, 182, 0.2), transparent 28%),
    linear-gradient(135deg, rgba(251, 247, 239, 0.98), rgba(248, 245, 240, 0.94)),
    var(--ivory);
}

.philosophy-meaning-section::before {
  background-image:
    repeating-linear-gradient(0deg, rgba(49, 42, 38, 0.018) 0 1px, transparent 1px 6px),
    repeating-linear-gradient(90deg, rgba(49, 42, 38, 0.014) 0 1px, transparent 1px 7px),
    radial-gradient(circle at 20% 18%, rgba(215, 201, 182, 0.1) 0 1px, transparent 1px 5px);
  background-size: 18px 18px, 24px 24px, 14px 14px;
  opacity: 0.32;
}

.philosophy-meaning-section::after {
  position: absolute;
  inset: clamp(18px, 3vw, 38px);
  pointer-events: none;
  content: "";
  border: 1px solid rgba(215, 201, 182, 0.28);
  border-radius: 28px;
}

.dragonfly-watermark {
  position: absolute;
  right: clamp(-110px, -4vw, -28px);
  bottom: clamp(20px, 5vw, 84px);
  z-index: 0;
  width: clamp(300px, 38vw, 620px);
  opacity: 0.065;
  pointer-events: none;
  transform: rotate(-7deg);
}

.philosophy-meaning-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(240px, 0.34fr) minmax(0, 0.66fr);
  gap: clamp(34px, 7vw, 118px);
  align-items: start;
  max-width: 1240px;
  margin-inline: auto;
}

.philosophy-meaning-heading {
  position: sticky;
  top: 118px;
  max-width: 420px;
}

.philosophy-meaning-heading h2 {
  margin-bottom: 0;
  color: var(--magenta);
  font-size: clamp(3.1rem, 5.2vw, 6.6rem);
  line-height: 0.88;
  text-transform: uppercase;
}

.philosophy-meaning-copy {
  max-width: 780px;
  padding-top: clamp(6px, 1vw, 14px);
}

.philosophy-meaning-copy p {
  margin-bottom: clamp(26px, 3.2vw, 42px);
  color: rgba(49, 42, 38, 0.82);
  font-size: clamp(1.08rem, 1.28vw, 1.24rem);
  line-height: 1.78;
}

.philosophy-meaning-copy p:last-child {
  margin-bottom: 0;
}

.philosophy-meaning-copy strong {
  color: var(--magenta);
  font-weight: 700;
}

.philosophy-emphasis {
  max-width: 720px;
  color: rgba(49, 42, 38, 0.9) !important;
  font-size: clamp(1.16rem, 1.52vw, 1.42rem) !important;
  line-height: 1.62 !important;
}

.story-section {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(260px, 0.38fr);
  gap: clamp(36px, 7vw, 110px);
  align-items: center;
  background: var(--ivory);
}

.story-copy {
  max-width: 830px;
}

.story-copy h1,
.story-copy h2,
.identity-card h1,
.identity-card h2 {
  margin-bottom: 28px;
}

.story-copy blockquote {
  margin: 0 0 34px;
  padding: 4px 0 4px 24px;
  border-left: 2px solid var(--magenta);
  color: var(--magenta);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 3.3vw, 3.6rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.04;
}

.story-copy p,
.identity-card p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.06rem;
}

.story-copy p + p,
.identity-card p + p {
  margin-top: 22px;
}

.story-mark {
  position: relative;
  min-height: 430px;
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(231, 220, 203, 0.72), rgba(248, 245, 240, 0.62)),
    var(--sand);
  overflow: hidden;
}

.story-mark::before {
  position: absolute;
  inset: 28px;
  content: "";
  border: 1px solid rgba(165, 0, 84, 0.12);
  border-radius: 8px;
}

.story-mark::after {
  position: absolute;
  left: 44px;
  bottom: 44px;
  width: 92px;
  height: 1px;
  content: "";
  background: var(--green);
}

.story-mark img {
  position: absolute;
  inset: 50%;
  width: 760px;
  max-width: none;
  opacity: 0.06;
  transform: translate(-50%, -50%);
  mix-blend-mode: multiply;
}

.magenta {
  color: var(--magenta);
  font-weight: 600;
}

.green {
  color: var(--green);
  font-weight: 600;
}

.identity-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(34px, 6vw, 90px);
  align-items: center;
  background: var(--ivory);
}

.identity-image {
  height: clamp(520px, 58vw, 760px);
}

.identity-image img {
  object-position: center 35%;
}

.identity-card {
  padding: clamp(30px, 4vw, 56px);
  border: 1px solid rgba(73, 106, 82, 0.14);
  border-radius: 10px;
  background: rgba(231, 220, 203, 0.56);
}

.identity-lead {
  color: var(--magenta);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.7rem, 2.4vw, 2.7rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.08;
}

.signature-block {
  margin-top: 38px;
  padding-top: 26px;
  border-top: 1px solid rgba(73, 106, 82, 0.24);
}

.signature-name {
  display: block;
  color: var(--magenta);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 3vw, 3.4rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1;
}

.signature-block p {
  margin: 14px 0 0;
  color: var(--green);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.45rem, 2vw, 2.2rem);
  font-style: italic;
  line-height: 1.12;
}

.trajectory-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.36fr) minmax(0, 0.64fr);
  gap: clamp(36px, 7vw, 104px);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(248, 245, 240, 0.94), rgba(231, 220, 203, 0.78)),
    var(--ivory);
}

.trajectory-section::before {
  background-image:
    repeating-linear-gradient(0deg, rgba(49, 42, 38, 0.035) 0 1px, transparent 1px 6px),
    repeating-linear-gradient(90deg, rgba(49, 42, 38, 0.03) 0 1px, transparent 1px 7px);
  opacity: 0.05;
}

.trajectory-section::after {
  position: absolute;
  right: clamp(-190px, -9vw, -70px);
  bottom: clamp(-170px, -8vw, -60px);
  z-index: 0;
  width: clamp(420px, 46vw, 760px);
  aspect-ratio: 1;
  pointer-events: none;
  content: "";
  background: url("assets/isotipo-yessica-muller-original.png") center / contain no-repeat;
  opacity: 0.055;
  mix-blend-mode: multiply;
}

.trajectory-intro {
  max-width: 520px;
}

.trajectory-intro h2 {
  margin-bottom: 28px;
}

.trajectory-intro p {
  font-size: 1.07rem;
}

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

.trajectory-timeline {
  position: relative;
  display: grid;
  gap: 0;
  padding: 8px 0 0;
}

.trajectory-timeline::before {
  position: absolute;
  top: 18px;
  bottom: 34px;
  left: 34px;
  width: 1px;
  content: "";
  background: linear-gradient(180deg, rgba(165, 0, 84, 0), rgba(165, 0, 84, 0.72), rgba(73, 106, 82, 0.64), rgba(165, 0, 84, 0));
}

.trajectory-item {
  position: relative;
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: clamp(18px, 3vw, 34px);
  padding: 0 0 34px;
}

.trajectory-item:not(:last-child) > div:last-child {
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(165, 0, 84, 0.14);
}

.trajectory-icon {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border: 1px solid rgba(165, 0, 84, 0.38);
  border-radius: 50%;
  background: rgba(248, 245, 240, 0.9);
  color: var(--magenta);
  box-shadow: 0 12px 34px rgba(49, 42, 38, 0.08);
}

.trajectory-item:nth-child(even) .trajectory-icon {
  border-color: rgba(73, 106, 82, 0.42);
  color: var(--green);
}

.trajectory-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.trajectory-item span {
  display: inline-flex;
  margin-bottom: 7px;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.trajectory-item:nth-child(even) span {
  color: var(--magenta);
}

.trajectory-item h3 {
  margin-bottom: 10px;
  color: var(--magenta);
  font-size: clamp(1.75rem, 2.4vw, 2.55rem);
}

.trajectory-item:nth-child(even) h3 {
  color: var(--green);
}

.trajectory-item p {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
}

.trajectory-item strong {
  color: var(--magenta);
  font-weight: 600;
}

.trajectory-item:nth-child(even) strong {
  color: var(--green);
}

.trajectory-close {
  grid-column: 2;
  max-width: 760px;
  margin-top: 10px;
  padding: clamp(24px, 3vw, 34px) 0 0 clamp(24px, 3vw, 38px);
  border-top: 1px solid rgba(73, 106, 82, 0.24);
  border-left: 2px solid rgba(165, 0, 84, 0.7);
}

.trajectory-close p {
  margin-bottom: 0;
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.55rem, 2.2vw, 2.35rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.12;
}

.trajectory-close p + p {
  margin-top: 16px;
}

.section-image {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 28px;
  background: transparent;
}

.section-image::after {
  content: none;
}

.section-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.94) contrast(0.96) brightness(1.05);
  transition: none;
}

.section-image:hover img {
  filter: saturate(0.94) contrast(0.96) brightness(1.05);
  transform: none;
}

.history-teaser-photo,
.history-hero-photo,
.identity-image,
.psychotherapy-image,
.therapy-modality-image,
.therapy-closing-image,
.program-image,
.speaking-image,
.speaking-detail-image,
.reflections-hero-image,
.reflection-entry figure,
.reflection-article-image,
.podcast-image,
.impact-image,
.visual-gallery .section-image {
  border-radius: 28px;
  background: transparent;
  box-shadow: none;
  overflow: hidden;
}

.history-teaser-photo::before,
.history-teaser-photo::after,
.history-hero-photo::before,
.history-hero-photo::after,
.psychotherapy-image::before,
.therapy-closing-image::before,
.speaking-detail-image::before,
.reflection-article-image::before,
.section-image::before,
.section-image::after {
  content: none !important;
}

.history-teaser-photo img,
.history-hero-photo img,
.identity-image img,
.psychotherapy-image img,
.therapy-modality-image img,
.therapy-closing-image img,
.program-image img,
.speaking-image img,
.speaking-detail-image img,
.reflections-hero-image img,
.reflection-entry img,
.reflection-article-image img,
.podcast-image img,
.impact-image img,
.visual-gallery img,
.reflection-feature-list img {
  filter: saturate(0.94) contrast(0.96) brightness(1.05);
  transform: none;
  transition: none;
}

.about-image {
  grid-column: 1 / -1;
  height: clamp(420px, 58vw, 680px);
  margin-top: 18px;
}

.about-image img {
  object-position: center 35%;
}

.psychotherapy-section,
.podcast-section,
.testimonials-section {
  background: var(--ivory);
}

.section-heading {
  align-items: end;
}

.section-heading p,
.podcast-section p,
.impact-copy p {
  max-width: 760px;
  font-size: 1.1rem;
}

.psychotherapy-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 8%, rgba(200, 169, 107, 0.12), transparent 30%),
    linear-gradient(135deg, rgba(248, 245, 240, 0.98), rgba(231, 220, 203, 0.42)),
    var(--ivory);
}

.psychotherapy-section::before {
  background-image:
    repeating-linear-gradient(0deg, rgba(49, 42, 38, 0.032) 0 1px, transparent 1px 6px),
    repeating-linear-gradient(90deg, rgba(49, 42, 38, 0.026) 0 1px, transparent 1px 7px);
  opacity: 0.08;
}

.therapy-page .psychotherapy-section {
  padding-top: clamp(132px, 12vw, 172px);
}

.psychotherapy-hero {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(34px, 6vw, 92px);
  align-items: center;
}

.psychotherapy-copy {
  position: relative;
  max-width: 650px;
  padding-left: clamp(20px, 2.4vw, 34px);
}

.psychotherapy-copy::before {
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 0;
  width: 2px;
  content: "";
  background: linear-gradient(180deg, var(--magenta), rgba(73, 106, 82, 0.62));
}

.psychotherapy-copy h2 {
  margin-bottom: 18px;
}

.psychotherapy-lead {
  color: var(--green);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.75rem, 2.5vw, 2.8rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.08;
}

.psychotherapy-copy p:not(.psychotherapy-lead) {
  max-width: 590px;
  margin-bottom: 28px;
  font-size: 1.08rem;
}

.psychotherapy-image {
  height: clamp(520px, 52vw, 720px);
  border-radius: 32px;
  box-shadow: 0 26px 72px rgba(49, 42, 38, 0.11);
}

.psychotherapy-image::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(248, 245, 240, 0.18), rgba(248, 245, 240, 0) 42%),
    linear-gradient(180deg, rgba(248, 245, 240, 0.06), rgba(231, 220, 203, 0.24));
  border-radius: inherit;
}

.psychotherapy-image img {
  object-position: center 48%;
  filter: saturate(0.96) contrast(0.98) brightness(1.04);
}

.therapy-help,
.therapy-method,
.therapy-process,
.therapy-modality,
.therapy-faq,
.therapy-closing {
  margin-top: clamp(56px, 7vw, 96px);
}

.therapy-section-heading {
  max-width: 820px;
}

.therapy-section-heading h2,
.therapy-section-heading h3,
.therapy-method h2,
.therapy-method h3,
.therapy-modality h2,
.therapy-modality h3,
.therapy-closing h2,
.therapy-closing h3 {
  color: var(--magenta);
  font-size: clamp(2rem, 3.2vw, 3.8rem);
  font-weight: 600;
}

.therapy-signs {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 10px;
  margin-top: 30px;
}

.therapy-signs article {
  min-height: 220px;
  padding: 24px 18px;
  border: 1px solid rgba(49, 42, 38, 0.08);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(248, 245, 240, 0.84), rgba(248, 245, 240, 0.44)),
    rgba(231, 220, 203, 0.24);
  box-shadow: 0 18px 46px rgba(49, 42, 38, 0.045);
}

.therapy-signs svg,
.psychotherapy-pillars svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.therapy-signs svg {
  margin-bottom: 28px;
  color: var(--magenta);
}

.therapy-signs article:nth-child(even) svg {
  color: var(--green);
}

.therapy-signs p {
  margin-bottom: 0;
  color: var(--ink);
  font-size: 0.92rem;
  line-height: 1.5;
}

.therapy-method {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: start;
  padding: clamp(30px, 4.5vw, 54px);
  border: 1px solid rgba(165, 0, 84, 0.1);
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(248, 245, 240, 0.86), rgba(231, 220, 203, 0.34)),
    var(--ivory);
}

.therapy-method p {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1.06rem, 1.25vw, 1.18rem);
}

.psychotherapy-pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 20px;
}

.psychotherapy-pillars article {
  min-height: 210px;
  padding: 30px 28px;
  border: 1px solid rgba(165, 0, 84, 0.12);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(248, 245, 240, 0.86), rgba(248, 245, 240, 0.42)),
    rgba(231, 220, 203, 0.18);
  box-shadow: 0 18px 48px rgba(49, 42, 38, 0.045);
}

.psychotherapy-pillars article:nth-child(even) {
  border-color: rgba(73, 106, 82, 0.16);
}

.psychotherapy-pillars span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 24px;
  border: 1px solid rgba(165, 0, 84, 0.18);
  border-radius: 999px;
  background: rgba(248, 245, 240, 0.56);
  color: var(--magenta);
}

.psychotherapy-pillars article:nth-child(even) span {
  border-color: rgba(73, 106, 82, 0.2);
}

.psychotherapy-pillars article:nth-child(even) span,
.psychotherapy-pillars article:nth-child(even) h3,
.psychotherapy-pillars article:nth-child(even) svg {
  color: var(--green);
}

.psychotherapy-pillars h3 {
  margin-bottom: 0;
  color: var(--magenta);
  font-size: clamp(1.55rem, 2.2vw, 2.35rem);
}

.therapy-process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.therapy-process-grid article {
  min-height: 260px;
  padding: 28px;
  border: 1px solid rgba(49, 42, 38, 0.08);
  border-radius: 28px;
  background:
    linear-gradient(160deg, rgba(248, 245, 240, 0.92), rgba(231, 220, 203, 0.34)),
    var(--ivory);
  box-shadow: 0 22px 58px rgba(49, 42, 38, 0.055);
}

.therapy-process-grid span {
  display: inline-flex;
  margin-bottom: 58px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.therapy-process-grid h3 {
  margin-bottom: 12px;
  color: var(--magenta);
  font-size: clamp(1.7rem, 2.5vw, 2.55rem);
}

.therapy-process-grid article:nth-child(even) h3 {
  color: var(--green);
}

.therapy-process-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.therapy-modality {
  display: grid;
  grid-template-columns: minmax(280px, 0.46fr) minmax(0, 0.54fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: stretch;
  max-width: 1180px;
  padding: clamp(18px, 2vw, 26px);
  border: 1px solid rgba(165, 0, 84, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(248, 245, 240, 0.96), rgba(231, 220, 203, 0.38)),
    var(--ivory);
  box-shadow: 0 24px 60px rgba(49, 42, 38, 0.07);
}

.therapy-modality article {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(24px, 4vw, 54px);
}

.therapy-modality h2 {
  margin-bottom: 22px;
  font-size: clamp(3.2rem, 5.4vw, 6.4rem);
}

.therapy-modality-image {
  min-height: 560px;
  height: auto;
  border-radius: 6px;
}

.therapy-modality-image img {
  object-position: center 40%;
}

.therapy-modality-lead {
  max-width: 620px;
  color: var(--ink);
  font-size: clamp(1.2rem, 1.65vw, 1.46rem);
  line-height: 1.55;
}

.therapy-modality article p {
  max-width: 720px;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: clamp(1rem, 1.12vw, 1.08rem);
  line-height: 1.72;
}

.therapy-modality article p:last-child {
  margin-bottom: 0;
  color: var(--green);
  font-weight: 600;
}

.therapy-faq {
  display: grid;
  grid-template-columns: minmax(260px, 0.34fr) minmax(0, 0.66fr);
  gap: clamp(30px, 6vw, 92px);
  align-items: start;
}

.therapy-faq-list {
  display: grid;
  gap: 12px;
}

.therapy-faq details {
  border: 1px solid rgba(49, 42, 38, 0.08);
  border-radius: 24px;
  background: rgba(248, 245, 240, 0.68);
  box-shadow: 0 14px 36px rgba(49, 42, 38, 0.035);
}

.therapy-faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px;
  color: var(--ink);
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

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

.therapy-faq summary::after {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(165, 0, 84, 0.18);
  border-radius: 999px;
  content: "+";
  color: var(--magenta);
  font-size: 1rem;
  line-height: 26px;
  text-align: center;
}

.therapy-faq details[open] summary::after {
  content: "-";
}

.therapy-faq details p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--muted);
  font-size: 0.98rem;
}

.therapy-faq details p + p {
  padding-top: 0;
}

.therapy-closing {
  display: grid;
  grid-template-columns: minmax(260px, 0.44fr) minmax(0, 0.56fr);
  gap: clamp(30px, 6vw, 92px);
  align-items: center;
}

.therapy-closing-image {
  height: clamp(420px, 44vw, 620px);
  border-radius: 32px;
  box-shadow: 0 26px 72px rgba(49, 42, 38, 0.11);
}

.therapy-closing-image::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(248, 245, 240, 0.16), rgba(248, 245, 240, 0) 40%),
    linear-gradient(180deg, rgba(248, 245, 240, 0.05), rgba(231, 220, 203, 0.28));
  border-radius: inherit;
}

.therapy-closing-image img {
  object-position: center 36%;
  filter: saturate(0.96) contrast(0.98) brightness(1.04);
}

.therapy-closing-copy {
  max-width: 720px;
}

.therapy-closing-copy p {
  max-width: 650px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.35vw, 1.24rem);
}

.feature-grid,
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 48px;
}

.feature-card,
.value-grid article,
.program-list article {
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--ivory);
  box-shadow: 0 12px 38px rgba(49, 42, 38, 0.05);
}

.value-grid article {
  transition: transform 300ms var(--ease-soft), box-shadow 300ms var(--ease-soft), border-color 300ms var(--ease-soft);
}

.value-grid article:hover {
  border-color: rgba(165, 0, 84, 0.14);
  box-shadow: 0 18px 44px rgba(49, 42, 38, 0.09);
  transform: translateY(-3px);
}

.feature-card span {
  color: var(--gold);
  font-weight: 700;
}

.programs-section {
  background: var(--green);
  color: var(--ivory);
}

.programs-section .section-label,
.programs-section h2 {
  color: var(--ivory);
}

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

.program-image {
  grid-column: 1 / -1;
  height: clamp(340px, 42vw, 540px);
  margin-top: 28px;
}

.program-image::after {
  border-color: rgba(248, 245, 240, 0.22);
}

.program-image img {
  object-position: center 45%;
}

.program-list article {
  min-height: auto;
  background: rgba(248, 245, 240, 0.08);
  border-color: rgba(248, 245, 240, 0.18);
  box-shadow: none;
}

.program-list article a {
  display: block;
  height: 100%;
}

.program-list .program-symbol-list {
  --symbol-size: 56px;
  margin-bottom: 22px;
}

.program-list article:hover {
  background: rgba(248, 245, 240, 0.13);
  border-color: rgba(248, 245, 240, 0.32);
  transform: translateY(-2px);
}

.program-list h3,
.program-list p {
  color: var(--ivory);
}

.programs-actions {
  padding: 0 clamp(24px, 7vw, 112px) clamp(62px, 8vw, 104px);
  margin-top: calc(clamp(62px, 8vw, 104px) * -0.45);
  background: var(--green);
}

.programs-actions .button {
  width: fit-content;
}

.alphabet-section {
  overflow: hidden;
  padding-top: clamp(88px, 10vw, 142px);
  padding-bottom: clamp(88px, 10vw, 142px);
  background:
    radial-gradient(circle at 82% 8%, rgba(165, 0, 84, 0.08), transparent 30%),
    radial-gradient(circle at 12% 34%, rgba(73, 106, 82, 0.1), transparent 28%),
    linear-gradient(135deg, rgba(248, 245, 240, 0.98), rgba(231, 220, 203, 0.44)),
    var(--ivory);
}

.alphabet-section::before {
  background-image:
    repeating-linear-gradient(0deg, rgba(49, 42, 38, 0.032) 0 1px, transparent 1px 6px),
    repeating-linear-gradient(90deg, rgba(49, 42, 38, 0.026) 0 1px, transparent 1px 7px);
  opacity: 0.08;
}

.alphabet-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.56fr) minmax(320px, 0.44fr);
  gap: clamp(34px, 7vw, 106px);
  align-items: center;
  min-height: clamp(620px, 76vh, 820px);
}

.alphabet-hero-copy {
  max-width: 760px;
}

.alphabet-hero h2 {
  max-width: 880px;
  margin-bottom: 22px;
  font-size: clamp(3.2rem, 6.2vw, 6.7rem);
  line-height: 0.92;
}

.alphabet-title-icon {
  display: inline-grid;
  place-items: center;
  width: 0.68em;
  height: 0.68em;
  margin-right: 0.12em;
  color: var(--green);
  vertical-align: 0.02em;
  transition: color 260ms var(--ease-soft), transform 260ms var(--ease-soft);
}

.alphabet-title-icon svg,
.alphabet-program-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
}

.alphabet-hero-copy:hover .alphabet-title-icon {
  color: var(--magenta);
  transform: translateY(-2px);
}

.alphabet-title-text {
  display: inline;
}

.alphabet-lead {
  max-width: 760px;
  margin-bottom: 28px;
  color: var(--green);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.85rem, 3vw, 3.45rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.08;
}

.alphabet-lead span,
.alphabet-editorial span {
  color: var(--magenta);
}

.alphabet-hero-copy > p:not(.alphabet-lead) {
  max-width: 680px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: clamp(1.03rem, 1.2vw, 1.14rem);
}

.alphabet-hero-visual,
.alphabet-program-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 540px;
  margin: 0;
  border: 1px solid rgba(73, 106, 82, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(248, 245, 240, 0.72), rgba(231, 220, 203, 0.62)),
    var(--sand);
  box-shadow: 0 26px 72px rgba(49, 42, 38, 0.1);
  overflow: hidden;
}

.alphabet-hero-visual::before,
.alphabet-program-visual::before {
  position: absolute;
  inset: 24px;
  pointer-events: none;
  content: "";
  border: 1px solid rgba(165, 0, 84, 0.13);
  border-radius: 6px;
  transform: translateY(var(--placeholder-drift, 0));
  transition: transform 700ms var(--ease-soft), border-color 700ms var(--ease-soft);
}

.alphabet-hero-visual::after,
.alphabet-program-visual::after {
  position: absolute;
  right: clamp(-110px, -6vw, -70px);
  bottom: clamp(-120px, -7vw, -80px);
  width: clamp(260px, 28vw, 430px);
  aspect-ratio: 1;
  pointer-events: none;
  content: "";
  background: url("assets/isotipo-yessica-muller-original.png") center / contain no-repeat;
  opacity: 0.055;
  mix-blend-mode: multiply;
  transform: translateY(calc(var(--placeholder-drift, 0) * -1));
  transition: transform 700ms var(--ease-soft);
}

.alphabet-hero-visual:hover,
.alphabet-program-visual:hover {
  --placeholder-drift: -8px;
}

.alphabet-hero-visual div,
.alphabet-program-visual span {
  position: relative;
  z-index: 1;
  max-width: 320px;
  padding: 26px;
  color: var(--green);
  text-align: center;
}

.alphabet-hero-visual span {
  display: block;
  margin-bottom: 10px;
  color: var(--magenta);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.alphabet-hero-visual p,
.alphabet-program-visual span {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.55rem, 2.4vw, 2.7rem);
  font-style: italic;
  line-height: 1.08;
}

.alphabet-editorial {
  display: grid;
  grid-template-columns: 2px minmax(0, 0.58fr) minmax(300px, 0.42fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: stretch;
  margin-top: clamp(50px, 7vw, 92px);
}

.alphabet-editorial-line {
  width: 2px;
  background: linear-gradient(180deg, var(--magenta), rgba(73, 106, 82, 0.72), rgba(165, 0, 84, 0));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 1100ms var(--ease-soft);
}

.alphabet-section.is-visible .alphabet-editorial-line {
  transform: scaleY(1);
}

.alphabet-editorial-main,
.alphabet-editorial-aside {
  padding: clamp(26px, 4vw, 48px);
  border: 1px solid rgba(73, 106, 82, 0.14);
  border-radius: 8px;
  background: rgba(248, 245, 240, 0.7);
  box-shadow: 0 18px 52px rgba(49, 42, 38, 0.05);
}

.alphabet-editorial-aside {
  background: rgba(231, 220, 203, 0.5);
}

.alphabet-editorial p {
  margin-bottom: 0;
  color: var(--ink);
  font-size: clamp(1.02rem, 1.18vw, 1.14rem);
  line-height: 1.82;
}

.alphabet-editorial p + p {
  margin-top: 24px;
}

.alphabet-invitation {
  max-width: 780px;
  margin: clamp(44px, 6vw, 76px) auto 24px;
  color: var(--green);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 3.4vw, 4rem);
  font-style: italic;
  line-height: 1.04;
  text-align: center;
}

.alphabet-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 1050px;
  margin: 0 auto clamp(42px, 6vw, 76px);
}

.alphabet-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid rgba(73, 106, 82, 0.18);
  border-radius: 999px;
  background: rgba(248, 245, 240, 0.72);
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  transition: background 250ms var(--ease-soft), border-color 250ms var(--ease-soft), color 250ms var(--ease-soft), transform 250ms var(--ease-soft);
}

.alphabet-nav a:hover {
  border-color: rgba(165, 0, 84, 0.26);
  background: var(--magenta);
  color: var(--ivory);
  transform: translateY(-2px);
}

.alphabet-programs {
  display: grid;
  gap: clamp(26px, 4vw, 44px);
}

.alphabet-program {
  --program-accent: var(--green);
  --program-soft: rgba(73, 106, 82, 0.1);
  display: grid;
  grid-template-columns: minmax(340px, 0.44fr) minmax(420px, 0.56fr);
  grid-template-areas:
    "heading visual"
    "copy visual";
  gap: clamp(24px, 4vw, 54px);
  align-items: center;
  padding: clamp(28px, 5vw, 62px);
  border: 1px solid rgba(73, 106, 82, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(248, 245, 240, 0.9), var(--program-soft)),
    var(--ivory);
  box-shadow: 0 22px 64px rgba(49, 42, 38, 0.07);
  transition: border-color 300ms var(--ease-soft), box-shadow 300ms var(--ease-soft), transform 300ms var(--ease-soft);
}

.alphabet-program:hover {
  border-color: color-mix(in srgb, var(--program-accent) 34%, transparent);
  box-shadow: 0 30px 84px rgba(49, 42, 38, 0.1);
  transform: translateY(-3px);
}

.alphabet-program-reverse {
  grid-template-columns: minmax(420px, 0.5fr) minmax(340px, 0.5fr);
  grid-template-areas:
    "visual heading"
    "visual copy";
}

.alphabet-program-jade {
  --program-accent: #a50054;
  --program-soft: rgba(165, 0, 84, 0.08);
  --program-glow: rgba(165, 0, 84, 0.12);
}

.alphabet-program-natural {
  --program-accent: #004d40;
  --program-soft: rgba(0, 77, 64, 0.1);
  --program-glow: rgba(0, 77, 64, 0.12);
}

.alphabet-program-sun {
  --program-accent: #e8b547;
  --program-soft: rgba(232, 181, 71, 0.18);
  --program-glow: rgba(223, 175, 60, 0.2);
}

.alphabet-program-rose {
  --program-accent: #57b8b3;
  --program-soft: rgba(87, 184, 179, 0.12);
  --program-glow: rgba(92, 175, 169, 0.14);
}

.alphabet-program-compass {
  --program-accent: #315a72;
  --program-soft: rgba(231, 220, 203, 0.58);
  --program-glow: rgba(49, 90, 114, 0.12);
}

body.alphabet-program-page {
  --program-primary: var(--magenta);
  --program-secondary: #c98aa8;
  --program-soft: rgba(165, 0, 84, 0.08);
  --program-dark: #700038;
  --program-background: var(--ivory);
  --program-text: var(--ink);
  background:
    linear-gradient(180deg, rgba(248, 245, 240, 0.98), rgba(231, 220, 203, 0.78)),
    var(--program-background);
}

body.program-maestros {
  --program-primary: #a50054;
  --program-secondary: #c98aa8;
  --program-soft: rgba(165, 0, 84, 0.08);
  --program-dark: #700038;
}

body.program-habilidades {
  --program-primary: #004d40;
  --program-secondary: #6b9a86;
  --program-soft: rgba(0, 77, 64, 0.1);
  --program-dark: #00352c;
}

body.program-nutren {
  --program-primary: #e8b547;
  --program-secondary: #dfaf3c;
  --program-soft: rgba(232, 181, 71, 0.18);
  --program-dark: #8a6415;
}

body.program-vinculos {
  --program-primary: #57b8b3;
  --program-secondary: #5cafa9;
  --program-soft: rgba(87, 184, 179, 0.13);
  --program-dark: #2f6f6b;
}

body.program-brujulas {
  --program-primary: #315a72;
  --program-secondary: #3f6275;
  --program-soft: rgba(49, 90, 114, 0.11);
  --program-dark: #223f50;
}

.program-page-main {
  overflow: hidden;
}

.program-page-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(330px, 0.72fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
  min-height: min(860px, 92svh);
  padding: clamp(132px, 14vw, 184px) clamp(24px, 7vw, 112px) clamp(64px, 9vw, 108px);
  background:
    radial-gradient(circle at 84% 18%, var(--program-soft), transparent 34%),
    linear-gradient(135deg, rgba(248, 245, 240, 0.98), rgba(231, 220, 203, 0.5));
}

.program-page-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: var(--program-primary);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.program-page-eyebrow::before {
  width: 42px;
  height: 1px;
  content: "";
  background: currentColor;
}

.program-page-hero h1 {
  max-width: 820px;
  margin: 0 0 20px;
  color: var(--program-primary);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3.2rem, 6.1vw, 6.5rem);
  font-weight: 600;
  line-height: 0.91;
  overflow-wrap: break-word;
  text-wrap: balance;
}

.program-page-subtitle {
  max-width: 690px;
  margin: 0 0 26px;
  color: var(--program-dark);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.6rem, 2.65vw, 3rem);
  font-style: italic;
  line-height: 1.08;
}

.program-page-intro {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1rem, 1.15vw, 1.1rem);
}

.program-page-actions,
.program-page-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.program-page-actions .button.primary,
.program-page-cta-actions .button.primary {
  background: var(--program-primary);
}

.program-page-actions .button.primary:hover,
.program-page-cta-actions .button.primary:hover {
  background: var(--program-dark);
}

.program-page-actions .button.ghost,
.program-page-cta-actions .button.ghost {
  border-color: color-mix(in srgb, var(--program-primary) 32%, transparent);
  color: var(--program-dark);
}

.program-page-actions .button.ghost:hover,
.program-page-cta-actions .button.ghost:hover {
  background: var(--program-primary);
  color: var(--ivory);
}

.program-page-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(360px, 38vw, 600px);
  border: 1px solid color-mix(in srgb, var(--program-primary) 18%, transparent);
  border-radius: 8px;
  background:
    radial-gradient(circle at 70% 22%, var(--program-soft), transparent 38%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.7), var(--program-soft)),
    var(--ivory);
  box-shadow: 0 28px 80px rgba(49, 42, 38, 0.1);
  overflow: hidden;
}

body.program-habilidades .program-page-visual {
  background:
    linear-gradient(rgba(248, 245, 240, 0.94), rgba(248, 245, 240, 0.94)),
    url("assets/icons/icon-habilidades-para-la-vida-green.png") center / 72% no-repeat,
    radial-gradient(circle at 70% 22%, var(--program-soft), transparent 38%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.7), var(--program-soft)),
    var(--ivory);
}

body.program-nutren .program-page-visual {
  background:
    linear-gradient(rgba(248, 245, 240, 0.94), rgba(248, 245, 240, 0.94)),
    url("assets/icons/icon-emociones-que-nutren-gold.png") center / 72% no-repeat,
    radial-gradient(circle at 70% 22%, var(--program-soft), transparent 38%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.7), var(--program-soft)),
    var(--ivory);
}

body.program-vinculos .program-page-visual {
  background:
    linear-gradient(rgba(248, 245, 240, 0.94), rgba(248, 245, 240, 0.94)),
    url("assets/icons/icon-guardianes-de-los-vinculos-turquoise.png") center / 72% no-repeat,
    radial-gradient(circle at 70% 22%, var(--program-soft), transparent 38%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.7), var(--program-soft)),
    var(--ivory);
}

body.program-brujulas .program-page-visual {
  background:
    linear-gradient(rgba(248, 245, 240, 0.94), rgba(248, 245, 240, 0.94)),
    url("assets/icons/icon-brujulas-para-la-vida-blue.png") center / 72% no-repeat,
    radial-gradient(circle at 70% 22%, var(--program-soft), transparent 38%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.7), var(--program-soft)),
    var(--ivory);
}

.program-page-visual::before,
.program-page-visual::after {
  position: absolute;
  content: "";
  border: 1px solid color-mix(in srgb, var(--program-primary) 22%, transparent);
  border-radius: 50%;
  opacity: 0.42;
}

.program-page-visual::before {
  width: 76%;
  aspect-ratio: 1;
}

.program-page-visual::after {
  width: 46%;
  aspect-ratio: 1;
}

.program-page-icon {
  position: relative;
  z-index: 1;
  width: clamp(98px, 12vw, 158px);
  color: var(--program-primary);
  transition: color 260ms var(--ease-soft), transform 260ms var(--ease-soft);
}

.program-page-icon,
.program-page-related-card svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.program-page-icon.program-symbol {
  width: clamp(132px, 16vw, 212px);
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
}

.program-page-visual:hover .program-page-icon {
  color: var(--program-dark);
  transform: translateY(-3px);
}

.program-page-visual-label {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--program-dark);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.program-page-section {
  padding: clamp(62px, 9vw, 112px) clamp(24px, 7vw, 112px);
  background: rgba(248, 245, 240, 0.92);
}

.program-page-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.32fr) minmax(0, 0.68fr);
  gap: clamp(28px, 5vw, 72px);
  max-width: 1240px;
  margin: 0 auto;
}

.program-page-kicker {
  position: sticky;
  top: 120px;
  align-self: start;
  padding-top: 12px;
  border-top: 1px solid color-mix(in srgb, var(--program-primary) 36%, transparent);
  color: var(--program-primary);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.program-page-content {
  display: grid;
  gap: clamp(22px, 3vw, 36px);
}

.program-page-panel {
  padding: clamp(24px, 4vw, 46px);
  border: 1px solid rgba(49, 42, 38, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.7), rgba(248, 245, 240, 0.86)),
    var(--ivory);
}

.program-page-panel.is-soft {
  background:
    linear-gradient(135deg, rgba(248, 245, 240, 0.86), var(--program-soft)),
    var(--ivory);
}

.program-page-panel h2 {
  margin: 0 0 18px;
  color: var(--program-primary);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 3.6vw, 4rem);
  font-weight: 600;
  line-height: 1;
}

.program-page-panel h3 {
  margin: 0 0 14px;
  color: var(--program-dark);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.program-page-panel p {
  max-width: 830px;
  margin: 0 0 18px;
  color: var(--muted);
}

.program-page-panel p:last-child {
  margin-bottom: 0;
}

.program-page-list,
.program-page-tags,
.program-page-modalities {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.program-page-list li {
  padding-left: 22px;
  border-left: 2px solid color-mix(in srgb, var(--program-primary) 48%, transparent);
  color: var(--muted);
}

.program-page-tags {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.program-page-tags li,
.program-page-modalities li {
  padding: 14px 16px;
  border: 1px solid color-mix(in srgb, var(--program-primary) 16%, transparent);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.42);
  color: var(--program-dark);
  font-size: 0.92rem;
  font-weight: 600;
}

.program-page-modalities {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.program-page-emotis {
  display: grid;
  place-items: center;
  min-height: 320px;
  border: 1px dashed color-mix(in srgb, var(--program-primary) 34%, transparent);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 28%, var(--program-soft), transparent 42%),
    rgba(255, 255, 255, 0.42);
  color: var(--program-dark);
  text-align: center;
}

.program-page-emotis span {
  max-width: 220px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.5;
  text-transform: uppercase;
}

.program-page-related {
  padding: clamp(60px, 8vw, 98px) clamp(24px, 7vw, 112px);
  background: linear-gradient(180deg, rgba(231, 220, 203, 0.42), rgba(248, 245, 240, 0.96));
}

.program-page-related-inner {
  max-width: 1240px;
  margin: 0 auto;
}

.program-page-related h2 {
  max-width: 760px;
  margin: 0 0 28px;
  color: var(--magenta);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.4rem, 4.8vw, 5.1rem);
  font-weight: 600;
  line-height: 0.98;
}

.program-page-related-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.program-page-related-card {
  --related-color: var(--green);
  display: grid;
  min-height: 190px;
  padding: 20px;
  border: 1px solid color-mix(in srgb, var(--related-color) 18%, transparent);
  border-radius: 8px;
  background: rgba(248, 245, 240, 0.76);
  transition: background 250ms var(--ease-soft), border-color 250ms var(--ease-soft), transform 250ms var(--ease-soft);
}

.program-page-related-card:hover {
  border-color: color-mix(in srgb, var(--related-color) 42%, transparent);
  background: color-mix(in srgb, var(--related-color) 8%, var(--ivory));
  transform: translateY(-3px);
}

.program-page-related-card svg {
  width: 42px;
  margin-bottom: 28px;
  color: var(--related-color);
  transition: color 250ms var(--ease-soft), transform 250ms var(--ease-soft);
}

.program-page-related-card .program-symbol-related {
  --symbol-size: 54px;
  margin-bottom: 28px;
  transition: transform 250ms var(--ease-soft);
}

.program-page-related-card:hover svg {
  color: var(--magenta);
  transform: translateY(-2px);
}

.program-page-related-card:hover .program-symbol-related {
  transform: translateY(-2px);
}

.program-page-related-card span {
  align-self: end;
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.62rem;
  font-weight: 600;
  line-height: 1;
}

.program-page-cta {
  padding: clamp(62px, 8vw, 104px) clamp(24px, 7vw, 112px);
  background: var(--ivory);
  text-align: center;
}

.program-page-cta .program-symbol-cta {
  --symbol-size: 78px;
  margin: 0 auto 26px;
}

.program-page-cta h2 {
  max-width: 760px;
  margin: 0 auto 18px;
  color: var(--program-primary);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.5rem, 5vw, 5.6rem);
  font-weight: 600;
  line-height: 0.98;
}

.program-page-cta p {
  max-width: 650px;
  margin: 0 auto;
  color: var(--muted);
}

.program-page-cta-actions {
  justify-content: center;
}

body.academy-page {
  background:
    linear-gradient(180deg, rgba(248, 245, 240, 0.98), rgba(245, 242, 236, 0.92)),
    #f5f2ec;
}

.academy-page h1,
.academy-page h2,
.academy-page h3 {
  font-family: "DM Serif Display", "Cormorant Garamond", Georgia, serif;
  font-weight: 400;
}

.academy-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(330px, 0.6fr);
  gap: clamp(32px, 5vw, 76px);
  align-items: center;
  min-height: min(820px, 90svh);
  padding: clamp(132px, 13vw, 178px) clamp(24px, 7vw, 112px) clamp(64px, 8vw, 104px);
  background:
    radial-gradient(circle at 82% 14%, rgba(0, 77, 64, 0.11), transparent 34%),
    linear-gradient(135deg, #fff, #f5f2ec 70%);
}

.academy-kicker {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--magenta);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.academy-hero h1 {
  max-width: 920px;
  margin: 0 0 22px;
  color: var(--magenta);
  font-size: clamp(3.8rem, 7.2vw, 8rem);
  line-height: 0.92;
  text-wrap: balance;
}

.academy-hero p {
  max-width: 760px;
  margin: 0;
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.6rem, 2.7vw, 3rem);
  font-style: italic;
  line-height: 1.1;
}

.academy-hero-image {
  min-height: clamp(380px, 40vw, 610px);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 28px 80px rgba(49, 42, 38, 0.11);
}

.academy-hero-image img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
}

.academy-hero-symbols {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 24px);
  align-content: center;
  justify-items: center;
  padding: clamp(26px, 4vw, 58px);
  background:
    radial-gradient(circle at 24% 20%, rgba(165, 0, 84, 0.09), transparent 34%),
    radial-gradient(circle at 82% 72%, rgba(0, 77, 64, 0.08), transparent 38%),
    #f8f5f0;
}

.academy-hero-symbols img {
  width: clamp(82px, 11vw, 150px);
  height: clamp(82px, 11vw, 150px);
  min-height: 0;
  object-fit: contain;
  opacity: 0.94;
  filter: none;
}

.academy-hero-symbols img:first-child {
  grid-column: 1 / -1;
  width: clamp(128px, 17vw, 230px);
  height: clamp(128px, 17vw, 230px);
}

.academy-catalog,
.academy-detail,
.academy-form-shell {
  padding: clamp(64px, 9vw, 118px) clamp(24px, 7vw, 112px);
  background: #fff;
}

.academy-catalog-heading,
.academy-detail-heading {
  max-width: 980px;
  margin: 0 auto clamp(34px, 5vw, 64px);
  text-align: center;
}

.academy-catalog-heading h2,
.academy-detail-heading h1,
.academy-status h1 {
  margin: 0 0 16px;
  color: var(--magenta);
  font-size: clamp(3rem, 6vw, 6.6rem);
  line-height: 0.95;
  text-wrap: balance;
}

.academy-catalog-heading p,
.academy-detail-heading p,
.academy-status p {
  max-width: 780px;
  margin: 0 auto;
  color: var(--muted);
}

.academy-filters {
  display: grid;
  grid-template-columns: repeat(4, minmax(150px, 1fr)) auto;
  gap: 12px;
  max-width: 1240px;
  margin: 0 auto clamp(28px, 4vw, 48px);
  padding: 16px;
  border: 1px solid rgba(0, 77, 64, 0.1);
  border-radius: 8px;
  background: #f8f5f0;
}

.academy-filters label {
  display: grid;
  gap: 6px;
}

.academy-filters label span,
.academy-form label span,
.academy-form legend {
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.academy-filters select,
.academy-form input,
.academy-form select {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid rgba(0, 77, 64, 0.18);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.academy-results {
  max-width: 1240px;
  margin: 0 auto;
}

.academy-results > p {
  margin: 0 0 18px;
  color: var(--green);
  font-weight: 700;
}

.academy-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.6vw, 30px);
}

.academy-program-grid {
  align-items: stretch;
}

.academy-course-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.academy-card {
  --program-color: var(--green);
  display: grid;
  grid-template-rows: auto 1fr;
  border: 1px solid rgba(49, 42, 38, 0.1);
  border-radius: 8px;
  background: #f8f5f0;
  overflow: hidden;
  box-shadow: 0 20px 58px rgba(49, 42, 38, 0.08);
  transition: transform 240ms var(--ease-soft), box-shadow 240ms var(--ease-soft), border-color 240ms var(--ease-soft);
}

.academy-card:hover {
  border-color: color-mix(in srgb, var(--program-color) 34%, transparent);
  box-shadow: 0 28px 72px rgba(49, 42, 38, 0.12);
  transform: translateY(-3px);
}

.academy-card figure {
  aspect-ratio: 1.28;
  background: color-mix(in srgb, var(--program-color) 10%, #fff);
  overflow: hidden;
}

.academy-card figure:not(.academy-card-symbol) img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(0.96) brightness(1.05);
}

.academy-card-symbol {
  display: grid;
  place-items: center;
  min-height: clamp(240px, 28vw, 360px);
  padding: clamp(34px, 5vw, 72px);
  background:
    radial-gradient(circle at 50% 50%, color-mix(in srgb, var(--program-color) 14%, transparent), transparent 62%),
    #f8f5f0;
}

.academy-card-symbol .program-symbol-academy-cover {
  --symbol-size: clamp(156px, 18vw, 270px);
  width: var(--symbol-size);
  height: var(--symbol-size);
  object-fit: contain;
  filter: none;
  opacity: 0.96;
  transition: transform 260ms var(--ease-soft), opacity 260ms var(--ease-soft);
}

.academy-card:hover .program-symbol-academy-cover {
  opacity: 1;
  transform: translateY(-3px);
}

.academy-program-card:nth-child(4),
.academy-program-card:nth-child(5) {
  grid-column: span 1;
}

.academy-course-card {
  background: #fff;
}

.academy-emoti-placeholder {
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(220px, 22vw, 310px);
  padding: clamp(26px, 4vw, 52px);
  border-bottom: 1px solid rgba(49, 42, 38, 0.08);
  background:
    radial-gradient(circle at 52% 40%, color-mix(in srgb, var(--program-color) 12%, transparent), transparent 58%),
    linear-gradient(135deg, #fff, #f8f5f0);
}

.academy-emoti-placeholder .program-symbol-course-watermark {
  --symbol-size: clamp(92px, 10vw, 148px);
  width: var(--symbol-size);
  height: var(--symbol-size);
  object-fit: contain;
  opacity: 0.18;
  filter: grayscale(0.18);
}

.academy-emoti-placeholder figcaption {
  position: absolute;
  inset: auto clamp(18px, 3vw, 26px) clamp(16px, 2.5vw, 24px);
  display: grid;
  gap: 2px;
  color: var(--program-color);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
}

.academy-emoti-placeholder figcaption strong {
  color: var(--green);
}

.academy-card-body {
  display: grid;
  gap: 14px;
  padding: 22px;
}

.academy-card-program {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--program-color);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.academy-card-program::before {
  width: 26px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  content: "";
}

.academy-card-program.has-program-symbol::before {
  content: none;
}

.academy-card-program .program-symbol-academy {
  --symbol-size: 22px;
  margin-right: 2px;
}

.academy-card h3 {
  margin: 0;
  color: var(--green);
  font-size: clamp(2rem, 2.8vw, 3.2rem);
  line-height: 1;
}

.academy-card p {
  margin: 0;
  color: var(--muted);
}

.academy-card-meta,
.academy-tags,
.academy-price {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.academy-card-meta span,
.academy-tags span {
  padding: 6px 9px;
  border: 1px solid rgba(0, 77, 64, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.54);
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 700;
}

.academy-price {
  align-items: baseline;
  color: var(--green);
  font-weight: 800;
}

.academy-price s {
  color: var(--muted);
  font-weight: 600;
}

.academy-detail-hero {
  --program-color: var(--green);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.55fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
  padding: clamp(132px, 13vw, 178px) clamp(24px, 7vw, 112px) clamp(54px, 8vw, 92px);
  background:
    radial-gradient(circle at 84% 16%, color-mix(in srgb, var(--program-color) 14%, transparent), transparent 34%),
    #f5f2ec;
}

.academy-detail-hero h1 {
  margin: 0 0 14px;
  color: var(--program-color);
  font-size: clamp(3.4rem, 6.4vw, 7rem);
  line-height: 0.94;
}

.academy-detail-hero p {
  max-width: 760px;
  color: var(--muted);
}

.academy-detail-hero .academy-detail-subtitle {
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.5rem, 2.4vw, 2.8rem);
  font-style: italic;
  line-height: 1.1;
}

.academy-detail-cover {
  min-height: clamp(360px, 38vw, 560px);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 28px 78px rgba(49, 42, 38, 0.11);
}

.academy-detail-cover:not(.academy-detail-symbol) img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.academy-detail-symbol {
  display: grid;
  place-items: center;
  padding: clamp(42px, 6vw, 78px);
  background:
    radial-gradient(circle at 50% 46%, color-mix(in srgb, var(--program-color) 15%, transparent), transparent 62%),
    #f8f5f0;
}

.academy-detail-symbol .program-symbol-academy-detail {
  --symbol-size: clamp(210px, 27vw, 390px);
  width: var(--symbol-size);
  height: var(--symbol-size);
  object-fit: contain;
  filter: none;
}

.academy-course-hero-placeholder {
  border: 1px solid rgba(49, 42, 38, 0.1);
}

.academy-course-hero-placeholder .program-symbol-academy-detail {
  opacity: 0.2;
}

.academy-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  padding: 112px clamp(24px, 7vw, 112px) 0;
  background: #f5f2ec;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.academy-breadcrumb a {
  color: var(--green);
  text-decoration: none;
}

.academy-breadcrumb a:hover,
.academy-breadcrumb a:focus-visible {
  color: var(--magenta);
}

.academy-breadcrumb span:last-child {
  color: var(--magenta);
}

.academy-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.64fr) minmax(280px, 0.36fr);
  gap: clamp(24px, 4vw, 52px);
  max-width: 1240px;
  margin: 0 auto;
}

.academy-panel {
  padding: clamp(24px, 3.5vw, 42px);
  border: 1px solid rgba(49, 42, 38, 0.1);
  border-radius: 8px;
  background: #f8f5f0;
}

.academy-panel + .academy-panel {
  margin-top: 18px;
}

.academy-panel + .academy-panel {
  margin-top: 18px;
}

.academy-panel h2 {
  margin: 0 0 16px;
  color: var(--magenta);
  font-size: clamp(2rem, 3.6vw, 4rem);
  line-height: 1;
}

.academy-panel ul,
.academy-panel ol {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.academy-aside {
  position: sticky;
  top: 116px;
  align-self: start;
}

.academy-summary-list {
  display: grid;
  gap: 12px;
  margin: 0 0 24px;
}

.academy-summary-list div {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(49, 42, 38, 0.08);
}

.academy-summary-list dt {
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.academy-summary-list dd {
  margin: 0;
  color: var(--muted);
}

.academy-form-shell {
  min-height: 100svh;
  padding-top: clamp(132px, 13vw, 178px);
}

.academy-form-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(24px, 4vw, 54px);
  max-width: 1180px;
  margin: 0 auto;
}

.academy-form {
  display: grid;
  gap: 16px;
  padding: clamp(24px, 3.4vw, 42px);
  border: 1px solid rgba(0, 77, 64, 0.12);
  border-radius: 8px;
  background: #f8f5f0;
}

.academy-form label {
  display: grid;
  gap: 6px;
}

.academy-form .academy-honeypot {
  position: absolute;
  left: -10000px;
}

.academy-form fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.academy-form .checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
}

.academy-form .checkbox-label input {
  width: auto;
  min-height: 0;
  margin-top: 7px;
}

.academy-form-status {
  min-height: 24px;
  color: var(--magenta);
  font-weight: 700;
}

.academy-status {
  display: grid;
  place-items: center;
  min-height: 100svh;
  padding: clamp(48px, 8vw, 96px);
  background: #f8f5f0;
  text-align: center;
}

body.wellbeing-page {
  background:
    linear-gradient(180deg, rgba(248, 245, 240, 0.98), rgba(231, 220, 203, 0.72)),
    var(--ivory);
}

.wellbeing-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.66fr);
  gap: clamp(34px, 5vw, 82px);
  align-items: center;
  min-height: min(860px, 92svh);
  padding: clamp(132px, 14vw, 182px) clamp(24px, 7vw, 112px) clamp(60px, 8vw, 104px);
  background:
    radial-gradient(circle at 84% 18%, rgba(0, 77, 64, 0.12), transparent 34%),
    linear-gradient(135deg, rgba(248, 245, 240, 0.96), rgba(231, 220, 203, 0.58));
  overflow: hidden;
}

.wellbeing-hero h1 {
  margin: 0 0 22px;
  color: var(--magenta);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(4.5rem, 9vw, 9.4rem);
  font-weight: 600;
  line-height: 0.9;
}

.wellbeing-hero-kicker {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--magenta);
  font-size: clamp(0.9rem, 1vw, 1.08rem);
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}

.wellbeing-lead {
  max-width: 790px;
  margin: 0;
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.75rem, 3vw, 3.2rem);
  font-style: italic;
  line-height: 1.08;
}

.wellbeing-index {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.wellbeing-index a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 10px 15px;
  border: 1px solid rgba(0, 77, 64, 0.18);
  border-radius: 999px;
  background: rgba(248, 245, 240, 0.72);
  color: #004d40;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  transition: background 250ms var(--ease-soft), color 250ms var(--ease-soft), transform 250ms var(--ease-soft), border-color 250ms var(--ease-soft);
}

.wellbeing-index a:hover {
  border-color: rgba(165, 0, 84, 0.28);
  background: var(--magenta);
  color: var(--ivory);
  transform: translateY(-2px);
}

.wellbeing-hero-visual {
  min-height: clamp(420px, 42vw, 650px);
  border: 1px solid rgba(0, 77, 64, 0.14);
  border-radius: 8px;
  background: var(--sand);
  box-shadow: 0 28px 80px rgba(49, 42, 38, 0.12);
  overflow: hidden;
}

.wellbeing-hero-visual img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.9) contrast(0.96) brightness(1.04);
}

.wellbeing-intro {
  padding: clamp(52px, 8vw, 94px) clamp(24px, 7vw, 112px);
  background: var(--ivory);
}

.wellbeing-intro-inner {
  max-width: 1060px;
  margin: 0 auto;
  padding-left: clamp(22px, 4vw, 52px);
  border-left: 1px solid rgba(165, 0, 84, 0.22);
}

.wellbeing-intro p {
  margin: 0;
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.8rem, 3.3vw, 3.85rem);
  font-style: italic;
  line-height: 1.08;
}

.wellbeing-alphabet,
.wellbeing-courses {
  padding: clamp(64px, 9vw, 118px) clamp(24px, 7vw, 112px);
}

.wellbeing-alphabet {
  background:
    radial-gradient(circle at 84% 10%, rgba(165, 0, 84, 0.08), transparent 34%),
    var(--ivory);
}

.wellbeing-courses {
  background:
    linear-gradient(180deg, rgba(231, 220, 203, 0.42), rgba(248, 245, 240, 0.96)),
    var(--sand);
}

.wellbeing-section-heading {
  max-width: 980px;
  margin: 0 auto clamp(38px, 6vw, 72px);
  text-align: center;
}

.wellbeing-section-heading h2 {
  margin: 0 0 18px;
  color: var(--magenta);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3rem, 7vw, 7.2rem);
  font-weight: 600;
  line-height: 0.92;
}

.wellbeing-section-heading p {
  margin: 0 auto;
  max-width: 790px;
  color: var(--muted);
  font-size: clamp(1rem, 1.18vw, 1.12rem);
}

.wellbeing-program-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2.8vw, 34px);
  max-width: 1240px;
  margin: 0 auto;
}

.wellbeing-program-card {
  --program-primary: var(--green);
  --program-soft: var(--green-soft);
  --program-dark: var(--green);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(160px, 0.38fr);
  gap: 22px;
  align-items: start;
  min-height: 430px;
  padding: clamp(24px, 3.5vw, 40px);
  border: 1px solid color-mix(in srgb, var(--program-primary) 16%, transparent);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), var(--program-soft)),
    var(--ivory);
  box-shadow: 0 22px 60px rgba(49, 42, 38, 0.08);
  transition: border-color 260ms var(--ease-soft), box-shadow 260ms var(--ease-soft), transform 260ms var(--ease-soft);
}

.wellbeing-program-card:first-child {
  grid-column: span 2;
}

.wellbeing-program-card:hover {
  border-color: color-mix(in srgb, var(--program-primary) 38%, transparent);
  box-shadow: 0 30px 82px rgba(49, 42, 38, 0.11);
  transform: translateY(-3px);
}

.wellbeing-program-icon {
  grid-column: 1 / -1;
  width: 58px;
  color: var(--program-primary);
  transition: color 250ms var(--ease-soft), transform 250ms var(--ease-soft);
}

.wellbeing-program-icon svg {
  width: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.wellbeing-program-icon .program-symbol-card {
  --symbol-size: 76px;
}

.wellbeing-program-card:hover .wellbeing-program-icon {
  color: var(--magenta);
  transform: translateY(-3px);
}

.wellbeing-program-card h3 {
  margin: 0 0 10px;
  color: var(--program-primary);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.3rem, 4vw, 4.8rem);
  font-weight: 600;
  line-height: 0.96;
  text-wrap: balance;
}

.wellbeing-program-subtitle {
  margin: 0 0 16px;
  color: var(--program-dark);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.25rem, 1.8vw, 1.75rem);
  font-style: italic;
  line-height: 1.12;
}

.wellbeing-program-card p:not(.wellbeing-program-subtitle) {
  margin: 0;
  color: var(--muted);
}

.wellbeing-program-image,
.course-image {
  display: grid;
  place-items: center;
  min-height: 250px;
  border: 1px dashed color-mix(in srgb, var(--program-primary, #004d40) 28%, transparent);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 28%, var(--program-soft, rgba(0, 77, 64, 0.1)), transparent 42%),
    rgba(255, 255, 255, 0.46);
  color: var(--program-dark, #004d40);
  text-align: center;
}

.wellbeing-program-image span,
.course-image span {
  max-width: 180px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.5;
  text-transform: uppercase;
}

.wellbeing-program-card .button {
  grid-column: 1 / -1;
  width: fit-content;
  border-color: color-mix(in srgb, var(--program-primary) 28%, transparent);
  color: var(--program-dark);
}

.wellbeing-program-card .button:hover {
  background: var(--program-primary);
  color: var(--ivory);
}

.course-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 34px);
  max-width: 1120px;
  margin: 0 auto;
}

.course-card {
  display: grid;
  grid-template-columns: minmax(180px, 0.42fr) minmax(0, 0.58fr);
  gap: 24px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(49, 42, 38, 0.1);
  border-radius: 8px;
  background: rgba(248, 245, 240, 0.78);
  box-shadow: 0 20px 56px rgba(49, 42, 38, 0.08);
}

.course-status {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--magenta);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.course-card h3 {
  margin: 0 0 12px;
  color: #004d40;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 3vw, 3.4rem);
  font-weight: 600;
  line-height: 1;
}

.course-card p {
  margin: 0 0 18px;
  color: var(--muted);
}

.course-card dl {
  display: grid;
  gap: 8px;
  margin: 0 0 20px;
}

.course-card dl div {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(49, 42, 38, 0.08);
}

.course-card dt {
  color: #004d40;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.course-card dd {
  margin: 0;
  color: var(--muted);
}

.alphabet-program-heading {
  grid-area: heading;
  align-self: end;
}

.alphabet-program-number {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--program-accent);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.alphabet-program-title-row {
  display: flex;
  align-items: flex-start;
  gap: clamp(12px, 1.6vw, 20px);
}

.alphabet-program-icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 clamp(46px, 5vw, 64px);
  width: clamp(46px, 5vw, 64px);
  height: clamp(46px, 5vw, 64px);
  margin-top: 0.12em;
  color: var(--program-accent);
  transition: color 260ms var(--ease-soft), transform 260ms var(--ease-soft);
}

.alphabet-program:hover .alphabet-program-icon {
  color: var(--magenta);
  transform: translateY(-3px);
}

.alphabet-program h3 {
  margin-bottom: 16px;
  color: var(--magenta);
  font-size: clamp(2.2rem, 4.2vw, 4.9rem);
  font-weight: 600;
  line-height: 0.94;
}

.alphabet-program-heading p {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--program-accent);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.5rem, 2.2vw, 2.45rem);
  font-style: italic;
  line-height: 1.08;
}

.alphabet-program-visual {
  grid-area: visual;
  min-height: clamp(380px, 42vw, 590px);
  background:
    radial-gradient(circle at 68% 24%, var(--program-glow, rgba(73, 106, 82, 0.1)), transparent 36%),
    linear-gradient(135deg, rgba(248, 245, 240, 0.74), var(--program-soft)),
    var(--sand);
}

.alphabet-program-copy {
  grid-area: copy;
  align-self: start;
}

.alphabet-program-copy p {
  max-width: 720px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.1vw, 1.06rem);
  line-height: 1.78;
}

.alphabet-program-copy .button {
  margin-top: 14px;
}

.alphabet-closing {
  max-width: 980px;
  margin: clamp(50px, 7vw, 92px) auto 0;
  padding-top: clamp(32px, 5vw, 54px);
  border-top: 1px solid rgba(73, 106, 82, 0.18);
  text-align: center;
}

.alphabet-closing h2 {
  margin-bottom: 28px;
  color: var(--green);
  font-size: clamp(2rem, 3.4vw, 4rem);
  font-style: italic;
  font-weight: 500;
}

.alphabet-closing-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.program-list p {
  margin-bottom: 0;
  opacity: 0.82;
}

.speaking-section {
  align-items: center;
  background: var(--sand);
}

.speaking-copy p {
  max-width: 680px;
  margin-bottom: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 600;
  font-family: "Montserrat", Arial, sans-serif;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.button.primary {
  background: var(--magenta);
  color: var(--ivory);
}

.button.ghost {
  border-color: rgba(73, 106, 82, 0.6);
  color: var(--green);
  background: rgba(231, 220, 203, 0.54);
}

.button.primary,
.button.ghost {
  transition: transform 250ms ease-out, background 250ms ease-out, border-color 250ms ease-out, color 250ms ease-out, box-shadow 250ms ease-out;
}

.button.primary:hover,
.button.ghost:hover {
  box-shadow: 0 10px 24px rgba(49, 42, 38, 0.08);
  transform: translateY(-2px);
}

.button.ghost:hover {
  border-color: var(--green);
  color: var(--ivory);
  background: var(--green);
}

.button.primary:hover {
  background: var(--green);
}

.reflections-section {
  align-items: start;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 18%, rgba(73, 106, 82, 0.1), transparent 28%),
    linear-gradient(135deg, rgba(248, 245, 240, 0.98), rgba(231, 220, 203, 0.38)),
    var(--ivory);
}

.reflections-section::before,
.reflections-detail-section::before {
  background-image:
    repeating-linear-gradient(0deg, rgba(49, 42, 38, 0.032) 0 1px, transparent 1px 6px),
    repeating-linear-gradient(90deg, rgba(49, 42, 38, 0.026) 0 1px, transparent 1px 7px);
  opacity: 0.08;
}

.reflections-intro {
  max-width: 700px;
}

.reflections-intro h2 {
  margin-bottom: 20px;
  color: var(--magenta);
}

.reflections-intro p {
  max-width: 650px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 1.08rem;
}

.reflection-feature-list {
  display: grid;
  gap: 18px;
}

.reflection-feature-list article {
  display: grid;
  grid-template-columns: minmax(120px, 0.36fr) minmax(0, 0.64fr);
  gap: 20px;
  align-items: stretch;
  min-height: 220px;
  padding: 18px;
  border: 1px solid rgba(73, 106, 82, 0.16);
  border-radius: 8px;
  background: rgba(248, 245, 240, 0.72);
  box-shadow: 0 18px 52px rgba(49, 42, 38, 0.06);
}

.reflection-feature-list article.no-image {
  grid-template-columns: 1fr;
  padding: 26px;
}

.reflection-feature-list img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
  border-radius: 6px;
}

.reflection-feature-list span,
.reflection-category {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.reflection-feature-list h3 {
  margin-bottom: 10px;
  color: var(--magenta);
  font-size: clamp(1.55rem, 2vw, 2.1rem);
}

.reflection-feature-list p {
  margin-bottom: 16px;
  color: var(--muted);
  line-height: 1.55;
}

.reflection-feature-list time,
.reflection-entry time {
  display: block;
  color: rgba(49, 42, 38, 0.58);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.reflections-detail-section {
  overflow: hidden;
  padding-top: clamp(132px, 12vw, 172px);
  background:
    radial-gradient(circle at 84% 10%, rgba(165, 0, 84, 0.08), transparent 30%),
    linear-gradient(135deg, rgba(248, 245, 240, 0.98), rgba(231, 220, 203, 0.44)),
    var(--ivory);
}

.reflections-hero {
  display: grid;
  grid-template-columns: minmax(280px, 0.58fr) minmax(240px, 0.42fr);
  gap: clamp(34px, 6vw, 92px);
  align-items: center;
}

.reflections-hero-copy {
  position: relative;
  max-width: 920px;
  padding-left: clamp(20px, 2.4vw, 34px);
}

.reflections-hero-copy::before {
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 0;
  width: 2px;
  content: "";
  background: linear-gradient(180deg, var(--magenta), rgba(73, 106, 82, 0.62));
}

.reflections-hero h1 {
  max-width: 920px;
  margin-bottom: 24px;
  color: var(--magenta);
  font-size: clamp(2.4rem, 5.4vw, 6.2rem);
  font-weight: 500;
  line-height: 0.98;
}

.reflections-hero p {
  max-width: 740px;
  color: var(--ink);
  font-size: clamp(1.05rem, 1.35vw, 1.24rem);
}

.reflection-manifesto {
  max-width: 780px;
}

.reflection-manifesto p {
  max-width: 780px;
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(0.98rem, 1.08vw, 1.08rem);
  font-weight: 700;
  line-height: 1.72;
}

.reflection-manifesto p:last-child {
  margin-bottom: 0;
  color: var(--magenta);
}

.reflections-hero-image {
  height: clamp(460px, 54vw, 680px);
  border-radius: 32px;
  box-shadow: 0 26px 72px rgba(49, 42, 38, 0.11);
}

.reflection-category-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: clamp(46px, 6vw, 82px);
}

.reflection-category-strip span {
  padding: 10px 14px;
  border: 1px solid rgba(73, 106, 82, 0.18);
  border-radius: 999px;
  background: rgba(248, 245, 240, 0.7);
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reflection-subscribe {
  display: grid;
  grid-template-columns: minmax(260px, 0.44fr) minmax(280px, 0.56fr);
  gap: clamp(24px, 5vw, 62px);
  align-items: center;
  margin-top: clamp(42px, 6vw, 78px);
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid rgba(73, 106, 82, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(248, 245, 240, 0.95), rgba(231, 220, 203, 0.44)),
    var(--ivory);
  box-shadow: 0 22px 60px rgba(49, 42, 38, 0.07);
}

.reflection-subscribe h2 {
  margin-bottom: 14px;
  color: var(--magenta);
  font-size: clamp(2rem, 3.4vw, 4rem);
  line-height: 1;
}

.reflection-subscribe p {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.reflection-subscribe-form {
  width: 100%;
}

.reflection-subscribe-form form {
  display: grid;
  gap: 14px;
}

.reflection-subscribe-form label {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.reflection-subscribe-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: stretch;
}

.reflection-subscribe-form input[type="email"] {
  width: 100%;
  min-height: 54px;
  padding: 13px 16px;
  border: 1px solid rgba(73, 106, 82, 0.24);
  border-radius: 6px;
  background: rgba(248, 245, 240, 0.92);
  color: var(--ink);
  font: inherit;
  font-size: 1rem;
}

.reflection-subscribe-form input[type="email"]:focus {
  outline: 2px solid rgba(165, 0, 84, 0.22);
  border-color: var(--magenta);
}

.reflection-subscribe-form .button {
  min-height: 54px;
  white-space: nowrap;
  cursor: pointer;
}

.reflection-consent {
  max-width: 720px !important;
  color: rgba(49, 42, 38, 0.62) !important;
  font-size: 0.82rem !important;
  line-height: 1.5 !important;
}

.reflection-subscribe-form .row-success,
.reflection-subscribe .row-success {
  padding: 26px;
  border: 1px solid rgba(73, 106, 82, 0.18);
  border-radius: 8px;
  background: rgba(73, 106, 82, 0.08);
}

.reflection-subscribe .row-success h3 {
  margin-bottom: 8px;
  color: var(--green);
  font-size: clamp(1.8rem, 2.4vw, 2.6rem);
}

.reflection-editorial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: clamp(32px, 5vw, 62px);
}

.reflection-entry {
  min-height: 330px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(49, 42, 38, 0.08);
  border-radius: 8px;
  background:
    linear-gradient(160deg, rgba(248, 245, 240, 0.92), rgba(231, 220, 203, 0.34)),
    var(--ivory);
  box-shadow: 0 22px 58px rgba(49, 42, 38, 0.055);
}

.reflection-entry.featured {
  display: grid;
  grid-column: span 2;
  grid-template-columns: minmax(240px, 0.46fr) minmax(0, 0.54fr);
  gap: clamp(22px, 3vw, 36px);
  align-items: stretch;
}

.reflection-entry figure {
  min-height: 360px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
}

.reflection-entry figure.reflection-cover-card {
  min-height: 300px;
  background: var(--ivory);
}

.reflection-entry img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reflection-cover-card img {
  object-position: center;
}

.reflection-entry h2,
.reflection-entry h3 {
  margin-bottom: 14px;
  color: var(--magenta);
  font-weight: 600;
}

.reflection-entry h2 {
  font-size: clamp(2rem, 3.5vw, 4rem);
  line-height: 1;
}

.reflection-entry h3 {
  font-size: clamp(1.65rem, 2.4vw, 2.35rem);
  line-height: 1.05;
}

.reflection-entry p {
  margin-bottom: 18px;
  color: var(--muted);
}

.reflection-entry .button {
  margin-top: 24px;
}

.reflection-entry > a:not(.button) {
  display: inline-flex;
  margin-top: 22px;
  color: var(--green);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.reflection-article {
  padding-top: clamp(132px, 12vw, 172px);
  background:
    radial-gradient(circle at 84% 10%, rgba(165, 0, 84, 0.08), transparent 30%),
    linear-gradient(135deg, rgba(248, 245, 240, 0.98), rgba(231, 220, 203, 0.44)),
    var(--ivory);
}

.reflection-article::before {
  background-image:
    repeating-linear-gradient(0deg, rgba(49, 42, 38, 0.032) 0 1px, transparent 1px 6px),
    repeating-linear-gradient(90deg, rgba(49, 42, 38, 0.026) 0 1px, transparent 1px 7px);
  opacity: 0.08;
}

.reflection-article-header,
.reflection-article-body {
  max-width: 860px;
  margin-right: auto;
  margin-left: auto;
}

.reflection-back-link {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.reflection-article-header h1 {
  max-width: 920px;
  margin-bottom: 22px;
  color: var(--magenta);
  font-size: clamp(2.6rem, 6vw, 6.6rem);
  font-weight: 500;
  line-height: 0.98;
}

.reflection-article-header p {
  max-width: 760px;
  color: var(--ink);
  font-size: clamp(1.08rem, 1.55vw, 1.32rem);
  font-weight: 600;
}

.reflection-article-header time {
  display: inline-flex;
  margin-top: 20px;
  color: rgba(49, 42, 38, 0.58);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.reflection-article-image {
  max-width: 1120px;
  height: auto;
  margin: clamp(36px, 6vw, 72px) auto;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 26px 72px rgba(49, 42, 38, 0.11);
}

.reflection-article-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: center;
}

.reflection-article-body {
  color: var(--ink);
}

.reflection-article-body p,
.reflection-article-body li {
  font-size: clamp(1.02rem, 1.2vw, 1.16rem);
  line-height: 1.85;
}

.reflection-article-body p {
  margin-bottom: 22px;
}

.reflection-article-body h2 {
  margin: clamp(46px, 6vw, 72px) 0 20px;
  color: var(--magenta);
  font-size: clamp(2rem, 3.4vw, 4rem);
  font-weight: 600;
  line-height: 1;
}

.reflection-article-body ul {
  display: grid;
  gap: 12px;
  margin: 0 0 28px;
  padding-left: 22px;
}

.reflection-article-body strong {
  color: var(--ink);
}

.reflection-article-body blockquote {
  margin: clamp(42px, 6vw, 68px) 0;
  padding: clamp(26px, 4vw, 42px);
  border-left: 3px solid var(--green);
  background: rgba(73, 106, 82, 0.08);
}

.reflection-article-body blockquote p {
  margin-bottom: 12px;
  color: var(--green);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.75rem, 3vw, 3rem);
  font-style: italic;
  line-height: 1.12;
}

.reflection-article-body cite {
  color: var(--muted);
  font-style: normal;
  font-weight: 700;
}

.reflection-author-signature {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-top: clamp(42px, 6vw, 72px);
  padding: 18px 22px;
  border: 1px solid rgba(73, 106, 82, 0.14);
  border-radius: 8px;
  background: rgba(248, 245, 240, 0.76);
}

.reflection-author-signature img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  object-position: center 18%;
  border-radius: 50%;
}

.reflection-author-signature span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reflection-author-signature strong {
  display: block;
  color: var(--magenta);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 3vw, 3rem);
  font-style: italic;
  font-weight: 600;
  line-height: 1;
}

.speaking-panel {
  padding: clamp(26px, 4vw, 46px);
  border: 1px solid rgba(73, 106, 82, 0.22);
  border-radius: 8px;
  background: var(--ivory);
  box-shadow: var(--shadow);
}

.speaking-image {
  grid-column: 1 / -1;
  height: clamp(420px, 48vw, 640px);
  margin-top: 14px;
}

.speaking-image img {
  object-position: center 46%;
}

.speaking-detail-section {
  overflow: hidden;
  padding-top: clamp(132px, 12vw, 172px);
  background:
    radial-gradient(circle at 82% 8%, rgba(200, 169, 107, 0.12), transparent 30%),
    linear-gradient(135deg, rgba(248, 245, 240, 0.98), rgba(231, 220, 203, 0.42)),
    var(--ivory);
}

.speaking-detail-section::before {
  background-image:
    repeating-linear-gradient(0deg, rgba(49, 42, 38, 0.032) 0 1px, transparent 1px 6px),
    repeating-linear-gradient(90deg, rgba(49, 42, 38, 0.026) 0 1px, transparent 1px 7px);
  opacity: 0.08;
}

.speaking-detail-hero {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(34px, 6vw, 92px);
  align-items: center;
}

.speaking-detail-copy {
  position: relative;
  max-width: 680px;
  padding-left: clamp(20px, 2.4vw, 34px);
}

.speaking-detail-copy::before {
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 0;
  width: 2px;
  content: "";
  background: linear-gradient(180deg, var(--magenta), rgba(73, 106, 82, 0.62));
}

.speaking-lead {
  color: var(--green);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.75rem, 2.5vw, 2.8rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.08;
}

.speaking-detail-copy p:not(.speaking-lead) {
  max-width: 620px;
  margin-bottom: 0;
  font-size: 1.08rem;
}

.speaking-detail-image {
  height: clamp(520px, 52vw, 720px);
  border-radius: 32px;
  box-shadow: 0 26px 72px rgba(49, 42, 38, 0.11);
}

.speaking-detail-image::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(248, 245, 240, 0.18), rgba(248, 245, 240, 0) 42%),
    linear-gradient(180deg, rgba(248, 245, 240, 0.06), rgba(231, 220, 203, 0.24));
  border-radius: inherit;
}

.speaking-detail-image img {
  object-position: center 46%;
  filter: saturate(0.96) contrast(0.98) brightness(1.04);
}

.speaking-goals,
.speaking-topics,
.speaking-differential,
.speaking-closing,
.speaking-community {
  margin-top: clamp(56px, 7vw, 96px);
}

.speaking-section-heading {
  max-width: 820px;
}

.speaking-section-heading h2,
.speaking-closing h2,
.speaking-community h2 {
  color: var(--magenta);
  font-size: clamp(2rem, 3.2vw, 3.8rem);
  font-weight: 600;
}

.speaking-pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.speaking-pillar-grid article {
  min-height: 260px;
  padding: 28px;
  border: 1px solid rgba(49, 42, 38, 0.08);
  border-radius: 28px;
  background:
    linear-gradient(160deg, rgba(248, 245, 240, 0.92), rgba(231, 220, 203, 0.34)),
    var(--ivory);
  box-shadow: 0 22px 58px rgba(49, 42, 38, 0.055);
}

.speaking-pillar-grid span {
  display: inline-flex;
  margin-bottom: 58px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.speaking-pillar-grid h3 {
  margin-bottom: 12px;
  color: var(--magenta);
  font-size: clamp(1.7rem, 2.5vw, 2.55rem);
}

.speaking-pillar-grid article:nth-child(even) h3 {
  color: var(--green);
}

.speaking-pillar-grid p {
  margin-bottom: 0;
}

.speaking-topic-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.speaking-topic-list span {
  padding: 13px 16px;
  border: 1px solid rgba(73, 106, 82, 0.14);
  border-radius: 999px;
  background: rgba(248, 245, 240, 0.68);
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 700;
}

.speaking-topic-line {
  max-width: 1120px;
  margin: 26px 0 0;
  color: var(--ink);
  font-size: clamp(1.08rem, 1.45vw, 1.32rem);
  font-weight: 600;
  line-height: 1.7;
}

.speaking-differential {
  max-width: 920px;
  padding: clamp(30px, 4.5vw, 54px);
  border: 1px solid rgba(165, 0, 84, 0.1);
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(248, 245, 240, 0.86), rgba(231, 220, 203, 0.34)),
    var(--ivory);
}

.speaking-differential p:first-child {
  color: var(--green);
  font-weight: 700;
}

.speaking-differential p:last-child {
  margin-bottom: 0;
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.55rem, 2.2vw, 2.35rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.12;
}

.speaking-closing {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: start;
}

.speaking-closing-copy p {
  max-width: 760px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: clamp(1.06rem, 1.25vw, 1.18rem);
}

.speaking-community {
  max-width: 1280px;
  padding-top: clamp(28px, 4vw, 42px);
  border-top: 1px solid rgba(73, 106, 82, 0.18);
}

.speaking-community p {
  max-width: 760px;
  color: var(--muted);
}

.speaking-community h2 {
  max-width: none;
  margin-bottom: 0;
  color: var(--green);
  font-size: clamp(2rem, 3vw, 3.25rem);
  white-space: nowrap;
}

.speaking-panel span {
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
}

.speaking-panel ul {
  display: grid;
  gap: 14px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.speaking-panel li {
  padding-left: 18px;
  border-left: 3px solid var(--gold);
  color: var(--ink);
  font-weight: 700;
}

.podcast-section p {
  align-self: end;
}

.podcast-content {
  display: grid;
  gap: 26px;
}

.podcast-image {
  height: clamp(420px, 52vw, 650px);
}

.podcast-image img {
  object-position: center 42%;
}

.manifesto-section {
  background: var(--sand);
}

.value-grid {
  margin-top: 0;
}

.value-grid article {
  min-height: 420px;
  background: linear-gradient(180deg, var(--ivory), rgba(248, 245, 240, 0.72));
}

.value-grid article p {
  font-size: 0.98rem;
  line-height: 1.62;
}

.value-grid article p + p {
  margin-top: 16px;
}

.impact-section {
  background: var(--green-soft);
}

.purpose-section {
  display: grid;
  grid-template-columns: minmax(240px, 0.34fr) minmax(0, 0.66fr);
  gap: clamp(32px, 6vw, 92px);
  align-items: start;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(73, 106, 82, 0.11), rgba(248, 245, 240, 0.86)),
    var(--ivory);
}

.purpose-heading h2 {
  margin-bottom: 0;
}

.purpose-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.purpose-grid article {
  min-height: 310px;
  padding: clamp(28px, 4vw, 44px);
  border-top: 1px solid rgba(165, 0, 84, 0.34);
  background: rgba(248, 245, 240, 0.45);
}

.purpose-grid article:nth-child(2) {
  border-top-color: rgba(73, 106, 82, 0.42);
}

.purpose-grid span {
  display: block;
  margin-bottom: 22px;
  color: var(--magenta);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.purpose-grid article:nth-child(2) span {
  color: var(--green);
}

.purpose-grid p {
  margin-bottom: 0;
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.45rem, 1.95vw, 2.25rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.12;
}

.impact-image {
  grid-column: 1 / -1;
  height: clamp(420px, 54vw, 680px);
}

.impact-image img {
  object-position: center 35%;
}

.impact-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.testimonials-section {
  text-align: center;
}

.testimonials-section h2,
.testimonials-section p {
  max-width: 800px;
  margin-inline: auto;
}

.visual-gallery {
  display: grid;
  grid-template-columns: 0.86fr 1fr 0.86fr;
  gap: 16px;
  align-items: end;
  margin-top: 46px;
}

.visual-gallery .section-image {
  height: clamp(340px, 35vw, 520px);
}

.visual-gallery .section-image:nth-child(2) {
  height: clamp(410px, 42vw, 620px);
}

.visual-gallery img {
  object-position: center 32%;
}

.instagram-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 12%, rgba(200, 169, 107, 0.12), transparent 30%),
    linear-gradient(135deg, rgba(248, 245, 240, 0.98), rgba(231, 220, 203, 0.34)),
    var(--ivory);
}

.instagram-section::before {
  background-image:
    repeating-linear-gradient(0deg, rgba(49, 42, 38, 0.032) 0 1px, transparent 1px 6px),
    repeating-linear-gradient(90deg, rgba(49, 42, 38, 0.026) 0 1px, transparent 1px 7px);
  opacity: 0.08;
}

.instagram-heading {
  max-width: 760px;
  margin: 0 auto clamp(34px, 5vw, 58px);
  text-align: center;
}

.instagram-heading h2 {
  margin-bottom: 18px;
}

.instagram-heading p {
  max-width: 680px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.2vw, 1.16rem);
}

.instagram-feed {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 22px);
  max-width: 1180px;
  margin: 0 auto;
}

.instagram-feed-status {
  grid-column: 1 / -1;
  margin: 0;
  padding: clamp(32px, 5vw, 54px);
  border: 1px solid rgba(73, 106, 82, 0.16);
  border-radius: 8px;
  background: rgba(248, 245, 240, 0.68);
  color: var(--green);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.55rem, 2.2vw, 2.35rem);
  font-style: italic;
  line-height: 1.16;
  text-align: center;
}

.instagram-card {
  display: grid;
  min-height: 100%;
  border: 1px solid rgba(73, 106, 82, 0.14);
  border-radius: 8px;
  background: rgba(248, 245, 240, 0.76);
  box-shadow: 0 18px 52px rgba(49, 42, 38, 0.06);
  overflow: hidden;
  transition: border-color 260ms var(--ease-soft), box-shadow 260ms var(--ease-soft), transform 260ms var(--ease-soft);
}

.instagram-card:hover {
  border-color: rgba(165, 0, 84, 0.24);
  box-shadow: 0 24px 68px rgba(49, 42, 38, 0.1);
  transform: translateY(-3px);
}

.instagram-card figure {
  aspect-ratio: 1;
  margin: 0;
  background: var(--sand);
  overflow: hidden;
}

.instagram-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease-soft), filter 700ms var(--ease-soft);
}

.instagram-card:hover img {
  filter: saturate(1.02) contrast(1.01);
  transform: scale(1.035);
}

.instagram-card-copy {
  display: grid;
  gap: 12px;
  padding: 20px;
}

.instagram-card time {
  color: rgba(49, 42, 38, 0.58);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.instagram-card p {
  display: -webkit-box;
  min-height: 4.8em;
  margin: 0;
  color: var(--ink);
  font-size: 0.95rem;
  line-height: 1.6;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.instagram-actions {
  display: flex;
  justify-content: center;
  margin-top: clamp(28px, 4vw, 46px);
}

.contact {
  padding: clamp(72px, 9vw, 124px) clamp(18px, 5vw, 72px);
  background: var(--magenta);
  color: var(--ivory);
}

.contact-inner {
  max-width: 920px;
}

.contact h2,
.contact .section-label {
  color: var(--ivory);
}

.contact p {
  max-width: 760px;
  color: rgba(248, 245, 240, 0.82);
  font-size: 1.12rem;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(248, 245, 240, 0.18);
  border-radius: 8px;
  background: rgba(248, 245, 240, 0.08);
  color: var(--ivory);
  transition: transform 160ms ease, background 160ms ease;
}

.social-links a:hover {
  background: rgba(248, 245, 240, 0.14);
  transform: translateY(-2px);
}

.social-links svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: var(--ivory);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-links a[aria-label^="Facebook"] svg {
  fill: var(--ivory);
  stroke: none;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 72px);
  background: var(--green);
  color: rgba(248, 245, 240, 0.78);
  font-size: 0.92rem;
}

/* Editorial photography system */
.section-image,
.history-teaser-photo,
.history-hero-photo,
.identity-image,
.psychotherapy-image,
.therapy-modality-image,
.therapy-closing-image,
.program-image,
.speaking-image,
.speaking-detail-image,
.reflections-hero-image,
.reflection-entry figure,
.reflection-article-image,
.podcast-image,
.impact-image,
.visual-gallery .section-image {
  overflow: hidden;
  border: 0;
  border-radius: 28px;
  background: transparent;
  box-shadow: none;
}

.history-teaser-photo::before,
.history-teaser-photo::after,
.history-hero-photo::before,
.history-hero-photo::after,
.psychotherapy-image::before,
.therapy-closing-image::before,
.speaking-detail-image::before,
.reflection-article-image::before,
.section-image::before,
.section-image::after {
  content: none !important;
}

.history-teaser-photo img,
.history-hero-photo img,
.identity-image img,
.psychotherapy-image img,
.therapy-modality-image img,
.therapy-closing-image img,
.program-image img,
.speaking-image img,
.speaking-detail-image img,
.reflections-hero-image img,
.reflection-entry img,
.reflection-article-image img,
.podcast-image img,
.impact-image img,
.visual-gallery img,
.reflection-feature-list img {
  filter: saturate(0.94) contrast(0.96) brightness(1.05);
  transform: none;
  transition: none;
}

.history-teaser-photo {
  min-height: clamp(480px, 46vw, 650px);
}

.psychotherapy-image {
  height: clamp(500px, 48vw, 680px);
}

.therapy-closing-image {
  height: clamp(400px, 40vw, 560px);
}

.program-image {
  height: clamp(320px, 38vw, 500px);
}

.reflections-hero-image {
  height: clamp(340px, 38vw, 520px);
}

.reflection-entry figure {
  min-height: 260px;
}

.reflection-entry figure.reflection-cover-card {
  min-height: 250px;
}

.reflection-feature-list img {
  border-radius: 28px;
}

.podcast-image {
  height: clamp(260px, 28vw, 380px);
}

.speaking-image {
  height: clamp(320px, 34vw, 460px);
}

.speaking-detail-image {
  height: clamp(440px, 44vw, 620px);
}

.impact-image {
  height: clamp(360px, 42vw, 560px);
}

.depth-field {
  --depth-x: 0px;
  --depth-y: 0px;
  --hero-parallax: 0px;
}

.depth-field:not(figure):not(.section-image):not(.hero-photo):not(.history-hero-photo):not(.history-teaser-photo) {
  transform: translate3d(var(--depth-x), var(--depth-y), 0);
  transition: transform 520ms ease-out;
  will-change: transform;
}

.depth-field img {
  transform: translate3d(var(--depth-x), calc(var(--depth-y) + var(--hero-parallax)), 0);
  transition: transform 520ms ease-out;
  will-change: transform;
}

.hero-photo.depth-field img,
.history-hero-photo.depth-field img {
  transform: translate3d(var(--depth-x), calc(var(--depth-y) + var(--hero-parallax)), 0);
}

@media (max-width: 1180px) {
  .nav-links {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-flex !important;
    flex: 0 0 56px !important;
    order: 2 !important;
    margin-left: auto !important;
  }

  .site-header {
    flex-flow: row wrap !important;
    justify-content: space-between !important;
  }

  .brand {
    order: 1 !important;
    margin-right: auto !important;
  }

  .site-header.is-menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .site-header.is-menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.is-menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .site-header.is-menu-open .nav-links {
    display: flex;
    flex-basis: 100%;
    flex-direction: column;
    align-items: stretch;
    order: 10 !important;
    margin: 10px 0 0;
    gap: 0;
    padding: 10px 0;
    border-top: 1px solid rgba(49, 42, 38, 0.1);
    white-space: normal;
  }

  .site-header.is-menu-open .nav-links a {
    padding: 12px 2px;
  }

  .site-header.is-menu-open .nav-links a::after {
    bottom: 6px;
  }

  .site-header.is-menu-open .nav-dropdown {
    display: block;
  }

  .site-header.is-menu-open .nav-dropdown::after {
    content: none;
  }

  .site-header.is-menu-open .nav-dropdown-trigger {
    display: flex;
    justify-content: space-between;
    gap: 14px;
  }

  .site-header.is-menu-open .nav-dropdown-trigger > a {
    flex: 1;
  }

  .site-header.is-menu-open .nav-submenu-toggle {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(165, 0, 84, 0.14);
    background: rgba(165, 0, 84, 0.05);
  }

  .site-header.is-menu-open .nav-submenu {
    position: static;
    min-width: 0;
    max-height: 0;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transform: none;
    visibility: hidden;
    transition: max-height 260ms var(--ease-soft), opacity 220ms var(--ease-soft), padding 220ms var(--ease-soft);
  }

  .site-header.is-menu-open .nav-dropdown.is-submenu-open .nav-submenu {
    max-height: 360px;
    padding: 4px 0 10px 16px;
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
  }

  .site-header.is-menu-open .nav-submenu a {
    min-height: 48px;
    padding: 12px 10px;
    border-bottom: 1px solid rgba(0, 77, 64, 0.08);
    border-radius: 0;
    font-size: 0.86rem;
  }

  .site-header.is-menu-open .nav-submenu a:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 820px) {
  .site-header {
    position: fixed;
    gap: 12px;
    padding: 16px 18px;
    background: rgba(248, 245, 240, 0.92);
  }

  .hero-banner {
    display: flex;
    flex-direction: column;
    min-height: auto;
    padding: 0 18px 42px;
    background: linear-gradient(180deg, #fbf7ef 0%, var(--ivory) 62%, var(--sand) 100%);
  }

  .hero-banner::after {
    content: none;
  }

  .hero-photo {
    position: relative;
    order: 2;
    inset: auto;
    z-index: 1;
    width: 100%;
    height: min(72svh, 560px);
    min-height: 390px;
    margin-top: 34px;
    border-radius: 0;
  }

  .hero-photo img {
    object-position: center 16%;
    transform: scale(1);
  }

  .hero-photo::before {
    background:
      linear-gradient(180deg, rgba(251, 247, 239, 0.18), rgba(251, 247, 239, 0) 34%, rgba(231, 220, 203, 0.16)),
      linear-gradient(90deg, rgba(251, 247, 239, 0.38), rgba(251, 247, 239, 0) 30%);
  }

  .hero-shell {
    order: 1;
    align-items: flex-start;
    width: 100%;
    min-height: 0;
    padding-top: 126px;
  }

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

  .hero-copy h1 {
    font-size: clamp(2.4rem, 10.8vw, 4.1rem);
    margin-bottom: 28px;
    gap: 0.03em;
  }

  .hero-copy h1::after {
    content: none;
  }

  .hero-kicker {
    font-size: 0.74rem;
    letter-spacing: 0.16em;
  }

  .hero-subtitle {
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    line-height: 1.5;
  }

  .hero-wellbeing-card {
    padding: 0;
    background: transparent;
  }

  .hero-ritual-line {
    margin-bottom: 14px;
    font-size: 1rem;
    font-weight: 900;
    line-height: 1.35;
  }

  .hero-text {
    font-size: 1rem;
    line-height: 1.5;
  }

  .hero-main-cta {
    width: 100%;
    min-width: 0;
    padding: 18px 18px;
    text-align: center;
  }

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

  .about-section,
  .history-teaser,
  .philosophy-meaning-layout,
  .story-section,
  .identity-section,
  .section-heading,
  .trajectory-section,
  .purpose-section,
  .programs-section,
  .speaking-section,
  .reflections-section,
  .podcast-section,
  .manifesto-section,
  .impact-section,
  .instagram-section,
  .alphabet-hero,
  .alphabet-editorial,
  .alphabet-program,
  .alphabet-program-reverse {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .alphabet-editorial,
  .alphabet-program,
  .alphabet-program-reverse {
    grid-template-areas: none;
  }

  .feature-grid,
  .psychotherapy-hero,
  .psychotherapy-pillars,
  .speaking-detail-hero,
  .reflections-hero,
  .speaking-pillar-grid,
  .reflection-editorial-grid,
  .reflection-entry.featured,
  .reflection-subscribe,
  .speaking-closing,
  .therapy-method,
  .therapy-process-grid,
  .therapy-faq,
  .therapy-closing,
  .purpose-grid,
  .value-grid,
  .social-links,
  .visual-gallery,
  .instagram-feed {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .psychotherapy-pillars article,
  .speaking-pillar-grid article,
  .reflection-entry,
  .instagram-card,
  .alphabet-program,
  .therapy-signs article,
  .therapy-process-grid article,
  .purpose-grid article,
  .value-grid article {
    min-height: auto;
  }

  .reflection-subscribe-row {
    grid-template-columns: 1fr;
  }

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

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

  .alphabet-hero h2 {
    font-size: clamp(2.65rem, 11vw, 3.35rem);
    line-height: 0.96;
    overflow-wrap: normal;
  }

  .alphabet-title-icon,
  .alphabet-title-text {
    display: block;
  }

  .alphabet-title-icon {
    width: 44px;
    height: 44px;
    margin: 0 0 10px;
  }

  .alphabet-program-title-row {
    display: block;
  }

  .alphabet-program-icon {
    width: 48px;
    height: 48px;
    margin: 0 0 12px;
  }

  .alphabet-lead {
    font-size: clamp(1.45rem, 7vw, 2.05rem);
  }

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

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

  .alphabet-editorial {
    margin-top: 38px;
  }

  .alphabet-editorial-line {
    display: none;
  }

  .alphabet-editorial-main,
  .alphabet-editorial-aside,
  .alphabet-program {
    padding: 24px;
  }

  .alphabet-invitation {
    margin-top: 38px;
    font-size: clamp(1.75rem, 8vw, 2.8rem);
  }

  .alphabet-nav {
    justify-content: stretch;
    margin-bottom: 38px;
  }

  .alphabet-nav a {
    width: 100%;
    border-radius: 8px;
  }

  .alphabet-program {
    display: grid;
  }

  .alphabet-program-heading,
  .alphabet-program-visual,
  .alphabet-program-copy {
    grid-area: auto;
  }

  .alphabet-program-heading {
    order: 1;
  }

  .alphabet-program-visual {
    order: 2;
    min-height: 320px;
  }

  .alphabet-program-copy {
    order: 3;
  }

  .alphabet-program h3 {
    font-size: clamp(1.95rem, 9.2vw, 3.05rem);
    line-height: 0.98;
  }

  .alphabet-program-heading p {
    font-size: clamp(1.35rem, 6.8vw, 2rem);
  }

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

  .page-hero {
    min-height: 520px;
    padding-top: 126px;
  }

  .history-page-hero {
    grid-template-columns: 1fr;
    gap: 30px;
    min-height: auto;
    padding-top: 112px;
    padding-bottom: 54px;
  }

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

  .history-page-hero h1 {
    margin-bottom: 26px;
    font-size: clamp(2.55rem, 11vw, 4rem);
  }

  .history-page-hero h1 > span:first-child,
  .history-page-hero h1 .motion-title-line:first-child {
    font-size: 0.66em;
  }

  .page-hero p {
    font-size: clamp(1.8rem, 8vw, 3rem);
  }

  .history-hero-statement {
    margin-bottom: 0;
    padding-left: 0;
  }

  .history-hero-statement p {
    font-size: clamp(1.5rem, 7.2vw, 2.28rem);
    line-height: 1.12;
  }

  .history-hero-statement span {
    font-size: clamp(1.92rem, 8vw, 2.75rem);
  }

  .history-hero-body p {
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .history-hero-photo {
    max-width: 100%;
    height: 420px;
    min-height: 0;
  }

  .history-teaser-photo {
    order: 2;
    min-height: 420px;
  }

  .history-teaser-copy {
    order: 1;
    padding-left: 20px;
  }

  .history-teaser-copy h2 {
    max-width: 100%;
    margin-bottom: 20px;
    font-size: clamp(2.65rem, 12vw, 4.25rem);
    line-height: 0.94;
  }

  .philosophy-teaser-lead {
    font-size: clamp(1.5rem, 7.4vw, 2.3rem) !important;
    line-height: 1.1 !important;
  }

  .history-teaser-copy p {
    font-size: 1rem;
    line-height: 1.62;
  }

  .philosophy-meaning-section {
    padding-top: 70px;
    padding-bottom: 76px;
  }

  .philosophy-meaning-section::after {
    inset: 14px;
    border-radius: 20px;
  }

  .dragonfly-watermark {
    right: -170px;
    bottom: 52px;
    width: 420px;
    opacity: 0.052;
  }

  .philosophy-meaning-heading {
    position: relative;
    top: auto;
    max-width: 100%;
  }

  .philosophy-meaning-heading h2 {
    font-size: clamp(2.55rem, 11vw, 4.25rem);
  }

  .philosophy-meaning-copy {
    max-width: 100%;
    padding-top: 0;
  }

  .philosophy-meaning-copy p {
    margin-bottom: 28px;
    font-size: 1rem;
    line-height: 1.72;
  }

  .philosophy-emphasis {
    font-size: 1.08rem !important;
    line-height: 1.62 !important;
  }

  .trajectory-intro {
    max-width: 100%;
  }

  .trajectory-timeline::before {
    left: 29px;
  }

  .trajectory-item {
    grid-template-columns: 60px minmax(0, 1fr);
    gap: 18px;
    padding-bottom: 28px;
  }

  .trajectory-icon {
    width: 58px;
    height: 58px;
  }

  .trajectory-icon svg {
    width: 30px;
    height: 30px;
  }

  .trajectory-close {
    grid-column: auto;
    padding-left: 22px;
  }

  .about-image,
  .identity-image,
  .psychotherapy-image,
  .therapy-closing-image,
  .speaking-detail-image,
  .program-image,
  .speaking-image,
  .podcast-image,
  .impact-image,
  .visual-gallery .section-image,
  .visual-gallery .section-image:nth-child(2) {
    height: 420px;
  }

  .history-teaser-photo {
    min-height: 380px;
  }

  .reflections-hero-image {
    height: 340px;
  }

  .reflection-entry figure,
  .reflection-entry figure.reflection-cover-card {
    min-height: 240px;
  }

  .podcast-image,
  .speaking-image {
    height: 300px;
  }

  .therapy-help,
  .therapy-method,
  .therapy-process,
  .therapy-modality,
  .therapy-faq,
  .therapy-closing,
  .speaking-goals,
  .speaking-topics,
  .speaking-differential,
  .speaking-closing,
  .speaking-community {
    margin-top: 46px;
  }

  .therapy-modality {
    grid-template-columns: 1fr;
    padding: 12px;
  }

  .therapy-modality article {
    padding: 24px 12px 18px;
  }

  .therapy-modality h2 {
    font-size: clamp(3.2rem, 14vw, 5.4rem);
  }

  .therapy-modality-image {
    min-height: 430px;
  }

  .therapy-signs {
    grid-template-columns: 1fr;
  }

  .therapy-process-grid span,
  .speaking-pillar-grid span {
    margin-bottom: 32px;
  }

  .speaking-community h2 {
    white-space: normal;
  }

  .story-mark {
    min-height: 260px;
  }

  .story-mark img {
    width: 520px;
  }

  .identity-card {
    padding: 26px;
  }

  .button {
    width: 100%;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .brand-mark {
    width: 52px;
    height: 62px;
  }
}

@media (max-width: 980px) {
  .academy-hero,
  .academy-detail-hero,
  .academy-detail-grid,
  .academy-form-wrap {
    grid-template-columns: 1fr;
  }

  .academy-grid,
  .academy-course-grid,
  .academy-filters {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .academy-filters .button {
    grid-column: 1 / -1;
  }

  .academy-aside {
    position: static;
  }

  .wellbeing-hero,
  .course-card {
    grid-template-columns: 1fr;
  }

  .wellbeing-program-grid {
    grid-template-columns: 1fr;
  }

  .wellbeing-program-card,
  .wellbeing-program-card:first-child {
    grid-column: auto;
  }

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

  .program-page-hero,
  .program-page-layout {
    grid-template-columns: 1fr;
  }

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

  .program-page-visual {
    min-height: 420px;
  }

  .program-page-kicker {
    position: static;
  }

  .program-page-modalities,
  .program-page-related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .academy-hero,
  .academy-detail-hero,
  .academy-catalog,
  .academy-detail,
  .academy-form-shell {
    padding-right: 20px;
    padding-left: 20px;
  }

  .academy-hero,
  .academy-detail-hero,
  .academy-form-shell {
    padding-top: 118px;
  }

  .academy-hero h1,
  .academy-detail-hero h1,
  .academy-catalog-heading h2 {
    font-size: clamp(3rem, 13vw, 5.4rem);
  }

  .academy-hero p,
  .academy-detail-hero .academy-detail-subtitle {
    font-size: clamp(1.4rem, 6.4vw, 2.2rem);
  }

  .academy-grid,
  .academy-course-grid,
  .academy-filters {
    grid-template-columns: 1fr;
  }

  .academy-breadcrumb {
    padding: 98px 20px 0;
  }

  .academy-summary-list div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .wellbeing-hero {
    padding: 118px 20px 58px;
  }

  .wellbeing-hero h1 {
    font-size: clamp(4.2rem, 18vw, 6.2rem);
  }

  .wellbeing-lead {
    font-size: clamp(1.48rem, 7vw, 2.4rem);
  }

  .wellbeing-hero-visual {
    min-height: 360px;
  }

  .wellbeing-intro,
  .wellbeing-alphabet,
  .wellbeing-courses {
    padding-right: 20px;
    padding-left: 20px;
  }

  .wellbeing-intro-inner {
    padding-left: 20px;
  }

  .wellbeing-section-heading h2 {
    font-size: clamp(3rem, 14vw, 5.4rem);
  }

  .wellbeing-program-card {
    grid-template-columns: 1fr;
  }

  .wellbeing-program-card .button {
    width: 100%;
  }

  .course-card dl div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .program-page-hero {
    padding: 118px 20px 58px;
  }

  .program-page-hero h1 {
    font-size: clamp(2.65rem, 11.5vw, 4rem);
    line-height: 0.96;
  }

  .program-page-visual {
    min-height: 340px;
  }

  .program-page-visual-label {
    flex-direction: column;
    left: 20px;
    right: 20px;
    bottom: 20px;
    gap: 4px;
  }

  .program-page-section,
  .program-page-related,
  .program-page-cta {
    padding-right: 20px;
    padding-left: 20px;
  }

  .program-page-tags,
  .program-page-modalities,
  .program-page-related-grid {
    grid-template-columns: 1fr;
  }

  .program-page-related-card {
    min-height: 150px;
  }
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes portraitIn {
  from {
    opacity: 0;
    transform: translateY(22px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes ymBreath {
  0%,
  100% {
    transform: translateY(-50%) scale(1);
  }
  50% {
    transform: translateY(-50%) scale(1.02);
  }
}

@keyframes photoReveal {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes titleReveal {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes lineGrow {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

@keyframes linenDrift {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: 2px 1px, -1px 2px;
  }
}

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

  .motion-ready .motion-section,
  .motion-ready .motion-item,
  .motion-ready .motion-title-line,
  .depth-field,
  .depth-field img,
  .hero-photo img,
  .hero-copy h1 span {
    opacity: 1 !important;
    transform: none !important;
  }
}
