    @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@600;700;800&display=swap');

    /* ==================================================================
       Brand tokens — keep red and black only. No navy, no blue.
       Locked per Continuity doc + CLAUDE.md.
       ================================================================== */
    :root {
      --red:        #E8231A;
      --red-hover:  #C71B14;
      --red-tint:   #FFEFEE;
      --ink:        #1A1A1A;
      --ink-2:      #3A3A3A;
      --muted:      #6A6A6A;
      --line:       #E5E5E5;
      --bg:         #FFFFFF;
      --bg-soft:    #F5F5F5;
      --shadow-sm:  0 2px 8px rgba(0,0,0,.08);
      --shadow-md:  0 6px 18px rgba(0,0,0,.10);
      --shadow-lg:  0 12px 32px rgba(0,0,0,.18);
      --radius:     12px;
      --radius-sm:  8px;
      --tx:         .2s ease;
      --content-w:  1180px;
    }

    /* ==================================================================
       Reset + base
       ================================================================== */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
    body {
      font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
      color: var(--ink-2);
      background: var(--bg);
      line-height: 1.6;
      overflow-x: hidden;
      font-size: 16px;
    }
    h1, h2, h3, h4 {
      font-family: 'Poppins', 'Inter', sans-serif;
      color: var(--ink);
      line-height: 1.2;
      font-weight: 700;
    }
    h1 { font-size: clamp(36px, 6vw, 60px); font-weight: 800; }
    h2 { font-size: clamp(28px, 4vw, 42px); }
    h3 { font-size: 20px; }
    p  { font-size: 16px; }
    a  { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }
    button { font-family: inherit; cursor: pointer; border: 0; background: none; }
    input, textarea, select { font-family: inherit; }

    /* Skip-link for screen readers — visible on focus */
    .skip {
      position: absolute; top: -40px; left: 12px;
      background: var(--ink); color: #fff;
      padding: 8px 14px; border-radius: 6px;
      z-index: 2000; transition: top var(--tx);
    }
    .skip:focus { top: 12px; }

    .container {
      max-width: var(--content-w);
      margin: 0 auto;
      padding: 0 24px;
    }

    /* Buttons */
    .btn {
      display: inline-flex; align-items: center; justify-content: center;
      padding: 14px 28px;
      border-radius: 999px;
      font-weight: 700;
      font-size: 16px;
      letter-spacing: .2px;
      transition: background var(--tx), color var(--tx), transform var(--tx), box-shadow var(--tx);
      white-space: nowrap;
    }
    .btn-red { background: var(--red); color: #fff; }
    .btn-red:hover { background: var(--red-hover); transform: translateY(-1px); box-shadow: var(--shadow-md); }
    .btn-outline-white {
      border: 2px solid #fff; color: #fff; padding: 12px 26px;
    }
    .btn-outline-white:hover { background: #fff; color: var(--ink); }
    .btn-outline-ink {
      border: 2px solid var(--ink); color: var(--ink); padding: 12px 26px;
      background: transparent;
    }
    .btn-outline-ink:hover { background: var(--ink); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow-md); }
    .btn-white { background: #fff; color: var(--red); }
    .btn-white:hover { background: var(--red-tint); }
    .btn-block { width: 100%; }

    /* Fade-in-up scroll animation (Intersection Observer in JS) */
    .reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
    .reveal.in { opacity: 1; transform: translateY(0); }

    /* ==================================================================
       YP-faithful header — mirrors the legacy Yellow Pages home page:
         Top white band: huge logo (left) | line-of-movers banner (centre)
                         | phone pill + SD badge stacked (right)
         Bottom: black nav band
       ================================================================== */
    .navbar {
      position: relative;     /* not sticky — matches the YP behaviour */
      background: #fff;
      z-index: 50;
      border-bottom: 0;
    }
    .yp-header-top {
      position: relative;
      display: grid;
      grid-template-columns: 340px 800px 1fr;
      align-items: center;
      gap: 16px;
      max-width: 1500px;
      margin: 0 auto;
      padding: 14px 24px 14px;
    }
    /* Left — big arrows logo + slogan stacked below */
    .yp-header-logo {
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .yp-logo-big {
      width: 100%;
      max-width: 340px;
      height: auto;
      display: block;
    }
    .yp-logo-slogan {
      font-family: 'Poppins', sans-serif;
      font-weight: 800;
      font-size: clamp(20px, 2vw, 26px);
      color: var(--ink);
      letter-spacing: -.3px;
      margin-top: 6px;
      width: 100%;
      text-align: center;
    }
    .yp-logo-slogan .accent { color: var(--red); }
    /* Banner column — fixed 800x328 to match YP exactly */
    .yp-header-banner {
      width: 800px;
      height: 328px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }
    .yp-header-banner img {
      width: 800px;
      height: 328px;
      object-fit: cover;
      display: block;
    }
    /* Right column — phone pill on top, SD badge below */
    .yp-header-side {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      justify-content: space-between;
      gap: 14px;
      height: 328px;
      padding: 8px 0;
    }
    .yp-header-phone {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--ink);
      color: #fff;
      padding: 10px 20px;
      border-radius: 999px;
      font-weight: 700;
      font-size: 15px;
      box-shadow: var(--shadow-md);
      transition: background var(--tx), transform var(--tx);
      white-space: nowrap;
    }
    .yp-header-phone:hover { background: var(--red); transform: translateY(-1px); }
    .yp-header-phone strong { color: #FFD400; font-weight: 800; }
    .yp-header-sd {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      width: 62px; height: 62px;
      background: var(--ink);
      color: #fff;
      border-radius: 4px;
      text-align: center;
      line-height: 1.0;
      box-shadow: var(--shadow-md);
      flex-shrink: 0;
    }
    .yp-header-sd .sd-letters {
      font-family: 'Poppins', sans-serif;
      font-weight: 800;
      font-size: 22px;
      color: #fff;
      letter-spacing: -1px;
    }
    .yp-header-sd .sd-text {
      font-size: 7px;
      font-weight: 700;
      letter-spacing: .5px;
      text-transform: uppercase;
      margin-top: 1px;
      color: #fff;
    }

    /* Black nav band */
    .yp-nav-band {
      background: var(--ink);
      border-top: 1px solid #2a2a2a;
    }
    .yp-nav-band .nav-links {
      display: flex;
      align-items: stretch;
      justify-content: center;
      gap: 0;
      list-style: none;
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 16px;
      flex-wrap: wrap;
    }
    .yp-nav-band .nav-links li { display: flex; }
    .yp-nav-band .nav-links a {
      display: inline-flex;
      align-items: center;
      padding: 16px 18px;
      font-weight: 700;
      font-size: 14.5px;
      color: #fff;
      letter-spacing: .3px;
      transition: background var(--tx), color var(--tx);
    }
    .yp-nav-band .nav-links a:hover {
      background: #2a2a2a;
      color: #FFD400;
    }
    .yp-nav-band .nav-links a.active {
      background: #FFD400;
      color: var(--ink);
    }
    .yp-nav-band .nav-links a.active::after { display: none; }

    .nav-toggle {
      display: none;
      width: 44px; height: 44px;
      align-items: center; justify-content: center;
      border-radius: 8px;
      color: #fff;
      margin: 8px auto;
    }
    .nav-toggle:hover { background: #2a2a2a; }
    .nav-toggle svg { width: 26px; height: 26px; }

    /* Mobile: stack top band, collapse nav to hamburger */
    @media (max-width: 1240px) {
      /* below the desktop layout breakpoint, drop banner from fixed 800px */
      .yp-header-top {
        grid-template-columns: 320px 1fr auto;
        gap: 12px;
      }
      .yp-header-banner { width: auto; max-width: 100%; }
      .yp-header-banner img { width: 100%; height: auto; max-height: 280px; }
    }
    @media (max-width: 940px) {
      .yp-header-top {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 14px 18px;
        text-align: center;
      }
      .yp-header-logo { align-items: center; }
      .yp-logo-big { max-width: 260px; margin: 0 auto; }
      .yp-logo-slogan { font-size: 22px; }
      .yp-header-banner {
        width: auto;
        height: auto;
        align-items: center;
      }
      .yp-header-banner img { width: 100%; height: auto; max-height: 130px; object-fit: contain; }
      .yp-header-side {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        height: auto;
        gap: 14px;
      }
      .yp-nav-band .nav-links {
        display: none;
        flex-direction: column;
        gap: 0;
        padding: 6px 0;
      }
      .yp-nav-band .nav-links.open { display: flex; }
      .yp-nav-band .nav-links a { padding: 14px 18px; width: 100%; justify-content: center; }
      .nav-toggle { display: flex; }
    }

    /* ==================================================================
       Hero
       ================================================================== */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      color: #fff;
      padding: 110px 24px 60px;
      background: var(--ink) url('hero.jpg') center/cover no-repeat;
    }
    .hero::before {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(180deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.65) 60%, rgba(0,0,0,.75) 100%);
    }
    .hero-inner {
      position: relative;
      max-width: var(--content-w);
      margin: 0 auto;
      width: 100%;
      text-align: center;
    }
    .hero-eyebrow {
      display: inline-block;
      font-size: 13px; letter-spacing: 2.4px; text-transform: uppercase;
      font-weight: 700;
      color: #fff;
      padding: 8px 18px;
      border: 2px solid var(--red);
      border-radius: 999px;
      background: rgba(232, 35, 26, .15);
      margin-bottom: 24px;
    }
    .hero h1 { color: #fff; margin-bottom: 18px; max-width: 920px; margin-left: auto; margin-right: auto; }
    .hero p.subhead {
      font-size: clamp(16px, 2vw, 20px);
      max-width: 680px;
      margin: 0 auto 36px;
      color: rgba(255,255,255,.92);
    }
    .hero-ctas {
      display: flex; justify-content: center; gap: 14px;
      flex-wrap: wrap;
      margin-bottom: 40px;
    }
    .hero-trust {
      display: flex; justify-content: center; gap: 12px 28px;
      flex-wrap: wrap;
      font-size: 14px;
      font-weight: 600;
      color: rgba(255,255,255,.95);
    }
    .hero-trust .pill {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 8px 16px;
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.18);
      border-radius: 999px;
    }
    .hero-trust .check {
      display: inline-block; width: 18px; height: 18px;
      border-radius: 50%;
      background: var(--red);
      position: relative;
      flex-shrink: 0;
    }
    .hero-trust .check::after {
      content: ''; position: absolute;
      left: 5px; top: 2px;
      width: 5px; height: 9px;
      border-right: 2px solid #fff;
      border-bottom: 2px solid #fff;
      transform: rotate(45deg);
    }

    /* ==================================================================
       YP-style intro section (home page)
       Mirrors the legacy Yellow Pages home: line-of-movers banner across
       the top + headline/body left + truck-with-crew photo right.
       Light/white canvas to match the YP feel.
       ================================================================== */
    .yp-intro {
      padding-top: 0;
      background: #fff;
      color: var(--ink-2);
    }
    .yp-banner-strip {
      position: relative;
      max-width: 1400px;
      margin: 0 auto;
      padding: 18px 24px 4px;
    }
    .yp-banner-strip img {
      width: 100%;
      height: auto;
      display: block;
    }
    .yp-banner-overlay {
      position: absolute;
      top: 28px;
      right: 36px;
      display: flex;
      align-items: flex-start;
      gap: 16px;
      pointer-events: none;
    }
    .yp-banner-overlay > * { pointer-events: auto; }
    .yp-phone-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--ink);
      color: #fff;
      padding: 10px 22px;
      border-radius: 999px;
      font-weight: 700;
      font-size: 15px;
      box-shadow: var(--shadow-md);
      transition: transform var(--tx), background var(--tx);
    }
    .yp-phone-pill:hover { transform: translateY(-1px); background: var(--red); }
    .yp-phone-pill strong { color: #FFD400; }
    .yp-sd-badge {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      width: 86px; height: 86px;
      border-radius: 50%;
      background: linear-gradient(135deg, #1A1A1A 0%, #3a3a3a 100%);
      color: #fff;
      box-shadow: var(--shadow-md);
      border: 3px solid var(--red);
      text-align: center;
      line-height: 1.05;
    }
    .yp-sd-badge .sd-letters {
      font-family: 'Poppins', sans-serif;
      font-weight: 800;
      font-size: 26px;
      color: var(--red);
      letter-spacing: -1px;
    }
    .yp-sd-badge .sd-text {
      font-size: 9px;
      font-weight: 700;
      letter-spacing: .5px;
      text-transform: uppercase;
      margin-top: 2px;
    }

    .yp-intro-grid {
      display: grid;
      grid-template-columns: 1.25fr 1fr;
      gap: 56px;
      align-items: center;
      padding: 56px 0 80px;
    }
    .yp-intro-text .hero-eyebrow {
      display: inline-block;
      font-size: 12px; letter-spacing: 2.4px; text-transform: uppercase;
      font-weight: 700;
      color: var(--red);
      padding: 6px 14px;
      border: 2px solid var(--red);
      border-radius: 999px;
      background: var(--red-tint);
      margin-bottom: 20px;
    }
    .yp-intro-text h1 {
      color: var(--ink);
      margin-bottom: 20px;
      font-size: clamp(32px, 5vw, 52px);
    }
    .yp-intro-text h1 .h1-sub {
      display: block;
      font-size: clamp(18px, 2.4vw, 26px);
      font-weight: 700;
      color: var(--red);
      margin-top: 8px;
    }
    .yp-intro-text p {
      font-size: 16.5px;
      line-height: 1.7;
      color: var(--ink-2);
      margin-bottom: 16px;
    }
    .yp-intro-text p.lead {
      font-size: 17.5px;
      color: var(--ink);
    }
    .yp-intro-text .hero-ctas {
      display: flex; gap: 14px;
      flex-wrap: wrap;
      margin: 28px 0 24px;
    }
    .yp-intro-trust {
      display: flex; gap: 10px 16px;
      flex-wrap: wrap;
      font-size: 13px;
      font-weight: 600;
      color: var(--ink);
    }
    .yp-intro-trust .pill {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 6px 14px;
      background: var(--bg-soft);
      border: 1px solid var(--line);
      border-radius: 999px;
    }
    .yp-intro-trust .check {
      display: inline-block; width: 16px; height: 16px;
      border-radius: 50%;
      background: var(--red);
      position: relative;
      flex-shrink: 0;
    }
    .yp-intro-trust .check::after {
      content: ''; position: absolute;
      left: 4px; top: 1px;
      width: 5px; height: 9px;
      border-right: 2px solid #fff;
      border-bottom: 2px solid #fff;
      transform: rotate(45deg);
    }

    .yp-intro-photo {
      position: relative;
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow-lg);
      aspect-ratio: 4 / 3;
      background: var(--bg-soft);
    }
    .yp-intro-photo img {
      width: 100%; height: 100%;
      object-fit: cover;
      display: block;
    }
    .yp-intro-photo::after {
      content: '';
      position: absolute;
      left: 0; top: 0; bottom: 0;
      width: 6px; background: var(--red);
    }

    /* Mobile: stack vertically, hide phone-pill + sd-badge over banner */
    @media (max-width: 940px) {
      .yp-banner-strip { padding: 12px 12px 2px; }
      .yp-banner-overlay {
        position: static;
        justify-content: center;
        margin-top: 14px;
      }
      .yp-intro-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 32px 0 48px;
      }
      .yp-intro-photo { aspect-ratio: 16 / 11; max-width: 540px; margin: 0 auto; }
    }

    /* ==================================================================
       Services
       ================================================================== */
    section.section { padding: 88px 0; }
    section.section-soft { background: var(--bg-soft); }

    .section-head {
      text-align: center;
      max-width: 720px;
      margin: 0 auto 56px;
    }
    .section-head .eyebrow {
      font-size: 13px; letter-spacing: 2px; text-transform: uppercase;
      font-weight: 700;
      color: var(--red);
      margin-bottom: 12px;
    }
    .section-head p { color: var(--muted); margin-top: 14px; font-size: 17px; }

    .services-grid {
      display: grid; gap: 24px;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    .service-card {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 32px 28px;
      position: relative;
      overflow: hidden;
      transition: transform var(--tx), box-shadow var(--tx);
    }
    .service-card::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
      background: var(--red);
    }
    .service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
    .service-icon {
      width: 64px; height: 64px;
      display: flex; align-items: center; justify-content: center;
      background: var(--red-tint);
      border-radius: 14px;
      margin-bottom: 20px;
      color: var(--red);
    }
    .service-icon svg { width: 32px; height: 32px; }
    .service-card h3 { margin-bottom: 12px; }
    .service-card p { color: var(--muted); }

    /* ==================================================================
       About
       ================================================================== */
    .about-grid {
      display: grid;
      grid-template-columns: 5fr 7fr;
      gap: 56px;
      align-items: center;
    }
    .about-photo {
      position: relative;
      border-radius: var(--radius);
      overflow: hidden;
      aspect-ratio: 4 / 5;
      background: var(--ink) url('owner.jpg') center/cover no-repeat;
      box-shadow: var(--shadow-md);
    }
    .about-photo::before {
      content: ''; position: absolute; left: 0; top: 0; bottom: 0;
      width: 6px; background: var(--red);
    }
    .about-text .eyebrow {
      font-size: 13px; letter-spacing: 2px; text-transform: uppercase;
      font-weight: 700; color: var(--red); margin-bottom: 12px;
    }
    .about-text h2 { margin-bottom: 18px; }
    .about-text p { margin-bottom: 16px; font-size: 17px; }
    .about-stats {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
      gap: 14px;
      margin-top: 28px;
    }
    .about-stat {
      display: flex; align-items: center; gap: 10px;
      font-weight: 700; color: var(--ink);
    }
    .about-stat .check {
      display: inline-block; width: 22px; height: 22px;
      background: var(--red); border-radius: 50%;
      position: relative; flex-shrink: 0;
    }
    .about-stat .check::after {
      content: ''; position: absolute; left: 7px; top: 4px;
      width: 5px; height: 10px;
      border-right: 2px solid #fff; border-bottom: 2px solid #fff;
      transform: rotate(45deg);
    }
    .about-trade-name {
      margin-top: 20px;
      padding: 14px 18px;
      background: var(--bg-soft);
      border-left: 4px solid var(--red);
      border-radius: 6px;
      font-size: 15px;
      color: var(--muted);
    }

    /* ==================================================================
       Photo strip
       ================================================================== */
    .photo-strip {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0;
    }
    .photo-strip .ps-img {
      aspect-ratio: 4 / 3;
      background: var(--ink) center/cover no-repeat;
      position: relative;
      overflow: hidden;
    }
    .photo-strip .ps-img::after {
      content: ''; position: absolute; inset: 0;
      background: rgba(26,26,26,0);
      transition: background var(--tx);
    }
    .photo-strip .ps-img:hover::after { background: rgba(26,26,26,.25); }
    .ps-1 { background-image: url('yp_piano_2.jpg'); }
    .ps-2 { background-image: url('yp_wade_unloading.jpg'); }
    .ps-3 { background-image: url('yp_truck_interior.jpg'); }

    /* ==================================================================
       Testimonials
       ================================================================== */
    .testimonials-grid {
      display: grid; gap: 24px;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    .testimonial {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 28px;
      box-shadow: var(--shadow-sm);
      display: flex; flex-direction: column; gap: 14px;
    }
    .testimonial .stars {
      color: var(--red);
      font-size: 18px;
      letter-spacing: 2px;
    }
    .testimonial .quote {
      font-style: italic;
      color: var(--ink-2);
      flex: 1;
    }
    .testimonial .who {
      font-weight: 700;
      color: var(--ink);
    }

    /* ==================================================================
       Service area (red band)
       ================================================================== */
    .service-area {
      background: var(--red);
      color: #fff;
      padding: 72px 0;
      text-align: center;
    }
    .service-area h2 { color: #fff; margin-bottom: 18px; }
    .service-area p { max-width: 740px; margin: 0 auto 24px; font-size: 17px; opacity: .95; }
    .service-towns {
      display: flex; justify-content: center;
      flex-wrap: wrap;
      gap: 10px 18px;
      margin-bottom: 28px;
      font-weight: 700; font-size: 15px;
    }
    .service-towns li { list-style: none; position: relative; padding: 4px 6px; }
    .service-towns li:not(:last-child)::after {
      content: '·';
      position: absolute;
      right: -14px;
      top: 4px;
      opacity: .8;
    }

    /* ==================================================================
       Contact / quote form
       ================================================================== */
    .contact-grid {
      display: grid;
      grid-template-columns: 7fr 5fr;
      gap: 48px;
      align-items: start;
    }
    .form-card {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 32px;
      box-shadow: var(--shadow-sm);
    }
    .form-row {
      display: grid; gap: 16px;
      grid-template-columns: 1fr 1fr;
      margin-bottom: 16px;
    }
    .form-row.single { grid-template-columns: 1fr; }
    .field { display: flex; flex-direction: column; }
    .field label {
      font-size: 13px; font-weight: 600; color: var(--ink); margin-bottom: 6px;
    }
    .field label .req { color: var(--red); }
    .field input, .field textarea {
      width: 100%;
      padding: 12px 14px;
      border: 1.5px solid var(--line);
      border-radius: var(--radius-sm);
      font-size: 15px;
      transition: border-color var(--tx);
      background: #fff;
    }
    .field input:focus, .field textarea:focus {
      outline: none;
      border-color: var(--red);
    }
    .field input.invalid, .field textarea.invalid {
      border-color: var(--red);
      background: var(--red-tint);
    }
    .field textarea { min-height: 120px; resize: vertical; }
    .form-thanks {
      text-align: center;
      padding: 36px 24px;
      background: var(--red-tint);
      border: 1px solid var(--red);
      border-radius: var(--radius);
      color: var(--ink);
    }
    .form-thanks h3 { color: var(--red); margin-bottom: 10px; }

    .info-card {
      background: var(--ink);
      color: #fff;
      border-radius: var(--radius);
      padding: 32px;
    }
    .info-card h3 { color: #fff; margin-bottom: 20px; }
    .info-row {
      display: flex; align-items: flex-start; gap: 12px;
      padding: 12px 0;
      border-top: 1px solid rgba(255,255,255,.12);
    }
    .info-row:first-of-type { border-top: 0; }
    .info-row svg {
      width: 20px; height: 20px; flex-shrink: 0; color: var(--red);
      margin-top: 4px;
    }
    .info-row .label { font-size: 12px; text-transform: uppercase; letter-spacing: 1.4px; color: rgba(255,255,255,.6); }
    .info-row .val { font-size: 16px; font-weight: 600; }
    .info-row .val.big { font-size: 22px; color: #fff; }
    .info-row a { color: #fff; }
    .info-row a:hover { color: var(--red); }
    .info-cta {
      display: block;
      margin-top: 24px;
      padding: 14px;
      text-align: center;
      background: var(--red);
      color: #fff;
      border-radius: 999px;
      font-weight: 700;
      transition: background var(--tx);
    }
    .info-cta:hover { background: var(--red-hover); }

    /* ==================================================================
       Footer
       ================================================================== */
    footer.footer {
      background: var(--ink);
      color: rgba(255,255,255,.78);
      padding: 56px 0 24px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1.6fr 1fr 1fr 1.5fr;
      gap: 36px;
      margin-bottom: 40px;
    }
    .footer-brand {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }
    .footer-logo-wrap {
      width: 92px; height: 92px;
      background: #fff url('logo.png') center/contain no-repeat;
      border-radius: 10px;
      padding: 8px;
    }
    .footer-tagline {
      color: var(--red);
      font-weight: 700;
      font-size: 18px;
    }
    .footer-name {
      color: #fff;
      font-weight: 700;
      font-size: 16px;
      line-height: 1.3;
    }
    .footer-trade {
      color: rgba(255,255,255,.55);
      font-size: 13px;
      font-style: italic;
    }
    .footer-social {
      display: flex; gap: 10px; margin-top: 8px;
    }
    .footer-social a {
      width: 38px; height: 38px;
      display: flex; align-items: center; justify-content: center;
      background: rgba(255,255,255,.08);
      border-radius: 50%;
      transition: background var(--tx);
    }
    .footer-social a:hover { background: var(--red); }
    .footer-social svg { width: 18px; height: 18px; color: #fff; }

    .footer h4 {
      color: #fff;
      font-size: 16px;
      margin-bottom: 16px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    .footer ul { list-style: none; }
    .footer ul li { padding: 6px 0; }
    .footer ul li a { transition: color var(--tx); }
    .footer ul li a:hover { color: var(--red); }
    .footer-contact-row {
      display: flex; align-items: center; gap: 10px;
      padding: 6px 0;
    }
    .footer-contact-row svg { width: 16px; height: 16px; color: var(--red); }

    .footer-bottom {
      padding-top: 24px;
      border-top: 1px solid rgba(255,255,255,.08);
      font-size: 13px;
      text-align: center;
      color: rgba(255,255,255,.55);
    }

    /* ==================================================================
       Scroll-to-top
       ================================================================== */
    .scroll-top {
      position: fixed;
      right: 24px; bottom: 24px;
      width: 48px; height: 48px;
      background: var(--red);
      color: #fff;
      border-radius: 50%;
      box-shadow: var(--shadow-md);
      opacity: 0;
      transform: translateY(20px) scale(.8);
      transition: opacity var(--tx), transform var(--tx);
      pointer-events: none;
      z-index: 90;
      font-size: 22px;
      font-weight: 700;
    }
    .scroll-top.visible {
      opacity: 1;
      transform: translateY(0) scale(1);
      pointer-events: auto;
    }
    .scroll-top:hover { background: var(--red-hover); transform: translateY(-2px) scale(1); }

    /* ==================================================================
       Responsive
       ================================================================== */
    @media (max-width: 940px) {
      .nav-links {
        position: fixed;
        top: 80px;
        left: 0; right: 0;
        background: #fff;
        flex-direction: column;
        gap: 0;
        padding: 16px 24px;
        box-shadow: var(--shadow-md);
        transform: translateY(-110%);
        transition: transform var(--tx);
        z-index: 99;
      }
      .nav-links.open { transform: translateY(0); }
      .nav-links li { width: 100%; border-bottom: 1px solid var(--line); }
      .nav-links li:last-child { border-bottom: 0; }
      .nav-links a { display: block; padding: 14px 4px; }
      .nav-toggle { display: inline-flex; }
      .nav-cta .btn-red { padding: 10px 16px; font-size: 14px; }
      .nav-cta-text { display: none; }

      .about-grid { grid-template-columns: 1fr; gap: 32px; }
      .about-photo { aspect-ratio: 4 / 3; max-width: 520px; margin: 0 auto; }

      .photo-strip { grid-template-columns: 1fr; }
      .photo-strip .ps-img { aspect-ratio: 16 / 9; }

      .contact-grid { grid-template-columns: 1fr; gap: 32px; }
      .form-row { grid-template-columns: 1fr; }

      .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    }

    @media (max-width: 540px) {
      section.section { padding: 64px 0; }
      .hero { padding: 100px 16px 50px; min-height: 90vh; }
      .hero-ctas .btn { width: 100%; }
      .container { padding: 0 18px; }
      .form-card { padding: 22px; }
      .info-card { padding: 22px; }
      .brand-text-2 { display: none; }
    }

    /* Print niceties (someone might print the contact info) */
    @media print {
      .navbar, .nav-toggle, .scroll-top, .hero-ctas { display: none; }
      .hero { min-height: auto; padding: 24px; background: #fff; color: #000; }
      .hero::before { display: none; }
      .hero h1, .hero p { color: #000; }
    }

    /* Reduce motion for accessibility */
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after { animation-duration: 0s !important; transition-duration: 0s !important; }
      html { scroll-behavior: auto; }
      .reveal { opacity: 1; transform: none; }
    }

/* ==================================================================
   Navigation dropdown — Services menu (added 2026-05-04 for multi-page split)
   ================================================================== */
.nav-links li.has-dropdown { position: relative; }
.nav-links .dropdown-toggle {
  display: inline-flex; align-items: center; gap: 4px;
  background: none; border: 0; cursor: pointer;
  font: inherit; color: var(--ink-2); padding: 8px 2px;
  font-weight: 600;
  transition: color var(--tx);
  position: relative;
}
.nav-links .dropdown-toggle:hover { color: var(--red); }
.nav-links .dropdown-toggle::after {
  content: ''; width: 6px; height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translate(-1px, -2px);
  margin-left: 4px;
}
.nav-links .dropdown {
  position: absolute;
  top: calc(100% + 6px); left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow-md);
  padding: 8px;
  min-width: 240px;
  list-style: none;
  opacity: 0; visibility: hidden;
  transition: opacity .15s ease, visibility .15s ease;
  z-index: 99;
}
.nav-links li.has-dropdown:hover > .dropdown,
.nav-links li.has-dropdown:focus-within > .dropdown,
.nav-links li.has-dropdown.open > .dropdown {
  opacity: 1; visibility: visible;
}
.nav-links .dropdown li { width: 100%; border: 0; }
.nav-links .dropdown a {
  display: block; padding: 10px 14px;
  border-radius: 6px; font-weight: 600;
  color: var(--ink-2); white-space: nowrap;
}
.nav-links .dropdown a:hover { background: var(--red-tint); color: var(--red); }
.nav-links li.has-dropdown.active-section .dropdown-toggle { color: var(--red); }
.nav-links li.has-dropdown.active-section .dropdown-toggle::before {
  content: ''; position: absolute; left: 0; right: 14px; bottom: -2px;
  height: 2px; background: var(--red); border-radius: 2px;
}

@media (max-width: 940px) {
  .nav-links .dropdown {
    position: static;
    transform: none;
    box-shadow: none;
    border: 0; border-radius: 0;
    padding: 0; min-width: 0;
    opacity: 1; visibility: visible;
    background: var(--bg-soft);
    margin: 0 -24px;
  }
  .nav-links .dropdown a { padding: 12px 36px; }
  .nav-links .dropdown-toggle { width: 100%; justify-content: flex-start; padding: 14px 4px; }
  .nav-links .dropdown-toggle::after { margin-left: auto; }
}

/* ==================================================================
   Sub-page hero banner (every page except home)
   ================================================================== */
.page-hero {
  background: var(--ink);
  color: #fff;
  padding: 140px 24px 70px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--ink) 0%, #2A2A2A 100%);
  opacity: .92;
}
.page-hero-inner {
  position: relative;
  max-width: var(--content-w);
  margin: 0 auto;
}
.page-hero .eyebrow {
  display: inline-block;
  font-size: 13px; letter-spacing: 2px; text-transform: uppercase;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 14px;
}
.page-hero h1 {
  color: #fff;
  margin-bottom: 16px;
  font-size: clamp(32px, 5vw, 50px);
}
.page-hero p.lead {
  font-size: clamp(16px, 2vw, 19px);
  max-width: 740px;
  color: rgba(255,255,255,.92);
}
.page-hero-cta {
  margin-top: 28px;
  display: flex; gap: 12px; flex-wrap: wrap;
}
.breadcrumb {
  font-size: 13px;
  color: var(--muted);
  padding: 18px 24px 4px;
  max-width: var(--content-w);
  margin: 0 auto;
}
.breadcrumb a { color: var(--muted); transition: color var(--tx); }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb .sep { margin: 0 8px; opacity: .5; }
.breadcrumb .current { color: var(--ink); font-weight: 600; }

/* Two-column detail blocks */
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 48px;
}
.detail-grid.reverse > :first-child { order: 2; }
@media (max-width: 940px) {
  .detail-grid, .detail-grid.reverse { grid-template-columns: 1fr; gap: 28px; }
  .detail-grid.reverse > :first-child { order: 0; }
}
.detail-text h3 { font-size: 24px; margin-bottom: 12px; }
.detail-text p { margin-bottom: 14px; font-size: 16px; }
.detail-text ul { margin: 14px 0 14px 22px; }
.detail-text li { margin-bottom: 8px; font-size: 16px; line-height: 1.6; }
.detail-photo {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  background: var(--ink) center/cover no-repeat;
  box-shadow: var(--shadow-md);
}

/* Big CTA strip */
.cta-strip {
  background: var(--red);
  color: #fff;
  padding: 56px 24px;
  text-align: center;
}
.cta-strip h2 { color: #fff; margin-bottom: 12px; }
.cta-strip p { max-width: 640px; margin: 0 auto 24px; font-size: 17px; opacity: .95; }
.cta-strip .ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* FAQ / Tips accordion */
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 820px; margin: 0 auto; }
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-q {
  width: 100%; text-align: left;
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 22px;
  background: none; border: 0;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-size: 17px; font-weight: 700; color: var(--ink);
  gap: 14px;
}
.faq-q:hover { background: var(--bg-soft); }
.faq-q .icon {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 700;
  transition: transform .25s ease;
}
.faq-item[open] .faq-q .icon { transform: rotate(45deg); }
.faq-q::-webkit-details-marker { display: none; }
.faq-a {
  padding: 0 22px 20px 22px;
  color: var(--ink-2);
  font-size: 16px; line-height: 1.65;
}
.faq-a p { margin-bottom: 12px; }
.faq-a ul { margin: 12px 0 12px 20px; }
.faq-a li { margin-bottom: 6px; }

/* Team list */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.team-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
}
.team-card .avatar {
  width: 96px; height: 96px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--ink-2) center/cover no-repeat;
  border: 4px solid var(--red);
}
.team-card h3 { margin-bottom: 6px; font-size: 19px; }
.team-card .role { color: var(--red); font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.team-card p { color: var(--muted); font-size: 15px; }

.truck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}
.truck-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; flex-direction: column;
}
.truck-card .photo {
  aspect-ratio: 16 / 10;
  background: var(--ink) center/cover no-repeat;
}
.truck-card-body { padding: 24px; }
.truck-card h3 { margin-bottom: 10px; }
.truck-card p { color: var(--muted); margin-bottom: 12px; }
.truck-card ul { margin-left: 18px; }
.truck-card li { font-size: 15px; color: var(--ink-2); margin-bottom: 6px; }

/* Wider quote form for dedicated quote page */
.full-quote-form {
  max-width: 780px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
@media (max-width: 540px) { .full-quote-form { padding: 22px; } }

/* ==================================================================
   Homepage rebuild 2026-05-24 — sections added for the YP-faithful
   rebuild that replaces the screenshot-era index.html.
   ================================================================== */

/* --- Our Services band (background image + dark gradient + glass card) --- */
.services-band {
  position: relative;
  padding: 96px 24px;
  background: var(--ink) url('yp_crew_loading_hero.jpg') center/cover no-repeat;
  color: #fff;
  overflow: hidden;
}
.services-band-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,26,26,.82) 0%, rgba(26,26,26,.55) 50%, rgba(232,35,26,.55) 100%);
}
.services-band-inner { position: relative; z-index: 1; }
.services-band-card {
  max-width: 720px;
  background: rgba(26,26,26,.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 44px 48px;
  border-radius: var(--radius);
  border-left: 6px solid var(--red);
  box-shadow: var(--shadow-lg);
}
.services-band-card h2 {
  color: #fff;
  margin-bottom: 12px;
  font-size: clamp(28px, 4vw, 38px);
}
.services-band-card > p {
  color: rgba(255,255,255,.85);
  font-size: 17px;
  margin-bottom: 22px;
}
.services-list {
  list-style: none;
  margin: 0 0 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 28px;
}
.services-list li { margin: 0; }
.services-list a {
  display: inline-flex; align-items: center; gap: 10px;
  color: #fff; font-size: 17px; font-weight: 600;
  padding: 6px 0;
  transition: color var(--tx), transform var(--tx);
}
.services-list a:hover { color: var(--red); transform: translateX(4px); }
.services-list .dot {
  width: 10px; height: 10px;
  background: var(--red); border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(232,35,26,.18);
}
@media (max-width: 640px) {
  .services-band { padding: 64px 18px; }
  .services-band-card { padding: 28px 22px; }
  .services-list { grid-template-columns: 1fr; }
}

/* --- Our Promise 4-up grid --- */
.promise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.promise-card {
  text-align: center;
  padding: 32px 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform var(--tx), box-shadow var(--tx), border-color var(--tx);
}
.promise-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--red);
}
.promise-icon {
  width: 76px; height: 76px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--red-tint);
  color: var(--red);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--tx), color var(--tx);
}
.promise-card:hover .promise-icon {
  background: var(--red);
  color: #fff;
}
.promise-icon svg { width: 38px; height: 38px; }
.promise-card h3 { margin-bottom: 10px; font-size: 20px; color: var(--ink); }
.promise-card p { color: var(--muted); font-size: 15.5px; line-height: 1.55; }
@media (max-width: 940px) { .promise-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .promise-grid { grid-template-columns: 1fr; gap: 16px; } }

