@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,500;1,600&family=Manrope:wght@400;500;600;700;800&family=Sacramento&display=swap");

:root {
  --green-50: #eaf7f2;
  --green-100: #cfede2;
  --green-200: #a6ddc9;
  --green-300: #71c8aa;
  --green-500: #35a988;
  --green-600: #2a8a6f;
  --green-700: #226e59;
  --green-800: #1c5746;
  --green-900: #143e33;

  --rose-50: #fbedf0;
  --rose-100: #f6d6dd;
  --rose-300: #e18197;
  --rose-500: #c43e5a;
  --rose-600: #a62e47;

  --cream: #fbfaf7;
  --paper: #ffffff;
  --sage-tint: #f2f6f2;
  --rose-tint: #fcf2f4;

  --ink: #1c2521;
  --body: #3c443e;
  --muted: #717b72;
  --line: #e8e5dd;
  --line-strong: #d8d4c9;

  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --script: "Sacramento", cursive;

  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --radius-xl: 34px;
  --radius-pill: 999px;

  --shadow-1: 0 2px 6px rgba(28, 37, 33, 0.05);
  --shadow-2: 0 10px 30px rgba(28, 37, 33, 0.09);
  --shadow-3: 0 24px 64px rgba(28, 37, 33, 0.14);

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  min-height: 100%;
  font-family: var(--sans);
  color: var(--body);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  background: var(--green-200);
  color: var(--green-900);
}

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

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

button {
  font: inherit;
}

.wrap {
  width: min(1200px, calc(100% - 64px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  transform: translateY(-140%);
  transition: transform 0.2s;
}

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

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

.script {
  font-family: var(--script);
  color: var(--rose-500);
  font-weight: 400;
}

.eyebrow {
  color: var(--green-700);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.5;
  text-transform: uppercase;
}

.eyebrow-light {
  color: var(--green-200);
}

.section {
  padding: 104px 0;
}

.sec-head {
  max-width: 720px;
  margin-bottom: 52px;
}

.sec-head.center {
  margin-inline: auto;
  text-align: center;
}

.section-title {
  margin-top: 13px;
  font-family: var(--serif);
  font-size: clamp(38px, 4.6vw, 58px);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.018em;
  color: var(--ink);
}

.section-lead {
  max-width: 65ch;
  margin: 18px auto 0;
  color: var(--body);
  font-size: 17px;
  line-height: 1.75;
}

.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 27px;
  border: 0;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 800;
  transition:
    transform 0.18s var(--ease),
    box-shadow 0.25s var(--ease),
    background 0.2s,
    border-color 0.2s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn:focus-visible,
.site-nav a:focus-visible,
.menu-toggle:focus-visible {
  outline: 3px solid var(--green-300);
  outline-offset: 4px;
}

.btn-primary {
  color: #fff;
  background: var(--green-700);
  box-shadow: 0 14px 34px rgba(34, 110, 89, 0.24);
}

.btn-primary:hover {
  background: var(--green-800);
  box-shadow: 0 18px 38px rgba(34, 110, 89, 0.3);
}

.btn-ghost {
  color: var(--green-800);
  border: 1.5px solid var(--green-400);
  background: rgba(255, 255, 255, 0.62);
}

.btn-ghost:hover {
  background: var(--green-50);
  border-color: var(--green-600);
}

.btn-rose {
  color: #fff;
  background: var(--rose-500);
  box-shadow: 0 14px 34px rgba(196, 62, 90, 0.2);
}

.btn-rose:hover {
  background: var(--rose-600);
}

.btn-light {
  color: var(--green-800);
  background: #fff;
  box-shadow: var(--shadow-2);
}

.btn-arrow {
  transition: transform 0.2s var(--ease);
}

.btn:hover .btn-arrow {
  transform: translateX(4px);
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 18px 0;
  transition:
    padding 0.3s var(--ease),
    background 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}

.site-header.scrolled {
  padding: 11px 0;
  background: rgba(251, 250, 247, 0.9);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--line);
}

.site-header-inner {
  width: min(1200px, calc(100% - 64px));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 0.17em;
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 700;
  line-height: 1;
  color: var(--ink);
  white-space: nowrap;
}

.wordmark .script {
  font-size: 1.2em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 27px;
}

.site-nav a {
  position: relative;
  padding: 5px 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--green-500);
  transition: width 0.22s var(--ease);
}

.site-nav a:hover {
  color: var(--green-700);
}

.site-nav a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 21px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
  transition: transform 0.2s, opacity 0.2s;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 154px 0 94px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: center;
  gap: 68px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero h1 {
  max-width: 760px;
  margin-top: 17px;
  font-family: var(--serif);
  font-size: clamp(53px, 5.9vw, 82px);
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: -0.025em;
  color: var(--ink);
}

.hero h1 em {
  display: block;
  margin-top: 7px;
  color: var(--rose-500);
  font-weight: 500;
}

.hero-sub {
  max-width: 52ch;
  margin-top: 27px;
  color: var(--body);
  font-size: 18px;
  line-height: 1.72;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 33px;
}

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

.proof-item {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 170px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.proof-item strong {
  display: block;
  color: var(--ink);
  font-size: 13px;
}

.proof-icon {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--green-700);
  background: rgba(255,255,255,0.7);
}

.hero-photo {
  position: relative;
  width: min(100%, 500px);
  justify-self: end;
  padding-right: 24px;
}

.portrait-frame {
  aspect-ratio: 4 / 5.08;
  overflow: hidden;
  border-radius: 250px 250px 28px 28px;
  background: var(--sage-tint);
  box-shadow: var(--shadow-3);
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 27%;
}

.experience-card {
  position: absolute;
  right: -12px;
  bottom: 54px;
  width: 172px;
  padding: 19px;
  border: 1px solid rgba(216, 212, 201, 0.9);
  border-radius: 18px;
  color: var(--body);
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-2);
}

.experience-card strong {
  display: block;
  margin: 8px 0 3px;
  font-family: var(--serif);
  color: var(--ink);
  font-size: 43px;
  line-height: 0.9;
}

.experience-card span:last-child {
  display: block;
  font-size: 12px;
  line-height: 1.55;
}

.experience-mark {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--green-700);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(58px);
  opacity: 0.48;
  pointer-events: none;
}

.hero-orb-green {
  width: 500px;
  height: 500px;
  right: -8%;
  top: 3%;
  background: var(--green-200);
}

.hero-orb-rose {
  width: 350px;
  height: 350px;
  left: -9%;
  bottom: -10%;
  background: var(--rose-100);
}

/* Familiar */
.familiar {
  padding: 82px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(105deg, rgba(242,246,242,0.92), rgba(251,250,247,0.98) 46%, rgba(252,242,244,0.72));
}

.familiar .sec-head {
  margin-bottom: 43px;
}

.familiar-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.familiar-item {
  min-height: 164px;
  padding: 28px 22px;
  text-align: center;
}

.familiar-item + .familiar-item {
  border-left: 1px solid var(--line-strong);
}

.line-icon {
  display: block;
  margin-bottom: 14px;
  color: var(--green-700);
  font-family: var(--serif);
  font-size: 31px;
}

.familiar-item p {
  color: var(--ink);
  font-size: 14px;
  line-height: 1.62;
}

.reassurance {
  margin-top: 33px;
  text-align: center;
}

.reassurance p {
  font-family: var(--serif);
  color: var(--green-800);
  font-size: clamp(25px, 3vw, 34px);
  font-weight: 600;
}

.reassurance em {
  display: block;
  margin-top: 2px;
  color: var(--rose-500);
  font-family: var(--serif);
  font-size: clamp(22px, 2.7vw, 30px);
}

/* How */
.how {
  background: var(--cream);
}

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

.how-card {
  position: relative;
  min-height: 320px;
  padding: 35px 31px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
  box-shadow: var(--shadow-1);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.how-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-2);
}

.how-card::after {
  content: "";
  position: absolute;
  width: 145px;
  height: 145px;
  right: -72px;
  bottom: -74px;
  border-radius: 50%;
  background: var(--green-50);
}

.step-number {
  font-family: var(--serif);
  color: var(--green-200);
  font-size: 62px;
  font-weight: 600;
  line-height: 0.8;
}

.how-card h3,
.pillar-card h3 {
  margin-top: 20px;
  font-family: var(--serif);
  color: var(--ink);
  font-size: 27px;
  font-weight: 600;
  line-height: 1.08;
}

.how-card p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
}

/* Pillars */
.pillars {
  background: var(--sage-tint);
}

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

.pillar-card {
  min-height: 275px;
  padding: 29px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.9);
  box-shadow: var(--shadow-1);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.pillar-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-2);
}

.pillar-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: var(--green-800);
  background: var(--green-50);
  font-family: var(--serif);
  font-size: 27px;
}

.pillar-card h3 {
  margin-top: 17px;
  font-size: 24px;
}

.pillar-card p {
  margin-top: 9px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.67;
}

/* Testimonials */
.testimonials {
  background: var(--cream);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 22px;
}

