    :root {
      --red: #cc0000;
      --gold: #c9963a;
      --black: #0a0a0a;
      --card: #181818;
      --white: #f5f0eb;
      --muted: rgba(245, 240, 235, 0.62);
      --line: rgba(245, 240, 235, 0.1);
      --serif: "Fraunces", Georgia, serif;
      --sans: "IBM Plex Sans", system-ui, sans-serif;
      --mono: "Space Mono", monospace;
    }

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

    html {
      scroll-behavior: smooth;
      -webkit-text-size-adjust: 100%;
      text-size-adjust: 100%;
    }

    body {
      font-family: var(--sans);
      font-weight: 300;
      background: var(--black);
      color: var(--white);
      line-height: 1.6;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
      -webkit-tap-highlight-color: transparent;
      overscroll-behavior-y: contain;
    }

    a { color: inherit; text-decoration: none; }

    /* <picture> is a layout-neutral wrapper so the inner <img> remains the grid/
       flex layout box that all existing descendant selectors target. */
    picture { display: contents; }

    :focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

    .skip-link {
      position: absolute; left: -9999px; top: 0; z-index: 300;
      background: var(--red); color: #fff; padding: 10px 16px;
      font-family: var(--mono); font-size: 13px; letter-spacing: 0.04em;
      border-radius: 0 0 6px 0;
    }
    .skip-link:focus { left: 0; }

    .wrap {
      width: 100%;
      max-width: 1080px;
      margin: 0 auto;
      padding: 0 clamp(20px, 5vw, 48px);
    }

    .eyebrow {
      font-family: var(--mono);
      font-size: clamp(10px, 2.6vw, 12px);
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold);
      display: block;
      margin-bottom: 18px;
    }

    h1, h2 { font-family: var(--serif); line-height: 1.04; letter-spacing: -0.01em; }

    /* Reliable ampersand: Fraunces' & glyph fails to render on iOS Safari, so
       force a serif with a dependable (and elegant) italic ampersand. */
    .amp { font-family: Georgia, "Times New Roman", serif; font-weight: 400; font-style: italic; }

    .section { padding: clamp(64px, 12vw, 120px) 0; }

    /* ── NAV ───────────────────────────────────────────── */
    .nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: calc(14px + env(safe-area-inset-top)) calc(clamp(20px, 5vw, 48px) + env(safe-area-inset-right)) 14px calc(clamp(20px, 5vw, 48px) + env(safe-area-inset-left));
      background: rgba(10, 10, 10, 0.95);
      border-bottom: 1px solid var(--line);
    }

    .logo {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-family: var(--mono);
      font-weight: 700;
      font-size: clamp(15px, 4vw, 18px);
      letter-spacing: 0.08em;
      color: var(--white);
      white-space: nowrap;
    }
    .logo img {
      height: 40px;
      width: auto;
      display: block;
      background: #f5f0eb;
      border-radius: 50%;
      padding: 2px;
    }
    .logo b { color: var(--red); font-weight: 700; }

    .nav-call {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--red);
      color: #fff;
      font-family: var(--mono);
      font-weight: 700;
      font-size: clamp(11px, 3vw, 13px);
      letter-spacing: 0.04em;
      padding: 11px 16px;
      border-radius: 8px;
      min-height: 44px;
      transition: background 0.18s ease, transform 0.18s ease;
    }
    .nav-call:hover { background: #e60000; transform: translateY(-1px); }
    .nav-call svg { width: 15px; height: 15px; }

    /* ── HERO ──────────────────────────────────────────── */
    .hero {
      min-height: 100svh;
      display: flex;
      align-items: center;
      position: relative;
      padding-top: 90px;
      background:
        radial-gradient(circle at 72% 28%, rgba(204, 0, 0, 0.28), transparent 60%),
        linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.62)),
        url("images/IMG_4415.jpeg") center / cover no-repeat,
        var(--black);
    }

    .hero-eyebrow { margin-bottom: 22px; }

    .hero h1 {
      font-weight: 900;
      font-size: clamp(2.7rem, 11vw, 5.6rem);
      max-width: 14ch;
    }

    .hero p.sub {
      color: var(--muted);
      font-size: clamp(1rem, 4vw, 1.25rem);
      max-width: 46ch;
      margin-top: 26px;
    }

    .btn-row {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 38px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      font-family: var(--mono);
      font-weight: 700;
      font-size: clamp(12px, 3vw, 13.5px);
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 16px 26px;
      border-radius: 9px;
      min-height: 44px;
      transition: all 0.18s ease;
      cursor: pointer;
    }
    .btn svg { width: 15px; height: 15px; }
    .btn-red { background: var(--red); color: #fff; border: 1px solid var(--red); }
    .btn-red:hover { background: #e60000; transform: translateY(-2px); }
    .btn-gold { background: transparent; color: var(--gold); border: 1px solid var(--gold); }
    .btn-gold:hover { background: var(--gold); color: var(--black); transform: translateY(-2px); }

    .badges {
      display: flex;
      flex-wrap: wrap;
      gap: clamp(14px, 4vw, 28px);
      margin-top: 44px;
      font-family: var(--mono);
      font-size: clamp(10px, 2.6vw, 12px);
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--muted);
    }
    .badges span { display: inline-flex; align-items: center; gap: 9px; }
    .badges span::before {
      content: "";
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--red);
    }

    .hero-proof {
      margin-top: 36px;
      max-width: 280px;
    }
    .hero-proof img {
      width: 100%;
      border-radius: 12px;
      border: 1px solid var(--line);
      display: block;
    }

    /* ── WHY ───────────────────────────────────────────── */
    h2.section-title {
      font-weight: 900;
      font-size: clamp(2rem, 8vw, 3.4rem);
    }
    .section-sub {
      color: var(--muted);
      font-size: clamp(1rem, 3.6vw, 1.15rem);
      margin-top: 16px;
      max-width: 48ch;
    }

    .cards { display: flex; flex-direction: column; gap: 16px; margin-top: 48px; }
    .card {
      background: var(--card);
      border: 1px solid var(--line);
      border-radius: 14px;
      padding: clamp(24px, 5vw, 34px);
      transition: border-color 0.2s ease, transform 0.2s ease;
    }
    .card:hover { border-color: rgba(245, 240, 235, 0.28); transform: translateY(-2px); }
    .card.accent { border-color: rgba(201, 150, 58, 0.55); }
    .card h3 {
      font-family: var(--serif);
      font-weight: 700;
      font-size: clamp(1.25rem, 5vw, 1.6rem);
      margin-bottom: 10px;
    }
    .card p { color: var(--muted); font-size: clamp(0.95rem, 3.4vw, 1.05rem); }

    /* ── SERVICES ──────────────────────────────────────── */
    .services { margin-top: 48px; border-top: 1px solid var(--line); }
    .srow {
      display: flex;
      align-items: center;
      gap: clamp(14px, 4vw, 30px);
      padding: clamp(22px, 5vw, 30px) 4px;
      border-bottom: 1px solid var(--line);
      transition: padding-left 0.22s ease;
    }
    .srow:hover { padding-left: 14px; }
    .srow-body { flex: 1; min-width: 0; }
    .srow-tag {
      font-family: var(--mono);
      font-size: clamp(9px, 2.4vw, 10.5px);
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--gold);
      display: block;
      margin-bottom: 7px;
    }
    .srow-name {
      font-family: var(--serif);
      font-weight: 700;
      font-size: clamp(1.3rem, 6vw, 2rem);
      transition: color 0.2s ease;
    }
    .srow-desc { color: var(--muted); font-size: clamp(0.9rem, 3.4vw, 1.02rem); margin-top: 6px; }
    .srow-arrow {
      flex-shrink: 0;
      color: var(--muted);
      transition: transform 0.22s ease, color 0.2s ease;
    }
    .srow-arrow svg { width: clamp(22px, 6vw, 28px); height: clamp(22px, 6vw, 28px); }
    .srow:hover .srow-name { color: var(--red); }
    .srow:hover .srow-arrow { transform: translateX(10px); color: var(--red); }

    .srow-thumb {
      flex-shrink: 0;
      width: clamp(66px, 18vw, 108px);
      height: clamp(66px, 18vw, 108px);
      object-fit: cover;
      border-radius: 10px;
      border: 1px solid var(--line);
    }

    /* ── PROOF STRIP ───────────────────────────────────── */
    .proof-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
      margin-top: 44px;
    }
    .proof-grid figure { margin: 0; }
    .proof-grid img {
      width: 100%;
      aspect-ratio: 4 / 3;
      object-fit: cover;
      border-radius: 10px;
      border: 1px solid var(--line);
      display: block;
    }
    .proof-grid figcaption {
      font-family: var(--mono);
      font-size: clamp(9px, 2.4vw, 11px);
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--muted);
      margin-top: 12px;
    }

    /* ── ABOUT PHOTOS ──────────────────────────────────── */
    .about-photos {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-top: 40px;
    }
    .about-photos img {
      width: 100%;
      aspect-ratio: 4 / 3;
      object-fit: cover;
      border-radius: 10px;
      border: 1px solid var(--line);
      display: block;
    }

    /* ── REMODELING GALLERY ────────────────────────────── */
    .gallery {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
      margin-top: 44px;
    }
    .gallery img {
      width: 100%;
      aspect-ratio: 3 / 4;
      object-fit: cover;
      border-radius: 12px;
      border: 1px solid var(--line);
      display: block;
    }
    @media (min-width: 760px) {
      .gallery { grid-template-columns: repeat(3, 1fr); }
    }

    /* ── VIDEO REEL ────────────────────────────────────── */
    .reel { margin-top: 44px; display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; }
    .reel video {
      width: 100%;
      max-width: 320px;
      aspect-ratio: 9 / 16;
      object-fit: cover;
      border-radius: 16px;
      border: 1px solid var(--line);
      background: #000;
      display: block;
    }

    /* ── LEGACY ────────────────────────────────────────── */
    .legacy {
      background:
        radial-gradient(circle at 85% 15%, rgba(204, 0, 0, 0.16), transparent 55%),
        var(--black);
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }
    .stats {
      display: flex;
      flex-wrap: wrap;
      gap: clamp(32px, 9vw, 72px);
      margin: 8px 0 30px;
    }
    .stat .num {
      font-family: var(--serif);
      font-weight: 900;
      font-size: clamp(2.8rem, 13vw, 5rem);
      color: var(--red);
      line-height: 1;
    }
    .stat .lbl {
      font-family: var(--mono);
      font-size: clamp(10px, 2.8vw, 12px);
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--muted);
      margin-top: 12px;
    }
    .legacy h2.section-title { max-width: 16ch; }
    .legacy .body {
      color: var(--muted);
      font-size: clamp(1rem, 3.8vw, 1.18rem);
      max-width: 54ch;
      margin-top: 20px;
    }

    /* ── MARKETS ───────────────────────────────────────── */
    .coverage {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
      margin-top: 44px;
    }
    .cov-item {
      background: var(--card);
      border: 1px solid var(--line);
      border-radius: 11px;
      padding: 18px 20px;
      transition: border-color 0.2s ease;
    }
    .cov-item:hover { border-color: rgba(201, 150, 58, 0.5); }
    .cov-region {
      font-weight: 700;
      font-size: clamp(1rem, 3.6vw, 1.12rem);
      letter-spacing: -0.01em;
    }
    .cov-cities {
      margin-top: 6px;
      color: var(--muted);
      font-size: clamp(0.88rem, 3.2vw, 0.98rem);
      line-height: 1.5;
    }

    /* ── CTA STRIP ─────────────────────────────────────── */
    .cta { background: var(--red); text-align: center; }
    .cta .eyebrow { color: rgba(255, 255, 255, 0.6); }
    .cta h2 { color: #fff; font-weight: 900; font-size: clamp(2rem, 8vw, 3.2rem); }
    .cta .body { color: rgba(255, 255, 255, 0.88); font-size: clamp(1rem, 3.8vw, 1.18rem); max-width: 46ch; margin: 18px auto 34px; }
    .btn-white { background: #fff; color: var(--red); border: 1px solid #fff; }
    .btn-white:hover { background: var(--black); color: #fff; border-color: var(--black); transform: translateY(-2px); }
    .cta-phones {
      margin-top: 28px;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: clamp(14px, 5vw, 36px);
      font-family: var(--mono);
      font-size: clamp(12px, 3.2vw, 14px);
      letter-spacing: 0.06em;
      color: #fff;
    }
    .cta-phones a { display: inline-flex; align-items: center; gap: 8px; opacity: 0.95; }
    .cta-phones a:hover { opacity: 1; text-decoration: underline; }

    /* ── FOOTER ────────────────────────────────────────── */
    .footer { background: #050505; border-top: 1px solid var(--line); padding: clamp(56px, 10vw, 80px) 0 40px; }
    .footer .logo { font-size: clamp(16px, 5vw, 20px); justify-content: center; }
    .footer .logo img { height: 56px; }
    .footer .tagline {
      font-family: var(--serif);
      font-style: italic;
      font-weight: 700;
      color: var(--gold);
      font-size: clamp(1.05rem, 4.4vw, 1.35rem);
      margin: 16px 0 30px;
    }
    .footer-phones { display: flex; flex-direction: column; gap: 12px; margin-bottom: 26px; }
    .footer-phones a, .footer-line a { display: inline-flex; align-items: center; gap: 9px; color: var(--white); font-size: clamp(0.95rem, 3.6vw, 1.05rem); min-height: 30px; transition: color 0.18s ease; }
    .footer-phones a:hover, .footer-line a:hover { color: var(--red); }
    .footer-phones .reg { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; color: var(--muted); text-transform: uppercase; }
    .footer-line { margin-bottom: 10px; }
    .footer .web { font-family: var(--mono); font-size: 13px; letter-spacing: 0.08em; color: var(--muted); margin-bottom: 30px; }
    .footer .copy {
      font-family: var(--mono);
      font-size: clamp(10px, 2.8vw, 11.5px);
      letter-spacing: 0.1em;
      color: var(--muted);
      padding-top: 28px;
      border-top: 1px solid var(--line);
    }

    .footer svg, .footer-phones svg, .cta-phones svg, .footer-line svg { width: 14px; height: 14px; flex-shrink: 0; }

    /* ── ANIMATIONS ────────────────────────────────────── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(24px); }
      to { opacity: 1; transform: translateY(0); }
    }
    .fu {
      opacity: 0;
      animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }
    .d1 { animation-delay: 0.05s; }
    .d2 { animation-delay: 0.2s; }
    .d3 { animation-delay: 0.35s; }
    .d4 { animation-delay: 0.5s; }
    .d5 { animation-delay: 0.65s; }
    .d6 { animation-delay: 0.8s; }

    /* scroll reveal */
    .reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1); }
    .reveal.in { opacity: 1; transform: translateY(0); }

    @media (prefers-reduced-motion: reduce) {
      .fu, .reveal { animation: none !important; opacity: 1 !important; transform: none !important; transition: none !important; }
      html { scroll-behavior: auto; }
    }

    /* ── RESPONSIVE ────────────────────────────────────── */
    @media (min-width: 760px) {
      .footer-phones { flex-direction: row; flex-wrap: wrap; gap: 28px; }
    }
    @media (max-width: 640px) {
      .proof-grid { grid-template-columns: 1fr; }
      .about-photos { grid-template-columns: 1fr; }
    }
    @media (max-width: 430px) {
      .coverage { grid-template-columns: 1fr; }
      .btn { width: 100%; justify-content: center; }
    }

    /* ════════════ NAV: SERVICES DROPDOWN ════════════ */
    .nav-right { display: flex; align-items: center; gap: clamp(8px, 2.4vw, 18px); }
    .nav-services { position: static; }
    .nav-services > summary {
      list-style: none;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 7px;
      font-family: var(--mono);
      font-weight: 700;
      font-size: clamp(11px, 3vw, 13px);
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--white);
      padding: 11px 4px;
      min-height: 44px;
      white-space: nowrap;
      transition: color 0.18s ease;
    }
    .nav-services > summary:hover { color: var(--gold); }
    .nav-services > summary::-webkit-details-marker { display: none; }
    .nav-services > summary::marker { content: ""; }
    .nav-services > summary .chev { width: 12px; height: 12px; transition: transform 0.2s ease; }
    .nav-services[open] > summary .chev { transform: rotate(180deg); }
    .nav-menu {
      position: absolute;
      left: 12px; right: 12px;
      top: 100%;
      margin-top: 4px;
      background: #111;
      border: 1px solid var(--line);
      border-radius: 12px;
      padding: 8px;
      z-index: 120;
      box-shadow: 0 18px 50px rgba(0, 0, 0, 0.55);
      display: grid;
      gap: 2px;
      max-height: calc(100vh - 84px);
      overflow-y: auto;
    }
    .nav-menu a {
      display: block;
      padding: 12px 14px;
      border-radius: 8px;
      color: var(--white);
      font-family: var(--sans);
      font-size: 0.98rem;
      transition: background 0.15s ease, color 0.15s ease, padding-left 0.15s ease;
    }
    .nav-menu a:hover { background: rgba(204, 0, 0, 0.14); color: var(--gold); padding-left: 18px; }
    @media (min-width: 880px) {
      .nav-services { position: relative; }
      .nav-menu { left: auto; right: 0; min-width: 270px; margin-top: 12px; }
    }

    /* ════════════ SERVICE PAGES ════════════ */
    .svc-hero { min-height: 80svh; padding-top: 124px; padding-bottom: 56px; }
    .svc-hero h1 { max-width: 17ch; }
    .svc-back {
      display: inline-flex; align-items: center; gap: 8px;
      font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em;
      text-transform: uppercase; color: var(--muted); margin-bottom: 26px;
      transition: color 0.18s ease, gap 0.18s ease;
    }
    .svc-back:hover { color: var(--gold); gap: 12px; }
    .svc-back svg { width: 14px; height: 14px; }

    .trust-bar { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #0d0d0d; }
    .trust-bar .wrap {
      display: flex; flex-wrap: wrap; gap: clamp(16px, 5vw, 44px);
      justify-content: center; padding-top: 22px; padding-bottom: 22px;
      font-family: var(--mono); font-size: clamp(10px, 2.6vw, 12px);
      letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted);
    }
    .trust-bar span { display: inline-flex; align-items: center; gap: 9px; }
    .trust-bar span::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }

    .scope-body { color: var(--muted); font-size: clamp(1rem, 3.6vw, 1.12rem); max-width: 62ch; margin-top: 18px; line-height: 1.7; }
    .scope-list { list-style: none; margin-top: 32px; display: grid; gap: 14px; }
    @media (min-width: 700px) { .scope-list { grid-template-columns: 1fr 1fr; gap: 16px 36px; } }
    .scope-list li {
      position: relative; padding-left: 30px;
      color: var(--white); font-size: clamp(0.98rem, 3.4vw, 1.06rem); line-height: 1.5;
    }
    .scope-list li::before {
      content: ""; position: absolute; left: 0; top: 6px;
      width: 15px; height: 15px; background: var(--red);
      clip-path: polygon(50% 0, 61% 39%, 100% 50%, 61% 61%, 50% 100%, 39% 61%, 0 50%, 39% 39%);
    }

    .gallery-ph {
      aspect-ratio: 3 / 4;
      border: 1px dashed rgba(201, 150, 58, 0.42);
      border-radius: 12px;
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      text-align: center; gap: 12px; padding: 22px; background: #0d0d0d;
    }
    .gallery-ph .ph-icon { width: 34px; height: 34px; color: var(--gold); opacity: 0.75; }
    .gallery-ph .ph-title { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); }
    .gallery-ph .ph-sub { font-size: 0.86rem; color: var(--muted); line-height: 1.5; max-width: 24ch; }

    .tcards { display: grid; gap: 16px; margin-top: 44px; }
    @media (min-width: 760px) { .tcards { grid-template-columns: repeat(3, 1fr); } }
    .tcard {
      background: var(--card); border: 1px solid var(--line);
      border-radius: 14px; padding: 28px 24px;
      display: flex; flex-direction: column; gap: 16px;
    }
    .tstars { display: inline-flex; gap: 3px; color: var(--gold); }
    .tstars svg { width: 16px; height: 16px; }
    .tquote { color: var(--white); font-size: 1.02rem; line-height: 1.62; flex: 1; }
    .tname { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
    .tname b { color: var(--gold); font-weight: 700; }

    /* Social-proof strip (homepage, near CTA) */
    .psband {
      border: 1px solid var(--line); border-radius: 16px;
      background: var(--card); padding: 28px 24px; margin-top: 8px;
    }
    .psband-rating { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; }
    .psband-label { font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
    .psband-quotes { list-style: none; display: grid; gap: 14px; margin: 22px 0 0; padding: 0; }
    @media (min-width: 760px) { .psband-quotes { grid-template-columns: repeat(3, 1fr); } }
    .psband-quotes li { color: var(--white); font-size: 0.98rem; line-height: 1.6; }
    .psband-quotes b { display: block; margin-top: 8px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); font-weight: 700; }

    .cta .fineprint { font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; color: rgba(255, 255, 255, 0.72); margin-top: 24px; text-transform: uppercase; }

    /* ════════════ NAV: TOP-LEVEL PAGE LINKS ════════════ */
    .nav-link { display: none; }
    @media (min-width: 880px) {
      .nav-link {
        display: inline-flex; align-items: center;
        font-family: var(--mono); font-weight: 700;
        font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase;
        color: var(--white); padding: 11px 4px; white-space: nowrap;
        transition: color 0.18s ease;
      }
      .nav-link:hover { color: var(--gold); }
    }
    .nav-menu-more { display: grid; gap: 2px; margin-top: 6px; padding-top: 6px; border-top: 1px solid var(--line); }
    .nav-menu-more::before {
      content: "More"; font-family: var(--mono); font-size: 10px;
      letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted);
      padding: 6px 14px 2px;
    }
    @media (min-width: 880px) { .nav-menu-more { display: none; } }

    /* ════════════ ESTIMATE FORM ════════════ */
    .estimate { background: #0d0d0d; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
    .est-form { margin-top: 40px; max-width: 760px; }
    .est-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
    @media (min-width: 640px) { .est-grid { grid-template-columns: 1fr 1fr; } }
    .est-field { display: flex; flex-direction: column; gap: 8px; }
    .est-field.est-full { grid-column: 1 / -1; }
    .est-field > span {
      font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em;
      text-transform: uppercase; color: var(--muted);
    }
    .est-field input, .est-field select, .est-field textarea {
      width: 100%; background: var(--black); color: var(--white);
      border: 1px solid var(--line); border-radius: 10px;
      padding: 14px 14px; font-family: var(--sans); font-size: 1rem;
      min-height: 50px; transition: border-color 0.18s ease;
      -webkit-appearance: none; appearance: none;
    }
    .est-field textarea { min-height: 120px; resize: vertical; }
    .est-field select {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c9963a' stroke-width='2.4' 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: right 14px center; background-size: 16px; padding-right: 40px;
    }
    .est-field input:focus, .est-field select:focus, .est-field textarea:focus { outline: none; border-color: var(--gold); }
    /* Honeypot — hidden from humans, tempting to bots. Submissions with this filled are discarded. */
    .hp-field { position: absolute !important; left: -9999px !important; top: auto; width: 1px; height: 1px; overflow: hidden; }
    .est-field input::placeholder, .est-field textarea::placeholder { color: rgba(245, 240, 235, 0.4); }
    .est-note { color: var(--muted); font-size: 0.9rem; margin: 20px 0 22px; line-height: 1.6; }
    .est-note a { color: var(--gold); text-decoration: underline; }
    .est-form .btn { width: 100%; justify-content: center; }
    @media (min-width: 640px) { .est-form .btn { width: auto; } }
    .est-fallback { margin-top: 18px; color: var(--muted); font-size: 0.95rem; line-height: 1.6; }
    .est-fallback a { color: var(--gold); text-decoration: underline; }

    /* ════════════ SERVICE AREAS / RELATED ════════════ */
    .areas .related { margin-top: 26px; color: var(--muted); font-size: 0.95rem; line-height: 1.9; }
    .areas .related a { color: var(--gold); text-decoration: underline; margin-right: 14px; white-space: nowrap; }
    .areas .btn-row { margin-top: 30px; }

    /* ════════════ FAQ ════════════ */
    .faq { margin-top: 40px; display: grid; gap: 12px; max-width: 800px; }
    .faq-item { background: var(--card); border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
    .faq-item > summary {
      list-style: none; cursor: pointer; padding: 20px 22px;
      font-family: var(--serif); font-weight: 700; font-size: clamp(1.05rem, 4vw, 1.2rem);
      color: var(--white); display: flex; justify-content: space-between; align-items: center; gap: 16px;
    }
    .faq-item > summary::-webkit-details-marker { display: none; }
    .faq-item > summary::after {
      content: "+"; font-family: var(--mono); font-weight: 400; color: var(--gold);
      font-size: 1.5rem; line-height: 1; flex-shrink: 0; transition: transform 0.2s ease;
    }
    .faq-item[open] > summary::after { transform: rotate(45deg); }
    .faq-item .faq-a { padding: 0 22px 22px; color: var(--muted); font-size: 1rem; line-height: 1.7; }

    /* ════════════ CONTACT CARDS ════════════ */
    .contact-cards { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 44px; }
    @media (min-width: 760px) { .contact-cards { grid-template-columns: repeat(3, 1fr); } }
    .contact-card {
      background: var(--card); border: 1px solid var(--line); border-radius: 14px;
      padding: 30px 26px; display: flex; flex-direction: column; gap: 8px;
      transition: border-color 0.2s ease, transform 0.2s ease;
    }
    .contact-card:hover { border-color: rgba(201, 150, 58, 0.5); transform: translateY(-2px); }
    .cc-reg { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); }
    .cc-num { font-family: var(--serif); font-weight: 700; font-size: clamp(1.3rem, 5vw, 1.7rem); color: var(--white); }
    .cc-num.email { font-size: clamp(0.95rem, 3.4vw, 1.1rem); word-break: break-all; }
    .cc-cta { display: inline-flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-top: 6px; }
    .cc-cta svg { width: 14px; height: 14px; }

    /* ════════════ TRUST CARDS ════════════ */
    .trust-cards { display: grid; grid-template-columns: 1fr; gap: 14px; }
    @media (min-width: 640px) { .trust-cards { grid-template-columns: 1fr 1fr; } }
    @media (min-width: 980px) { .trust-cards { grid-template-columns: repeat(3, 1fr); } }
    .trust-card { background: var(--card); border: 1px solid var(--line); border-radius: 14px; padding: 26px 24px; }
    .trust-card .tc-h { font-family: var(--serif); font-weight: 700; font-size: clamp(1.1rem, 4.4vw, 1.35rem); color: var(--gold); margin-bottom: 8px; }
    .trust-card .tc-p { color: var(--muted); font-size: 0.98rem; line-height: 1.6; }

    /* ════════════ FOOTER COLUMNS ════════════ */
    .footer-cols { display: grid; grid-template-columns: 1fr; gap: 30px; text-align: left; margin: 34px 0 30px; }
    @media (min-width: 620px) { .footer-cols { grid-template-columns: 1fr 1fr; } }
    @media (min-width: 980px) { .footer-cols { grid-template-columns: repeat(4, 1fr); } }
    .fcol h4 { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
    .fcol a, .fcol span { display: block; color: var(--white); font-size: 0.95rem; margin-bottom: 11px; min-height: 24px; transition: color 0.18s ease; }
    .fcol a:hover { color: var(--red); }
    .fcol span { color: var(--muted); }
    .fcol .reg { display: inline; font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em; color: var(--muted); text-transform: uppercase; margin-right: 6px; }
    .footer .copy { text-align: center; }
    .footer .web { text-align: center; }

    /* ════════════ STICKY MOBILE CTA ════════════ */
    .sticky-cta {
      position: fixed; left: 0; right: 0; bottom: 0; z-index: 200;
      display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1px;
      background: var(--line); border-top: 1px solid var(--line);
      box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.5);
      padding-bottom: env(safe-area-inset-bottom);
    }
    .sticky-btn {
      display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
      padding: 10px 6px; min-height: 60px; text-align: center;
      font-family: var(--mono); font-size: 11px; font-weight: 700; letter-spacing: 0.04em;
      text-transform: uppercase; background: #111; color: var(--white);
    }
    .sticky-btn svg { width: 17px; height: 17px; }
    .sticky-btn.call { color: var(--white); }
    .sticky-btn.est { background: var(--red); color: #fff; }
    .sticky-btn:active { opacity: 0.85; }
    @media (min-width: 880px) { .sticky-cta { display: none; } }
    @media (max-width: 879px) { body { padding-bottom: calc(60px + env(safe-area-inset-bottom)); } }