/* --- Google reviews strip --- */
.reviews-strip {
  margin-top: 48px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 32px;
  text-align: center;
}
.reviews-strip-row {
  display: flex; align-items: center; justify-content: center;
  gap: 18px; flex-wrap: wrap;
  margin-bottom: 12px;
}
.reviews-google {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 26px;
  letter-spacing: -.5px;
  display: inline-flex; gap: 0;
}
.reviews-google .g1 { color: #4285F4; }
.reviews-google .g2 { color: #EA4335; }
.reviews-google .g3 { color: #FBBC05; }
.reviews-google .g4 { color: #4285F4; }
.reviews-google .g5 { color: #34A853; }
.reviews-google .g6 { color: #EA4335; }
.reviews-stars {
  color: #FBBC05;
  font-size: 24px;
  letter-spacing: 2px;
}
.reviews-count { font-size: 16px; color: var(--ink-2); }
.reviews-count strong { color: var(--ink); font-size: 20px; font-weight: 800; margin-right: 4px; }
.reviews-quote {
  font-style: italic;
  color: var(--ink-2);
  font-size: 16px;
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.55;
}
.reviews-quote-by {
  display: block;
  font-style: normal;
  font-weight: 700;
  color: var(--ink);
  margin-top: 8px;
  font-size: 14px;
}
@media (max-width: 540px) { .reviews-strip { padding: 20px 18px; } }

/* --- Moving Tips teaser band --- */
.tips-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.tips-text .eyebrow {
  font-size: 13px; letter-spacing: 2px; text-transform: uppercase;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 12px;
  display: inline-block;
}
.tips-text h2 { margin-bottom: 16px; }
.tips-text p { font-size: 17px; color: var(--ink-2); margin-bottom: 24px; }
.tips-photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--bg-soft);
}
.tips-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.tips-photo::after {
  content: ''; position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 6px; background: var(--red);
}
@media (max-width: 940px) {
  .tips-band { grid-template-columns: 1fr; gap: 28px; }
  .tips-photo { aspect-ratio: 16 / 11; max-width: 540px; margin: 0 auto; }
}

/* --- Truck-decal SD image badge (replaces the CSS-rendered SD square) --- */
.yp-header-sd-img {
  width: 86px;
  height: 86px;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
  padding: 4px;
  box-shadow: var(--shadow-md);
  flex-shrink: 0;
}
@media (max-width: 940px) { .yp-header-sd-img { width: 64px; height: 64px; } }

/* --- Testimonials band (with subtle background) --- */
.testimonials-band {
  position: relative;
  padding: 88px 0;
  background: var(--bg-soft);
  overflow: hidden;
}
.testimonials-band .testimonial { background: #fff; box-shadow: var(--shadow-md); }
.testimonial .t-title {
  font-size: 18px;
  margin: -4px 0 2px;
  color: var(--ink);
}
.testimonial .quote {
  font-size: 15px;
  line-height: 1.6;
}

/* --- Moving Tips 4-tile grid --- */
.tips-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.tip-tile {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  transition: transform var(--tx), box-shadow var(--tx);
}
.tip-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.tip-photo {
  aspect-ratio: 3 / 2;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: var(--ink-2);
}
.tip-label {
  padding: 16px 14px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 1px;
  color: var(--ink);
  text-transform: uppercase;
}
.tip-tile:hover .tip-label { color: var(--red); }
@media (max-width: 940px) { .tips-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .tips-grid { grid-template-columns: 1fr; } }

/* --- 3-card CTA row --- */
.cta3-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.cta3-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  padding: 0 0 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform var(--tx), box-shadow var(--tx);
}
.cta3-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.cta3-photo {
  width: 100%;
  aspect-ratio: 16 / 9;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: var(--ink-2);
  margin-bottom: 18px;
}
.cta3-card h3 { padding: 0 22px; margin-bottom: 10px; }
.cta3-card p { padding: 0 22px; color: var(--muted); margin-bottom: 18px; }
@media (max-width: 940px) { .cta3-grid { grid-template-columns: 1fr; } }

/* --- Facebook strip --- */
.fb-strip {
  background: var(--ink);
  color: #fff;
  padding: 56px 24px;
  text-align: center;
}
.fb-strip h2 {
  color: #fff;
  font-size: clamp(22px, 3.4vw, 30px);
  margin-bottom: 12px;
}
.fb-strip p {
  color: rgba(255,255,255,.85);
  font-size: 17px;
  max-width: 640px;
  margin: 0 auto 24px;
}

/* --- Sub-page hero (replaces _build_pages.py page-hero pattern,
       cleaner for the rebuild) --- */
.sub-hero {
  position: relative;
  padding: 90px 24px 70px;
  background: var(--ink) center/cover no-repeat;
  color: #fff;
  overflow: hidden;
}
.sub-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,26,26,.78) 0%, rgba(26,26,26,.55) 50%, rgba(232,35,26,.45) 100%);
}
.sub-hero-inner {
  position: relative;
  max-width: var(--content-w);
  margin: 0 auto;
}
.sub-hero .eyebrow {
  display: inline-block;
  font-size: 13px; letter-spacing: 2px; text-transform: uppercase;
  font-weight: 700;
  color: #FFD400;
  margin-bottom: 14px;
}
.sub-hero h1 { color: #fff; margin-bottom: 16px; font-size: clamp(32px, 5vw, 48px); }
.sub-hero p.lead {
  font-size: clamp(16px, 2vw, 19px);
  max-width: 760px;
  color: rgba(255,255,255,.94);
}
.sub-hero-ctas { margin-top: 26px; display: flex; gap: 14px; flex-wrap: wrap; }

/* Generic content block for sub-pages */
.content-block {
  padding: 72px 0;
}
.content-block h2 { margin-bottom: 18px; }
.content-block p { font-size: 16.5px; margin-bottom: 14px; line-height: 1.65; color: var(--ink-2); }
.content-block ul {
  margin: 10px 0 16px 24px;
}
.content-block li {
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 1.6;
}
.content-two-col {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}
.content-two-col.reverse > :first-child { order: 2; }
.content-two-col-photo {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--bg-soft) center/cover no-repeat;
  box-shadow: var(--shadow-md);
  position: relative;
}
.content-two-col-photo::after {
  content: ''; position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 6px; background: var(--red);
}
@media (max-width: 940px) {
  .content-two-col, .content-two-col.reverse { grid-template-columns: 1fr; gap: 28px; }
  .content-two-col.reverse > :first-child { order: 0; }
}

