    :root {
      --font-head: "HarmoniaSans", "Gill Sans", "Gill Sans MT", Calibri, system-ui, sans-serif;
      --font-body: "DINNextLTPro", "Helvetica Neue", Arial, system-ui, sans-serif;

      /* Brand neutrals (matched to theroadhome.org) */
      --paper:      #fbfcfc;
      --paper-2:    #e9eeef;        /* site light gray */
      --surface:    #ffffff;
      --ink:        #16201e;        /* near-black headings */
      --ink-soft:   #36423f;
      --body:       #3c4446;
      --muted:      #67696a;        /* site gray */
      --line:       #dde3e4;
      --line-soft:  #e9eeef;

      /* Brand accents (matched to theroadhome.org). Names kept for downstream rules. */
      --blue:       #008192;        /* PRIMARY teal */
      --blue-deep:  #005560;        /* teal hover / dark */
      --teal:       #8f77ad;        /* SECONDARY purple */
      --green:      #00aec7;        /* bright teal accent */
      --gold:       #604a7b;        /* deep purple accent */

      /* On-dark variants */
      --on-dark:        #eef9fa;
      --on-dark-muted:  #a9c9cd;
      --teal-bright:    #c8bcd6;    /* light purple on dark */
      --green-bright:   #8ff2ff;    /* light cyan on dark */
      --blue-bright:    #00aec7;

      --maxw: 1180px;
      --gutter: clamp(1.25rem, 5vw, 4rem);
      --radius: 6px;
      --radius-sm: 4px;
      --shadow: 0 1px 2px rgba(0, 85, 96, 0.06), 0 18px 40px -22px rgba(0, 85, 96, 0.28);
      --shadow-lg: 0 2px 4px rgba(0, 85, 96, 0.07), 0 40px 80px -32px rgba(0, 85, 96, 0.35);
      --ease: cubic-bezier(0.22, 1, 0.36, 1);

      /* Type scale matched to theroadhome.org: h1 60px, h2 45px, h3 32px, body 16px */
      --step--1: clamp(0.85rem, 0.82rem + 0.15vw, 0.95rem);
      --step-0:  clamp(1rem, 0.97rem + 0.2vw, 1.0625rem);
      --step-1:  clamp(1.2rem, 1.05rem + 0.6vw, 1.5rem);
      --step-2:  clamp(1.85rem, 1.35rem + 2vw, 2.8125rem);
      --step-3:  clamp(1.5rem, 1.25rem + 1vw, 2rem);
      --step-4:  clamp(2.4rem, 1.6rem + 3.4vw, 3.75rem);
    }

    * { box-sizing: border-box; }
    html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
    @media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

    body {
      margin: 0;
      font-family: var(--font-body);
      font-size: var(--step-0);
      line-height: 1.6;
      color: var(--body);
      background: var(--paper);
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }

    h1, h2, h3 { font-family: var(--font-head); color: var(--ink); line-height: 1.08; margin: 0; font-weight: 900; letter-spacing: -0.015em; }
    p { margin: 0; }
    a { color: var(--blue); text-decoration-thickness: 1px; text-underline-offset: 2px; text-decoration-color: var(--teal); }
    a:hover { color: var(--blue-deep); }
    img { max-width: 100%; display: block; }

    .wrap { width: min(100% - var(--gutter) * 2, var(--maxw)); margin-inline: auto; }
    .measure { max-width: 64ch; }

    .eyebrow {
      display: inline-flex; align-items: center; gap: 0.6em; font-family: var(--font-head);
      font-size: var(--step--1); font-weight: 700; letter-spacing: 0.2em;
      text-transform: uppercase; color: var(--blue); margin: 0 0 1.1rem;
    }
    .eyebrow::before {
      content: ""; width: 1.9rem; height: 2px; background: var(--blue); border-radius: 2px;
    }
    .eyebrow.on-dark { color: var(--teal-bright); }
    .eyebrow.on-dark::before { background: var(--teal); }

    /* ---------- Buttons ---------- */
    .btn {
      --bg: var(--blue); --fg: var(--on-dark);
      display: inline-flex; align-items: center; gap: 0.6em; font-family: var(--font-head);
      font-weight: 700; font-size: 0.9rem; letter-spacing: 0.16em; text-transform: uppercase;
      padding: 1.05em 2em; border-radius: 0; border: 3px solid transparent;
      background: var(--bg); color: var(--fg); cursor: pointer; text-decoration: none;
      transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
      box-shadow: 0 12px 26px -16px rgba(0, 85, 96, 0.75);
    }
    .btn:hover { transform: translateY(-2px); box-shadow: 0 18px 32px -16px rgba(0, 85, 96, 0.85); background: var(--blue-deep); }
    .btn:focus-visible { outline: 3px solid var(--teal); outline-offset: 3px; }
    .btn svg { width: 1.1em; height: 1.1em; flex: none; }
    .btn--ghost {
      --bg: transparent; --fg: var(--blue); border-color: var(--blue); box-shadow: none;
    }
    .btn--ghost:hover { background: var(--blue); border-color: var(--blue); color: var(--on-dark); transform: translateY(-2px); }
    .btn--on-dark.btn--ghost { --fg: var(--on-dark); border-color: rgba(238, 249, 250, 0.45); }
    .btn--on-dark.btn--ghost:hover { background: var(--on-dark); border-color: var(--on-dark); color: var(--blue-deep); }

    /* ---------- Hero ---------- */
    .hero { padding-block: clamp(2.5rem, 5vw, 5rem) clamp(2.5rem, 5vw, 4.5rem); position: relative; overflow: hidden; }
    .hero::before {
      content: ""; position: absolute; inset: 0; z-index: 0;
      background:
        radial-gradient(60% 70% at 88% 8%, rgba(0, 129, 146, 0.08), transparent 70%),
        radial-gradient(55% 60% at -5% 100%, rgba(143, 119, 173, 0.09), transparent 70%);
      pointer-events: none;
    }
    .hero .wrap { position: relative; z-index: 1; }
    .hero-grid { display: grid; gap: clamp(2rem, 4vw, 3.5rem); align-items: center; }
    @media (min-width: 940px) { .hero-grid { grid-template-columns: 1.05fr 1fr; } }

    .hero h1 { font-size: var(--step-4); font-weight: 900; letter-spacing: -0.02em; line-height: 1.02; }
    .hero .tagline {
      font-family: var(--font-head); font-size: var(--step-1); font-weight: 600; color: var(--blue);
      margin-top: 1.1rem; line-height: 1.25; letter-spacing: -0.005em; text-wrap: balance;
    }
    .hero .lead { margin-top: 1.4rem; font-size: var(--step-0); color: var(--body); max-width: 46ch; }
    .hero-cta { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-top: 2rem; }

    .hero-figure { position: relative; }
    .hero-figure img {
      border-radius: var(--radius); box-shadow: var(--shadow-lg);
      border: 1px solid rgba(255, 255, 255, 0.6); width: 100%; aspect-ratio: 1552 / 1013; object-fit: cover;
    }

    /* ---------- Section base ---------- */
    section { padding-block: clamp(3.5rem, 7vw, 6.5rem); }
    .section-head { max-width: 60ch; }
    .section-head h2 { font-size: var(--step-3); margin-top: 0; }

    /* ---------- Overview ---------- */
    .overview { background: var(--surface); border-block: 1px solid var(--line-soft); }
    .overview-grid { display: grid; gap: clamp(1.5rem, 4vw, 3.5rem); }
    @media (min-width: 880px) { .overview-grid { grid-template-columns: 0.9fr 1.1fr; align-items: start; } }
    .overview-statement { font-family: var(--font-head); font-size: var(--step-2); font-weight: 900; color: var(--ink); line-height: 1.14; letter-spacing: -0.02em; text-wrap: balance; }
    .overview-statement .accent { color: var(--blue); }
    .overview-body > p + p { margin-top: 1.2rem; }
    .pill {
      display: inline-flex; align-items: center; gap: 0.55rem; margin-bottom: 1.4rem; font-family: var(--font-head);
      background: rgba(0, 129, 146, 0.1); color: var(--blue-deep);
      font-weight: 700; font-size: var(--step--1); letter-spacing: 0.04em; padding: 0.45em 1em; border-radius: 999px;
    }
    .pill .dot { width: 0.55rem; height: 0.55rem; border-radius: 50%; background: var(--blue); }
    .overview-body strong { color: var(--ink); }

    /* ---------- Stats band ---------- */
    .stats { background: var(--paper); }
    .stats-band {
      display: grid; grid-template-columns: repeat(2, 1fr); gap: 0;
      border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--surface);
      box-shadow: var(--shadow);
    }
    @media (min-width: 820px) { .stats-band { grid-template-columns: repeat(4, 1fr); } }
    .stat { padding: clamp(1.6rem, 3vw, 2.4rem); position: relative; }
    .stat + .stat { border-left: 1px solid var(--line-soft); }
    .stat:nth-child(3) { border-top: 1px solid var(--line-soft); }
    .stat:nth-child(4) { border-top: 1px solid var(--line-soft); }
    @media (max-width: 819px) {
      .stat:nth-child(odd) { border-left: 0; }
      .stat:nth-child(3) { border-top: 1px solid var(--line-soft); }
    }
    @media (min-width: 820px) {
      .stat:nth-child(3), .stat:nth-child(4) { border-top: 0; }
    }
    .stat .num {
      font-family: var(--font-body); font-size: clamp(2.6rem, 1.6rem + 3vw, 3.8rem); font-weight: 900; line-height: 0.95;
      letter-spacing: -0.02em; color: var(--ink); font-variant-numeric: tabular-nums;
    }
    .stat .num .unit { font-size: 0.42em; vertical-align: middle; font-weight: 800; letter-spacing: 0; margin-left: 0.1em; color: var(--muted); }
    .stat .num .qual { display: inline-block; font-size: 0.3em; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); transform: translateY(-1.1em); margin-right: 0.25em; }
    .stat .label { margin-top: 0.7rem; font-size: var(--step--1); color: var(--muted); font-weight: 500; line-height: 1.4; max-width: 22ch; }
    .stat .rule { width: 2.2rem; height: 3px; border-radius: 3px; margin-bottom: 1rem; }
    .stat:nth-child(1) .rule { background: var(--blue); }
    .stat:nth-child(2) .rule { background: var(--teal); }
    .stat:nth-child(3) .rule { background: var(--green); }
    .stat:nth-child(4) .rule { background: var(--gold); }

    /* ---------- Phase strip (drenched deep teal) ---------- */
    .phases { background: var(--blue-deep); color: var(--on-dark-muted); position: relative; overflow: hidden; }
    .phases::after {
      content: ""; position: absolute; inset: 0; pointer-events: none;
      background: radial-gradient(50% 80% at 85% 0%, rgba(143, 242, 255, 0.14), transparent 60%),
                  radial-gradient(50% 80% at 10% 110%, rgba(143, 119, 173, 0.20), transparent 60%);
    }
    .phases .wrap { position: relative; z-index: 1; }
    .phases h2 { color: var(--on-dark); font-size: var(--step-3); }
    .phases .section-head p { color: var(--on-dark-muted); margin-top: 1rem; }
    .timeline { display: grid; gap: 1.25rem; margin-top: clamp(2rem, 4vw, 3rem); }
    @media (min-width: 820px) { .timeline { grid-template-columns: 1fr auto 1fr; align-items: stretch; } }
    .phase-card {
      background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(238, 249, 250, 0.18);
      border-radius: var(--radius); padding: clamp(1.5rem, 3vw, 2.2rem);
      backdrop-filter: blur(2px);
    }
    .phase-card .tag {
      display: inline-flex; align-items: center; gap: 0.5rem; font-family: var(--font-head); font-size: var(--step--1);
      font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 1rem;
    }
    .phase-card .tag .node { width: 0.85rem; height: 0.85rem; border-radius: 50%; box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.08); }
    .phase-card.active .tag { color: var(--green-bright); }
    .phase-card.active .tag .node { background: var(--green-bright); }
    .phase-card.future .tag { color: var(--teal-bright); }
    .phase-card.future .tag .node { background: var(--teal-bright); }
    .phase-card h3 { color: var(--on-dark); font-size: var(--step-1); margin-bottom: 0.4rem; }
    .phase-card .when { color: var(--on-dark-muted); font-size: var(--step--1); margin-bottom: 1.2rem; }
    .phase-card ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.7rem; }
    .phase-card li { display: flex; gap: 0.65rem; align-items: flex-start; font-size: var(--step--1); color: var(--on-dark); line-height: 1.45; }
    .phase-card li svg { width: 1.1em; height: 1.1em; flex: none; margin-top: 0.18em; }
    .phase-card.active li svg { color: var(--green-bright); }
    .phase-card.future li svg { color: var(--teal-bright); }
    .timeline-arrow { display: flex; align-items: center; justify-content: center; color: rgba(169, 201, 205, 0.55); }
    .timeline-arrow svg { width: 2rem; height: 2rem; }
    @media (max-width: 819px) { .timeline-arrow { transform: rotate(90deg); height: 1.5rem; } }

    /* ---------- FAQ ---------- */
    .faq { background: var(--surface); border-block: 1px solid var(--line-soft); }
    .faq-grid { display: grid; gap: clamp(1.5rem, 4vw, 3rem); }
    @media (min-width: 900px) { .faq-grid { grid-template-columns: 0.7fr 1.3fr; align-items: start; } }
    .faq-list { border-top: 1px solid var(--line); }
    .faq-item { border-bottom: 1px solid var(--line); }
    .faq-q {
      width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
      font-family: var(--font-head); font-weight: 700; font-size: var(--step-1); color: var(--ink);
      padding: 1.4rem 3rem 1.4rem 0; position: relative; letter-spacing: -0.01em; line-height: 1.25;
      transition: color 0.3s var(--ease);
    }
    .faq-q:hover { color: var(--blue); }
    .faq-q:focus-visible { outline: 3px solid var(--teal); outline-offset: 3px; border-radius: 6px; }
    .faq-q .icon {
      position: absolute; right: 0; top: 50%; transform: translateY(-50%);
      width: 1.7rem; height: 1.7rem; border-radius: 50%; border: 1.5px solid var(--line);
      display: grid; place-items: center; transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
    }
    .faq-q .icon::before, .faq-q .icon::after {
      content: ""; position: absolute; background: var(--blue); border-radius: 2px;
      transition: transform 0.4s var(--ease), opacity 0.3s var(--ease);
    }
    .faq-q .icon::before { width: 0.75rem; height: 2px; }
    .faq-q .icon::after { width: 2px; height: 0.75rem; }
    .faq-q[aria-expanded="true"] .icon { background: var(--blue); border-color: var(--blue); }
    .faq-q[aria-expanded="true"] .icon::before { background: var(--on-dark); }
    .faq-q[aria-expanded="true"] .icon::after { transform: scaleY(0); opacity: 0; }
    .faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.45s var(--ease); }
    .faq-item:has(.faq-q[aria-expanded="true"]) .faq-a { grid-template-rows: 1fr; }
    .faq-a > div { overflow: hidden; }
    .faq-a p { color: var(--body); padding-bottom: 1.5rem; max-width: 60ch; }
    @media (prefers-reduced-motion: reduce) { .faq-a { transition: none; } }

    /* ---------- Flyer ---------- */
    .flyer { background: var(--paper-2); }
    .flyer-head { display: flex; flex-wrap: wrap; gap: 1.5rem 2rem; align-items: flex-end; justify-content: space-between; margin-bottom: clamp(2rem, 4vw, 3rem); }
    .flyer-head .section-head { margin: 0; }
    .flyer-head p { color: var(--muted); margin-top: 0.9rem; }
    .flyer-pages { display: grid; gap: clamp(1.25rem, 3vw, 2rem); }
    @media (min-width: 720px) { .flyer-pages { grid-template-columns: 1fr 1fr; } }
    .flyer-page {
      border-radius: var(--radius-sm); overflow: hidden; box-shadow: var(--shadow-lg);
      border: 1px solid var(--line); background: var(--surface); position: relative;
      transition: transform 0.5s var(--ease);
    }
    .flyer-page:hover { transform: translateY(-4px); }
    .flyer-page img { width: 100%; height: auto; }
    .flyer-page .page-tag {
      position: absolute; top: 0.85rem; left: 0.85rem; background: rgba(0, 85, 96, 0.92); font-family: var(--font-head);
      color: var(--on-dark); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em;
      text-transform: uppercase; padding: 0.4rem 0.75rem; border-radius: 999px;
    }

    /* ---------- Stay informed ---------- */
    .contact { background: var(--blue-deep); color: var(--on-dark-muted); }
    .contact-grid { display: grid; gap: clamp(1.5rem, 4vw, 3rem); align-items: center; }
    @media (min-width: 820px) { .contact-grid { grid-template-columns: 1.1fr 0.9fr; } }
    .contact h2 { color: var(--on-dark); font-size: var(--step-2); }
    .contact .eyebrow { color: var(--teal-bright); }
    .contact .eyebrow::before { background: var(--teal); }
    .contact p { color: var(--on-dark-muted); margin-top: 1rem; max-width: 48ch; }
    .contact-card {
      background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(238, 249, 250, 0.18);
      border-radius: var(--radius); padding: clamp(1.6rem, 3vw, 2.2rem);
    }
    .contact-card .label { font-family: var(--font-head); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--on-dark-muted); font-weight: 700; }
    .contact-card a.email { display: inline-block; margin-top: 0.4rem; font-family: var(--font-head); font-size: var(--step-1); font-weight: 700; color: var(--on-dark); letter-spacing: -0.01em; text-decoration: none; }
    .contact-card a.email:hover { color: var(--green-bright); }
    .contact-card .note { margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(238, 249, 250, 0.18); font-size: var(--step--1); color: var(--on-dark-muted); }

    /* ---------- Reveal animation ---------- */
    .reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
    .reveal.in { opacity: 1; transform: none; }
    .reveal[data-d="1"] { transition-delay: 0.08s; }
    .reveal[data-d="2"] { transition-delay: 0.16s; }
    .reveal[data-d="3"] { transition-delay: 0.24s; }
    @media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }




/* Custom global styles */

html {
    &:has(#wpadminbar) .header-container {
      top: 32px !important;
      z-index: 1000;
    }
}

body {
    main {
        display: flow-root;
        margin-top: 87px;
    }

    /* block hiding */
    main [data-block],
    footer[data-block] {
        display: none;
    }
}