.testimonial-card {
  position: relative;
  min-height: 322px;
  display: flex;
  flex-direction: column;
  padding: 34px 31px 29px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-1);
}

.testimonial-card.featured {
  /*transform: translateY(-10px);
  border-color: var(--green-200);
  box-shadow: var(--shadow-2);*/
  background: white;
  color: inherit;
}

.quote-mark {
  height: 38px;
  color: var(--rose-300);
  font-family: var(--serif);
  font-size: 65px;
  line-height: 0.7;
}

.testimonial-card blockquote {
  margin-top: 12px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 600;
  line-height: 1.42;
}

.client {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: auto;
  padding-top: 30px;
}

.client-avatar {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: var(--green-800);
  background: var(--green-50);
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 700;
}

.client strong,
.client small {
  display: block;
}

.client strong {
  color: var(--green-800);
  font-size: 14px;
}

.client small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

.testimonial-note {
  max-width: 760px;
  margin: 30px auto 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
  text-align: center;
}

/* Bio */
.bio {
  background: var(--rose-tint);
}

.bio-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
  align-items: start;
  gap: 68px;
}

.bio-photo {
  position: sticky;
  top: 106px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-3);
}

.bio-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 24%;
}

.bio-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  min-width: 145px;
  padding: 12px 16px;
  border-radius: 15px;
  background: rgba(251,250,247,0.91);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-2);
}

.bio-badge span,
.bio-badge strong {
  display: block;
}

.bio-badge .script {
  font-size: 31px;
  line-height: 0.8;
}

.bio-badge strong {
  margin-top: 5px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 19px;
}

.bio-intro {
  margin-top: 22px;
  color: var(--body);
  font-size: 17px;
  line-height: 1.75;
}

.story-steps {
  display: grid;
  gap: 22px;
  margin: 32px 0;
}

.story-steps article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line-strong);
}

.story-steps article > span {
  padding-top: 2px;
  color: var(--rose-500);
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 600;
}

.story-steps h3 {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 600;
}

.story-steps p {
  margin-top: 6px;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.68;
}

.bio-signoff {
  margin-bottom: 26px;
  color: var(--green-800);
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 600;
  line-height: 1.4;
}

.credential-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-bottom: 28px;
  padding-top: 23px;
  border-top: 1px solid var(--line-strong);
  list-style: none;
}

.credential-list li {
  color: var(--green-800);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.45;
}

.credential-list li:not(:last-child)::after {
  content: "·";
  margin-left: 14px;
  color: var(--line-strong);
}

/* Pricing */
.pricing {
  background: var(--cream);
}

.pricing-card {
  position: relative;
  max-width: 690px;
  margin-inline: auto;
  padding: 58px 48px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  text-align: center;
  background: #fff;
  box-shadow: var(--shadow-2);
}

.pricing-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--green-400), var(--rose-300));
}

.pricing-tag {
  display: inline-block;
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  color: var(--green-800);
  background: var(--green-50);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.price {
  margin-top: 19px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(58px, 7vw, 78px);
  font-weight: 600;
  line-height: 1;
}

.price small {
  margin-left: 6px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
}

.pricing-card h3 {
  margin-top: 12px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 600;
}

.pricing-card > p {
  max-width: 51ch;
  margin: 12px auto 27px;
  color: var(--body);
  font-size: 15.5px;
  line-height: 1.72;
}

.pricing-list {
  max-width: 395px;
  margin: 0 auto 31px;
  display: grid;
  gap: 11px;
  text-align: left;
  list-style: none;
}

.pricing-list li {
  display: flex;
  gap: 11px;
  color: var(--body);
  font-size: 14px;
}

.pricing-list li::before {
  content: "✓";
  flex: 0 0 auto;
  color: var(--green-600);
  font-weight: 900;
}

/* Final CTA */
.final-cta {
  padding: 24px 0 100px;
  background: var(--cream);
}

.final-card {
  position: relative;
  overflow: hidden;
  padding: 78px 56px;
  border-radius: var(--radius-xl);
  text-align: center;
  color: #fff;
  background: linear-gradient(145deg, var(--green-700), var(--green-900));
}

.final-card::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -150px;
  width: 390px;
  height: 390px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 62, 90, 0.4), transparent 70%);
}

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

.final-card h2 {
  max-width: 780px;
  margin: 13px auto 0;
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(42px, 5.5vw, 63px);
  font-weight: 600;
  line-height: 1.04;
}

.final-card > p:not(.eyebrow) {
  max-width: 630px;
  margin: 20px auto 32px;
  color: rgba(255,255,255,0.82);
  font-size: 17px;
  line-height: 1.7;
}

.final-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 13px;
}

/* Footer */
.footer {
  padding: 61px 0 31px;
  color: rgba(255,255,255,0.7);
  background: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.9fr 0.9fr;
  gap: 45px;
  padding-bottom: 42px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.footer-logo {
  color: #fff;
  font-family: var(--serif);
  font-size: 31px;
  font-weight: 700;
}

.footer-logo em {
  color: var(--rose-300);
  font-family: var(--script);
  font-size: 1.12em;
  font-style: normal;
  font-weight: 400;
}

.footer p {
  max-width: 39ch;
  margin-top: 13px;
  font-size: 14px;
  line-height: 1.7;
}

.footer h3 {
  margin-bottom: 13px;
  color: var(--green-300);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer a {
  display: block;
  padding: 6px 0;
  font-size: 14px;
  transition: color 0.2s;
}

.footer a:hover {
  color: #fff;
}

.instagram {
  margin-top: 12px;
  color: var(--rose-300);
  font-weight: 700;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding-top: 24px;
  font-size: 12px;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.72s var(--ease), transform 0.72s var(--ease);
}

.reveal.in {
  opacity: 1;
  transform: none;
}

/* Responsive */
@media (max-width: 1050px) {
  .site-nav {
    gap: 18px;
  }

  .header-cta {
    padding-inline: 19px;
  }

  .hero-grid {
    gap: 42px;
  }

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

  .familiar-item:nth-child(4),
  .familiar-item:nth-child(5) {
    border-top: 1px solid var(--line-strong);
  }

  .familiar-item:nth-child(4) {
    grid-column: 1 / 2;
    margin-left: 50%;
  }

  .familiar-item:nth-child(5) {
    grid-column: 2 / 3;
    margin-right: -50%;
  }

  .familiar-item:nth-child(4) {
    border-left: 0;
  }
}

@media (max-width: 900px) {
  .wrap,
  .site-header-inner {
    width: min(100% - 40px, 760px);
  }

  .site-nav {
    position: fixed;
    inset: 75px 20px auto;
    display: none;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 18px;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    background: rgba(251,250,247,0.98);
    box-shadow: var(--shadow-3);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 12px;
    border-radius: 10px;
  }

  .site-nav a:hover {
    background: var(--green-50);
  }

  .site-nav a::after {
    display: none;
  }

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

  .menu-toggle.active span:nth-of-type(2) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-toggle.active span:nth-of-type(3) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-of-type(4) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .header-cta {
    display: none;
  }

  .hero {
    padding: 126px 0 72px;
  }

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

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

  .hero-photo {
    width: min(100%, 500px);
    justify-self: center;
  }

  .how-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card.featured {
    transform: none;
  }

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

  .bio-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .bio-photo {
    position: relative;
    top: auto;
    max-width: 480px;
  }

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

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

@media (max-width: 660px) {
  .wrap,
  .site-header-inner {
    width: min(100% - 34px, 560px);
  }

  .section {
    padding: 76px 0;
  }

  .wordmark {
    font-size: 23px;
  }

  .hero h1 {
    font-size: clamp(48px, 14vw, 66px);
  }

  .hero-sub {
    font-size: 16.5px;
  }

  .hero-ctas .btn {
    width: 100%;
  }

  .proof-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .proof-item {
    max-width: none;
  }

  .hero-photo {
    padding-right: 0;
  }

  .experience-card {
    right: -5px;
    bottom: 25px;
    width: 150px;
  }

  .familiar {
    padding: 68px 0;
  }

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

  .familiar-item,
  .familiar-item:nth-child(4),
  .familiar-item:nth-child(5) {
    grid-column: auto;
    min-height: auto;
    margin: 0;
    padding: 24px 20px;
    border-left: 0;
    border-top: 1px solid var(--line-strong);
  }

  .familiar-item:first-child {
    border-top: 0;
  }

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

  .how-card,
  .pillar-card {
    min-height: auto;
  }

  .pricing-card {
    padding: 44px 24px;
  }

  .price small {
    display: block;
    margin: 7px 0 0;
  }

  .final-card {
    padding: 55px 23px;
  }

  .final-actions .btn {
    width: 100%;
  }

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

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

  .footer-bottom {
    flex-direction: column;
  }

  .credential-list {
    flex-direction: column;
  }

  .credential-list li::after {
    display: none;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}


/* =========================================================
   CUSTOMER JOURNEY PAGES
   These rules extend the premium homepage design system.
   ========================================================= */

.journey-page {
  background:
    radial-gradient(circle at 92% 6%, rgba(166, 221, 201, 0.34), transparent 31rem),
    radial-gradient(circle at 5% 82%, rgba(246, 214, 221, 0.35), transparent 27rem),
    var(--cream);
}

.journey-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  background: rgba(251, 250, 247, 0.92);
  backdrop-filter: blur(16px);
}

.journey-header-inner {
  width: min(1120px, calc(100% - 64px));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.journey-header .wordmark {
  font-size: 25px;
}

.journey-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.journey-nav a {
  color: var(--ink);
  font-size: 13.5px;
  font-weight: 700;
}

.journey-nav a:hover {
  color: var(--green-700);
}

.journey-shell {
  min-height: calc(100vh - 76px);
  padding: 62px 0 96px;
}

.journey-wrap {
  width: min(940px, calc(100% - 64px));
  margin-inline: auto;
}

.journey-wrap.wide {
  width: min(1120px, calc(100% - 64px));
}

.journey-title {
  max-width: 790px;
  margin-inline: auto;
  text-align: center;
}

.journey-title h1 {
  margin-top: 14px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(46px, 6vw, 72px);
  font-weight: 600;
  line-height: 1.01;
  letter-spacing: -0.02em;
}

.journey-title h1 em {
  display: block;
  color: var(--rose-500);
  font-weight: 500;
}

.journey-title > p:not(.eyebrow) {
  max-width: 62ch;
  margin: 19px auto 0;
  color: var(--body);
  font-size: 17px;
  line-height: 1.75;
}

.journey-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-2);
}

.journey-progress {
  margin: 36px 0 22px;
}

.journey-progress-meta {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 9px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.journey-progress-track {
  height: 8px;
  overflow: hidden;
  border-radius: var(--radius-pill);
  background: var(--line);
}

.journey-progress-fill {
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green-500), var(--rose-300));
  transition: width 0.3s var(--ease);
}

.assessment-card {
  padding: 40px;
}

.assessment-question {
  display: none;
}

.assessment-question.active {
  display: block;
}

.assessment-question h2 {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(31px, 4vw, 40px);
  font-weight: 600;
  line-height: 1.08;
}

.question-helper {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.answer-grid {
  display: grid;
  gap: 12px;
  margin-top: 27px;
}

.answer-option {
  position: relative;
}

.answer-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.answer-option label {
  display: block;
  padding: 18px 19px;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  color: var(--ink);
  background: #fff;
  font-size: 14.5px;
  font-weight: 700;
  line-height: 1.5;
  cursor: pointer;
  transition:
    border-color 0.18s,
    background 0.18s,
    box-shadow 0.18s;
}

.answer-option label:hover {
  border-color: var(--green-300);
  background: var(--green-50);
}

.answer-option input:checked + label {
  border-color: var(--green-600);
  background: var(--green-50);
  box-shadow: 0 0 0 3px rgba(53, 169, 136, 0.12);
}

.assessment-actions {
  display: flex;
  justify-content: space-between;
  gap: 13px;
  margin-top: 31px;
}

.assessment-actions .btn {
  min-width: 145px;
}

.results-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 25px;
  margin-top: 38px;
}

.score-card,
.focus-card,
.results-copy-card,
.result-metric,
.journey-cta-card {
  padding: 34px;
}

.score-ring {
  position: relative;
  width: 166px;
  height: 166px;
  margin: 0 auto 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(var(--green-600) 0deg, var(--line) 0deg);
}

.score-ring::after {
  content: "";
  position: absolute;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: #fff;
}

.score-value {
  position: relative;
  z-index: 1;
  text-align: center;
}

.score-value strong {
  display: block;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 49px;
  line-height: 0.95;
}

.score-value span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.score-card h2 {
  text-align: center;
  font-size: 33px;
}

.score-card p {
  margin-top: 10px;
  text-align: center;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.7;
}

.focus-card {
  color: #fff;
  background: linear-gradient(145deg, var(--green-700), var(--green-900));
}

.focus-label {
  display: inline-block;
  padding: 7px 12px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.12);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.focus-card h2 {
  margin-top: 18px;
  color: #fff;
  font-size: clamp(37px, 5vw, 51px);
}

.focus-card p {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.83);
  font-size: 15px;
  line-height: 1.75;
}

