:root {
  color-scheme: light;
  --ink: #17211d;
  --muted: #5d6b65;
  --line: #d7dfda;
  --paper: #ffffff;
  --soft: #f5f8f6;
  --green: #173f35;
  --green-2: #27685a;
  --teal: #6fa99e;
  --clay: #bd715d;
  --clay-soft: #f2ddd6;
  --shadow: 0 22px 70px rgba(23, 63, 53, 0.12);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  letter-spacing: 0;
  overflow-x: hidden;
}

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

p {
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.72;
}

.site-header {
  align-items: center;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(215, 223, 218, 0.78);
  display: grid;
  gap: 24px;
  grid-template-columns: auto 1fr auto;
  left: 0;
  padding: 18px clamp(20px, 4vw, 58px);
  position: sticky;
  right: 0;
  top: 0;
  backdrop-filter: blur(18px);
  z-index: 10;
}

.brand {
  align-items: center;
  display: inline-flex;
  font-size: 1.02rem;
  font-weight: 750;
  gap: 11px;
}

.brand-mark {
  background:
    radial-gradient(circle at 42% 38%, transparent 0 29%, var(--green) 30% 34%, transparent 35%),
    conic-gradient(from 20deg, var(--green), var(--teal), var(--clay), var(--green));
  border-radius: 50%;
  display: inline-block;
  height: 31px;
  width: 31px;
}

.site-nav {
  display: flex;
  gap: clamp(14px, 2vw, 28px);
  justify-content: center;
  min-width: 0;
}

.site-nav a,
.header-action {
  color: #32433d;
  font-size: 0.91rem;
  font-weight: 650;
}

.site-nav a:hover,
.header-action:hover {
  color: var(--green-2);
}

.header-action,
.button {
  border: 1px solid var(--green);
  border-radius: 8px;
  display: inline-flex;
  justify-content: center;
  padding: 12px 16px;
}

.header-action {
  background: var(--green);
  color: #fff;
}

.menu-toggle {
  background: transparent;
  border: 0;
  display: none;
  height: 40px;
  justify-self: end;
  padding: 8px;
  width: 40px;
}

.menu-toggle span {
  background: var(--ink);
  display: block;
  height: 2px;
  margin: 7px 0;
}

.section,
.hero-inner {
  margin: 0 auto;
  max-width: 1160px;
  padding: 104px clamp(20px, 4vw, 44px);
}

.section-band {
  overflow: hidden;
  position: relative;
}

.hero {
  min-height: 86vh;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.9) 38%, rgba(245, 248, 246, 0.58) 100%),
    radial-gradient(circle at 74% 28%, rgba(111, 169, 158, 0.2), transparent 31%),
    #fff;
}

.hero::after {
  background: var(--soft);
  bottom: 0;
  content: "";
  height: 72px;
  left: 0;
  position: absolute;
  right: 0;
}

.hero-lines {
  inset: 60px -120px -20px auto;
  opacity: 0.62;
  position: absolute;
  width: min(62vw, 820px);
}

.hero-lines svg {
  fill: none;
  height: auto;
  stroke: var(--green-2);
  stroke-linecap: round;
  stroke-width: 1.25;
  width: 100%;
}

.hero-lines circle {
  stroke: var(--clay);
  stroke-dasharray: 4 12;
}

.hero-inner {
  align-items: center;
  display: grid;
  gap: clamp(34px, 7vw, 90px);
  grid-template-columns: minmax(0, 1.05fr) minmax(310px, 0.72fr);
  min-height: 76vh;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: clamp(3.4rem, 8vw, 7.6rem);
  letter-spacing: 0;
  line-height: 0.93;
  margin: 0 0 30px;
  max-width: 820px;
}

.hero-copy p {
  font-size: clamp(1.13rem, 2vw, 1.36rem);
  max-width: 620px;
}

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

.button {
  font-size: 0.96rem;
  font-weight: 720;
}

.button.primary {
  background: var(--green);
  color: #fff;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.7);
  color: var(--green);
}

