@font-face {
    font-family: 'Instrument Serif Fallback';
    src: local('Georgia');
    ascent-override: 94%;
    descent-override: 24%;
    line-gap-override: 0%;
    size-adjust: 104%;
  }

@font-face {
    font-family: 'Geist Fallback';
    src: local('Arial');
    ascent-override: 90%;
    descent-override: 22%;
    line-gap-override: 0%;
    size-adjust: 101%;
  }

:root {
    --ink:        oklch(0.18 0.01 230);
    --ink-2:      oklch(0.34 0.01 230);
    --ink-3:      oklch(0.55 0.01 230);
    --paper:      oklch(0.985 0.004 80);
    --paper-2:    oklch(0.96 0.006 80);
    --line:       oklch(0.88 0.008 80);
    --pool:       oklch(0.52 0.12 200);
    --pool-2:     oklch(0.40 0.10 200);
    --pool-tint:  oklch(0.95 0.035 200);
    --serif: 'Instrument Serif', 'Instrument Serif Fallback', Georgia, serif;
    --sans: 'Geist', 'Geist Fallback', Arial, sans-serif;
    --maxw: 1280px;
    --gutter: clamp(20px, 4vw, 56px);
  }

* { box-sizing: border-box; }

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

body {
    margin: 0;
    font-family: var(--sans);
    color: var(--ink);
    background: var(--paper);
    font-size: 17px;
    line-height: 1.55;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
  }

img, svg { display: block; max-width: 100%; }

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

h1, h2, h3, h4 { margin: 0; font-weight: 400; letter-spacing: -0.01em; }

p { margin: 0; }

.container { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }

.eyebrow {
    font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--ink-3); font-weight: 500;
  }

.serif { font-family: var(--serif); font-weight: 400; letter-spacing: -0.02em; }

.italic { font-style: italic; }

.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 20px; border-radius: 999px;
    font-size: 14px; font-weight: 500; cursor: pointer;
    border: 1px solid transparent; transition: all .18s ease;
    font-family: var(--sans);
    white-space: nowrap;
  }

.btn-primary { background: var(--ink); color: var(--paper); }

.btn-primary:hover { background: var(--pool-2); }

.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }

.btn-ghost:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }

.btn-lg { padding: 16px 28px; font-size: 15px; }

.btn-arrow { width: 14px; height: 14px; }

:root { --chrome-h: 64px; }
header.site {
    position: sticky; top: 0; z-index: 50;
    background: oklch(0.985 0.004 80 / 0.92);
    backdrop-filter: saturate(140%) blur(14px);
    -webkit-backdrop-filter: saturate(140%) blur(14px);
    border-bottom: 1px solid var(--line);
  }

.nav {
    display: flex; align-items: center; justify-content: space-between;
    padding-block: 18px; gap: 24px;
  }

.brand { display: flex; align-items: center; gap: 10px; font-family: var(--serif); font-size: 22px; cursor: pointer; }

.brand img { cursor: pointer; }

.brand-mark {
    width: 28px; height: 28px; border-radius: 6px;
    background: linear-gradient(160deg, var(--pool), var(--pool-2));
    display: grid; place-items: center; color: white;
    font-family: var(--serif); font-size: 16px; font-style: italic;
  }

.navlinks { display: flex; gap: 28px; font-size: 14px; color: var(--ink-2); align-items: center; }

.navlinks a { transition: color .15s; }

.navlinks a:hover { color: var(--ink); }

.nav-dropdown { position: relative; }

.nav-dropdown-btn {
    display: inline-flex; align-items: center; gap: 5px;
    font-size: 14px; color: var(--ink-2); cursor: pointer;
    background: none; border: none; padding: 0; font-family: var(--sans);
    transition: color .15s;
  }

.nav-dropdown-btn:hover { color: var(--ink); }

.nav-dropdown-btn svg { width: 12px; height: 12px; transition: transform .2s; }

.nav-dropdown:hover .nav-dropdown-btn svg { transform: rotate(180deg); }

.nav-dropdown-menu {
    position: absolute; top: calc(100% + 16px); left: -16px;
    background: white; border: 1px solid var(--line);
    border-radius: 12px; padding: 8px;
    min-width: 240px;
    box-shadow: 0 8px 32px oklch(0.18 0.01 230 / 0.12), 0 2px 8px oklch(0.18 0.01 230 / 0.06);
    opacity: 0; visibility: hidden; transform: translateY(-8px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
    z-index: 200;
  }

.nav-dropdown:hover .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }

.nav-dropdown-menu a {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 12px; border-radius: 8px;
    font-size: 14px; color: var(--ink-2);
    transition: background .15s, color .15s;
  }

.nav-dropdown-menu a:hover { background: var(--pool-tint); color: var(--pool); }

.nav-dropdown-menu a span { font-size: 12px; color: var(--ink-3); display: block; margin-top: 1px; }

.nav-dropdown-divider { height: 1px; background: var(--line); margin: 4px 0; }

.nav-cta { display: flex; align-items: center; gap: 14px; }

