:root {
  --bg: #f5f0e5;
  --bg-soft: #f9f6ef;
  --panel: rgba(250, 247, 240, 0.86);
  --surface: #fffdf8;
  --ink: #1d2c1e;
  --muted: #566355;
  --line: rgba(29, 44, 30, 0.12);
  --moss: #385c3a;
  --fern: #557d46;
  --clay: #c67d48;
  --gold: #ddbb72;
  --shadow: 0 22px 70px rgba(36, 42, 24, 0.15);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --content-width: min(1180px, calc(100vw - 2rem));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(221, 187, 114, 0.35), transparent 26%),
    radial-gradient(circle at right 15%, rgba(85, 125, 70, 0.24), transparent 23%),
    linear-gradient(180deg, #f6f1e6 0%, #f2ecdd 50%, #f8f4ea 100%);
}

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

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 30;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: var(--ink);
  color: white;
}

.skip-link:focus {
  top: 1rem;
}

.page-shell {
  width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  width: var(--content-width);
  margin: 0 auto;
  padding: 1rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  backdrop-filter: blur(18px);
}

.nav-toggle {
  display: none;
  width: 3.2rem;
  height: 3.2rem;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.88);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.28rem;
}

.nav-toggle span {
  width: 1.1rem;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-mark strong,
.brand-mark small {
  display: block;
}

.brand-mark strong {
  font-family: "Sora", sans-serif;
  font-size: 0.98rem;
}

.brand-mark small {
  color: var(--muted);
  font-size: 0.78rem;
}

.brand-mark__seed {
  width: 2.9rem;
  height: 2.9rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--moss), var(--fern));
  color: white;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(56, 92, 58, 0.28);
}

.site-nav {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0.8rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.68);
}

.site-nav a,
.header-cta,
.button {
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

.site-nav a:hover,
.header-cta:hover,
.button:hover {
  transform: translateY(-1px);
}

.header-cta,
.button {
  border-radius: 999px;
  font-weight: 700;
  border: 0;
}

.header-cta {
  padding: 0.95rem 1.3rem;
  background: var(--ink);
  color: white;
}

main,
.site-header,
.intro-strip {
  width: var(--content-width);
}

main {
  margin: 0 auto;
  padding-bottom: 3rem;
}

.hero,
.section-grid,
.process,
.payments-section,
.signup-section,
.contact-section {
  margin-top: 1.8rem;
}

.hero {
  min-height: 84vh;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.25rem;
  align-items: stretch;
  padding-top: 3rem;
}

.hero__content,
.hero__panel,
.intro-strip,
.showcase,
.process,
.proof-band,
.payments-section,
.signup-section,
.contact-section {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero__content,
.process,
.payments-section,
.signup-section,
.contact-section {
  background: linear-gradient(180deg, rgba(255, 251, 242, 0.95), rgba(247, 241, 228, 0.95));
}

.hero__content {
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
}

.hero__content::before,
.hero__content::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(8px);
}

.hero__content::before {
  width: 17rem;
  height: 17rem;
  background: rgba(85, 125, 70, 0.11);
  top: -4rem;
  right: -4rem;
}

.hero__content::after {
  width: 10rem;
  height: 10rem;
  background: rgba(198, 125, 72, 0.12);
  bottom: -2rem;
  left: -2rem;
}

.eyebrow {
  margin: 0 0 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--fern);
}

.hero h1,
.section-heading h2,
.proof-band h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
  line-height: 1.02;
}

.hero h1 {
  max-width: 11ch;
  font-size: clamp(3rem, 7vw, 6rem);
}

.hero__lede,
.hero__sublede,
.section-heading,
.process-steps p,
.contact-section p,
.intro-strip p {
  color: var(--muted);
}

.hero__lede {
  max-width: 38rem;
  font-size: 1.08rem;
  line-height: 1.7;
  margin: 1.5rem 0 0;
}

.hero__sublede {
  max-width: 38rem;
  font-size: 0.98rem;
  line-height: 1.7;
  margin: 1rem 0 0;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.3rem;
  padding: 0.95rem 1.4rem;
}

.button--primary {
  background: linear-gradient(135deg, var(--moss), var(--fern));
  color: white;
}

