  :root {
    --paper: #F2F0EA;
    --stone: #E5E2DA;
    --card: #FAF9F6;
    --slate: #0C0D0F;
    --slate-2: #16181B;
    --ink: #121416;
    --ink-soft: #5C5F58;
    --ink-on-dark: #EDEBE4;
    --ink-soft-on-dark: #A9ACA6;
    --line: rgba(18, 20, 22, 0.14);
    --line-dark: rgba(242, 240, 234, 0.14);
    --accent: #E0A106;
    --accent-hover: #F2B705;
    --accent-light: #F2B705;
    --accent-text: #8A6100;
    --display: "Overpass", "Archivo", system-ui, sans-serif;
    --text: "Public Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
    --radius: 6px;
    --wrap: 1180px;
    --gutter: clamp(1.1rem, 4vw, 2.5rem);
  }
  * { box-sizing: border-box; }
  html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
  @media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
  html, body { overflow-x: clip; }
  body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--text); font-size: 1rem; line-height: 1.6; }
  img { max-width: 100%; display: block; }
  a { color: inherit; }
  h1, h2, h3 { font-family: var(--display); letter-spacing: -0.02em; line-height: 1.05; margin: 0; text-wrap: balance; }
  h1 { font-size: clamp(2.3rem, 4.8vw, 4.1rem); font-weight: 900; }
  h2 { font-size: clamp(1.75rem, 3.1vw, 2.6rem); font-weight: 800; }
  h3 { font-size: 1.2rem; font-weight: 600; letter-spacing: -0.01em; line-height: 1.2; }
  p { margin: 0; text-wrap: pretty; }
  .wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }
  .eyebrow { font-size: 0.76rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600; color: var(--accent-text); margin: 0 0 0.9rem; }
  .dark .eyebrow { color: var(--accent-light); }
  .intro { color: var(--ink-soft); font-size: 1.08rem; max-width: 60ch; margin-top: 1rem; }
  .dark .intro { color: var(--ink-soft-on-dark); }
  .section { padding: clamp(3.4rem, 7vw, 5.6rem) 0; }
  .section--tight { padding: clamp(2.2rem, 4.5vw, 3.4rem) 0; }
  .dark { background: var(--slate); color: var(--ink-on-dark); }
  .stone { background: var(--stone); }
  .head { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 1rem 3rem; align-items: end; margin-bottom: clamp(1.8rem, 3.5vw, 2.8rem); }
  .head .more { font-weight: 500; color: var(--ink-soft); text-decoration: none; border-bottom: 1px solid var(--line); padding-bottom: 2px; white-space: nowrap; }
  .head .more:hover { color: var(--ink); border-color: var(--ink); }
  .dark .head .more { color: var(--ink-soft-on-dark); border-color: var(--line-dark); }
  .dark .head .more:hover { color: var(--ink-on-dark); border-color: var(--ink-on-dark); }

  /* buttons */
  .btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem; padding: 0.9rem 1.3rem; border-radius: 4px; font-weight: 600; font-size: 1rem; text-decoration: none; border: 1px solid transparent; cursor: pointer; font-family: var(--text); line-height: 1.2; white-space: nowrap; transition: transform 140ms ease, background-color 140ms ease, border-color 140ms ease; }
  .btn:hover { transform: translateY(-1px); }
  .btn:active { transform: translateY(1px) scale(0.99); }
  .btn--accent { background: var(--accent); color: var(--ink); }
  .btn--accent:hover { background: var(--accent-hover); }
  .btn--ghost { background: transparent; color: var(--ink); border-color: rgba(18, 20, 22, 0.3); }
  .btn--ghost:hover { border-color: var(--ink); }
  .btn--ghost-light { background: rgba(242, 240, 234, 0.08); color: var(--ink-on-dark); border-color: rgba(242, 240, 234, 0.4); }
  .btn--ghost-light:hover { border-color: var(--ink-on-dark); background: rgba(242, 240, 234, 0.14); }
  .btn svg { width: 18px; height: 18px; flex: none; }
  :focus-visible { outline: 2px solid var(--accent-light); outline-offset: 3px; }

  /* top bar + header */
  .skip { position: absolute; left: -9999px; top: 0; background: var(--accent); color: var(--ink); padding: 0.6rem 1rem; z-index: 100; }
  .skip:focus { left: 1rem; top: 1rem; }
  .topbar { background: var(--slate); color: var(--ink-soft-on-dark); font-size: 0.82rem; border-bottom: 3px solid var(--accent); }
  .topbar .wrap { display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; min-height: 38px; }
  .topbar__phone { color: var(--ink-on-dark); text-decoration: none; font-weight: 600; white-space: nowrap; flex: none; }
  .ticker { flex: 1 1 auto; min-width: 0; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent); mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent); }
  .ticker__track { display: flex; width: max-content; animation: tick 42s linear infinite; }
  .ticker__track span { white-space: nowrap; padding-right: 2.2rem; display: inline-flex; align-items: center; gap: 0.8rem; }
  .ticker__track span::before { content: ""; width: 14px; height: 3px; border-radius: 1px; background: var(--accent-light); flex: none; }
  .topbar:hover .ticker__track, .topbar:focus-within .ticker__track { animation-play-state: paused; }
  @keyframes tick { to { transform: translateX(-50%); } }
  @media (prefers-reduced-motion: reduce) { .ticker__track { animation: none; } .ticker { mask-image: none; -webkit-mask-image: none; } .ticker__track .dup { display: none; } }
  .hdr { position: sticky; top: 0; z-index: 50; background: rgba(242, 240, 234, 0.92); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); transition: box-shadow 200ms ease; }
  .hdr.is-stuck { box-shadow: 0 8px 30px -18px rgba(12, 13, 15, 0.5); }
  .hdr .wrap { display: flex; align-items: center; gap: 1.5rem; min-height: 72px; }
  .brand { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; font-family: var(--display); font-weight: 700; font-size: 1.15rem; letter-spacing: -0.01em; color: var(--ink); white-space: nowrap; }
  .brand img { height: 44px; width: auto; flex: none; display: block; }
  .brand .wordmark { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
  .iconbtn { display: none; width: 44px; height: 44px; border-radius: 4px; border: 1px solid rgba(18, 20, 22, 0.22); background: transparent; color: var(--ink); align-items: center; justify-content: center; cursor: pointer; padding: 0; flex: none; }
  .iconbtn svg { width: 22px; height: 22px; }
  .iconbtn .x { display: none; }
  .hdr.is-open .menu .x { display: block; } .hdr.is-open .menu .bars { display: none; }
  .nav__cta { display: none; }
  .nav-item { position: relative; }
  .nav-item::after { content: ""; position: absolute; left: 0; right: 0; top: 100%; height: 12px; }
  .nav-trigger { background: none; border: 0; cursor: pointer; display: inline-flex; align-items: center; gap: 0.3rem; font: 500 0.93rem var(--text); color: var(--ink-soft); padding: 0.5rem 0.55rem; white-space: nowrap; }
  .nav-trigger svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: transform 160ms ease; }
  .nav-trigger:hover, .nav-item:hover .nav-trigger, .nav-item.open .nav-trigger { color: var(--ink); }
  .nav-item:hover .nav-trigger svg, .nav-item.open .nav-trigger svg { transform: rotate(180deg); }
  .nav-plain { text-decoration: none; font: 500 0.93rem var(--text); color: var(--ink-soft); padding: 0.5rem 0.55rem; white-space: nowrap; }
  .nav-plain:hover { color: var(--ink); }
  .nav-drop { position: absolute; top: calc(100% + 10px); left: 0; z-index: 70; display: none; grid-template-columns: 1fr; gap: 0 0.5rem; min-width: 280px; max-height: 72vh; overflow-y: auto; padding: 0.55rem; background: var(--card); border: 1px solid var(--line); border-radius: 6px; box-shadow: 0 30px 60px -28px rgba(12, 13, 15, 0.55); }
  .nav-item:hover .nav-drop, .nav-item.open .nav-drop { display: grid; }
  .nav-drop a { display: block; padding: 0.45rem 0.7rem; border-radius: 4px; font: 500 0.9rem/1.35 var(--text); color: var(--ink); text-decoration: none; }
  .nav-drop a:hover { background: var(--stone); }
  .nav-col h5 { margin: 0.45rem 0.7rem 0.15rem; font: 600 0.66rem/1.2 var(--text); letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft); }
  .nav-item--2col .nav-drop { min-width: 560px; grid-template-columns: 1fr 1fr; }
  .nav-item--groups .nav-drop { min-width: 720px; grid-template-columns: repeat(3, auto); }
  .nav-item--mega .nav-drop { left: auto; right: 0; min-width: 720px; grid-template-columns: repeat(4, 1fr); }
  .nav-drop .nav-all { grid-column: 1 / -1; border-top: 1px solid var(--line); margin-top: 0.5rem; padding-top: 0.7rem; font-weight: 600; color: var(--accent-text); }
  .nav { display: flex; gap: 1.25rem; margin-left: auto; flex: 0 1 auto; min-width: 0; }
  .brand { flex: none; }
  .nav a { text-decoration: none; font-weight: 500; font-size: 0.93rem; color: var(--ink-soft); padding: 0.4rem 0; border-bottom: 2px solid transparent; white-space: nowrap; }
  .nav a:hover { color: var(--ink); border-color: var(--accent-text); }
  .hdr .actions { display: flex; gap: 0.6rem; }
  .hdr .btn { padding: 0.7rem 1.05rem; font-size: 0.95rem; }
  .hdr .short { display: none; }

  /* hero */
  .hero { position: relative; min-height: calc(100svh - 110px); display: flex; flex-direction: column; justify-content: flex-start; background: var(--slate) url("/images/work/driveway-mountain-hero.webp") center 55% / cover no-repeat; color: var(--ink-on-dark); isolation: isolate; overflow: hidden; }
  .hero > .wrap { width: 100%; }
  .hero__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 45%; z-index: -2; }
  .hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(12, 13, 15, 0.88) 0%, rgba(12, 13, 15, 0.72) 50%, rgba(12, 13, 15, 0.42) 100%); z-index: -1; }
  .hero__cap { margin-top: 1.6rem; font-size: 0.8rem; color: var(--ink-soft-on-dark); letter-spacing: 0.02em; }
  .fab { position: fixed; bottom: 1.1rem; z-index: 70; display: inline-flex; align-items: center; gap: 0.55rem; height: 50px; padding: 0 1.15rem; border-radius: 999px; font: 600 0.92rem var(--text); text-decoration: none; cursor: pointer; box-shadow: 0 14px 34px -14px rgba(0, 0, 0, 0.55); border: 1px solid transparent; transition: transform 140ms ease, background-color 140ms ease, border-color 140ms ease; }
  .fab:hover { transform: translateY(-1px); }
  .fab svg { width: 19px; height: 19px; flex: none; }
  .sound { right: 1.25rem; color: #F6F5F1; background: rgba(12, 13, 15, 0.86); border-color: rgba(242, 240, 234, 0.4); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
  .sound:hover { border-color: #F6F5F1; }
  .callfab { display: none; right: 1.25rem; background: var(--accent); color: var(--ink); }
  .callfab:hover { background: var(--accent-hover); }
  .sound[aria-pressed="true"] { background: var(--accent); border-color: var(--accent-text); }
  .sound svg { width: 18px; height: 18px; }
  .sound .on { display: none; } .sound[aria-pressed="true"] .on { display: block; } .sound[aria-pressed="true"] .off { display: none; }
  .hero > .wrap { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr); gap: clamp(2rem, 5vw, 4.5rem); align-items: start; padding-top: 1.6rem; padding-bottom: 5.6rem; }
  .hero .eyebrow { color: var(--accent-light); }
  .hero h1 { color: #F6F5F1; }
  .hero .lede { color: var(--ink-soft-on-dark); font-size: 1.12rem; max-width: 52ch; margin-top: 1.3rem; }
  .hero .ctas { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.8rem; }
  .proof { list-style: none; margin: 2rem 0 0; padding: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.7rem 1.4rem; font-size: 0.95rem; color: var(--ink-on-dark); }
  .proof li { display: flex; gap: 0.6rem; align-items: flex-start; }
  .proof svg { width: 18px; height: 18px; flex: none; margin-top: 0.2rem; color: var(--accent-light); }

  /* quote card */
  .quote { background: var(--card); color: var(--ink); border-radius: 8px; padding: clamp(1.4rem, 2.6vw, 2rem); box-shadow: 0 30px 70px -30px rgba(0, 0, 0, 0.6); scroll-margin-top: 90px; }
  .quote h2 { font-size: 1.55rem; }
  .quote .sub { color: var(--ink-soft); margin-top: 0.5rem; font-size: 0.95rem; }
  .form { display: grid; grid-template-columns: 1fr 1fr; gap: 0.7rem; margin-top: 1.2rem; }
  .form label { display: block; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.02em; color: var(--ink-soft); margin-bottom: 0.3rem; }
  .form input, .form select, .form textarea { width: 100%; padding: 0.8rem 0.85rem; border-radius: 4px; border: 1px solid rgba(18, 20, 22, 0.26); background: #fff; color: var(--ink); font: 500 0.95rem var(--text); }
  .form textarea { min-height: 84px; resize: vertical; }
  .form input::placeholder, .form textarea::placeholder { color: rgba(18, 20, 22, 0.45); }
  .form .full { grid-column: 1 / -1; }
  .form .btn { width: 100%; grid-column: 1 / -1; margin-top: 0.2rem; }
  .form .fine { grid-column: 1 / -1; font-size: 0.82rem; color: var(--ink-soft); text-align: center; }
  .form .fine a { color: var(--ink); font-weight: 600; text-decoration: none; border-bottom: 1px solid var(--line); }
  .honey { position: absolute; left: -9999px; }

  /* trust strip */
  .trust { position: relative; z-index: 4; }
  .trust__card { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); background: var(--card); border: 1px solid var(--line); border-radius: 10px; box-shadow: 0 34px 70px -40px rgba(12, 13, 15, 0.6); margin-top: -3.4rem; overflow: hidden; }
  .trust__item { display: flex; gap: 1rem; align-items: flex-start; padding: 1.45rem 1.5rem; border-left: 1px solid var(--line); }
  .trust__item:first-child { border-left: 0; }
  .trust__icon { width: 46px; height: 46px; border-radius: 10px; background: rgba(224, 161, 6, 0.1); color: var(--accent-text); display: grid; place-items: center; flex: none; }
  .trust__icon svg { width: 22px; height: 22px; }
  .trust__item b { display: block; font-family: var(--display); font-weight: 700; font-size: 1.1rem; letter-spacing: -0.01em; line-height: 1.15; margin-bottom: 0.3rem; color: var(--ink); }
  .trust__item span { color: var(--ink-soft); font-size: 0.9rem; line-height: 1.45; display: block; }

  /* cards */
  .grid { display: grid; gap: 1.2rem; }
  .grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .card { display: flex; flex-direction: column; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; text-decoration: none; color: inherit; transition: transform 160ms ease, box-shadow 160ms ease; }
  .card:hover { transform: translateY(-3px); box-shadow: 0 22px 40px -28px rgba(12, 13, 15, 0.55); }
  .card .ph { aspect-ratio: 4 / 3; overflow: hidden; background: var(--stone); }
  .card .ph img { width: 100%; height: 100%; object-fit: cover; }
  .card .body { padding: 1rem 1.1rem 1.15rem; display: flex; flex-direction: column; gap: 0.5rem; flex: 1; }
  .card p { color: var(--ink-soft); font-size: 0.93rem; }
  .card .price { font-size: 0.85rem; color: var(--ink); font-weight: 500; margin-top: auto; padding-top: 0.5rem; border-top: 1px solid var(--line); }
  .card .go { color: var(--accent-text); font-weight: 600; font-size: 0.9rem; }
  .card--feature .ph { position: relative; }
  .card--feature .ph::after { content: "Illustration"; position: absolute; left: 0.8rem; top: 0.8rem; background: rgba(12, 13, 15, 0.78); color: #F6F5F1; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.35rem 0.6rem; border-radius: 3px; }

  /* costs */
  .costs .grid--3 > a { background: var(--slate-2); border: 1px solid var(--line-dark); border-radius: var(--radius); padding: 1.4rem 1.4rem 1.3rem; text-decoration: none; color: inherit; display: flex; flex-direction: column; gap: 0.6rem; transition: border-color 160ms ease, transform 160ms ease; }
  .costs .grid--3 > a:hover { border-color: rgba(242, 240, 234, 0.4); transform: translateY(-3px); }
  .costs .num { font-family: var(--display); font-weight: 700; font-size: clamp(1.5rem, 2.4vw, 2rem); color: var(--accent-light); letter-spacing: -0.02em; font-variant-numeric: tabular-nums; line-height: 1.1; }
  .costs .num small { display: block; font-family: var(--text); font-weight: 500; font-size: 0.82rem; color: var(--ink-soft-on-dark); letter-spacing: 0; margin-top: 0.3rem; }
  .costs h3 { color: var(--ink-on-dark); }
  .costs p { color: var(--ink-soft-on-dark); font-size: 0.93rem; }
  .costs .go { color: var(--accent-light); font-weight: 600; font-size: 0.9rem; margin-top: auto; }
  .chips { display: flex; flex-wrap: wrap; gap: 0.6rem; align-items: center; margin-top: 2rem; }
  .chips .lbl { font-size: 0.9rem; color: var(--ink-soft-on-dark); margin-right: 0.4rem; }
  .chip { display: inline-block; padding: 0.5rem 0.9rem; border-radius: 999px; border: 1px solid var(--line-dark); text-decoration: none; font-size: 0.9rem; font-weight: 500; color: var(--ink-on-dark); transition: border-color 140ms ease, background-color 140ms ease; }
  .chip:hover { border-color: var(--accent-light); background: rgba(242, 183, 5, 0.1); }
  .light .chip { border-color: var(--line); color: var(--ink); }
  .light .chip:hover { border-color: var(--accent-text); background: rgba(224, 161, 6, 0.06); }
  .light .chips .lbl { color: var(--ink-soft); }

  /* work */
  .work-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; }
  .work-grid figure { margin: 0; }
  .work-grid .ph { aspect-ratio: 4 / 5; border-radius: var(--radius); overflow: hidden; background: var(--stone); }
  .work-grid .wide { grid-column: span 2; }
  .work-grid .wide .ph { aspect-ratio: 2.05 / 1; }
  .work-grid img { width: 100%; height: 100%; object-fit: cover; }
  .work-grid figcaption { font-size: 0.82rem; color: var(--ink-soft); margin-top: 0.5rem; line-height: 1.45; }

  /* process */
  .steps { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .step { padding: 1.5rem 1.4rem 1.6rem 0; border-right: 1px solid var(--line); margin-right: 1.4rem; }
  .step:last-child { border-right: 0; margin-right: 0; }
  .step b { font-family: var(--display); font-weight: 700; font-size: 1.8rem; color: var(--accent-text); line-height: 1; display: block; margin-bottom: 0.7rem; font-variant-numeric: tabular-nums; }
  .step p { color: var(--ink-soft); font-size: 0.93rem; margin-top: 0.4rem; }
  .callout { margin-top: 2rem; display: grid; grid-template-columns: auto minmax(0, 1fr) auto; gap: 1.2rem; align-items: center; background: var(--stone); border-left: 4px solid var(--accent); border-radius: var(--radius); padding: 1.2rem 1.4rem; }
  .callout .n { font-family: var(--display); font-weight: 700; font-size: 2.2rem; letter-spacing: -0.03em; line-height: 1; color: var(--ink); }
  .callout .n small { display: block; font-family: var(--text); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent-text); margin-top: 0.3rem; }
  .callout p { color: var(--ink-soft); font-size: 0.95rem; }

  /* problems */
  .problems .grid--3 > a { display: flex; gap: 1rem; align-items: flex-start; justify-content: space-between; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.2rem 1.3rem; text-decoration: none; color: inherit; transition: transform 160ms ease, border-color 160ms ease; }
  .problems .grid--3 > a:hover { transform: translateY(-3px); border-color: rgba(224, 161, 6, 0.5); }
  .problems h3 { font-size: 1.08rem; }
  .problems p { color: var(--ink-soft); font-size: 0.9rem; margin-top: 0.4rem; }
  .problems svg { width: 22px; height: 22px; flex: none; color: var(--accent-text); margin-top: 0.15rem; }

  /* areas */
  .areas .cols { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: 2.5rem; align-items: start; }
  .areas .county-list { list-style: none; margin: 1.2rem 0 0; padding: 0; display: grid; gap: 0.6rem; }
  .areas .county-list li { display: flex; gap: 0.6rem; align-items: center; font-weight: 500; }
  .areas .county-list svg { width: 18px; height: 18px; color: var(--accent-text); flex: none; }
  .areas .towns { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 0.4rem; }
  .areas .towns-lbl { font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600; color: var(--ink-soft); margin-bottom: 0.8rem; }

  /* faq */
  .faq .list { display: grid; gap: 0.6rem; max-width: 820px; }
  .faq details { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 0 1.2rem; }
  .faq summary { list-style: none; cursor: pointer; padding: 1rem 0; font-weight: 600; font-size: 1.02rem; display: flex; justify-content: space-between; gap: 1rem; align-items: center; }
  .faq summary::-webkit-details-marker { display: none; }
  .faq summary::after { content: "+"; font-family: var(--display); font-size: 1.5rem; line-height: 1; color: var(--accent-text); flex: none; }
  .faq details[open] summary::after { content: "\2212"; }
  .faq .a { color: var(--ink-soft); padding: 0 0 1.1rem; font-size: 0.97rem; max-width: 68ch; }
  .faq .a a { color: var(--ink); font-weight: 500; }

  /* final cta */
  .cta .wrap { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 2rem; align-items: center; }
  .cta p { color: var(--ink-soft-on-dark); font-size: 1.08rem; max-width: 56ch; margin-top: 0.8rem; }
  .cta .ctas { display: flex; flex-wrap: wrap; gap: 0.8rem; }

  /* footer */
  .foot { background: var(--slate); color: var(--ink-soft-on-dark); border-top: 1px solid var(--line-dark); font-size: 0.92rem; }
  .foot .top { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr 1fr; gap: 2rem; padding: 3rem 0 2.4rem; }
  .foot h4 { margin: 0 0 0.8rem; font-family: var(--text); font-size: 0.76rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600; color: var(--ink-on-dark); }
  .foot ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.45rem; }
  .foot a { color: var(--ink-soft-on-dark); text-decoration: none; }
  .foot a:hover { color: var(--ink-on-dark); }
  .foot .brand { color: var(--ink-on-dark); }
  .foot .brand img { height: 52px; }
  .foot .nap { margin-top: 1rem; line-height: 1.7; }
  .foot .nap a { color: var(--ink-on-dark); font-weight: 600; }
  .foot .bottom { border-top: 1px solid var(--line-dark); padding: 1.1rem 0; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.6rem 1.5rem; font-size: 0.82rem; }

  /* mobile call bar */

  /* reveal */
  .rv { opacity: 0; transform: translateY(14px); transition: opacity 500ms ease, transform 500ms ease; }
  .rv.in { opacity: 1; transform: none; }
  @media (prefers-reduced-motion: reduce) { .rv { opacity: 1; transform: none; transition: none; } .btn, .card { transition: none; } }

  /* responsive */
  @media (max-width: 1140px) {
    .hdr .wrap { position: relative; }
    .nav { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; gap: 0; background: var(--paper); border-bottom: 1px solid var(--line); box-shadow: 0 30px 50px -30px rgba(12, 13, 15, 0.5); padding: 0.4rem var(--gutter) 1.2rem; margin: 0; }
    .hdr.is-open .nav { display: flex; }
    .nav .only-menu { display: block; }
    .nav { max-height: calc(100svh - 104px); overflow-y: auto; }
    .nav-item { position: static; }
    .nav-item::after { display: none; }
    .nav-trigger, .nav-plain { display: flex; width: 100%; justify-content: space-between; align-items: center; padding: 0.85rem 0; font-size: 1.05rem; color: var(--ink); border-bottom: 1px solid var(--line); }
    .nav-drop { position: static; display: none; min-width: 0 !important; max-height: none; padding: 0.2rem 0 0.8rem; background: transparent; border: 0; box-shadow: none; grid-template-columns: 1fr !important; }
    .nav-item.open .nav-drop { display: grid; }
    .nav-item:hover .nav-drop:not(.x) { display: none; }
    .nav-item.open:hover .nav-drop { display: grid; }
    .nav-drop a { padding: 0.5rem 0.6rem; font-size: 0.98rem; }
    .nav-col h5 { margin: 0.7rem 0.6rem 0.2rem; }
    .nav .nav__cta { display: grid; gap: 0.6rem; padding-top: 1rem; }
    .nav .nav__cta a { border-bottom: 0; padding: 0.9rem 1.2rem; font-size: 1rem; }
    .nav .nav__cta p { font-size: 0.85rem; color: var(--ink-soft); margin-top: 0.2rem; }
    .iconbtn.menu { display: inline-flex; }
    .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .step:nth-child(2) { border-right: 0; margin-right: 0; }
    .step { padding-top: 1.2rem; }
    .foot .top { grid-template-columns: 1fr 1fr; }
    .work-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  }
  @media (max-width: 860px) {
    body { padding-bottom: 0; }
    .foot .bottom { padding-bottom: 4.6rem; }
    .topbar .facts { display: none; }
    .topbar .wrap { justify-content: center; }
    .topbar__phone { display: none; }
    .hdr .actions .btn { display: none; }
    .hdr .wrap { min-height: 64px; gap: 0.8rem; justify-content: space-between; }
    .brand { font-size: 1.02rem; gap: 0.55rem; min-width: 0; }
    .brand img { height: 34px; }
    .hdr .actions { flex: none; gap: 0.5rem; }
    .iconbtn--phone { display: inline-flex; }
    .hero { min-height: 0; background-position: center 64%; }
    .hero__video { height: 140%; top: -40%; object-position: 50% 50%; }
    .hero > .wrap { grid-template-columns: 1fr; padding-top: 1.2rem; padding-bottom: 3.6rem; }
    .sound { right: auto; left: 1rem; }
    .callfab { display: inline-flex; right: 1rem; }
    .hero .lede { font-size: 1.02rem; }
    .proof { grid-template-columns: 1fr; }
    .quote { scroll-margin-top: 76px; }
    .trust__card { grid-template-columns: 1fr 1fr; margin-top: -1.8rem; }
    .trust__item { padding: 1.1rem 1rem; border-left: 0; border-top: 1px solid var(--line); gap: 0.8rem; }
    .trust__item:nth-child(-n+2) { border-top: 0; }
    .trust__item:nth-child(even) { border-left: 1px solid var(--line); }
    .trust__icon { width: 40px; height: 40px; }
    .trust__item b { font-size: 1rem; }
    .grid--3 { grid-template-columns: 1fr; }
    .head { grid-template-columns: 1fr; align-items: start; }
    .work-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .areas .cols { grid-template-columns: 1fr; gap: 1.8rem; }
    .callout { grid-template-columns: auto minmax(0, 1fr); }
    .callout .btn { grid-column: 1 / -1; }
    .cta .wrap { grid-template-columns: 1fr; }
  }
  @media (max-width: 560px) {
    .grid--4 { grid-template-columns: 1fr; }
    .trust__card { grid-template-columns: 1fr; }
    .trust__item { border-left: 0 !important; border-top: 1px solid var(--line) !important; }
    .trust__item:first-child { border-top: 0 !important; }
    .steps { grid-template-columns: 1fr; }
    .step { border-right: 0; margin-right: 0; border-bottom: 1px solid var(--line); padding: 1.2rem 0; }
    .step:last-child { border-bottom: 0; }
    .work-grid .wide { grid-column: span 2; }
    .foot .top { grid-template-columns: 1fr; }
    .form { grid-template-columns: 1fr; }
  }
/* attribute hidden always wins over layout display */
[hidden] { display: none !important; }

/* ---- Areas menu: town x service matrix (desktop table, phone chips) ---- */
.nav-item--matrix .nav-drop { left: auto; right: 0; min-width: 920px; grid-template-columns: 1fr; max-height: 76vh; padding: 0.5rem 0.75rem 0.75rem; }
.nav-matrix { border-collapse: collapse; width: 100%; font-size: 0.86rem; }
.nav-matrix th, .nav-matrix td { padding: 0.2rem 0.4rem; text-align: left; white-space: nowrap; }
.nav-matrix thead th { position: sticky; top: -0.5rem; z-index: 1; background: var(--card); font: 600 0.62rem/1.2 var(--text); letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); padding: 0.45rem 0.4rem; border-bottom: 1px solid var(--line); }
.nav-matrix__county th { padding-top: 0.8rem; font: 600 0.64rem/1.2 var(--text); letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent-text); }
.nav-drop .nav-matrix a { display: inline-block; padding: 0.12rem 0.35rem; font-size: 0.86rem; white-space: nowrap; }
.nav-matrix tbody th a { font-weight: 600; padding-left: 0; }
.nav-matrix td a { color: var(--ink-soft); font-weight: 500; }
.nav-matrix tbody tr:not(.nav-matrix__county):hover { background: var(--stone); }
@media (max-width: 1140px) {
  .nav-item--matrix .nav-drop { min-width: 0 !important; }
  .nav-matrix, .nav-matrix tbody, .nav-matrix tr, .nav-matrix th { display: block; white-space: normal; }
  .nav-matrix thead { display: none; }
  .nav-matrix tr { padding: 0.25rem 0 0.5rem; border-bottom: 1px solid var(--line); }
  .nav-matrix tr.nav-matrix__county { border: 0; padding: 0.6rem 0 0; }
  .nav-matrix tbody th { padding: 0.3rem 0; }
  .nav-matrix tbody th a { font-size: 1rem; }
  .nav-matrix td { display: inline-block; padding: 0; }
  .nav-drop .nav-matrix td a { display: inline-block; padding: 0.3rem 0.6rem; margin: 0.15rem 0.3rem 0.15rem 0; border: 1px solid var(--line); border-radius: 999px; font-size: 0.82rem; color: var(--ink); }
}