.phone-btn { font-size: 14px; font-weight: 500; color: var(--ink); display: inline-flex; align-items: center; gap: 7px; }

.menu-toggle { display: none; }

.trust {
    background: var(--ink);
    color: oklch(0.88 0.01 230);
    padding: 44px 0 52px;
    overflow: hidden;
  }

.trust-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    align-items: center;
  }

.trust-item { display: flex; gap: 14px; align-items: center; }

.trust-item svg { width: 26px; height: 26px; color: oklch(0.75 0.13 145); flex-shrink: 0; }

.trust-item strong { display: block; color: white; font-weight: 500; font-size: 14px; }

.trust-item span { font-size: 12.5px; color: oklch(0.7 0.01 230); }

footer.site {
    background: oklch(0.13 0.008 230);
    color: oklch(0.7 0.01 230);
    padding: 64px 0 40px;
    font-size: 14px;
  }

.foot-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
  }

.foot-brand { font-family: var(--serif); font-size: 28px; color: white; margin-bottom: 14px; }

.foot-grid .foot-heading { color: white; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 18px; font-weight: 500; }

.foot-grid ul { list-style: none; padding: 0; margin: 0; }

.foot-grid ul li { padding: 6px 0; }

.foot-grid a:hover { color: white; }

.foot-bot {
    border-top: 1px solid oklch(0.22 0.008 230);
    padding-top: 28px;
    display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap;
    font-size: 12.5px;
  }

.sticky-cta {
    display: none;
    position: fixed; bottom: 0; left: 0; right: 0;
    z-index: 60;
    background: oklch(0.985 0.004 80 / 0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-top: 1px solid var(--line);
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
    gap: 10px;
  }

.sticky-cta .btn { flex: 1; justify-content: center; padding: 14px; }

.sticky-cta .btn-primary {
    background: linear-gradient(160deg, oklch(0.68 0.13 200), var(--pool));
    border-color: oklch(0.61 0.13 200);
    color: white;
    box-shadow: 0 8px 22px oklch(0.52 0.12 200 / 0.24);
  }

.sticky-cta .btn-primary:hover { background: linear-gradient(160deg, oklch(0.72 0.13 200), var(--pool)); }

.services-section {
    background: var(--paper);
    padding: clamp(64px, 8vw, 110px) 0;
    border-top: 1px solid var(--line);
  }

.svc-table { border-top: 1px solid var(--line); }

.svc-row {
    display: grid;
    grid-template-columns: 28px 1fr 2fr 34px;
    align-items: center;
    gap: 0 32px;
    padding: 22px 0;
    border-bottom: 1px solid var(--line);
    color: inherit;
    text-decoration: none;
    transition: color .18s;
  }

.svc-row:hover { color: var(--pool); }

.svc-row-num {
    font-family: var(--serif);
    font-size: 14px;
    color: var(--ink-3);
    font-style: italic;
    line-height: 1;
  }

.svc-row-title {
    font-family: var(--serif);
    font-size: clamp(17px, 1.6vw, 21px);
    line-height: 1.1;
    letter-spacing: -0.01em;
  }

.svc-row-desc {
    font-size: 13.5px;
    color: var(--ink-2);
    line-height: 1.55;
  }

.svc-row:hover .svc-row-desc { color: oklch(0.46 0.07 200); }

.svc-row-arrow {
    width: 34px; height: 34px;
    border-radius: 999px;
    border: 1px solid var(--line);
    display: grid; place-items: center;
    color: var(--ink-3);
    flex-shrink: 0;
    transition: all .18s;
    justify-self: end;
  }

.svc-row:hover .svc-row-arrow {
    background: var(--pool);
    border-color: var(--pool);
    color: white;
    transform: translateX(2px);
  }

.svc-row-arrow svg { width: 12px; height: 12px; }
.hero-ba-wrap {
    position: absolute;
    inset: 0;
    cursor: ew-resize;
    touch-action: none;
    z-index: 4;
    user-select: none;
    -webkit-user-select: none;
  }

.hero-ba-wrap * { user-select: none; -webkit-user-select: none; }

.hero-ba-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
      linear-gradient(to right, oklch(0.1 0.01 230 / 0.48) 0%, oklch(0.1 0.01 230 / 0.34) 34%, oklch(0.1 0.01 230 / 0.04) 62%, oklch(0.1 0.01 230 / 0) 100%),
      radial-gradient(90% 90% at 23% 52%, oklch(0.12 0.015 230 / 0.34) 0%, oklch(0.12 0.015 230 / 0.12) 54%, transparent 76%),
      linear-gradient(
        to bottom,
        oklch(0.1 0.01 230 / 0.3) 0%,
        oklch(0.1 0.01 230 / 0.16) 30%,
        oklch(0.1 0.01 230 / 0.14) 60%,
        oklch(0.1 0.01 230 / 0.46) 84%,
        oklch(0.1 0.01 230 / 0.66) 100%
      );
    pointer-events: none;
    z-index: 10;
  }

.hero-ba-wrap .ba-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

