:root {
  --color-bloom-green: #4f8a5b;
  --color-light-green: #a8d5ba;
  --color-bloom-gold: #f4c95d;
  --color-warm-ivory: #faf8f2;
  --color-deep-forest: #2f3e34;
  --color-warm-amber: #e8b647;
  --color-soft-sage: #eef5ee;
  --font-body:
    "Be Vietnam Pro", ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --font-heading: "Noto Serif", Georgia, "Times New Roman", serif;
  --font-script: "Great Vibes", "Noto Serif", Georgia, serif;
  --border-soft: rgba(47, 62, 52, 0.14);
  --green-tint: rgba(79, 138, 91, 0.1);
  --green-tint-strong: rgba(79, 138, 91, 0.18);
  --gold-tint: rgba(244, 201, 93, 0.24);
  --container: 1220px;
  --ease: 180ms ease;
  --radius: 22px;
  --radius-card: 16px;
  --space-section: clamp(4.5rem, 6vw, 6rem);
  --space-section-sm: clamp(3rem, 5vw, 4.5rem);
  --shadow-card: 0 12px 36px rgba(47, 62, 52, 0.06);
  --shadow-soft: 0 16px 48px rgba(47, 62, 52, 0.08);
  --scrollbar-size: 6px;
  --scrollbar-track: rgba(238, 245, 238, 0.72);
  --scrollbar-thumb: rgba(79, 138, 91, 0.34);
  --scrollbar-thumb-hover: rgba(79, 138, 91, 0.56);
}

.origin-card,
.program-card,
.outcome-panel,
.fit-panel,
.register-card {
  border-color: rgba(79, 138, 91, 0.13);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

.value-card,
.reason-card,
.concern-card,
.faq-list details {
  border-radius: var(--radius-card);
  background: rgba(250, 248, 242, 0.82);
  box-shadow: var(--shadow-card);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--scrollbar-thumb) var(--scrollbar-track);
}

html::-webkit-scrollbar {
  width: var(--scrollbar-size);
  height: var(--scrollbar-size);
}

html::-webkit-scrollbar-track {
  background: var(--scrollbar-track);
}

html::-webkit-scrollbar-thumb {
  background-color: var(--scrollbar-thumb);
  border: 1px solid transparent;
  border-radius: 999px;
  background-clip: padding-box;
  transition: background-color var(--ease);
}

html::-webkit-scrollbar-thumb:hover {
  background-color: var(--scrollbar-thumb-hover);
}

html::-webkit-scrollbar-corner {
  background: transparent;
}

body {
  margin: 0;
  color: var(--color-deep-forest);
  background:
    radial-gradient(
      circle at 12% 9%,
      rgba(244, 201, 93, 0.16),
      transparent 18rem
    ),
    linear-gradient(
      180deg,
      var(--color-warm-ivory) 0%,
      rgba(238, 245, 238, 0.7) 62%,
      var(--color-warm-ivory) 100%
    );
  font-family: var(--font-body);
  line-height: 1.58;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(244, 201, 93, 0.95);
  outline-offset: 4px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 1000;
  transform: translateY(-150%);
  border-radius: 999px;
  background: var(--color-deep-forest);
  color: var(--color-warm-ivory);
  padding: 0.7rem 1rem;
}

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

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

main [id] {
  scroll-margin-top: 5.5rem;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin-inline: auto;
}

.narrow {
  max-width: 780px;
}

.center {
  text-align: center;
}

.section {
  position: relative;
  padding: var(--space-section) 0;
}

.section-lead {
  max-width: 660px;
  margin: 0.9rem auto 0;
  font-size: clamp(1rem, 1.25vw, 1.12rem);
}

.muted {
  color: rgba(47, 62, 52, 0.8);
}

.eyebrow {
  margin: 0 0 0.65rem;
  color: rgba(79, 138, 91, 0.82);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--color-bloom-green);
  font-family: var(--font-heading);
  letter-spacing: 0;
}

h1 {
  max-width: 620px;
  font-size: clamp(3.5rem, 5.3vw, 5.25rem);
  font-weight: 700;
  line-height: 1.02;
}

h2 {
  font-size: clamp(2.1rem, 3.2vw, 3.25rem);
  font-weight: 700;
  line-height: 1.08;
}

h3 {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.25;
}

p {
  margin: 0.9rem 0 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(79, 138, 91, 0.12);
  background: rgba(250, 248, 242, 0.95);
}

