:root {
  --forest: #1e3d32;
  --forest-deep: #152a23;
  --forest-ink: #0f1c18;
  --sand: #f6f1e8;
  --sand-deep: #efe6d6;
  --paper: #fffdf8;
  --charcoal: #2a2622;
  --ink: #1c1916;
  --muted: #5c574f;
  --line: rgba(30, 61, 50, 0.12);
  --shadow: 0 18px 40px rgba(21, 42, 35, 0.12);
  --radius: 22px;
  --header-h: 76px;
  --serif: "Fraunces", "Iowan Old Style", "Palatino Linotype", serif;
  --sans: "DM Sans", "Helvetica Neue", sans-serif;
}

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

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--sand);
}

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

a {
  color: var(--forest);
}

a:hover {
  color: var(--forest-deep);
}

h1,
h2,
h3,
.brand-name,
.footer-name {
  font-family: var(--serif);
  font-weight: 560;
  letter-spacing: -0.03em;
  color: var(--ink);
}

h1,
h2,
h3,
p,
ul,
ol {
  margin: 0;
}

h1 {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 0.98;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.15rem);
  line-height: 1.08;
  margin: 0.2em 0 0.45em;
}

h3 {
  font-size: 1.28rem;
  line-height: 1.25;
  margin-bottom: 0.4em;
}

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

.skip-link {
  position: absolute;
  left: 12px;
  top: -40px;
  z-index: 40;
  padding: 8px 12px;
  background: var(--forest);
  color: var(--sand);
  border-radius: 8px;
}

.skip-link:focus {
  top: 12px;
  color: var(--sand);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(246, 241, 232, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
}

.brand:hover {
  color: var(--ink);
}

.brand-mark {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--forest);
}

.brand-name {
  font-size: 1.12rem;
  letter-spacing: -0.02em;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.nav-toggle-bars,
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--forest);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle-bars {
  margin: 0 auto;
  position: relative;
}

.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle-bars::before {
  top: -6px;
}

.nav-toggle-bars::after {
  top: 6px;
}

.site-header.is-open .nav-toggle-bars {
  background: transparent;
}

.site-header.is-open .nav-toggle-bars::before {
  top: 0;
  transform: rotate(45deg);
}

.site-header.is-open .nav-toggle-bars::after {
  top: 0;
  transform: rotate(-45deg);
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 6px 18px;
  list-style: none;
  padding: 0;
}

.nav-list a {
  text-decoration: none;
  color: var(--charcoal);
  font-size: 0.92rem;
  font-weight: 500;
}

.nav-list a:hover,
.nav-list a:focus-visible {
  color: var(--forest);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--forest);
  color: var(--sand) !important;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: var(--forest-deep);
  color: var(--sand) !important;
}

.hero {
  padding-top: clamp(48px, 7vw, 88px);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 48px;
  align-items: start;
  padding-bottom: clamp(40px, 6vw, 72px);
}

.eyebrow,
.journey-kicker,
.why-index,
.note-kicker {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--forest);
}

.lede,
.section-lede {
  max-width: 38rem;
  color: var(--muted);
  font-size: 1.12rem;
}

.lede {
  margin: 1.1rem 0 1.6rem;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.98rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  background: none;
  appearance: none;
}

.btn-primary {
  background: var(--forest);
  color: var(--sand);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--forest-deep);
  color: var(--sand);
}

.btn-ghost {
  background: transparent;
  border-color: var(--forest);
  color: var(--forest);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  background: var(--paper);
  color: var(--forest-deep);
}

.hero-note {
  margin-top: 2rem;
  max-width: 36rem;
}

.note-kicker {
  margin-bottom: 0.45rem;
}

.hero-note p:last-child {
  color: var(--muted);
  font-size: 0.98rem;
}

.journey-card {
  background: var(--forest-deep);
  color: #e8efe9;
  border-radius: 28px;
  padding: 32px 32px 28px;
  box-shadow: var(--shadow);
}

.journey-kicker {
  color: #c5d4c8;
  margin-bottom: 1.4rem;
}

.journey-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 14px;
}

.journey-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.15rem;
  font-weight: 500;
}

.journey-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d7e3d8;
  box-shadow: 0 0 0 6px rgba(215, 227, 216, 0.12);
}

.journey-flow {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(232, 239, 233, 0.16);
  color: #c5d4c8;
  font-size: 0.95rem;
}

.hero-band {
  background: var(--forest);
  color: #e7efe9;
}

.hero-band-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
  font-size: 0.98rem;
}