.hero-ba-wrap .ba-after-wrap {
    position: absolute;
    inset: 0;
    overflow: hidden;
    will-change: clip-path;
  }

.hero-ba-wrap .ba-handle {
    position: absolute; top: 0; bottom: 0;
    z-index: 6;
    width: 2px; background: white;
    box-shadow: 0 0 0 1px oklch(0 0 0 / .15), 0 4px 18px oklch(0 0 0 / .2);
    pointer-events: none;
    transform: translateX(-1px);
  }

.hero-overlay {
    display: none;
  }

.hero-content a,
  .hero-content button,
  .hero-content input,
  .hero-content select {
    pointer-events: auto;
  }

.hero h1 {
    font-family: var(--serif);
    font-size: clamp(44px, 6.4vw, 92px);
    line-height: 0.98;
    letter-spacing: -0.025em;
  }

.hero h1 em { font-style: italic; color: oklch(0.76 0.16 200); }

.hero-meta {
    margin-top: 24px;
    display: flex; gap: 36px; flex-wrap: wrap;
    padding-top: 16px; border-top: 1px solid var(--line);
  }

.meta-stat { display: flex; flex-direction: column; gap: 2px; }

.meta-stat strong { font-family: var(--serif); font-size: 28px; font-weight: 400; }

.meta-stat span { font-size: 12px; color: var(--ink-3); letter-spacing: 0.06em; text-transform: uppercase; }

.hero-ctas { margin-top: 20px; display: flex; gap: 12px; flex-wrap: wrap; position: relative; z-index: 7; }

.hero-mobile-quote { display: none; }

.hero-aside { font-size: 13px; color: var(--ink-3); margin-top: 8px; display: flex; gap: 14px; align-items: center; }

.gallery {
    margin-top: clamp(40px, 6vw, 72px);
    padding-bottom: clamp(60px, 8vw, 96px);
  }

.ba-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
  }

.ba-card {
    background: var(--paper-2);
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
  }

.ba-frame {
    position: relative;
    aspect-ratio: 16/9;
    user-select: none;
    touch-action: none;
    cursor: ew-resize;
    overflow: hidden;
    background: oklch(0.9 0.01 230);
  }

.ba-img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
  }

.ba-after-wrap {
    position: absolute; inset: 0;
    overflow: hidden;
    will-change: clip-path;
  }

.ba-handle {
    position: absolute; top: 0; bottom: 0;
    width: 2px; background: white;
    box-shadow: 0 0 0 1px oklch(0 0 0 / .15), 0 4px 18px oklch(0 0 0 / .2);
    pointer-events: none;
    transform: translateX(-1px);
  }

.ba-knob {
    position: absolute; top: 50%; left: 50%;
    width: 32px; height: 20px;
    background: oklch(1 0 0 / 0.72);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: 999px;
    border: 1px solid oklch(1 0 0 / 0.35);
    transform: translate(calc(-50% + var(--mag-x, 0px)), calc(-50% + var(--mag-y, 0px)));
    display: grid; place-items: center;
    box-shadow: 0 2px 10px oklch(0 0 0 / .18);
    pointer-events: none;
    will-change: transform;
  }

.ba-knob svg { width: 13px; height: 9px; color: oklch(0.25 0.01 230); opacity: 0.8; }

[data-ba]:active .ba-knob {
    background: oklch(1 0 0 / 0.92);
    box-shadow: 0 0 0 4px oklch(1 0 0 / 0.15), 0 2px 10px oklch(0 0 0 / .18);
  }

.ba-tag {
    position: absolute; top: 14px;
    padding: 6px 11px; border-radius: 999px;
    background: oklch(0 0 0 / .55);
    color: white; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    pointer-events: none;
    z-index: 20;
  }

.ba-tag.before { left: 14px; z-index: 20; }

.ba-tag.after { right: 14px; z-index: 20; }

.hero-ba-wrap .ba-tag { top: 20px; z-index: 20; }

.hero-ba-wrap .ba-handle { z-index: 18; }

.ba-meta {
    padding: 18px 22px;
    display: flex; justify-content: space-between; align-items: baseline;
    gap: 16px; flex-wrap: wrap;
  }

.ba-meta h3 { font-family: var(--serif); font-size: 22px; }

.ba-meta-info { font-size: 13px; color: oklch(0.35 0.01 230); display: flex; gap: 18px; flex-wrap: wrap; }

.gallery-head {
    display: flex; justify-content: space-between; align-items: end;
    margin-bottom: 28px; gap: 24px; flex-wrap: wrap;
  }

.gallery-head h2 {
    font-family: var(--serif);
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1.05;
    max-width: 18ch;
  }

.gallery-pager {
    display: flex; gap: 8px;
  }

.gallery-counter {
    display: none;
    align-items: center;
    min-width: 48px;
    justify-content: center;
    font-size: 13px;
    color: var(--ink-3);
    font-weight: 500;
  }

.pg-btn {
    width: 42px; height: 42px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: transparent;
    cursor: pointer;
    display: grid; place-items: center;
    color: var(--ink-2);
    transition: all .15s;
  }

