@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 500 600;
  font-display: swap;
  src: url("assets/fonts/cormorant-garamond-normal-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Cormorant Garamond";
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url("assets/fonts/cormorant-garamond-italic-latin.woff2") format("woff2");
}

@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("assets/fonts/dm-sans-normal-latin.woff2") format("woff2");
}

:root {
  --ivory: #faf9f7;
  --paper: #fffefd;
  --ink: #232629;
  --ink-soft: #51585b;
  --teal: #4e7a79;
  --teal-dark: #315e5d;
  --teal-mist: #edf3f2;
  --gold: #dd9224;
  --gold-soft: #fbf0dc;
  --plum: #7c6b8a;
  --plum-soft: #f3eff5;
  --sage: #a6b1b4;
  --stone: #d6cab2;
  --stone-light: #ece6da;
  --cocoa: #342f2c;
  --white: #ffffff;
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shadow-soft: 0 24px 70px rgba(42, 48, 48, 0.09);
  --shadow-card: 0 14px 40px rgba(42, 48, 48, 0.075);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 38px;
  --page: min(1180px, calc(100% - 48px));
  --narrow: min(760px, calc(100% - 48px));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.72;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  color: var(--ink);
  background: #ead9bb;
}

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

a {
  color: inherit;
  text-underline-offset: 0.2em;
}

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

h1,
h2,
h3,
blockquote {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.028em;
}

h1 {
  margin-bottom: 28px;
  font-size: clamp(3.3rem, 6.4vw, 6.6rem);
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.5rem, 4.7vw, 4.7rem);
}

h3 {
  font-size: clamp(1.8rem, 2.6vw, 2.45rem);
}

em {
  color: var(--teal);
  font-weight: 500;
}

.page-shell {
  width: var(--page);
  margin-inline: auto;
}

.narrow-shell {
  width: var(--narrow);
  margin-inline: auto;
}

.section {
  position: relative;
  padding: clamp(96px, 11vw, 156px) 0;
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--teal-dark);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1.5;
  text-transform: uppercase;
}

.section-heading {
  max-width: 760px;
}