.hero-band-aside {
  color: #c5d4c8;
  text-align: right;
  max-width: 22rem;
}

.section {
  padding: clamp(64px, 9vw, 104px) 0;
}

.section-sand {
  background: var(--sand-deep);
}

.section-forest {
  background: var(--forest-deep);
  color: #e8efe9;
}

.section-forest h2,
.section-cta h2 {
  color: inherit;
}

.eyebrow-on-dark {
  color: #c5d4c8;
}

.measure-on-dark,
.section-forest .section-lede {
  color: #c5d4c8;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 48px;
  align-items: start;
}

.section-lede {
  margin-bottom: 2rem;
}

.measure {
  max-width: 40rem;
}

.stack-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 22px;
}

.stack-list p,
.path-card p,
.why-card p,
.faq-list p {
  color: var(--muted);
}

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

.path-card,
.why-card,
.not-box,
.cta-panel {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 28px 26px 26px;
  box-shadow: 0 1px 0 var(--line);
}

.path-badge {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--sand);
  display: grid;
  place-items: center;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.fine-print {
  margin-top: 22px;
  color: var(--muted);
  font-size: 0.92rem;
}

.stack-steps {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 14px;
  margin-top: 8px;
}

.stack-steps li {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  padding: 18px 20px;
  border-radius: 16px;
  background: rgba(246, 241, 232, 0.06);
}

.step-name {
  font-family: var(--serif);
  font-size: 1.2rem;
}

.step-copy {
  color: #c5d4c8;
}

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

.why-card-lead {
  grid-column: 1 / -1;
}

.why-index {
  margin-bottom: 10px;
}

.not-box {
  margin-top: 22px;
}

.not-box ul {
  padding-left: 1.15rem;
  color: var(--muted);
}

.not-box li + li {
  margin-top: 0.35rem;
}

.faq-wrap {
  max-width: 760px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  background: var(--paper);
  border-radius: 16px;
  padding: 6px 20px 6px;
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  padding: 14px 0;
}

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

.faq-list details p {
  padding-bottom: 16px;
}

.section-cta {
  padding-top: 0;
}

.cta-panel {
  padding: clamp(36px, 6vw, 56px);
  background: var(--forest);
  color: #e8efe9;
}

.section-cta .eyebrow,
.section-cta .section-lede,
.section-cta .fine-print {
  color: #c5d4c8;
}

.section-cta .btn-primary {
  background: var(--sand);
  color: var(--forest-deep);
  margin-top: 8px;
}

.section-cta .btn-primary:hover,
.section-cta .btn-primary:focus-visible {
  background: var(--paper);
  color: var(--forest-ink);
}

.contact-actions {
  margin: 8px 0 4px;
}

.btn-ghost-on-dark {
  background: transparent;
  border-color: #d7e3d8;
  color: #e8efe9;
}

.btn-ghost-on-dark:hover,
.btn-ghost-on-dark:focus-visible {
  background: rgba(246, 241, 232, 0.08);
  color: var(--sand);
}

.text-cta {
  display: inline;
  padding: 0;
  border: 0;
  background: none;
  color: var(--forest);
  font: inherit;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
}

.text-cta:hover,
.text-cta:focus-visible {
  color: var(--forest-deep);
}

.contact-fine {
  max-width: 40rem;
}

.site-footer {
  background: var(--forest-ink);
  color: #c5d4c8;
  padding: 72px 0 48px;
}

.footer-name {
  font-size: 1.7rem;
  color: #f6f1e8;
  margin-bottom: 12px;
}

.footer-brand {
  display: grid;
  gap: 8px;
  max-width: 42rem;
}

.footer-brand a,
.footer-nav a {
  color: #e8efe9;
  text-decoration: none;
}

.footer-brand a:hover,
.footer-nav a:hover {
  color: var(--sand);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  margin: 28px 0 0;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(232, 239, 233, 0.14);
}

.footer-legal {
  display: grid;
  gap: 12px;
  padding-top: 22px;
  font-size: 0.86rem;
  color: #9aaba0;
}

@media (max-width: 900px) {
  .hero-grid,
  .split,
  .path-grid,
  .why-grid,
  .stack-steps li,
  .hero-band-inner {
    grid-template-columns: 1fr;
  }

  .hero-band-inner {
    display: grid;
  }

  .hero-band-aside {
    text-align: left;
  }
}

@media (max-width: 780px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--sand);
    border-bottom: 1px solid var(--line);
    padding: 8px 20px 20px;
  }

  .site-header.is-open .site-nav {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-list a {
    display: block;
    padding: 10px 0;
  }

  .nav-cta {
    justify-content: center;
    margin-top: 6px;
  }
}

