  /* ============================================================
     Dynasty Heating and Air — GTMDot preview site
     Palette: navy + flame orange (extracted from door-hanger branding)
     ============================================================ */
  :root {
    /* ===== V2 Palette — OKLCH, industrial/utilitarian direction ===== */
    /* Surfaces: stone-navy, each step perceptually uniform */
    --navy:       oklch(0.16 0.03 260);        /* primary site surface */
    --navy-alt:   oklch(0.22 0.035 260);       /* alternate band */
    --navy-deep:  oklch(0.10 0.025 260);       /* footer — deepest */
    --navy-line:  oklch(0.40 0.02 260 / 0.22); /* hairline */
    /* Legacy aliases preserved for untouched selectors */
    --navy-2:     var(--navy-alt);
    --navy-3:     var(--navy-alt);
    /* Brand: flame-red + amber — from Dynasty's real door-hanger logo */
    --brand:      oklch(0.62 0.19 33);         /* primary flame red */
    --brand-light:oklch(0.78 0.14 58);         /* amber highlight */
    --brand-glow: oklch(0.62 0.19 33 / 0.14);
    --brand-glow-soft: oklch(0.62 0.19 33 / 0.08);
    --brand-deep: oklch(0.46 0.17 30);
    --cool:       oklch(0.75 0.09 235);
    --white:      oklch(0.98 0.005 60);        /* warm near-white */
    --text:       oklch(0.92 0.01 260);        /* body text, navy-tinted */
    --muted:      oklch(0.70 0.02 260);        /* secondary text */
    --muted-2:    oklch(0.62 0.02 260);        /* tertiary text */
    --ink:        oklch(0.14 0.02 260);
    --radius:     14px;
    --radius-sm:  10px;
    --radius-lg:  22px;
    --hero-filter: brightness(0.85) contrast(1.1) saturate(0.85);
    --shadow:     0 18px 40px -20px rgba(0,0,0,0.55);
    --shadow-hover: 0 20px 42px -26px rgba(0,0,0,0.55);
    --flame-gradient: linear-gradient(135deg, #f4a35a 0%, #e44924 55%, #b23317 100%);
  }

  *, *::before, *::after { box-sizing: border-box; }
  html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
  body {
    margin: 0;
    font-family: 'Figtree', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text);
    background: var(--navy);
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
  }
  img { max-width: 100%; display: block; }
  a { color: inherit; text-decoration: none; }
  button { font: inherit; cursor: pointer; }

  /* Typography utilities */
  .eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--brand-light);
    margin-bottom: 18px;
  }
  .section-h2 {
    font-family: 'Big Shoulders Display', 'Figtree', sans-serif;
    font-weight: 800;
    font-size: clamp(40px, 4.8vw, 60px);
    line-height: 1.04;
    letter-spacing: -1px;
    text-transform: uppercase;
    color: var(--white);
    margin: 0 0 18px;
  }
  .section-sub {
    color: var(--muted-2);
    font-size: 18px;
    line-height: 1.7;
    max-width: 640px;
    margin: 0 0 56px;
  }
  .section-head { text-align: center; margin-bottom: 48px; }
  .section-head .section-sub { margin-left: auto; margin-right: auto; }
  .accent-text { color: var(--brand-light); }
  .flame-text {
    color: var(--brand);
    display: inline-block;
  }
  .hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Figtree', sans-serif;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--brand-light);
    margin-bottom: 18px;
    padding: 6px 0;
    border-top: 1px solid var(--brand);
    border-bottom: 1px solid var(--brand);
    padding-left: 18px;
    padding-right: 18px;
  }

  /* Buttons */
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 30px;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.02em;
    border-radius: 999px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    border: 1px solid transparent;
  }
  .btn-primary {
    background: var(--flame-gradient);
    color: var(--white);
    box-shadow: 0 10px 24px -14px rgba(0,0,0,0.45);
  }
  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 32px -14px rgba(0,0,0,0.55);
  }
  .btn-ghost {
    background: rgba(255,255,255,0.04);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.18);
  }
  .btn-ghost:hover {
    transform: translateY(-2px);
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.3);
  }
  .btn svg { width: 18px; height: 18px; }

  /* Container + sections */
  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
  }
  .section { padding: 110px 0; }
  .section-tight { padding: 64px 0; }
  .section-full { position: relative; padding: 110px 0; }
  .section-alt { background: var(--navy-alt); }
  .section-deeper { background: var(--navy-alt); }

  /* ============== NAV ============== */
  .nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 14px 0;
    transition: background 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease;
  }
  .nav-inner {
    display: flex;
    align-items: center;
    gap: 32px;
  }
  .nav.scrolled {
    background: rgba(10,21,48,0.92);
    backdrop-filter: saturate(1.6) blur(14px);
    -webkit-backdrop-filter: saturate(1.6) blur(14px);
    box-shadow: 0 1px 0 var(--navy-line);
  }
  .nav-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Big Shoulders Display', 'Figtree', sans-serif;
    font-weight: 800;
    font-size: 20px;
    letter-spacing: -0.5px;
    color: var(--white);
    text-shadow: 0 1px 6px rgba(0,0,0,0.8);
  }
  .nav-logo-mark {
    display: inline-grid;
    place-items: center;
    width: 36px; height: 36px;
    border-radius: 10px;
    background: var(--flame-gradient);
    color: #fff;
    box-shadow: 0 4px 10px -4px rgba(0,0,0,0.45);
  }
  .nav-logo-mark svg { width: 20px; height: 20px; }
  .nav-logo-img {
    height: 40px;
    width: auto;
    display: block;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.35));
  }
  .footer-logo-img {
    height: 54px;
    width: auto;
    display: block;
    margin-bottom: 6px;
  }
  .nav-links {
    display: flex;
    list-style: none;
    gap: 28px;
    margin: 0 auto 0 16px;
    padding: 0;
  }
  .nav-links a {
    color: var(--white);
    font-weight: 500;
    font-size: 15px;
    text-shadow: 0 1px 6px rgba(0,0,0,0.8);
    transition: color 0.2s ease;
  }
  .nav-links a:hover { color: var(--brand-light); }
  .nav-cta {
    padding: 10px 22px;
    border-radius: 999px;
    background: var(--flame-gradient);
    color: var(--white);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.01em;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  .nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px -10px rgba(0,0,0,0.45);
  }
  .hamburger {
    display: none;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 10px;
    padding: 8px 10px;
    color: var(--white);
  }
  .hamburger svg { width: 22px; height: 22px; }

  /* ============== PAGE HEADER — sub-page hero (no photo column) ============== */
  .page-header {
    position: relative;
    padding: 160px 0 88px;
    background:
      radial-gradient(ellipse at 85% 20%, var(--brand-glow-soft), transparent 40%),
      linear-gradient(180deg, var(--navy) 0%, var(--navy-alt) 100%);
    border-bottom: 1px solid var(--navy-line);
    overflow: hidden;
  }
  .page-header-inner {
    max-width: 920px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 1;
  }
  .page-header-eyebrow {
    display: inline-block;
    font-family: 'Big Shoulders Display', 'Figtree', sans-serif;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--brand-light);
    margin-bottom: 20px;
  }
  .page-header h1 {
    font-family: 'Big Shoulders Display', 'Figtree', sans-serif;
    font-weight: 900;
    font-size: clamp(48px, 6.4vw, 88px);
    line-height: 1.0;
    letter-spacing: -1.5px;
    text-transform: uppercase;
    color: var(--white);
    margin: 0 0 22px;
    max-width: 860px;
  }
  .page-header-sub {
    font-size: clamp(17px, 1.8vw, 20px);
    line-height: 1.55;
    color: rgba(255,255,255,0.86);
    max-width: 660px;
    margin: 0;
  }
  @media (max-width: 768px) {
    .page-header { padding: 120px 0 64px; }
    .page-header-inner { padding: 0 22px; }
  }

  /* ============== HERO — full-bleed photo with content overlay ============== */
  .hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    padding: 128px 0 96px;
    overflow: hidden;
    background: var(--navy);
  }
  .hero-bg {
    position: absolute;
    inset: 0;
    background: url('../photos/hero.jpg') center/cover no-repeat;
    filter: brightness(0.72) contrast(1.05) saturate(0.92);
    z-index: 0;
  }
  .hero-bg::after {
    content: '';
    position: absolute; inset: 0;
    background:
      linear-gradient(180deg, rgba(10,21,48,0.52) 0%, rgba(10,21,48,0.7) 55%, rgba(10,21,48,0.96) 100%),
      radial-gradient(ellipse at 80% 10%, rgba(228,73,36,0.14), transparent 55%);
  }
  .hero-content {
    position: relative;
    z-index: 1;
    max-width: 820px;
    padding: 0 32px;
    margin: 0 auto;
    width: 100%;
  }
  .hero-badges {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
  }
  .hero-badges .badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    border-radius: 999px;
    color: var(--white);
  }
  .hero-badges .badge svg { width: 14px; height: 14px; color: var(--brand-light); }
  .hero h1 {
    font-family: 'Big Shoulders Display', 'Figtree', sans-serif;
    font-weight: 900;
    font-size: clamp(52px, 7vw, 96px);
    line-height: 1.02;
    letter-spacing: -1.5px;
    text-transform: uppercase;
    color: var(--white);
    margin: 0 0 22px;
  }
  .hero h1 .flame-text { font-style: normal; display: inline-block; }
  .hero-sub {
    font-size: clamp(17px, 1.9vw, 21px);
    line-height: 1.55;
    color: rgba(255,255,255,0.9);
    max-width: 680px;
    margin: 0 0 34px;
  }
  .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 28px;
  }
  .hero-quote {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 22px;
    max-width: 620px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 10px;
    color: rgba(255,255,255,0.88);
    font-family: 'Big Shoulders Display', 'Figtree', sans-serif;
    font-style: italic;
    font-size: 16px;
    line-height: 1.55;
  }
  .hero-quote .attr {
    display: block;
    margin-top: 4px;
    font-family: 'Big Shoulders Display', 'Figtree', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.04em;
    color: var(--brand-light);
  }

  /* ============== STATS BAR ============== */
  .stats {
    position: relative;
    z-index: 2;
    margin-top: -54px;
    padding: 0 24px 0;
  }
  .stats-inner {
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(180deg, rgba(17,30,63,0.95), rgba(10,21,48,0.98));
    backdrop-filter: blur(14px);
    border: 1px solid var(--navy-line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
  }
  .stat {
    padding: 32px 28px;
    text-align: left;
    border-right: 1px solid var(--navy-line);
    position: relative;
  }
  .stat:last-child { border-right: none; }
  .stat-value {
    font-family: 'Big Shoulders Display', 'Figtree', sans-serif;
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1;
    color: var(--white);
    margin-bottom: 8px;
    display: flex;
    align-items: baseline;
    gap: 6px;
  }
  .stat-value .suffix {
    color: var(--brand-light);
    font-size: 0.8em;
  }
  .stat-label {
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
  }

  /* ============== MARQUEE ============== */
  .marquee {
    padding: 28px 0;
    background: var(--navy-2);
    border-top: 1px solid var(--navy-line);
    border-bottom: 1px solid var(--navy-line);
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
  }
  .marquee-track {
    display: flex;
    gap: 48px;
    animation: marquee 58s linear infinite;
    width: max-content;
  }
  .marquee:hover .marquee-track { animation-play-state: paused; }
  .marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: rgba(255,255,255,0.78);
    white-space: nowrap;
  }
  .marquee-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--brand);
  }
  @keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }

  /* ============== EMERGENCY — editorial pause moment ============== */
  .emergency {
    background: var(--navy-alt);
    border-top: 1px solid var(--navy-line);
    border-bottom: 1px solid var(--navy-line);
    padding: 110px 0;
    position: relative;
    overflow: hidden;
  }
  .emergency::before {
    content: '';
    position: absolute;
    top: 12%;
    left: 50%;
    transform: translateX(-50%);
    width: 320px; height: 320px;
    background: radial-gradient(circle, var(--brand-glow-soft), transparent 70%);
    filter: blur(40px);
    pointer-events: none;
    opacity: 0.9;
  }
  .emergency-editorial {
    position: relative;
    z-index: 1;
    max-width: 880px;
    margin: 0 auto;
    text-align: center;
    padding: 0 24px;
  }
  .emergency-eyebrow {
    display: inline-block;
    font-family: 'Big Shoulders Display', 'Figtree', sans-serif;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--brand-light);
    margin-bottom: 28px;
  }
  .emergency-quote {
    font-family: 'Figtree', sans-serif;
    font-style: italic;
    font-weight: 500;
    font-size: clamp(26px, 3.6vw, 44px);
    line-height: 1.35;
    color: var(--white);
    margin: 0 0 32px;
    letter-spacing: -0.3px;
  }
  .emergency-quote q { quotes: "\201C" "\201D"; }
  .emergency-quote q::before,
  .emergency-quote q::after {
    color: var(--brand-light);
    font-family: 'Big Shoulders Display', 'Figtree', sans-serif;
    font-weight: 700;
  }
  .emergency-attr {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: 'Big Shoulders Display', 'Figtree', sans-serif;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 44px;
  }
  .emergency-attr::before,
  .emergency-attr::after {
    content: '';
    display: inline-block;
    width: 28px; height: 1px;
    background: var(--brand);
  }
  .emergency-context {
    max-width: 560px;
    margin: 0 auto 36px;
    color: var(--muted-2);
    font-size: 16.5px;
    line-height: 1.65;
  }
  .emergency-cta { margin-top: 8px; }

  /* ============== SERVICES — tabbed panel ============== */
  .svc-tabs {
    margin-top: 16px;
  }
  .svc-tabs input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 1px; height: 1px;
  }
  .svc-tabs-row {
    display: flex;
    flex-wrap: wrap;
    gap: 2px;
    margin-bottom: 48px;
    border-bottom: 1px solid var(--navy-line);
    padding-bottom: 0;
  }
  .svc-tab {
    cursor: pointer;
    padding: 18px 22px 16px;
    font-family: 'Big Shoulders Display', 'Figtree', sans-serif;
    font-weight: 600;
    font-size: 14.5px;
    letter-spacing: -0.1px;
    color: var(--muted);
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    transition: color 0.2s ease, border-color 0.2s ease;
    user-select: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }
  .svc-tab svg { width: 16px; height: 16px; color: currentColor; }
  .svc-tab:hover { color: var(--white); }
  .svc-tab:focus-visible { outline: 2px solid var(--brand-light); outline-offset: 4px; border-radius: 3px; }

  /* Active tab + active panel switching — CSS-only via :checked ~ */
  #svc-ac:checked       ~ .svc-tabs-row label[for="svc-ac"],
  #svc-heat:checked     ~ .svc-tabs-row label[for="svc-heat"],
  #svc-install:checked  ~ .svc-tabs-row label[for="svc-install"],
  #svc-duct:checked     ~ .svc-tabs-row label[for="svc-duct"],
  #svc-thermo:checked   ~ .svc-tabs-row label[for="svc-thermo"],
  #svc-plan:checked     ~ .svc-tabs-row label[for="svc-plan"] {
    color: var(--brand-light);
    border-bottom-color: var(--brand);
  }

  .svc-panel {
    display: none;
    grid-template-columns: 1.2fr 1fr;
    gap: 56px;
    align-items: center;
    animation: svcFade 0.35s ease both;
  }
  #svc-ac:checked       ~ .svc-tabs-panels [data-panel="svc-ac"],
  #svc-heat:checked     ~ .svc-tabs-panels [data-panel="svc-heat"],
  #svc-install:checked  ~ .svc-tabs-panels [data-panel="svc-install"],
  #svc-duct:checked     ~ .svc-tabs-panels [data-panel="svc-duct"],
  #svc-thermo:checked   ~ .svc-tabs-panels [data-panel="svc-thermo"],
  #svc-plan:checked     ~ .svc-tabs-panels [data-panel="svc-plan"] {
    display: grid;
  }
  @keyframes svcFade {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: none; }
  }

  .svc-panel-copy h3 {
    font-family: 'Big Shoulders Display', 'Figtree', sans-serif;
    font-weight: 800;
    font-size: clamp(24px, 2.6vw, 34px);
    line-height: 1.12;
    letter-spacing: -1px;
    color: var(--white);
    margin: 0 0 18px;
  }
  .svc-panel-copy p {
    color: var(--muted-2);
    font-size: 16.5px;
    line-height: 1.65;
    margin: 0 0 22px;
    max-width: 540px;
  }
  .svc-panel-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    display: grid;
    gap: 12px;
  }
  .svc-panel-bullet {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text);
    font-size: 15px;
  }
  .svc-panel-bullet::before {
    content: '';
    flex-shrink: 0;
    width: 18px; height: 18px;
    margin-top: 2px;
    border-radius: 50%;
    background: var(--brand-glow);
    border: 1.5px solid var(--brand);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%23f4a35a' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 10px 10px;
  }
  .svc-panel-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
  }
  .svc-panel-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--brand-light);
    font-weight: 600;
    font-size: 14.5px;
    padding: 10px 0;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease, color 0.2s ease;
  }
  .svc-panel-link:hover { border-bottom-color: var(--brand-light); color: var(--white); }
  .svc-panel-link svg { width: 14px; height: 14px; transition: transform 0.2s ease; }
  .svc-panel-link:hover svg { transform: translateX(3px); }

  .svc-panel-visual {
    position: relative;
    aspect-ratio: 4 / 3;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--navy-line);
    background: var(--navy-alt) center/cover no-repeat;
    filter: var(--hero-filter);
    box-shadow: 0 20px 40px -24px rgba(0,0,0,0.55);
  }
  .svc-panel-visual::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(10,21,48,0.05) 0%, rgba(10,21,48,0.55) 100%);
  }
  .svc-panel-tag {
    position: absolute;
    left: 16px; bottom: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: rgba(10,21,48,0.72);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 999px;
    color: var(--brand-light);
    font-family: 'Big Shoulders Display', 'Figtree', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    z-index: 1;
  }
  .svc-panel-tag::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--brand);
  }

  /* Smaller services footer list */
  .svc-other {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin-top: 56px;
    padding-top: 32px;
    border-top: 1px solid var(--navy-line);
    font-family: 'Big Shoulders Display', 'Figtree', sans-serif;
    font-size: 13px;
    color: var(--muted);
  }
  .svc-other-label {
    color: var(--brand-light);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 11.5px;
    margin-right: 4px;
  }
  .svc-other span::after { content: '·'; margin-left: 18px; color: rgba(255,255,255,0.2); }
  .svc-other span:last-child::after { content: ''; margin: 0; }

  /* ============== PULL QUOTE ============== */
  .pull-quote {
    max-width: 920px;
    margin: 0 auto;
    padding: 48px 52px 42px 60px;
    border-left: 4px solid var(--brand);
    position: relative;
  }
  .pull-quote::before {
    content: '“';
    position: absolute;
    top: -28px;
    left: 24px;
    font-family: 'Big Shoulders Display', 'Figtree', sans-serif;
    font-size: 140px;
    line-height: 1;
    color: var(--brand);
    opacity: 0.14;
  }
  .pull-quote p {
    font-family: 'Figtree', sans-serif;
    font-style: italic;
    font-weight: 500;
    font-size: clamp(22px, 2.4vw, 32px);
    line-height: 1.42;
    color: var(--white);
    margin: 0 0 26px;
    letter-spacing: -0.2px;
  }
  .pull-quote-attr {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    font-size: 14px;
  }
  .pull-quote-stars {
    display: inline-flex;
    gap: 2px;
    color: var(--brand);
  }
  .pull-quote-stars svg { width: 18px; height: 18px; fill: currentColor; }
  .pull-quote-name {
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.01em;
  }
  .pull-quote-sep { color: var(--muted); }
  .pull-quote-tag {
    color: var(--brand-light);
    text-transform: uppercase;
    font-size: 11.5px;
    letter-spacing: 0.14em;
    font-weight: 700;
  }

  /* ============== REVIEWS ============== */
  .reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-bottom: 64px;
  }
  .review-card {
    padding: 30px 28px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--navy-line);
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: transform 0.25s ease, border-color 0.25s ease;
  }
  .review-card:hover {
    transform: translateY(-4px);
    border-color: rgba(228,73,36,0.35);
  }
  .review-stars {
    display: inline-flex;
    gap: 3px;
    color: var(--brand);
  }
  .review-stars svg { width: 16px; height: 16px; fill: currentColor; }
  .review-text {
    flex-grow: 1;
    color: var(--text);
    font-size: 14.5px;
    line-height: 1.68;
    margin: 0;
  }
  .review-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 14px;
    border-top: 1px solid var(--navy-line);
  }
  .review-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--navy-3);
    color: var(--brand-light);
    border: 1px solid rgba(228,73,36,0.28);
    display: grid;
    place-items: center;
    font-family: 'Big Shoulders Display', 'Figtree', sans-serif;
    font-weight: 700;
    font-size: 16px;
  }
  .review-name {
    font-weight: 700;
    color: var(--white);
    font-size: 14.5px;
  }
  .review-date {
    color: var(--muted);
    font-size: 12.5px;
    letter-spacing: 0.02em;
  }

  /* Review carousel — swipeable scroller (like work-scroller) */
  .review-feed {
    position: relative;
    margin-top: 40px;
    padding: 0;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent 0%, #000 4%, #000 96%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 4%, #000 96%, transparent 100%);
  }
  .review-feed-track {
    display: flex;
    gap: 22px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding: 0 32px;
    -webkit-overflow-scrolling: touch;
    padding: 4px 32px 24px;
    margin: 0 -32px;
    scrollbar-width: thin;
    scrollbar-color: var(--brand) var(--navy-line);
  }
  .review-feed-track::-webkit-scrollbar { height: 6px; }
  .review-feed-track::-webkit-scrollbar-track { background: var(--navy-line); border-radius: 3px; }
  .review-feed-track::-webkit-scrollbar-thumb { background: var(--brand); border-radius: 3px; }
  .review-feed-card {
    flex: 0 0 340px;
    scroll-snap-align: start;
    padding: 24px 24px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--navy-line);
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .review-feed-card .review-text { font-size: 14px; }
  .review-feed-hint {
    display: block;
    text-align: center;
    margin-top: 8px;
    font-family: 'Big Shoulders Display', 'Figtree', sans-serif;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
  }
  .review-feed-hint::before,
  .review-feed-hint::after {
    content: '—';
    margin: 0 10px;
    color: var(--brand);
  }

  /* ============== WORK GALLERY — horizontal scroller of real jobs ============== */
  .work-scroller {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding: 0 32px;
    -webkit-overflow-scrolling: touch;
    padding: 4px 32px 24px;
    margin: 0 -32px;
    scrollbar-width: thin;
    scrollbar-color: var(--brand) var(--navy-line);
    mask-image: linear-gradient(90deg, transparent 0%, #000 3%, #000 97%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 3%, #000 97%, transparent 100%);
  }
  .work-scroller::-webkit-scrollbar { height: 6px; }
  .work-scroller::-webkit-scrollbar-track { background: var(--navy-line); border-radius: 3px; }
  .work-scroller::-webkit-scrollbar-thumb { background: var(--brand); border-radius: 3px; }

  .work-item {
    position: relative;
    flex: 0 0 360px;
    aspect-ratio: 4 / 5;
    scroll-snap-align: start;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--navy-line);
    background: var(--navy-alt);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .work-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 48px -24px rgba(0,0,0,0.5);
  }
  .work-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: var(--hero-filter);
    transition: transform 0.6s ease, filter 0.4s ease;
  }
  .work-item:hover img {
    transform: scale(1.04);
    filter: brightness(0.95) contrast(1.1) saturate(0.95);
  }
  .work-caption {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 20px 22px 18px;
    background: linear-gradient(180deg, transparent 0%, rgba(8,16,36,0.88) 55%, rgba(8,16,36,0.96) 100%);
    color: var(--white);
  }
  .work-caption-tag {
    display: inline-block;
    font-family: 'Big Shoulders Display', 'Figtree', sans-serif;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--brand-light);
    margin-bottom: 6px;
  }
  .work-caption-title {
    display: block;
    font-family: 'Big Shoulders Display', 'Figtree', sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.3px;
    line-height: 1.2;
    margin-bottom: 4px;
  }
  .work-caption-meta {
    font-size: 12.5px;
    color: rgba(255,255,255,0.65);
    line-height: 1.4;
  }
  .work-scroller-hint {
    display: block;
    text-align: center;
    margin-top: 8px;
    font-family: 'Big Shoulders Display', 'Figtree', sans-serif;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
  }
  .work-scroller-hint::before,
  .work-scroller-hint::after {
    content: '—';
    margin: 0 10px;
    color: var(--brand);
  }

  /* ============== STORY ============== */
  .story-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 76px;
    align-items: center;
  }
  .story-copy .eyebrow { color: var(--brand-light); }
  .story-copy h2 {
    font-family: 'Big Shoulders Display', 'Figtree', sans-serif;
    font-weight: 800;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.08;
    letter-spacing: -1.4px;
    color: var(--white);
    margin: 0 0 24px;
  }
  .story-copy p {
    color: var(--muted-2);
    font-size: 17px;
    line-height: 1.75;
    margin: 0 0 18px;
  }
  .story-sign {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1px solid var(--navy-line);
  }
  .story-sign-avatar {
    width: 60px; height: 60px;
    border-radius: 50%;
    background: var(--navy-3);
    color: var(--brand-light);
    border: 1.5px solid rgba(228,73,36,0.32);
    display: grid;
    place-items: center;
    font-family: 'Big Shoulders Display', 'Figtree', sans-serif;
    font-size: 24px;
    font-weight: 700;
  }
  .story-sign-name {
    display: block;
    font-family: 'Big Shoulders Display', 'Figtree', sans-serif;
    font-size: 30px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.3px;
    color: var(--white);
    line-height: 1.0;
  }
  .story-sign-role {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--brand-light);
  }
  .story-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
  .highlight-card {
    padding: 24px 22px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--navy-line);
    border-radius: var(--radius);
    transition: border-color 0.25s ease, transform 0.25s ease;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-areas:
      "icon title"
      "sub sub";
    column-gap: 12px;
    row-gap: 8px;
    align-items: center;
  }
  .highlight-card:hover {
    transform: translateY(-4px);
    border-color: rgba(228,73,36,0.3);
  }
  .highlight-icon {
    grid-area: icon;
    width: 40px; height: 40px;
    display: grid;
    place-items: center;
    background: var(--brand-glow);
    color: var(--brand-light);
    border-radius: 10px;
  }
  .highlight-icon svg { width: 20px; height: 20px; }
  .highlight-title {
    grid-area: title;
    display: block;
    font-size: 16.5px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.2px;
  }
  .highlight-sub {
    grid-area: sub;
    font-size: 13px;
    color: var(--muted-2);
    line-height: 1.55;
  }

  /* ============== PROCESS — horizontal stepped flow ============== */
  .process-flow {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: process;
  }
  .process-flow::before {
    content: '';
    position: absolute;
    top: 34px;
    left: calc(12.5% + 28px);
    right: calc(12.5% + 28px);
    height: 1px;
    background: repeating-linear-gradient(
      to right,
      rgba(228,73,36,0.35) 0 8px,
      transparent 8px 16px
    );
    z-index: 0;
    pointer-events: none;
  }
  .process-step-item {
    position: relative;
    padding: 0 28px 0 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    z-index: 1;
  }
  .process-step-num {
    position: relative;
    font-family: 'Big Shoulders Display', 'Figtree', sans-serif;
    font-size: 84px;
    font-weight: 900;
    line-height: 0.85;
    color: var(--brand);
    margin-bottom: 26px;
    display: inline-block;
    letter-spacing: -2px;
  }
  .process-step-num::before {
    content: '';
    position: absolute;
    top: 8px;
    left: -18px;
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--brand);
    box-shadow: 0 0 0 5px var(--navy);
  }
  .process-step-icon {
    color: var(--brand-light);
    margin-bottom: 16px;
    display: inline-flex;
  }
  .process-step-icon svg { width: 26px; height: 26px; }
  .process-step-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 10px;
    letter-spacing: -0.3px;
  }
  .process-step-body {
    font-size: 14px;
    color: var(--muted-2);
    line-height: 1.65;
    margin: 0;
  }
  .process-step-body a {
    color: var(--brand-light);
    font-weight: 600;
    border-bottom: 1px solid rgba(244,163,90,0.3);
  }
  .process-step-body a:hover { color: var(--white); border-bottom-color: var(--white); }

  /* ============== FAQ ============== */
  .faq-list { max-width: 860px; margin: 0 auto; }
  .faq-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--navy-line);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color 0.25s ease;
  }
  .faq-item:hover { border-color: rgba(228,73,36,0.25); }
  .faq-question {
    width: 100%;
    padding: 22px 28px;
    background: transparent;
    border: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    color: var(--white);
    font-weight: 600;
    font-size: 16.5px;
    letter-spacing: -0.2px;
    line-height: 1.45;
  }
  .faq-question::after {
    content: '';
    flex-shrink: 0;
    width: 20px; height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23e44924' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.3s ease;
  }
  .faq-item[open] .faq-question::after { transform: rotate(180deg); }
  .faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    overflow: hidden;
    transition: grid-template-rows 0.35s ease;
  }
  .faq-answer > .faq-answer-inner { min-height: 0; }
  .faq-item[open] .faq-answer { grid-template-rows: 1fr; }
  .faq-answer-inner {
    padding: 0 28px 24px;
    color: var(--muted-2);
    font-size: 15px;
    line-height: 1.75;
  }

  /* ============== SERVICE AREA ============== */
  .area-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    max-width: 940px;
    margin: 0 auto;
  }
  .area-pill {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--navy-line);
    border-radius: 999px;
    color: var(--text);
    font-size: 14.5px;
    font-weight: 500;
    letter-spacing: 0.01em;
    transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
  }
  .area-pill:hover {
    border-color: var(--brand);
    color: var(--white);
    background: rgba(228,73,36,0.12);
  }
  .area-pill.is-hq {
    border-color: rgba(228,73,36,0.4);
    color: var(--brand-light);
    background: rgba(228,73,36,0.1);
  }
  .area-pill.is-hq::before {
    content: '';
    display: inline-block;
    width: 6px; height: 6px;
    margin-right: 8px;
    border-radius: 50%;
    background: var(--brand);
  }

  /* ============== CONTACT FORM ============== */
  .estimate-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 72px;
    align-items: start;
  }
  .estimate-info h2 {
    font-family: 'Big Shoulders Display', 'Figtree', sans-serif;
    font-weight: 800;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.08;
    letter-spacing: -1.4px;
    color: var(--white);
    margin: 0 0 22px;
  }
  .estimate-info p {
    color: var(--muted-2);
    font-size: 17px;
    line-height: 1.7;
    margin: 0 0 26px;
  }
  .estimate-facts {
    display: grid;
    gap: 14px;
    margin-top: 34px;
  }
  .estimate-fact {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--text);
    font-size: 15.5px;
  }
  .estimate-fact-icon {
    width: 40px; height: 40px;
    display: grid;
    place-items: center;
    background: var(--brand-glow);
    color: var(--brand-light);
    border-radius: 12px;
  }
  .estimate-fact-icon svg { width: 18px; height: 18px; }
  .estimate-fact strong { color: var(--white); }
  .estimate-fact a { color: var(--brand-light); font-weight: 600; }
  .estimate-fact a:hover { color: var(--white); }

  .estimate-form {
    padding: 38px 38px 34px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--navy-line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
  }
  .estimate-form h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 6px;
    letter-spacing: -0.4px;
  }
  .estimate-form p.form-sub {
    margin: 0 0 24px;
    color: var(--muted-2);
    font-size: 14.5px;
  }
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
  }
  .form-field { display: block; margin-bottom: 14px; }
  .form-field label {
    display: block;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 8px;
  }
  .form-field input,
  .form-field select,
  .form-field textarea {
    width: 100%;
    padding: 12px 14px;
    background: rgba(10,21,48,0.5);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    color: var(--white);
    font-family: inherit;
    font-size: 15px;
    transition: border-color 0.2s ease, background 0.2s ease;
  }
  .form-field input::placeholder,
  .form-field textarea::placeholder { color: rgba(255,255,255,0.35); }
  .form-field input:focus,
  .form-field select:focus,
  .form-field textarea:focus {
    outline: none;
    border-color: var(--brand);
    background: rgba(10,21,48,0.7);
  }
  .form-field textarea { min-height: 110px; resize: vertical; }

  .form-upload {
    margin: 8px 0 18px;
    padding: 18px 20px;
    background: rgba(255,255,255,0.03);
    border: 1.5px dashed rgba(255,255,255,0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease;
  }
  .form-upload:hover {
    border-color: var(--brand);
    background: rgba(228,73,36,0.06);
  }
  .form-upload input[type="file"] { display: none; }
  .form-upload-icon {
    width: 44px; height: 44px;
    border-radius: 10px;
    background: var(--brand-glow);
    color: var(--brand-light);
    display: grid;
    place-items: center;
    flex-shrink: 0;
  }
  .form-upload-icon svg { width: 22px; height: 22px; }
  .form-upload-label {
    flex: 1;
  }
  .form-upload-label strong {
    display: block;
    color: var(--white);
    font-weight: 700;
    font-size: 14.5px;
    margin-bottom: 2px;
  }
  .form-upload-label span {
    font-size: 13px;
    color: var(--muted-2);
    line-height: 1.4;
  }
  .form-submit {
    width: 100%;
    padding: 16px 26px;
    background: var(--flame-gradient);
    color: var(--white);
    border: none;
    border-radius: 999px;
    font-weight: 700;
    font-size: 15.5px;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 10px 24px -14px rgba(0,0,0,0.45);
  }
  .form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 32px -14px rgba(0,0,0,0.55);
  }

  /* ============== CTA BAND ============== */
  .cta-band {
    background: var(--navy-alt);
    border-top: 1px solid var(--navy-line);
    position: relative;
    overflow: hidden;
  }
  .cta-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 40%, rgba(228,73,36,0.12), transparent 55%);
  }
  .cta-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 72px 32px;
  }
  .cta-inner h2 {
    font-size: clamp(30px, 4vw, 44px);
    font-weight: 800;
    letter-spacing: -1.3px;
    color: var(--white);
    margin: 0 0 14px;
  }
  .cta-inner p {
    color: rgba(255,255,255,0.75);
    font-size: 17px;
    max-width: 560px;
    margin: 0 auto 28px;
  }
  .cta-actions {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
  }

  /* ============== FOOTER ============== */
  .footer {
    padding: 72px 0 36px;
    background: var(--navy-deep);
    border-top: 1px solid var(--navy-line);
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 56px;
    margin-bottom: 48px;
  }
  .footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Big Shoulders Display', 'Figtree', sans-serif;
    font-weight: 800;
    font-size: 22px;
    color: var(--white);
    letter-spacing: -0.5px;
    margin-bottom: 16px;
  }
  .footer-brand .nav-logo-mark { width: 42px; height: 42px; }
  .footer-tagline {
    color: var(--muted-2);
    font-size: 15px;
    line-height: 1.65;
    max-width: 380px;
    margin: 0 0 20px;
  }
  .footer h3 {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--white);
    margin: 0 0 18px;
  }
  .footer ul { list-style: none; padding: 0; margin: 0; }
  .footer li { margin-bottom: 10px; }
  .footer li a { color: var(--muted); font-size: 14.5px; transition: color 0.2s ease; }
  .footer li a:hover { color: var(--brand-light); }
  .footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: var(--muted);
    font-size: 14.5px;
  }
  .footer-contact strong { color: var(--white); font-weight: 600; }
  .footer-contact a { color: var(--muted); }
  .footer-contact a:hover { color: var(--brand-light); }
  .footer-bottom {
    padding-top: 32px;
    border-top: 1px solid var(--navy-line);
    display: flex;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
    color: var(--muted);
    font-size: 13.5px;
  }
  .footer-bottom a { color: var(--muted); }
  .footer-bottom a:hover { color: var(--brand-light); }

  /* ============== CREDENTIALS ROW — one consolidated proof moment ============== */
  .credentials {
    background: var(--navy-alt);
    border-top: 1px solid var(--navy-line);
    border-bottom: 1px solid var(--navy-line);
    padding: 36px 0;
  }
  .credentials-row {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 14px 36px;
  }
  .cred-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Big Shoulders Display', 'Figtree', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.1px;
  }
  .cred-item svg {
    width: 18px; height: 18px;
    color: var(--brand-light);
    flex-shrink: 0;
  }
  .cred-item-sub {
    font-weight: 500;
    color: var(--muted);
    font-size: 12.5px;
    letter-spacing: 0;
  }
  .cred-sep {
    width: 1px;
    height: 28px;
    background: var(--navy-line);
    display: none;
  }
  @media (min-width: 900px) {
    .cred-sep { display: block; }
  }
  @media (max-width: 768px) {
    .credentials { padding: 24px 0; }
    .credentials-row { gap: 12px 22px; padding: 0 22px; }
    .cred-item { font-size: 12.5px; }
    .cred-item svg { width: 16px; height: 16px; }
    .cred-item-sub { display: none; }
  }

  /* ============== TRUST STRIP — manufacturer wordmarks ============== */
  .trust-strip {
    padding: 40px 0 36px;
    background: var(--navy-alt);
    border-top: 1px solid var(--navy-line);
    border-bottom: 1px solid var(--navy-line);
  }
  .trust-strip-label {
    text-align: center;
    font-family: 'Big Shoulders Display', 'Figtree', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 22px;
  }
  .trust-strip-brands {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 44px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
  }
  .trust-strip-brand {
    font-family: 'Big Shoulders Display', 'Figtree', sans-serif;
    font-weight: 800;
    font-size: 19px;
    letter-spacing: -0.4px;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    transition: color 0.2s ease, transform 0.2s ease;
    cursor: default;
  }
  .trust-strip-brand:hover { color: rgba(255,255,255,0.9); transform: translateY(-1px); }

  /* ============== GUARANTEE BAND ============== */
  .guarantee-band {
    background: var(--navy-alt);
    padding: 64px 0 56px;
    border-top: 1px solid var(--navy-line);
    border-bottom: 1px solid var(--navy-line);
  }
  .guarantee-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
  }
  .guarantee-item {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 0 12px 0 20px;
    border-left: 1px solid var(--navy-line);
  }
  .guarantee-item-metric {
    font-family: 'Big Shoulders Display', 'Figtree', sans-serif;
    text-transform: uppercase;
    letter-spacing: -0.4px;
    font-weight: 800;
    font-size: clamp(24px, 2.4vw, 32px);
    letter-spacing: -0.8px;
    line-height: 1;
    color: var(--brand-light);
    margin-bottom: 8px;
  }
  .guarantee-item-title {
    font-family: 'Big Shoulders Display', 'Figtree', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: var(--white);
    letter-spacing: -0.2px;
  }
  .guarantee-item-sub {
    font-size: 13px;
    color: var(--muted-2);
    line-height: 1.5;
  }

  /* ============== PRICING TRANSPARENCY ============== */
  .pricing-transparency {
    padding: 110px 0;
    text-align: center;
    background: var(--navy);
    position: relative;
    border-top: 1px solid var(--navy-line);
    border-bottom: 1px solid var(--navy-line);
  }
  .pricing-transparency-inner {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 1;
  }
  .pricing-transparency-eyebrow {
    display: inline-block;
    font-family: 'Big Shoulders Display', 'Figtree', sans-serif;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--brand-light);
    margin-bottom: 22px;
  }
  .pricing-transparency h2 {
    font-family: 'Big Shoulders Display', 'Figtree', sans-serif;
    font-weight: 800;
    font-size: clamp(30px, 3.6vw, 44px);
    line-height: 1.08;
    letter-spacing: -1.4px;
    color: var(--white);
    margin: 0 0 22px;
  }
  .pricing-transparency p {
    color: var(--muted-2);
    font-size: 17px;
    line-height: 1.65;
    max-width: 580px;
    margin: 0 auto 38px;
  }
  .pricing-transparency-quote {
    font-family: 'Big Shoulders Display', 'Figtree', sans-serif;
    font-style: italic;
    font-size: clamp(18px, 2vw, 22px);
    line-height: 1.45;
    color: rgba(255,255,255,0.85);
    max-width: 620px;
    margin: 0 auto;
    padding-top: 28px;
    border-top: 1px solid var(--navy-line);
  }
  .pricing-transparency-attr {
    display: block;
    margin-top: 14px;
    font-family: 'Big Shoulders Display', 'Figtree', sans-serif;
    font-style: normal;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
  }

  /* ============== FOOTER SEALS + LICENSE ============== */
  .footer-seals {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
  }
  .footer-seal {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 999px;
    font-family: 'Big Shoulders Display', 'Figtree', sans-serif;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
  }
  .footer-seal svg { width: 13px; height: 13px; color: var(--brand-light); flex-shrink: 0; }
  .footer-license {
    margin-top: 18px;
    font-family: 'Big Shoulders Display', 'Figtree', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--muted);
  }
  .footer-license .lic-num {
    display: inline-block;
    padding: 2px 8px;
    margin-left: 4px;
    background: rgba(228,73,36,0.1);
    border: 1px solid rgba(228,73,36,0.25);
    border-radius: 4px;
    color: var(--brand-light);
    font-family: 'SF Mono', ui-monospace, monospace;
    font-size: 11px;
    letter-spacing: 0.04em;
  }

  /* ============== SCROLL REVEAL ============== */
  .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ============== MOTION REDUCE ============== */
  @media (prefers-reduced-motion: reduce) {
    * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
    .marquee-track, .review-feed-track { animation: none !important; }
    .reveal { opacity: 1 !important; transform: none !important; }
  }

  /* ============== RESPONSIVE ============== */
  @media (max-width: 1080px) {
    .svc-panel { grid-template-columns: 1fr; gap: 32px; }
    .svc-panel-visual { aspect-ratio: 16 / 10; max-height: 380px; order: -1; }
    .svc-tab { padding: 14px 14px 12px; font-size: 13.5px; }
    .work-item { flex: 0 0 320px; }
    .process-flow { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
    .process-flow::before { display: none; }
    .reviews-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
    .footer-grid .footer-col-contact { grid-column: 1 / -1; }
    .guarantee-grid { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
    .trust-strip-brands { gap: 32px; }
    .trust-strip-brand { font-size: 17px; }
  }
  @media (max-width: 900px) {
    .hero { padding: 110px 0 80px; }
    .hero-content { padding: 0 24px; }
    .story-grid { grid-template-columns: 1fr; gap: 48px; }
    .estimate-grid { grid-template-columns: 1fr; gap: 48px; }
    .stats-inner { grid-template-columns: repeat(2, 1fr); }
    .stat:nth-child(2) { border-right: none; }
    .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--navy-line); }
    .emergency { padding: 88px 0 80px; }
    .emergency-quote { font-size: clamp(22px, 5.2vw, 30px); }
    .pricing-transparency { padding: 72px 0; }
    .pricing-transparency h2 { font-size: clamp(26px, 5.5vw, 34px); }
  }
  @media (max-width: 768px) {
    .section { padding: 72px 0; }
    .container { padding: 0 22px; }
    .nav { padding: 12px 0; background: rgba(10,21,48,0.95); backdrop-filter: blur(14px); }
    .nav-links, .nav-cta { display: none; }
    .hamburger { display: inline-flex; margin-left: auto; }
    .hero { padding: 96px 0 72px; }
    .hero-content { padding: 0 22px; }
    .hero h1 { letter-spacing: -1.5px; }
    .hero-quote { font-size: 15px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .footer-col-brand { grid-column: 1 / -1; }
    .footer-bottom { flex-direction: column; gap: 12px; }
    .pull-quote { padding: 36px 28px 32px 34px; }
    .pull-quote::before { font-size: 90px; top: -18px; left: 10px; }
    .work-scroller { padding: 4px 22px 20px; margin: 0 -22px; }
    .work-item { flex: 0 0 260px; }
    .svc-tabs-row { overflow-x: auto; flex-wrap: nowrap; -webkit-overflow-scrolling: touch; gap: 0; padding-bottom: 4px; margin-bottom: 36px; scrollbar-width: none; }
    .svc-tabs-row::-webkit-scrollbar { display: none; }
    .svc-tab { flex-shrink: 0; padding: 12px 14px 10px; font-size: 13px; }
    .svc-panel { gap: 24px; }
    .svc-panel-visual { max-height: 260px; }
    .svc-other { gap: 8px 12px; font-size: 12.5px; }
    .guarantee-grid { grid-template-columns: 1fr; row-gap: 28px; }
    .guarantee-item { padding-left: 16px; }
    .trust-strip { padding: 32px 0 28px; }
    .trust-strip-brands { gap: 20px 28px; }
    .trust-strip-brand { font-size: 15px; }
    .process-flow { grid-template-columns: 1fr; row-gap: 32px; padding-left: 26px; }
    .process-flow::before {
      display: block;
      top: 0; bottom: 0;
      left: 10px; right: auto;
      width: 1px; height: auto;
      background: repeating-linear-gradient(
        to bottom,
        rgba(228,73,36,0.35) 0 8px,
        transparent 8px 16px
      );
    }
    .process-step-item { padding-right: 0; padding-left: 0; }
    .process-step-num { font-size: 52px; }
    .process-step-num::before { left: -26px; top: 14px; }
    .story-highlights { grid-template-columns: 1fr; }
    .review-feed-card { flex: 0 0 300px; }
  }
  @media (max-width: 480px) {
    .hero-badges .badge:nth-child(3) { display: none; }
    .btn { width: 100%; justify-content: center; }
    .form-row { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; gap: 10px; }
  }
