:root {
      --ink: #1a2e2a;
      --muted: #5c6b66;
      --bg: #f7f5f1;
      --surface: #ffffff;
      --teal: #1f6b7a;
      --teal-deep: #154e59;
      --leaf: #4f8f5c;
      --sand: #e8e2d6;
      --line: rgba(26, 46, 42, 0.12);
      --shadow: 0 1px 0 rgba(26,46,42,0.04), 0 8px 24px rgba(26,46,42,0.06);
      --radius: 16px;
      --max: 1120px;
      --font-body: "DM Sans", system-ui, -apple-system, sans-serif;
      --font-display: "Fraunces", Georgia, "Times New Roman", serif;
    }

    *, *::before, *::after { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: var(--font-body);
      color: var(--ink);
      background: var(--bg);
      line-height: 1.55;
      font-size: 1.05rem;
      -webkit-font-smoothing: antialiased;
    }
    img { max-width: 100%; display: block; height: auto; }
    a { color: var(--teal-deep); text-decoration-thickness: 1px; text-underline-offset: 3px; }
    a:hover { color: var(--leaf); }
    :focus-visible {
      outline: 3px solid var(--leaf);
      outline-offset: 3px;
    }
    .skip-link {
      position: fixed;
      left: 1rem;
      top: 0.75rem;
      z-index: 100;
      padding: 0.7rem 1rem;
      border-radius: 10px;
      background: var(--ink);
      color: #fff;
      font-weight: 700;
      transform: translateY(-180%);
      transition: transform 0.15s ease;
    }
    .skip-link:focus { transform: translateY(0); }

    .wrap {
      width: min(var(--max), calc(100% - 2.5rem));
      margin-inline: auto;
    }

    /* Nav */
    .nav {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(247, 245, 241, 0.92);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid var(--line);
    }
    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      padding: 0.85rem 0;
    }
    .brand {
      display: flex;
      align-items: center;
      gap: 0.65rem;
      text-decoration: none;
      color: var(--ink);
      font-weight: 700;
      letter-spacing: -0.02em;
    }
    .brand-mark {
      width: 40px;
      height: 40px;
      border-radius: 12px;
      background: linear-gradient(145deg, var(--teal), var(--teal-deep));
      color: white;
      display: grid;
      place-items: center;
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 0.95rem;
      flex-shrink: 0;
    }
    .brand-text { font-size: 1.05rem; }
    .brand-text span { color: var(--leaf); font-weight: 600; }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 0.25rem 1.25rem;
      list-style: none;
      margin: 0;
      padding: 0;
    }
    .nav-links a {
      text-decoration: none;
      color: var(--ink);
      font-weight: 500;
      font-size: 0.95rem;
    }
    .nav-links a:hover { color: var(--teal); }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.4rem;
      border: none;
      cursor: pointer;
      font-family: inherit;
      font-weight: 600;
      font-size: 0.95rem;
      border-radius: 999px;
      padding: 0.75rem 1.25rem;
      text-decoration: none;
      transition: background 0.15s ease, transform 0.15s ease, color 0.15s ease;
      min-height: 44px;
    }
    .btn:active { transform: translateY(1px); }
    .btn-primary {
      background: var(--teal);
      color: #fff !important;
      text-decoration: none;
    }
    .btn-primary:hover { background: var(--teal-deep); color: #fff !important; }
    .btn-ghost {
      background: transparent;
      color: var(--ink) !important;
      border: 1px solid var(--line);
      text-decoration: none;
    }
    .btn-ghost:hover { border-color: var(--teal); color: var(--teal) !important; }
    .btn-on-dark {
      background: #fff;
      color: var(--teal-deep) !important;
      text-decoration: none;
    }
    .btn-on-dark:hover { background: var(--sand); }

    .nav-toggle {
      display: none;
      border: 1px solid var(--line);
      background: var(--surface);
      border-radius: 10px;
      width: 44px;
      height: 44px;
      font-size: 1.25rem;
      cursor: pointer;
    }

    /* Hero */
    .hero {
      padding: 2.5rem 0 3rem;
    }
    .hero-grid {
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      gap: 2.5rem;
      align-items: center;
    }
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.82rem;
      font-weight: 600;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: var(--teal);
      margin: 0 0 0.85rem;
    }
    .eyebrow::before {
      content: "";
      width: 1.5rem;
      height: 2px;
      background: var(--leaf);
    }
    h1, h2, h3 {
      font-family: var(--font-display);
      font-weight: 600;
      letter-spacing: -0.02em;
      line-height: 1.15;
      text-wrap: pretty;
      margin: 0;
    }
    h1 { font-size: clamp(2.2rem, 4.5vw, 3.35rem); }
    h2 { font-size: clamp(1.7rem, 3vw, 2.25rem); }
    h3 { font-size: 1.2rem; }
    .lede {
      font-size: 1.12rem;
      color: var(--muted);
      max-width: 36rem;
      margin: 1rem 0 1.5rem;
    }
    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
      margin-bottom: 1.5rem;
    }
    .hero-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem 1.25rem;
      color: var(--muted);
      font-size: 0.92rem;
    }
    .hero-meta strong { color: var(--ink); font-weight: 600; }
    .hero-support {
      color: var(--muted);
      margin: 0 0 0.5rem;
      max-width: 34rem;
      font-size: 0.98rem;
    }
    .hero-actions-main {
      margin-top: 1.25rem;
      margin-bottom: 0.7rem;
    }
    .cta-note {
      max-width: 34rem;
      margin: 0 0 1.25rem;
      color: var(--muted);
      font-size: 0.9rem;
    }

    .hero-visual {
      position: relative;
    }
    .hero-visual img {
      width: 100%;
      aspect-ratio: 4 / 5;
      object-fit: cover;
      border-radius: calc(var(--radius) + 4px);
      box-shadow: var(--shadow);
    }
    .hero-chip {
      position: absolute;
      left: 1rem;
      bottom: 1rem;
      background: rgba(247, 245, 241, 0.95);
      backdrop-filter: blur(8px);
      border: 1px solid var(--line);
      border-radius: 14px;
      padding: 0.75rem 1rem;
      max-width: 16rem;
      box-shadow: var(--shadow);
      font-size: 0.9rem;
    }
    .hero-chip strong { display: block; font-family: var(--font-display); margin-bottom: 0.15rem; }

    /* Trust */
    .trust {
      background: var(--sand);
      border-block: 1px solid var(--line);
      padding: 0.25rem 0;
    }
    .trust-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 0.65rem 1.5rem;
      list-style: none;
      margin: 0;
      padding: 0;
      font-size: 0.92rem;
      font-weight: 500;
      color: var(--ink);
    }
    .trust-list li {
      display: flex;
      align-items: center;
      gap: 0.4rem;
    }
    .trust-list li::before {
      content: "✓";
      color: var(--leaf);
      font-weight: 700;
    }

    /* Sections */
    section { padding: 4rem 0; }
    .section-head {
      max-width: 36rem;
      margin-bottom: 2rem;
    }
    .section-head p {
      color: var(--muted);
      margin: 0.65rem 0 0;
    }

    /* Services */
    .cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1rem;
    }
    .card {
      background: var(--surface);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 1.35rem 1.4rem;
      box-shadow: var(--shadow);
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }
    .card .tag {
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: var(--teal);
    }
    .card p {
      margin: 0;
      color: var(--muted);
      font-size: 0.98rem;
      flex: 1;
    }
    .card .rate {
      font-size: 0.9rem;
      font-weight: 600;
      color: var(--ink);
    }
    .card .card-fit {
      flex: 0 0 auto;
      margin-top: 0.15rem;
      color: var(--ink);
      font-size: 0.92rem;
      font-weight: 600;
    }
    .card a.more {
      font-weight: 600;
      text-decoration: none;
      color: var(--teal-deep);
      margin-top: 0.35rem;
    }
    .card a.more:hover { color: var(--leaf); }
    .included-head { margin-top: 2.75rem; margin-bottom: 1rem; }
    .included-head h2 { font-size: 1.45rem; }
    .support-note {
      border-top: 1px solid var(--line);
      padding: 1.1rem 0 0.2rem;
    }
    .support-note h3 { margin-bottom: 0.4rem; }
    .support-note p { margin: 0; color: var(--muted); font-size: 0.98rem; }

    /* Gallery */
    .gallery-band { background: var(--surface); border-block: 1px solid var(--line); }
    .gallery {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr;
      grid-template-rows: 180px 180px;
      gap: 0.75rem;
    }
    .gallery figure {
      position: relative;
      min-width: 0;
      height: 100%;
      margin: 0;
      overflow: hidden;
      border-radius: 14px;
      background: var(--ink);
    }
    .gallery img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 0;
    }
    .gallery figcaption {
      position: absolute;
      right: 0;
      bottom: 0;
      left: 0;
      padding: 2.5rem 0.85rem 0.75rem;
      color: #fff;
      background: linear-gradient(transparent, rgba(26, 46, 42, 0.82));
      font-size: 0.8rem;
    }
    .gallery figcaption strong,
    .gallery figcaption span {
      display: block;
    }
    .gallery figcaption strong { font-size: 0.92rem; }
    .gallery figcaption span { color: rgba(255,255,255,0.78); margin-top: 0.1rem; }
    .gallery figure:first-child {
      grid-row: 1 / span 2;
    }

    /* Animated process path */
    .process-band {
      overflow: hidden;
      background: #edf3ee;
      border-block: 1px solid rgba(79, 143, 92, 0.18);
    }
    .process-layout {
      display: grid;
      grid-template-columns: 0.72fr 1.28fr;
      gap: clamp(2rem, 5vw, 4.5rem);
      align-items: center;
    }
    .process-intro h2 {
      max-width: 12em;
      margin-bottom: 1rem;
    }
    .process-intro > p:not(.eyebrow) {
      color: var(--muted);
      margin: 0;
    }
    .process-intro .process-note {
      margin-top: 1.2rem;
      padding-top: 1.2rem;
      border-top: 1px solid rgba(26, 46, 42, 0.14);
      color: var(--ink);
      font-size: 0.92rem;
      font-weight: 600;
    }
    .process-track {
      position: relative;
      display: flex;
      list-style: none;
      margin: 0;
      padding: 0.5rem 0;
    }
    .process-track::before,
    .process-track::after {
      position: absolute;
      z-index: 0;
      top: 1.75rem;
      left: 16.666%;
      width: 66.668%;
      height: 2px;
      content: "";
    }
    .process-track::before { background: rgba(26, 46, 42, 0.16); }
    .process-track::after {
      background: var(--teal);
      transform: scaleX(0);
      transform-origin: left center;
      transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.25s;
    }
    .process-step {
      position: relative;
      z-index: 1;
      display: flex;
      flex: 1 1 0;
      flex-direction: column;
      align-items: center;
      min-width: 0;
      padding-inline: 0.5rem;
      text-align: center;
    }
    .process-marker {
      display: grid;
      place-items: center;
      width: 2.5rem;
      height: 2.5rem;
      flex: 0 0 auto;
      border: 2px solid rgba(26, 46, 42, 0.18);
      border-radius: 999px;
      background: #edf3ee;
      color: var(--muted);
      font-size: 0.76rem;
      font-weight: 700;
      letter-spacing: 0.04em;
      transition: border-color 0.35s ease, background 0.35s ease, color 0.35s ease;
    }
    .process-step-copy {
      max-width: 13rem;
      padding-top: 1rem;
      transition: opacity 0.55s ease, transform 0.55s ease;
    }
    .process-kicker {
      margin: 0 0 0.35rem;
      color: var(--teal);
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.07em;
      text-transform: uppercase;
    }
    .process-step h3 { margin-bottom: 0.35rem; }
    .process-step-copy > p:last-child {
      margin: 0;
      color: var(--muted);
      font-size: 0.92rem;
    }
    .process-band.process-motion-ready:not(.is-visible) .process-step-copy {
      opacity: 0;
      transform: translateY(0.8rem);
    }
    .process-band.is-visible .process-track::after { transform: scaleX(1); }
    .process-band.is-visible .process-marker {
      border-color: var(--leaf);
      background: var(--surface);
      color: var(--teal-deep);
    }
    .process-band.is-visible .process-step:nth-child(1) .process-step-copy { transition-delay: 0.1s; }
    .process-band.is-visible .process-step:nth-child(2) .process-step-copy { transition-delay: 0.3s; }
    .process-band.is-visible .process-step:nth-child(3) .process-step-copy { transition-delay: 0.5s; }
    .process-band.is-visible .process-step-copy {
      opacity: 1;
      transform: none;
    }

    /* Promise */
    .promise-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 0.75rem;
    }
    .promise {
      background: var(--surface);
      border: 1px solid var(--line);
      border-radius: 14px;
      padding: 1.1rem;
    }
    .promise h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
    .promise p { margin: 0; font-size: 0.9rem; color: var(--muted); }

    /* Quotes */
    .quotes {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
    }
    .quote {
      background: var(--surface);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 1.4rem;
      box-shadow: var(--shadow);
      min-width: 0;
      overflow-wrap: anywhere;
    }
    .quote p {
      margin: 0 0 1rem;
      font-size: 1rem;
      color: var(--ink);
    }
    .quote footer {
      font-size: 0.9rem;
      color: var(--muted);
    }
    .quote footer strong { color: var(--ink); }

    /* Area */
    .area {
      background: linear-gradient(160deg, var(--teal-deep), var(--teal));
      color: #eef7f6;
      border-radius: calc(var(--radius) + 4px);
      padding: 2rem 1.75rem;
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: 1.5rem;
      align-items: center;
    }
    .area h2 { color: #fff; }
    .area p { color: rgba(255,255,255,0.88); margin: 0.6rem 0 0; }
    .cities {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
    }
    .cities span {
      background: rgba(255,255,255,0.12);
      border: 1px solid rgba(255,255,255,0.18);
      border-radius: 999px;
      padding: 0.4rem 0.8rem;
      font-size: 0.88rem;
      font-weight: 500;
    }

    /* CTA band */
    .cta-band {
      text-align: center;
      padding: 3.5rem 0 1rem;
    }
    .cta-band .lede { margin-inline: auto; }
    .cta-actions { justify-content: center; }

    /* Footer */
    footer.site-footer {
      margin-top: 2rem;
      background: var(--ink);
      color: rgba(247,245,241,0.78);
      padding: 2.5rem 0 1.5rem;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr;
      gap: 2rem;
      margin-bottom: 2rem;
    }
    .footer-brand {
      display: flex;
      gap: 0.75rem;
      align-items: flex-start;
      color: #fff;
      font-weight: 700;
      font-size: 1.1rem;
    }
    .footer-brand p {
      margin: 0.4rem 0 0;
      font-weight: 400;
      font-size: 0.92rem;
      color: rgba(247,245,241,0.7);
      max-width: 22rem;
    }
    .site-footer h3 {
      color: #fff;
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      margin-bottom: 0.75rem;
      font-family: var(--font-body);
      font-weight: 700;
    }
    .site-footer ul { list-style: none; margin: 0; padding: 0; }
    .site-footer li { margin-bottom: 0.4rem; }
    .site-footer a { color: rgba(247,245,241,0.82); text-decoration: none; }
    .site-footer a:hover { color: #fff; }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.12);
      padding-top: 1rem;
      font-size: 0.85rem;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 0.5rem;
    }

    .draft-note {
      position: fixed;
      right: 12px;
      bottom: 12px;
      z-index: 100;
      background: #222;
      color: #fff;
      font-size: 0.75rem;
      padding: 0.45rem 0.7rem;
      border-radius: 8px;
      opacity: 0.85;
      pointer-events: none;
    }

    @media (max-width: 900px) {
      .cards { grid-template-columns: 1fr; }
      .hero-grid,
      .area,
      .footer-grid { grid-template-columns: 1fr; }
      .process-layout {
        grid-template-columns: 1fr;
        gap: 1.75rem;
      }
      .process-intro h2 { max-width: 17em; }
      .gallery {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 160px 160px 160px;
      }
      .gallery figure:first-child {
        grid-column: 1 / span 2;
        grid-row: auto;
        height: 220px;
      }
      .promise-grid { grid-template-columns: 1fr 1fr; }
      .nav-toggle { display: inline-grid; place-items: center; }
      .nav-links {
        display: none;
        position: absolute;
        left: 0; right: 0;
        top: 100%;
        background: var(--bg);
        border-bottom: 1px solid var(--line);
        flex-direction: column;
        align-items: stretch;
        padding: 1rem 1.25rem 1.25rem;
        gap: 0.75rem;
      }
      .nav-links.open { display: flex; }
      .nav-links .btn { width: 100%; }
    }
    @media (max-width: 640px) {
      .cards, .quotes { grid-template-columns: 1fr; }
      .promise-grid { grid-template-columns: 1fr; }
      .footer-grid > * { min-width: 0; }
      .footer-brand { flex-direction: column; }
      .process-track {
        display: grid;
        gap: 1.5rem;
        padding: 0.5rem 0 0.5rem 1.75rem;
      }
      .process-track::before,
      .process-track::after {
        top: 1.75rem;
        bottom: 1.75rem;
        left: 0.5rem;
        width: 2px;
        height: auto;
      }
      .process-track::after {
        transform: scaleY(0);
        transform-origin: top center;
      }
      .process-band.is-visible .process-track::after { transform: scaleY(1); }
      .process-step {
        display: grid;
        grid-template-columns: auto minmax(0, 1fr);
        gap: 1rem;
        align-items: start;
        padding-inline: 0;
        text-align: left;
      }
      .process-step-copy {
        max-width: none;
        padding-top: 0.15rem;
      }
      .gallery {
        grid-template-columns: 1fr;
        grid-template-rows: none;
      }
      .gallery figure,
      .gallery figure:first-child {
        grid-column: auto;
        height: 200px;
      }
    }


    /* Page hero (inner) */
    .page-hero { padding: 2.75rem 0 1.5rem; }
    .page-hero .lede { margin-bottom: 0; }
    .split {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
      align-items: start;
    }
    .prose p { color: var(--muted); margin: 0 0 1rem; }
    .prose h2 { margin: 2rem 0 0.75rem; }
    .rate-pill {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      background: var(--sand);
      border: 1px solid var(--line);
      border-radius: 999px;
      padding: 0.45rem 0.9rem;
      font-weight: 600;
      font-size: 0.95rem;
    }
    .service-block {
      scroll-margin-top: 5rem;
      background: var(--surface);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 1.5rem;
      box-shadow: var(--shadow);
      margin-bottom: 1rem;
    }
    .service-block h2 { font-size: 1.45rem; margin-bottom: 0.5rem; }
    .service-block ul { margin: 0.75rem 0 0; padding-left: 1.15rem; color: var(--muted); }
    .service-block li { margin-bottom: 0.35rem; }
    .contact-card {
      background: var(--surface);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 1.5rem;
      box-shadow: var(--shadow);
    }
    .contact-card a.big {
      display: block;
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--teal-deep);
      text-decoration: none;
      margin: 0.35rem 0 1rem;
    }
    .contact-card a.big:hover { color: var(--leaf); }
    .faq details {
      background: var(--surface);
      border: 1px solid var(--line);
      border-radius: 12px;
      padding: 0.9rem 1rem;
      margin-bottom: 0.6rem;
    }
    .faq summary {
      cursor: pointer;
      font-weight: 600;
    }
    .faq details p { margin: 0.65rem 0 0; color: var(--muted); font-size: 0.98rem; }
    .portrait {
      width: 100%;
      aspect-ratio: 4/5;
      object-fit: cover;
      border-radius: calc(var(--radius) + 4px);
      box-shadow: var(--shadow);
    }
    @media (max-width: 900px) {
      .split { grid-template-columns: 1fr; }
    }

    .brand-logo {
      height: 54px;
      width: auto;
      max-width: min(320px, 62vw);
      object-fit: contain;
      object-position: left center;
      display: block;
      background: transparent !important;
      border: 0;
      border-radius: 0;
      padding: 0;
      box-shadow: none;
    }
    .footer-logo {
      height: 58px;
      width: auto;
      max-width: 100%;
      object-fit: contain;
      object-position: left center;
      display: block;
      background: transparent !important;
      border: 0;
      border-radius: 0;
      padding: 0;
      box-shadow: none;
      /* light SVG for dark footer — no white plate, no mix-blend */
      mix-blend-mode: normal;
      filter: none;
    }
    .nav-inner { padding: 0.95rem 0; }
    img.brand-logo, img.footer-logo { background: transparent !important; }

    .people-grid {
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      gap: 2rem;
      align-items: center;
    }
    .people-photo-main {
      width: 100%;
      aspect-ratio: 4 / 3;
      object-fit: cover;
      object-position: center 20%;
      border-radius: 18px;
      box-shadow: var(--shadow);
    }
    .people-photos {
      display: grid;
      grid-template-columns: 1fr;
      gap: 0.75rem;
    }
    .people-photos img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 16px;
      box-shadow: var(--shadow);
    }
    .include-list {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.75rem;
      margin-top: 1rem;
    }

    .video-note {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      background: var(--sand);
      border: 1px solid var(--line);
      border-radius: 999px;
      padding: 0.35rem 0.85rem;
      font-size: 0.88rem;
      font-weight: 600;
      color: var(--ink);
      margin-bottom: 0.85rem;
    }
    @media (max-width: 900px) {
      .people-grid, .include-list, .people-photos { grid-template-columns: 1fr; }
      .people-photos img:first-child,
      .people-photos img:last-child { min-height: 240px; aspect-ratio: 4/3; }
    }

    
.nav-phone {
  font-weight: 600;
  color: var(--ink) !important;
  white-space: nowrap;
}
.nav-phone:hover { color: var(--teal) !important; }
.proof-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.75rem;
  align-items: center;
  justify-content: center;
  padding: 1.1rem 0;
  font-size: 0.95rem;
  color: var(--ink);
}
.proof-bar strong { color: var(--teal-deep, var(--teal)); }
.proof-bar a { font-weight: 600; color: var(--teal); text-decoration: underline; text-underline-offset: 3px; }
.who-helps {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.85rem;
}
.who-helps span {
  background: transparent;
  border: 1px solid rgba(26, 46, 42, 0.18);
  border-radius: 999px;
  padding: 0.35rem 0.85rem;
  font-size: 0.88rem;
  font-weight: 600;
}
.review-source {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.5rem;
}
.quote footer .stars { color: #c9a227; letter-spacing: 0.05em; margin-right: 0.35rem; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; }
}
