
  :root {
    /* Chris's brand blues — matched to his existing site & logo pairing */
    --mauve: #1F5573;        /* ocean blue — primary */
    --mauve-deep: #17252F;   /* navy */
    --mauve-light: #2F8FB5;  /* sky-teal */
    --rose-mist: #A9C8DA;    /* ice blue — light accent */
    --warm-cream: #F5F9FC;   /* cool off-white */
    --paper: #FFFFFF;
    --sage: #A9C8DA;
    --gold: #C08A55;         /* warm amber accent against the blues */
    --ink: #1E2A33;
    --ink-soft: #5D7382;
    --line: rgba(31,85,115,0.16);
  }
  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: Calibri, "Segoe UI", Helvetica, Arial, sans-serif;
    background: var(--warm-cream);
    color: var(--ink);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
  }
  .container { max-width: 1180px; margin: 0 auto; padding: 0 32px; }

  /* TOP BAR */
  .topbar {
    background: var(--mauve);
    color: var(--paper);
    font-size: 13px;
    padding: 10px 0;
    text-align: center;
    letter-spacing: 0.02em;
  }
  .topbar a { color: var(--rose-mist); text-decoration: none; margin: 0 12px; }
  .topbar a:hover { color: var(--paper); }

  /* HEADER */
  header {
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 18px 0;
  }
  .nav-row { display: flex; align-items: center; justify-content: space-between; }
  .brand-block {
    font-family: Georgia, "Times New Roman", serif;
  }
  .brand-name {
    font-size: 28px;
    font-weight: 600;
    color: var(--mauve);
    letter-spacing: 0.01em;
    line-height: 1;
  }
  .brand-tag {
    font-family: Calibri, "Segoe UI", Helvetica, Arial, sans-serif;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--mauve-light);
    margin-top: 4px;
  }
  nav ul {
    display: flex;
    gap: 36px;
    list-style: none;
  }
  nav a {
    text-decoration: none;
    color: var(--ink);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
  }
  nav a:hover { color: var(--mauve); }
  .nav-cta {
    background: var(--mauve);
    color: var(--paper) !important;
    padding: 10px 22px;
    border-radius: 999px;
    font-size: 13px !important;
    transition: background 0.2s, transform 0.2s;
  }
  .nav-cta:hover { background: var(--mauve-deep); transform: translateY(-1px); }
  @media (max-width: 800px) { nav ul { display: none; } }

  /* HERO */
  .hero {
    padding: 96px 0 80px;
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(132,181,159,0.4) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
  }
  .hero-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
  }
  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--mauve);
    margin-bottom: 24px;
  }
  .hero-eyebrow::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--mauve);
  }
  .hero h1 {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 500;
    font-size: clamp(40px, 5.5vw, 64px);
    line-height: 1.08;
    color: var(--mauve-deep);
    margin-bottom: 28px;
    letter-spacing: -0.01em;
  }
  .hero h1 em {
    font-style: italic;
    color: var(--mauve);
    font-weight: 500;
  }
  .hero-lede {
    font-size: 18px;
    color: var(--ink-soft);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 560px;
  }
  .hero-cta-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
  }
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.01em;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
  }
  .btn-primary {
    background: var(--mauve);
    color: var(--paper);
  }
  .btn-primary:hover {
    background: var(--mauve-deep);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(62,107,92,0.25);
  }
  .btn-secondary {
    background: transparent;
    color: var(--mauve);
    border: 1px solid var(--mauve-light);
  }
  .btn-secondary:hover { background: rgba(62,107,92,0.05); }
  .hero-image {
    aspect-ratio: 4/5;
    background:
      linear-gradient(135deg, rgba(62,107,92,0.85) 0%, rgba(77,63,71,0.7) 100%),
      url('https://images.unsplash.com/photo-1556909114-f6e7ad7d3136?w=800') center/cover;
    border-radius: 200px 200px 12px 12px;
    box-shadow: 0 24px 64px rgba(62,107,92,0.2);
    position: relative;
  }
  .hero-video {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(62,107,92,0.25);
    background: var(--mauve-deep);
  }
  .hero-video iframe {
    position: absolute; inset: 0; width: 100%; height: 100%; border: 0;
  }
  .hero-video-caption {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.65), transparent);
    color: #fff; padding: 24px 20px 18px;
    font-family: Georgia, "Times New Roman", serif; font-style: italic;
    font-size: 15px; line-height: 1.4; pointer-events: none;
  }
  @media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; gap: 48px; }
    .hero-image { aspect-ratio: 16/10; max-height: 400px; }
  }

  /* TRUST STRIP */
  .trust-strip {
    padding: 32px 0;
    background: var(--paper);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
  }
  .trust-item-num {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 32px;
    font-weight: 600;
    color: var(--mauve);
    line-height: 1;
  }
  .trust-item-label {
    font-size: 12px;
    color: var(--ink-soft);
    letter-spacing: 0.04em;
    margin-top: 6px;
  }
  @media (max-width: 700px) { .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; } }

  /* SECTION FRAMEWORK */
  section { padding: 96px 0; position: relative; }
  .section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--mauve);
    margin-bottom: 20px;
  }
  .section-eyebrow::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--mauve);
  }
  .section-title {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 500;
    font-size: clamp(34px, 4.5vw, 52px);
    line-height: 1.12;
    color: var(--mauve-deep);
    margin-bottom: 24px;
    letter-spacing: -0.01em;
    max-width: 760px;
  }
  .section-title em { font-style: italic; color: var(--mauve); }
  .section-intro {
    font-size: 17px;
    color: var(--ink-soft);
    max-width: 680px;
    line-height: 1.7;
    margin-bottom: 56px;
  }

  /* APPROACH */
  .approach-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
  .approach-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 36px;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .approach-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(62,107,92,0.10);
  }
  .approach-num {
    font-family: Georgia, "Times New Roman", serif;
    font-style: italic;
    font-size: 16px;
    color: var(--mauve);
    margin-bottom: 16px;
  }
  .approach-card h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 600;
    font-size: 24px;
    color: var(--mauve-deep);
    margin-bottom: 14px;
    line-height: 1.2;
  }
  .approach-card p {
    font-size: 15px;
    color: var(--ink-soft);
    line-height: 1.65;
  }
  @media (max-width: 800px) { .approach-grid { grid-template-columns: 1fr; } }

  /* PACKAGES */
  .packages { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .pkg-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 32px;
  }
  .pkg-card {
    background: var(--warm-cream);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 40px 32px;
    position: relative;
    display: flex;
    flex-direction: column;
  }
  .pkg-card.featured {
    background: var(--mauve);
    color: var(--paper);
    border-color: var(--mauve);
    transform: scale(1.04);
    box-shadow: 0 24px 64px rgba(62,107,92,0.25);
  }
  .pkg-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--paper);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 999px;
  }
  .pkg-name {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 8px;
  }
  .pkg-card.featured .pkg-name { color: var(--paper); }
  .pkg-card:not(.featured) .pkg-name { color: var(--mauve-deep); }
  .pkg-desc {
    font-size: 13px;
    margin-bottom: 24px;
    line-height: 1.5;
  }
  .pkg-card.featured .pkg-desc { color: rgba(255,253,249,0.85); }
  .pkg-card:not(.featured) .pkg-desc { color: var(--ink-soft); }
  .pkg-price {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 48px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 4px;
  }
  .pkg-price-note {
    font-size: 12px;
    margin-bottom: 24px;
    letter-spacing: 0.04em;
  }
  .pkg-card.featured .pkg-price-note { color: rgba(255,253,249,0.7); }
  .pkg-card:not(.featured) .pkg-price-note { color: var(--ink-soft); }
  .pkg-features {
    list-style: none;
    margin-bottom: 32px;
    flex-grow: 1;
  }
  .pkg-features li {
    padding: 10px 0;
    border-bottom: 1px solid;
    font-size: 14px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
  }
  .pkg-card.featured .pkg-features li { border-color: rgba(255,253,249,0.15); }
  .pkg-card:not(.featured) .pkg-features li { border-color: var(--line); }
  .pkg-features li::before {
    content: '✓';
    color: var(--gold);
    font-weight: bold;
    flex-shrink: 0;
  }
  .pkg-card.featured .pkg-features li::before { color: var(--rose-mist); }
  .pkg-cta {
    display: block;
    text-align: center;
    padding: 14px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
  }
  .pkg-card.featured .pkg-cta {
    background: var(--paper);
    color: var(--mauve);
  }
  .pkg-card.featured .pkg-cta:hover { background: var(--gold); color: var(--paper); }
  .pkg-card:not(.featured) .pkg-cta {
    background: var(--mauve);
    color: var(--paper);
  }
  .pkg-card:not(.featured) .pkg-cta:hover { background: var(--mauve-deep); }
  .pkg-note {
    text-align: center;
    font-size: 14px;
    color: var(--ink-soft);
    line-height: 1.6;
    padding: 20px;
    background: var(--warm-cream);
    border-radius: 12px;
  }
  .pkg-note strong { color: var(--mauve); }
  @media (max-width: 900px) {
    .pkg-grid { grid-template-columns: 1fr; }
    .pkg-card.featured { transform: none; }
  }

  /* WORKSHOPS */
  .workshops-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .ws-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s;
    cursor: pointer;
  }
  .ws-card:hover {
    border-color: var(--mauve);
    transform: translateY(-2px);
  }
  .ws-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--mauve);
    background: rgba(62,107,92,0.08);
    padding: 4px 12px;
    border-radius: 999px;
    margin-bottom: 16px;
  }
  .ws-card h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--mauve-deep);
    margin-bottom: 10px;
    line-height: 1.25;
  }
  .ws-card p {
    font-size: 14px;
    color: var(--ink-soft);
    line-height: 1.6;
    margin-bottom: 16px;
  }
  .ws-card-meta {
    display: flex;
    gap: 16px;
    font-size: 12px;
    color: var(--mauve-light);
    letter-spacing: 0.04em;
  }
  @media (max-width: 700px) { .workshops-grid { grid-template-columns: 1fr; } }

  /* TESTIMONIAL */
  .testimonial {
    background: var(--mauve-deep);
    color: var(--paper);
    padding: 96px 0;
    position: relative;
    overflow: hidden;
  }
  .testimonial::before {
    content: '"';
    position: absolute;
    top: -40px;
    left: 5%;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 320px;
    color: rgba(132,181,159,0.1);
    line-height: 1;
  }
  .testimonial-content {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
  }
  .testimonial blockquote {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(24px, 3vw, 32px);
    font-style: italic;
    line-height: 1.4;
    margin-bottom: 32px;
    color: var(--paper);
  }
  .testimonial cite {
    font-size: 14px;
    font-style: normal;
    letter-spacing: 0.04em;
    color: var(--rose-mist);
  }

  /* RESOURCES */
  .resources { background: var(--paper); }
  .resource-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 24px;
  }
  .resource-card {
    background: var(--warm-cream);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 36px;
    transition: all 0.3s;
  }
  .resource-card.featured {
    background: linear-gradient(135deg, rgba(62,107,92,0.08) 0%, rgba(132,181,159,0.15) 100%);
  }
  .resource-card:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(62,107,92,0.08); }
  .resource-tag {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--mauve);
    margin-bottom: 16px;
  }
  .resource-card h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--mauve-deep);
    margin-bottom: 12px;
    line-height: 1.2;
  }
  .resource-card p {
    font-size: 14px;
    color: var(--ink-soft);
    line-height: 1.65;
    margin-bottom: 20px;
  }
  .resource-link {
    color: var(--mauve);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
  .resource-link:hover { gap: 10px; }
  @media (max-width: 900px) { .resource-grid { grid-template-columns: 1fr; } }

  /* CTA / FOOTER */
  .cta-block {
    background: var(--warm-cream);
    border-top: 1px solid var(--line);
    padding: 96px 0;
  }
  .cta-inner {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
  }
  .cta-inner h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 500;
    font-size: clamp(36px, 5vw, 56px);
    color: var(--mauve-deep);
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
  }
  .cta-inner p {
    font-size: 18px;
    color: var(--ink-soft);
    line-height: 1.65;
    margin-bottom: 36px;
  }

  footer {
    background: var(--mauve-deep);
    color: var(--rose-mist);
    padding: 48px 0 32px;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 32px;
  }
  .footer-brand {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--paper);
    margin-bottom: 12px;
  }
  .footer-tagline {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
  }
  .footer-grid h4 {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--paper);
    margin-bottom: 16px;
  }
  .footer-grid ul { list-style: none; }
  .footer-grid li { margin-bottom: 8px; font-size: 14px; }
  .footer-grid a { color: var(--rose-mist); text-decoration: none; transition: color 0.2s; }
  .footer-grid a:hover { color: var(--paper); }
  .footer-bottom {
    border-top: 1px solid rgba(132,181,159,0.2);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: 13px;
    gap: 16px;
  }
  @media (max-width: 800px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 560px) {
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .footer-grid .footer-tagline { overflow-wrap: anywhere; }
  }

  /* MOCKUP banner (visible only in proposal context) */
  .mockup-banner {
    background: var(--gold);
    color: var(--paper);
    text-align: center;
    padding: 8px;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 600;
  }