.header-inner {
  min-height: 76px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: clamp(1rem, 2vw, 1.8rem);
}

.brand {
  grid-column: 1;
  justify-self: start;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 0.62rem;
  color: var(--color-bloom-green);
}

.brand-mark {
  color: var(--color-bloom-green);
}

.brand strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.62rem;
  font-weight: 700;
  line-height: 0.95;
}

.brand small {
  display: block;
  margin-top: 0.18rem;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.primary-nav {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.85rem, 1.6vw, 1.75rem);
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
}

.header-cta {
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
}

.primary-nav a {
  position: relative;
  padding: 0.65rem 0;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.3rem;
  height: 2px;
  border-radius: 999px;
  background: var(--color-bloom-green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--ease);
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(79, 138, 91, 0.22);
  border-radius: 999px;
  background: var(--color-warm-ivory);
  color: var(--color-deep-forest);
  line-height: 1;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 0;
  border-radius: 99px;
  background: currentColor;
  transition:
    transform var(--ease),
    opacity var(--ease);
}

.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.btn {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.42rem;
  min-height: 46px;
  border: 0;
  border-radius: 12px;
  padding: 0.82rem 1.18rem;
  color: var(--color-deep-forest);
  background: var(--color-bloom-gold);
  box-shadow: 0 10px 20px rgba(244, 201, 93, 0.26);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    color 260ms ease,
    box-shadow var(--ease),
    transform var(--ease);
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--color-bloom-green);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.btn span,
.btn-icon {
  position: relative;
  z-index: 1;
}

.btn-icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 1rem;
  height: 1rem;
  color: currentColor;
  transition:
    color 260ms ease,
    transform 260ms ease;
}

.btn-icon svg,
.btn-icon i {
  width: 100%;
  height: 100%;
  color: currentColor;
}

.btn:hover,
.btn:focus-visible {
  color: var(--color-warm-ivory);
  box-shadow: 0 12px 26px rgba(79, 138, 91, 0.2);
}

.btn:hover::before,
.btn:focus-visible::before {
  transform: scaleX(1);
}

.btn-large:hover .btn-icon,
.btn-large:focus-visible .btn-icon {
  transform: translateX(3px);
}

.btn-small {
  min-height: 40px;
  padding-inline: 0.95rem;
  font-size: 0.72rem;
}

.btn-large {
  min-width: 292px;
  min-height: 54px;
  margin-top: 1.18rem;
}

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  overflow: hidden;

  background: var(--color-warm-ivory);
}

.hero-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: 3;
  display: block;
  width: 100%;
  height: clamp(52px, 6vw, 88px);
  pointer-events: none;
}

.hero-wave-main {
  fill: var(--color-warm-ivory);
}

.hero-wave-accent {
  fill: rgba(168, 213, 186, 0.45);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.46fr) minmax(0, 0.54fr);
  align-items: center;
  gap: clamp(1.75rem, 3.8vw, 4.8rem);
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-bottom: clamp(2.8rem, 5vw, 4.4rem);
}

.hero-script {
  max-width: 100%;
  margin-top: 1rem;
  color: var(--color-bloom-green);
  font-family: var(--font-script);
  font-size: clamp(1.65rem, 2.55vw, 2.45rem);
  font-weight: 400;
  line-height: 1.05;
  white-space: nowrap;
}

.hero-lead {
  max-width: 540px;
  margin-top: 1.12rem;
  font-size: clamp(1rem, 1.26vw, 1.14rem);
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  max-width: 520px;
  margin: 1.28rem 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  display: grid;
  justify-items: center;
  gap: 0.65rem;
  text-align: center;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.35;
}

.icon-circle {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1.5px solid rgba(79, 138, 91, 0.38);
  border-radius: 999px;
  background: transparent;
  color: var(--color-bloom-green);
  flex: 0 0 auto;
}

.icon-circle svg,
.icon-circle i {
  width: 22px;
  height: 22px;
  color: currentColor;
  stroke-width: 1.5;
}

.hero-visual {
  position: relative;
  width: min(58vw, 760px);
  min-height: clamp(500px, 46vw, 620px);
  margin: 0 calc(50% - 50vw) 0 0;
  overflow: hidden;
  background: rgba(79, 138, 91, 0.1);
}

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

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      var(--color-warm-ivory) 0%,
      rgba(250, 248, 242, 0.64) 18%,
      rgba(250, 248, 242, 0.12) 42%,
      rgba(250, 248, 242, 0) 68%
    ),
    linear-gradient(0deg, rgba(47, 62, 52, 0.12), rgba(47, 62, 52, 0));
}

