    :root {
      --ink: #1a2138;
      --ink-soft: #4b5473;
      --paper: #f8f9fc;
      --mist: #e9edfb;
      --forest: #4e73df;
      --forest-deep: #224abe;
      --leaf: #6f8ef2;
      --ochre: #e0a438;
      --line: #dbe0f0;
      --radius: 14px;
      --arch: 999px 999px 14px 14px;
    }

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

    html { scroll-behavior: smooth; }

    body {
      font-family: "Public Sans", system-ui, sans-serif;
      background: var(--paper);
      color: var(--ink);
      line-height: 1.65;
      -webkit-font-smoothing: antialiased;
    }

    h1, h2, h3, h4 {
      font-family: "Fraunces", Georgia, serif;
      font-weight: 600;
      line-height: 1.15;
      color: var(--ink);
    }

    a { color: var(--forest); text-decoration: none; }
    a:focus-visible, button:focus-visible {
      outline: 3px solid var(--ochre);
      outline-offset: 2px;
      border-radius: 4px;
    }

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

    .container {
      width: min(1140px, 92%);
      margin-inline: auto;
    }

    section { padding: 88px 0; }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--forest);
    }
    .eyebrow::before {
      content: "";
      width: 26px; height: 2px;
      background: var(--ochre);
    }
    .section-head { max-width: 640px; margin-bottom: 48px; }
    .section-head h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); margin-top: 10px; }
    .section-head p { color: var(--ink-soft); margin-top: 12px; }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(250, 251, 247, 0.88);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid var(--line);
    }
    .nav-wrap {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 14px 0;
    }
    .brand {
      display: flex;
      align-items: center;
      gap: 11px;
      color: var(--ink);
      font-weight: 700;
    }
    .brand-mark {
      width: 40px; height: 40px;
      flex: 0 0 40px;
      display: grid;
      place-items: center;
      background: var(--forest);
      color: #fff;
      font-size: 1.15rem;
      border-radius: 999px 999px 6px 6px; 
    }
    .brand-text { font-size: 0.95rem; line-height: 1.25; }
    .brand-text small {
      display: block;
      font-weight: 500;
      color: var(--ink-soft);
      font-size: 0.72rem;
      letter-spacing: 0.06em;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 26px;
      list-style: none;
    }
    .nav-links a {
      color: var(--ink-soft);
      font-weight: 600;
      font-size: 0.92rem;
      transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--forest); }

    .nav-cta { display: flex; align-items: center; gap: 10px; }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-weight: 700;
      font-size: 0.92rem;
      padding: 11px 22px;
      border-radius: 999px;
      border: 2px solid transparent;
      cursor: pointer;
      transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
    }
    .btn:active { transform: translateY(1px); }
    .btn-solid { background: var(--forest); color: #fff; }
    .btn-solid:hover { background: var(--forest-deep); color: #fff; }
    .btn-line { border-color: var(--forest); color: var(--forest); background: transparent; }
    .btn-line:hover { background: var(--mist); }
    .btn-gold { background: var(--ochre); color: var(--ink); }
    .btn-gold:hover { background: #eab54e; }

    .nav-toggle {
      display: none;
      background: none;
      border: 0;
      font-size: 1.7rem;
      color: var(--ink);
      cursor: pointer;
    }

    .hero { padding: 72px 0 64px; overflow: hidden; }
    .hero-grid {
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      gap: 56px;
      align-items: center;
    }
    .hero h1 {
      font-size: clamp(2.1rem, 4.6vw, 3.3rem);
      font-weight: 700;
      margin: 16px 0 18px;
    }
    .hero h1 em {
      font-style: italic;
      color: var(--forest);
    }
    .hero p.lead {
      color: var(--ink-soft);
      font-size: 1.06rem;
      max-width: 34rem;
    }
    .hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
    .hero-note {
      display: flex;
      align-items: center;
      gap: 9px;
      margin-top: 22px;
      font-size: 0.86rem;
      color: var(--ink-soft);
    }
    .hero-note i { color: var(--forest); font-size: 1rem; }

    .hero-figure { position: relative; justify-self: center; }
    .hero-figure img {
      width: min(420px, 100%);
      aspect-ratio: 4 / 5;
      object-fit: cover;
      border-radius: var(--arch);
      position: relative;
      z-index: 1;
    }
    .hero-figure::before {
      content: "";
      position: absolute;
      inset: 0;
      transform: translate(16px, 16px);
      border: 2px solid var(--ochre);
      border-radius: var(--arch);
    }
    .hero-badge {
      position: absolute;
      z-index: 2;
      left: -14px;
      bottom: 34px;
      background: #fff;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      box-shadow: 0 12px 30px rgba(26, 33, 56, 0.12);
      padding: 12px 16px;
      display: flex;
      align-items: center;
      gap: 11px;
      font-size: 0.85rem;
      font-weight: 600;
    }
    .hero-badge i {
      font-size: 1.3rem;
      color: var(--forest);
    }
    .hero-badge small { display: block; font-weight: 500; color: var(--ink-soft); }

    .wards {
      background: var(--forest-deep);
      color: #dde4fa;
      padding: 14px 0;
      overflow: hidden;
      white-space: nowrap;
    }
    .wards-track {
      display: inline-flex;
      gap: 0;
      animation: ward-scroll 40s linear infinite;
    }
    .wards span {
      font-size: 0.84rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 0 18px;
    }
    .wards i {
      color: var(--ochre);
      font-size: 0.6rem;
      vertical-align: middle;
    }
    @keyframes ward-scroll {
      from { transform: translateX(0); }
      to { transform: translateX(-50%); }
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 56px;
      align-items: start;
    }
    .about-copy p { color: var(--ink-soft); margin-bottom: 16px; }
    .pillars { display: grid; gap: 14px; }
    .pillar {
      display: flex;
      gap: 16px;
      background: #fff;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 20px 22px;
    }
    .pillar i {
      flex: 0 0 auto;
      width: 44px; height: 44px;
      display: grid;
      place-items: center;
      font-size: 1.15rem;
      color: var(--forest);
      background: var(--mist);
      border-radius: 999px 999px 8px 8px;
    }
    .pillar h4 { font-size: 1.06rem; margin-bottom: 4px; }
    .pillar p { color: var(--ink-soft); font-size: 0.93rem; }

    .goals { background: var(--mist); }
    .goals-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    .goal-card {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 28px 26px;
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .goal-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 16px 34px rgba(26, 33, 56, 0.1);
    }
    .goal-card i {
      display: inline-grid;
      place-items: center;
      width: 50px; height: 50px;
      font-size: 1.35rem;
      color: #fff;
      background: var(--forest);
      border-radius: 999px 999px 9px 9px;
      margin-bottom: 18px;
    }
    .goal-card:nth-child(even) i { background: var(--ochre); color: var(--ink); }
    .goal-card h3 { font-size: 1.13rem; margin-bottom: 8px; }
    .goal-card p { color: var(--ink-soft); font-size: 0.94rem; }

    /* ---------- How it works ---------- */
    .steps-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      counter-reset: step;
    }
    .step {
      position: relative;
      background: #fff;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 26px 22px 24px;
    }
    .step::before {
      counter-increment: step;
      content: counter(step, decimal-leading-zero);
      font-family: "Fraunces", Georgia, serif;
      font-size: 1rem;
      font-weight: 700;
      color: var(--ochre);
      display: block;
      margin-bottom: 10px;
    }
    .step i { font-size: 1.4rem; color: var(--forest); display: block; margin-bottom: 12px; }
    .step h4 { font-size: 1.02rem; margin-bottom: 6px; }
    .step p { font-size: 0.9rem; color: var(--ink-soft); }

    /* ---------- Audience ---------- */
    .audience { background: var(--mist); }
    .audience-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    .audience-card {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: var(--arch);
      padding: 44px 26px 30px;
      text-align: center;
    }
    .audience-card i {
      display: inline-grid;
      place-items: center;
      width: 62px; height: 62px;
      font-size: 1.6rem;
      color: var(--forest);
      background: var(--mist);
      border-radius: 50%;
      margin-bottom: 18px;
    }
    .audience-card h3 { font-size: 1.13rem; margin-bottom: 8px; }
    .audience-card p { color: var(--ink-soft); font-size: 0.94rem; }

    /* ---------- CTA band ---------- */
    .cta-band {
      background: var(--forest-deep);
      border-radius: 22px;
      padding: 56px 48px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 32px;
      flex-wrap: wrap;
    }
    .cta-band h2 { color: #fff; font-size: clamp(1.5rem, 3vw, 2rem); max-width: 26ch; }
    .cta-band p { color: #ccd7f5; margin-top: 10px; max-width: 44ch; }

    /* ---------- Contact ---------- */
    .contact-grid {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 28px;
      align-items: stretch;
    }
    .contact-list { display: grid; gap: 14px; align-content: start; }
    .contact-item {
      display: flex;
      gap: 16px;
      background: #fff;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 20px 22px;
    }
    .contact-item i {
      flex: 0 0 auto;
      width: 44px; height: 44px;
      display: grid;
      place-items: center;
      font-size: 1.1rem;
      color: var(--forest);
      background: var(--mist);
      border-radius: 999px 999px 8px 8px;
    }
    .contact-item h4 { font-size: 1rem; margin-bottom: 2px; }
    .contact-item p { color: var(--ink-soft); font-size: 0.92rem; word-break: break-word; }
    .map-frame {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      overflow: hidden;
      min-height: 320px;
    }
    .map-frame iframe { width: 100%; height: 100%; min-height: 320px; border: 0; }

    /* ---------- Footer ---------- */
    .site-footer {
      background: var(--ink);
      color: #b7bed6;
      padding: 60px 0 30px;
      margin-top: 88px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr;
      gap: 40px;
    }
    .site-footer h4 {
      color: #fff;
      font-size: 1.02rem;
      margin-bottom: 14px;
    }
    .site-footer p { font-size: 0.92rem; margin-bottom: 8px; }
    .site-footer ul { list-style: none; display: grid; gap: 8px; }
    .site-footer li, .site-footer a { color: #b7bed6; font-size: 0.92rem; }
    .site-footer a:hover { color: var(--ochre); }
    .footer-brand {
      display: flex;
      align-items: center;
      gap: 10px;
      color: #fff;
      font-weight: 700;
      margin-bottom: 14px;
    }
    .footer-brand .brand-mark { background: var(--leaf); }
    .social-links { display: flex; gap: 10px; margin-top: 18px; }
    .social-links a {
      width: 38px; height: 38px;
      display: grid;
      place-items: center;
      border: 1px solid #39456b;
      border-radius: 50%;
      color: #dde3f7;
      transition: background 0.2s, border-color 0.2s;
    }
    .social-links a:hover { background: var(--forest); border-color: var(--forest); color: #fff; }
    .footer-bottom {
      border-top: 1px solid #2c3556;
      margin-top: 44px;
      padding-top: 22px;
      font-size: 0.85rem;
      display: flex;
      justify-content: space-between;
      gap: 12px;
      flex-wrap: wrap;
    }

    /* ---------- Scroll top ---------- */
    .scroll-top {
      position: fixed;
      right: 20px;
      bottom: 20px;
      width: 44px; height: 44px;
      display: grid;
      place-items: center;
      background: var(--forest);
      color: #fff;
      border-radius: 50%;
      font-size: 1.3rem;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.25s;
      z-index: 40;
    }
    .scroll-top.show { opacity: 1; pointer-events: auto; }
    .scroll-top:hover { background: var(--forest-deep); color: #fff; }

    /* ---------- Reveal on scroll ---------- */
    .reveal {
      opacity: 0;
      transform: translateY(22px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .reveal.in { opacity: 1; transform: none; }

    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      .wards-track { animation: none; }
      .reveal { opacity: 1; transform: none; transition: none; }
      .goal-card, .btn { transition: none; }
    }

    /* ---------- Responsive ---------- */
    @media (max-width: 992px) {
      .hero-grid, .about-grid { grid-template-columns: 1fr; gap: 42px; }
      .hero-figure { order: -1; }
      .goals-grid, .audience-grid { grid-template-columns: repeat(2, 1fr); }
      .steps-grid { grid-template-columns: repeat(2, 1fr); }
      .contact-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }

    @media (max-width: 860px) {
      .nav-links {
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        background: var(--paper);
        border-bottom: 1px solid var(--line);
        padding: 8px 4%;
        display: none;
      }
      .nav-links.open { display: flex; }
      .nav-links li { width: 100%; }
      .nav-links a { display: block; padding: 12px 4px; }
      .nav-toggle { display: block; }
      .nav-cta .btn-line { display: none; }
    }

    @media (max-width: 600px) {
      section { padding: 64px 0; }
      .goals-grid, .audience-grid, .steps-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; }
      .cta-band { padding: 40px 26px; }
      .hero-badge { left: 0; }
      .brand-text { font-size: 0.85rem; }
    }
