:root {
  --bg: #f7f0e4;
  --surface: rgba(255, 251, 245, 0.78);
  --surface-strong: #fff8ee;
  --line: rgba(58, 71, 52, 0.16);
  --text: #213127;
  --muted: #5f6f60;
  --sage: #7f9b6a;
  --moss: #314c3b;
  --clay: #b8663d;
  --amber: #d79b43;
  --shadow: 0 24px 60px rgba(36, 45, 30, 0.14);
  --radius-xl: 36px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: min(1180px, calc(100vw - 40px));
  --container-narrow: min(860px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: #fbf7f1;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at top right, rgba(205, 139, 38, 0.08), transparent 28%);
  opacity: 0.8;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

h1,
h2,
h3,
strong,
summary,
.price,
.tier-price,
.metric-number {
  color: var(--text);
}

h1,
h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  line-height: 0.96;
}

h1 {
  max-width: 11.5ch;
  font-size: clamp(3rem, 4.1vw, 4.45rem);
  line-height: 0.98;
}

h2 {
  max-width: 9ch;
  font-size: clamp(2.8rem, 4.6vw, 4.2rem);
}

h3 {
  margin: 0 0 12px;
  font-size: 1.4rem;
}

.promo-bar,
.site-header,
.section,
.site-footer {
  width: var(--container);
  margin: 0 auto;
}

.promo-bar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  font-size: 0.9rem;
  font-weight: 700;
}

.promo-bar-sitewide {
  width: 100%;
  padding-inline: max(20px, calc((100vw - 1180px) / 2));
  background: #2f684b;
  color: #f8f0df;
}

.promo-bar a {
  font-weight: 800;
}