/* ---- Ridgeline-style header additions ---- */
.nav-item--fam .nav-drop, .nav-item--res .nav-drop { min-width: 0; width: max-content; max-width: min(1100px, calc(100vw - 2rem)); grid-template-columns: repeat(auto-fit, minmax(190px, max-content)); gap: 0 1.4rem; padding: 0.7rem 1rem 0.9rem; }
.nav-item--res .nav-drop { left: auto; right: 0; }
.hdr .head-phone { font: 500 0.93rem var(--text); color: var(--ink); text-decoration: none; white-space: nowrap; font-variant-numeric: tabular-nums; }
.form-ok { background: var(--card); border: 1px solid var(--line); border-left: 4px solid var(--accent); border-radius: 6px; padding: 1rem 1.1rem; margin-top: 1.2rem; color: var(--ink-soft); }
.form-ok b { color: var(--ink); }
.form-ok a { color: var(--ink); font-weight: 600; }
@media (max-width: 1140px) {
  .nav-item--fam .nav-drop, .nav-item--res .nav-drop { width: auto; max-width: none; grid-template-columns: 1fr !important; }
  .hdr .head-phone { display: none; }
}

/* ---- dropdown panels anchor to the header, centred, never past the viewport edge ---- */
.hdr .wrap { position: relative; }
.nav-item--fam, .nav-item--matrix, .nav-item--res, .nav-item--groups, .nav-item--mega { position: static; }
.nav-item--fam::after, .nav-item--matrix::after, .nav-item--res::after, .nav-item--groups::after, .nav-item--mega::after { display: none; }
.nav-item--fam .nav-drop, .nav-item--matrix .nav-drop, .nav-item--res .nav-drop, .nav-item--groups .nav-drop, .nav-item--mega .nav-drop { left: 50%; right: auto; transform: translateX(-50%); max-width: calc(100vw - 2rem); }
@media (max-width: 1140px) {
  .nav-item--fam .nav-drop, .nav-item--matrix .nav-drop, .nav-item--res .nav-drop, .nav-item--groups .nav-drop, .nav-item--mega .nav-drop { left: auto; transform: none; max-width: none; }
}
@media (max-width: 1320px) { .hdr .head-phone { display: none; } .hdr .long { display: none; } .hdr .short { display: inline; } }

/* the floating buttons step aside while the phone menu is open */
body.menu-open .fab { display: none !important; }