.result-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 24px;
}

.result-metric {
  padding: 23px;
}

.result-metric-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.result-metric h3 {
  font-size: 23px;
}

.result-metric strong {
  color: var(--green-700);
  font-size: 13px;
}

.result-bar {
  height: 9px;
  margin-top: 13px;
  overflow: hidden;
  border-radius: var(--radius-pill);
  background: var(--line);
}

.result-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green-500), var(--rose-300));
}

.result-metric p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.6;
}

.results-copy-card {
  margin-top: 24px;
}

.results-copy-card h2 {
  margin-top: 10px;
  font-size: 37px;
}

.results-copy-card ul {
  display: grid;
  gap: 12px;
  margin: 21px 0 0 20px;
}

.results-copy-card li {
  padding-left: 3px;
  line-height: 1.65;
}

.journey-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}

.journey-cta-card h3 {
  margin-top: 9px;
  font-size: 31px;
}

.journey-cta-card p {
  margin: 10px 0 21px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.68;
}

.application-overview {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: 40px;
  margin: 36px 0;
}

.application-photo {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-3);
}

.application-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 24%;
}

.application-badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 12px 15px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-2);
}

.application-badge strong,
.application-badge span {
  display: block;
}

.application-badge strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 20px;
}

.application-badge span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
}

.application-overview h2 {
  font-size: 42px;
}

.application-overview p {
  margin-top: 13px;
  line-height: 1.75;
}

.application-overview ul {
  display: grid;
  gap: 9px;
  margin: 19px 0 0 20px;
}

.application-form {
  padding: 40px;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 19px;
}

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

.form-field.full {
  grid-column: 1 / -1;
}

.form-field label {
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1.5px solid var(--line);
  border-radius: 13px;
  outline: none;
  color: var(--ink);
  background: #fff;
}

.form-field textarea {
  min-height: 130px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--green-600);
  box-shadow: 0 0 0 3px rgba(53, 169, 136, 0.12);
}

.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 21px;
  font-size: 12.5px;
  line-height: 1.6;
}

.form-note {
  margin-top: 14px;
  color: var(--muted);
  font-size: 11.5px;
  line-height: 1.6;
}

.thank-card {
  max-width: 880px;
  margin-inline: auto;
  padding: 57px 42px;
  text-align: center;
}

.thank-icon {
  width: 76px;
  height: 76px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--green-700);
  background: var(--green-50);
  font-size: 31px;
}

.thank-card h1 {
  margin-top: 11px;
  font-size: clamp(46px, 6vw, 63px);
}

.thank-card > p:not(.eyebrow) {
  max-width: 59ch;
  margin: 16px auto 0;
  line-height: 1.75;
}

.next-step-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 29px;
  text-align: left;
}

.next-step {
  padding: 23px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--sage-tint);
}

.next-step > span {
  color: var(--rose-500);
  font-family: var(--serif);
  font-size: 28px;
}

.next-step h3 {
  margin-top: 5px;
  font-size: 21px;
}

.next-step p {
  margin-top: 6px;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.6;
}

.journey-footer {
  padding: 29px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 11.5px;
}

.journey-footer-inner {
  width: min(1120px, calc(100% - 64px));
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  gap: 15px;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .journey-header-inner,
  .journey-wrap,
  .journey-wrap.wide,
  .journey-footer-inner {
    width: min(100% - 40px, 760px);
  }

  .journey-nav {
    display: none;
  }

  .results-layout,
  .application-overview {
    grid-template-columns: 1fr;
  }

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

  .application-photo {
    max-width: 480px;
  }

  .next-step-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 650px) {
  .journey-header-inner,
  .journey-wrap,
  .journey-wrap.wide,
  .journey-footer-inner {
    width: min(100% - 34px, 560px);
  }

  .journey-shell {
    padding: 45px 0 75px;
  }

  .journey-header .wordmark {
    font-size: 22px;
  }

  .journey-header .btn {
    padding-inline: 16px;
    font-size: 12.5px;
  }

  .assessment-card,
  .score-card,
  .focus-card,
  .results-copy-card,
  .journey-cta-card,
  .application-form {
    padding: 26px;
  }

  .assessment-actions {
    flex-direction: column-reverse;
  }

  .assessment-actions .btn {
    width: 100%;
  }

  .result-metrics,
  .journey-cta-grid,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .form-field.full {
    grid-column: auto;
  }

  .thank-card {
    padding: 42px 22px;
  }
}


/* =========================================================
   PROGRAMME PATHWAY
   ========================================================= */

.programmes {
  background:
    linear-gradient(180deg, var(--cream), rgba(242, 246, 242, 0.88));
}

.programme-path {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 110px minmax(0, 1fr);
  align-items: center;
  gap: 22px;
}