.hero-curl {
  position: absolute;
  right: -2%;
  bottom: -1px;
  z-index: 2;
  width: min(72%, 640px);
  height: clamp(58px, 7vw, 104px);
  pointer-events: none;
}

.hero-curl-main {
  fill: var(--color-bloom-green);
  opacity: 0.96;
}

.hero-curl-accent {
  fill: var(--color-bloom-gold);
  opacity: 0.72;
}

.problem {
  background: var(--color-warm-ivory);
  padding-top: clamp(3rem, 5vw, 4.25rem);
}

.problem-intro {
  max-width: 760px;
}

.problem .section-lead {
  max-width: 620px;
  margin-top: 0.75rem;
  margin-inline: auto;
  font-size: clamp(1rem, 1.2vw, 1.08rem);
  line-height: 1.62;
  color: rgba(47, 62, 52, 0.86);
}

.problem-insight {
  max-width: min(100%, 900px);
  margin: 1.15rem auto 0;
  padding: 0.85rem 1.35rem;
  border: 1px solid rgba(79, 138, 91, 0.16);
  border-radius: 999px;
  background:
    linear-gradient(
      135deg,
      rgba(238, 245, 238, 0.92),
      rgba(250, 248, 242, 0.96)
    );
  box-shadow: 0 8px 22px rgba(47, 62, 52, 0.04);
  text-align: center;
}

.problem-insight-label {
  margin: 0;
  color: rgba(47, 62, 52, 0.72);
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.4;
}

.problem-insight-quote {
  margin: 0.2rem 0 0;
  color: var(--color-bloom-green);
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.35vw, 1.14rem);
  font-style: italic;
  font-weight: 600;
  line-height: 1.45;
}

.problem-subtitle {
  max-width: 720px;
  margin: 1.85rem auto 0;
  color: rgba(79, 138, 91, 0.82);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.problem .concern-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1.1rem;
}

.problem .concern-card {
  min-height: 132px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 0.7rem;
  border: 1px solid rgba(79, 138, 91, 0.11);
  border-radius: var(--radius-card);
  background: rgba(250, 248, 242, 0.9);
  box-shadow: 0 8px 20px rgba(47, 62, 52, 0.045);
  padding: 1rem 0.85rem;
  text-align: center;
}

.problem .concern-card h3 {
  font-family: var(--font-body);
  color: var(--color-deep-forest);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.45;
}

.problem .concern-card .icon-circle {
  width: 40px;
  height: 40px;
  background: rgba(168, 213, 186, 0.32);
  border: 1px solid rgba(79, 138, 91, 0.1);
}

.problem .reassurance-note {
  max-width: 720px;
  margin-top: 1.5rem;
  padding: 1rem 1.2rem;
  border: 1px solid rgba(79, 138, 91, 0.12);
  border-radius: var(--radius-card);
  background: rgba(238, 245, 238, 0.58);
  box-shadow: 0 8px 18px rgba(47, 62, 52, 0.035);
  text-align: center;
}

.problem .reassurance {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--color-deep-forest);
}

.problem .reassurance strong {
  color: var(--color-bloom-green);
}

.problem .reassurance-secondary {
  max-width: none;
  margin: 0.4rem 0 0;
  font-size: 0.88rem;
  line-height: 1.5;
}

.insight {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 8% 22%,
      rgba(168, 213, 186, 0.28),
      transparent 22rem
    ),
    radial-gradient(
      circle at 92% 78%,
      rgba(244, 201, 93, 0.14),
      transparent 18rem
    ),
    linear-gradient(180deg, rgba(238, 245, 238, 0.55), var(--color-warm-ivory));
  padding-block: var(--space-section-sm);
}

.insight-panel {
  position: relative;
  isolation: isolate;
  border: 1px solid rgba(79, 138, 91, 0.14);
  border-radius: var(--radius);
  background: rgba(250, 248, 242, 0.92);
  box-shadow: var(--shadow-card);
  padding: clamp(1.6rem, 3.2vw, 2.75rem);
}

.insight-panel::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  border-radius: var(--radius) 0 0 var(--radius);
  background: linear-gradient(
    180deg,
    var(--color-bloom-gold),
    var(--color-bloom-green)
  );
}