.button--secondary {
  background: rgba(56, 92, 58, 0.08);
  color: var(--ink);
  border: 1px solid rgba(56, 92, 58, 0.16);
}

.button--ghost {
  background: rgba(255, 255, 255, 0.5);
  color: var(--ink);
  border: 1px solid rgba(29, 44, 30, 0.12);
}

.hero__stats {
  margin-top: 2.25rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.hero__stats div {
  padding: 1rem 1.1rem;
  background: rgba(255, 255, 255, 0.54);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.hero__stats strong,
.hero__stats span {
  display: block;
}

.hero__stats strong {
  font-size: 1.4rem;
  margin-bottom: 0.35rem;
}

.hero__panel {
  display: grid;
  gap: 1.2rem;
}

.hero-card,
.showcase,
.proof-band {
  border-radius: var(--radius-xl);
}

.hero-card {
  padding: 1.6rem;
  background: linear-gradient(180deg, rgba(49, 75, 51, 0.98), rgba(33, 49, 34, 0.98));
  color: white;
  min-height: 12rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: auto -15% -20% auto;
  width: 11rem;
  height: 11rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(221, 187, 114, 0.4), transparent 65%);
}

.hero-card--vision {
  min-height: 22rem;
  background:
    linear-gradient(180deg, rgba(24, 42, 26, 0.12), rgba(24, 42, 26, 0.78)),
    url("https://images.unsplash.com/photo-1500382017468-9049fed747ef?auto=format&fit=crop&w=1200&q=80")
      center/cover;
}

.hero-card--vision p,
.hero-card--contact span {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 800;
  opacity: 0.78;
}

.hero-card--vision strong {
  font-family: "Sora", sans-serif;
  font-size: 1.8rem;
  line-height: 1.1;
  max-width: 12ch;
}

.hero-card--contact {
  gap: 0.6rem;
}

.hero-card--contact a {
  font-size: 1.4rem;
  font-family: "Sora", sans-serif;
}

.hero-card--contact small {
  color: rgba(255, 255, 255, 0.72);
}

.intro-strip,
.process,
.payments-section,
.signup-section,
.contact-section {
  border-radius: var(--radius-xl);
}

.intro-strip {
  margin: 1.5rem auto 0;
  padding: 1.4rem 1.7rem;
  background: linear-gradient(135deg, rgba(255, 248, 236, 0.95), rgba(241, 231, 211, 0.95));
}

.intro-strip p {
  margin: 0;
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  line-height: 1.45;
}

.pathways-section {
  margin-top: 1.5rem;
}

.pathways-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.pathways-grid article {
  padding: 1.4rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: linear-gradient(180deg, rgba(255, 251, 242, 0.95), rgba(247, 241, 228, 0.95));
  display: grid;
  gap: 1rem;
  align-content: start;
}

.pathways-grid h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.2;
}

.section-grid,
.payments-section,
.signup-section,
.contact-section {
  display: grid;
  gap: 1.4rem;
}