.programme-card {
  min-height: 690px;
  display: flex;
  flex-direction: column;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-2);
}

.foundation-card {
  border-top: 5px solid var(--green-500);
}

.transformation-card {
  position: relative;
  overflow: hidden;
  border-top: 5px solid var(--rose-500);
}

.transformation-card::after {
  content: "";
  position: absolute;
  right: -95px;
  bottom: -110px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(246, 214, 221, 0.6), transparent 70%);
  pointer-events: none;
}

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

.programme-topline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.programme-label {
  color: var(--green-700);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.programme-tag {
  padding: 6px 10px;
  border-radius: var(--radius-pill);
  color: var(--green-800);
  background: var(--green-50);
  font-size: 10px;
  font-weight: 800;
}

.programme-tag.premium {
  color: var(--rose-600);
  background: var(--rose-50);
}

.programme-card h3 {
  margin-top: 22px;
  font-family: var(--serif);
  color: var(--ink);
  font-size: clamp(36px, 4vw, 47px);
  font-weight: 600;
  line-height: 1.02;
}

.programme-intro {
  margin-top: 16px;
  color: var(--body);
  font-size: 15px;
  line-height: 1.72;
}

.programme-benefits {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  list-style: none;
}

.programme-benefits li {
  display: flex;
  gap: 11px;
  color: var(--body);
  font-size: 14px;
  line-height: 1.55;
}

.programme-benefits li::before {
  content: "✓";
  flex: 0 0 auto;
  color: var(--green-600);
  font-weight: 900;
}

.transformation-card .programme-benefits li::before {
  color: var(--rose-500);
}

.programme-result {
  margin: auto 0 28px;
  padding: 19px;
  border-radius: 15px;
  background: var(--sage-tint);
}

.transformation-card .programme-result {
  background: var(--rose-tint);
}

.programme-result span,
.programme-result strong {
  display: block;
}

.programme-result span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.programme-result strong {
  margin-top: 6px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
}

.path-arrow {
  display: grid;
  gap: 8px;
  justify-items: center;
  color: var(--muted);
  text-align: center;
}

.path-arrow span {
  max-width: 10ch;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.11em;
  line-height: 1.4;
  text-transform: uppercase;
}

.path-arrow strong {
  color: var(--rose-500);
  font-family: var(--serif);
  font-size: 46px;
  font-weight: 500;
}

.programme-note {
  max-width: 860px;
  margin: 31px auto 0;
  padding: 20px 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  text-align: center;
  background: rgba(255, 255, 255, 0.75);
}

.programme-note p {
  color: var(--body);
  font-size: 14px;
  line-height: 1.7;
}

.programme-note strong {
  color: var(--green-800);
}

/* =========================================================
   FOUNDATIONS PAGE
   ========================================================= */

.foundation-hero {
  position: relative;
  overflow: hidden;
  padding: 144px 0 88px;
  background:
    radial-gradient(circle at 90% 5%, rgba(166, 221, 201, 0.42), transparent 30rem),
    radial-gradient(circle at 6% 92%, rgba(246, 214, 221, 0.45), transparent 26rem),
    var(--cream);
}

.foundation-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(350px, 0.94fr);
  align-items: center;
  gap: 62px;
}

.foundation-hero h1 {
  margin-top: 15px;
  font-family: var(--serif);
  color: var(--ink);
  font-size: clamp(54px, 6.5vw, 82px);
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: -0.025em;
}

.foundation-hero h1 em {
  display: block;
  color: var(--rose-500);
  font-weight: 500;
}

.foundation-hero-copy > p:not(.eyebrow) {
  max-width: 56ch;
  margin-top: 24px;
  color: var(--body);
  font-size: 17px;
  line-height: 1.75;
}

.foundation-price {
  margin-top: 24px;
  color: var(--green-800);
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
}

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

.foundation-visual {
  position: relative;
  padding: 33px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-3);
}

.foundation-visual::before {
  content: "";
  position: absolute;
  inset: 17px;
  border: 1px solid var(--green-100);
  border-radius: 25px;
  pointer-events: none;
}

.foundation-visual-content {
  position: relative;
  z-index: 1;
}

.foundation-visual h2 {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 600;
}

.foundation-visual p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.score-preview {
  display: grid;
  gap: 11px;
  margin-top: 25px;
}

.score-preview div {
  display: grid;
  grid-template-columns: 110px 1fr 42px;
  align-items: center;
  gap: 11px;
  font-size: 12px;
  font-weight: 700;
}

.preview-bar {
  height: 8px;
  overflow: hidden;
  border-radius: var(--radius-pill);
  background: var(--line);
}

.preview-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green-500), var(--rose-300));
}

.foundation-strip {
  padding: 27px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.foundation-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  text-align: center;
}

.foundation-strip-grid strong,
.foundation-strip-grid span {
  display: block;
}

.foundation-strip-grid strong {
  color: var(--green-800);
  font-family: var(--serif);
  font-size: 24px;
}

.foundation-strip-grid span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
}

.foundation-section {
  padding: 96px 0;
}

.foundation-section.light {
  background: var(--sage-tint);
}

.foundation-section.rose {
  background: var(--rose-tint);
}

.foundation-section-title {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.foundation-section-title h2 {
  margin-top: 12px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(39px, 5vw, 58px);
  font-weight: 600;
  line-height: 1.05;
}

.foundation-section-title p {
  margin-top: 17px;
  color: var(--body);
  font-size: 16px;
  line-height: 1.75;
}

.foundation-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 21px;
  margin-top: 45px;
}

.foundation-info-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-1);
}

.foundation-info-card span {
  color: var(--rose-500);
  font-family: var(--serif);
  font-size: 34px;
}

.foundation-info-card h3 {
  margin-top: 10px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 600;
}

.foundation-info-card p {
  margin-top: 9px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.68;
}

.challenge-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 17px;
  margin-top: 42px;
}

.challenge-card {
  min-height: 235px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
}

.challenge-card .challenge-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--green-800);
  background: var(--green-50);
  font-family: var(--serif);
  font-size: 25px;
}

.challenge-card h3 {
  margin-top: 16px;
  font-family: var(--serif);
  color: var(--ink);
  font-size: 22px;
  font-weight: 600;
}

.challenge-card p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.gamification-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
  margin-top: 47px;
  padding: 43px;
  border-radius: var(--radius-xl);
  color: #fff;
  background: linear-gradient(145deg, var(--green-700), var(--green-900));
}

.gamification-panel h3 {
  color: #fff;
  font-size: 42px;
}

.gamification-panel p {
  margin-top: 13px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.75;
}

.game-elements {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}

.game-element {
  padding: 18px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.1);
}

.game-element strong,
.game-element span {
  display: block;
}

.game-element strong {
  color: #fff;
  font-family: var(--serif);
  font-size: 22px;
}

.game-element span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  line-height: 1.5;
}

.foundation-journey {
  display: grid;
  grid-template-columns: 1fr 100px 1fr;
  align-items: center;
  gap: 23px;
  margin-top: 45px;
}

.journey-programme {
  padding: 35px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-2);
}

.journey-programme h3 {
  font-size: 37px;
}

.journey-programme p {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.7;
}

.journey-programme ul {
  display: grid;
  gap: 10px;
  margin: 21px 0 0;
  list-style: none;
}

.journey-programme li {
  display: flex;
  gap: 10px;
  font-size: 13px;
}

.journey-programme li::before {
  content: "✓";
  color: var(--green-600);
  font-weight: 900;
}

.journey-connector {
  color: var(--rose-500);
  font-family: var(--serif);
  font-size: 52px;
  text-align: center;
}

.foundation-pricing-card {
  max-width: 700px;
  margin: 44px auto 0;
  padding: 50px 43px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  text-align: center;
  background: #fff;
  box-shadow: var(--shadow-2);
}

.foundation-pricing-card .price {
  margin-top: 17px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(58px, 7vw, 76px);
  line-height: 1;
}

.foundation-pricing-card > p {
  max-width: 53ch;
  margin: 13px auto 0;
  color: var(--body);
  line-height: 1.7;
}

.foundation-pricing-list {
  max-width: 430px;
  margin: 26px auto 30px;
  display: grid;
  gap: 11px;
  text-align: left;
  list-style: none;
}

.foundation-pricing-list li {
  display: flex;
  gap: 11px;
  font-size: 14px;
}

.foundation-pricing-list li::before {
  content: "✓";
  color: var(--green-600);
  font-weight: 900;
}