.insight-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(1.6rem, 3.5vw, 3.2rem);
  align-items: center;
}

.insight-lead {
  position: relative;
  justify-self: center;
  align-self: center;
  width: min(100%, 27rem);
  padding-inline: clamp(0.5rem, 1.2vw, 1rem);
}

.insight-lead h2 {
  font-size: clamp(2.2rem, 1.85vw, 2.2rem);
  line-height: 1.2;
  text-wrap: balance;
}

.insight-lead h2 em {
  color: var(--color-bloom-green);
  font-style: italic;
  text-decoration: underline;
  text-decoration-color: rgba(244, 201, 93, 0.85);
  text-decoration-thickness: 3px;
  text-underline-offset: 0.14em;
  white-space: nowrap;
}

.insight-kicker {
  position: absolute;
  right: clamp(-0.25rem, 1vw, 1.5rem);
  bottom: -0.35rem;
  margin: 0;
  color: rgba(79, 138, 91, 0.1);
  font-family: var(--font-heading);
  font-size: clamp(5rem, 10vw, 7.5rem);
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.insight-copy {
  margin: 0;
  font-size: clamp(1rem, 1.2vw, 1.08rem);
  line-height: 1.62;
}

.insight-copy strong {
  color: var(--color-bloom-green);
  font-weight: 700;
}

.foundation-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.72rem;
  margin: 1.35rem 0 0;
  padding: 0;
  list-style: none;
}

.foundation-grid li {
  display: flex;
  align-items: center;
  gap: 0.72rem;
  min-height: 3.35rem;
  border: 1px solid rgba(79, 138, 91, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.55);
  padding: 0.72rem 0.82rem;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.35;
}

.foundation-icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(79, 138, 91, 0.28);
  border-radius: 999px;
  color: var(--color-bloom-green);
}

.foundation-icon svg,
.foundation-icon i {
  width: 18px;
  height: 18px;
}

.insight-closing {
  margin: 1.25rem 0 0;
  border-left: 3px solid var(--color-bloom-gold);
  padding: 0.72rem 0 0.72rem 1rem;
  background: linear-gradient(
    90deg,
    rgba(238, 245, 238, 0.72),
    rgba(238, 245, 238, 0)
  );
  color: rgba(47, 62, 52, 0.88);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.5;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: clamp(1.8rem, 4vw, 4rem);
  align-items: start;
}

.origin {
  background:
    radial-gradient(
      circle at 16% 18%,
      rgba(168, 213, 186, 0.34),
      transparent 17rem
    ),
    var(--color-warm-ivory);
}

.origin-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(1rem, 2.4vw, 1.6rem);
}

.origin-card,
.program-card,
.outcome-panel,
.fit-panel,
.register-card {
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

.origin-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 450px;
  border: 0;
  background: rgba(250, 248, 242, 0.9);
  box-shadow:
    0 0 0 1px rgba(79, 138, 91, 0.16),
    var(--shadow-card);
  padding: clamp(1.45rem, 2.5vw, 2rem);
}

.origin-card-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
  object-position: center bottom;
}

.origin-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  border-radius: inherit;
  background:
    linear-gradient(
      115deg,
      rgba(250, 248, 242, 0.96) 0%,
      rgba(250, 248, 242, 0.9) 42%,
      rgba(250, 248, 242, 0.52) 68%,
      rgba(250, 248, 242, 0.18) 100%
    ),
    linear-gradient(
      180deg,
      rgba(47, 62, 52, 0),
      rgba(47, 62, 52, 0.16)
    );
}

.origin-closing {
  margin-top: 1.15rem;
  color: var(--color-deep-forest);
  font-size: 1rem;
}

.origin-card-content {
  position: relative;
  z-index: 2;
}

.program-card {
  background: linear-gradient(
    145deg,
    rgba(250, 248, 242, 0.96),
    rgba(238, 245, 238, 0.84)
  );
  padding: clamp(1.45rem, 2.5vw, 2rem);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.82rem;
  margin-top: 1.45rem;
}

.value-card,
.reason-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.78rem;
  align-items: start;
  border: 1px solid rgba(79, 138, 91, 0.1);
  border-radius: 12px;
  background: rgba(250, 248, 242, 0.74);
  padding: 0.92rem;
}

