  :root {
    --oat: #f6f0e4;
    --soil: #3f3023;
    --soil-soft: #6d5c4a;
    --hedge: #365343;
    --hedge-deep: #22362c;
    --sage: #d8e1d3;
    --moss: #93ab8e;
    --straw: #d6ad66;
    --straw-deep: #b68d49;
    --line: rgba(63, 48, 35, 0.14);
    --panel: rgba(255, 255, 255, 0.72);
    --shadow: 0 18px 45px rgba(34, 54, 44, 0.08);
    --radius: 22px;
    --radius-sm: 14px;
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  body {
    font-family: "Avenir Next", "Helvetica Neue", "Trebuchet MS", sans-serif;
    color: var(--soil);
    background:
      radial-gradient(circle at top left, rgba(214, 173, 102, 0.16), transparent 28rem),
      linear-gradient(180deg, #fbf7ef 0%, var(--oat) 46%, #efe7d8 100%);
    line-height: 1.6;
    font-size: 17px;
  }

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

  a {
    color: var(--hedge);
    text-decoration-thickness: 1.5px;
    text-underline-offset: 0.18em;
  }

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

  h1, h2, h3 {
    font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
    line-height: 1.05;
    letter-spacing: -0.02em;
  }

  h1 {
    font-size: clamp(2.7rem, 7vw, 5.4rem);
    max-width: 11ch;
  }

  h2 {
    font-size: clamp(2rem, 4vw, 3.15rem);
    margin-bottom: 1rem;
  }

  h3 {
    font-size: 1.25rem;
    margin-bottom: 0.6rem;
  }

  p { margin-bottom: 1rem; }

  .container {
    width: min(1160px, calc(100% - 2rem));
    margin: 0 auto;
  }

  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.45rem 0.9rem;
    margin-bottom: 0.85rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(54, 83, 67, 0.14);
    color: var(--hedge);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .eyebrow::before {
    content: "";
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: var(--straw);
  }

  .btn, button {
    font: inherit;
  }

  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    min-height: 3.3rem;
    padding: 0.85rem 1.35rem;
    border-radius: 999px;
    border: 1px solid transparent;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
  }

  .btn:hover { transform: translateY(-1px); }

  .btn-primary {
    background: var(--hedge);
    color: #fff;
    box-shadow: 0 12px 28px rgba(34, 54, 44, 0.18);
  }

  .btn-primary:hover { color: #fff; background: var(--hedge-deep); }

  .btn-secondary {
    background: rgba(255, 255, 255, 0.72);
    color: var(--hedge-deep);
    border-color: rgba(54, 83, 67, 0.15);
  }

  .btn-secondary:hover {
    background: #fff;
    color: var(--hedge-deep);
    border-color: rgba(54, 83, 67, 0.24);
  }

  nav {
    position: sticky;
    top: 0;
    z-index: 40;
    backdrop-filter: blur(14px);
    background: rgba(248, 243, 233, 0.78);
    border-bottom: 1px solid transparent;
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
  }

  .nav-scrolled {
    border-color: var(--line);
    box-shadow: 0 8px 24px rgba(34, 54, 44, 0.07);
  }

  .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.95rem 0;
  }

  .brand {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    color: var(--hedge-deep);
    text-decoration: none;
    font-weight: 800;
    letter-spacing: 0.04em;
  }

  .brand-mark {
    width: 2.15rem;
    height: 2.15rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--straw), #efd29a);
    color: var(--hedge-deep);
    font-family: "Iowan Old Style", Georgia, serif;
    font-size: 1.05rem;
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .nav-links a {
    text-decoration: none;
    color: var(--soil-soft);
    font-weight: 600;
    font-size: 0.95rem;
  }

  .nav-links a:hover { color: var(--hedge-deep); }

  .nav-toggle {
    display: none;
    width: 3.1rem;
    height: 3.1rem;
    padding: 0;
    border: 1px solid rgba(54, 83, 67, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    color: var(--hedge-deep);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.28rem;
    cursor: pointer;
  }

  .nav-toggle span {
    display: block;
    width: 1.2rem;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
  }

  .hero {
    padding: 4.7rem 0 3.6rem;
  }

  .hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2rem;
    align-items: center;
  }

  .hero-copy p {
    max-width: 61ch;
    color: var(--soil-soft);
    font-size: clamp(1.08rem, 2vw, 1.24rem);
  }

  .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin: 1.7rem 0 1.25rem;
  }

  .hero-trust {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
    margin-top: 1.8rem;
  }

  .stat {
    padding: 1rem 1rem 1.1rem;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.62);
    border: 1px solid rgba(54, 83, 67, 0.1);
  }

  .stat strong {
    display: block;
    font-size: 1.45rem;
    margin-bottom: 0.2rem;
    color: var(--hedge-deep);
  }

  .stat span {
    color: var(--soil-soft);
    font-size: 0.92rem;
  }

  .hero-panel {
    padding: 1.4rem;
    border-radius: calc(var(--radius) + 4px);
    background: linear-gradient(180deg, rgba(255,255,255,0.74), rgba(232,239,228,0.92));
    border: 1px solid rgba(54, 83, 67, 0.12);
    box-shadow: var(--shadow);
  }

  .hero-image {
    border-radius: calc(var(--radius) - 2px);
    overflow: hidden;
    aspect-ratio: 4 / 4.3;
    margin-bottom: 1rem;
  }

  .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .hero-panel h3 {
    margin-bottom: 0.7rem;
    color: var(--hedge-deep);
  }

  .hero-panel ul {
    list-style: none;
    display: grid;
    gap: 0.8rem;
  }

  .hero-panel li {
    padding-left: 1.3rem;
    position: relative;
    color: var(--soil-soft);
  }

  .hero-panel li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 0.46rem;
    height: 0.46rem;
    border-radius: 50%;
    background: var(--straw);
  }

  section {
    padding: 4.7rem 0;
    position: relative;
  }

  .section-head {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    align-items: end;
    margin-bottom: 1.8rem;
  }

  .section-head p,
  .lede {
    max-width: 62ch;
    color: var(--soil-soft);
    font-size: 1.05rem;
  }

  .panel {
    padding: 1.6rem;
    border-radius: var(--radius);
    background: var(--panel);
    border: 1px solid rgba(54, 83, 67, 0.1);
    box-shadow: var(--shadow);
  }

  .what-grid,
  .audience-grid,
  .proof-grid,
  .people-grid,
  .path-grid {
    display: grid;
    gap: 1.25rem;
  }

  .what-grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: start;
  }

  .card-stack {
    display: grid;
    gap: 1rem;
  }

  .mini-card {
    padding: 1.2rem;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(54, 83, 67, 0.12);
  }

  .mini-card p:last-child,
  .person p:last-child,
  .proof-card p:last-child,
  .path-card p:last-child {
    margin-bottom: 0;
  }

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

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

  .audience-card,
  .proof-card,
  .path-card,
  .person {
    padding: 1.45rem;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(54, 83, 67, 0.11);
    box-shadow: var(--shadow);
  }

  .audience-card strong,
  .proof-card strong,
  .path-card strong {
    display: block;
    margin-bottom: 0.55rem;
    color: var(--hedge-deep);
  }

  .person {
    display: flex;
    flex-direction: column;
  }

  .person > p:last-of-type {
    margin-bottom: 0;
  }

  .person-top {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1rem;
  }

  .avatar {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 25px rgba(34, 54, 44, 0.12);
  }

  .avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .role {
    color: var(--straw-deep);
    text-transform: uppercase;
    letter-spacing: 0.09em;
    font-size: 0.82rem;
    font-weight: 700;
    margin-top: 0.25rem;
  }

  .person-links {
    display: flex;
    gap: 0.9rem;
    flex-wrap: wrap;
    padding-top: 1rem;
    justify-content: center;
  }

  .person-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.6rem;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    background: rgba(214, 225, 211, 0.6);
    text-decoration: none;
    font-weight: 700;
  }

  .person .partner-logo {
    min-height: 84px;
    margin-top: auto;
    margin-bottom: 0;
    padding: 1rem 1.2rem;
  }

  .person .partner-logo a {
    display: flex;
    width: 100%;
    min-height: 52px;
    align-items: center;
    justify-content: center;
  }

  .person .partner-logo img {
    max-height: 52px;
  }

  .quote-band {
    padding: 2.2rem;
    border-radius: calc(var(--radius) + 2px);
    background: linear-gradient(135deg, var(--hedge), var(--hedge-deep));
    color: #fff;
  }

  .quote-band p {
    max-width: 48ch;
    font-size: clamp(1.2rem, 2vw, 1.45rem);
    margin-bottom: 0;
  }

  .register-wrap {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 1.4rem;
    align-items: start;
  }

  .register-note {
    padding: 1.5rem;
    border-radius: var(--radius);
    background: linear-gradient(180deg, rgba(214,225,211,0.68), rgba(255,255,255,0.86));
    border: 1px solid rgba(54, 83, 67, 0.12);
  }

  .register-note ul {
    list-style: none;
    display: grid;
    gap: 0.8rem;
    margin-top: 1rem;
  }

  .register-note li {
    position: relative;
    padding-left: 1.3rem;
    color: var(--soil-soft);
  }

  .register-note li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.62rem;
    width: 0.44rem;
    height: 0.44rem;
    border-radius: 50%;
    background: var(--hedge);
  }

  .form-card {
    padding: 1.55rem;
    border-radius: calc(var(--radius) + 2px);
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(54, 83, 67, 0.12);
    box-shadow: var(--shadow);
  }

  .form-status {
    margin-bottom: 1rem;
    padding: 0.9rem 1rem;
    border-radius: var(--radius-sm);
    background: #f7f0df;
    color: var(--soil-soft);
    border: 1px solid rgba(182, 141, 73, 0.22);
    font-size: 0.94rem;
  }

  .form-status-success {
    background: rgba(214, 225, 211, 0.68);
    border-color: rgba(54, 83, 67, 0.2);
    color: var(--hedge-deep);
  }

  .form-status-error {
    background: rgba(255, 238, 234, 0.92);
    border-color: rgba(162, 64, 35, 0.18);
    color: #7e2d18;
  }

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

  .field,
  .field-wide {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
  }

  .field-wide { grid-column: 1 / -1; }

  .field[hidden],
  .field-wide[hidden] {
    display: none;
  }

  .field-note {
    margin-top: 0.15rem;
    color: var(--soil-soft);
    font-size: 0.88rem;
  }

  .field-group {
    grid-column: 1 / -1;
    display: grid;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 18px;
    background: rgba(246, 240, 228, 0.72);
    border: 1px solid rgba(54, 83, 67, 0.12);
  }

  .field-group[hidden] {
    display: none;
  }

  .choice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 0.7rem;
  }

  .choice {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    padding: 0.85rem 0.9rem;
    border-radius: 14px;
    background: #fff;
    border: 1px solid rgba(54, 83, 67, 0.14);
  }

  .choice input {
    width: auto;
    margin-top: 0.15rem;
    accent-color: var(--hedge);
  }

  .choice span {
    font-size: 0.95rem;
    line-height: 1.4;
  }

  .choice.is-hidden {
    display: none;
  }

  .search-select {
    display: grid;
    gap: 0.75rem;
  }

  .search-select-panel {
    max-height: 16rem;
    overflow: auto;
    padding: 0.35rem;
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(54, 83, 67, 0.14);
  }

  .search-select-panel .choice-grid {
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  }

  .search-select-empty {
    display: none;
    padding: 0.8rem;
    color: var(--soil-soft);
    font-size: 0.9rem;
  }

  .search-select-empty.is-visible {
    display: block;
  }

  .turnstile-wrap {
    display: flex;
    justify-content: flex-start;
    margin-top: 0.25rem;
  }

  label {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--hedge-deep);
  }

  input,
  select,
  textarea {
    width: 100%;
    border: 1px solid rgba(54, 83, 67, 0.18);
    border-radius: 14px;
    background: #fff;
    padding: 0.9rem 0.95rem;
    font: inherit;
    color: var(--soil);
  }

  input:focus,
  select:focus,
  textarea:focus {
    outline: 2px solid rgba(54, 83, 67, 0.15);
    border-color: rgba(54, 83, 67, 0.34);
  }

  textarea {
    min-height: 8rem;
    resize: vertical;
  }

  .form-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
  }

  .fine-print {
    color: var(--soil-soft);
    font-size: 0.9rem;
  }

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

  .partner-logo {
    min-height: 126px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem;
    border-radius: var(--radius);
    background: rgba(255,255,255,0.76);
    border: 1px solid rgba(54, 83, 67, 0.11);
  }

  .partner-logo img {
    max-height: 64px;
    width: auto;
    object-fit: contain;
  }

  footer {
    padding: 2.8rem 0 4rem;
    color: var(--soil-soft);
  }

  .footer-wrap {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
    padding-top: 1.6rem;
    border-top: 1px solid var(--line);
  }

  .footer-wrap strong {
    color: var(--hedge-deep);
  }

  @media (max-width: 1024px) {
    .hero-grid,
    .what-grid,
    .register-wrap,
    .audience-grid,
    .proof-grid,
    .people-grid,
    .path-grid,
    .partner-strip {
      grid-template-columns: 1fr;
    }

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

  @media (max-width: 760px) {
    body { font-size: 16px; }
    .nav-inner,
    .section-head,
    .person-top,
    .footer-wrap {
      align-items: start;
    }

    .section-head,
    .footer-wrap {
      flex-direction: column;
    }

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

    .nav-inner {
      flex-direction: row;
      align-items: center;
      flex-wrap: wrap;
    }

    .hero {
      padding-top: 3.2rem;
      padding-bottom: 2.8rem;
    }

    section { padding: 3.4rem 0; }

    .hero-actions,
    .form-actions,
    .nav-links {
      width: 100%;
    }

    .nav-toggle {
      display: inline-flex;
      margin-left: auto;
    }

    .nav-links {
      display: none;
      justify-content: flex-start;
      gap: 0.8rem;
      flex-direction: column;
      align-items: stretch;
      margin-top: 0.9rem;
      padding: 1rem;
      border-radius: 18px;
      background: rgba(255, 255, 255, 0.78);
      border: 1px solid rgba(54, 83, 67, 0.12);
    }

    .nav-links.nav-links-open {
      display: flex;
    }

    .nav-links a {
      width: 100%;
    }

    .nav-links .btn {
      width: 100%;
    }

    .btn { width: 100%; }
  }