@media (max-width: 980px) {
  .programme-path,
  .foundation-journey {
    grid-template-columns: 1fr;
  }

  .programme-card {
    min-height: auto;
  }

  .path-arrow,
  .journey-connector {
    transform: rotate(90deg);
  }

  .foundation-hero-grid,
  .gamification-panel {
    grid-template-columns: 1fr;
  }

  .foundation-visual {
    max-width: 560px;
  }

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

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

@media (max-width: 650px) {
  .foundation-hero {
    padding: 120px 0 70px;
  }

  .foundation-strip-grid,
  .challenge-grid,
  .game-elements {
    grid-template-columns: 1fr;
  }

  .foundation-strip-grid {
    gap: 15px;
  }

  .foundation-visual,
  .gamification-panel,
  .journey-programme,
  .foundation-pricing-card {
    padding: 26px;
  }

  .score-preview div {
    grid-template-columns: 90px 1fr 35px;
  }
}


/* =========================================================
   SIGNATURE PROGRAMME — HOMEPAGE
   ========================================================= */

.signature-programme {
  background:
    linear-gradient(180deg, var(--cream), rgba(252, 242, 244, 0.72));
}

.signature-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 28px;
  align-items: stretch;
}

.signature-copy,
.signature-panel {
  padding: 42px;
  border-radius: var(--radius-xl);
}

.signature-copy {
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-2);
}

.signature-tag {
  display: inline-block;
  padding: 7px 13px;
  border-radius: var(--radius-pill);
  color: var(--rose-600);
  background: var(--rose-50);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.signature-copy h3 {
  margin-top: 20px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(39px, 4.5vw, 55px);
  font-weight: 600;
  line-height: 1.03;
}

.signature-copy > p {
  margin-top: 16px;
  color: var(--body);
  font-size: 15.5px;
  line-height: 1.75;
}

.signature-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  list-style: none;
}

.signature-list li {
  display: flex;
  gap: 11px;
  color: var(--body);
  font-size: 14px;
  line-height: 1.55;
}

.signature-list li::before {
  content: "✓";
  color: var(--rose-500);
  font-weight: 900;
}

.signature-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 31px;
}

.signature-panel {
  color: #fff;
  background: linear-gradient(145deg, var(--green-700), var(--green-900));
  box-shadow: var(--shadow-3);
}

.signature-panel .eyebrow {
  color: var(--green-200);
}

.fit-list {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.fit-list > div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 15px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.fit-list > div:last-child {
  border-bottom: 0;
}

.fit-list span {
  color: var(--rose-300);
  font-family: var(--serif);
  font-size: 25px;
}

.fit-list p {
  color: rgba(255,255,255,0.86);
  font-size: 14px;
  line-height: 1.65;
}

.foundations-onramp {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 36px;
  margin-top: 27px;
  padding: 29px 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.82);
}

.foundations-onramp h3 {
  margin-top: 8px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 600;
}

.foundations-onramp p:not(.eyebrow) {
  max-width: 72ch;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.68;
}

.onramp-actions {
  display: grid;
  justify-items: end;
  gap: 10px;
}

.onramp-actions > span {
  color: var(--green-700);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

/* =========================================================
   TRANSFORMATION PAGE
   ========================================================= */

.transformation-hero {
  position: relative;
  overflow: hidden;
  padding: 145px 0 90px;
  background:
    radial-gradient(circle at 88% 5%, rgba(246,214,221,.55), transparent 31rem),
    radial-gradient(circle at 4% 94%, rgba(166,221,201,.38), transparent 27rem),
    var(--cream);
}

.transformation-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  align-items: center;
  gap: 66px;
}

.transformation-copy h1 {
  margin-top: 15px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(56px, 7vw, 86px);
  font-weight: 600;
  line-height: .94;
  letter-spacing: -.028em;
}

.transformation-copy h1 em {
  display: block;
  color: var(--rose-500);
  font-weight: 500;
}

.transformation-copy > p:not(.eyebrow) {
  max-width: 56ch;
  margin-top: 25px;
  color: var(--body);
  font-size: 17px;
  line-height: 1.75;
}

.transformation-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 29px;
}

.transformation-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 26px;
}

.transformation-proof span {
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  color: var(--green-800);
  background: rgba(255,255,255,.75);
  font-size: 10.5px;
  font-weight: 800;
}

.transformation-photo {
  position: relative;
  overflow: visible;
}

.transformation-photo > img {
  width: 100%;
  aspect-ratio: 4/5.1;
  object-fit: cover;
  object-position: 50% 24%;
  border-radius: 240px 240px 28px 28px;
  box-shadow: var(--shadow-3);
}

.transformation-photo-card {
  position: absolute;
  right: -19px;
  bottom: 52px;
  width: 182px;
  padding: 18px;
  border-radius: 17px;
  background: rgba(255,255,255,.94);
  box-shadow: var(--shadow-2);
}

.transformation-photo-card strong,
.transformation-photo-card span {
  display: block;
}

.transformation-photo-card strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 43px;
  line-height: 1;
}

.transformation-photo-card span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}

.transformation-section {
  padding: 100px 0;
}

.transformation-section.light {
  background: var(--sage-tint);
}

.transformation-head {
  max-width: 790px;
}

.transformation-head.center {
  margin-inline: auto;
  text-align: center;
}

.transformation-head h2 {
  margin-top: 12px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 61px);
  font-weight: 600;
  line-height: 1.04;
}

.transformation-head > p:not(.eyebrow) {
  margin-top: 17px;
  color: var(--body);
  font-size: 16px;
  line-height: 1.75;
}

.difference-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 45px;
}

.difference-card {
  min-height: 300px;
  padding: 31px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-1);
}

.difference-card > span {
  color: var(--rose-300);
  font-family: var(--serif);
  font-size: 44px;
}

.difference-card h3 {
  margin-top: 15px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 600;
  line-height: 1.08;
}

.difference-card p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.journey-timeline {
  max-width: 880px;
  margin: 47px auto 0;
  display: grid;
  gap: 0;
}

.journey-timeline article {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 22px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line-strong);
}

.journey-timeline article > span {
  color: var(--rose-500);
  font-family: var(--serif);
  font-size: 30px;
}

.journey-timeline h3 {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
}

.journey-timeline p {
  margin-top: 5px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.pillars-premium {
  background: linear-gradient(180deg, var(--cream), var(--rose-tint));
}

.premium-pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 44px;
}

.premium-pillar-grid article {
  padding: 29px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.88);
}

.premium-pillar-grid article > span {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--green-800);
  background: var(--green-50);
  font-family: var(--serif);
  font-size: 26px;
}

.premium-pillar-grid h3 {
  margin-top: 15px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
}

.premium-pillar-grid p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.65;
}

.fit-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.fit-title {
  margin-top: 12px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 58px);
  font-weight: 600;
  line-height: 1.04;
}

.fit-copy {
  margin-top: 17px;
  color: var(--muted);
  line-height: 1.75;
}

.fit-panel {
  padding: 37px;
  border-radius: var(--radius-xl);
  color: #fff;
  background: linear-gradient(145deg, var(--green-700), var(--green-900));
  box-shadow: var(--shadow-3);
}

.fit-panel h3 {
  color: #fff;
  font-size: 34px;
}

.fit-panel ul {
  display: grid;
  gap: 12px;
  margin: 22px 0 28px;
  list-style: none;
}

.fit-panel li {
  display: flex;
  gap: 11px;
  color: rgba(255,255,255,.86);
  font-size: 14px;
  line-height: 1.58;
}

.fit-panel li::before {
  content: "✓";
  color: var(--green-200);
  font-weight: 900;
}

.transformation-bio {
  background: var(--rose-tint);
}

.faq-section {
  background: var(--cream);
}

.faq-list {
  max-width: 850px;
  margin: 42px auto 0;
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}

.faq-list summary {
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
}

.faq-list p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.transformation-final {
  padding-top: 20px;
}

@media (max-width: 920px) {
  .signature-grid,
  .transformation-hero-grid,
  .fit-grid {
    grid-template-columns: 1fr;
  }

  .foundations-onramp {
    grid-template-columns: 1fr;
  }

  .onramp-actions {
    justify-items: start;
  }

  .difference-grid,
  .premium-pillar-grid {
    grid-template-columns: 1fr;
  }

  .transformation-photo {
    max-width: 500px;
  }
}

@media (max-width: 650px) {
  .signature-copy,
  .signature-panel,
  .fit-panel {
    padding: 27px;
  }

  .transformation-hero {
    padding: 120px 0 72px;
  }

  .transformation-photo-card {
    right: -5px;
    bottom: 24px;
    width: 155px;
  }

  .transformation-section {
    padding: 76px 0;
  }
}