.value-card .icon-circle,
.reason-card .icon-circle {
  width: 40px;
  height: 40px;
}

.value-card h3,
.reason-card h3 {
  font-family: var(--font-body);
  color: var(--color-bloom-green);
  font-size: 0.95rem;
  font-weight: 800;
}

.value-card p,
.reason-card p {
  grid-column: 2;
  margin-top: 0.15rem;
  color: rgba(47, 62, 52, 0.82);
  font-size: 0.9rem;
  line-height: 1.55;
}

.experience-register {
  background:
    linear-gradient(
      180deg,
      rgba(250, 248, 242, 0.94),
      rgba(238, 245, 238, 0.96)
    ),
    var(--color-soft-sage);
}

.experience-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.64fr) minmax(320px, 0.36fr);
  gap: clamp(1.25rem, 2.8vw, 2rem);
  align-items: start;
}

.experience-main {
  min-width: 0;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0;
  margin: 1.85rem 0 0;
  padding: 0;
  list-style: none;
  isolation: isolate;
}

.timeline::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 22px;
  left: calc(100% / 14);
  right: calc(100% / 14);
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(
    90deg,
    rgba(79, 138, 91, 0.28),
    rgba(79, 138, 91, 0.55) 18%,
    rgba(79, 138, 91, 0.55) 82%,
    rgba(79, 138, 91, 0.28)
  );
  pointer-events: none;
}

.timeline-step {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 0.6rem;
  padding-inline: 0.25rem;
  text-align: center;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.38;
}

.timeline-step .icon-circle {
  position: relative;
  z-index: 1;
  width: 44px;
  height: 44px;
  background: var(--color-warm-ivory);
}

.supporting-panels {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
  gap: 0.88rem;
  margin-top: 2rem;
}

.outcome-panel,
.fit-panel {
  background: rgba(250, 248, 242, 0.84);
  padding: clamp(1rem, 2vw, 1.35rem);
}

.outcome-panel h2 {
  font-size: clamp(1.35rem, 2vw, 1.7rem);
}

.outcome-list {
  display: grid;
  gap: 0.45rem;
  margin: 0.75rem 0 0.85rem;
  padding: 0;
  list-style: none;
}

.outcome-list li {
  position: relative;
  padding-left: 1.2rem;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.45;
}

.outcome-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.48rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: var(--color-bloom-gold);
}

.check-list {
  display: grid;
  gap: 0.58rem;
  margin: 0.9rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.45rem;
  font-size: 0.92rem;
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42rem;
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 999px;
  background: var(--color-light-green);
  box-shadow: inset 0 0 0 3px rgba(250, 248, 242, 0.84);
}

.reasons-block {
  margin-top: 2rem;
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1.2rem;
}

.register-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-self: start;
  background:
    linear-gradient(165deg, rgba(47, 62, 52, 0.22), rgba(47, 62, 52, 0)),
    var(--color-deep-forest);
  color: var(--color-warm-ivory);
  padding: clamp(1rem, 1.8vw, 1.3rem);
}

.register-copy h2 {
  color: var(--color-warm-ivory);
  font-size: clamp(1.35rem, 1.85vw, 1.72rem);
  line-height: 1.22;
}

.register-copy .eyebrow,
.register-copy p {
  color: rgba(250, 248, 242, 0.86);
}

.register-copy p {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  line-height: 1.42;
}

.signup-form {
  display: grid;
  gap: 0.52rem;
  margin-top: 0.85rem;
}

.form-field {
  display: grid;
  gap: 0.22rem;
}

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

.form-field .required-label {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  clip-path: none;
  color: rgba(250, 248, 242, 0.92);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.25;
  white-space: normal;
}

.required-mark {
  color: #d92d20;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(250, 248, 242, 0.5);
  border-radius: 10px;
  background: var(--color-warm-ivory);
  color: var(--color-deep-forest);
  padding: 0.52rem 0.72rem;
  resize: vertical;
}

.form-field select:disabled {
  cursor: not-allowed;
  opacity: 1;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(47, 62, 52, 0.72);
  opacity: 1;
}

.form-field textarea {
  min-height: 72px;
}

.experience-register .form-field textarea {
  min-height: 72px;
  max-height: 88px;
  resize: none;
}

.form-field input[aria-invalid="true"],
.form-field select[aria-invalid="true"],
.form-field textarea[aria-invalid="true"] {
  border-color: var(--color-bloom-gold);
  box-shadow: 0 0 0 3px rgba(244, 201, 93, 0.24);
}

