/* ==========================================================================
   Testarossa Roofing — shared stylesheet
   Extracted from the index.html <style> block so every page (homepage plus
   the /services/ pages) shares one cached copy. Single source of truth:
   edit here, not in any page's <head>.
   ========================================================================== */

/* ================================================
       TOKENS — pulled from the Testarossa sign and truck:
       roofline red, asphalt charcoal, clean daylight white
    ================================================ */
    :root {
      --bg-0: #F4F5F6;
      --bg-1: #E8EAEC;
      --surface: #FFFFFF;

      --ink-950: #16181B;
      --ink-900: #1C1F23;
      --ink-800: #272B30;
      --ink-line: rgba(255,255,255,.10);
      --ink-line-s: rgba(255,255,255,.20);

      /* brand gold, sampled from the truck decal: this is now the main colour */
      --gold:   #C6A860;
      --gold-d: #8A6B2E;
      --gold-l: #E0C888;

      /* red stays in the system as a small accent only: em highlights,
         the hero glow, error states. Never a dominant surface. */
      --red:   #B92A2E;
      --red-d: #8C1F22;
      --red-l: #E2534E;
      --star:  #F4B430;
      --ok:    #3C8A5B;

      --cta-top: #D9BE79;
      --cta-btm: #A3813F;
      --cta-ink: #201A0D;

      --t1: #1B1D20;
      --t2: #52565B;
      --t3: #6A6E74;

      --n1: #F3F4F5;
      --n2: #B9BEC3;
      --n3: #8B9095;

      --border:   #DEE1E4;
      --border-s: #C7CCD0;
      --border-a: rgba(198,168,96,.4);

      --r-sm: 7px;
      --r:    12px;
      --r-lg: 16px;
      --r-xl: 22px;

      --shadow-card: 0 1px 2px rgba(20,17,14,.07), 0 18px 44px -18px rgba(20,17,14,.22);
      --shadow-hover: 0 2px 4px rgba(20,17,14,.08), 0 28px 60px -20px rgba(20,17,14,.32);
      --shadow-cta: 0 1px 0 rgba(255,255,255,.35) inset, 0 12px 28px -10px rgba(138,107,46,.5);

      --display: 'Oswald', 'Arial Narrow', sans-serif;
      --body:    'Inter', 'Helvetica Neue', sans-serif;

      --ease: cubic-bezier(.19,1,.22,1);

      --z-nav: 100;
      --z-sticky: 150;
      --z-menu: 200;
      --z-lightbox: 300;
    }

    /* ================================================
       BASE
    ================================================ */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      background: var(--bg-0);
      color: var(--t1);
      font-family: var(--body);
      font-size: 17px;
      line-height: 1.62;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }
    a { text-decoration: none; color: inherit; }
    img { max-width: 100%; display: block; }
    button { font-family: inherit; }
    ::selection { background: var(--ink-900); color: #fff; }

    a:focus-visible, button:focus-visible, input:focus-visible,
    select:focus-visible, textarea:focus-visible {
      outline: 2px solid var(--gold-d);
      outline-offset: 3px;
      border-radius: 4px;
    }

    .skip-link {
      position: absolute;
      left: -9999px;
      top: 12px;
      z-index: calc(var(--z-menu) + 1);
      background: var(--ink-900);
      color: #fff;
      font-weight: 700;
      padding: 12px 20px;
      border-radius: var(--r);
    }
    .skip-link:focus { left: 12px; }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
        scroll-behavior: auto !important;
      }
    }

    /* ================================================
       LAYOUT UTILITIES
    ================================================ */
    .wrap {
      width: 100%;
      max-width: 1180px;
      margin: 0 auto;
      padding: 0 28px;
    }

    .h1 {
      font-family: var(--display);
      font-size: clamp(40px, 5vw, 62px);
      font-weight: 700;
      line-height: .98;
      letter-spacing: -.01em;
      text-wrap: balance;
      text-transform: uppercase;
    }
    .h2 {
      font-family: var(--display);
      font-size: clamp(32px, 4vw, 50px);
      font-weight: 700;
      line-height: 1;
      letter-spacing: -.008em;
      text-wrap: balance;
      text-transform: uppercase;
    }
    .h1 em, .h2 em { font-style: normal; color: var(--red); }
    .on-navy .h2 em, .hero .h1 em { color: var(--red-l); }

    /* roofline kicker: a single gable peak above section headings */
    .gable {
      display: block;
      width: 42px; height: 15px;
      margin-bottom: 14px;
      color: var(--gold-d);
    }
    .gable.center { margin-left: auto; margin-right: auto; }

    .lead {
      font-size: clamp(16.5px, 1.35vw, 18.5px);
      color: var(--t2);
      line-height: 1.66;
      max-width: 62ch;
      text-wrap: pretty;
    }
    .on-navy .lead { color: var(--n2); }

    .sh-center { text-align: center; max-width: 720px; margin: 0 auto 58px; }
    .sh-center .lead { margin: 14px auto 0; }
    .sh-split {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 32px;
      flex-wrap: wrap;
      margin-bottom: 48px;
    }
    .sh-split .lead { margin-top: 12px; }

    /* ================================================
       BUTTONS
    ================================================ */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 15px 26px;
      border-radius: 9px;
      font-size: 16px;
      font-weight: 700;
      cursor: pointer;
      border: none;
      transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease);
    }
    .btn:active { transform: translateY(1px) scale(.99); }
    .btn-cta {
      background: linear-gradient(180deg, var(--cta-top) 0%, var(--cta-btm) 100%);
      color: var(--cta-ink);
      box-shadow: var(--shadow-cta);
    }
    .btn-cta:hover {
      transform: translateY(-2px);
      box-shadow: 0 1px 0 rgba(255,255,255,.3) inset, 0 18px 38px -10px rgba(138,107,46,.6);
    }
    .btn-ghost {
      background: transparent;
      color: var(--t1);
      border: 1.5px solid var(--border-s);
    }
    .btn-ghost:hover { border-color: var(--t3); transform: translateY(-2px); }
    .on-navy .btn-ghost, .hero .btn-ghost, .svc-hero .btn-ghost {
      color: var(--n1);
      border-color: var(--ink-line-s);
    }
    .on-navy .btn-ghost:hover, .hero .btn-ghost:hover, .svc-hero .btn-ghost:hover { border-color: var(--n2); }
    .btn svg { flex-shrink: 0; }

    /* ================================================
       NAV
    ================================================ */
    #hdr {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: var(--z-nav);
      background: rgba(255,255,255,.96);
      border-bottom: 1px solid var(--border);
      transition: box-shadow .35s var(--ease);
    }
    #hdr.on { box-shadow: 0 10px 34px -18px rgba(20,17,14,.3); }
    #hdr .hdr-inner {
      max-width: 1180px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      padding: 10px 28px;
    }

    .brand-lockup {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-shrink: 0;
    }
    .brand-logo { height: 46px; width: 46px; display: block; flex-shrink: 0; border-radius: 11px; }
    .brand-text { line-height: 1; }
    .brand-name {
      display: block;
      font-family: var(--display);
      font-size: 19px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .01em;
      color: var(--ink-900);
      white-space: nowrap;
    }
    .brand-sub {
      display: block;
      font-size: 10.5px;
      font-weight: 600;
      letter-spacing: .28em;
      text-transform: uppercase;
      color: var(--gold-d);
      margin-top: 3px;
    }

    .nav { display: flex; align-items: center; gap: 18px; }
    .nav-links {
      display: flex;
      gap: 4px;
      list-style: none;
    }
    .nav-links a {
      display: block;
      white-space: nowrap;
      padding: 9px 13px;
      font-family: var(--display);
      font-size: 16px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: .04em;
      color: var(--t2);
      border-bottom: 2px solid transparent;
      transition: color .2s var(--ease), border-color .2s var(--ease);
    }
    .nav-links a:hover { color: var(--ink-900); border-color: var(--gold-d); }
    .nav-call {
      display: flex;
      align-items: center;
      gap: 9px;
      background: linear-gradient(180deg, var(--cta-top) 0%, var(--cta-btm) 100%);
      color: var(--cta-ink);
      padding: 11px 18px;
      border-radius: 9px;
      font-size: 15px;
      font-weight: 700;
      white-space: nowrap;
      font-variant-numeric: tabular-nums;
      box-shadow: var(--shadow-cta);
      transition: transform .25s var(--ease), box-shadow .25s var(--ease);
    }
    .nav-call:hover {
      transform: translateY(-1px);
      box-shadow: 0 1px 0 rgba(255,255,255,.3) inset, 0 14px 30px -10px rgba(138,107,46,.6);
    }
    .nav-call svg { width: 14px; height: 14px; }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      background: transparent;
      border: none;
      padding: 10px;
      border-radius: 8px;
    }
    .hamburger span { display: block; width: 22px; height: 2px; background: var(--ink-900); border-radius: 2px; transition: transform .25s var(--ease), opacity .25s var(--ease); }
    .hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
    .hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .mobile-menu {
      position: fixed;
      inset: 70px 14px auto 14px;
      z-index: var(--z-menu);
      background: #fff;
      border: 1px solid var(--border);
      border-radius: var(--r-lg);
      padding: 12px;
      box-shadow: 0 30px 70px -24px rgba(20,17,14,.45);
      opacity: 0;
      visibility: hidden;
      transform: translateY(-10px);
      transition: opacity .25s var(--ease), transform .25s var(--ease), visibility 0s .25s;
    }
    .mobile-menu.open {
      opacity: 1;
      visibility: visible;
      transform: none;
      transition: opacity .25s var(--ease), transform .25s var(--ease);
    }
    .mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 2px; }
    .mobile-menu a {
      display: block;
      padding: 13px 16px;
      border-radius: var(--r-sm);
      font-family: var(--display);
      font-size: 19px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: .04em;
      color: var(--t1);
    }
    .mobile-menu a:hover { background: var(--bg-0); }
    .mm-call {
      margin-top: 10px;
      display: flex !important;
      align-items: center;
      justify-content: center;
      gap: 9px;
      background: linear-gradient(180deg, var(--cta-top), var(--cta-btm));
      color: var(--cta-ink) !important;
      border-radius: 9px !important;
      font-family: var(--body) !important;
      font-size: 16px !important;
      text-transform: none !important;
      letter-spacing: 0 !important;
      font-weight: 700 !important;
    }

    /* ================================================
       HERO — video background
    ================================================ */
    .hero {
      position: relative;
      min-height: 100dvh;
      display: flex;
      align-items: center;
      padding: 140px 0 120px;
      overflow: hidden;
      background: var(--ink-950);
    }
    .hero-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
    .hbg-video {
      position: absolute; inset: 0;
      width: 100%; height: 100%;
      object-fit: cover; object-position: center 38%;
      background: var(--ink-950);
    }
    /* black fade over the footage: keeps the drone shot readable behind white type */
    .hbg-scrim {
      position: absolute; inset: 0;
      background:
        linear-gradient(180deg, rgba(14,15,17,.58) 0%, rgba(14,15,17,.44) 34%, rgba(14,15,17,.66) 74%, rgba(14,15,17,.9) 100%),
        linear-gradient(90deg, rgba(14,15,17,.5) 0%, rgba(14,15,17,.14) 52%, rgba(14,15,17,0) 100%);
    }
    .hbg-glow {
      position: absolute;
      top: -18%; left: 30%;
      width: 900px; height: 680px;
      background: radial-gradient(ellipse, rgba(185,42,46,.18) 0%, transparent 60%);
      filter: blur(22px);
      animation: drift 22s ease-in-out infinite alternate;
    }
    @keyframes drift {
      0%   { transform: translate(0,0) rotate(0); }
      100% { transform: translate(60px,-24px) rotate(5deg); }
    }

    .hero-layout {
      display: grid;
      grid-template-columns: 1.08fr .92fr;
      gap: 56px;
      align-items: center;
      position: relative;
      z-index: 1;
      width: 100%;
    }

    .avail-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: rgba(255,255,255,.07);
      border: 1px solid var(--ink-line-s);
      border-radius: 8px;
      padding: 8px 15px 8px 12px;
      font-size: 13.5px;
      font-weight: 600;
      color: var(--n1);
      margin-bottom: 28px;
      animation: fade-up .8s var(--ease) both;
    }
    .avail-dot {
      width: 7px; height: 7px;
      background: #3DD57F;
      border-radius: 50%;
      box-shadow: 0 0 8px rgba(61,213,127,.8);
      animation: blink 2.2s ease-in-out infinite;
    }
    @keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: .35; } }

    .hero-title { margin-bottom: 20px; color: #fff; animation: fade-up .9s var(--ease) .08s both; }
    /* location deck: a second, smaller line of display type under the slogan */
    .hero-title-loc {
      display: block;
      margin-top: 16px;
      font-family: var(--display);
      font-size: clamp(15px, 1.55vw, 20px);
      font-weight: 500;
      letter-spacing: .035em;
      line-height: 1.35;
      color: var(--n1);
      text-transform: uppercase;
      text-wrap: pretty;
    }
    .htl-lead { display: block; }
    /* cities sit on their own line under the lead-in. Flex-wrap rather than
       inline text so a narrow phone breaks between towns, never mid-name, and
       the separator rides on the town before it so a wrap can't start a line
       with a stray dot. */
    .htl-cities {
      display: flex;
      flex-wrap: wrap;
      align-items: baseline;
      justify-content: flex-start;
      margin-top: 5px;
      row-gap: 2px;
    }
    .htl-cities > span { white-space: nowrap; }
    .htl-cities > span:not(:last-child)::after {
      content: '·';
      color: var(--red-l);
      padding: 0 .42em;
    }
    .hero-title-loc i { font-style: normal; color: var(--red-l); padding: 0 3px; }
    .hero-lead {
      margin-bottom: 36px;
      max-width: 54ch;
      color: var(--n2);
      animation: fade-up .9s var(--ease) .16s both;
    }
    .hero-ctas {
      display: flex;
      align-items: center;
      gap: 14px;
      flex-wrap: wrap;
      margin-bottom: 44px;
      position: relative;
      z-index: 5;
      animation: fade-up .9s var(--ease) .24s both;
    }
    .hero-call-wrap { position: relative; z-index: 20; display: inline-flex; }
    .hero-call {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      background: linear-gradient(180deg, var(--cta-top) 0%, var(--cta-btm) 100%);
      color: var(--cta-ink);
      padding: 16px 26px;
      border-radius: 10px;
      font-size: 18px;
      font-weight: 700;
      letter-spacing: .01em;
      white-space: nowrap;
      box-shadow: var(--shadow-cta);
      transition: transform .3s var(--ease), box-shadow .3s var(--ease);
      cursor: pointer;
    }
    .hero-call:hover {
      transform: translateY(-3px);
      box-shadow: 0 1px 0 rgba(255,255,255,.3) inset, 0 22px 48px -12px rgba(138,107,46,.65);
    }
    .hero-call:active { transform: translateY(0) scale(.99); }
    .hero-call svg { width: 19px; height: 19px; flex-shrink: 0; }
    .hero-call .hc-chev { width: 14px; height: 14px; transition: transform .25s var(--ease); }
    .hero-call[aria-expanded="true"] .hc-chev { transform: rotate(180deg); }

    .hero-call-menu {
      position: absolute;
      top: calc(100% + 10px);
      left: 0;
      min-width: 270px;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--r-lg);
      box-shadow: 0 30px 70px -24px rgba(20,17,14,.45);
      padding: 8px;
      opacity: 0;
      visibility: hidden;
      transform: translateY(-8px);
      transition: opacity .22s var(--ease), transform .22s var(--ease), visibility 0s .22s;
      z-index: var(--z-sticky);
    }
    .hero-call-menu.open {
      opacity: 1;
      visibility: visible;
      transform: none;
      transition: opacity .22s var(--ease), transform .22s var(--ease);
    }
    .hcm-item {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 12px 13px;
      border-radius: var(--r-sm);
      transition: background .2s var(--ease);
    }
    .hcm-item:hover, .hcm-item:focus-visible { background: var(--bg-0); }
    .hcm-item svg { color: var(--gold-d); flex-shrink: 0; }
    .hcm-item .hcm-label {
      display: block;
      font-size: 15px;
      font-weight: 700;
      color: var(--t1);
      line-height: 1.3;
    }
    .hcm-item .hcm-sub {
      display: block;
      font-size: 13px;
      font-weight: 500;
      color: var(--t3);
      margin-top: 1px;
    }

    .hero-creds {
      display: flex;
      align-items: center;
      gap: 10px 22px;
      flex-wrap: wrap;
      animation: fade-up .9s var(--ease) .34s both;
    }
    .cred {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 13.5px;
      font-weight: 600;
      color: var(--n2);
      white-space: nowrap;
    }
    .cred svg { color: var(--gold-l); flex-shrink: 0; }

    @keyframes fade-up {
      from { opacity: 0; transform: translateY(22px); }
      to   { opacity: 1; transform: none; }
    }

    /* hero quote card */
    .hero-qcard {
      background: var(--surface);
      border-radius: var(--r-lg);
      padding: 32px 30px 28px;
      box-shadow: 0 40px 90px -30px rgba(0,0,0,.55);
      animation: fade-up .9s var(--ease) .4s both;
      position: relative;
      overflow: hidden;
      max-width: 450px;
      justify-self: end;
      width: 100%;
    }
    .qcard-ttl {
      font-family: var(--display);
      font-size: 29px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .01em;
      color: var(--ink-900);
      margin-bottom: 4px;
    }
    .qcard-sub {
      font-size: 14.5px;
      color: var(--t3);
      margin-bottom: 20px;
    }
    .qfg { display: flex; flex-direction: column; gap: 6px; margin-bottom: 12px; }
    .qfg label {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .06em;
      text-transform: uppercase;
      color: var(--t2);
    }
    .hero-qcard input,
    .hero-qcard select {
      background: var(--bg-0);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 12px 14px;
      color: var(--t1);
      font-family: var(--body);
      font-size: 15px;
      outline: none;
      width: 100%;
      transition: border-color .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease);
    }
    .hero-qcard input:focus, .hero-qcard select:focus {
      border-color: var(--gold-d);
      background: #fff;
      box-shadow: 0 0 0 3px rgba(198,168,96,.22);
    }
    .hero-qcard input::placeholder { color: var(--t3); }
    .qrow { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; }
    .qsub {
      width: 100%;
      margin-top: 6px;
      background: linear-gradient(180deg, var(--cta-top) 0%, var(--cta-btm) 100%);
      color: var(--cta-ink);
      border: none;
      border-radius: 9px;
      padding: 15px;
      font-family: var(--body);
      font-size: 16px;
      font-weight: 700;
      cursor: pointer;
      box-shadow: var(--shadow-cta);
      transition: transform .25s var(--ease), box-shadow .25s var(--ease);
    }
    .qsub:hover:not(:disabled) {
      transform: translateY(-2px);
      box-shadow: 0 1px 0 rgba(255,255,255,.3) inset, 0 18px 40px -10px rgba(138,107,46,.6);
    }
    .qsub:active { transform: translateY(0) scale(.99); }
    .form-note {
      margin-top: 11px;
      font-size: 12.5px;
      color: var(--t3);
      text-align: center;
    }
    .form-msg {
      display: none;
      margin-top: 13px;
      padding: 12px 15px;
      border-radius: 9px;
      font-size: 14.5px;
      font-weight: 600;
    }
    .form-msg.ok {
      display: block;
      background: rgba(60,138,91,.1);
      border: 1px solid rgba(60,138,91,.35);
      color: #235C36;
    }
    .form-msg.err {
      display: block;
      background: rgba(185,42,46,.09);
      border: 1px solid rgba(185,42,46,.35);
      color: #7A2023;
    }

    /* ================================================
       TRUST BAR
    ================================================ */
    .trust-bar { position: relative; padding: 0 18px; margin-top: -36px; z-index: 5; }
    .trust-inner {
      max-width: 1180px;
      margin: 0 auto;
      background: var(--surface);
      border-radius: var(--r-lg);
      box-shadow: var(--shadow-card);
      overflow: hidden;
    }
    /* dividers are 1px gaps showing the container colour through, so they
       always land between cells, including when the row wraps */
    .trust-list {
      display: flex;
      align-items: stretch;
      flex-wrap: wrap;
      gap: 1px;
      background: var(--border);
    }
    .trust-item {
      flex: 1 1 auto;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      padding: 17px 18px;
      background: var(--surface);
      font-size: 14px;
      font-weight: 600;
      line-height: 1.3;
      color: var(--t1);
      white-space: nowrap;
    }
    .trust-item svg { color: var(--gold-d); flex-shrink: 0; }

    /* ================================================
       SERVICES
    ================================================ */
    .services { padding: 120px 0 92px; position: relative; }
    .svc-rows { display: flex; flex-direction: column; gap: 20px; margin-bottom: 20px; }
    .svc-row {
      display: grid;
      grid-template-columns: 5fr 7fr;
      border-radius: var(--r-lg);
      background: var(--surface);
      border: 1px solid var(--border);
      box-shadow: var(--shadow-card);
      overflow: hidden;
      transition: border-color .35s var(--ease), transform .35s var(--ease), box-shadow .35s var(--ease);
      position: relative;
      -webkit-mask-image: -webkit-radial-gradient(white, black);
              mask-image: radial-gradient(white, black);
    }
    .svc-row:hover {
      border-color: var(--border-s);
      transform: translateY(-4px);
      box-shadow: var(--shadow-hover);
    }
    .svc-copy { padding: 38px 36px; position: relative; z-index: 1; display: flex; flex-direction: column; justify-content: center; }
    .svc-kind {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: .05em;
      text-transform: uppercase;
      color: var(--gold-d);
      margin-bottom: 10px;
    }
    .svc-kind svg { flex-shrink: 0; }
    .svc-name {
      font-family: var(--display);
      font-size: clamp(27px, 2.7vw, 36px);
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0;
      line-height: 1;
      color: var(--ink-900);
      margin-bottom: 12px;
    }
    .svc-desc { font-size: 16px; color: var(--t2); line-height: 1.66; max-width: 56ch; }
    .svc-pic { position: relative; min-height: 250px; overflow: hidden; }
    .svc-pic img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .7s var(--ease);
    }
    .svc-row:hover .svc-pic img { transform: scale(1.045); }
    .svc-row.flip { grid-template-columns: 7fr 5fr; }
    .svc-row.flip .svc-copy { order: 2; }
    .svc-row.flip .svc-pic { order: 1; }

    .svc-more {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 10px 0;
      border: 1px dashed var(--border-s);
      border-radius: var(--r-lg);
      background: transparent;
      padding: 18px 24px;
    }
    .svc-more-lbl {
      font-family: var(--display);
      font-size: 16px;
      font-weight: 600;
      letter-spacing: .06em;
      text-transform: uppercase;
      color: var(--t3);
      margin-right: 22px;
    }
    .svc-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 15px;
      font-weight: 600;
      color: var(--t2);
      padding: 6px 16px 6px 0;
      margin-right: 14px;
      white-space: nowrap;
    }
    .svc-tag::before {
      content: '';
      width: 8px; height: 8px;
      background: var(--gold-d);
      clip-path: polygon(50% 0, 100% 100%, 0 100%);
    }

    /* ================================================
       WORK GALLERY
    ================================================ */
    .work { padding: 96px 0; position: relative; background: var(--ink-950); }
    .work .h2 { color: #fff; }
    .work .lead { color: var(--n2); }

    /* a few of the best shots, static and large */
    .work-featured {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-auto-rows: 320px;
      gap: 14px;
      margin-bottom: 14px;
    }

    /* everything else: an auto-scrolling strip, easier to browse than a
       tall grid on a phone — it plays itself, tap any frame to zoom in */
    .work-scroll {
      position: relative;
      overflow: hidden;
      margin: 0 -28px;
      padding: 0 28px;
    }
    .work-scroll-track {
      display: flex;
      gap: 14px;
      width: max-content;
      animation: work-marquee 46s linear infinite;
    }
    .work-scroll:hover .work-scroll-track,
    .work-scroll-track.paused {
      animation-play-state: paused;
    }
    @keyframes work-marquee {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }
    .work-scroll .work-card {
      flex: 0 0 240px;
      width: 240px;
      height: 240px;
    }

    /* drone video pair, under the strip */
    .work-videos-head {
      text-align: center;
      max-width: 560px;
      margin: 64px auto 28px;
    }
    .work-videos-head .gable { margin-left: auto; margin-right: auto; }
    .work-videos-head h3 {
      font-family: var(--display);
      font-size: clamp(24px, 2.6vw, 32px);
      font-weight: 700;
      text-transform: uppercase;
      color: #fff;
      line-height: 1.05;
      margin-bottom: 10px;
    }
    .work-videos-head h3 em { font-style: normal; color: var(--gold-l); }
    .work-videos-head p { font-size: 15px; color: var(--n2); }
    .work-videos {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }
    .work-video-frame {
      position: relative;
      width: 100%;
      aspect-ratio: 16 / 9;
      border-radius: var(--r-lg);
      overflow: hidden;
      background: var(--ink-800);
      border: 1px solid var(--ink-line);
      box-shadow: 0 30px 60px -22px rgba(0,0,0,.7);
    }
    .work-video-frame iframe {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      border: 0;
    }
    /* click-to-load YouTube facade: keeps ~1MB of third-party JS off first paint */
    .yt-facade {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      padding: 0;
      border: 0;
      cursor: pointer;
      background: var(--ink-800);
      display: block;
    }
    .yt-facade img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .yt-facade-play {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 68px;
      height: 48px;
      border-radius: 12px;
      background: rgba(18,18,18,.78);
      display: grid;
      place-items: center;
      transition: background .25s var(--ease), transform .25s var(--ease);
    }
    .yt-facade:hover .yt-facade-play,
    .yt-facade:focus-visible .yt-facade-play {
      background: var(--red);
      transform: translate(-50%, -50%) scale(1.06);
    }
    .yt-facade-play svg { fill: #fff; margin-left: 2px; }
    .work-card {
      position: relative;
      border-radius: var(--r);
      overflow: hidden;
      border: 1px solid var(--ink-line);
      background: var(--ink-800);
      cursor: pointer;
      padding: 0;
      text-align: left;
      display: block;
      width: 100%;
      transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
      -webkit-mask-image: -webkit-radial-gradient(white, black);
              mask-image: radial-gradient(white, black);
    }
    .work-card:hover, .work-card:focus-visible {
      transform: translateY(-5px);
      border-color: var(--ink-line-s);
      box-shadow: 0 30px 60px -22px rgba(0,0,0,.7);
    }
    .work-card img {
      width: 100%; height: 100%;
      object-fit: cover;
      transition: transform .65s var(--ease);
    }
    .work-card:hover img { transform: scale(1.05); }
    .work-card::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(14,15,17,0) 46%, rgba(14,15,17,.85) 100%);
      pointer-events: none;
    }
    .work-cap {
      position: absolute;
      inset: auto 0 0 0;
      z-index: 2;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      padding: 16px 18px 15px;
      pointer-events: none;
    }
    .work-cap-name {
      font-family: var(--display);
      font-size: 20px;
      font-weight: 600;
      text-transform: uppercase;
      color: #fff;
      letter-spacing: .02em;
      line-height: 1.05;
    }
    .work-cap-loc { font-size: 12.5px; color: var(--n2); font-weight: 500; display: block; margin-top: 3px; }
    .work-zoom {
      width: 36px; height: 36px;
      flex-shrink: 0;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(14,15,17,.6);
      border: 1px solid var(--ink-line-s);
      color: #fff;
      opacity: 0;
      transform: translateY(6px);
      transition: opacity .3s var(--ease), transform .3s var(--ease);
    }
    .work-card:hover .work-zoom, .work-card:focus-visible .work-zoom { opacity: 1; transform: none; }

    /* ================================================
       ABOUT
    ================================================ */
    .about { padding: 120px 0; position: relative; overflow: hidden; background: var(--surface); }
    .about-grid {
      display: grid;
      grid-template-columns: 1.05fr .95fr;
      gap: 72px;
      align-items: center;
      position: relative;
      z-index: 1;
    }
    .about-lead { margin: 16px 0 32px; }
    .about-points { display: flex; flex-direction: column; }
    .feat {
      display: flex;
      gap: 16px;
      align-items: flex-start;
      padding: 20px 4px;
      border-top: 1px solid var(--border);
      transition: background .3s var(--ease);
    }
    .feat:last-child { border-bottom: 1px solid var(--border); }
    .feat-icon {
      width: 44px; height: 44px;
      background: var(--ink-900);
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      color: #fff;
      flex-shrink: 0;
    }
    .feat-copy h3 { font-family: var(--display); font-size: 20px; font-weight: 600; text-transform: uppercase; letter-spacing: .015em; color: var(--ink-900); margin-bottom: 4px; }
    .feat-copy p  { font-size: 15px; color: var(--t2); line-height: 1.62; }

    .about-photo {
      position: relative;
      border-radius: var(--r-lg);
      overflow: hidden;
      box-shadow: var(--shadow-hover);
      transform: rotate(1.2deg);
    }
    .about-photo img { width: 100%; height: auto; aspect-ratio: 1/1.15; object-fit: cover; }
    .about-photo::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(200deg, transparent 50%, rgba(14,15,17,.55) 100%);
      pointer-events: none;
    }
    .about-photo-cap {
      position: absolute;
      left: 16px; right: 16px; bottom: 15px;
      z-index: 2;
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 12px 16px;
      border-radius: var(--r-sm);
      background: rgba(14,15,17,.82);
      font-size: 13.5px;
      font-weight: 600;
      color: #fff;
    }
    .about-photo-cap svg { color: var(--gold-l); flex-shrink: 0; }

    /* ================================================
       REVIEWS
    ================================================ */
    .reviews { padding: 108px 0 118px; background: var(--bg-1); }
    .g-badge {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--r);
      padding: 14px 20px;
      box-shadow: var(--shadow-card);
      transition: border-color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
    }
    .g-badge:hover {
      border-color: var(--border-s);
      transform: translateY(-2px);
      box-shadow: var(--shadow-hover);
    }
    .g-ico {
      width: 34px; height: 34px;
      flex-shrink: 0;
    }
    .g-stars { font-size: 15px; color: var(--star); letter-spacing: 2px; line-height: 1; }
    .g-cnt { font-size: 12.5px; color: var(--t3); margin-top: 4px; }

    .rev-feature {
      border-radius: var(--r-xl);
      background: var(--ink-950);
      color: var(--n1);
      padding: clamp(30px, 4vw, 48px);
      margin-bottom: 18px;
      position: relative;
      overflow: hidden;
      box-shadow: 0 32px 70px -26px rgba(14,15,17,.6);
    }
    .rev-feature::after {
      content: '\201C';
      position: absolute;
      top: -30px; right: 26px;
      font-family: var(--display);
      font-size: 220px;
      color: rgba(198,168,96,.3);
      line-height: 1;
      pointer-events: none;
    }
    .rev-feature blockquote p {
      font-size: clamp(17.5px, 1.75vw, 22px);
      line-height: 1.6;
      color: #fff;
      max-width: 70ch;
    }
    .rev-byline {
      display: flex;
      align-items: center;
      gap: 13px;
      margin-top: 22px;
    }
    .rc-avatar {
      width: 44px; height: 44px;
      border-radius: 50%;
      background: var(--gold-d);
      color: #fff;
      font-family: var(--display);
      font-size: 17px; font-weight: 700;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .rc-name { font-size: 15px; font-weight: 700; color: inherit; }
    .rc-meta { font-size: 12.5px; color: var(--n3); margin-top: 2px; }
    .rc .rc-meta { color: var(--t3); }
    .rc-stars { color: var(--star); font-size: 13px; letter-spacing: 2px; }

    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 16px;
    }
    .rc {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--r-lg);
      padding: 26px;
      display: flex;
      flex-direction: column;
      box-shadow: 0 1px 2px rgba(20,17,14,.06);
      transition: border-color .3s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease);
    }
    .rc:hover {
      border-color: var(--border-s);
      transform: translateY(-4px);
      box-shadow: var(--shadow-card);
    }
    .rc .rc-stars { margin-bottom: 12px; }
    .rc-body {
      font-size: 15.5px;
      color: var(--t2);
      line-height: 1.66;
      flex: 1;
      margin-bottom: 20px;
    }
    .rc-author { display: flex; align-items: center; gap: 12px; }
    .rc .rc-avatar { width: 40px; height: 40px; font-size: 15px; background: var(--ink-900); color: #fff; }

    /* the rest of the reviews: an auto-advancing strip that is a real scroll
       container, so a finger or a trackpad can take it over at any point.
       Same idea as the work gallery, but native scrolling rather than a
       transform, because people want to steer this one. */
    .rev-scroll {
      margin: 18px -28px 0;
      padding: 4px 28px 10px;
      overflow-x: auto;
      overflow-y: hidden;
      scrollbar-width: none;
      -ms-overflow-style: none;
      -webkit-overflow-scrolling: touch;
      overscroll-behavior-x: contain;
      /* deliberately NO scroll-snap at rest: snapping fights the per-frame
         drift and pins the strip in place. Snap is switched on by JS only
         while a finger or pointer is actually steering. */
    }
    .rev-scroll.is-steering {
      scroll-snap-type: x mandatory;
      scroll-padding-left: 28px;
    }
    .rev-scroll::-webkit-scrollbar { display: none; }
    .rev-scroll:focus-visible {
      outline: 2px solid var(--gold-d);
      outline-offset: 3px;
      border-radius: var(--r-lg);
    }
    .rev-scroll-track { display: flex; gap: 16px; width: max-content; }
    .rev-scroll-set { display: contents; }
    .rev-scroll .rc {
      flex: 0 0 360px;
      width: 360px;
      scroll-snap-align: start;
    }
    /* no line clamping: -webkit-box gets blockified on a flex item, so the
       clamp silently does nothing, and half-quoting a customer is worse than a
       tall card anyway. Cards still stretch to the tallest in the row, but in
       the strip the quote does NOT grow to fill — otherwise a short review
       leaves a hole between the text and the name. Letting the leftover space
       fall to the bottom instead reads as generous padding. */
    .rev-scroll .rc-body { flex: 0 0 auto; }
    .rev-scroll-hint {
      margin-top: 14px;
      font-size: 13px;
      color: var(--t3);
      text-align: center;
    }
    .rev-scroll-hint a { color: var(--t2); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
    .rev-scroll-hint a:hover { color: var(--gold-d); }

    /* ================================================
       PROCESS
    ================================================ */
    .process { padding: 120px 0; background: var(--surface); }
    .steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      border: 1px solid var(--border);
      border-radius: var(--r-lg);
      background: var(--surface);
      box-shadow: var(--shadow-card);
      overflow: hidden;
    }
    .step {
      padding: 34px 28px 38px;
      border-right: 1px solid var(--border);
      position: relative;
      transition: background .3s var(--ease);
    }
    .step:last-child { border-right: none; }
    .step:hover { background: var(--bg-0); }
    .step-num {
      font-family: var(--display);
      font-size: 42px;
      font-weight: 700;
      color: var(--gold-d);
      line-height: 1;
      margin-bottom: 14px;
    }
    .step h3 {
      font-family: var(--display);
      font-size: 23px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: .015em;
      color: var(--ink-900);
      margin-bottom: 9px;
    }
    .step p { font-size: 15px; color: var(--t2); line-height: 1.62; }

    /* ================================================
       FAQ
    ================================================ */
    .faq { padding: 108px 0 124px; background: var(--bg-0); }
    .faq-grid {
      display: grid;
      grid-template-columns: minmax(280px, 5fr) 7fr;
      gap: 64px;
      align-items: start;
    }
    .faq-intro .lead { margin-top: 14px; margin-bottom: 28px; }
    .faq-list { display: flex; flex-direction: column; gap: 10px; }
    .faq-item {
      border: 1px solid var(--border);
      border-radius: var(--r);
      background: var(--surface);
      overflow: hidden;
      transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
    }
    .faq-item[open] { border-color: var(--border-s); box-shadow: var(--shadow-card); }
    .faq-item summary {
      list-style: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      padding: 17px 21px;
      font-size: 16.5px;
      font-weight: 700;
      color: var(--ink-900);
    }
    .faq-item summary::-webkit-details-marker { display: none; }
    /* Questions are <h3> for snippet/PAA extraction; reset UA heading styles
       so the rendered appearance is identical to the previous plain text. */
    .faq-item summary .faq-q {
      margin: 0;
      font: inherit;
      color: inherit;
      letter-spacing: inherit;
      text-transform: none;
    }
    .faq-x {
      width: 26px; height: 26px;
      flex-shrink: 0;
      border-radius: 50%;
      border: 1px solid var(--border-s);
      display: flex; align-items: center; justify-content: center;
      color: var(--gold-d);
      transition: transform .3s var(--ease), background .3s var(--ease);
    }
    .faq-item[open] .faq-x { transform: rotate(45deg); background: rgba(198,168,96,.16); }
    .faq-a { padding: 0 21px 19px; font-size: 15.5px; color: var(--t2); line-height: 1.66; max-width: 65ch; }

    /* ================================================
       OFFER BAND
    ================================================ */
    .emg {
      padding: 84px 0;
      position: relative;
      overflow: hidden;
      background: linear-gradient(135deg, var(--cta-top) 0%, var(--cta-btm) 100%);
    }
    .emg-inner {
      position: relative; z-index: 1;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 36px;
      flex-wrap: wrap;
    }
    .emg-text h2 {
      font-family: var(--display);
      font-size: clamp(33px, 4.4vw, 54px);
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0;
      color: var(--cta-ink);
      margin-bottom: 10px;
      line-height: 1;
    }
    .emg-text p { font-size: 17px; color: #3A2E17; max-width: 52ch; }
    .emg-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
    .emg-phone {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      background: #16181B;
      color: var(--gold-l);
      padding: 17px 28px;
      border-radius: 10px;
      font-size: 18px;
      font-weight: 700;
      white-space: nowrap;
      font-variant-numeric: tabular-nums;
      box-shadow: 0 18px 44px -14px rgba(0,0,0,.5);
      transition: transform .25s var(--ease), box-shadow .25s var(--ease);
    }
    .emg-phone:hover { transform: translateY(-3px); }
    .emg-phone svg { width: 19px; height: 19px; }
    .emg-phone .hc-city {
      font-size: 10.5px;
      font-weight: 700;
      letter-spacing: .13em;
      text-transform: uppercase;
      opacity: .7;
      display: block;
      line-height: 1;
      margin-bottom: 3px;
    }
    .emg-phone .hc-num { display: block; line-height: 1; }

    /* ================================================
       SERVICE AREA
    ================================================ */
    .area { padding: 120px 0; position: relative; background: var(--surface); }
    .area-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 72px;
      align-items: center;
    }
    .area-desc { margin-top: 14px; margin-bottom: 32px; max-width: 50ch; }
    .cities { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
    .city-pill {
      display: flex;
      align-items: center;
      gap: 8px;
      background: var(--bg-0);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 11px 14px;
      font-size: 14px;
      font-weight: 500;
      color: var(--t2);
      transition: border-color .2s var(--ease), color .2s var(--ease), background .2s var(--ease);
    }
    .city-pill:hover { border-color: var(--border-s); color: var(--t1); background: #fff; }
    /* each pill links through to that town's own page */
    .city-pill a {
      color: inherit;
      text-decoration: none;
      flex: 1;
    }
    .city-pill:has(a:focus-visible) {
      outline: 2px solid var(--gold-d);
      outline-offset: 2px;
    }
    .city-pill a:focus-visible { outline: none; }
    .city-pip {
      width: 8px; height: 8px;
      background: var(--gold-d);
      clip-path: polygon(50% 0, 100% 100%, 0 100%);
      flex-shrink: 0;
    }
    .city-pill.home {
      border-color: var(--ink-900);
      background: var(--ink-900);
      color: #fff;
      font-weight: 700;
    }

    .radar-wrap {
      border-radius: var(--r-xl);
      background: var(--ink-950);
      overflow: hidden;
      position: relative;
      display: flex; align-items: center; justify-content: center;
      padding: 40px 20px;
      min-height: 440px;
      box-shadow: var(--shadow-hover);
    }
    .radar-scene { position: relative; width: 350px; height: 350px; }
    .ring {
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,.14);
    }
    .ring-1 { width: 105px; height: 105px; }
    .ring-2 { width: 185px; height: 185px; border-color: rgba(255,255,255,.1); }
    .ring-3 { width: 270px; height: 270px; border-color: rgba(255,255,255,.07); }
    .ring-4 { width: 350px; height: 350px; border-color: rgba(255,255,255,.045); }
    .radar-sweep {
      position: absolute;
      top: 50%; left: 50%;
      width: 185px; height: 185px;
      border-radius: 50%;
      background: conic-gradient(from 0deg, transparent 0deg, rgba(198,168,96,.16) 50deg, rgba(198,168,96,.42) 90deg, transparent 90deg);
      animation: spin 4.5s linear infinite;
    }
    @keyframes spin {
      from { transform: translate(-50%, -50%) rotate(0deg); }
      to   { transform: translate(-50%, -50%) rotate(360deg); }
    }
    .radar-pin {
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      width: 56px; height: 56px;
      background: rgba(198,168,96,.24);
      border: 2px solid var(--gold-l);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      z-index: 2;
      color: #fff;
    }
    .city-dot {
      position: absolute;
      display: flex; flex-direction: column; align-items: center; gap: 3px;
      z-index: 3;
    }
    .dot-pip {
      width: 8px; height: 8px;
      background: var(--gold-l);
      border-radius: 50%;
      animation: pulse-pip 2.4s ease-in-out infinite;
    }
    .dot-lbl { font-size: 11.5px; font-weight: 600; color: var(--n2); white-space: nowrap; letter-spacing: .05em; text-shadow: 0 1px 6px rgba(14,15,17,.9); }
    @keyframes pulse-pip {
      0%,100% { box-shadow: 0 0 0 0 rgba(224,200,136,.55); }
      50%     { box-shadow: 0 0 0 6px rgba(224,200,136,0); }
    }

    /* ================================================
       CONTACT
    ================================================ */
    .contact { padding: 116px 0 124px; background: var(--bg-1); }
    .contact-grid {
      display: grid;
      grid-template-columns: 5fr 7fr;
      gap: 64px;
      align-items: start;
    }
    .contact-lead { margin-top: 14px; max-width: 46ch; }
    .cinfo { display: flex; flex-direction: column; gap: 12px; margin-top: 34px; }
    .ci {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 14px 16px;
      border-radius: var(--r);
      background: var(--surface);
      border: 1px solid var(--border);
      transition: border-color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
    }
    .ci:hover { border-color: var(--border-s); transform: translateX(4px); box-shadow: var(--shadow-card); }
    /* non-interactive contact row (hours) — no hover affordance */
    .ci-static:hover { border-color: var(--border); transform: none; box-shadow: none; }
    .ci-icon {
      width: 44px; height: 44px;
      background: var(--ink-900);
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      color: #fff;
      flex-shrink: 0;
    }
    .ci-lbl { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--t3); margin-bottom: 2px; }
    .ci-val { font-size: 16px; font-weight: 700; color: var(--t1); font-variant-numeric: tabular-nums; }

    .form-card {
      background: var(--surface);
      border-radius: var(--r-xl);
      padding: 38px;
      box-shadow: var(--shadow-card);
      position: relative;
      overflow: hidden;
    }
    .form-ttl {
      font-family: var(--display);
      font-size: 30px;
      font-weight: 700;
      text-transform: uppercase;
      color: var(--ink-900);
      margin-bottom: 5px;
    }
    .form-sub { font-size: 14.5px; color: var(--t3); margin-bottom: 26px; }
    .fgrid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }
    .fg { display: flex; flex-direction: column; gap: 6px; }
    .fg.full { grid-column: 1 / -1; }
    .fg label { font-size: 12px; font-weight: 700; color: var(--t2); text-transform: uppercase; letter-spacing: .06em; }
    .fg label .opt { color: var(--t3); font-weight: 500; text-transform: none; letter-spacing: 0; }
    .fg input, .fg select, .fg textarea {
      background: var(--bg-0);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 12px 15px;
      color: var(--t1);
      font-family: var(--body);
      font-size: 15px;
      outline: none;
      width: 100%;
      transition: border-color .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease);
    }
    .fg input:focus, .fg select:focus, .fg textarea:focus {
      border-color: var(--gold-d);
      background: #fff;
      box-shadow: 0 0 0 3px rgba(198,168,96,.22);
    }
    .fg input::placeholder, .fg textarea::placeholder { color: var(--t3); }
    .fg textarea { resize: vertical; min-height: 110px; }
    .fsub {
      width: 100%;
      margin-top: 8px;
      background: linear-gradient(180deg, var(--cta-top) 0%, var(--cta-btm) 100%);
      color: var(--cta-ink);
      border: none;
      border-radius: 9px;
      padding: 16px;
      font-family: var(--body);
      font-size: 16px; font-weight: 700;
      cursor: pointer;
      box-shadow: var(--shadow-cta);
      transition: transform .25s var(--ease), box-shadow .25s var(--ease);
    }
    .fsub:hover:not(:disabled) {
      transform: translateY(-2px);
      box-shadow: 0 1px 0 rgba(255,255,255,.3) inset, 0 18px 40px -10px rgba(138,107,46,.6);
    }
    .fsub:active { transform: translateY(0) scale(.99); }
    .fsub:disabled, .qsub:disabled { opacity: .65; cursor: wait; }

    /* ================================================
       CAREERS — dark band, different audience
    ================================================ */
    .careers { padding: 116px 0 124px; background: var(--ink-950); position: relative; }
    .careers .h2 { color: #fff; }
    .careers .lead { color: var(--n2); }
    .careers-grid {
      display: grid;
      grid-template-columns: 5fr 7fr;
      gap: 64px;
      align-items: start;
    }
    .careers-lead { margin-top: 14px; margin-bottom: 30px; max-width: 46ch; }
    .job-points { display: flex; flex-direction: column; }
    .job-point {
      display: flex;
      gap: 14px;
      align-items: flex-start;
      padding: 16px 2px;
      border-top: 1px solid var(--ink-line);
    }
    .job-point:last-child { border-bottom: 1px solid var(--ink-line); }
    .job-point svg { color: var(--gold-l); flex-shrink: 0; margin-top: 3px; }
    .job-point h3 {
      font-family: var(--display);
      font-size: 18px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: .02em;
      color: #fff;
      margin-bottom: 3px;
    }
    .job-point p { font-size: 14.5px; color: var(--n2); line-height: 1.6; }

    /* file upload control */
    .fg-file input[type="file"] {
      position: absolute;
      width: 1px; height: 1px;
      opacity: 0; overflow: hidden;
      clip: rect(0 0 0 0);
    }
    .fg .file-drop {
      display: flex;
      align-items: center;
      gap: 13px;
      width: 100%;
      padding: 14px 16px;
      text-transform: none;
      letter-spacing: normal;
      font-weight: 600;
      border: 1.5px dashed var(--border-s);
      border-radius: 9px;
      background: var(--bg-0);
      cursor: pointer;
      transition: border-color .2s var(--ease), background .2s var(--ease);
    }
    .fg .file-drop:hover { border-color: var(--gold-d); background: #fff; }
    .fg-file input[type="file"]:focus-visible + .file-drop {
      border-color: var(--gold-d);
      box-shadow: 0 0 0 3px rgba(198,168,96,.22);
    }
    .file-drop svg { color: var(--gold-d); flex-shrink: 0; }
    .file-drop-txt { font-size: 14.5px; font-weight: 600; color: var(--t1); line-height: 1.3; }
    .file-drop-hint { display: block; font-size: 12.5px; font-weight: 500; color: var(--t3); margin-top: 2px; }

    /* ================================================
       FOOTER
    ================================================ */
    .footer {
      background: var(--ink-950);
      color: var(--n2);
      padding: 76px 0 30px;
      position: relative;
    }
    .footer::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,.14) 22%, rgba(255,255,255,.14) 78%, transparent);
    }
    .footer-cols {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 44px;
      margin-bottom: 48px;
    }
    .footer-logo-plate {
      display: inline-block;
      background: #fff;
      border-radius: var(--r);
      padding: 12px;
    }
    .footer-logo-plate img { height: 60px; width: 60px; border-radius: 10px; }
    .footer-brand p { font-size: 14.5px; color: var(--n2); line-height: 1.68; margin-top: 16px; max-width: 300px; }
    .social { display: flex; gap: 10px; margin-top: 18px; }
    .social a {
      width: 40px; height: 40px;
      display: flex; align-items: center; justify-content: center;
      border-radius: 10px;
      background: rgba(255,255,255,.06);
      border: 1px solid var(--ink-line);
      color: var(--n2);
      transition: color .2s var(--ease), border-color .2s var(--ease), background .2s var(--ease), transform .2s var(--ease);
    }
    .social a:hover { color: #fff; border-color: var(--ink-line-s); background: rgba(255,255,255,.1); transform: translateY(-2px); }
    .fcol h2 {
      font-family: var(--display);
      font-size: 16px; font-weight: 600;
      text-transform: uppercase; letter-spacing: .1em;
      color: #fff; margin-bottom: 16px;
    }
    .flinks { display: flex; flex-direction: column; gap: 10px; list-style: none; }
    .flinks a, .flinks li { font-size: 14.5px; color: var(--n2); transition: color .2s; }
    .flinks a:hover { color: #fff; }
    .footer-btm {
      border-top: 1px solid var(--ink-line);
      padding-top: 26px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 14px;
    }
    .footer-btm p { font-size: 13px; color: var(--n3); }
    .badges { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
    .badge {
      background: rgba(198,168,96,.2);
      border: 1px solid rgba(224,200,136,.42);
      color: #F3C2C0;
      padding: 5px 13px;
      border-radius: 7px;
      font-size: 11.5px; font-weight: 700;
      letter-spacing: .04em;
      white-space: nowrap;
    }

    /* ================================================
       MOBILE STICKY CTA
    ================================================ */
    .sticky-bar {
      display: none;
      position: fixed;
      inset: auto 10px 10px 10px;
      z-index: var(--z-sticky);
      background: rgba(255,255,255,.97);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 8px;
      box-shadow: 0 24px 60px -18px rgba(20,17,14,.45);
    }
    .sticky-bar-inner { display: flex; gap: 8px; }
    .sticky-bar a {
      flex: 1;
      display: flex; align-items: center; justify-content: center;
      gap: 8px; padding: 13px 8px;
      border-radius: 9px;
      font-size: 15px; font-weight: 700;
      white-space: nowrap;
    }
    .sb-call {
      background: linear-gradient(180deg, var(--cta-top), var(--cta-btm));
      color: var(--cta-ink);
      box-shadow: 0 1px 0 rgba(255,255,255,.25) inset;
      font-variant-numeric: tabular-nums;
    }
    .sb-quote { background: var(--ink-900); color: #fff; }

    /* ================================================
       LIGHTBOX
    ================================================ */
    .lightbox {
      position: fixed;
      inset: 0;
      z-index: var(--z-lightbox);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 22px;
      background: rgba(14,15,17,.94);
      opacity: 0;
      visibility: hidden;
      transition: opacity .3s var(--ease), visibility 0s .3s;
    }
    .lightbox.open { opacity: 1; visibility: visible; transition: opacity .3s var(--ease); }
    .lb-head {
      width: 100%;
      max-width: 1060px;
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 16px;
      margin-bottom: 14px;
    }
    .lb-title { font-family: var(--display); font-size: clamp(23px,3vw,30px); font-weight: 700; text-transform: uppercase; color: #fff; line-height: 1.02; }
    .lb-sub { font-size: 13.5px; color: var(--n2); margin-top: 3px; }
    .lb-counter { font-size: 13.5px; font-weight: 600; color: var(--n2); white-space: nowrap; font-variant-numeric: tabular-nums; }
    .lb-counter b { color: var(--gold-l); }
    .lb-close {
      position: absolute;
      top: 18px; right: 18px;
      width: 46px; height: 46px;
      display: flex; align-items: center; justify-content: center;
      border-radius: 50%;
      background: rgba(255,255,255,.08);
      border: 1px solid var(--ink-line-s);
      color: #fff;
      cursor: pointer;
      transition: background .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
      z-index: 3;
    }
    .lb-close:hover { background: rgba(255,255,255,.16); transform: rotate(90deg); }
    .lb-stage {
      position: relative;
      width: 100%;
      max-width: 1060px;
      flex: 1;
      min-height: 0;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .lb-img {
      max-width: 100%;
      max-height: 100%;
      width: auto; height: auto;
      object-fit: contain;
      border-radius: var(--r);
      box-shadow: 0 30px 80px -20px rgba(0,0,0,.9);
      background: var(--ink-800);
    }
    .lb-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 50px; height: 50px;
      display: flex; align-items: center; justify-content: center;
      border-radius: 50%;
      background: rgba(14,15,17,.78);
      border: 1px solid var(--ink-line-s);
      color: #fff;
      cursor: pointer;
      transition: background .2s var(--ease), border-color .2s var(--ease);
      z-index: 2;
    }
    .lb-nav:hover { background: var(--gold-d); border-color: var(--gold-d); }
    .lb-prev { left: -6px; }
    .lb-next { right: -6px; }
    .lb-thumbs {
      display: flex;
      gap: 9px;
      margin-top: 16px;
      max-width: 1060px;
      width: 100%;
      overflow-x: auto;
      padding: 4px 2px 2px;
      scrollbar-width: thin;
      justify-content: center;
    }
    .lb-thumb {
      flex: 0 0 auto;
      width: 76px; height: 54px;
      border-radius: 7px;
      overflow: hidden;
      border: 2px solid transparent;
      opacity: .45;
      cursor: pointer;
      transition: opacity .2s var(--ease), border-color .2s var(--ease);
      padding: 0;
      background: var(--ink-800);
    }
    .lb-thumb img { width: 100%; height: 100%; object-fit: cover; }
    .lb-thumb:hover { opacity: .85; }
    .lb-thumb.active { opacity: 1; border-color: var(--gold-l); }
    body.lb-lock { overflow: hidden; }

    /* ================================================
       SCROLL REVEAL
    ================================================ */
    .js .rev {
      opacity: 0;
      transform: translateY(26px);
      transition: opacity .8s var(--ease), transform .8s var(--ease);
    }
    .js .rev.in { opacity: 1; transform: none; }
    .js .d1 { transition-delay: .07s; }
    .js .d2 { transition-delay: .14s; }
    .js .d3 { transition-delay: .21s; }

    /* ================================================
       RESPONSIVE
    ================================================ */
    /* nav collapses earlier than the layout: 7 links + phone button need the room */
    @media (max-width: 1140px) {
      .nav-links { display: none; }
      .hamburger { display: flex; }
    }
    @media (max-width: 1024px) {
      .hero-layout { grid-template-columns: 1fr; gap: 44px; }
      .hero { min-height: 0; }
      .hero-qcard { justify-self: stretch; max-width: 560px; margin: 0 auto; }
      .about-grid, .area-grid { grid-template-columns: 1fr; gap: 52px; }
      .contact-grid, .faq-grid, .careers-grid { grid-template-columns: 1fr; gap: 48px; }
      .footer-cols { grid-template-columns: 1fr 1fr; }
      .steps { grid-template-columns: 1fr 1fr; }
      .step:nth-child(2n) { border-right: none; }
      .step:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
      .work-featured { grid-template-columns: 1fr 1fr; grid-auto-rows: 260px; }
      .about-photo { width: 100%; max-width: 560px; margin: 0 auto; transform: none; }
    }
    @media (max-width: 768px) {
      body { font-size: 16px; }
      .wrap { padding: 0 20px; }
      #hdr .hdr-inner { padding: 8px 16px; }
      .brand-logo { height: 38px; width: 38px; }
      .brand-name { font-size: 15px; }
      .brand-sub { letter-spacing: .16em; font-size: 8.5px; }
      .nav-call span { display: none; }
      .nav-call { padding: 11px 13px; }
      .hero { padding: 108px 0 84px; }
      .hero-title { font-size: clamp(28px, 8.2vw, 42px); }
      .hero-ctas { flex-direction: column; align-items: stretch; }
      .hero-call-wrap { display: flex; }
      .hero-call { justify-content: center; flex: 1; }
      .hero-call-menu { left: 0; right: 0; min-width: 0; }
      .btn { justify-content: center; }
      .hero-creds { gap: 8px 18px; }
      .cred { font-size: 12.5px; }
      .qrow { grid-template-columns: 1fr; }
      .trust-item {
        flex: 1 1 100%;
        justify-content: flex-start;
        padding: 13px 18px;
        font-size: 13.5px;
        white-space: normal;
      }
      .services, .about, .process, .area { padding: 84px 0; }
      .reviews, .faq, .contact, .careers { padding: 84px 0; }
      .work { padding: 78px 0; }
      .svc-row, .svc-row.flip { grid-template-columns: 1fr; }
      .svc-row.flip .svc-copy { order: 1; }
      .svc-row.flip .svc-pic { order: 2; }
      .svc-pic { min-height: 210px; }
      .svc-copy { padding: 26px 22px; }
      .svc-more { padding: 16px 20px; }
      .svc-more-lbl { width: 100%; margin: 0 0 4px; }
      .work-featured { grid-template-columns: 1fr; grid-auto-rows: 220px; }
      .work-scroll { margin: 0 -20px; padding: 0 20px; }
      .work-scroll .work-card { flex-basis: 190px; width: 190px; height: 190px; }
      .rev-scroll { margin: 16px -20px 0; padding: 4px 20px 10px; }
      .rev-scroll.is-steering { scroll-padding-left: 20px; }
      .rev-scroll-track { gap: 12px; }
      .rev-scroll .rc { flex-basis: 80vw; width: 80vw; max-width: 340px; padding: 22px 20px; }
      .rev-scroll .rc-body { font-size: 15px; }
      .rev-feature { padding: 26px 22px; }
      .rev-feature::after { font-size: 150px; top: -20px; right: 14px; }
      .reviews-grid { gap: 12px; }
      .work-videos { grid-template-columns: 1fr; gap: 16px; }
      .work-videos-head { margin: 48px auto 24px; }
      .steps { grid-template-columns: 1fr; }
      .step { border-right: none; border-bottom: 1px solid var(--border); }
      .step:last-child { border-bottom: none; }
      .cities { grid-template-columns: 1fr 1fr; }
      .fgrid { grid-template-columns: 1fr; }
      .fg.full { grid-column: 1; }
      .form-card { padding: 26px 22px; }
      .ci-val { font-size: 15px; overflow-wrap: anywhere; }
      .hero-qcard { padding: 26px 20px 22px; }
      .footer-cols { grid-template-columns: 1fr; gap: 34px; }
      .footer-btm { flex-direction: column; text-align: center; }
      .sticky-bar { display: block; }
      body { padding-bottom: 84px; }
      .emg-inner { flex-direction: column; align-items: stretch; text-align: center; }
      .emg-text p { margin: 0 auto; }
      .emg-ctas { flex-direction: column; }
      .emg-phone { justify-content: center; }
      .lightbox { padding: 14px; }
      .lb-head { padding-right: 54px; }
      .lb-nav { width: 42px; height: 42px; }
      .lb-prev { left: 4px; }
      .lb-next { right: 4px; }
      .lb-thumbs { justify-content: flex-start; }
      .lb-thumb { width: 62px; height: 44px; }
      .radar-wrap { min-height: 380px; }
      .radar-scene { width: 290px; height: 290px; }
      .ring-4 { width: 290px; height: 290px; }
      .ring-3 { width: 230px; height: 230px; }
    }
    @media (max-width: 380px) {
      .brand-name { font-size: 14px; }
      .brand-sub { font-size: 8px; }
      .hero-call { font-size: 15.5px; padding: 14px 16px; }
      .sb-call { font-size: 13px; }
      .sb-quote { font-size: 13px; }
    }

/* ==========================================================================
   SERVICE PAGES (/services/*)
   Shared shell for the Phase 7 service pages: breadcrumbs, article prose,
   spec lists, sibling-service cross-links and the page hero.
   ========================================================================== */

.svc-hero {
  position: relative;
  padding: 132px 0 56px;
  background: var(--ink-900);
  color: #fff;
  overflow: hidden;
}
.svc-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(22,24,27,.62) 0%, rgba(22,24,27,.92) 100%);
}
.svc-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .5;
}
.svc-hero .wrap { position: relative; z-index: 2; }
.svc-hero h1 { color: #fff; margin-bottom: 16px; max-width: 20ch; }
.svc-hero .lead { color: var(--n1); max-width: 62ch; margin-bottom: 28px; }
.svc-hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; }

/* breadcrumbs */
.crumbs { margin-bottom: 18px; font-size: 13.5px; }
.crumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.crumbs li { display: flex; align-items: center; gap: 8px; color: var(--n2); }
.crumbs a { color: var(--n1); text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.28); }
.crumbs a:hover { color: #fff; border-bottom-color: #fff; }
.crumbs li + li::before { content: "/"; color: var(--n3, rgba(255,255,255,.4)); }
.crumbs [aria-current="page"] { color: var(--n2); }

/* article body */
.svc-body { padding: 72px 0; }
.svc-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 56px;
  align-items: start;
}
.svc-article > * + * { margin-top: 20px; }
.svc-article h2 {
  font-family: var(--display);
  font-size: clamp(24px, 2.6vw, 33px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.006em;
  text-transform: uppercase;
  color: var(--ink-900);
  margin-top: 44px;
}
.svc-article h2:first-child { margin-top: 0; }
.svc-article h3 {
  font-family: var(--display);
  font-size: 19px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .012em;
  color: var(--ink-900);
  margin-top: 30px;
}
.svc-article p { font-size: 16.5px; line-height: 1.72; color: var(--t2); max-width: 68ch; }
.svc-article strong { color: var(--t1); font-weight: 700; }
.svc-article a { color: var(--red); font-weight: 600; }
.svc-article a:hover { text-decoration: underline; }
.svc-article ul { margin: 0; padding-left: 0; list-style: none; max-width: 68ch; }
.svc-article ul li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 11px;
  font-size: 16.5px;
  line-height: 1.66;
  color: var(--t2);
}
.svc-article ul li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: .62em;
  width: 9px;
  height: 9px;
  border-radius: 2px;
  background: var(--gold, #C6A860);
  transform: rotate(45deg);
}
.svc-figure { margin-top: 32px; }
.svc-figure img { width: 100%; height: auto; border-radius: var(--r-lg); display: block; }
.svc-figure figcaption { margin-top: 10px; font-size: 13.5px; color: var(--t3); }

/* sticky sidebar quote card */
.svc-aside { position: sticky; top: 96px; display: grid; gap: 18px; }
.svc-cta-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px;
  box-shadow: var(--shadow-card);
}
.svc-cta-card h2 {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--ink-900);
  margin-bottom: 8px;
}
.svc-cta-card p { font-size: 14.5px; color: var(--t2); line-height: 1.6; margin-bottom: 16px; }
.svc-cta-card .btn { width: 100%; justify-content: center; }
.svc-cta-card .btn + .btn { margin-top: 10px; }