.site-header {
  position: sticky;
  top: 12px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
  margin-bottom: 22px;
  padding: 14px 20px;
  border: 1px solid rgba(201, 182, 151, 0.32);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 40px rgba(74, 56, 22, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.brand-logo {
  width: 136px;
  height: 66px;
  border-radius: 12px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  gap: 24px;
  color: var(--muted);
  font-weight: 700;
}

.main-nav a,
.footer-links a,
.promo-bar a,
.feature-card a,
.text-link {
  transition: color 180ms ease;
}

.main-nav a:hover,
.main-nav a[aria-current="page"],
.promo-bar a:hover,
.footer-links a:hover,
.feature-card a:hover,
.text-link:hover {
  color: var(--moss);
}

.main-nav a[aria-current="page"] {
  font-weight: 800;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.nav-cta,
.button-primary {
  background: var(--moss);
  color: #f5f0e7;
  box-shadow: 0 16px 30px rgba(49, 76, 59, 0.18);
}

.nav-cta-warm,
.button-warm {
  background: #c9831e;
  color: #fff8ef;
  box-shadow: 0 16px 30px rgba(201, 131, 30, 0.24);
}

.button-secondary {
  border-color: rgba(177, 154, 116, 0.28);
  background: #fffdf9;
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.section {
  padding: 44px 0;
}

.hero-home,
.page-hero,
.hero-reference {
  display: grid;
  gap: 34px;
  justify-items: center;
  text-align: center;
}

.hero-home {
  padding-top: 48px;
}

.hero-reference {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 1fr);
  align-items: center;
  gap: 42px;
  padding: 36px 0 24px;
}

.page-hero {
  min-height: 44vh;
  align-content: center;
}

.hero-copy,
.section-heading,
.page-hero-copy,
.centered-stack {
  width: min(100%, 900px);
  margin: 0 auto;
  text-align: center;
}

.hero-copy-left,
.section-heading-left {
  width: min(100%, 760px);
  margin: 0 auto;
  padding-inline: clamp(8px, 2vw, 26px);
  text-align: left;
}

.headline-accent {
  color: #b8791f;
  font-style: italic;
}

.hero-copy-left h1,
.section-heading-left h2 {
  margin-inline: 0;
}

.hero-text,
.section-heading p,
.page-hero-copy p,
.centered-stack p {
  max-width: 62ch;
  margin: 20px auto 0;
  font-size: 1.05rem;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: #b47822;
}

.eyebrow-line::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 2px;
  margin-right: 12px;
  vertical-align: middle;
  background: currentColor;
}

.eyebrow-light {
  color: #e4c18d;
}

.hero-center-copy {
  max-width: 66ch;
}

.hero-text-left {
  max-width: 34ch;
  margin-inline: 0;
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0;
}

.hero-center-actions {
  justify-content: center;
}

.hero-actions-left {
  justify-content: flex-start;
}

.hero-notes {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-notes-centered {
  width: 100%;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hero-notes li,
.visual-panel,
.stat-card,
.feature-card,
.category-card,
.impact-stats div,
.signup-form,
.faq-list details,
.course-card,
.tier-card,
.quote-card,
.method-card,
.impact-card,
.cta-panel,
.process-card,
.metric-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-notes li,
.feature-card,
.category-card,
.impact-stats div,
.course-card,
.tier-card,
.quote-card,
.method-card,
.impact-card,
.cta-panel,
.process-card,
.metric-item {
  padding: 24px;
}

.mini-checks {
  display: grid;
  gap: 10px 24px;
  grid-template-columns: repeat(2, minmax(0, max-content));
  padding: 0;
  margin: 0;
  list-style: none;
  color: #476152;
}

.mini-checks li::before {
  content: "✓";
  margin-right: 10px;
  color: #315e43;
  font-weight: 800;
}

.hero-frame {
  position: relative;
}

.hero-photo-card {
  position: relative;
  width: min(100%, 560px);
  padding: 18px 18px 0 0;
  margin-left: auto;
}

.hero-photo-card::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -12px;
  width: 74%;
  height: 82%;
  border: 2px solid rgba(200, 126, 33, 0.45);
  border-radius: 0 220px 0 0;
  z-index: 0;
}

.hero-photo-card img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1.05;
  object-fit: cover;
  border-radius: 220px 220px 0 0;
  box-shadow: 0 22px 50px rgba(60, 44, 18, 0.14);
  background: #f1eee7;
}

.hero-visual-grid {
  width: min(100%, 980px);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  grid-template-areas:
    "large stat"
    "large small";
  gap: 20px;
}

.visual-panel,
.stat-card {
  min-height: 220px;
}

.visual-large {
  grid-area: large;
  min-height: 460px;
}

.visual-card {
  grid-area: small;
}

.stat-card {
  grid-area: stat;
  padding: 24px;
  text-align: left;
}

.visual-panel {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-align: left;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 32%, rgba(245, 191, 96, 0.92), transparent 18%),
    radial-gradient(circle at 66% 52%, rgba(141, 174, 112, 0.9), transparent 20%),
    radial-gradient(circle at 52% 72%, rgba(193, 106, 65, 0.82), transparent 16%),
    linear-gradient(135deg, #f3d6aa, #edc996 45%, #d9b677 100%);
}

.visual-panel span,
.visual-panel strong {
  max-width: 14ch;
}

.visual-panel span,
.feature-label,
.pill,
.course-meta,
.tier-label {
  display: inline-flex;
  margin-bottom: 14px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.visual-panel strong,
.stat-card span,
.impact-stats strong,
.price,
.tier-price,
.metric-number {
  font-family: "Cormorant Garamond", serif;
}

.visual-panel strong {
  font-size: 2.25rem;
  line-height: 1.04;
}

.stat-card span,
.impact-stats strong,
.price,
.tier-price,
.metric-number {
  display: block;
  font-size: 3.15rem;
  line-height: 0.9;
}

.section-heading.centered,
.centered-stack {
  max-width: var(--container-narrow);
}

.section-editorial {
  padding-top: 72px;
}

.section-soft {
  background: linear-gradient(180deg, #faf5ed, #fbf7f1);
}

.compact-top {
  padding-top: 24px;
}

.grid-three,
.category-grid,
.split-panel,
.course-grid,
.tier-grid,
.quote-grid,
.method-grid,
.impact-grid,
.impact-stats,
.starter-pack,
.metric-strip,
.process-grid,
.impact-band-home {
  display: grid;
  gap: 22px;
}

.grid-three,
.course-grid,
.tier-grid,
.quote-grid,
.method-grid,
.impact-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.category-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.process-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.metric-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(185, 168, 140, 0.32);
  border-bottom: 1px solid rgba(185, 168, 140, 0.32);
}

.metric-item {
  border: 0;
  border-radius: 0;
  text-align: center;
  background: transparent;
  box-shadow: none;
}

.metric-item strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.3rem;
  color: #b2761d;
}

.split-panel,
.starter-pack {
  grid-template-columns: minmax(0, 1fr);
}

.feature-label,
.pill,
.tier-label {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.56);
}

.feature-card,
.category-card,
.course-card,
.tier-card,
.method-card,
.impact-card,
.quote-card,
.cta-panel {
  text-align: center;
}

.feature-grid-photo {
  align-items: start;
}

.feature-card-photo {
  overflow: hidden;
  padding: 0;
  background: #fffdfa;
}

.card-image-wrap {
  aspect-ratio: 1.08 / 0.72;
  overflow: hidden;
}

.card-image-wrap img,
.impact-band-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #f1eee7;
}