.pg-btn:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }

.pg-btn:disabled { opacity: 0.35; cursor: not-allowed; }

.pg-btn:disabled:hover { background: transparent; color: var(--ink-2); border-color: var(--line); }

.gallery-track-outer { overflow: hidden; }

.gallery-track {
    display: flex;
    gap: 18px;
    transition: transform .5s cubic-bezier(.7,.0,.2,1);
  }

.gallery-track .ba-card { flex: 0 0 calc((100% - 18px) / 2); }

.gallery-track-all {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

.gallery-track-all .ba-card { flex: initial; }

.gallery-pager-mobile { display: none; }

.block-head {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: clamp(24px, 5vw, 80px);
    margin-bottom: clamp(36px, 5vw, 64px);
    align-items: start;
  }

.block-head h2 {
    font-family: var(--serif);
    font-size: clamp(34px, 4.4vw, 60px);
    line-height: 1.0;
    letter-spacing: -0.025em;
  }

.block-head h2 em { font-style: italic; color: var(--pool); }

.block-head p { color: var(--ink-2); font-size: 17px; max-width: 56ch; }

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid var(--line);
  }

.step {
    padding: 32px 24px 36px 32px;
    border-right: 1px solid var(--line);
    position: relative;
  }

.step:last-child { border-right: none; }

.step-num {
    font-family: var(--serif);
    font-size: 56px; line-height: 1;
    color: var(--pool);
    font-style: italic;
    margin-bottom: 28px;
  }

.step h3 { font-family: var(--serif); font-size: 22px; margin-bottom: 8px; }

.step-time { font-size: 12px; color: var(--ink-3); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 14px; }

.step p { color: var(--ink-2); font-size: 14.5px; }

.why-card {
    background: var(--paper);
    padding: 36px 32px;
    min-height: 240px;
    display: flex; flex-direction: column; justify-content: space-between;
  }

.why-card .ic {
    width: 36px; height: 36px; border-radius: 8px;
    background: var(--pool-tint);
    color: var(--pool);
    display: grid; place-items: center;
    margin-bottom: 28px;
  }

.why-card h3 { font-family: var(--serif); font-size: 24px; margin-bottom: 10px; }

.why-card p { color: var(--ink-2); font-size: 14.5px; line-height: 1.55; }

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }

.price-card {
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 36px 32px 32px;
    background: var(--paper);
    display: flex; flex-direction: column;
    transition: border-color .2s, transform .2s;
  }

.price-card:hover { border-color: var(--ink); }

.price-card.featured {
    background: var(--ink); color: oklch(0.92 0.01 230); border-color: var(--ink);
  }

.price-card.featured h3 { color: white; }

.price-card.featured .pc-from { color: oklch(0.7 0.01 230); }

.price-card.featured ul li { color: oklch(0.85 0.01 230); border-color: oklch(0.3 0.01 230); }

.price-card.featured ul li svg { color: oklch(0.75 0.13 145); }

.pc-tag { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--pool); margin-bottom: 18px; font-weight: 500; }

.price-card.featured .pc-tag { color: oklch(0.78 0.12 200); }

.pc-from { font-size: 12px; color: var(--ink-3); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 4px; }

.pc-price { font-family: var(--serif); font-size: 56px; line-height: 1; margin-bottom: 6px; letter-spacing: -0.02em; }

.pc-range { color: var(--ink-3); font-size: 13px; margin-bottom: 24px; }

.price-card.featured .pc-range { color: oklch(0.7 0.01 230); }

.price-card h3 { font-family: var(--serif); font-size: 24px; margin-bottom: 10px; }

.price-card > p { color: var(--ink-2); font-size: 14px; margin-bottom: 24px; }

.price-card.featured > p { color: oklch(0.78 0.01 230); }

.price-card ul { list-style: none; padding: 0; margin: 0 0 28px; flex: 1; }

.price-card ul li {
    display: flex; gap: 10px; align-items: flex-start;
    padding: 11px 0; font-size: 14px;
    border-top: 1px solid var(--line);
    color: var(--ink-2);
  }

.price-card ul li:first-child { border-top: none; }

.price-card ul li svg { width: 14px; height: 14px; flex-shrink: 0; margin-top: 5px; color: var(--pool); }

.price-card .btn { width: 100%; justify-content: center; }

.price-card.featured .btn-primary { background: white; color: var(--ink); }

.price-card.featured .btn-primary:hover { background: var(--pool-tint); }

.pricing-note {
    margin-top: 28px; padding: 18px 22px;
    background: var(--paper-2); border-radius: 10px;
    font-size: 13.5px; color: var(--ink-2);
    display: flex; gap: 12px; align-items: center;
  }

.pricing-note svg { color: var(--pool); flex-shrink: 0; }

.areas-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(28px, 5vw, 80px);
    align-items: start;
  }

.city-areas-wrap {
    grid-template-columns: minmax(220px, .65fr) minmax(280px, 1fr);
    gap: clamp(24px, 4vw, 48px);
  }

.area-list { columns: 2; column-gap: 24px; }