/* sibling service links */
.svc-siblings {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 22px 24px;
}
.svc-siblings h2 {
  font-family: var(--display);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--t3);
  margin-bottom: 14px;
}
.svc-siblings ul { list-style: none; margin: 0; padding: 0; }
.svc-siblings li + li { margin-top: 10px; }
.svc-siblings a {
  font-size: 15px;
  font-weight: 600;
  color: var(--t1);
  display: block;
  line-height: 1.45;
}
.svc-siblings a:hover { color: var(--red); }

/* areas served strip */
.svc-areas { padding: 0 0 76px; }
.svc-areas-inner {
  background: var(--ink-900);
  border-radius: var(--r-lg);
  padding: 40px 36px;
  color: #fff;
}
.svc-areas-inner h2 {
  font-family: var(--display);
  font-size: clamp(22px, 2.3vw, 30px);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.svc-areas-inner p { color: var(--n1); font-size: 16px; line-height: 1.7; max-width: 74ch; }
.svc-areas-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 20px;
  list-style: none;
  padding: 0;
}
.svc-areas-list li {
  font-size: 13.5px;
  font-weight: 600;
  padding: 7px 13px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  color: var(--n1);
}
.svc-areas-list li:has(a) { padding: 0; }
.svc-areas-list li a {
  display: block;
  padding: 7px 13px;
  color: inherit;
  text-decoration: none;
  border-radius: 999px;
  transition: background .2s var(--ease), color .2s var(--ease);
}
.svc-areas-list li a:hover { background: rgba(255,255,255,.16); color: #fff; }

@media (max-width: 980px) {
  .svc-layout { grid-template-columns: 1fr; gap: 40px; }
  .svc-aside { position: static; }
}
@media (max-width: 700px) {
  .svc-hero { padding: 112px 0 44px; }
  .svc-body { padding: 52px 0; }
  .svc-areas-inner { padding: 30px 22px; }
}

/* ---- homepage service rows: link through to the /services/ detail pages ---- */
.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 14px;
  font-size: 15.5px;
  font-weight: 700;
  color: var(--red);
  line-height: 1.4;
}
.svc-link + .svc-link { margin-left: 20px; }
.svc-link svg { transition: transform .25s var(--ease); }
.svc-link:hover { text-decoration: underline; }
.svc-link:hover svg { transform: translateX(3px); }
a.svc-tag { text-decoration: none; }
a.svc-tag:hover { color: var(--red); border-color: currentColor; }