.button.inverse {
  background: #fff;
  border-color: #fff;
  color: var(--green);
  margin-top: auto;
}

.text-link {
  color: var(--green);
  display: inline-flex;
  font-weight: 800;
  margin-top: 14px;
}

.text-link::after {
  content: "→";
  margin-left: 8px;
}

.process-panel {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(215, 223, 218, 0.88);
  box-shadow: var(--shadow);
  padding: 22px;
}

.process-panel ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

.process-panel li {
  align-items: baseline;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 16px;
  grid-template-columns: 38px 1fr;
  line-height: 1.45;
  padding: 17px 0;
}

.process-panel li:last-child {
  border-bottom: 0;
}

.process-panel span,
.steps span,
.number {
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 800;
}

.pillars {
  background: var(--soft);
  max-width: none;
}

.pillars > * {
  margin-left: auto;
  margin-right: auto;
  max-width: 1160px;
}

.section-heading {
  display: grid;
  gap: 34px;
  grid-template-columns: 0.92fr 1fr;
  margin-bottom: 52px;
}

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

h2 {
  font-size: clamp(2.1rem, 4vw, 4.1rem);
  line-height: 1.02;
  margin: 0;
}

h1 {
  font-size: clamp(3rem, 7vw, 6.4rem);
  letter-spacing: 0;
  line-height: 0.96;
  margin: 0;
}

h3 {
  font-size: 1.24rem;
  margin: 10px 0 12px;
}

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

.pillar-grid article,
.steps article,
.compliance-grid article,
.offer-card,
.resource-list a,
.loop-board > div {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
}

.pillar-grid article,
.steps article,
.loop-board > div,
.compliance-grid article,
.offer-card,
.resource-list a {
  transition:
    opacity 520ms ease,
    transform 520ms ease,
    border-color 220ms ease;
}

.pillar-grid article:hover,
.steps article:hover,
.loop-board > div:hover,
.compliance-grid article:hover,
.offer-card:hover,
.resource-list a:hover {
  border-color: rgba(39, 104, 90, 0.45);
}

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

  .pillar-grid article,
  .steps article,
  .loop-board > div,
  .compliance-grid article,
  .offer-card,
  .resource-list a {
    transition: none;
  }
}

.split-section {
  align-items: center;
  display: grid;
  gap: clamp(44px, 7vw, 92px);
  grid-template-columns: 0.9fr 1.1fr;
}

.quiet-list {
  color: var(--green);
  font-weight: 720;
  line-height: 2;
  margin: 26px 0 0;
  padding-left: 20px;
}

.field-map {
  aspect-ratio: 1;
  background:
    radial-gradient(circle, rgba(111, 169, 158, 0.16), transparent 54%),
    linear-gradient(#fff, #fff);
  border: 1px solid var(--line);
  border-radius: 50%;
  margin: auto;
  max-width: 520px;
  position: relative;
  width: 100%;
}

.field-map::before,
.field-map::after {
  border: 1px solid rgba(39, 104, 90, 0.2);
  border-radius: 50%;
  content: "";
  inset: 15%;
  position: absolute;
}

.field-map::after {
  inset: 30%;
}

.field-center {
  align-items: center;
  background: var(--green);
  border-radius: 50%;
  color: #fff;
  display: flex;
  font-weight: 800;
  height: 132px;
  justify-content: center;
  left: 50%;
  line-height: 1.05;
  position: absolute;
  text-align: center;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 132px;
  z-index: 2;
}

.field-map span {
  --angle: calc(var(--i) * 51.428deg - 90deg);
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--green);
  display: flex;
  font-size: clamp(0.75rem, 1.7vw, 0.92rem);
  font-weight: 760;
  justify-content: center;
  left: 50%;
  min-height: 52px;
  padding: 8px 10px;
  position: absolute;
  text-align: center;
  top: 50%;
  transform: rotate(var(--angle)) translate(205px) rotate(calc(-1 * var(--angle))) translate(-50%, -50%);
  width: 128px;
  z-index: 3;
}