.card-copy {
  padding: 20px 20px 24px;
}

.left-copy,
.category-card-clean,
.process-card {
  text-align: left;
}

.feature-label-plain {
  padding: 0;
  background: transparent;
}

.feature-card a,
.text-link {
  display: inline-flex;
  margin-top: 20px;
  font-weight: 800;
}

.accent-sage {
  background: linear-gradient(180deg, rgba(214, 227, 202, 0.85), rgba(251, 248, 241, 0.78));
}

.accent-amber {
  background: linear-gradient(180deg, rgba(244, 224, 180, 0.85), rgba(251, 248, 241, 0.78));
}

.accent-clay {
  background: linear-gradient(180deg, rgba(237, 203, 185, 0.85), rgba(251, 248, 241, 0.78));
}

.course-card ul,
.tier-card ul,
.method-card ul,
.impact-card ul {
  padding-left: 18px;
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.8;
  text-align: left;
}

.price-row,
.tier-row {
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 10px;
  margin: 18px 0;
}

.price-note,
.tier-note,
.small-note {
  font-size: 0.92rem;
}

.course-cta,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 20px;
}

.impact-copy {
  padding: 34px;
  border-radius: calc(var(--radius-xl) + 4px);
  background: linear-gradient(135deg, rgba(49, 76, 59, 0.98), rgba(98, 129, 99, 0.9));
  box-shadow: var(--shadow);
  text-align: center;
}

.impact-copy h2,
.impact-copy p,
.impact-copy .eyebrow {
  color: #f8f1e5;
}

.impact-copy .button-secondary {
  margin-top: 22px;
  color: #f8f1e5;
  border-color: rgba(248, 241, 229, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

.category-card-clean {
  background: #fffdfa;
  border-color: rgba(190, 170, 136, 0.3);
}

.category-card-clean span,
.feature-label-plain {
  color: #b47822;
}

.category-card-clean strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.1rem;
  font-family: "Cormorant Garamond", serif;
}

.category-card-clean a {
  display: inline-flex;
  margin-top: 22px;
  font-weight: 800;
  color: #b47822;
}

.process-card {
  background: #fffdfa;
  border-color: rgba(190, 170, 136, 0.32);
}

.process-number {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: #f6e5c7;
  color: #a66a17;
  font-weight: 800;
}

.impact-band-home {
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.9fr);
  align-items: center;
  width: 100%;
  padding: 82px max(20px, calc((100vw - 1180px) / 2));
  background: #2f684b;
  color: #f6eedf;
}

.impact-band-copy {
  max-width: 540px;
}

.impact-band-copy h2,
.impact-band-copy p,
.impact-mini-metrics strong,
.impact-mini-metrics span {
  color: #f6eedf;
}

.impact-band-copy h2 {
  margin-inline: 0;
}