.city-area-list { columns: 1; }

.area-details:not([open]) > .area-list { display: block; }

.area-list a {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
    font-size: 15px;
    color: var(--ink);
    transition: transform .2s, color .2s;
    break-inside: avoid;
  }

.area-list a:hover { transform: translateX(6px); color: var(--pool); }

.area-toggle { display: none; }

.area-map {
    background: var(--paper-2);
    border: 1px solid var(--line);
    border-radius: 14px;
    aspect-ratio: 4/5;
    position: relative;
    overflow: hidden;
  }

.map-badge {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--ink);
    color: white;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    padding: 8px 16px;
    border-radius: 999px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
    pointer-events: none;
    z-index: 2;
    box-shadow: 0 4px 16px oklch(0.18 0.01 230 / 0.25);
  }

.map-badge svg { color: var(--pool); }

.stars { display: flex; gap: 3px; color: oklch(0.78 0.16 80); }

.stars svg { width: 14px; height: 14px; fill: currentColor; }

.av {
    width: 40px; height: 40px; border-radius: 999px;
    background: linear-gradient(135deg, var(--pool), var(--pool-2));
    display: grid; place-items: center; color: white;
    font-family: var(--serif); font-size: 16px;
  }

.reviewer-info span { font-size: 12.5px; color: var(--ink-3); }

.faq-list {
    border-top: 1px solid var(--line);
  }

details.faq {
    border-bottom: 1px solid var(--line);
  }

details.faq summary {
    cursor: pointer; padding: 28px 0;
    list-style: none;
    display: flex; justify-content: space-between; align-items: center;
    gap: 24px;
    font-family: var(--serif); font-size: clamp(20px, 2vw, 26px);
    line-height: 1.25; letter-spacing: -0.01em;
    transition: color .15s;
  }

details.faq summary::-webkit-details-marker { display: none; }

details.faq summary:hover { color: var(--pool); }

.faq-icon {
    width: 32px; height: 32px; border-radius: 999px;
    border: 1px solid var(--line);
    display: grid; place-items: center;
    flex-shrink: 0;
    transition: transform .25s, background .15s;
  }

details.faq[open] .faq-icon { transform: rotate(45deg); background: var(--ink); color: var(--paper); border-color: var(--ink); }

.faq-icon svg { width: 14px; height: 14px; }

.faq-body {
    padding: 0 64px 32px 0;
    color: var(--ink-2); font-size: 16px; line-height: 1.6;
    max-width: 72ch;
  }

.quote-section .block-head h2 { color: white; }

.quote-section .block-head h2 em { color: oklch(0.78 0.12 200); }

.quote-section .block-head p { color: oklch(0.78 0.01 230); }

.field label { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: oklch(0.72 0.01 230); }

.field input, .field select, .field textarea {
    background: oklch(0.16 0.01 230);
    border: 1px solid oklch(0.32 0.01 230);
    border-radius: 8px;
    padding: 13px 14px;
    color: white;
    font-family: inherit;
    font-size: 15px;
    transition: border-color .15s, background .15s;
  }

.field input:focus, .field select:focus, .field textarea:focus {
    outline: none; border-color: oklch(0.78 0.12 200);
    background: oklch(0.18 0.015 230);
  }

.field input:-webkit-autofill,
  .field input:-webkit-autofill:hover,
  .field input:-webkit-autofill:focus {
    -webkit-text-fill-color: white;
    -webkit-box-shadow: 0 0 0px 1000px #1a1e27 inset;
    caret-color: white;
    transition: background-color 9999s ease-in-out 0s;
  }

.field textarea { min-height: 90px; resize: vertical; }

.form-foot small { font-size: 12px; color: oklch(0.7 0.01 230); }

.quote-info ul li svg { color: oklch(0.78 0.12 200); flex-shrink: 0; margin-top: 3px; }

.quote-contact { margin-top: 32px; padding-top: 28px; border-top: 1px solid oklch(0.3 0.01 230); }

.quote-contact .eyebrow { color: oklch(0.7 0.01 230); }

.quote-contact .num { font-family: var(--serif); font-size: 38px; margin-top: 8px; color: white; letter-spacing: -0.01em; }

.quote-contact a:hover .num { color: oklch(0.78 0.12 200); }

.ph {
    background:
      repeating-linear-gradient(135deg,
        oklch(0.85 0.015 230) 0 12px,
        oklch(0.88 0.015 230) 12px 24px);
    position: relative;
  }

.ph::after {
    content: attr(data-label);
    position: absolute; inset: 0;
    display: grid; place-items: center;
    font-family: ui-monospace, "SF Mono", Menlo, monospace;
    font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
    color: oklch(0.4 0.02 230);
    text-align: center;
    padding: 16px;
  }

.ph-after {
    background:
      repeating-linear-gradient(135deg,
        oklch(0.55 0.06 230) 0 12px,
        oklch(0.5 0.06 230) 12px 24px);
  }

.ph-after::after { color: oklch(0.95 0.02 230); }

/* Blog */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }

.blog-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
    background: var(--paper);
    color: var(--ink);
  }

.blog-card img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    display: block;
  }

.blog-card-body { padding: 24px; display: flex; flex-direction: column; gap: 14px; flex: 1; }

.blog-card-meta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink-3);
  }

.blog-card h2 { font-family: var(--serif); font-size: 26px; line-height: 1.1; }

.blog-card p { color: var(--ink-2); font-size: 14.5px; }

.blog-hero {
    position: relative;
    min-height: 58svh;
    display: flex;
    align-items: end;
    overflow: hidden;
    color: white;
    padding: clamp(120px, 18vw, 220px) 0 clamp(56px, 8vw, 96px);
  }

.blog-hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

.blog-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, oklch(0.1 0.01 230 / .28), oklch(0.1 0.01 230 / .74));
  }

.blog-hero .container { position: relative; z-index: 2; }

.blog-hero-meta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 18px;
    color: oklch(0.9 0.01 230 / .78);
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

.blog-hero h1 {
    font-family: var(--serif);
    font-size: clamp(44px, 6vw, 88px);
    line-height: .98;
    letter-spacing: -.025em;
    max-width: 12ch;
  }

.blog-hero p { margin-top: 18px; max-width: 56ch; color: oklch(0.95 0.01 230 / .82); font-size: 18px; }

.blog-body {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: clamp(36px, 6vw, 88px);
    padding-top: clamp(56px, 7vw, 96px);
    padding-bottom: clamp(56px, 7vw, 96px);
  }

.blog-content {
    font-size: 18px;
    line-height: 1.7;
    color: var(--ink-2);
  }

.blog-content > * + * { margin-top: 1.2em; }

.blog-content h2 {
    font-family: var(--serif);
    font-size: clamp(30px, 3vw, 44px);
    line-height: 1.08;
    color: var(--ink);
    margin-top: 2em;
  }

.blog-content a {
    color: var(--pool);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
  }

.blog-content table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 14px;
  }

.blog-content th,
.blog-content td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--line);
    text-align: left;
    vertical-align: top;
  }

.blog-content th {
    color: var(--ink);
    background: var(--paper-2);
    font-weight: 500;
  }

.blog-content blockquote {
    margin: 2em 0;
    padding: 24px 28px;
    border-left: 3px solid var(--pool);
    background: var(--paper-2);
    color: var(--ink);
    font-family: var(--serif);
    font-size: 24px;
    line-height: 1.35;
  }

.blog-sidebar {
    position: sticky;
    top: calc(var(--chrome-h) + 24px);
    align-self: start;
  }

.blog-cta-box {
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 28px;
    background: var(--paper);
    margin-bottom: 18px;
  }

.blog-cta-box h2 {
    font-family: var(--serif);
    font-size: 28px;
    line-height: 1.1;
    margin: 12px 0;
  }

.blog-cta-box p { color: var(--ink-2); margin-bottom: 18px; }

/* ───── Responsive ───── */
  @media (max-width: 960px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero { min-height: 100svh; }
    .block-head { grid-template-columns: 1fr; }
    .why-grid, .pricing-grid, .reviews-grid { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: 1fr 1fr; }
    .step { border-right: none; border-bottom: 1px solid var(--line); padding-right: 24px; padding-left: 24px; }
    .step:nth-child(odd) { border-right: 1px solid var(--line); padding-right: 24px; }
    .step:last-child { border-bottom: none; }
    .trust-inner { grid-template-columns: 1fr 1fr; gap: 24px; }
    .areas-wrap { grid-template-columns: 1fr; }
    .city-areas-wrap { grid-template-columns: 1fr; }
    .quote-grid { grid-template-columns: 1fr; }
    .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .gallery-track .ba-card { flex: 0 0 100%; }
    .gallery-counter { display: inline-flex; }
    .gallery-track-all { display: flex; }
    .gallery-track-all .ba-card { flex: 0 0 100%; }
    .gallery-pager-mobile { display: flex; }
    .blog-grid { grid-template-columns: 1fr; }
    .blog-body { grid-template-columns: 1fr; }
    .blog-sidebar { position: static; }
  }

/* Reduced motion */
  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { transition: none !important; animation: none !important; }
    html { scroll-behavior: auto; }
  }

.hero {
    position: relative;
    height: calc(100svh - var(--chrome-h));
    min-height: 540px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;  /* vertically center the content block */
  }

@media (max-width: 720px) {
    :root { --chrome-h: 64px; }
  }

.hero-content {
    position: relative;
    z-index: 6;
    padding: clamp(24px, 4vw, 56px) 0;
    color: white;
    pointer-events: none;   /* let clicks pass through to slider */
  }

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
  }

.hero-sub {
    margin-top: 14px;
    font-size: clamp(16px, 1.4vw, 19px);
    color: var(--ink-2);
    max-width: 48ch; line-height: 1.5;
  }

section.block {
    padding: clamp(60px, 8vw, 110px) 0;
    border-top: 1px solid var(--line);
  }