.protocol {
  border-top: 1px solid var(--line);
}

.steps {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(6, 1fr);
  margin-top: 36px;
}

.steps article {
  min-height: 210px;
}

.academy {
  background:
    linear-gradient(180deg, #fff 0%, var(--soft) 100%);
  max-width: none;
}

.academy > * {
  margin-left: auto;
  margin-right: auto;
  max-width: 1160px;
}

.offer-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(6, 1fr);
}

.offer-card {
  display: flex;
  flex-direction: column;
  grid-column: span 2;
  min-height: 330px;
}

.offer-card.featured {
  background:
    linear-gradient(145deg, rgba(23, 63, 53, 0.96), rgba(39, 104, 90, 0.9)),
    var(--green);
  color: #fff;
  grid-column: span 3;
}

.offer-card:nth-child(2) {
  grid-column: span 3;
}

.offer-card.featured p,
.offer-card.featured li {
  color: rgba(255, 255, 255, 0.78);
}

.offer-label {
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0;
  text-transform: uppercase;
}

.offer-card.featured .offer-label {
  color: #f2cfc5;
}

.offer-card h3 {
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.08;
  margin: 18px 0 8px;
}

.offer-card ul {
  color: var(--muted);
  line-height: 1.72;
  margin: auto 0 0;
  padding-left: 20px;
}

.compliance-note {
  background: var(--clay-soft);
  border-left: 3px solid var(--clay);
  color: #694336;
  margin-top: auto;
  padding: 12px 14px;
}

.platform-paths {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.platform-paths a {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--green);
  font-size: 0.9rem;
  font-weight: 760;
  padding: 10px 13px;
}

.platform-paths a:hover {
  border-color: rgba(39, 104, 90, 0.45);
}

.couples {
  background: #fbfcfb;
  max-width: none;
}

.couples > * {
  max-width: 560px;
}

.loop-board {
  display: grid;
  gap: 18px;
}

.loop-board h3 {
  color: var(--green);
}

blockquote {
  border-left: 3px solid var(--clay);
  color: #26352f;
  font-size: 1.14rem;
  line-height: 1.75;
  margin: 30px 0 0;
  padding: 8px 0 8px 24px;
}

.professionals {
  background: var(--green);
  color: #fff;
  max-width: none;
}

.professionals > * {
  margin-left: auto;
  margin-right: auto;
  max-width: 1160px;
}

.professionals p {
  color: rgba(255, 255, 255, 0.78);
}

.compliance-grid article {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.2);
}

.resources {
  display: grid;
  gap: clamp(34px, 7vw, 84px);
  grid-template-columns: 0.85fr 1fr;
}

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

.resource-list a {
  align-items: center;
  display: grid;
  gap: 18px;
  grid-template-columns: 120px 1fr;
  font-size: 1.15rem;
  font-weight: 760;
}