/* NourisHer Snapshot™ */
.snapshot-body{min-height:100vh;background:radial-gradient(circle at 91% 8%,rgba(184,233,215,.52),transparent 30rem),radial-gradient(circle at 4% 96%,rgba(251,224,229,.56),transparent 31rem),var(--cream)}
.snapshot-exit{color:var(--muted);font-size:12px;font-weight:800}.snapshot-shell{min-height:100vh;padding:128px 22px 55px}
.snapshot-intro{display:none;min-height:calc(100vh - 185px);align-items:center;justify-content:center}.snapshot-intro.active{display:flex}
.snapshot-intro-card{width:min(760px,100%);padding:55px;border:1px solid rgba(44,82,66,.12);border-radius:34px;background:rgba(255,255,255,.88);box-shadow:0 28px 80px rgba(31,64,51,.12);text-align:center}
.snapshot-intro-card h1{margin-top:13px;color:var(--ink);font-family:var(--serif);font-size:clamp(54px,7vw,79px);font-weight:600;line-height:.96}.snapshot-intro-card h1 em{display:block;color:var(--rose-500);font-weight:500}
.snapshot-intro-lead{max-width:58ch;margin:23px auto 0;color:var(--body);font-size:17px;line-height:1.72}.snapshot-intro-note{max-width:520px;margin:28px auto 0;padding:22px 25px;border-radius:19px;background:var(--sage-tint);text-align:left}
.snapshot-intro-note ul{display:grid;gap:7px;margin:13px 0 0;padding:0;list-style:none}.snapshot-intro-note li{color:var(--body);font-size:14px}.snapshot-intro-note li:before{content:"✓";margin-right:9px;color:var(--rose-500);font-weight:900}.snapshot-reassurance{margin-top:18px;color:var(--muted);font-size:11px}.snapshot-start{margin-top:25px}
.snapshot-assessment{width:min(1120px,100%);margin:0 auto;opacity:0;transform:translateY(10px);transition:.35s ease}.snapshot-assessment.active{opacity:1;transform:none}
.snapshot-progress-wrap{margin-bottom:42px}.snapshot-progress-top{display:flex;justify-content:space-between;margin-bottom:10px;color:var(--green-800);font-size:11px;font-weight:800;letter-spacing:.1em;text-transform:uppercase}.snapshot-progress-track{height:4px;overflow:hidden;border-radius:99px;background:rgba(49,102,80,.12)}.snapshot-progress-track span{display:block;height:100%;background:linear-gradient(90deg,var(--green-600),var(--rose-400));transition:width .35s ease}
.snapshot-question{display:none;animation:snapshotIn .45s ease both}.snapshot-question.active{display:block}@keyframes snapshotIn{from{opacity:0;transform:translateY(14px)}to{opacity:1;transform:none}}
.snapshot-question-number{display:flex;align-items:center;gap:11px;color:var(--green-700);font-size:13px;font-weight:900;letter-spacing:.19em;text-transform:uppercase}.snapshot-question-number span{font-size:19px}.snapshot-question h2{max-width:1030px;margin-top:20px;color:var(--ink);font-family:var(--serif);font-size:clamp(47px,6vw,72px);font-weight:500;line-height:1.06}
.snapshot-options{display:grid;gap:15px;margin-top:43px}.snapshot-options label{display:flex;align-items:center;min-height:90px;padding:21px 28px;border:2px solid rgba(83,73,55,.14);border-radius:22px;background:rgba(255,255,255,.88);cursor:pointer;transition:.2s}.snapshot-options label:hover,.snapshot-options label.selected{border-color:#58c5a1;transform:translateY(-1px)}.snapshot-options input{position:absolute;opacity:0}.snapshot-options label:before{content:"";flex:0 0 34px;width:34px;height:34px;margin-right:23px;border:2px solid #d9d4c7;border-radius:50%;background:#fff;box-shadow:inset 0 0 0 8px #fff}.snapshot-options label.selected:before{border-color:#58c5a1;background:#58c5a1}.snapshot-options span{color:#38423d;font-size:clamp(19px,2vw,23px)}.snapshot-options-five label{min-height:76px}
.snapshot-nav{display:flex;justify-content:space-between;margin-top:34px;color:#9ca69f;font-size:14px;font-weight:700}.snapshot-back{border:0;color:#6e8278;background:transparent;font:inherit;cursor:pointer}.snapshot-back:disabled{opacity:0}
.results-body{background:var(--cream)}.results-main{padding-top:86px}.results-hero{padding:80px 0 72px;background:radial-gradient(circle at 87% 12%,rgba(184,233,215,.48),transparent 29rem),radial-gradient(circle at 7% 100%,rgba(251,224,229,.5),transparent 28rem)}.results-heading{max-width:760px;margin:auto;text-align:center}.results-heading h1{margin-top:11px;color:var(--ink);font-family:var(--serif);font-size:clamp(52px,7vw,78px);font-weight:600;line-height:.98}.results-heading h1 em{display:block;color:var(--rose-500);font-weight:500}.results-heading>p:not(.eyebrow){margin-top:19px;color:var(--body);line-height:1.72}
.results-overview{display:grid;grid-template-columns:1.05fr .98fr .98fr;gap:18px;margin-top:47px}.score-card-premium,.result-highlight{min-height:300px;padding:29px;border:1px solid var(--line);border-radius:25px;background:rgba(255,255,255,.9);box-shadow:var(--shadow-1)}.score-card-premium{display:grid;place-items:center;text-align:center}.score-ring{--score:0;width:182px;height:182px;display:grid;place-items:center;border-radius:50%;background:radial-gradient(circle closest-side,#fff 78%,transparent 79% 100%),conic-gradient(var(--green-600) calc(var(--score)*1%),#e7eee9 0)}.score-ring>div{display:grid}.score-ring strong{color:var(--ink);font-family:var(--serif);font-size:63px;line-height:.9}.score-ring span{color:var(--muted);font-size:12px}.score-card-premium>p,.result-kicker{color:var(--green-800);font-size:10px;font-weight:900;letter-spacing:.13em;text-transform:uppercase}.result-highlight{display:flex;flex-direction:column;justify-content:center}.result-highlight.strength{background:linear-gradient(150deg,#fff,var(--sage-tint))}.result-highlight.opportunity{background:linear-gradient(150deg,#fff,var(--rose-tint))}.result-icon{width:43px;height:43px;display:grid;place-items:center;margin-top:18px;border-radius:13px;background:#fff;font-size:22px}.result-highlight h2{margin-top:17px;color:var(--ink);font-family:var(--serif);font-size:34px}.result-highlight p{margin-top:8px;color:var(--muted);font-size:13.5px;line-height:1.6}
.results-section{padding:92px 0}.result-story-grid{display:grid;grid-template-columns:1.12fr .88fr;gap:30px;align-items:start}.result-story-main h2,.results-section-head h2{margin-top:12px;color:var(--ink);font-family:var(--serif);font-size:clamp(42px,5vw,59px);font-weight:600;line-height:1.05}.result-summary{margin-top:18px;color:var(--body);font-size:16px;line-height:1.75}.contributing-box,.body-profile{margin-top:27px;padding:26px;border:1px solid var(--line);border-radius:19px;background:#fff}.contributor-list{display:flex;flex-wrap:wrap;gap:9px;margin-top:16px}.contributor-list span{padding:8px 11px;border-radius:99px;color:var(--green-800);background:var(--sage-tint);font-size:12px;font-weight:800}.body-profile h3{margin-top:10px;color:var(--ink);font-family:var(--serif);font-size:27px}.body-profile p{margin-top:9px;color:var(--muted);font-size:13.5px;line-height:1.68}
.result-meaning-card{padding:35px;border-radius:27px;color:#fff;background:linear-gradient(145deg,var(--green-700),var(--green-900));box-shadow:var(--shadow-3)}.result-meaning-card h3{margin-top:15px;color:#fff;font-family:var(--serif);font-size:34px}.result-meaning-card>p{margin-top:18px;color:rgba(255,255,255,.78);line-height:1.7}.result-meaning-card blockquote{margin-top:23px;padding-top:22px;border-top:1px solid rgba(255,255,255,.16);color:var(--rose-200);font-family:var(--serif);font-size:24px}
.result-dimensions-section{background:var(--sage-tint)}.results-section-head.center{max-width:750px;margin:auto;text-align:center}.dimension-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:13px;margin-top:42px}.dimension-card{padding:22px;border:1px solid var(--line);border-radius:18px;background:rgba(255,255,255,.88)}.dimension-card.is-strength{box-shadow:inset 0 3px 0 var(--green-500)}.dimension-card.is-opportunity{box-shadow:inset 0 3px 0 var(--rose-400)}.dimension-card-top{display:flex;justify-content:space-between;gap:10px}.dimension-card h3{color:var(--ink);font-size:14px}.dimension-card strong{color:var(--green-800);font-family:var(--serif);font-size:28px}.dimension-bar{height:5px;margin-top:14px;border-radius:99px;background:#e7ece8}.dimension-bar span{display:block;height:100%;border-radius:inherit;background:linear-gradient(90deg,var(--green-500),var(--rose-400))}.dimension-card p{margin-top:14px;color:var(--muted);font-size:11.5px;line-height:1.58}.dimension-card small{display:inline-block;margin-top:13px;color:var(--rose-500);font-size:9px;font-weight:900;text-transform:uppercase}
.recommendation-card{display:grid;grid-template-columns:1fr auto;gap:45px;align-items:center;padding:45px;border-radius:30px;color:#fff;background:linear-gradient(145deg,var(--green-700),var(--green-900));box-shadow:var(--shadow-3)}.recommendation-copy h2{margin-top:12px;color:#fff;font-family:var(--serif);font-size:clamp(40px,5vw,57px)}.recommendation-copy>p{margin-top:15px;color:rgba(255,255,255,.8);line-height:1.7}.recommendation-copy ul{display:grid;gap:9px;margin-top:20px;list-style:none}.recommendation-copy li:before{content:"✓";margin-right:9px;color:var(--green-200)}.recommendation-actions{display:grid;min-width:230px;gap:11px}.results-disclaimer{margin:19px auto 0;color:var(--muted);font-size:10.5px;text-align:center}
@media(max-width:1000px){.results-overview,.dimension-grid{grid-template-columns:repeat(2,1fr)}.score-card-premium{grid-column:1/-1}.result-story-grid,.recommendation-card{grid-template-columns:1fr}}@media(max-width:680px){.snapshot-shell{padding:110px 17px 42px}.snapshot-intro-card{padding:34px 23px}.snapshot-question h2{font-size:42px}.snapshot-options{margin-top:30px}.snapshot-options label{min-height:70px;padding:16px 18px}.snapshot-options label:before{flex-basis:27px;width:27px;height:27px;margin-right:15px}.snapshot-options span{font-size:16px}.results-overview,.dimension-grid{grid-template-columns:1fr}.score-card-premium{grid-column:auto}.results-section{padding:70px 0}.recommendation-card{padding:29px 23px}}


/* V2 resilience: page content remains visible when JavaScript is delayed or blocked. */
.no-js .reveal{opacity:1!important;transform:none!important;}


/* V2.1 refinements */
.score-ring[data-score-ring]::after{display:none!important;content:none!important}
.score-ring[data-score-ring]{position:relative;isolation:isolate}
.score-ring[data-score-ring] .score-ring-content{position:relative;z-index:2;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:2px;text-align:center}
.score-ring[data-score-ring] .score-ring-label{color:var(--green-700);font-size:9px;font-weight:900;letter-spacing:.13em;text-transform:uppercase}
.score-ring[data-score-ring] .score-ring-total{color:var(--muted);font-size:11px;font-weight:700}
.score-ring[data-score-ring] strong{display:block;color:var(--ink);font-family:var(--serif);font-size:58px;font-weight:600;line-height:.9}
.snapshot-assessment{scroll-margin-top:96px}


/* Snapshot usability refinements — Version 2.2 */
.snapshot-shell{padding-top:112px}
.snapshot-progress-wrap{margin-bottom:24px}
.snapshot-question-number{font-size:11px}
.snapshot-question-number span{font-size:17px}
.snapshot-question h2{max-width:940px;margin-top:12px;font-size:clamp(34px,4.1vw,50px);line-height:1.06}
.snapshot-options{gap:10px;margin-top:25px}
.snapshot-options label{min-height:67px;padding:14px 22px;border-radius:17px}
.snapshot-options label:before{flex-basis:27px;width:27px;height:27px;margin-right:17px;box-shadow:inset 0 0 0 6px #fff}
.snapshot-options span{font-size:clamp(16px,1.55vw,19px)}
.snapshot-options-five{gap:8px}
.snapshot-options-five label{min-height:59px;padding-block:11px}
.snapshot-nav{margin-top:20px}

@media(max-height:820px) and (min-width:681px){
 .snapshot-shell{padding-top:96px;padding-bottom:25px}
 .snapshot-progress-wrap{margin-bottom:17px}
 .snapshot-question h2{font-size:clamp(31px,3.7vw,43px)}
 .snapshot-options{gap:7px;margin-top:18px}
 .snapshot-options label{min-height:55px;padding:10px 18px}
 .snapshot-options-five label{min-height:49px}
 .snapshot-nav{margin-top:14px}
}

@media(max-width:680px){
 .snapshot-shell{padding-top:94px}
 .snapshot-progress-wrap{margin-bottom:18px}
 .snapshot-question h2{margin-top:10px;font-size:clamp(29px,9vw,37px);line-height:1.08}
 .snapshot-options{gap:8px;margin-top:20px}
 .snapshot-options label,.snapshot-options-five label{min-height:57px;padding:11px 14px;border-radius:15px}
 .snapshot-options label:before{flex-basis:24px;width:24px;height:24px;margin-right:12px;box-shadow:inset 0 0 0 5px #fff}
 .snapshot-options span{font-size:15px;line-height:1.3}
 .snapshot-nav{margin-top:15px}
}


/* =========================================================
   PHASE 1.5 — SUCCESS STORIES, JOURNAL & TRUST
   ========================================================= */
.section-actions{margin-top:34px}.story-preview-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px;margin-top:50px}.story-preview-card{position:relative;min-height:390px;padding:30px;border:1px solid rgba(71,49,61,.12);border-radius:28px;background:rgba(255,255,255,.8);box-shadow:0 20px 55px rgba(65,45,56,.07);display:flex;flex-direction:column}.story-preview-featured{background:linear-gradient(145deg,#4c183f,#70234e);color:#fff;transform:translateY(-12px)}.story-stat{font-family:"Cormorant Garamond",serif;font-size:56px;line-height:1;color:#8b315f}.story-preview-featured .story-stat{color:#f7d6df}.story-badge{display:inline-flex;width:max-content;margin:20px 0 22px;padding:7px 11px;border-radius:999px;background:#f5e9ee;color:#783154;font-size:11px;font-weight:800;letter-spacing:.08em;text-transform:uppercase}.story-preview-featured .story-badge{background:rgba(255,255,255,.13);color:#fff}.story-preview-card h3{font-family:"Cormorant Garamond",serif;font-size:34px;margin:0 0 14px}.story-preview-card p{line-height:1.75;color:#655963}.story-preview-featured p{color:rgba(255,255,255,.8)}.story-preview-card a{margin-top:auto;padding-top:24px;font-weight:800;color:#7d2a57}.story-preview-featured a{color:#fff}.story-preview-card a span{margin-left:8px}.journal-preview{background:#f8f2f3}.reel-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px;margin-top:48px}.reel-card{overflow:hidden;border-radius:28px;background:#fff;border:1px solid rgba(71,49,61,.1);box-shadow:0 18px 50px rgba(69,42,57,.06)}.reel-placeholder{aspect-ratio:4/5;position:relative;display:grid;place-items:center;background:radial-gradient(circle at 70% 15%,rgba(245,196,204,.75),transparent 33%),linear-gradient(145deg,#38112f,#6d204c 58%,#bb667d);color:#fff}.reel-placeholder:after{content:"";position:absolute;inset:18px;border:1px solid rgba(255,255,255,.25);border-radius:21px}.reel-index{position:absolute;left:30px;top:28px;font-family:"Cormorant Garamond",serif;font-size:42px}.play-button{width:74px;height:74px;border-radius:50%;background:rgba(255,255,255,.18);border:1px solid rgba(255,255,255,.52);backdrop-filter:blur(8px);display:grid;place-items:center;padding-left:5px;font-size:22px}.reel-placeholder small{position:absolute;bottom:34px;letter-spacing:.11em;text-transform:uppercase;font-weight:700;font-size:10px}.reel-copy{padding:26px}.reel-copy>span:first-child{color:#8e315d;font-size:11px;font-weight:800;letter-spacing:.1em;text-transform:uppercase}.reel-copy h3,.reel-copy h2{font-family:"Cormorant Garamond",serif;font-size:28px;line-height:1.08;margin:12px 0}.reel-copy p{color:#6b6067;line-height:1.65}.values-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:14px;margin-top:48px}.value-card{padding:28px 22px;border-top:2px solid #8b315f;background:#fff;border-radius:0 0 22px 22px;box-shadow:0 16px 40px rgba(64,43,54,.06)}.value-card>span{font-family:"Cormorant Garamond",serif;font-size:34px;color:#c694a8}.value-card h3{font-family:"Cormorant Garamond",serif;font-size:28px;margin:14px 0 10px}.value-card p{font-size:14px;line-height:1.7;color:#6b6067}.promise-band{padding:75px 24px;background:linear-gradient(135deg,#34102c,#662048);color:#fff;text-align:center}.promise-inner h2{font-family:"Cormorant Garamond",serif;font-size:clamp(44px,6vw,76px);margin:10px 0}.promise-inner>p:last-child{font-size:20px;color:#efdce4}.subpage-hero{padding:180px 24px 105px;background:radial-gradient(circle at 15% 20%,rgba(234,198,207,.7),transparent 35%),#fbf8f7;text-align:center}.subpage-hero .narrow{max-width:900px}.subpage-hero h1{font-family:"Cormorant Garamond",serif;font-size:clamp(58px,8vw,100px);line-height:.95;margin:18px 0 25px;color:#35142c}.subpage-hero p{font-size:19px;line-height:1.8;color:#665a62}.story-filter-links{display:flex;justify-content:center;flex-wrap:wrap;gap:10px;margin-top:30px}.story-filter-links a{padding:9px 15px;border:1px solid rgba(75,29,60,.17);border-radius:999px;color:#6b244d;font-weight:700;font-size:12px}.success-library{background:#fff}.full-story{scroll-margin-top:110px;display:grid;grid-template-columns:280px 1fr;gap:60px;padding:72px 0;border-bottom:1px solid rgba(67,42,55,.12)}.story-side{padding:28px;border-radius:26px;background:#faf4f6;height:max-content;position:sticky;top:115px}.large-stat{display:block;font-family:"Cormorant Garamond",serif;font-size:62px;color:#7b2855;margin:24px 0 10px}.story-side p{line-height:1.7;color:#675b63}.story-main h2{font-family:"Cormorant Garamond",serif;font-size:clamp(40px,5vw,64px);line-height:1;margin:12px 0 25px;color:#35142c}.story-main blockquote{margin:0 0 36px;padding:28px 32px;border-left:3px solid #a74973;background:#fbf4f6;font-family:"Cormorant Garamond",serif;font-size:29px;line-height:1.25;color:#57203f}.story-detail-grid{display:grid;grid-template-columns:1fr 1fr;gap:30px}.story-detail-grid h3{font-size:13px;letter-spacing:.1em;text-transform:uppercase;color:#8b315f}.story-detail-grid p,.story-detail-grid li{line-height:1.75;color:#625860}.story-detail-grid ul{padding-left:20px}.story-result{margin-top:32px;padding:24px 28px;border-radius:18px;background:#3f1435;color:#fff}.story-result span{font-size:10px;letter-spacing:.13em;font-weight:800;color:#e7b7ca}.story-result p{margin:10px 0 0;line-height:1.7}.journal-follow{display:inline-flex;margin-top:22px}.journal-library{background:#f9f5f5}.journal-note{display:flex;align-items:center;gap:20px;padding:19px 24px;border-radius:18px;background:#fff;border:1px solid rgba(68,43,55,.1)}.journal-note span{white-space:nowrap;font-size:10px;font-weight:800;letter-spacing:.12em;color:#8b315f}.journal-note p{margin:0;color:#655961;line-height:1.6}.reel-grid-full{grid-template-columns:repeat(2,1fr)}.reel-card-large{display:grid;grid-template-columns:42% 58%}.reel-card-large .reel-placeholder{aspect-ratio:auto;min-height:410px}.reel-card-large .reel-copy{padding:42px}.reel-card-large .reel-copy h2{font-size:38px}.placeholder-link{display:inline-flex!important;margin-top:20px;padding:10px 14px;border-radius:999px;background:#f1e5ea;color:#7b2c54!important;font-size:11px!important;font-weight:800;letter-spacing:.06em;text-transform:uppercase}
@media(max-width:1050px){.story-preview-grid{grid-template-columns:repeat(2,1fr)}.story-preview-featured{transform:none}.values-grid{grid-template-columns:repeat(3,1fr)}.reel-card-large{grid-template-columns:1fr}.reel-card-large .reel-placeholder{min-height:340px}}
@media(max-width:760px){.story-preview-grid,.reel-grid,.reel-grid-full,.values-grid{grid-template-columns:1fr}.story-preview-card{min-height:330px}.full-story{grid-template-columns:1fr;gap:24px;padding:50px 0}.story-side{position:static}.story-detail-grid{grid-template-columns:1fr}.story-main blockquote{font-size:24px}.subpage-hero{padding-top:135px}.subpage-hero h1{font-size:55px}.journal-note{align-items:flex-start;flex-direction:column}.reel-card-large{display:block}.reel-card-large .reel-copy{padding:27px}.reel-card-large .reel-copy h2{font-size:31px}}


/* =========================================================
   VERSION 2.6 — PHASE 1.5 FINAL
   Unified plum / ivory / gold palette and calmer page rhythm.
   ========================================================= */

:root{
  --v26-ivory:#fbf8f3;
  --v26-ivory-deep:#f5efe6;
  --v26-plum:#4f173f;
  --v26-plum-deep:#34102c;
  --v26-gold:#b89452;
  --v26-gold-soft:#e7d8b9;
}

@media (min-width:761px){
  .section{padding-top:118px;padding-bottom:118px}
  .section-lead{max-width:760px}
}

.foundations-home-section{
  background:var(--v26-ivory);
  border-top:1px solid rgba(79,23,63,.07);
  border-bottom:1px solid rgba(79,23,63,.07);
}
.foundations-home-section .foundations-onramp{margin-top:0}

/* Success Stories */
.stories-premium,
.success-library{background:var(--v26-ivory)}
.story-preview-card{
  background:#fff;
  border-color:rgba(79,23,63,.10);
  box-shadow:0 20px 55px rgba(52,16,44,.065);
}
.story-preview-featured{
  background:linear-gradient(145deg,var(--v26-plum-deep),var(--v26-plum));
  color:#fff;
}
.story-stat{color:var(--v26-gold)}
.story-preview-featured .story-stat{color:var(--v26-gold-soft)}
.story-badge{
  background:var(--v26-ivory-deep);
  color:var(--v26-plum);
}
.story-preview-featured .story-badge{
  background:rgba(231,216,185,.14);
  color:#f7edd9;
}
.story-preview-card a{color:var(--v26-plum)}
.story-preview-featured a{color:#fff}
.stories-hero,
.subpage-hero.stories-hero{
  background:
    radial-gradient(circle at 15% 18%,rgba(231,216,185,.55),transparent 35%),
    var(--v26-ivory);
}
.story-filter-links a{
  border-color:rgba(79,23,63,.16);
  color:var(--v26-plum);
  background:rgba(255,255,255,.55);
}
.story-side{background:var(--v26-ivory-deep)}
.large-stat{color:var(--v26-gold)}
.story-main h2{color:var(--v26-plum-deep)}
.story-main blockquote{
  border-left-color:var(--v26-gold);
  background:var(--v26-ivory-deep);
  color:var(--v26-plum);
}
.story-detail-grid h3{color:var(--v26-plum)}
.story-result{
  background:linear-gradient(135deg,var(--v26-plum-deep),var(--v26-plum));
}
.story-result span{color:var(--v26-gold-soft)}

/* Journal */
.journal-preview,
.journal-library{background:#fff}
.journal-preview{border-top:1px solid rgba(79,23,63,.07)}
.reel-card{
  border-color:rgba(79,23,63,.10);
  box-shadow:0 18px 48px rgba(52,16,44,.06);
}
.reel-placeholder{
  background:
    radial-gradient(circle at 72% 14%,rgba(231,216,185,.72),transparent 34%),
    linear-gradient(145deg,#2f2730,var(--v26-plum-deep) 55%,#71513e);
}
.reel-placeholder:after{border-color:rgba(231,216,185,.42)}
.play-button{
  background:rgba(231,216,185,.14);
  border-color:rgba(231,216,185,.68);
}
.reel-copy>span:first-child{color:var(--v26-gold)}
.placeholder-link{
  background:var(--v26-ivory-deep);
  color:var(--v26-plum)!important;
}
.journal-note{
  background:var(--v26-ivory);
  border-color:rgba(79,23,63,.09);
}
.journal-note span{color:var(--v26-gold)}

.value-card{border-top-color:var(--v26-gold)}
.value-card>span{color:var(--v26-gold)}
.promise-band{
  background:linear-gradient(135deg,var(--v26-plum-deep),var(--v26-plum));
}

/* Foundations — price intentionally withheld */
.foundation-enrolment-status{
  margin:18px 0 12px;
  font-family:"Cormorant Garamond",serif;
  font-size:clamp(36px,5vw,54px);
  line-height:1.05;
  color:var(--v26-plum);
}
.foundation-price{
  color:var(--v26-plum);
  background:rgba(255,255,255,.72);
  border:1px solid rgba(79,23,63,.10);
}
.section-actions{margin-top:42px}

@media(max-width:760px){
  .section{padding-top:78px;padding-bottom:78px}
  .story-preview-featured{transform:none}
  .foundation-enrolment-status{font-size:38px}
}
/* Snapshot name and email section */

.snapshot-contact-fields {
    width: min(100%, 520px);
    margin: 30px auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.snapshot-contact-fields .field-group {
    width: 100%;
    margin: 0;
    text-align: left;
    display: block;
}

.snapshot-contact-fields .field-group label {
    display: block;
    margin: 0 0 8px;
    font-size: 16px;
    font-weight: 600;
    color: #26352f;
}

.snapshot-contact-fields .field-group input {
    display: block;
    width: 100%;
    height: 54px;
    padding: 0 16px;
    border: 1px solid #cfd8d4;
    border-radius: 12px;
    background: #ffffff;
    font-family: inherit;
    font-size: 17px;
    line-height: 1;
    box-sizing: border-box;
}

.snapshot-contact-fields .field-group input:focus {
    outline: none;
    border-color: #267a63;
    box-shadow: 0 0 0 4px rgba(38, 122, 99, 0.12);
}

.snapshot-contact-fields + .snapshot-start {
    margin-top: 8px;
}

@media (max-width: 600px) {
    .snapshot-contact-fields {
        width: 100%;
    }
}
.snapshot-contact-fields {
    max-width: 520px;
    margin: 28px auto;
}
[hidden] {
    display: none !important;
}