/* ==========================================================================
   LEGAL PAGES (privacy policy) — plain, readable, one column
   ========================================================================== */
.legal { padding: 128px 0 96px; background: var(--bg-0); }
.legal-wrap { max-width: 760px; margin: 0 auto; padding: 0 28px; }
.legal-eyebrow {
  font-family: var(--display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-d);
  margin-bottom: 12px;
}
.legal h1 {
  font-family: var(--display);
  font-size: clamp(30px, 5vw, 46px);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.05;
  color: var(--t1);
  margin-bottom: 10px;
}
.legal-updated { font-size: 14px; color: var(--t3); margin-bottom: 30px; }
.legal-intro {
  font-size: 17px;
  line-height: 1.7;
  color: var(--t2);
  padding: 22px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: var(--r);
  margin-bottom: 42px;
}
.legal-intro p + p { margin-top: 12px; }
.legal h2 {
  font-family: var(--display);
  font-size: clamp(19px, 2.4vw, 23px);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--t1);
  margin: 42px 0 14px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}
.legal h2:first-of-type { border-top: none; padding-top: 0; }
.legal h3 { font-size: 16px; font-weight: 700; color: var(--t1); margin: 24px 0 8px; }
.legal p, .legal li { font-size: 16px; line-height: 1.72; color: var(--t2); }
.legal p + p { margin-top: 14px; }
.legal ul { margin: 14px 0 0; padding-left: 22px; }
.legal li { margin-bottom: 9px; }
.legal li::marker { color: var(--gold-d); }
.legal strong { color: var(--t1); font-weight: 600; }
.legal a { color: var(--gold-d); text-decoration: underline; text-underline-offset: 2px; }
.legal a:hover { color: var(--t1); }
.legal-contact {
  margin-top: 18px;
  padding: 22px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
}
.legal-contact ul { list-style: none; padding: 0; margin: 12px 0 0; }
.legal-contact li { margin-bottom: 8px; font-weight: 600; }
.legal-back { display: inline-block; margin-top: 44px; font-weight: 600; }

@media (max-width: 768px) {
  .legal { padding: 96px 0 72px; }
  .legal-wrap { padding: 0 20px; }
  .legal-intro { padding: 18px 18px; font-size: 16px; }
  .legal h2 { margin: 34px 0 12px; }
}