.field-error {
  margin: 0.18rem 0 0;
  padding-left: 0.24rem;
  color: var(--color-bloom-gold);
  font-size: 0.76rem;
  line-height: 1.28;
}

.btn-form {
  width: 100%;
  min-height: 46px;
  margin-top: 0.25rem;
}

.form-status {
  min-height: 0;
  margin: 0;
  color: rgba(250, 248, 242, 0.94);
  font-size: 0.9rem;
  font-weight: 700;
}

.faq {
  background: var(--color-warm-ivory);
}

.faq-list {
  display: grid;
  gap: 0.72rem;
  margin-top: 1.6rem;
}

.faq-list details {
  border: 1px solid rgba(79, 138, 91, 0.15);
  border-radius: 14px;
  background: rgba(250, 248, 242, 0.84);
  padding: 0.96rem 1.08rem;
  box-shadow: 0 8px 18px rgba(47, 62, 52, 0.045);
  overflow: hidden;
}

.faq-list summary {
  cursor: pointer;
  color: var(--color-bloom-green);
  font-weight: 800;
  list-style-position: inside;
}

.faq-list details p {
  overflow: hidden;
  margin-top: 0.75rem;
}

.site-footer {
  position: relative;
  overflow: hidden;
  background: var(--color-deep-forest);
  color: var(--color-warm-ivory);
  padding: clamp(3rem, 5vw, 4.8rem) 0;
}

.site-footer::before {
  content: "";
  position: absolute;
  left: -5rem;
  bottom: -7rem;
  width: 23rem;
  height: 23rem;
  border-radius: 52% 48% 60% 40%;
  background: rgba(168, 213, 186, 0.16);
}

.footer-inner {
  position: relative;
  display: grid;
  gap: 2rem;
  justify-items: center;
  text-align: center;
}

.footer-quote {
  position: relative;
  max-width: 46rem;
  margin: 0;
  color: var(--color-warm-ivory);
  font-family: var(--font-heading);
  font-size: clamp(1.28rem, 2.25vw, 2rem);
  line-height: 1.42;
}

.footer-quote p {
  margin: 0.3rem 0;
}

.footer-quote em {
  color: var(--color-bloom-gold);
  font-style: normal;
}

.footer-quote-mark {
  display: block;
  color: var(--color-bloom-gold);
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  opacity: 0.75;
}

.footer-quote-mark-end {
  margin-top: 0.35rem;
}

.growth-line {
  width: min(100%, 480px);
  margin-inline: auto;
  color: var(--color-bloom-gold);
  opacity: 0.92;
}

.growth-fill {
  fill: currentColor;
  stroke: none;
}

.growth-seed {
  color: var(--color-warm-amber);
  opacity: 0.95;
}

.growth-leaf {
  color: var(--color-light-green);
  opacity: 0.9;
}

.growth-flower-center {
  color: var(--color-warm-amber);
}

.growth-flower {
  transform-box: fill-box;
  transform-origin: center bottom;
}

.growth-stage {
  transform-box: fill-box;
}

.footer-meta {
  position: relative;
  margin-top: clamp(2rem, 4vw, 2.75rem);
  padding-top: 1.5rem;
  border-top: 1px solid rgba(250, 248, 242, 0.14);
  display: grid;
  gap: 1rem;
  justify-items: center;
  text-align: center;
}

.footer-brand {
  margin: 0;
  color: rgba(250, 248, 242, 0.92);
  font-size: 0.95rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem 1.1rem;
}

.footer-nav a {
  color: rgba(250, 248, 242, 0.82);
  font-size: 0.88rem;
  text-decoration: none;
  transition: color var(--ease);
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: var(--color-bloom-gold);
}

.footer-copy {
  margin: 0;
  color: rgba(250, 248, 242, 0.62);
}

[data-animating="true"] {
  will-change: transform, opacity;
}

@media (max-width: 1120px) {
  .header-cta {
    display: none;
  }

  .primary-nav {
    gap: 0.9rem;
  }

  .problem .concern-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 981px) {
  .problem .section-lead {
    max-width: 600px;
  }

  .register-card {
    position: sticky;
    top: calc(76px + 1rem);
    z-index: 5;
    width: 100%;
    height: auto;
    overflow: hidden;
  }
}