.impact-mini-metrics {
  display: flex;
  gap: 28px;
  margin: 32px 0 36px;
  flex-wrap: wrap;
}

.impact-mini-metrics article {
  display: grid;
  gap: 8px;
}

.impact-mini-metrics strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.1rem;
  line-height: 1;
}

.impact-button {
  background: #f3e8d2;
  color: #264f39;
}

.impact-band-visual {
  min-height: 430px;
  overflow: hidden;
  border-radius: 26px;
  box-shadow: 0 22px 48px rgba(5, 20, 13, 0.18);
}

.signup-form {
  width: min(100%, 640px);
  margin: 0;
  display: grid;
  gap: 16px;
  padding: 28px;
  background: #fffdfa;
}

.signup-form label {
  display: grid;
  gap: 8px;
  font-size: 0.96rem;
  font-weight: 700;
  text-align: left;
}

.signup-form input,
.signup-form select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(49, 76, 59, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
  font: inherit;
}

.faq-list {
  width: min(100%, 860px);
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.faq-list details {
  padding: 20px 22px;
}

summary {
  cursor: pointer;
  list-style: none;
  font-size: 1.06rem;
  font-weight: 800;
}

summary::-webkit-details-marker {
  display: none;
}

.faq-list details p {
  margin-top: 14px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr auto;
  gap: 24px;
  padding: 34px 0 48px;
  align-items: end;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.footer-copy {
  text-align: right;
}

.reveal-target {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 520ms ease, transform 520ms ease;
}

.cta-panel {
  width: min(100%, 900px);
  margin: 0 auto;
}

@media (max-width: 980px) {
  .site-header,
  .promo-bar,
  .hero-visual-grid,
  .grid-three,
  .category-grid,
  .course-grid,
  .tier-grid,
  .quote-grid,
  .method-grid,
  .impact-grid,
  .split-panel,
  .site-footer,
  .process-grid,
  .impact-band-home,
  .metric-strip {
    grid-template-columns: 1fr;
  }

  .site-header {
    position: static;
    border-radius: 28px;
    padding: 20px;
  }

  .main-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
  }

  .hero-notes-centered {
    grid-template-columns: 1fr;
  }

  .mini-checks {
    grid-template-columns: 1fr;
  }

  .hero-copy-left,
  .section-heading-left,
  .impact-band-copy,
  .signup-form {
    max-width: 700px;
    width: 100%;
    margin-inline: auto;
  }

  .visual-large,
  .visual-card,
  .stat-card {
    grid-area: auto;
  }

  .hero-photo-card::after {
    width: 78%;
  }

  .site-footer {
    align-items: start;
  }

  .footer-copy {
    text-align: center;
  }
}

@media (max-width: 980px) and (min-width: 721px) {
  .hero-reference {
    grid-template-columns: minmax(0, 0.92fr) minmax(300px, 0.96fr);
    gap: 28px;
  }

  .hero-copy-left {
    max-width: 500px;
  }

  .hero-photo-card {
    width: min(100%, 460px);
  }

  h1 {
    font-size: clamp(2.9rem, 4.2vw, 4.1rem);
  }
}

@media (max-width: 720px) {
  .promo-bar,
  .site-header {
    flex-direction: column;
    align-items: center;
  }

  .hero-reference {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .promo-bar-sitewide {
    text-align: center;
  }

  .hero-reference {
    gap: 28px;
  }

  .hero-photo-card {
    padding-right: 10px;
  }

  .hero-copy-left,
  .section-heading-left {
    text-align: left;
    padding-inline: 4px;
  }

  .brand-logo {
    width: 112px;
    height: 54px;
  }

  .hero-photo-card img {
    border-radius: 120px 120px 0 0;
  }

  .button,
  .nav-cta {
    width: 100%;
  }

  .hero-actions,
  .course-cta,
  .cta-actions {
    flex-direction: column;
  }

  h1 {
    font-size: clamp(2.45rem, 13.5vw, 3.7rem);
  }

  h2 {
    font-size: clamp(2.4rem, 12vw, 3.4rem);
  }
}