.resource-list span {
  color: var(--clay);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.graphic-preview {
  display: grid;
  gap: 34px;
}

.graphic-frame {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  margin: 0;
  min-width: 0;
  overflow: hidden;
  padding: clamp(14px, 2.6vw, 30px);
}

.graphic-frame img {
  display: block;
  height: auto;
  width: 100%;
}

.page-hero {
  align-items: end;
  background:
    linear-gradient(120deg, #fff 0%, #fff 54%, var(--soft) 100%);
  display: grid;
  gap: clamp(32px, 6vw, 80px);
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  max-width: none;
}

.page-hero > div {
  justify-self: end;
  min-width: 0;
  max-width: 820px;
  padding-left: clamp(20px, 4vw, 44px);
  width: 100%;
}

.page-hero p {
  font-size: clamp(1.1rem, 2vw, 1.34rem);
  max-width: 760px;
}

.breadcrumb {
  color: var(--clay);
  display: inline-flex;
  font-size: 0.85rem;
  font-weight: 820;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.summary-panel,
.program-card,
.product-card,
.download-card,
.audience-grid article,
.resource-hub a,
.module-list article,
.content-nav,
.note-box,
.insight-grid article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.summary-panel {
  box-shadow: var(--shadow);
  margin-right: clamp(20px, 4vw, 44px);
  padding: 28px;
}

.summary-panel h2 {
  font-size: 1.42rem;
  margin-bottom: 8px;
}

.page-grid {
  align-items: start;
  display: grid;
  gap: clamp(30px, 5vw, 70px);
  grid-template-columns: 250px minmax(0, 1fr);
}

.content-nav {
  display: grid;
  padding: 12px;
  position: sticky;
  top: 96px;
}

.content-nav a {
  border-bottom: 1px solid var(--line);
  color: var(--green);
  font-weight: 780;
  padding: 13px 10px;
}

.content-nav a:last-child {
  border-bottom: 0;
}

.article-flow {
  display: grid;
  gap: 56px;
}

.article-flow > section {
  scroll-margin-top: 110px;
}

.article-flow h2 {
  font-size: clamp(1.9rem, 3vw, 3.2rem);
  margin-bottom: 18px;
}

.insight-grid,
.program-grid,
.product-grid,
.download-grid,
.audience-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.insight-grid article,
.program-card,
.product-card,
.download-card,
.audience-grid article,
.module-list article {
  padding: 26px;
}

.method-list {
  color: var(--muted);
  display: grid;
  gap: 10px;
  line-height: 1.65;
  padding-left: 20px;
}

.timeline {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin-top: 22px;
}

.timeline span,
.status-tag,
.product-card span,
.resource-hub span {
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 820;
  text-transform: uppercase;
}

.timeline span {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--green);
  padding: 12px;
  text-align: center;
}

.note-box {
  background: var(--clay-soft);
  border-color: rgba(189, 113, 93, 0.34);
  padding: clamp(24px, 4vw, 40px);
}

.note-box h2 {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  margin-bottom: 10px;
}

.program-card,
.product-card,
.download-card {
  display: grid;
  gap: 10px;
}

.program-card h2,
.product-card h2,
.download-card h2,
.audience-grid h2 {
  font-size: clamp(1.35rem, 2.4vw, 2rem);
}

.program-card ul {
  color: var(--muted);
  line-height: 1.7;
  margin: 8px 0 0;
  padding-left: 20px;
}

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

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

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

.download-card {
  align-content: start;
  min-height: 360px;
}

.download-card span {
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 820;
  text-transform: uppercase;
}

.download-card .button {
  align-self: end;
  width: 100%;
  margin-top: auto;
}

.resource-hub {
  display: grid;
  gap: 14px;
}

.resource-hub a {
  display: grid;
  gap: 6px;
  padding: 24px;
}

.resource-hub strong {
  color: var(--ink);
  font-size: 1.22rem;
}

.resource-hub p {
  margin: 0;
}

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

.about,
.booking,
.contact {
  border-top: 1px solid var(--line);
}

.profile-card,
.info-panel {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 30px;
}

.profile-card ul {
  color: var(--muted);
  line-height: 1.7;
  margin: 16px 0 0;
  padding-left: 20px;
}

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

.contact-grid,
.legal-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, 1fr);
}

.contact-grid article,
.legal-grid article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
}

.contact-grid a,
.legal a {
  color: var(--green-2);
  font-weight: 760;
}

.small-note {
  color: var(--muted);
  font-size: 0.9rem;
}

.legal {
  background: #fbfcfb;
  max-width: none;
}

.legal > h1,
.legal > h2,
.legal > .legal-grid,
.legal > .legal-copy,
.legal > .small-note {
  margin-left: auto;
  margin-right: auto;
  max-width: 1160px;
}

.legal > h1,
.legal h2 {
  margin-bottom: 42px;
}

.legal-copy {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(24px, 4vw, 42px);
}

.legal-copy .lead {
  color: #2d3d37;
  font-size: 1.14rem;
}

.footer-link {
  background: transparent;
  border: 0;
  color: inherit;
  cursor: pointer;
  font: inherit;
  padding: 0;
}