.section-heading > p:last-child {
  max-width: 670px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 11px 16px;
  border-radius: 10px;
  color: var(--white);
  background: var(--teal-dark);
  font-size: 0.9rem;
  font-weight: 700;
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

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

:focus-visible {
  outline: 3px solid rgba(221, 146, 36, 0.72);
  outline-offset: 4px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 14px 25px;
  border: 1px solid var(--teal-dark);
  border-radius: 999px;
  color: var(--white);
  background: var(--teal-dark);
  box-shadow: 0 10px 24px rgba(49, 94, 93, 0.18);
  font-size: 0.93rem;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  background: #254f4e;
  box-shadow: 0 14px 32px rgba(49, 94, 93, 0.24);
  transform: translateY(-2px);
}

.button-small {
  min-height: 44px;
  padding: 10px 19px;
  font-size: 0.84rem;
}

.button-full {
  width: 100%;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(78, 122, 121, 0.12);
  background: rgba(250, 249, 247, 0.9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.nav-shell {
  display: grid;
  width: var(--page);
  min-height: 78px;
  margin-inline: auto;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 38px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-marks {
  display: flex;
  align-items: center;
  gap: 3px;
}

.brand-marks svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.brand-marks svg:nth-child(1) {
  color: var(--teal);
}

.brand-marks svg:nth-child(2) {
  color: var(--gold);
}

.brand-marks svg:nth-child(3) {
  color: var(--plum);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.08;
}

.brand-copy strong {
  font-family: var(--serif);
  font-size: 1.22rem;
  font-weight: 600;
}

.brand-copy small {
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 0.59rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
}

.desktop-nav a {
  position: relative;
  color: #4e5355;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--teal);
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

.hero {
  position: relative;
  min-height: calc(100vh - 78px);
  overflow: hidden;
  padding: clamp(90px, 10vw, 148px) 0 40px;
  background:
    radial-gradient(circle at 86% 18%, rgba(214, 202, 178, 0.3), transparent 31%),
    radial-gradient(circle at 5% 84%, rgba(78, 122, 121, 0.12), transparent 28%),
    linear-gradient(150deg, #fffefd 0%, #faf9f7 54%, #f5f1ea 100%);
}

.hero::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 112px;
  background: linear-gradient(to bottom, transparent, rgba(78, 122, 121, 0.32));
  content: "";
}

.hero-orb {
  position: absolute;
  border: 1px solid rgba(124, 107, 138, 0.13);
  border-radius: 50%;
  pointer-events: none;
}

.hero-orb-one {
  top: 12%;
  right: -120px;
  width: 360px;
  height: 360px;
}

.hero-orb-two {
  bottom: 18%;
  left: -90px;
  width: 240px;
  height: 240px;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.8fr);
  align-items: center;
  gap: clamp(56px, 8vw, 110px);
}

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

.hero-copy .eyebrow {
  max-width: 560px;
}

.hero-lede {
  max-width: 690px;
  margin-bottom: 34px;
  color: var(--ink-soft);
  font-size: clamp(1.07rem, 1.45vw, 1.26rem);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.hero-actions p {
  max-width: 280px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.84rem;
  line-height: 1.58;
}

.hero-actions strong {
  color: var(--ink);
}

.hero-review {
  position: relative;
  margin: 0;
  padding: clamp(36px, 4vw, 58px);
  border: 1px solid rgba(78, 122, 121, 0.18);
  border-radius: 140px 22px 140px 22px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
}

.hero-review::before,
.hero-review::after {
  position: absolute;
  width: 82px;
  height: 1px;
  background: var(--teal);
  content: "";
}

.hero-review::before {
  top: 26px;
  left: 42px;
}

.hero-review::after {
  right: 42px;
  bottom: 26px;
}

.review-stars,
.rating-stars,
.closing-stars {
  color: var(--gold);
  font-family: var(--sans);
  font-size: 0.88rem;
  letter-spacing: 0.15em;
}

.hero-review blockquote {
  margin: 24px 0;
  font-size: clamp(2.15rem, 3.8vw, 3.65rem);
  line-height: 1.08;
}

.hero-review figcaption {
  max-width: 230px;
  color: var(--ink-soft);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-transform: uppercase;
}

.review-heart {
  position: absolute;
  right: 38px;
  bottom: 34px;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 50%;
  color: var(--teal);
  background: var(--teal-mist);
}

.review-heart svg {
  width: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.hero-foot {
  position: relative;
  margin-top: clamp(72px, 9vw, 124px);
  padding-top: 25px;
  border-top: 1px solid rgba(78, 122, 121, 0.19);
}

.hero-foot p {
  display: flex;
  margin: 0;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 34px;
  color: #5b6263;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.hero-foot span {
  display: inline-flex;
  align-items: center;
  gap: 13px;
}

.hero-foot span:not(:last-child)::after {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.reviews {
  background: var(--paper);
}

.review-heading {
  max-width: 800px;
  margin-bottom: 54px;
}

.rating-ribbon {
  display: grid;
  margin-bottom: 28px;
  padding: 22px 28px;
  border: 1px solid var(--stone-light);
  border-radius: var(--radius-sm);
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 16px;
  color: var(--ink-soft);
  background: var(--ivory);
  font-size: 0.86rem;
  line-height: 1.55;
}

.rating-number {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 2.15rem;
  font-weight: 600;
  line-height: 1;
}

.review-wall {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}

.review-card {
  position: relative;
  display: flex;
  min-height: 290px;
  margin: 0;
  padding: clamp(30px, 4vw, 52px);
  border: 1px solid rgba(78, 122, 121, 0.15);
  border-radius: var(--radius-md);
  grid-column: span 4;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  background: var(--teal-mist);
}

.review-card-large {
  grid-column: span 7;
  background: var(--cocoa);
  color: var(--white);
}

.review-card-plum {
  grid-column: span 5;
  background: var(--plum-soft);
}

.review-card-gold {
  background: var(--gold-soft);
}

.review-card-wide {
  grid-column: span 5;
  background: var(--ivory);
}

.quote-mark {
  position: absolute;
  top: 10px;
  right: 28px;
  color: rgba(78, 122, 121, 0.12);
  font-family: var(--serif);
  font-size: 9rem;
  line-height: 1;
}

.review-card-large .quote-mark {
  color: rgba(255, 255, 255, 0.1);
}

.review-card blockquote {
  position: relative;
  z-index: 1;
  margin: 0 0 36px;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.14;
}

.review-card:not(.review-card-large) blockquote {
  font-size: clamp(1.62rem, 2.35vw, 2.3rem);
}

.review-card figcaption {
  position: relative;
  z-index: 1;
  color: currentColor;
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.1em;
  opacity: 0.66;
  text-transform: uppercase;
}

.review-disclosure {
  max-width: 840px;
  margin: 30px 0 0;
  color: #6d7375;
  font-size: 0.76rem;
  line-height: 1.7;
}

.recognition {
  background:
    linear-gradient(rgba(255, 254, 253, 0.94), rgba(255, 254, 253, 0.94)),
    repeating-linear-gradient(0deg, transparent 0, transparent 33px, rgba(78, 122, 121, 0.055) 34px);
}

.recognition h2 {
  max-width: 720px;
}

.letter-copy {
  margin-top: 36px;
  font-family: var(--serif);
  font-size: clamp(1.42rem, 2.2vw, 1.82rem);
  line-height: 1.58;
}

.letter-copy p {
  margin-bottom: 30px;
}

.question-card {
  margin: 62px 0 45px;
  padding: clamp(36px, 6vw, 62px);
  border: 1px solid var(--stone);
  border-radius: 100px 20px 100px 20px;
  background: var(--ivory);
  box-shadow: var(--shadow-card);
  text-align: center;
}

.question-card p {
  margin-bottom: 10px;
  color: var(--ink-soft);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.question-card blockquote {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.12;
}

.question-card > span {
  display: block;
  margin: 18px 0;
  color: var(--gold);
  font-size: 1.75rem;
}

.turning-line {
  margin: 0;
  color: var(--teal-dark);
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-style: italic;
  text-align: center;
}

.method {
  color: var(--white);
  background: var(--cocoa);
}

.method::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 10%, rgba(78, 122, 121, 0.22), transparent 32%),
    radial-gradient(circle at 90% 82%, rgba(124, 107, 138, 0.18), transparent 30%);
  content: "";
  pointer-events: none;
}

.method .page-shell {
  position: relative;
}

.method .eyebrow {
  color: #b9d3d1;
}

.method-intro {
  display: grid;
  margin-bottom: 62px;
  grid-template-columns: 1fr 0.8fr;
  align-items: end;
  gap: 70px;
}

.method-intro h2 {
  margin-bottom: 0;
}

.method-intro > p {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.04rem;
}

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

.pillar {
  min-height: 430px;
  padding: clamp(30px, 3.5vw, 48px);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.045);
}

.pillar:nth-child(2) {
  transform: translateY(22px);
}

.pillar-icon {
  display: grid;
  width: 64px;
  height: 64px;
  margin-bottom: 42px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.pillar-icon svg {
  width: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.pillar-seen .pillar-icon,
.pillar-seen .pillar-label {
  color: #8fc4c1;
}

.pillar-safe .pillar-icon,
.pillar-safe .pillar-label {
  color: #edb55f;
}

.pillar-successful .pillar-icon,
.pillar-successful .pillar-label {
  color: #c6b5d4;
}

.pillar-label {
  margin-bottom: 12px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.pillar h3 {
  margin-bottom: 20px;
}

.pillar > p:last-child {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.94rem;
}

.method-flow {
  display: flex;
  margin: 90px 0 38px;
  padding: 29px 30px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.04);
  text-align: center;
}

.method-flow span {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.method-flow i {
  color: var(--gold);
  font-style: normal;
}

.method-note {
  max-width: 780px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.68);
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.5vw, 2.1rem);
  line-height: 1.5;
  text-align: center;
}

.bridge {
  background: var(--teal-mist);
}

.bridge-grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: clamp(60px, 10vw, 130px);
}

.bridge-quote {
  position: relative;
  padding: clamp(38px, 5vw, 60px);
  border-radius: 26px 100px 26px 100px;
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

.bridge-quote blockquote {
  margin: 22px 0 30px;
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  line-height: 1.11;
}

.bridge-quote > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.72rem;
  line-height: 1.6;
}

.bridge-copy p:not(.eyebrow) {
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.origin {
  background: var(--paper);
}

.origin-letter {
  position: relative;
  padding-left: 62px;
  border-left: 1px solid var(--stone);
}

.origin-letter::before {
  position: absolute;
  top: 2px;
  left: -12px;
  width: 23px;
  height: 23px;
  border: 1px solid var(--teal);
  border-radius: 50%;
  background: var(--paper);
  content: "";
}

.origin-letter > p:not(.eyebrow):not(.signature) {
  font-family: var(--serif);
  font-size: clamp(1.42rem, 2.15vw, 1.78rem);
  line-height: 1.62;
}

.signature {
  margin: 42px 0 0;
  color: var(--teal-dark);
  font-family: var(--serif);
  font-size: 2rem;
  font-style: italic;
}

.inside {
  background: linear-gradient(180deg, #f7f3ec 0%, var(--ivory) 100%);
}

.inside-heading {
  margin-bottom: 60px;
}

.chapter-stack {
  border-top: 1px solid var(--stone);
}

.chapter-row {
  display: grid;
  padding: clamp(34px, 5vw, 56px) 0;
  border-bottom: 1px solid var(--stone);
  grid-template-columns: 88px 1fr;
  gap: 30px;
}

.chapter-number {
  color: var(--teal);
  font-family: var(--serif);
  font-size: 2.4rem;
  line-height: 1;
}

.chapter-kicker {
  margin-bottom: 9px;
  color: var(--plum);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.chapter-row h3 {
  margin-bottom: 12px;
}

.chapter-row div > p:last-child {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--ink-soft);
}

.inside-close {
  max-width: 840px;
  margin: 52px auto 0;
  color: var(--teal-dark);
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.5vw, 2rem);
  line-height: 1.5;
  text-align: center;
}

.fit {
  background: var(--paper);
}

.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.fit-card {
  min-height: 440px;
  padding: clamp(38px, 5vw, 66px);
  border: 1px solid var(--stone-light);
  border-radius: var(--radius-md);
}

.fit-card h2 {
  font-size: clamp(2.4rem, 4vw, 3.9rem);
}

.fit-card p:last-child {
  margin-bottom: 0;
  font-size: 1.02rem;
}

.fit-card-warm {
  border-color: transparent;
  background: var(--gold-soft);
}

.fit-card-plain {
  background: var(--ivory);
}

.enrol {
  color: var(--white);
  background:
    radial-gradient(circle at 16% 18%, rgba(143, 196, 193, 0.18), transparent 28%),
    linear-gradient(135deg, #2f3636, #263f3e);
}

.enrol .eyebrow {
  color: #add0ce;
}

.enrol-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.68fr);
  align-items: center;
  gap: clamp(60px, 10vw, 130px);
}

.enrol-copy > p:last-child {
  max-width: 610px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
}

.offer-card {
  padding: clamp(38px, 5vw, 58px);
  border-radius: 34px 100px 34px 34px;
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
}

.offer-label {
  margin-bottom: 20px;
  color: var(--teal-dark);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.price {
  margin-bottom: 6px;
  font-family: var(--serif);
  font-size: clamp(5rem, 8vw, 7rem);
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.price span {
  font-size: 0.55em;
  vertical-align: 0.42em;
}

.price-note {
  margin-bottom: 30px;
  color: var(--ink-soft);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.offer-prose {
  margin: 0 0 30px;
  padding: 24px 0;
  border-top: 1px solid var(--stone-light);
  border-bottom: 1px solid var(--stone-light);
}

.offer-prose p {
  margin-bottom: 16px;
  color: var(--ink-soft);
  font-size: 0.87rem;
  line-height: 1.55;
}

.offer-prose p:last-child {
  margin-bottom: 0;
}

.offer-prose strong {
  color: var(--ink);
}

.final-sale {
  margin: 18px 0 0;
  color: #6f7476;
  font-size: 0.69rem;
  line-height: 1.55;
  text-align: center;
}

.platform-note {
  margin: 10px 0 0;
  color: var(--teal-dark);
  font-size: 0.67rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
}

.questions {
  background: var(--ivory);
}

.questions-heading {
  margin-bottom: 48px;
}

.faq-stack {
  border-top: 1px solid var(--stone);
}

.faq-stack details {
  border-bottom: 1px solid var(--stone);
}

.faq-stack summary {
  position: relative;
  padding: 28px 56px 28px 0;
  cursor: pointer;
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.4vw, 2rem);
  font-weight: 500;
  line-height: 1.25;
  list-style: none;
}

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

.faq-stack summary::before,
.faq-stack summary::after {
  position: absolute;
  top: 50%;
  right: 8px;
  width: 18px;
  height: 1px;
  background: var(--teal);
  content: "";
  transition: transform 180ms ease;
}

.faq-stack summary::after {
  transform: rotate(90deg);
}

.faq-stack details[open] summary::after {
  transform: rotate(0deg);
}

.faq-stack details > p {
  max-width: 650px;
  margin: -4px 0 28px;
  color: var(--ink-soft);
}

.closing {
  background: var(--paper);
}

.closing-inner {
  text-align: center;
}

.closing-inner > blockquote {
  margin: 22px 0 18px;
  font-size: clamp(2.2rem, 4.7vw, 4.25rem);
  line-height: 1.08;
}

.closing-source {
  max-width: 560px;
  margin: 0 auto;
  color: var(--ink-soft);
  font-size: 0.72rem;
}

.soft-rule {
  display: block;
  width: 100px;
  height: 1px;
  margin: 58px auto;
  background: var(--teal);
}

.soft-rule::after {
  display: block;
  width: 7px;
  height: 7px;
  margin: -3px auto 0;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.closing h2 {
  max-width: 720px;
  margin-inline: auto;
}

.closing h2 + p {
  max-width: 580px;
  margin: 0 auto 32px;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 1.55rem;
}

.policy-hero {
  position: relative;
  padding: clamp(154px, 17vw, 214px) 0 clamp(72px, 9vw, 112px);
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 24%, rgba(221, 146, 36, 0.12), transparent 25%),
    radial-gradient(circle at 8% 78%, rgba(124, 107, 138, 0.12), transparent 30%),
    linear-gradient(145deg, #f5f8f7 0%, var(--ivory) 62%, #faf4ea 100%);
}

.policy-hero::after {
  position: absolute;
  right: -90px;
  bottom: -160px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(78, 122, 121, 0.18);
  border-radius: 48% 52% 66% 34%;
  content: "";
  transform: rotate(18deg);
}

.policy-hero h1 {
  max-width: 720px;
  margin-bottom: 24px;
}

.policy-lede {
  max-width: 680px;
  margin-bottom: 28px;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.7vw, 2.05rem);
  line-height: 1.42;
}

.policy-date {
  margin: 0;
  color: var(--teal-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.policy-content {
  background: var(--paper);
}

.policy-content article > h2 {
  margin: 68px 0 20px;
  color: var(--cocoa);
  font-size: clamp(2rem, 3.6vw, 3.05rem);
  line-height: 1.08;
}

.policy-content article > h2:first-of-type {
  margin-top: 56px;
}

.policy-content article > p {
  margin-bottom: 20px;
  color: var(--ink-soft);
  line-height: 1.82;
}

.policy-content article a {
  color: var(--teal-dark);
  font-weight: 600;
}

.policy-callout,
.policy-endnote {
  padding: 30px 34px;
  border: 1px solid rgba(78, 122, 121, 0.28);
  border-left: 5px solid var(--teal);
  border-radius: 0 24px 24px 0;
  background: var(--teal-mist);
}

.policy-callout p,
.policy-endnote p {
  margin: 0;
  color: var(--ink);
  line-height: 1.75;
}

.policy-endnote {
  margin-top: 72px;
  border-color: rgba(221, 146, 36, 0.32);
  border-left-color: var(--gold);
  background: var(--gold-soft);
}

.policy-page .site-footer {
  margin-top: 0;
}

.site-footer {
  padding: 74px 0 30px;
  color: rgba(255, 255, 255, 0.72);
  background: #242827;
}

.footer-grid {
  display: grid;
  padding-bottom: 54px;
  grid-template-columns: 1.3fr 0.8fr 1fr;
  gap: 60px;
}

.brand-footer {
  margin-bottom: 20px;
  color: var(--white);
}

.brand-footer .brand-copy small {
  color: rgba(255, 255, 255, 0.58);
}

.footer-brand > p {
  max-width: 360px;
  margin: 0;
  font-family: var(--serif);
  font-size: 1.28rem;
  line-height: 1.5;
}

.footer-details p,
.footer-legal p {
  margin-bottom: 24px;
  font-size: 0.78rem;
  line-height: 1.7;
  overflow-wrap: anywhere;
}

.footer-details strong {
  color: var(--white);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-details a,
.footer-legal a {
  color: #c7dddb;
}

.footer-bottom {
  display: flex;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  justify-content: space-between;
  gap: 24px;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.68rem;
  letter-spacing: 0.04em;
}

.mobile-enrol {
  display: none;
}

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

  .nav-shell {
    grid-template-columns: 1fr auto;
  }

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

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

  .hero-review {
    width: min(640px, 100%);
    margin-left: auto;
  }

  .review-card,
  .review-card-large,
  .review-card-plum,
  .review-card-wide {
    grid-column: span 6;
  }

  .method-intro {
    grid-template-columns: 1fr;
    gap: 26px;
  }

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

  .pillar {
    min-height: 0;
  }

  .pillar:nth-child(2) {
    transform: none;
  }

  .method-flow {
    border-radius: var(--radius-md);
    flex-wrap: wrap;
  }

  .bridge-grid,
  .enrol-shell {
    grid-template-columns: 1fr;
  }

  .bridge-quote,
  .offer-card {
    width: min(620px, 100%);
  }

  .offer-card {
    margin-left: auto;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  :root {
    --page: min(100% - 30px, 1180px);
    --narrow: min(100% - 30px, 760px);
  }

  html {
    scroll-padding-top: 74px;
  }

  body {
    padding-bottom: 76px;
  }

  body.policy-page {
    padding-bottom: 0;
  }

  h1 {
    font-size: clamp(3.05rem, 14vw, 4.7rem);
  }

  h2 {
    font-size: clamp(2.5rem, 11vw, 3.65rem);
  }

  .section {
    padding: 88px 0;
  }

  .policy-hero {
    padding: 126px 0 74px;
  }

  .policy-content article > h2 {
    margin-top: 54px;
  }

  .policy-callout,
  .policy-endnote {
    padding: 26px 24px;
  }

  .nav-shell {
    min-height: 70px;
    gap: 14px;
  }

  .site-header .button {
    display: none;
  }

  .brand-copy strong {
    font-size: 1.08rem;
  }

  .brand-marks svg {
    width: 21px;
    height: 21px;
  }

  .hero {
    min-height: auto;
    padding-top: 82px;
  }

  .hero::before {
    height: 64px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .hero-review {
    margin: 18px 0 0;
    border-radius: 82px 18px 82px 18px;
  }

  .hero-review blockquote {
    font-size: 2.4rem;
  }

  .hero-foot p {
    align-items: center;
    flex-direction: column;
    gap: 8px;
  }

  .hero-foot span::after {
    display: none;
  }

  .rating-ribbon {
    grid-template-columns: auto 1fr;
  }

  .rating-ribbon > span:last-child {
    grid-column: 1 / -1;
  }

  .review-card,
  .review-card-large,
  .review-card-plum,
  .review-card-wide {
    min-height: 255px;
    grid-column: 1 / -1;
  }

  .question-card {
    border-radius: 68px 16px 68px 16px;
  }

  .method-flow {
    padding-inline: 20px;
    flex-direction: column;
    gap: 8px;
  }

  .method-flow i {
    transform: rotate(90deg);
  }

  .bridge-grid,
  .enrol-shell {
    gap: 54px;
  }

  .origin-letter {
    padding-left: 34px;
  }

  .chapter-row {
    grid-template-columns: 48px 1fr;
    gap: 16px;
  }

  .chapter-number {
    font-size: 1.75rem;
  }

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

  .fit-card {
    min-height: 0;
  }

  .offer-card {
    border-radius: 28px 72px 28px 28px;
  }

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

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .mobile-enrol {
    position: fixed;
    z-index: 120;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    min-height: 76px;
    padding: 10px 15px max(10px, env(safe-area-inset-bottom));
    border-top: 1px solid rgba(78, 122, 121, 0.2);
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    background: rgba(255, 254, 253, 0.96);
    box-shadow: 0 -14px 40px rgba(35, 38, 41, 0.1);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }

  .mobile-enrol p {
    display: flex;
    margin: 0;
    flex-direction: column;
    line-height: 1.1;
  }

  .mobile-enrol strong {
    font-family: var(--serif);
    font-size: 1.6rem;
  }

  .mobile-enrol span {
    color: var(--ink-soft);
    font-size: 0.66rem;
  }
}

@media (max-width: 460px) {
  .brand-copy small {
    display: none;
  }

  .brand-marks {
    gap: 1px;
  }

  .hero-review {
    padding: 34px 28px 42px;
  }

  .review-heart {
    display: none;
  }

  .hero-review::before,
  .hero-review::after {
    width: 48px;
  }

  .rating-ribbon {
    padding: 19px;
  }

  .review-card {
    padding: 32px 27px;
  }

  .question-card {
    padding: 34px 24px;
  }

  .bridge-quote,
  .offer-card {
    padding: 36px 28px;
  }

  .origin-letter {
    padding-left: 26px;
  }

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

  .chapter-number {
    margin-bottom: -8px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  .site-header,
  .mobile-enrol,
  .hero-orb,
  .button {
    display: none !important;
  }

  body {
    padding: 0;
    color: #000;
    background: #fff;
  }

  .section,
  .hero,
  .policy-hero {
    padding: 40px 0;
    color: #000;
    background: #fff;
  }

  .policy-hero::after {
    display: none;
  }

  .review-card,
  .pillar,
  .bridge-quote,
  .offer-card,
  .fit-card {
    color: #000;
    background: #fff;
    box-shadow: none;
    break-inside: avoid;
  }
}