@media (max-width: 980px) {
  .header-inner {
    display: flex;
    min-height: 72px;
  }

  .brand {
    grid-column: auto;
  }

  .nav-toggle {
    display: flex;
    grid-column: auto;
    margin-left: auto;
  }

  .header-cta {
    display: none;
    grid-column: auto;
  }

  .primary-nav {
    grid-column: auto;
    grid-row: auto;
    white-space: normal;
    position: fixed;
    top: 76px;
    right: 1rem;
    left: auto;
    width: min(420px, calc(100vw - 2rem));
    max-height: calc(100dvh - 92px);
    overflow-y: auto;
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
    justify-items: stretch;
    gap: 0.25rem;
    border: 1px solid rgba(79, 138, 91, 0.18);
    border-radius: 18px;
    background: rgba(250, 248, 242, 0.94);
    box-shadow:
      0 22px 54px rgba(47, 62, 52, 0.16),
      inset 0 1px 0 rgba(255, 255, 255, 0.68);
    padding: 0.55rem;
    backdrop-filter: blur(16px);
    transform: translateY(-0.65rem) scale(0.98);
    transform-origin: top right;
    opacity: 0;
    pointer-events: none;
    transition:
      transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
      opacity 180ms ease;
  }

  .nav-open .primary-nav {
    transform: translateY(0) scale(1);
    opacity: 1;
    pointer-events: auto;
  }

  .primary-nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
    justify-self: stretch;
    border-radius: 12px;
    color: var(--color-deep-forest);
    padding: 0.9rem 0.95rem;
    text-align: left;
    font-weight: 700;
    line-height: 1.25;
    transition:
      background-color var(--ease),
      color var(--ease),
      transform var(--ease);
  }

  .primary-nav a::after {
    content: "";
    position: static;
    flex: 0 0 auto;
    width: 0.45rem;
    height: 0.45rem;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    border-radius: 1px;
    background: transparent;
    opacity: 0.6;
    transform: rotate(45deg);
    transition:
      opacity var(--ease),
      transform var(--ease);
  }

  .primary-nav a:hover,
  .primary-nav a:focus-visible {
    background: var(--color-soft-sage);
    color: var(--color-bloom-green);
    transform: translateX(2px);
  }

  .primary-nav a:hover::after,
  .primary-nav a:focus-visible::after {
    opacity: 1;
    transform: translateX(3px) rotate(45deg);
  }

  .primary-nav a:active {
    background: rgba(244, 201, 93, 0.2);
    color: var(--color-deep-forest);
    transform: translateX(1px);
  }

  .hero {
    min-height: auto;
    padding-top: 2.2rem;
  }

  .hero-grid,
  .insight-grid,
  .origin-grid,
  .experience-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .experience-grid {
    align-items: start;
  }

  .hero-copy {
    padding-bottom: 1.8rem;
  }

  .hero-visual {
    width: 100%;
    min-height: 420px;
    margin: 0;
    border-radius: 14px;
  }

  .hero-visual::before {
    background: linear-gradient(
      0deg,
      rgba(47, 62, 52, 0.12),
      rgba(47, 62, 52, 0)
    );
  }

  .value-grid,
  .reason-grid,
  .supporting-panels {
    grid-template-columns: 1fr;
  }

  .register-card {
    max-width: 640px;
    height: auto;
    min-height: 0;
  }

  .timeline {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .timeline::before {
    top: 22px;
    left: 22px;
    right: auto;
    bottom: 22px;
    width: 2px;
    height: auto;
    background: linear-gradient(
      180deg,
      rgba(79, 138, 91, 0.28),
      rgba(79, 138, 91, 0.55) 18%,
      rgba(79, 138, 91, 0.55) 82%,
      rgba(79, 138, 91, 0.28)
    );
  }

  .timeline-step {
    min-height: 58px;
    grid-template-columns: auto 1fr;
    justify-items: start;
    align-items: center;
    text-align: left;
    font-size: 0.92rem;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 1.25rem), var(--container));
  }

  .section {
    padding-block: 2.8rem;
  }

  .brand strong {
    font-size: 1.42rem;
  }

  .brand small {
    letter-spacing: 0.22em;
  }

  h1 {
    font-size: clamp(3rem, 14vw, 3.75rem);
  }

  h2 {
    font-size: clamp(1.8rem, 8vw, 2.35rem);
  }

  .hero {
    padding-top: 1.35rem;
  }

  .hero-script {
    font-size: clamp(1.2rem, 4.2vw, 1.85rem);
  }

  .hero-lead {
    margin-top: 1rem;
  }

  .hero-points {
    gap: 0.5rem;
    margin-top: 1.25rem;
  }

  .hero-points li {
    gap: 0.38rem;
    font-size: 0.78rem;
  }

  .hero-points .icon-circle {
    width: 40px;
    height: 40px;
  }

  .btn-large {
    width: 100%;
    min-width: 0;
    margin-top: 1.25rem;
  }

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

  .problem .concern-grid {
    grid-template-columns: 1fr;
  }

  .problem .concern-card {
    min-height: auto;
    grid-template-columns: auto 1fr;
    justify-items: start;
    text-align: left;
  }

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

  .problem-insight {
    border-radius: 18px;
    padding: 0.95rem 1rem;
  }

  .problem-insight-quote {
    font-size: 1rem;
  }

  .insight-kicker {
    right: 0;
    bottom: -0.5rem;
    font-size: clamp(3.5rem, 16vw, 4.75rem);
  }

  .value-card,
  .reason-card {
    grid-template-columns: 1fr;
  }

  .value-card p,
  .reason-card p {
    grid-column: auto;
    margin-top: 0.15rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Modern polish layer */

.site-header {
  background: rgba(250, 248, 242, 0.82);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(79, 138, 91, 0.08);
}

.btn {
  border-radius: 999px;
  box-shadow:
    0 10px 22px rgba(244, 201, 93, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.btn:hover,
.btn:focus-visible {
  box-shadow:
    0 14px 28px rgba(79, 138, 91, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.36);
}

.origin-grid {
  align-items: stretch;
  gap: clamp(1.1rem, 2.6vw, 1.8rem);
}

.origin-card,
.program-card {
  height: 100%;
  border-color: rgba(79, 138, 91, 0.13);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

.origin-card {
  min-height: clamp(470px, 42vw, 560px);
  border: 0;
  box-shadow:
    0 0 0 1px rgba(79, 138, 91, 0.16),
    var(--shadow-card);
  padding: clamp(1.6rem, 2.8vw, 2.35rem);
}

.origin-card::after {
  background:
    linear-gradient(
      115deg,
      rgba(250, 248, 242, 0.96) 0%,
      rgba(250, 248, 242, 0.9) 42%,
      rgba(250, 248, 242, 0.52) 68%,
      rgba(250, 248, 242, 0.18) 100%
    ),
    linear-gradient(
      180deg,
      rgba(47, 62, 52, 0),
      rgba(47, 62, 52, 0.16)
    );
}

.origin-card h2,
.program-card h2 {
  font-size: clamp(2.15rem, 3vw, 3.05rem);
  line-height: 1.06;
  letter-spacing: -0.015em;
}

.origin-card p,
.program-card p {
  max-width: 58ch;
}

.origin-card p {
  color: rgba(47, 62, 52, 0.9);
}

.value-grid {
  gap: 1rem;
  margin-top: 1.65rem;
}

.value-card,
.reason-card,
.concern-card,
.faq-list details {
  border-radius: var(--radius-card);
  background: rgba(250, 248, 242, 0.82);
  box-shadow: var(--shadow-card);
}

.value-card,
.reason-card {
  gap: 0.9rem;
  padding: 1.15rem;
}

.value-card p,
.reason-card p {
  margin-top: 0.15rem;
  font-size: 0.9rem;
  line-height: 1.55;
}

.insight {
  padding-block: var(--space-section-sm);
}

@media (hover: hover) {
  .foundation-grid li {
    transition:
      border-color 180ms ease,
      background-color 180ms ease,
      box-shadow 180ms ease;
  }

  .foundation-grid li:hover {
    border-color: rgba(79, 138, 91, 0.24);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 8px 22px rgba(47, 62, 52, 0.05);
  }

  .value-card,
  .reason-card,
  .concern-card,
  .faq-list details {
    transition:
      border-color 180ms ease,
      box-shadow 180ms ease;
  }

  .value-card:hover,
  .reason-card:hover,
  .concern-card:hover,
  .faq-list details:hover {
    border-color: rgba(79, 138, 91, 0.24);
    box-shadow: 0 14px 32px rgba(47, 62, 52, 0.07);
  }
}

@media (max-width: 980px) {
  .hero-visual {
    border-radius: 22px;
  }

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