.cookie-banner {
  align-items: center;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  border-radius: 8px;
  bottom: 18px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr auto;
  left: 18px;
  max-width: 920px;
  padding: 22px;
  position: fixed;
  right: 18px;
  z-index: 30;
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner h2 {
  font-size: 1.35rem;
  margin-bottom: 6px;
}

.cookie-banner p {
  font-size: 0.95rem;
  margin: 0;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.site-footer {
  align-items: end;
  background: #101a16;
  color: #fff;
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr auto;
  padding: 46px clamp(20px, 4vw, 58px);
}

.site-footer p {
  color: rgba(255, 255, 255, 0.68);
  margin-bottom: 0;
  max-width: 760px;
}

.site-footer nav {
  display: flex;
  gap: 18px;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav,
  .header-action {
    display: none;
  }

  .site-header.nav-open .site-nav {
    background: #fff;
    border-top: 1px solid var(--line);
    display: grid;
    gap: 0;
    grid-column: 1 / -1;
    justify-content: stretch;
    padding-top: 10px;
  }

  .site-header.nav-open .site-nav a {
    border-bottom: 1px solid var(--line);
    padding: 14px 0;
  }

  .hero-inner,
  .page-hero,
  .page-grid,
  .section-heading,
  .split-section,
  .resources {
    grid-template-columns: 1fr;
  }

  .page-hero > div,
  .summary-panel {
    justify-self: stretch;
    margin-left: 0;
    margin-right: 0;
    max-width: none;
  }

  .content-nav {
    position: static;
  }

  .hero {
    min-height: auto;
  }

  .hero-lines {
    opacity: 0.32;
    width: 92vw;
  }

  .pillar-grid,
  .compliance-grid,
  .steps,
  .offer-grid,
  .insight-grid,
  .program-grid,
  .product-grid,
  .download-grid,
  .audience-grid,
  .contact-grid,
  .legal-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .offer-card,
  .offer-card.featured,
  .offer-card:nth-child(2) {
    grid-column: auto;
  }

  .field-map span {
    transform: rotate(var(--angle)) translate(min(37vw, 185px)) rotate(calc(-1 * var(--angle))) translate(-50%, -50%);
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 14px 18px;
  }

  .brand {
    min-width: 0;
  }

  .section,
  .hero-inner {
    padding: 76px 20px;
  }

  h1 {
    font-size: clamp(2.45rem, 12vw, 3.2rem);
  }

  .hero h1 {
    font-size: clamp(2.55rem, 12.6vw, 3.18rem);
    line-height: 1;
  }

  .hero-copy p {
    font-size: 1.04rem;
  }

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

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

  .process-panel {
    padding: 18px;
  }

  .process-panel li {
    gap: 10px;
    grid-template-columns: 34px 1fr;
  }

  .pillar-grid,
  .compliance-grid,
  .steps,
  .offer-grid,
  .insight-grid,
  .program-grid,
  .product-grid,
  .download-grid,
  .audience-grid,
  .contact-grid,
  .legal-grid,
  .cookie-banner {
    grid-template-columns: 1fr;
  }

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

  .download-grid.compact {
    grid-template-columns: 1fr;
  }

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

  .cookie-actions {
    flex-direction: column;
  }

  .steps article {
    min-height: auto;
  }

  .field-map {
    aspect-ratio: auto;
    border-radius: 16px;
    display: grid;
    gap: 8px;
    margin-top: 22px;
    padding: 16px;
  }

  .field-map::before,
  .field-map::after {
    display: none;
  }

  .field-center {
    border-radius: 8px;
    height: auto;
    left: auto;
    padding: 16px;
    position: static;
    top: auto;
    transform: none;
    width: auto;
  }

  .field-map span {
    font-size: 0.72rem;
    min-height: 42px;
    position: static;
    transform: none;
    width: auto;
  }

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

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

  .site-footer nav {
    flex-wrap: wrap;
  }
}