.section-heading {
  max-width: 42rem;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.section-heading--light,
.section-heading--light .eyebrow {
  color: rgba(255, 255, 255, 0.86);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.trust-grid,
.service-area-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.trust-grid article,
.service-area-card {
  padding: 1.35rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
}

.trust-grid h3,
.service-area-card h3 {
  margin: 0 0 0.65rem;
  font-family: "Sora", sans-serif;
  font-size: 1.15rem;
}

.trust-grid p,
.service-area-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.service-area-card--accent {
  background:
    radial-gradient(circle at top right, rgba(221, 187, 114, 0.22), transparent 35%),
    linear-gradient(180deg, rgba(255, 251, 242, 0.96), rgba(242, 235, 220, 0.96));
  display: grid;
  gap: 1rem;
  align-content: start;
}

.faq-grid article {
  padding: 1.35rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
}

.faq-grid h3 {
  margin: 0 0 0.65rem;
  font-family: "Sora", sans-serif;
  font-size: 1.15rem;
}

.faq-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.showcase,
.proof-band {
  margin-top: 1.8rem;
  padding: clamp(1.4rem, 3vw, 2rem);
  background:
    radial-gradient(circle at top right, rgba(221, 187, 114, 0.22), transparent 28%),
    linear-gradient(180deg, #203323 0%, #162218 100%);
  color: white;
}

.process {
  padding: clamp(1.6rem, 3vw, 2.2rem);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.4rem;
}

.process-steps article {
  padding: 1.3rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
}

.process-steps span {
  display: inline-flex;
  width: 2.3rem;
  height: 2.3rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--moss);
  color: white;
  font-weight: 800;
}

.process-steps h3 {
  margin: 1rem 0 0.55rem;
  font-family: "Sora", sans-serif;
}

.process-steps p {
  margin: 0;
  line-height: 1.7;
}

.contact-section {
  padding: clamp(1.6rem, 3vw, 2.2rem);
}

.payments-section {
  padding: clamp(1.6rem, 3vw, 2.2rem);
}

.signup-section {
  padding: clamp(1.6rem, 3vw, 2.2rem);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1rem;
  align-items: start;
}

.site-footer {
  width: var(--content-width);
  margin: 1.8rem auto 0;
  padding: 1.4rem 1.6rem 2rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  color: var(--muted);
}

.site-footer strong {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--ink);
  font-family: "Sora", sans-serif;
}

.site-footer p {
  margin: 0;
  line-height: 1.7;
}

.site-footer__links {
  display: grid;
  gap: 0.6rem;
  justify-items: end;
}

.mobile-action-bar {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .site-header {
    position: static;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-top: 1rem;
  }

  .site-nav {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    border-radius: 24px;
  }

  .hero,
  .contact-layout,
  .process-steps,
  .faq-grid,
  .pathways-grid,
  .trust-grid,
  .service-area-grid {
    grid-template-columns: 1fr;
  }

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

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

  .site-footer__links {
    justify-items: start;
  }
}

@media (max-width: 720px) {
  :root {
    --content-width: min(100vw - 1rem, 100%);
  }

  .site-header {
    padding: 0.8rem 0 0;
  }

  .brand-mark {
    width: auto;
    max-width: calc(100% - 4.2rem);
  }

  .brand-mark span:last-child {
    min-width: 0;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-header {
    align-items: center;
  }

  .header-cta {
    width: 100%;
    text-align: center;
  }

  .site-nav {
    display: none;
    padding: 0.9rem;
    gap: 0.8rem;
    font-size: 0.92rem;
    background: rgba(255, 253, 248, 0.96);
  }

  .site-nav a {
    flex: 1 1 calc(50% - 0.4rem);
    text-align: center;
  }

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

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

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

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

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

  .hero__content,
  .hero-card,
  .intro-strip,
  .showcase,
  .process,
  .proof-band,
  .payments-section,
  .signup-section,
  .contact-section {
    border-radius: 24px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.5rem, 13vw, 3.9rem);
  }

  .hero__actions .button {
    width: 100%;
  }

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

  .intro-strip {
    padding: 1.25rem;
  }

  .mobile-action-bar {
    position: sticky;
    bottom: 0;
    z-index: 25;
    width: min(100vw - 1rem, 100%);
    margin: 1rem auto 0;
    padding: 0.6rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.55rem;
    background: rgba(255, 253, 248, 0.96);
    border: 1px solid var(--line);
    border-radius: 22px 22px 0 0;
    box-shadow: 0 -18px 38px rgba(36, 42, 24, 0.16);
    backdrop-filter: blur(14px);
  }

  .mobile-action-bar a {
    min-height: 3rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-weight: 800;
    background: rgba(56, 92, 58, 0.08);
    border: 1px solid rgba(56, 92, 58, 0.14);
  }

  .mobile-action-bar a:first-child,
  .mobile-action-bar a:last-child {
    background: linear-gradient(135deg, var(--moss), var(--fern));
    color: white;
    border: 0;
  }
}

@media (max-width: 540px) {
  .site-nav a {
    flex-basis: 100%;
  }

  .hero__content {
    padding: 1.4rem;
  }

  .hero-card {
    min-height: 11rem;
  }

  .hero-card--vision {
    min-height: 16rem;
  }
}