/* ============ SHARED MULTI-PAGE ADDITIONS (v2 build) ============ */
.brand-logo-img{height:74px;width:auto;display:block}
@media (max-width:640px){.brand-logo-img{height:58px}}
.brand-fallback{display:none}
.brand-logo-img.broken{display:none}
.brand-logo-img.broken + .brand-fallback{display:block}
.page-hero{padding:72px 0 48px;background:var(--paper);border-bottom:1px solid var(--line)}
.page-hero h1{font-family:Georgia,"Times New Roman",serif;font-weight:500;font-size:clamp(34px,4.5vw,52px);line-height:1.1;color:var(--mauve-deep);margin-bottom:16px}
.page-hero h1 em{font-style:italic;color:var(--mauve)}
.page-hero .lede{font-size:17px;color:var(--ink-soft);max-width:640px;line-height:1.7}
.credential-line{font-size:13px;color:var(--ink-soft);margin-top:10px;letter-spacing:.02em}
.section-pad{padding:72px 0}
.section-pad.alt{background:var(--paper)}
nav a.active{color:var(--mauve);font-weight:700}
.footer-license{font-size:12px;color:rgba(255,255,255,.55);margin-top:8px}
.footer-social{display:flex;gap:12px;margin-top:16px}
.footer-social a{display:inline-flex;align-items:center;justify-content:center;width:38px;height:38px;border-radius:50%;background:rgba(255,255,255,.10);color:var(--rose-mist);transition:background .2s ease,color .2s ease}
.footer-social a:hover{background:var(--mauve-light);color:#fff}
.footer-social svg{width:19px;height:19px;fill:currentColor}

/* ============ JOURNEY (homepage scrollytelling) ============ */
.journey{position:relative;background:var(--warm-cream);padding:40px 0 80px;overflow:hidden}
.journey-inner{position:relative;max-width:1080px;margin:0 auto;padding:0 32px}
.journey-svg{position:absolute;top:0;left:50%;transform:translateX(-50%);height:100%;width:min(900px,92vw);pointer-events:none;z-index:0}
.journey-svg path.trail{fill:none;stroke:var(--mauve);stroke-width:3;stroke-linecap:round;opacity:.9}
.journey-svg path.trail-ghost{fill:none;stroke:var(--mauve);stroke-width:3;opacity:.12;stroke-linecap:round}
.journey-svg .branch{fill:none;stroke:var(--rose-mist);stroke-width:2.5;opacity:0;stroke-linecap:round}
.journey-svg .arrowhead{fill:var(--gold)}
.beat{position:relative;z-index:1;display:grid;grid-template-columns:1fr 1fr;gap:48px;align-items:center;min-height:64vh;padding:48px 0}
.beat .beat-card{max-width:460px}
.beat.right .beat-card{grid-column:2}
.beat.left .beat-card{grid-column:1}
.beat-q{font-family:Georgia,"Times New Roman",serif;font-style:italic;font-size:clamp(22px,2.8vw,30px);line-height:1.35;color:var(--mauve-deep);background:var(--paper);border:1px solid var(--line);border-radius:18px 18px 18px 4px;padding:26px 30px;box-shadow:0 10px 30px rgba(62,107,92,.10);position:relative}
.beat.right .beat-q{border-radius:18px 18px 4px 18px}
.beat-q::before{content:'';position:absolute;top:-10px;left:26px;font-size:12px;letter-spacing:.16em;text-transform:uppercase;font-style:normal;font-family:Calibri,"Segoe UI",sans-serif;background:var(--gold);color:#fff;padding:2px 10px;border-radius:99px;content:attr(data-label)}
.beat-a{margin-top:18px;font-size:16.5px;color:var(--ink-soft);line-height:1.7;padding-left:18px;border-left:3px solid var(--rose-mist)}
.beat-a strong{color:var(--mauve-deep)}
.beat-a a{color:var(--mauve);font-weight:600;text-decoration:none}
.beat-a a:hover{text-decoration:underline}
.beat-node{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);width:18px;height:18px;border-radius:50%;background:var(--paper);border:3px solid var(--mauve);z-index:2;transition:all .3s}
.beat-node.lit{background:var(--gold);border-color:var(--gold);box-shadow:0 0 0 8px rgba(201,123,93,.18)}
.journey-finale{position:relative;z-index:1;text-align:center;padding:80px 0 20px}
.journey-finale h2{font-family:Georgia,"Times New Roman",serif;font-weight:500;font-size:clamp(30px,4vw,46px);color:var(--mauve-deep);margin-bottom:14px}
.journey-finale h2 em{font-style:italic;color:var(--mauve)}
.journey-finale p{color:var(--ink-soft);max-width:520px;margin:0 auto 28px;font-size:17px}
.journey-start-label{text-align:center;position:relative;z-index:1;font-size:12px;letter-spacing:.2em;text-transform:uppercase;color:var(--mauve);padding:24px 0 0}
@media (max-width:820px){
  .beat{grid-template-columns:1fr;min-height:auto;padding:36px 0 36px 34px}
  .beat.right .beat-card,.beat.left .beat-card{grid-column:1}
  .journey-svg{left:18px;transform:none;width:24px}
  .beat-node{left:-27px;top:34px;transform:none}
}
@media (prefers-reduced-motion: reduce){
  .journey-svg path.trail{stroke-dashoffset:0!important}
  .journey-svg .branch{opacity:.9!important}
  .beat-node{background:var(--gold);border-color:var(--gold)}
}

  /* ===== v2.1 additions (Jul 19) — shared components ===== */
  .ribbon {
    background: linear-gradient(90deg, var(--mauve), var(--mauve-light));
    color: var(--paper); text-align: center; font-size: 15px; padding: 12px 20px;
  }
  .ribbon a { color: #fff; font-weight: 700; text-decoration: none; border-bottom: 2px solid var(--rose-mist); padding-bottom: 1px; }
  .ribbon a:hover { border-bottom-color: #fff; }

  .review-band {
    background: #FCF3E3; border: 1px solid #E8CD9A; border-left: 5px solid var(--gold);
    border-radius: 10px; padding: 14px 18px; font-size: 14px; color: #6B5B3E;
    margin: 0 0 26px; line-height: 1.5;
  }
  .review-band strong { color: #4d3f24; }

  .five-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin-top: 34px; }
  @media (max-width: 980px) { .five-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 560px) { .five-grid { grid-template-columns: 1fr; } }
  .five-card {
    background: var(--paper); border: 1px solid var(--line); border-radius: 14px;
    padding: 22px 18px; text-align: center; transition: transform .25s ease, box-shadow .25s ease;
  }
  .five-card:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(31,42,47,.08); }
  .five-card .num {
    width: 34px; height: 34px; border-radius: 50%; background: var(--mauve); color: var(--paper);
    display: inline-flex; align-items: center; justify-content: center; font-weight: 700; margin-bottom: 12px;
  }
  .five-card h3 { font-family: Georgia, "Times New Roman", serif; color: var(--mauve); font-size: 17px; margin-bottom: 8px; }
  .five-card p { font-size: 13.5px; color: var(--ink-soft); line-height: 1.5; }

  .media-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 30px; }
  @media (max-width: 860px) { .media-grid { grid-template-columns: 1fr; } }
  .media-card { background: var(--paper); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
  .media-card iframe { width: 100%; aspect-ratio: 16 / 9; border: 0; display: block; }
  .media-card .media-cap { padding: 14px 18px; font-size: 14px; color: var(--ink-soft); }
  .press-list { list-style: none; margin-top: 18px; }
  .press-list li { padding: 13px 0; border-bottom: 1px solid var(--line); font-size: 15px; }
  .press-list li strong { color: var(--ink); }
  .press-list li span { color: var(--ink-soft); font-size: 13.5px; display: block; margin-top: 2px; }

  /* Engagement pop (engage.js) */
  .engage-pop {
    position: fixed; right: 22px; bottom: 84px; z-index: 400; max-width: 360px;
    background: var(--paper); border: 1px solid var(--line); border-top: 5px solid var(--mauve);
    border-radius: 14px; box-shadow: 0 18px 44px rgba(31,42,47,.18);
    padding: 20px 22px; opacity: 0; transform: translateY(14px);
    transition: opacity .35s ease, transform .35s ease;
  }
  .engage-pop.show { opacity: 1; transform: translateY(0); }
  .engage-pop h4 { font-family: Georgia, "Times New Roman", serif; color: var(--mauve); font-size: 18px; margin-bottom: 6px; }
  .engage-pop p { font-size: 13.5px; color: var(--ink-soft); margin-bottom: 12px; }
  .engage-pop .ep-actions a {
    display: block; text-align: center; margin-bottom: 8px; font-size: 14px;
    padding: 9px 12px; border-radius: 999px; text-decoration: none; font-weight: 600;
  }
  .engage-pop .ep-primary { background: var(--mauve); color: var(--paper); }
  .engage-pop .ep-secondary { border: 1.5px solid var(--mauve); color: var(--mauve); }
  .engage-pop .ep-close {
    position: absolute; top: 8px; right: 12px; background: none; border: 0;
    font-size: 20px; color: var(--ink-soft); cursor: pointer; line-height: 1;
  }
  .engage-pop .ep-dismiss { background: none; border: 0; color: var(--ink-soft); font-size: 12.5px; cursor: pointer; display: block; margin: 2px auto 0; text-decoration: underline; }
  @media (max-width: 560px) { .engage-pop { right: 12px; left: 12px; max-width: none; } }

  /* ===== Chapter journey dressing (Jul 23) ===== */
  .beat-card { position: relative; }
  .beat-q { border-top: 4px solid var(--ch, var(--line)); padding-right: 76px; }
  .beat-icon {
    position: absolute; top: 14px; right: 18px; width: 44px; height: 44px;
    color: var(--ch, var(--mauve-light)); opacity: .95; z-index: 1; pointer-events: none;
  }
  .beat-icon svg { width: 100%; height: 100%; }
  .beat .beat-a { border-left-color: var(--ch, var(--rose-mist)); }
  #beat1 { --ch: #A9C8DA; }
  #beat2 { --ch: #2F8FB5; }
  #beat3 { --ch: #1F5573; }
  #beat4 { --ch: #17252F; }
  #beat5 { --ch: #C08A55; }
  #beat5 .beat-q { box-shadow: 0 14px 38px rgba(192,138,85,.22); }
  #beat5 .beat-q::before { background: var(--mauve-deep); }
  @media (max-width: 620px) { .beat-icon { width: 34px; height: 34px; top: 12px; right: 14px; } .beat-q { padding-right: 60px; } }

  /* Finale as the sunrise panel */
  .journey-finale {
    background: linear-gradient(135deg, #17252F 0%, #1F5573 55%, #2F8FB5 100%);
    border-radius: 24px; padding: 72px 40px 64px; margin-top: 48px; overflow: hidden;
  }
  .journey-finale::before {
    content: ''; position: absolute; right: -60px; top: -40px; width: 340px; height: 340px;
    background: radial-gradient(circle at center, rgba(192,138,85,.35), rgba(192,138,85,0) 65%);
    pointer-events: none;
  }
  .journey-finale h2 { color: #fff; position: relative; }
  .journey-finale h2 em { color: var(--rose-mist); }
  .journey-finale p { color: rgba(245,249,252,.85); position: relative; }
  .journey-finale .btn-primary { background: var(--gold); position: relative; }
  .journey-finale .btn-primary:hover { background: #A87540; }
  .finale-arrows {
    position: absolute; left: 50%; bottom: -30px; transform: translateX(-50%);
    width: 560px; max-width: 90%; opacity: .10; color: #fff; pointer-events: none;
  }

  /* ===== Long-form prose (guides & articles, restored Jul 23) ===== */
  .prose { max-width: 760px; margin: 0 auto; padding: 0 32px; }
  .prose > p { font-size: 16.5px; line-height: 1.8; color: var(--ink); margin-bottom: 18px; }
  .prose h2 {
    font-family: Georgia, "Times New Roman", serif; font-weight: 500; font-size: 27px;
    color: var(--mauve-deep); margin: 38px 0 14px; line-height: 1.25;
  }
  .prose h3 { font-family: Georgia, "Times New Roman", serif; font-size: 19px; color: var(--mauve); margin: 26px 0 10px; }
  .prose ul, .prose ol { margin: 0 0 20px 24px; }
  .prose li { font-size: 16.5px; line-height: 1.75; color: var(--ink); margin-bottom: 9px; }
  .prose strong { color: var(--mauve-deep); }
  .prose a { color: var(--mauve); font-weight: 600; }
  .prose .tool {
    background: var(--paper); border: 1px solid var(--line); border-left: 5px solid var(--gold);
    border-radius: 14px; padding: 26px 28px; margin: 30px 0;
  }
  .prose .tool h3 { margin-top: 0; color: var(--mauve-deep); }
  .prose .tool .tagline { font-size: 14px; color: var(--ink-soft); margin-bottom: 16px; }
  .prose .row3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 8px; }
  @media (max-width: 560px) { .prose .row3 { grid-template-columns: 1fr; } }
  .prose .field label { display: block; font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--mauve); margin-bottom: 5px; }
  .prose .field input {
    width: 100%; padding: 10px 14px; border: 1.5px solid var(--line); border-radius: 10px;
    font-size: 16px; font-family: inherit; background: var(--warm-cream); color: var(--ink);
  }
  .prose .field input:focus { outline: none; border-color: var(--mauve); background: var(--paper); }
  .prose .result { display: none; margin-top: 18px; padding: 18px 20px; background: var(--warm-cream); border-radius: 12px; border-left: 3px solid var(--rose-mist); }
  .prose .result.show { display: block; }
  .prose .result h4 { font-family: Georgia, serif; color: var(--mauve); font-size: 17px; margin-bottom: 8px; }
  .prose .result p { font-size: 15px; color: var(--ink-soft); line-height: 1.65; }
  .post-crumb { font-size: 13px; color: var(--ink-soft); margin-bottom: 10px; }
  .post-crumb a { color: var(--mauve); text-decoration: none; font-weight: 600; }
  .prose-cta { max-width: 760px; margin: 44px auto 0; padding: 28px 32px 0; border-top: 1px solid var(--line); }
  .prose-cta h2 { font-family: Georgia, "Times New Roman", serif; font-weight: 500; font-size: 26px; color: var(--mauve-deep); margin-bottom: 10px; }
  .prose-cta p { color: var(--ink-soft); font-size: 15.5px; margin-bottom: 18px; }

  /* Systemic metaphor cards (five-parts, Jul 24) */
  .sys-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 38px; }
  @media (max-width: 900px) { .sys-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; } }
  .sys-card {
    margin: 0; background: var(--paper); border: 1px solid var(--line); border-radius: 16px;
    padding: 20px 22px 22px; text-align: center;
    transition: transform .25s ease, box-shadow .25s ease;
  }
  .sys-card:hover { transform: translateY(-4px); box-shadow: 0 14px 32px rgba(31,85,115,.10); }
  .sys-card svg { width: 100%; max-width: 240px; height: auto; display: block; margin: 0 auto 6px; }
  .sys-card figcaption { font-size: 14px; color: var(--ink-soft); line-height: 1.6; text-align: left; }
  .sys-card figcaption strong { color: var(--mauve-deep); }

  /* Homepage quiz preview (Jul 24 — Chris couldn't find the quiz) */
  .quiz-peek {
    background: var(--paper); border: 1px solid var(--line); border-left: 5px solid var(--gold);
    border-radius: 16px; padding: 28px 34px; max-width: 720px; margin: 0 auto;
  }
  .quiz-peek ol { margin: 0 0 0 20px; }
  .quiz-peek li { font-size: 15.5px; color: var(--ink); line-height: 1.6; margin-bottom: 10px; }
  .quiz-peek li::marker { color: var(--gold); font-weight: 700; }
  .quiz-peek-note { margin-top: 16px; font-size: 14px; color: var(--ink-soft); }
  .quiz-peek-note em { color: var(--mauve); font-style: normal; font-weight: 600; }
  @media (max-width: 620px) { .quiz-peek { padding: 22px 20px; } }

  /* "Your crew" — the systemic team map from Chris's UCAR deck (Jul 24) */
  .crew-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; margin-top: 34px; }
  @media (max-width: 900px) { .crew-wrap { grid-template-columns: 1fr; } }
  .crew-svg { width: 100%; max-width: 420px; margin: 0 auto; display: block; }
  .crew-svg .seat { cursor: default; }
  .crew-svg .seat circle { transition: transform .2s ease, filter .2s ease; transform-origin: center; transform-box: fill-box; }
  .crew-svg .seat:hover circle { filter: brightness(1.12); }
  .crew-list { list-style: none; }
  .crew-list li { padding: 12px 0 12px 16px; border-left: 3px solid var(--line); margin-bottom: 4px; }
  .crew-list li strong { display: block; color: var(--mauve-deep); font-size: 15.5px; }
  .crew-list li span { font-size: 14px; color: var(--ink-soft); line-height: 1.55; }
  .crew-list li.is-coach { border-left-color: var(--gold); background: rgba(192,138,85,.06); border-radius: 0 10px 10px 0; }
  .crew-list li.is-coach strong { color: var(--gold); }

  /* ===== Mobile nav + accessibility (restored Jul 24) ===== */
  .skip-link {
    position: absolute; left: -9999px; top: 0; z-index: 500;
    background: var(--mauve-deep); color: #fff; padding: 12px 20px; border-radius: 0 0 10px 0;
    font-weight: 600; text-decoration: none;
  }
  .skip-link:focus { left: 0; }

  .nav-toggle {
    display: none; background: none; border: 0; cursor: pointer;
    width: 44px; height: 44px; padding: 10px; flex-direction: column; justify-content: space-between;
  }
  .nav-toggle span { display: block; height: 2.5px; width: 100%; background: var(--mauve-deep); border-radius: 2px; transition: transform .25s ease, opacity .2s ease; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(10.5px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-10.5px) rotate(-45deg); }

  @media (max-width: 800px) {
    .nav-toggle { display: flex; }
    .nav-row { position: relative; }
    .nav-row nav { position: static; }
    nav ul {
      display: none; position: absolute; left: 0; right: 0; top: calc(100% + 14px);
      flex-direction: column; gap: 0; background: var(--paper);
      border: 1px solid var(--line); border-radius: 14px; padding: 8px;
      box-shadow: 0 18px 44px rgba(31,85,115,.16); z-index: 200;
    }
    nav ul.open { display: flex; }
    nav ul li { width: 100%; }
    nav ul li a { display: block; padding: 13px 16px; border-radius: 10px; font-size: 15.5px; }
    nav ul li a:hover, nav ul li a.active { background: var(--warm-cream); }
    nav ul li .nav-cta { text-align: center; margin-top: 4px; }
  }

  /* accessibility launcher + panel */
  #a11y-launch {
    position: fixed; right: 20px; bottom: 20px; z-index: 9500;
    width: 48px; height: 48px; border-radius: 50%; border: 0; cursor: pointer;
    background: var(--mauve); box-shadow: 0 10px 26px rgba(31,85,115,.32);
    display: flex; align-items: center; justify-content: center;
  }
  #a11y-launch:hover { background: var(--mauve-deep); }
  #a11y-panel {
    position: fixed; right: 20px; bottom: 78px; z-index: 9501; width: 280px; display: none;
    background: var(--paper); border: 1px solid var(--line); border-radius: 16px;
    box-shadow: 0 22px 54px rgba(31,42,47,.22); padding: 18px 20px;
  }
  #a11y-panel.open { display: block; }
  #a11y-panel h2 {
    font-family: Georgia, serif; font-size: 17px; color: var(--mauve-deep);
    display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px;
  }
  #a11y-panel .a11y-close { background: none; border: 0; font-size: 22px; line-height: 1; color: var(--ink-soft); cursor: pointer; }
  .a11y-group { margin-bottom: 14px; }
  .a11y-group > span { display: block; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 7px; font-weight: 700; }
  .a11y-row { display: flex; gap: 6px; }
  .a11y-opt, .a11y-toggle {
    font-family: inherit; background: var(--warm-cream); border: 1.5px solid var(--line);
    border-radius: 10px; cursor: pointer; color: var(--ink); transition: all .18s ease;
  }
  .a11y-opt { flex: 1; padding: 8px 4px; font-size: 15px; font-weight: 700; display: flex; flex-direction: column; align-items: center; }
  .a11y-opt small { font-size: 9px; font-weight: 400; color: var(--ink-soft); }
  .a11y-toggle { display: flex; justify-content: space-between; align-items: center; width: 100%; padding: 9px 12px; font-size: 13.5px; margin-bottom: 6px; }
  .a11y-toggle .state { font-size: 11px; font-weight: 700; color: var(--ink-soft); }
  .a11y-opt.on, .a11y-toggle.on { background: var(--mauve); border-color: var(--mauve); color: #fff; }
  .a11y-opt.on small, .a11y-toggle.on .state { color: rgba(255,255,255,.85); }
  #a11y-reset { width: 100%; background: none; border: 0; color: var(--mauve); font-family: inherit; font-size: 13px; font-weight: 600; cursor: pointer; text-decoration: underline; }

  /* the settings themselves */
  :root[data-text="1"] body { font-size: 18px; }
  :root[data-text="2"] body { font-size: 20px; }
  :root[data-text="1"] .lede, :root[data-text="1"] .hero-lede { font-size: 19.5px; }
  :root[data-text="2"] .lede, :root[data-text="2"] .hero-lede { font-size: 21.5px; }
  :root.a11y-readable body, :root.a11y-readable .lede, :root.a11y-readable h1, :root.a11y-readable h2, :root.a11y-readable h3 {
    font-family: "Atkinson Hyperlegible", Verdana, Tahoma, sans-serif !important; letter-spacing: .01em;
  }
  :root.a11y-contrast body { background: #fff; }
  :root.a11y-contrast { --ink: #000; --ink-soft: #262626; --mauve: #0B3D5C; --mauve-deep: #000; --line: rgba(0,0,0,.45); }
  :root.a11y-contrast .btn-primary { background: #0B3D5C; }
  :root.a11y-links a:not(.btn):not(.nav-cta):not(.pkg-cta) { text-decoration: underline !important; text-underline-offset: 3px; font-weight: 600; }
  :root.a11y-nomotion *, :root.a11y-nomotion *::before, :root.a11y-nomotion *::after {
    animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important;
  }