.why-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px;
    background: var(--line); border: 1px solid var(--line); border-radius: 14px; overflow: hidden;
  }

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }

.review {
    border: 1px solid var(--line); border-radius: 14px;
    padding: 32px 28px;
    background: var(--paper);
    display: flex; flex-direction: column; gap: 22px;
  }

.review blockquote {
    margin: 0;
    font-family: var(--serif); font-size: 22px; line-height: 1.3;
    letter-spacing: -0.01em;
    flex: 1;
  }

.reviewer { display: flex; gap: 12px; align-items: center; }

.reviewer-info strong { display: block; font-size: 14px; font-weight: 500; }

.quote-section {
    background: var(--ink); color: oklch(0.92 0.01 230);
    border-top: none;
  }

.quote-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(28px, 5vw, 80px);
    align-items: start;
  }

.quote-form { background: oklch(0.22 0.01 230); border-radius: 18px; padding: 36px; border: 1px solid oklch(0.72 0.14 200 / 0.45); box-shadow: 0 0 0 1px oklch(0.72 0.14 200 / 0.12), inset 0 0 32px oklch(0.72 0.14 200 / 0.04); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }

.form-row.single { grid-template-columns: 1fr; }

.field { display: flex; flex-direction: column; gap: 6px; }

.field select {
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23aaaaaa' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
    cursor: pointer;
  }

.form-foot { display: flex; justify-content: space-between; align-items: center; gap: 16px; margin-top: 8px; flex-wrap: wrap; }

.form-foot button { background: white; color: var(--ink); border-color: white; }

.form-foot button:hover { background: var(--pool-tint); border-color: var(--pool-tint); }

.quote-info { padding: 0; }

.quote-info ul { list-style: none; padding: 0; margin: 28px 0 0; }

.quote-info ul li {
    display: flex; gap: 14px; align-items: flex-start;
    padding: 14px 0;
    border-top: 1px solid oklch(0.3 0.01 230);
    font-size: 15px;
  }

.quote-info ul li:first-child { border-top: 1px solid oklch(0.3 0.01 230); }

