    :root {
      --forest: #1C3D2E;
      --forest-deep: #0F2519;
      --clay: #C8571E;
      --clay-light: #E67536;
      --bone: #F2EEE5;
      --bone-dark: #E5E0D4;
      --charcoal: #2A2A2A;
      --steel: #6B6B6B;
      --mist: #F8F6F1;
      --white: #FFFFFF;
    }

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

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Inter', -apple-system, sans-serif;
      color: var(--charcoal);
      background: var(--white);
      font-size: 16px;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }

    .container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 24px;
    }

    h1, h2, h3, h4 {
      font-family: 'Archivo', sans-serif;
      color: var(--forest);
      line-height: 1.1;
    }

    a { color: var(--clay); text-decoration: none; }
    a:hover { color: var(--clay-light); }

    /* ========== TOP BAR ========== */
    .top-bar {
      background: var(--forest-deep);
      color: var(--bone);
      padding: 10px 0;
      font-size: 13px;
      font-weight: 500;
    }

    .top-bar .container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    .top-bar-left {
      display: flex;
      gap: 24px;
      align-items: center;
    }

    .top-bar-item {
      display: flex;
      align-items: center;
      gap: 8px;
      color: var(--bone-dark);
    }

    .top-bar-item svg { width: 14px; height: 14px; stroke: var(--clay-light); }

    .top-bar-cta {
      color: var(--clay-light);
      font-weight: 600;
      letter-spacing: 1px;
      text-transform: uppercase;
      font-size: 12px;
    }

    /* ========== NAV ========== */
    .site-nav {
      background: var(--forest);
      padding: 18px 0;
      position: sticky;
      top: 0;
      z-index: 100;
      border-bottom: 3px solid var(--clay);
    }

    .site-nav .container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: relative;
      flex-wrap: nowrap;
      gap: 16px;
    }

    .nav-logo { height: 46px; width: auto; max-width: min(280px, 62vw); object-fit: contain; object-position: left center; }

    .nav-links {
      display: flex;
      gap: clamp(16px, 2.5vw, 32px);
      list-style: none;
      align-items: center;
      margin: 0;
      padding: 0;
    }

    .nav-links a {
      color: var(--bone);
      font-weight: 600;
      font-size: 14px;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      transition: color 0.2s;
    }

    .nav-links a:hover { color: var(--clay-light); }

    .nav-cta {
      background: var(--clay);
      color: var(--white) !important;
      padding: 10px 22px;
      border-radius: 2px;
      letter-spacing: 1.5px;
      transition: background 0.2s;
    }

    .nav-cta:hover { background: var(--clay-light); color: var(--white) !important; }

    .mobile-toggle {
      display: none;
      flex-shrink: 0;
      align-items: center;
      justify-content: center;
      width: 44px;
      height: 44px;
      background: transparent;
      border: 2px solid rgba(242, 238, 229, 0.35);
      border-radius: 4px;
      color: var(--bone);
      font-size: 22px;
      line-height: 1;
      cursor: pointer;
      transition: border-color 0.2s, background 0.2s;
    }

    .mobile-toggle:hover {
      border-color: var(--clay-light);
      background: rgba(0, 0, 0, 0.15);
    }

    /* ========== HERO ========== */
    .hero {
      background: var(--forest);
      color: var(--bone);
      padding: 100px 0 120px;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: "";
      position: absolute;
      top: 0; right: 0;
      width: 45%;
      height: 100%;
      background-image:
        linear-gradient(135deg, transparent 40%, rgba(200, 87, 30, 0.08) 40%, rgba(200, 87, 30, 0.08) 50%, transparent 50%),
        linear-gradient(135deg, transparent 60%, rgba(200, 87, 30, 0.04) 60%, rgba(200, 87, 30, 0.04) 70%, transparent 70%);
      pointer-events: none;
    }

    .hero::after {
      content: "";
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 6px;
      background: linear-gradient(90deg, var(--clay) 0%, var(--clay-light) 100%);
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.4fr 1fr;
      gap: 60px;
      align-items: center;
      position: relative;
    }

    /* About (and similar): hero without side form — one column, no empty grid track */
    .hero-grid--single {
      grid-template-columns: 1fr;
      max-width: 720px;
    }

    .hero-eyebrow {
      display: block;
      color: var(--clay-light);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      margin-bottom: 24px;
    }

    .hero h1 {
      font-size: clamp(44px, 6vw, 76px);
      font-weight: 900;
      color: var(--bone);
      letter-spacing: -2px;
      margin-bottom: 28px;
    }

    .hero h1 .accent { color: var(--clay-light); }

    .hero-sub {
      font-size: 19px;
      line-height: 1.55;
      color: var(--bone-dark);
      max-width: 540px;
      margin-bottom: 36px;
    }

    .hero-cta-row {
      display: flex;
      gap: 16px;
      align-items: center;
      flex-wrap: wrap;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 18px 32px;
      font-family: 'Archivo', sans-serif;
      font-weight: 700;
      font-size: 15px;
      text-transform: uppercase;
      letter-spacing: 2px;
      border-radius: 2px;
      transition: all 0.2s;
      cursor: pointer;
      border: none;
    }

    .btn-primary {
      background: var(--clay);
      color: var(--white);
    }

    .btn-primary:hover {
      background: var(--clay-light);
      color: var(--white);
      transform: translateY(-2px);
    }

    .btn-secondary {
      background: transparent;
      color: var(--bone);
      border: 2px solid var(--bone);
    }

    .btn-secondary:hover {
      background: var(--bone);
      color: var(--forest);
    }

    /* Hero quote form */
    .hero-form {
      background: var(--white);
      padding: 36px 32px;
      border-radius: 4px;
      box-shadow: 0 20px 60px rgba(0,0,0,0.3);
      position: relative;
    }

    .hero-form::before {
      content: "";
      position: absolute;
      top: 0; left: 0;
      width: 60px;
      height: 4px;
      background: var(--clay);
    }

    .hero-form h3 {
      font-size: 24px;
      font-weight: 800;
      margin-bottom: 6px;
    }

    .hero-form-sub {
      color: var(--steel);
      font-size: 14px;
      margin-bottom: 24px;
    }

    .form-group { margin-bottom: 14px; }

    .form-group label {
      display: block;
      font-size: 12px;
      font-weight: 600;
      color: var(--forest);
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 6px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      padding: 12px 14px;
      border: 1.5px solid var(--bone-dark);
      border-radius: 2px;
      font-family: 'Inter', sans-serif;
      font-size: 15px;
      color: var(--charcoal);
      background: var(--mist);
      transition: border-color 0.2s, background 0.2s;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      outline: none;
      border-color: var(--clay);
      background: var(--white);
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }

    .form-submit {
      width: 100%;
      background: var(--forest);
      color: var(--bone);
      padding: 16px;
      font-family: 'Archivo', sans-serif;
      font-weight: 800;
      font-size: 15px;
      letter-spacing: 2px;
      text-transform: uppercase;
      border: none;
      border-radius: 2px;
      cursor: pointer;
      transition: background 0.2s;
      margin-top: 8px;
    }

    .form-submit:hover { background: var(--clay); }

    .form-submit:disabled {
      opacity: 0.72;
      cursor: wait;
    }

    .form-group--recaptcha {
      margin-top: 4px;
    }

    .form-recaptcha-hint {
      margin-top: 8px;
      font-size: 13px;
      color: var(--clay);
    }

    .form-feedback--error {
      margin-top: 12px;
      padding: 12px 14px;
      border-radius: 2px;
      background: #fdecea;
      color: #8a2a22;
      font-size: 14px;
      line-height: 1.45;
    }

    .form-feedback--success {
      padding: 8px 0 4px;
      color: var(--forest);
    }

    .form-feedback--success strong {
      display: block;
      font-family: 'Archivo', sans-serif;
      font-size: 22px;
      font-weight: 800;
      margin-bottom: 8px;
    }

    .form-feedback--success p {
      font-size: 15px;
      line-height: 1.55;
      color: var(--steel);
      margin: 0;
    }

    .hero-form.is-success .hero-form__fields {
      display: none;
    }

    .hero-form.is-success .form-feedback--success {
      display: block;
    }

    .form-trust {
      text-align: center;
      font-size: 12px;
      color: var(--steel);
      margin-top: 14px;
    }

    /* ========== TRUST BAR ========== */
    .trust-bar {
      background: var(--mist);
      padding: 40px 0;
      border-bottom: 1px solid var(--bone-dark);
    }

    .trust-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 30px;
      text-align: center;
    }

    .trust-item .stat {
      font-family: 'Archivo', sans-serif;
      font-size: 42px;
      font-weight: 900;
      color: var(--forest);
      line-height: 1;
      margin-bottom: 6px;
    }

    .trust-item .stat .unit {
      color: var(--clay);
      font-size: 30px;
    }

    .trust-item .label {
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: var(--steel);
      font-weight: 600;
    }

    /* ========== SERVICES ========== */
    .services {
      padding: 100px 0;
      background: var(--white);
    }

    .section-head {
      text-align: center;
      margin-bottom: 60px;
    }

    .section-eyebrow {
      display: inline-block;
      color: var(--clay);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      margin-bottom: 16px;
    }

    .process .section-eyebrow { color: var(--clay-light); }

    .section-head h2 {
      font-size: clamp(36px, 4.5vw, 52px);
      font-weight: 900;
      letter-spacing: -1px;
      margin-bottom: 16px;
      text-wrap: balance;
    }

    .section-head p {
      font-size: 18px;
      color: var(--steel);
      max-width: 640px;
      margin: 0 auto;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }

    .service-card {
      background: var(--mist);
      padding: 32px 28px;
      border-top: 4px solid var(--clay);
      transition: all 0.3s;
      display: flex;
      flex-direction: column;
      min-height: 240px;
    }

    .service-card:hover {
      background: var(--forest);
      transform: translateY(-4px);
      box-shadow: 0 12px 30px rgba(28, 61, 46, 0.25);
    }

    .service-card:hover h3,
    .service-card:hover p,
    .service-card:hover .service-link { color: var(--bone); }

    .service-card:hover .service-number { color: var(--clay-light); }

    .service-number {
      font-family: 'Archivo', sans-serif;
      font-size: 13px;
      font-weight: 800;
      color: var(--clay);
      letter-spacing: 2px;
      margin-bottom: 12px;
      transition: color 0.3s;
    }

    .service-card h3 {
      font-size: 20px;
      font-weight: 800;
      margin-bottom: 10px;
      transition: color 0.3s;
    }

    .service-card p {
      font-size: 14px;
      color: var(--steel);
      line-height: 1.5;
      margin-bottom: 20px;
      flex: 1;
      transition: color 0.3s;
    }

    .service-link {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--forest);
      display: inline-flex;
      align-items: center;
      gap: 6px;
      transition: color 0.3s, gap 0.2s;
    }

    .service-card:hover .service-link { gap: 10px; }

    /* ========== PROCESS ========== */
    .process {
      background: var(--forest);
      color: var(--bone);
      padding: 100px 0;
      position: relative;
    }

    .process .section-head h2 { color: var(--bone); }
    .process .section-head p { color: var(--bone-dark); }

    .process-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 30px;
      margin-top: 20px;
      position: relative;
    }

    .process-grid::before {
      content: "";
      position: absolute;
      top: 32px;
      left: 10%;
      right: 10%;
      height: 2px;
      background: rgba(230, 117, 54, 0.3);
      z-index: 0;
    }

    .process-step {
      text-align: center;
      position: relative;
      z-index: 1;
    }

    .process-number {
      width: 64px;
      height: 64px;
      background: var(--clay);
      color: var(--white);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Archivo', sans-serif;
      font-size: 22px;
      font-weight: 900;
      margin: 0 auto 20px;
      border: 4px solid var(--forest);
    }

    .process-step h4 {
      font-size: 18px;
      font-weight: 800;
      color: var(--bone);
      margin-bottom: 10px;
    }

    .process-step p {
      font-size: 14px;
      color: var(--bone-dark);
      line-height: 1.5;
    }

    /* ========== SERVICE AREAS ========== */
    .areas {
      padding: 100px 0;
      background: var(--mist);
    }

    .areas-grid {
      display: grid;
      grid-template-columns: 1fr 2fr;
      gap: 60px;
      align-items: start;
    }

    .areas-intro h2 {
      font-size: clamp(32px, 4vw, 44px);
      font-weight: 900;
      letter-spacing: -1px;
      margin-bottom: 20px;
    }

    .areas-intro p {
      font-size: 16px;
      color: var(--charcoal);
      line-height: 1.6;
      margin-bottom: 20px;
    }

    .area-region {
      margin-bottom: 36px;
    }

    .area-region h3 {
      font-size: 18px;
      font-weight: 800;
      color: var(--forest);
      margin-bottom: 16px;
      padding-bottom: 10px;
      border-bottom: 2px solid var(--clay);
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .area-region h3 .state-flag {
      display: inline-block;
      background: var(--clay);
      color: var(--white);
      padding: 2px 8px;
      font-size: 11px;
      letter-spacing: 1px;
      font-weight: 700;
      border-radius: 2px;
    }

    .cities-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 8px;
    }

    .city-link {
      padding: 10px 14px;
      background: var(--white);
      border: 1px solid var(--bone-dark);
      color: var(--forest);
      font-size: 14px;
      font-weight: 600;
      transition: all 0.2s;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .city-link::after {
      content: "→";
      color: var(--clay);
      opacity: 0;
      transition: opacity 0.2s;
    }

    .city-link:hover {
      background: var(--forest);
      color: var(--bone);
      border-color: var(--forest);
    }

    .city-link:hover::after { opacity: 1; color: var(--clay-light); }

    /* ========== WHY US ========== */
    .why {
      padding: 100px 0;
      background: var(--white);
    }

    .why-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
      margin-top: 40px;
    }

    .why-card {
      padding: 32px;
      border-left: 4px solid var(--clay);
      background: var(--mist);
    }

    .why-icon {
      width: 48px;
      height: 48px;
      background: var(--forest);
      color: var(--clay-light);
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 4px;
      margin-bottom: 20px;
      font-family: 'Archivo', sans-serif;
      font-size: 20px;
      font-weight: 900;
    }

    .why-card h3 {
      font-size: 22px;
      font-weight: 800;
      margin-bottom: 12px;
    }

    .why-card p {
      color: var(--steel);
      font-size: 15px;
      line-height: 1.6;
    }

    /* ========== FAQ ========== */
    .faq {
      padding: 100px 0;
      background: var(--mist);
    }

    .faq-list {
      max-width: 880px;
      margin: 40px auto 0;
    }

    .faq-item {
      background: var(--white);
      margin-bottom: 12px;
      border-left: 4px solid var(--clay);
      transition: all 0.2s;
    }

    .faq-question {
      width: 100%;
      padding: 22px 26px;
      background: none;
      border: none;
      text-align: left;
      font-family: 'Archivo', sans-serif;
      font-size: 17px;
      font-weight: 700;
      color: var(--forest);
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 20px;
    }

    .faq-toggle {
      width: 28px;
      height: 28px;
      background: var(--clay);
      color: var(--white);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 900;
      font-size: 16px;
      flex-shrink: 0;
      transition: transform 0.3s, background 0.2s;
    }

    .faq-item.active .faq-toggle {
      background: var(--forest);
      transform: rotate(45deg);
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
    }

    .faq-item.active .faq-answer { max-height: 400px; }

    .faq-answer-inner {
      padding: 0 26px 24px;
      font-size: 15px;
      line-height: 1.65;
      color: var(--charcoal);
    }

    /* ========== CTA STRIP ========== */
    .cta-strip {
      background: var(--clay);
      color: var(--white);
      padding: 70px 0;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .cta-strip::before,
    .cta-strip::after {
      content: "";
      position: absolute;
      top: 0;
      bottom: 0;
      width: 30%;
      background-image: repeating-linear-gradient(45deg, transparent, transparent 14px, rgba(0,0,0,0.06) 14px, rgba(0,0,0,0.06) 28px);
    }
    .cta-strip::before { left: 0; }
    .cta-strip::after { right: 0; }

    .cta-strip .container { position: relative; z-index: 1; }

    .cta-strip h2 {
      color: var(--white);
      font-size: clamp(32px, 4vw, 46px);
      font-weight: 900;
      letter-spacing: -1px;
      margin-bottom: 16px;
    }

    .cta-strip p {
      font-size: 18px;
      margin-bottom: 28px;
      color: rgba(255,255,255,0.9);
    }

    .cta-strip .btn {
      background: var(--white);
      color: var(--clay);
      padding: 20px 40px;
      font-size: 16px;
    }

    .cta-strip .btn:hover {
      background: var(--forest);
      color: var(--white);
    }

    /* ========== FOOTER ========== */
    footer {
      background: var(--forest-deep);
      color: var(--bone-dark);
      padding: 70px 0 30px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 40px;
      margin-bottom: 50px;
    }

    .footer-brand img { height: 42px; margin-bottom: 20px; }

    .footer-brand p {
      font-size: 14px;
      color: var(--bone-dark);
      line-height: 1.6;
      margin-bottom: 20px;
      max-width: 320px;
    }

    .footer-contact {
      font-size: 14px;
      color: var(--bone-dark);
    }

    .footer-contact strong { color: var(--clay-light); }

    .social-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 20px;
    }

    .social-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 10px 14px;
      border: 1px solid rgba(242, 238, 229, 0.18);
      border-radius: 999px;
      background: rgba(242, 238, 229, 0.04);
      color: var(--bone);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.2px;
      transition: border-color 0.2s, color 0.2s, background 0.2s;
    }

    .social-badge svg {
      width: 16px;
      height: 16px;
      stroke: currentColor;
      fill: none;
      stroke-width: 1.8;
      flex-shrink: 0;
    }

    .social-badge:hover {
      color: var(--clay-light);
      border-color: rgba(230, 117, 54, 0.6);
      background: rgba(200, 87, 30, 0.08);
    }

    .social-badge--disabled {
      opacity: 0.72;
      cursor: default;
    }

    .footer-col h4 {
      color: var(--bone);
      font-size: 13px;
      font-weight: 800;
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-bottom: 18px;
    }

    .footer-col ul { list-style: none; }

    .footer-col li { margin-bottom: 10px; }

    .footer-col a {
      color: var(--bone-dark);
      font-size: 14px;
      transition: color 0.2s;
    }

    .footer-col a:hover { color: var(--clay-light); }

    .footer-bottom {
      border-top: 1px solid rgba(242, 238, 229, 0.1);
      padding-top: 24px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 12px;
      color: var(--steel);
      flex-wrap: wrap;
      gap: 12px;
    }

    /* ========== RESPONSIVE ========== */
    @media (max-width: 1100px) {
      .nav-links a { font-size: 13px; letter-spacing: 1px; }
      .nav-cta { padding: 10px 16px; }
    }

    @media (max-width: 900px) {
      .mobile-toggle { display: flex; }
      .nav-links {
        display: none;
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        margin-top: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: var(--forest-deep);
        padding: 8px 0 12px;
        border-bottom: 2px solid var(--clay);
        box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
        z-index: 99;
      }
      .site-nav.is-open .nav-links { display: flex; }
      .nav-links li { width: 100%; }
      .nav-links a {
        display: block;
        padding: 14px 22px;
        border-bottom: 1px solid rgba(242, 238, 229, 0.08);
      }
      .nav-links a.nav-cta {
        margin: 12px 16px 8px;
        text-align: center;
        border-bottom: none;
      }
    }

    @media (max-width: 1024px) {
      .hero-grid { grid-template-columns: 1fr; }
      .services-grid { grid-template-columns: repeat(2, 1fr); }
      .process-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
      .process-grid::before { display: none; }
      .areas-grid { grid-template-columns: 1fr; }
      .why-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    }

    @media (max-width: 640px) {
      .top-bar .container { flex-direction: column; gap: 8px; }
      .top-bar-left { flex-direction: column; gap: 6px; }
      .services-grid { grid-template-columns: 1fr; }
      .cities-grid { grid-template-columns: repeat(2, 1fr); }
      .footer-grid { grid-template-columns: 1fr; }
      .form-row { grid-template-columns: 1fr; }
      .hero { padding: 60px 0 80px; }
      .hero-cta-row { flex-direction: column; align-items: stretch; }
      .btn { justify-content: center; }
    }

    /* Programmatic inner pages */
    /* Inner pages: section is .hero.page-hero (same element — not .page-hero .hero) */
    .hero.page-hero {
      padding: clamp(56px, 8vw, 72px) 0 clamp(72px, 10vw, 96px);
    }
    .hero.page-hero h1 {
      font-size: clamp(20px, 2.2vw + 0.9rem, 36px);
      letter-spacing: -0.04em;
      line-height: 1.12;
      text-wrap: balance;
      margin-bottom: clamp(16px, 3vw, 26px);
    }
    .hero.page-hero .hero-sub {
      max-width: 640px;
      font-size: clamp(16px, 1.1vw + 0.85rem, 19px);
    }
    .content-section { padding: 72px 0; }
    .content-section.alt-bg { background: var(--mist); }
    .content-section h2 { font-size: clamp(26px, 3vw, 38px); margin-bottom: 20px; color: var(--forest); font-family: 'Archivo', sans-serif; }
    .content-section .prose { max-width: 760px; margin: 0 auto; }
    .content-section .prose p { font-size: 17px; line-height: 1.65; color: var(--charcoal); margin-bottom: 16px; }
    .content-section .prose--center,
    .content-section .prose--center p {
      text-align: center;
    }
    .testimonials-section .content-footnote {
      text-align: center;
    }
    .testimonials-section .content-footnote a {
      color: var(--clay-light);
      font-weight: 600;
    }
    .testimonials-section {
      position: relative;
      overflow: hidden;
      background: linear-gradient(145deg, var(--forest-deep) 0%, var(--forest) 52%, #255340 100%) !important;
      color: var(--bone);
    }
    .testimonials-section::before,
    .testimonials-section::after {
      content: "";
      position: absolute;
      border-radius: 50%;
      pointer-events: none;
    }
    .testimonials-section::before {
      top: -120px;
      right: -80px;
      width: 360px;
      height: 360px;
      background: radial-gradient(circle, rgba(200, 87, 30, 0.22) 0%, transparent 68%);
    }
    .testimonials-section::after {
      bottom: -140px;
      left: -100px;
      width: 320px;
      height: 320px;
      background: radial-gradient(circle, rgba(242, 238, 229, 0.08) 0%, transparent 70%);
    }
    .testimonials-section .container {
      position: relative;
      z-index: 1;
    }
    .testimonials-section .service-block-header h2 {
      color: var(--bone);
    }
    .testimonials-section .service-block-header .section-eyebrow {
      color: var(--clay-light);
    }
    .testimonials-section .prose p {
      color: rgba(242, 238, 229, 0.88);
    }
    .testimonials-section .prose--center,
    .testimonials-section .prose--center p {
      text-align: center;
      text-wrap: balance;
    }
    .testimonials-trust-bar {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      gap: 14px 18px;
      margin: 4px auto 28px;
      padding: 12px 20px;
      max-width: fit-content;
      border: 1px solid rgba(242, 238, 229, 0.16);
      border-radius: 999px;
      background: rgba(15, 37, 25, 0.35);
      backdrop-filter: blur(6px);
    }
    .testimonials-trust-stat {
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 0.2px;
      color: rgba(242, 238, 229, 0.92);
    }
    .testimonials-trust-stat strong {
      color: var(--clay-light);
      font-family: 'Archivo', sans-serif;
      font-size: 18px;
      font-weight: 800;
    }
    .testimonials-trust-divider {
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: var(--clay);
      opacity: 0.85;
    }
    .check-list { list-style: none; margin: 0; padding: 0; max-width: 760px; margin-left: auto; margin-right: auto; }
    .check-list li { position: relative; padding: 14px 0 14px 36px; border-bottom: 1px solid var(--bone-dark); font-size: 16px; color: var(--charcoal); }
    .check-list li::before { content: ""; position: absolute; left: 0; top: 20px; width: 10px; height: 10px; background: var(--clay); border-radius: 2px; }
    .link-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(min(100%, 200px), 1fr));
      gap: 12px;
      margin-top: 20px;
    }
    .link-grid a {
      display: flex;
      align-items: center;
      padding: 14px 16px;
      min-height: 48px;
      background: var(--mist);
      border: 1px solid var(--bone-dark);
      color: var(--forest);
      font-weight: 600;
      font-size: 15px;
      transition: all 0.2s;
    }
    .link-grid a:hover { background: var(--forest); color: var(--bone); border-color: var(--forest); }
    .equipment-list { list-style: disc; padding-left: 22px; max-width: 720px; margin: 0 auto; color: var(--charcoal); }
    .equipment-list li { margin-bottom: 8px; font-size: 16px; }
    .faq-item.active .faq-answer { max-height: 1200px; }

    /* Programmatic inner pages (service hubs, city hubs, service×city) */
    .programmatic-inner .content-section {
      padding: clamp(48px, 6vw + 20px, 88px) 0;
    }
    .programmatic-inner .process,
    .programmatic-inner .faq {
      padding-top: clamp(48px, 7vw + 16px, 100px);
      padding-bottom: clamp(48px, 7vw + 16px, 100px);
    }
    .programmatic-inner .section-head {
      margin-bottom: clamp(32px, 5vw, 56px);
    }
    .programmatic-inner .content-section-lead {
      max-width: 720px;
      margin: 0 auto 24px;
      font-size: clamp(16px, 2vw, 18px);
      line-height: 1.65;
      color: var(--steel);
      text-align: left;
      text-wrap: pretty;
    }
    .programmatic-inner .content-section-crosslinks {
      margin-top: clamp(18px, 3.5vw, 28px);
      text-align: center;
      font-size: 15px;
      line-height: 1.65;
      color: var(--charcoal);
    }
    .programmatic-inner .content-section-crosslinks a {
      font-weight: 600;
    }
    .programmatic-inner .content-section-crosslinks__sep {
      color: var(--steel);
      padding: 0 0.3em;
    }
    /* Center related / nearby link clusters (grid + 1fr leaves ragged left alignment) */
    .programmatic-inner .link-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: stretch;
      gap: 12px;
      max-width: 960px;
      margin-left: auto;
      margin-right: auto;
      margin-top: 16px;
    }
    .programmatic-inner .link-grid a {
      flex: 1 1 240px;
      max-width: 380px;
      min-width: 0;
      justify-content: center;
      text-align: center;
    }
    @media (max-width: 520px) {
      .programmatic-inner .container {
        padding-left: max(16px, env(safe-area-inset-left, 0px));
        padding-right: max(16px, env(safe-area-inset-right, 0px));
      }
    }

    /* Service hub — overview, equipment, pricing, service area */
    .service-block-header {
      max-width: 720px;
      margin-left: auto;
      margin-right: auto;
      margin-bottom: clamp(24px, 4vw, 36px);
      text-align: center;
    }
    .service-block-header .section-eyebrow { margin-bottom: 10px; }
    .service-block-header h2 {
      margin-bottom: 0;
      text-wrap: balance;
    }
    .service-lead {
      margin: 16px 0 0;
      font-size: clamp(16px, 2vw, 18px);
      line-height: 1.6;
      color: var(--charcoal);
      max-width: 560px;
      margin-left: auto;
      margin-right: auto;
    }
    .service-prose {
      max-width: 760px;
      margin: 0 auto;
    }
    .service-prose p {
      font-size: clamp(16px, 2.1vw, 18px);
      line-height: 1.7;
      color: var(--charcoal);
      margin: 0 0 1.1em;
    }
    .service-prose p:last-child { margin-bottom: 0; }

    .equipment-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
      gap: 14px 16px;
      max-width: 960px;
      margin: 0 auto;
      list-style: none;
      padding: 0;
    }
    .equipment-card {
      background: var(--bone);
      border: 1px solid var(--bone-dark);
      border-radius: 8px;
      padding: 18px 20px;
      min-height: 56px;
      display: flex;
      align-items: center;
      transition: border-color 0.2s, box-shadow 0.2s;
    }
    .equipment-card:hover {
      border-color: var(--clay);
      box-shadow: 0 4px 20px rgba(26, 42, 35, 0.06);
    }
    .equipment-card__text {
      font-size: 16px;
      line-height: 1.45;
      font-weight: 600;
      color: var(--forest);
    }

    .pricing-cards {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: clamp(14px, 3vw, 24px);
      max-width: 800px;
      margin: 0 auto clamp(20px, 3vw, 28px);
    }
    .pricing-card {
      background: var(--mist);
      border: 1px solid var(--bone-dark);
      border-radius: 10px;
      padding: clamp(20px, 4vw, 28px);
      min-height: 120px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 10px;
    }
    .pricing-card__label {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--clay);
    }
    .pricing-card__value {
      margin: 0;
      font-size: clamp(16px, 2.2vw, 19px);
      line-height: 1.55;
      color: var(--charcoal);
      font-weight: 500;
    }
    .pricing-footnote {
      max-width: 640px;
      margin: 0 auto;
      text-align: center;
      font-size: 15px;
      line-height: 1.65;
      color: var(--charcoal);
      opacity: 0.92;
    }

    .city-tile-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(min(100%, 240px), 1fr));
      gap: 12px;
      max-width: 1100px;
      margin: 0 auto;
      padding: 0;
      list-style: none;
    }
    .city-tile {
      display: grid;
      grid-template-columns: 1fr auto auto;
      align-items: center;
      gap: 10px 12px;
      padding: 16px 18px;
      min-height: 56px;
      background: var(--bone);
      border: 1px solid var(--bone-dark);
      border-radius: 8px;
      color: var(--forest);
      text-decoration: none;
      font-weight: 600;
      transition: border-color 0.2s, background 0.2s, transform 0.15s;
    }
    .city-tile:hover {
      border-color: var(--forest);
      background: var(--mist);
    }
    .city-tile:active { transform: scale(0.99); }
    .city-tile__name {
      font-size: 16px;
      line-height: 1.3;
      color: var(--forest);
    }
    .city-tile__state {
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.04em;
      color: var(--clay);
      text-transform: uppercase;
    }
    .city-tile__arrow {
      font-size: 18px;
      color: var(--clay);
      line-height: 1;
    }

    @media (max-width: 640px) {
      .pricing-cards { grid-template-columns: 1fr; }
      .city-tile-grid { grid-template-columns: 1fr; }
      .equipment-grid { grid-template-columns: 1fr; }
    }

    @media (max-width: 400px) {
      .city-tile {
        grid-template-columns: 1fr auto;
        grid-template-rows: auto auto;
      }
      .city-tile__name { grid-column: 1 / -1; }
      .city-tile__state { grid-column: 1; grid-row: 2; }
      .city-tile__arrow { grid-column: 2; grid-row: 2; justify-self: end; }
    }

    .legal-meta {
      margin-top: 8px;
      font-size: 15px;
      color: var(--steel);
    }
    .content-section .prose h2 {
      font-size: clamp(20px, 2.2vw, 26px);
      margin: 2rem 0 0.75rem;
      color: var(--forest);
      font-family: 'Archivo', sans-serif;
    }
    .content-section .prose h2:first-child { margin-top: 0; }
    .footer-contact-note {
      display: block;
      margin-top: 10px;
      font-size: 14px;
      color: var(--steel);
      line-height: 1.5;
    }
    .optional-label {
      font-weight: 400;
      color: var(--steel);
      font-size: 13px;
    }

    /* Honeypot for FormSubmit (_honey): must stay empty; hidden from view and tab order */
    .quote-honeypot {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border-width: 0;
    }

    /* Inner-page breadcrumb (hero band) */
    .page-hero-breadcrumb {
      font-size: 14px;
      font-weight: 500;
      margin-bottom: clamp(16px, 3vw, 22px);
      color: var(--bone-dark);
    }
    .page-hero-breadcrumb a {
      color: var(--clay-light);
      text-decoration: none;
      font-weight: 600;
    }
    .page-hero-breadcrumb a:hover {
      color: var(--bone);
      text-decoration: underline;
      text-underline-offset: 3px;
    }
    .page-hero-breadcrumb__sep {
      margin: 0 0.45em;
      opacity: 0.55;
    }
    .page-hero-breadcrumb__current {
      color: var(--bone);
      font-weight: 600;
    }

    /* About page — matches content-section + equipment-card language */
    .about-intro-layout {
      display: grid;
      gap: clamp(28px, 4vw, 40px);
      align-items: start;
    }
    @media (min-width: 900px) {
      .about-intro-layout {
        grid-template-columns: 1fr minmax(240px, 34%);
        align-items: center;
      }
    }
    .about-intro-layout__text {
      max-width: none;
      margin: 0;
    }

    .about-media-slot {
      margin: 0;
      min-height: 220px;
      border: 1px solid var(--bone-dark);
      border-radius: 8px;
      background: var(--bone);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: clamp(22px, 3vw, 32px) 20px;
      color: var(--charcoal);
    }
    .content-section.alt-bg .about-media-slot {
      background: var(--white);
    }
    .about-media-slot--wide {
      min-height: 200px;
      margin-top: clamp(24px, 4vw, 36px);
      max-width: 880px;
      margin-left: auto;
      margin-right: auto;
    }
    @media (min-width: 700px) {
      .about-media-slot--wide {
        min-height: 240px;
      }
    }
    .about-media-slot__label {
      font-family: 'Archivo', sans-serif;
      font-weight: 700;
      font-size: 12px;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: var(--forest);
      margin: 0 0 8px;
    }
    .about-media-slot__hint {
      margin: 0;
      font-size: 14px;
      line-height: 1.55;
      color: var(--steel);
      max-width: 320px;
    }

    .about-closing .service-block-header {
      margin-bottom: clamp(12px, 2vw, 18px);
    }
    .about-closing .prose {
      margin-bottom: 0;
    }
    .about-mission {
      max-width: 720px;
      margin: clamp(28px, 4vw, 40px) auto 0;
      text-align: center;
    }
    .about-mission__lead {
      font-family: 'Archivo', sans-serif;
      font-size: clamp(20px, 2.2vw, 26px);
      font-weight: 700;
      line-height: 1.4;
      color: var(--forest);
      margin: 0 0 12px;
    }
    .about-mission__signoff {
      font-size: clamp(16px, 1.5vw, 18px);
      font-weight: 500;
      color: var(--charcoal);
      margin: 0;
    }

    .about-media-slot--text {
      align-items: flex-start;
      justify-content: flex-start;
      text-align: left;
    }
    .about-media-slot--text .about-media-slot__hint {
      max-width: none;
      color: var(--charcoal);
    }

    .answer-box {
      background: var(--mist);
      border: 1px solid var(--bone-dark);
      border-radius: 8px;
      padding: clamp(20px, 3vw, 28px);
      margin-bottom: 24px;
    }
    .answer-box h2 {
      font-size: clamp(28px, 3vw, 38px);
      margin-bottom: 14px;
    }
    .answer-box__eyebrow {
      display: inline-block;
      font-family: 'Archivo', sans-serif;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 1.4px;
      text-transform: uppercase;
      color: var(--clay);
      margin-bottom: 10px;
    }
    .answer-box__text {
      margin: 0;
      font-size: 17px;
      line-height: 1.7;
      color: var(--charcoal);
      max-width: 900px;
    }

    .card-grid,
    .info-card-grid {
      display: grid;
      gap: 24px;
      margin-top: 24px;
    }
    .card-grid {
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    .info-card-grid {
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
    .feature-card,
    .info-card,
    .thanks-panel,
    .summary-panel,
    .testimonial-empty-state {
      background: var(--white);
      border: 1px solid var(--bone-dark);
      border-radius: 8px;
      padding: clamp(22px, 3vw, 30px);
      box-shadow: 0 10px 28px rgba(18, 26, 22, 0.05);
    }
    .content-section.alt-bg .feature-card,
    .content-section.alt-bg .info-card,
    .content-section.alt-bg .summary-panel,
    .content-section.alt-bg .testimonial-empty-state {
      background: var(--mist);
    }
    .feature-card h3,
    .info-card h3,
    .summary-panel h3,
    .testimonial-empty-state h2,
    .thanks-panel h2 {
      font-size: clamp(22px, 2vw, 28px);
      margin-bottom: 14px;
    }
    .feature-card p,
    .info-card p,
    .summary-panel p,
    .testimonial-empty-state p,
    .thanks-panel p {
      margin: 0 0 14px;
      color: var(--charcoal);
    }
    .feature-card a,
    .info-card a {
      font-weight: 700;
    }
    .feature-card__eyebrow,
    .info-card__eyebrow {
      display: inline-block;
      margin-bottom: 10px;
      font-family: 'Archivo', sans-serif;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 1.3px;
      text-transform: uppercase;
      color: var(--clay);
    }
    .feature-card--muted {
      background: var(--mist);
    }

    .summary-panel__meta {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 16px;
    }
    .summary-chip {
      display: inline-flex;
      align-items: center;
      padding: 8px 12px;
      border-radius: 999px;
      background: rgba(28, 61, 46, 0.08);
      color: var(--forest);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.3px;
    }
    .summary-panel__text {
      font-size: 18px;
      line-height: 1.7;
    }

    .content-footnote {
      margin-top: 24px;
      font-size: 14px;
      line-height: 1.6;
      color: var(--steel);
    }

    .thanks-panel {
      max-width: 860px;
      margin: 0 auto;
    }
    .number-list {
      margin: 20px 0 0;
      padding-left: 24px;
      display: grid;
      gap: 12px;
      color: var(--charcoal);
    }
    .number-list li {
      padding-left: 6px;
    }

    .testimonial-empty-state {
      margin-top: 24px;
      max-width: 840px;
    }

    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }

    .testimonials-grid {
      display: flex;
      flex-direction: column;
      gap: clamp(28px, 4vw, 36px);
      max-width: 760px;
      margin: 12px auto 0;
    }

    .testimonials-grid .testimonial-card {
      flex: none;
      width: 100%;
      scroll-snap-align: unset;
    }

    .testimonials-grid .testimonial-card__footer {
      order: -1;
      padding-top: 0;
      padding-bottom: 18px;
      border-top: 0;
      border-bottom: 1px solid var(--bone-dark);
    }

    .testimonials-grid .testimonial-card__quote p {
      font-size: clamp(17px, 1.8vw, 19px);
      line-height: 1.85;
      letter-spacing: 0.01em;
    }

    .testimonial-card {
      position: relative;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 22px;
      min-height: 100%;
      background: var(--white);
      border: 1px solid rgba(242, 238, 229, 0.65);
      border-radius: 16px;
      padding: clamp(26px, 3.5vw, 34px);
      box-shadow:
        0 4px 6px rgba(15, 37, 25, 0.04),
        0 18px 40px rgba(15, 37, 25, 0.12);
      transition: transform 0.25s ease, box-shadow 0.25s ease;
      overflow: hidden;
    }

    .testimonial-card::before {
      content: "\201C";
      position: absolute;
      top: -8px;
      right: 18px;
      font-family: 'Archivo', sans-serif;
      font-size: clamp(88px, 12vw, 120px);
      line-height: 1;
      font-weight: 900;
      color: rgba(28, 61, 46, 0.06);
      pointer-events: none;
    }

    .testimonial-card::after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--clay) 0%, var(--clay-light) 100%);
    }

    .testimonial-card:hover {
      transform: translateY(-5px);
      box-shadow:
        0 8px 12px rgba(15, 37, 25, 0.06),
        0 28px 52px rgba(15, 37, 25, 0.18);
    }

    .content-section.alt-bg .testimonial-card {
      background: var(--white);
    }

    .testimonial-card__quote {
      position: relative;
      z-index: 1;
      margin: 0;
      padding: 0;
      border: 0;
      flex: 1;
    }

    .testimonial-card__quote p {
      margin: 0;
      color: var(--charcoal);
      font-size: clamp(16px, 1.6vw, 18px);
      line-height: 1.75;
    }

    .testimonial-card__footer {
      position: relative;
      z-index: 1;
      display: flex;
      align-items: center;
      gap: 14px;
      margin: 0;
      padding-top: 18px;
      border-top: 1px solid var(--bone-dark);
    }

    .testimonial-card__avatar {
      flex: 0 0 auto;
      width: 48px;
      height: 48px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(145deg, var(--forest) 0%, #2a5a45 100%);
      color: var(--bone);
      font-family: 'Archivo', sans-serif;
      font-size: 15px;
      font-weight: 800;
      letter-spacing: 0.4px;
      box-shadow: 0 6px 16px rgba(28, 61, 46, 0.22);
    }

    .testimonial-card__meta {
      display: flex;
      flex-direction: column;
      gap: 4px;
      min-width: 0;
    }

    .testimonial-card__name {
      font-family: 'Archivo', sans-serif;
      font-size: 16px;
      font-weight: 800;
      font-style: normal;
      letter-spacing: 0.2px;
      color: var(--forest);
    }

    .testimonial-card__badge {
      display: inline-flex;
      align-items: center;
      width: fit-content;
      padding: 3px 10px;
      border-radius: 999px;
      background: rgba(28, 61, 46, 0.08);
      color: var(--forest);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.6px;
      text-transform: uppercase;
    }

    .testimonial-card__badge::before {
      content: "";
      width: 6px;
      height: 6px;
      margin-right: 6px;
      border-radius: 50%;
      background: var(--clay);
    }

    .testimonials-carousel {
      position: relative;
      margin-top: 4px;
    }

    .testimonials-carousel::before,
    .testimonials-carousel::after {
      content: "";
      position: absolute;
      top: 0;
      bottom: 56px;
      width: min(48px, 8vw);
      z-index: 2;
      pointer-events: none;
    }

    .testimonials-carousel::before {
      left: 0;
      background: linear-gradient(to right, var(--forest-deep), transparent);
    }

    .testimonials-carousel::after {
      right: 0;
      background: linear-gradient(to left, var(--forest-deep), transparent);
    }

    .testimonials-section:not(.alt-bg) .testimonials-carousel::before {
      background: linear-gradient(to right, rgba(15, 37, 25, 0.95), transparent);
    }

    .testimonials-section:not(.alt-bg) .testimonials-carousel::after {
      background: linear-gradient(to left, rgba(15, 37, 25, 0.95), transparent);
    }

    .testimonials-track {
      display: flex;
      gap: 24px;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      scroll-behavior: smooth;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      padding: 8px 4px 12px;
    }

    .testimonials-track::-webkit-scrollbar {
      display: none;
    }

    .testimonials-controls {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      margin-top: 28px;
    }

    .testimonials-nav {
      width: 46px;
      height: 46px;
      border: 1px solid rgba(242, 238, 229, 0.22);
      border-radius: 999px;
      background: rgba(15, 37, 25, 0.45);
      color: var(--bone);
      font-family: 'Archivo', sans-serif;
      font-size: 20px;
      font-weight: 700;
      line-height: 1;
      cursor: pointer;
      transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
    }

    .testimonials-nav:hover,
    .testimonials-nav:focus-visible {
      background: var(--clay);
      border-color: var(--clay);
      color: var(--white);
      transform: scale(1.05);
      outline: none;
    }

    .testimonials-dots {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .testimonials-dot {
      width: 10px;
      height: 10px;
      padding: 0;
      border: 0;
      border-radius: 999px;
      background: rgba(242, 238, 229, 0.28);
      cursor: pointer;
      transition: transform 0.2s, background 0.2s, width 0.2s;
    }

    .testimonials-dot.is-active {
      width: 28px;
      background: var(--clay-light);
      transform: none;
    }

    .testimonials-track .testimonial-card {
      scroll-snap-align: center;
      flex: 0 0 min(100%, 540px);
    }

    @media (min-width: 900px) {
      .testimonials-track .testimonial-card {
        flex-basis: min(82%, 580px);
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .testimonials-track {
        scroll-behavior: auto;
      }
      .testimonial-card:hover {
        transform: none;
      }
      .testimonials-nav:hover,
      .testimonials-nav:focus-visible {
        transform: none;
      }
    }

    @media (max-width: 720px) {
      .card-grid,
      .info-card-grid {
        grid-template-columns: 1fr;
      }
    }