@media (max-width: 600px) {
  .wrap {
    width: min(1120px, calc(100% - 28px));
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .path-card,
  .why-card,
  .cta-panel,
  .journey-card {
    padding: 24px 20px;
  }
}

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

  .nav-toggle-bars,
  .nav-toggle-bars::before,
  .nav-toggle-bars::after {
    transition: none;
  }
}

.desk-dialog {
  width: min(520px, calc(100vw - 24px));
  max-height: min(920px, calc(100vh - 24px));
  margin: auto;
  padding: 0;
  border: 0;
  border-radius: 28px;
  background: transparent;
  color: inherit;
}

.desk-dialog::backdrop {
  background: rgba(15, 28, 24, 0.52);
}

.desk-shell {
  display: flex;
  flex-direction: column;
  max-height: min(920px, calc(100vh - 24px));
  overflow: hidden;
  background: var(--paper);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.desk-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 26px 26px 18px;
  background: var(--forest-deep);
  color: #e8efe9;
}

.desk-head h2 {
  color: #f6f1e8;
  font-size: clamp(1.55rem, 3vw, 1.9rem);
  margin: 0.15em 0 0.35em;
}

.desk-tagline {
  color: #c5d4c8;
  font-size: 0.98rem;
}

.desk-close {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: rgba(246, 241, 232, 0.1);
  color: var(--sand);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.desk-close:hover,
.desk-close:focus-visible {
  background: rgba(246, 241, 232, 0.2);
}

.desk-rail {
  margin: 0;
  padding: 10px 26px;
  background: var(--forest);
  color: #c5d4c8;
  font-size: 0.82rem;
}

.desk-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 22px 26px 26px;
  overflow: auto;
}

.desk-thread {
  display: grid;
  gap: 10px;
}

.desk-bubble {
  max-width: 36rem;
  padding: 14px 16px;
  border-radius: 18px 18px 18px 6px;
  background: var(--sand-deep);
}

.desk-bubble p {
  color: var(--charcoal);
  font-size: 0.98rem;
}

.desk-log {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
  justify-items: end;
}

.desk-log li {
  max-width: 92%;
  padding: 10px 14px;
  border-radius: 18px 18px 6px 18px;
  background: var(--forest);
  color: var(--sand);
  font-size: 0.92rem;
}

.desk-form,
.desk-done {
  display: grid;
  gap: 14px;
}

.desk-progress {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--forest);
}

.desk-step {
  margin: 0;
  padding: 0;
  border: 0;
  display: grid;
  gap: 12px;
}

.desk-step[hidden] {
  display: none;
}

.desk-prompt {
  padding: 0;
  font-family: var(--serif);
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

.desk-hint {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.desk-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.desk-chip {
  cursor: pointer;
}

.desk-chip input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.desk-chip span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: var(--sand);
  color: var(--forest);
  font-weight: 600;
  font-size: 0.92rem;
}

.desk-chip input:focus-visible + span {
  outline: 2px solid var(--forest);
  outline-offset: 2px;
}

.desk-chip input:checked + span {
  background: var(--forest);
  border-color: var(--forest);
  color: var(--sand);
}

.desk-field {
  display: grid;
  gap: 6px;
}

.desk-field span {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--forest);
}

.desk-field em {
  font-style: normal;
  font-weight: 500;
  color: var(--muted);
}

.desk-field input,
.desk-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  background: var(--sand);
  color: var(--ink);
  font: inherit;
}

.desk-field input:focus,
.desk-field textarea:focus {
  outline: 2px solid var(--forest);
  outline-offset: 1px;
  background: #fff;
}

.desk-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--charcoal);
  font-size: 0.95rem;
}

.desk-consent input {
  margin-top: 4px;
  accent-color: var(--forest);
}

.desk-status {
  min-height: 1.3em;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.desk-status.is-error {
  color: #7a2e1b;
}

.desk-status a {
  color: inherit;
}

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

.desk-actions .btn {
  min-height: 46px;
}

.desk-done .btn {
  justify-self: start;
}

@media (max-width: 600px) {
  .desk-dialog {
    width: calc(100vw - 16px);
    max-height: calc(100vh - 16px);
    border-radius: 20px;
  }

  .desk-shell {
    max-height: calc(100vh - 16px);
    border-radius: 20px;
  }

  .desk-head,
  .desk-body {
    padding-left: 18px;
    padding-right: 18px;
  }

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