@media (max-width: 720px) {
    /* ── Mobile hero: framed card layout, image first ── */
    /* Tall wrapper: reveal zone + exit buffer before the black trust bar enters */
    :root {
      --hero-reveal-scroll: 320px;
      --hero-exit-buffer: 120px;
      --hero-mobile-extra: 72px;
    }
    .hero-reveal-wrap {
      height: calc(100svh - var(--chrome-h) + var(--hero-mobile-extra) + var(--hero-reveal-scroll) + var(--hero-exit-buffer));
      position: relative;
    }
    .hero {
      position: sticky;
      top: var(--chrome-h);        /* sit flush under the nav */
      height: calc(100svh - var(--chrome-h) + var(--hero-mobile-extra));
      min-height: unset;
      overflow: hidden;
      background: var(--paper);   /* match rest of site */
      justify-content: flex-start;
      padding-top: 16px;
      padding-bottom: 0;
    }
    /* Image frame first (order:1), text content second (order:2) */
    .hero-ba-wrap { order: 1; }
    .hero-content { order: 2; }
    /* Content padding */
    .hero-content { padding: 0; }
    .hero-content .container { padding-top: 16px; }
    /* Override inline white text styles for light background */
    .hero h1 { margin-top: 0 !important; color: var(--ink) !important; }
    .hero h1 em { color: var(--pool) !important; }
    .hero .hero-sub  { color: var(--ink-2) !important; }
    .hero .hero-aside { color: var(--ink-2) !important; }
    .hero-meta { border-top-color: var(--line) !important; }
    .hero-meta .meta-stat strong { color: var(--ink) !important; }
    .hero-meta .meta-stat span   { color: var(--ink-2) !important; }
    /* Ghost button readable on light bg */
    .hero-ctas .btn {
      flex: 1 1 0;
      justify-content: center;
      min-width: 0;
    }
    .hero-ctas .btn-ghost { border-color: var(--ink-3) !important; color: var(--ink) !important; }
    /* Eyebrow hidden */
    .hero .eyebrow { display: none; }
    /* Hide desktop primary CTA; keep "See recent builds" plus a compact quote button. */
    .hero-ctas .btn-primary:not(.hero-mobile-quote) { display: none; }
    .hero-ctas .hero-mobile-quote {
      display: inline-flex;
      background: linear-gradient(160deg, oklch(0.68 0.13 200), var(--pool));
      color: white;
      border-color: oklch(0.61 0.13 200);
      box-shadow: 0 8px 20px oklch(0.52 0.12 200 / 0.18);
    }
    /* Image frame: framed card like portfolio */
    .hero-ba-wrap {
      position: relative;
      inset: auto;
      width: calc(100% - 32px);
      margin: 0 auto;
      height: 210px;
      border-radius: 14px;
      overflow: hidden;
      cursor: default;
      touch-action: pan-y;
      flex-shrink: 0;
    }
    /* No gradient overlay inside the small frame */
    .hero-ba-wrap::after { display: none; }
    /* Horizontal handle (same as desktop) */
    .hero-ba-wrap .ba-handle {
      top: 0; bottom: 0; left: 50%; right: auto;
      width: 2px; height: auto;
      transform: translateX(-1px);
    }
    /* Tags inside frame */
    .hero-ba-wrap .ba-tag { transition: opacity 0.3s ease; }
    .hero-ba-wrap .ba-tag.before { top: 10px; bottom: auto; left: 10px; right: auto; }
    .hero-ba-wrap .ba-tag.after  { top: 10px; bottom: auto; right: 10px; left: auto; opacity: 0; }
    /* Hide the hero-knob outside the frame; handle line inside is enough */
    .hero-knob { display: none !important; }
    /* Smaller stats row */
    .hero-meta { gap: 16px; margin-top: 15px; padding-top: 12px; flex-wrap: nowrap; }
    .meta-stat strong { font-size: 18px; }
    .meta-stat span { font-size: 10px; }
    /* Navigation */
    .navlinks, .nav-cta .btn-ghost { display: none; }
    .nav { padding-block: 12px; }
    section[id], .services-section[id] { scroll-margin-top: calc(var(--chrome-h) + 12px); }
    .menu-toggle {
      display: grid; place-items: center;
      width: 40px; height: 40px; border-radius: 8px;
      background: transparent; border: 1.5px solid var(--ink-3); color: var(--ink); cursor: pointer;
    }
    .nav-cta .phone-btn { display: none; }
    /* Sticky CTA: hidden until hero scrolls out of view */
    .sticky-cta {
      display: flex;
      transform: translateY(100%);
      transition: transform 0.3s ease;
    }
    .sticky-cta.is-visible { transform: translateY(0); }
    .sticky-cta.reveal-hidden { transform: translateY(100%) !important; }
    body.sticky-active { padding-bottom: 78px; }
    .form-row { grid-template-columns: 1fr; }
    .quote-form { padding: 24px; }
    .foot-grid { grid-template-columns: 1fr 1fr; }
    .area-list { columns: 1; }
    /* Mobile area accordion */
    .area-toggle {
      display: flex;
      justify-content: space-between;
      align-items: center;
      width: 100%;
      padding: 15px 0;
      background: none;
      border: none;
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      cursor: pointer;
      font-family: var(--sans);
      font-size: 15px;
      font-weight: 500;
      color: var(--ink);
      list-style: none;
    }
    .area-toggle::-webkit-details-marker { display: none; }
    .area-toggle svg { flex-shrink: 0; transition: transform 0.2s ease; }
    .area-details[open] .area-toggle svg { transform: rotate(180deg); }
    .area-details:not([open]) .area-list { display: none; }
    .area-details[open] .area-list { margin-top: 4px; }
    .ba-meta { padding: 14px 16px; }
    .hero-ctas { margin-top: 20px; margin-bottom: 20px; gap: 10px; }
    .hero-ctas .btn-lg { padding: 13px 18px; font-size: 15px; }
    .hero-aside { margin-top: 0; font-size: 12px; }
    /* Prevent iOS auto-zoom on form field focus */
    .quote-form input, .quote-form select, .quote-form textarea { font-size: max(16px, 1em); }
  }

@media (max-width: 480px) {
    .process-grid { grid-template-columns: 1fr; }
    .step, .step:nth-child(odd) { border-right: none; }
    .trust-inner { grid-template-columns: 1fr; }
    .foot-grid { grid-template-columns: 1fr; gap: 28px; }
  }

@media (max-width: 960px) {
    .svc-row { grid-template-columns: 24px 1fr 34px; }
    .svc-row-desc { display: none; }
  }

@media (max-width: 560px) {
    .svc-row { grid-template-columns: 1fr 34px; gap: 0 16px; }
    .svc-row-num { display: none; }
  }

.hero-knob {
    position: absolute;
    top: 10%;
    left: 50%;              /* JS updates this as slider moves */
    z-index: 4;
    transform: translate(calc(-50% + var(--mag-x, 0px)), -50%);
    pointer-events: none;
  }

/* Final mobile layout guardrails. These live last so desktop grid rules cannot override them. */
@media (max-width: 720px) {
  :root {
    --hero-mobile-extra: 150px;
  }

  .hero {
    height: calc(100svh - var(--chrome-h) + var(--hero-mobile-extra));
  }

  .hero-reveal-wrap {
    height: calc(100svh - var(--chrome-h) + var(--hero-mobile-extra) + var(--hero-reveal-scroll) + var(--hero-exit-buffer));
  }

  .hero-meta {
    margin-bottom: 18px;
  }

  .why-grid,
  .reviews-grid,
  .quote-grid {
    grid-template-columns: 1fr !important;
  }

  .why-card {
    min-height: auto;
  }

  .reviews-grid {
    gap: 18px;
  }

  .review {
    padding: 26px 24px;
  }

  .review blockquote {
    font-size: 22px;
  }

  .quote-section {
    overflow: hidden;
  }

  .quote-form {
    width: 100%;
    padding: 24px;
  }

  .quote-info {
    width: 100%;
  }
}
