/* Sightline Windows — stylesheet (direction: M5 "Modern Glassy")
   Single family Sora. Committed teal identity, bright mint accent.
   Glass used purposefully (header + price calculator only). */

:root {
  --ink: oklch(0.24 0.028 195);      /* near-black teal — body text */
  --bg: oklch(0.972 0.006 195);      /* cool off-white surface */
  --bg-2: oklch(0.945 0.008 195);    /* faint cool band */
  --surface: #ffffff;
  --teal: oklch(0.50 0.075 192);     /* brand */
  --teal-deep: oklch(0.40 0.07 195);
  --mint: oklch(0.76 0.13 178);      /* bright accent — CTA bg */
  --mint-deep: oklch(0.66 0.12 180);
  --on-mint: oklch(0.22 0.05 185);   /* dark text on mint */
  --muted: oklch(0.50 0.022 198);    /* secondary text (>=4.5 on white) */
  --line: oklch(0.91 0.009 195);
  --line-strong: oklch(0.85 0.012 195);
  --ink-dark: oklch(0.18 0.03 195);  /* hero/footer deep ground */

  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 2px oklch(0.2 0.03 200 / .06);
  --shadow-md: 0 16px 36px -18px oklch(0.2 0.04 200 / .22);
  --shadow-lg: 0 36px 70px -28px oklch(0.18 0.05 200 / .4);
  --maxw: 1240px;
  --font: "Sora", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);          /* expo — confident */
  --ease-quart: cubic-bezier(0.25, 1, 0.5, 1);    /* smooth */
  --ease-quint: cubic-bezier(0.22, 1, 0.36, 1);   /* snappy */
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font); color: var(--ink); background: var(--bg);
  line-height: 1.6; font-size: 17px; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
html, body { overflow-x: hidden; max-width: 100%; }
/* grid/flex children must be allowed to shrink below content width (prevents mobile overflow) */
.hero-grid > *, .split > *, .svc-panels > *, .feat-strip > *, .footer-grid > *, .cc-result > *, .form-row > * { min-width: 0; }

h1, h2, h3, h4 { font-weight: 600; line-height: 1.06; letter-spacing: -0.025em; text-wrap: balance; }
h1 { font-size: clamp(2.6rem, 5.6vw, 4.4rem); letter-spacing: -0.035em; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); letter-spacing: -0.03em; }
h3 { font-size: 1.32rem; }
p { text-wrap: pretty; }
.lead { font-size: clamp(1.06rem, 1.6vw, 1.26rem); color: var(--muted); line-height: 1.55; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding-left: max(28px, env(safe-area-inset-left)); padding-right: max(28px, env(safe-area-inset-right)); }
section { padding: clamp(56px, 8vw, 110px) 0; }
.muted { color: var(--muted); }
.center { text-align: center; }
.maxch { max-width: 60ch; }
.maxch.center { margin-inline: auto; }
.label { display: inline-flex; align-items: center; gap: 9px; font-size: .8rem; font-weight: 600; color: var(--teal); }
.label::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--mint); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 9px; font-weight: 600; font-size: 1rem;
  padding: 14px 26px; border-radius: 12px; border: 1px solid transparent; cursor: pointer;
  transition: transform .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease); white-space: nowrap; font-family: inherit;
}
.btn-primary { background: var(--mint); color: var(--on-mint); }
.btn-primary:hover { background: var(--mint-deep); transform: translateY(-2px); }
.btn-teal { background: var(--teal); color: #fff; }
.btn-teal:hover { background: var(--teal-deep); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--teal); border-color: var(--line-strong); }
.btn-ghost:hover { border-color: var(--teal); }
.btn-onlight-ghost { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.32); }
.btn-onlight-ghost:hover { border-color: #fff; background: rgba(255,255,255,.16); }
.btn-lg { padding: 16px 32px; font-size: 1.06rem; }
.btn:active { transform: translateY(0) scale(.985); }
.link { color: var(--teal); font-weight: 600; display: inline-flex; align-items: center; gap: 7px; }
.link:hover { color: var(--teal-deep); }

/* Header — transparent over hero, glass after scroll */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; transition: background .3s var(--ease), box-shadow .3s var(--ease); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 1.34rem; letter-spacing: -0.02em; color: #fff; transition: color .3s; }
.brand .glyph { width: 28px; height: 28px; flex: none; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: .95rem; font-weight: 500; color: rgba(255,255,255,.86); transition: color .15s; }
.nav-links a:hover { color: #fff; }
.nav-cta { display: flex; align-items: center; gap: 16px; }
.nav-phone { font-weight: 600; color: rgba(255,255,255,.9); font-size: .95rem; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: #fff; margin: 4px 0; transition: .2s; }
/* scrolled state */
.site-header.scrolled { background: rgba(255,255,255,.82); backdrop-filter: saturate(180%) blur(16px); box-shadow: 0 1px 0 var(--line), 0 10px 30px -20px oklch(0.2 0.04 200 / .4); }
.site-header.scrolled .brand, .site-header.scrolled .nav-phone { color: var(--teal); }
.site-header.scrolled .nav-links a { color: var(--ink); }
.site-header.scrolled .nav-links a:hover { color: var(--teal); }
.site-header.scrolled .nav-toggle span { background: var(--ink); }
/* nav CTA: glassy/translucent over the hero, solid mint once scrolled */
.site-header .nav-cta .btn-primary { background: rgba(255,255,255,.14); color: #fff; border: 1px solid rgba(255,255,255,.4); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.site-header .nav-cta .btn-primary:hover { background: rgba(255,255,255,.24); border-color: rgba(255,255,255,.65); transform: translateY(-2px); }
.site-header.scrolled .nav-cta .btn-primary { background: var(--mint); color: var(--on-mint); border-color: transparent; backdrop-filter: none; }
.site-header.scrolled .nav-cta .btn-primary:hover { background: var(--mint-deep); }

/* Hero — full-bleed image, glass calculator */
.hero { position: relative; min-height: 100vh; min-height: 100svh; display: flex; align-items: center; overflow: hidden; padding: 110px 0 56px; }
.hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; transform-origin: 58% 42%; animation: heroPan 30s ease-in-out infinite alternate; will-change: transform; }
@keyframes heroPan { from { transform: scale(1.02) translate3d(0, 0, 0); } to { transform: scale(1.1) translate3d(-1.6%, -1.2%, 0); } }
.hero::after { content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(102deg, oklch(0.18 0.04 195 / .86) 0%, oklch(0.18 0.04 195 / .52) 46%, oklch(0.18 0.04 195 / .2) 100%); }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; gap: 52px; align-items: center; width: 100%; }
.hero-copy { color: #fff; }
.hero-pill { display: inline-flex; align-items: center; gap: 9px; font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 600; color: #fff; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); padding: 8px 15px; border-radius: 999px; }
.hero-pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 0 0 oklch(0.76 0.13 178 / .6); animation: pulse 2.2s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 oklch(0.76 0.13 178 / .55);} 70%{box-shadow:0 0 0 8px oklch(0.76 0.13 178 / 0);} 100%{box-shadow:0 0 0 0 oklch(0.76 0.13 178 / 0);} }
.hero h1 { margin: 22px 0 18px; max-width: 15ch; }
.hero-copy .lead { color: rgba(255,255,255,.86); max-width: 44ch; margin-bottom: 28px; }
.hero-cta { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; margin-bottom: 30px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 12px 22px; font-size: .88rem; color: rgba(255,255,255,.8); }
.hero-trust span { display: inline-flex; align-items: center; gap: 7px; }
.hero-trust svg { color: var(--mint); flex: none; }

/* Glass price-calculator card */
.cc-card {
  background: rgba(255,255,255,.72); backdrop-filter: blur(22px) saturate(150%); -webkit-backdrop-filter: blur(22px) saturate(150%);
  border: 1px solid rgba(255,255,255,.6); border-radius: 20px; padding: 24px;
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255,255,255,.7); color: var(--ink);
  min-height: 470px; display: flex; flex-direction: column;
}
.cc-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.cc-back { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line-strong); background: rgba(255,255,255,.7); display: grid; place-items: center; cursor: pointer; color: var(--teal); transition: background .15s, opacity .15s; }
.cc-back:hover { background: #fff; }
.cc-back[disabled] { opacity: .3; cursor: default; }
.cc-dots { display: flex; gap: 9px; }
.cc-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--line-strong); transition: .25s var(--ease); }
.cc-dot.active { background: var(--teal); transform: scale(1.25); }
.cc-dot.done { background: var(--mint); }
.cc-restart { background: none; border: 0; color: var(--muted); font-weight: 600; font-size: .85rem; cursor: pointer; display: inline-flex; align-items: center; gap: 6px; }
.cc-restart:hover { color: var(--teal); }
.cc-eyebrow { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--teal); }

.cc-panel { display: flex; flex-direction: column; flex: 1; animation: ccfade .34s var(--ease); }
.cc-panel[hidden] { display: none; }
@keyframes ccfade { from { opacity: 0; transform: translateY(9px); } to { opacity: 1; transform: none; } }
.cc-q { font-size: 1.42rem; font-weight: 600; letter-spacing: -0.02em; margin-bottom: 4px; }
.cc-q-sub { color: var(--muted); font-size: .92rem; margin-bottom: 18px; }

/* pill options */
.cc-pills { display: grid; gap: 12px; }
.cc-pill { width: 100%; text-align: left; padding: 18px 20px; border: 1.5px solid var(--line-strong); background: rgba(255,255,255,.6); border-radius: 12px; font-weight: 600; font-size: 1.02rem; color: var(--ink); cursor: pointer; transition: border-color .15s, box-shadow .15s, background .15s; display: flex; justify-content: space-between; align-items: center; gap: 14px; font-family: inherit; }
.cc-pill span small { display: block; font-weight: 400; font-size: .84rem; color: var(--muted); margin-top: 3px; }
.cc-pill:hover { border-color: var(--teal); background: #fff; }
.cc-pill[aria-pressed="true"] { border-color: var(--teal); box-shadow: 0 0 0 3px oklch(0.50 0.075 192 / .14); }
.cc-pill .tick { width: 24px; height: 24px; border-radius: 50%; border: 1.5px solid var(--line-strong); flex: none; display: grid; place-items: center; color: transparent; }
.cc-pill[aria-pressed="true"] .tick { background: var(--mint); border-color: var(--mint); color: var(--on-mint); }

/* image tiles */
.cc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.cc-grid.two { grid-template-columns: repeat(2, 1fr); }
.cc-tile { border: 1.5px solid var(--line-strong); background: rgba(255,255,255,.6); border-radius: 12px; overflow: hidden; cursor: pointer; transition: border-color .15s, transform .15s, box-shadow .15s; padding: 0; text-align: left; display: block; font-family: inherit; }
.cc-tile:hover { border-color: var(--teal); transform: translateY(-2px); }
.cc-tile[aria-pressed="true"] { border-color: var(--mint); box-shadow: 0 0 0 3px oklch(0.76 0.13 178 / .25); }
.cc-tile-media { aspect-ratio: 16/11; position: relative; background: linear-gradient(140deg, var(--teal), var(--teal-deep)); display: grid; place-items: center; color: rgba(255,255,255,.92); }
.cc-tile-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cc-tile-media svg { width: 50px; height: 50px; }
.cc-tile-label { padding: 11px 13px; font-weight: 600; font-size: .92rem; display: flex; justify-content: space-between; align-items: center; gap: 8px; }
.cc-tile[aria-pressed="true"] .cc-tile-label { color: var(--teal); }
.cc-tile-label .dot { width: 16px; height: 16px; border-radius: 50%; border: 1.5px solid var(--line-strong); flex: none; }
.cc-tile[aria-pressed="true"] .cc-tile-label .dot { background: var(--mint); border-color: var(--mint); }

/* slider */
.cc-slider-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.cc-slider-top label { font-size: .8rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); }
.cc-num { width: 88px; padding: 10px 12px; border: 1.5px solid var(--line-strong); border-radius: 10px; font-family: inherit; font-weight: 700; font-size: 1.1rem; text-align: center; color: var(--ink); background: #fff; font-variant-numeric: tabular-nums; }
.cc-num:focus { outline: 0; border-color: var(--mint); }
.cc-range { position: relative; padding-top: 30px; }
input[type=range].cc-input { -webkit-appearance: none; appearance: none; width: 100%; height: 6px; border-radius: 999px; background: var(--line); outline: none; }
input[type=range].cc-input::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 26px; height: 26px; border-radius: 50%; background: var(--teal); border: 3px solid #fff; box-shadow: var(--shadow-md); cursor: pointer; }
input[type=range].cc-input::-moz-range-thumb { width: 26px; height: 26px; border-radius: 50%; background: var(--teal); border: 3px solid #fff; cursor: pointer; }
.cc-bubble { position: absolute; top: 0; transform: translateX(-50%); background: var(--teal); color: #fff; font-weight: 700; font-size: .82rem; padding: 3px 9px; border-radius: 8px; white-space: nowrap; font-variant-numeric: tabular-nums; }
.cc-bubble::after { content: ""; position: absolute; left: 50%; bottom: -4px; transform: translateX(-50%); border: 5px solid transparent; border-top-color: var(--teal); border-bottom: 0; }
.cc-range-ends { display: flex; justify-content: space-between; font-size: .8rem; color: var(--muted); margin-top: 12px; }
.cc-next { margin-top: auto; padding-top: 26px; display: flex; justify-content: flex-end; }

/* result */
.cc-result { display: grid; grid-template-columns: 1fr; gap: 20px; }
.cc-estimate { background: linear-gradient(150deg, var(--teal), var(--teal-deep)); color: #fff; border-radius: 16px; padding: 22px; }
.cc-estimate .lbl { font-size: .74rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--mint); margin-bottom: 14px; }
.cc-tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 14px; }
.cc-tier { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); border-radius: 10px; padding: 13px 6px; text-align: center; }
.cc-tier.featured { background: oklch(0.76 0.13 178 / .2); border-color: var(--mint); }
.cc-tier .t { font-size: .68rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: rgba(255,255,255,.72); margin-bottom: 5px; }
.cc-tier .v { font-size: 1.32rem; font-weight: 700; letter-spacing: -0.02em; font-variant-numeric: tabular-nums; }
.cc-estimate .summ { font-size: .84rem; color: rgba(255,255,255,.82); margin-bottom: 6px; }
.cc-estimate .disc { font-size: .74rem; color: rgba(255,255,255,.62); line-height: 1.5; }
.cc-estimate .restart2 { margin-top: 12px; background: none; border: 0; color: rgba(255,255,255,.82); font-weight: 600; font-size: .84rem; cursor: pointer; }
.cc-estimate .restart2:hover { color: #fff; }
.cc-leadform h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 2px; }
.cc-leadform p.sub { color: var(--muted); font-size: .88rem; margin-bottom: 14px; }

/* Forms */
.form-row { display: grid; gap: 10px; margin-bottom: 10px; }
.form-row.two { grid-template-columns: 1fr 1fr; }
.field label { display: block; font-size: .8rem; font-weight: 600; color: var(--muted); margin-bottom: 6px; }
.field input, .field select { width: 100%; padding: 12px 14px; border: 1.5px solid var(--line-strong); border-radius: 10px; font-family: inherit; font-size: 1rem; background: #fff; color: var(--ink); transition: border .15s, box-shadow .15s; }
.field input:focus, .field select:focus { outline: 0; border-color: var(--mint); box-shadow: 0 0 0 3px oklch(0.76 0.13 178 / .18); }
.form-note { font-size: .79rem; color: var(--muted); margin-top: 9px; text-align: center; }
.btn-block { width: 100%; justify-content: center; }

/* Trust strip */
.logos { padding: 26px 0; border-bottom: 1px solid var(--line); }
.logos .wrap { display: flex; gap: 14px 36px; justify-content: center; align-items: center; flex-wrap: wrap; font-size: .9rem; font-weight: 600; color: var(--teal); }
.logos .sep { width: 5px; height: 5px; border-radius: 50%; background: var(--line-strong); }

/* Feature rows (no card-grid reflex) */
.features { display: grid; gap: 1px; background: var(--line); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.feature { background: var(--surface); padding: 34px 30px; display: grid; grid-template-columns: 48px 1fr; gap: 18px; align-items: start; }
.feature .ic { width: 48px; height: 48px; border-radius: 12px; background: oklch(0.76 0.13 178 / .14); color: var(--teal); display: grid; place-items: center; }
.feature h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 6px; }
.feature p { color: var(--muted); font-size: .95rem; }
.features.cols-2 { grid-template-columns: 1fr 1fr; }

/* Split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split.img-narrow { grid-template-columns: .9fr 1.1fr; }
.split.text-narrow { grid-template-columns: 1.1fr .9fr; }
.sec-head { max-width: 56ch; margin-bottom: 44px; }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head h2 { margin-top: 12px; }

/* Media */
.media { border-radius: var(--radius); overflow: hidden; position: relative; box-shadow: var(--shadow-md); }
.media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.media.tall img { height: 540px; }
.media.wide img { height: 360px; }
.imgslot { position: relative; border-radius: var(--radius); overflow: hidden; min-height: 280px; background: linear-gradient(140deg, var(--teal), var(--teal-deep)); display: grid; place-items: center; box-shadow: var(--shadow-md); }
.imgslot img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.imgslot.tall { min-height: 460px; }

.chips { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 16px; }
.chip { background: var(--bg-2); border: 1px solid var(--line); border-radius: 999px; padding: 7px 15px; font-size: .87rem; font-weight: 500; }
.checklist { list-style: none; display: grid; gap: 12px; }
.checklist li { display: flex; gap: 11px; align-items: flex-start; }
.checklist svg { color: var(--mint-deep); flex: none; margin-top: 3px; }

/* Pricing table */
.ptable { width: 100%; border-collapse: collapse; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.ptable td { padding: 15px 18px; border-bottom: 1px solid var(--line); font-size: .96rem; }
.ptable tr:last-child td { border-bottom: 0; }
.ptable .price { font-weight: 700; color: var(--teal); white-space: nowrap; text-align: right; font-variant-numeric: tabular-nums; }

/* Cities */
.city-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.city-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s; }
.city-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.city-card h3 { font-size: 1.08rem; font-weight: 600; margin-bottom: 3px; }
.city-card .meta { font-size: .82rem; color: var(--muted); margin-bottom: 12px; }
.city-card .go { font-size: .9rem; font-weight: 600; color: var(--teal); }
.towns { max-width: 760px; margin: 30px auto 0; text-align: center; color: var(--muted); font-size: .95rem; line-height: 1.7; }

/* Breadcrumbs (overlay on hero) */
.hero-crumbs { position: absolute; top: 82px; left: 0; right: 0; z-index: 3; font-size: .82rem; }
.hero-crumbs .wrap { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.hero-crumbs a { color: rgba(255,255,255,.72); text-decoration: none; }
.hero-crumbs a:hover { color: #fff; }
.hero-crumbs .sep { color: rgba(255,255,255,.4); }
.hero-crumbs [aria-current] { color: #fff; font-weight: 600; }
@media (max-width: 960px) { .hero-crumbs { top: 74px; } }

/* Window styles */
.wstyles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.wstyle { display: block; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s; }
.wstyle:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.wstyle h3 { font-size: 1.12rem; font-weight: 600; margin-bottom: 7px; }
.wstyle p { font-size: .92rem; color: var(--muted); margin-bottom: 14px; }
.wstyle .go { font-size: .9rem; font-weight: 600; color: var(--teal); }
@media (max-width: 880px) { .wstyles { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .wstyles { grid-template-columns: 1fr; } }

/* FAQ */
.faq { display: grid; gap: 10px; max-width: 800px; margin-inline: auto; }
.faq details { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); }
.faq summary { cursor: pointer; list-style: none; padding: 18px 20px; font-weight: 600; font-size: 1.02rem; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.5rem; color: var(--teal); font-weight: 400; transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 20px 18px; color: var(--muted); font-size: .96rem; }
.faq details[open] p { animation: faqIn .28s var(--ease-quart); }
@keyframes faqIn { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: none; } }

/* Bands */
.band { background: var(--surface); border-block: 1px solid var(--line); }
.band-2 { background: var(--bg-2); }
.local-prose { max-width: 66ch; }
.local-prose h3 { font-size: 1.18rem; margin: 32px 0 8px; }
.local-prose h3:first-child { margin-top: 0; }
.local-prose p { color: var(--muted); line-height: 1.72; }
.band-dark { background: var(--ink-dark); color: #fff; position: relative; overflow: hidden; }
.band-dark h2, .band-dark h3 { color: #fff; }
.band-dark .lead, .band-dark p { color: rgba(255,255,255,.82); }
.band-dark .label { color: var(--mint); }
.band-dark .checklist svg { color: var(--mint); }
.band-dark .checklist li { color: rgba(255,255,255,.9); }

/* CTA */
.cta-band { text-align: center; }
.cta-band h2 { margin-bottom: 14px; }
.cta-band .lead { margin: 0 auto 28px; max-width: 50ch; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Footer */
.site-footer { background: var(--ink-dark); color: rgba(255,255,255,.72); padding: 70px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 46px; }
.site-footer .brand { color: #fff; margin-bottom: 14px; }
.site-footer h4 { color: #fff; font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 16px; font-weight: 600; }
.site-footer ul { list-style: none; display: grid; gap: 10px; }
.site-footer a { color: rgba(255,255,255,.72); font-size: .94rem; }
.site-footer a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.14); padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: .84rem; }
.footer-disclaimer { font-size: .77rem; color: rgba(255,255,255,.5); margin-top: 14px; max-width: 60ch; }

/* B5 Image-led body sections */
.immersive { position: relative; min-height: 540px; display: flex; align-items: center; overflow: hidden; color: #fff; padding: 90px 0; }
.immersive > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.immersive::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, oklch(0.16 0.04 195 / .9) 0%, oklch(0.16 0.04 195 / .55) 48%, oklch(0.16 0.04 195 / .18) 100%); }
.immersive .wrap { position: relative; z-index: 2; }
.immersive h2 { color: #fff; margin: 14px 0 18px; max-width: 16ch; }
.immersive .lead { color: rgba(255,255,255,.88); max-width: 42ch; }
.immersive .label { color: var(--mint); }
.immersive .checklist li { color: rgba(255,255,255,.9); }
.immersive .checklist svg { color: var(--mint); }

.feat-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-top: 34px; }
.feat-strip .ic { width: 46px; height: 46px; border-radius: 12px; background: oklch(0.76 0.13 178 / .14); color: var(--teal); display: grid; place-items: center; margin-bottom: 14px; }
.feat-strip h3 { font-size: 1.08rem; font-weight: 600; margin-bottom: 6px; }
.feat-strip p { color: var(--muted); font-size: .93rem; }

.svc-panels { display: grid; grid-template-columns: 1fr 1fr; }
.svc-panels .panel { position: relative; min-height: 470px; display: flex; align-items: flex-end; overflow: hidden; color: #fff; }
.svc-panels .panel img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.svc-panels .panel:hover img { transform: scale(1.04); }
.svc-panels .panel::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, oklch(0.14 0.04 195 / .92), oklch(0.14 0.04 195 / .1) 60%); }
.svc-panels .panel .c { position: relative; z-index: 2; padding: 38px; }
.svc-panels .panel h3 { font-size: 1.6rem; color: #fff; margin-bottom: 8px; }
.svc-panels .panel p { color: rgba(255,255,255,.86); max-width: 34ch; margin-bottom: 14px; }
.svc-panels .panel .chips { margin-top: 0; }
.svc-panels .panel .chip { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.22); color: #fff; }
.svc-panels .panel .lk { color: #fff; }
.svc-panels .panel .lk:hover { color: var(--mint); }
@media (max-width: 820px) { .feat-strip { grid-template-columns: 1fr 1fr; } .svc-panels { grid-template-columns: 1fr; } }
@media (max-width: 480px) { .feat-strip { grid-template-columns: 1fr; } }

/* Motion — one hero entrance + interaction feedback (per impeccable animate) */
@keyframes riseIn { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
.hero-copy > * { animation: riseIn .8s var(--ease-quint) backwards; }
.hero-copy > .hero-pill { animation-delay: .04s; }
.hero-copy > h1 { animation-delay: .12s; }
.hero-copy > .lead { animation-delay: .22s; }
.hero-copy > .hero-cta { animation-delay: .32s; }
.hero-copy > .hero-trust { animation-delay: .42s; }
.cc-card { animation: riseIn .9s var(--ease-quint) .34s backwards; }

/* nav link: underline grows from left on hover */
.nav-links a { position: relative; }
.nav-links a::after { content: ""; position: absolute; left: 0; right: 0; bottom: -5px; height: 2px; background: currentColor; border-radius: 2px; transform: scaleX(0); transform-origin: left; transition: transform .28s var(--ease-quart); }
.nav-links a:hover::after { transform: scaleX(1); }
/* current-page indicator */
.nav-links a[aria-current="page"] { color: #fff; }
.nav-links a[aria-current="page"]::after { transform: scaleX(1); background: var(--mint); }
.site-header.scrolled .nav-links a[aria-current="page"] { color: var(--teal); }
@media (max-width: 960px) { .nav-links.open a[aria-current="page"] { color: var(--teal); } }

/* link arrow nudges on hover (gap widens) */
.link { transition: color .15s ease, gap .25s var(--ease-quart); }
.link:hover { gap: 12px; }

/* Reveal — progressive enhancement: visible by default, animates only with JS */
.reveal { transition: opacity .7s var(--ease), transform .7s var(--ease); }
html.js .reveal { opacity: 0; transform: translateY(20px); }
html.js .reveal.in { opacity: 1; transform: none; }
.feat-strip .reveal:nth-child(2){transition-delay:.06s}
.feat-strip .reveal:nth-child(3){transition-delay:.12s}
.feat-strip .reveal:nth-child(4){transition-delay:.18s}
.svc-panels .reveal:nth-child(2){transition-delay:.1s}
.city-grid .reveal:nth-child(2){transition-delay:.05s}.city-grid .reveal:nth-child(3){transition-delay:.1s}
.city-grid .reveal:nth-child(4){transition-delay:.06s}.city-grid .reveal:nth-child(5){transition-delay:.11s}.city-grid .reveal:nth-child(6){transition-delay:.16s}

a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, summary:focus-visible { outline: 2px solid var(--mint-deep); outline-offset: 2px; border-radius: 6px; }
.cc-tile:active, .cc-pill:active { transform: scale(.99); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .hero-pill .dot { animation: none; }
  .hero > img { animation: none; }
  .hero-copy > *, .cc-card, .faq details[open] p { animation: none; }
  .nav-links a::after { transition: none; }
  .btn:active, .cc-tile:active, .cc-pill:active { transform: none; }
}

/* Responsive */
@media (max-width: 960px) {
  .hero { min-height: auto; padding: 116px 0 60px; display: block; }
  .hero::after { background: linear-gradient(180deg, oklch(0.15 0.04 195 / .62) 0%, oklch(0.15 0.04 195 / .82) 60%, oklch(0.15 0.04 195 / .9) 100%); }
  .hero-grid { width: 100%; min-width: 0; }
  .hero-grid, .split, .split.img-narrow, .split.text-narrow { grid-template-columns: minmax(0, 1fr); gap: 38px; }
  .hero-copy, .hero-copy .lead { max-width: 100%; }
  .hero-cta { flex-direction: column; align-items: stretch; width: 100%; gap: 12px; }
  .hero-cta .btn { flex: none; width: 100%; justify-content: center; }
  .features.cols-2 { grid-template-columns: 1fr; }
  .city-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links, .nav-phone { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 76px; left: 0; right: 0; background: rgba(255,255,255,.96); backdrop-filter: blur(16px); padding: 18px 28px; gap: 16px; box-shadow: var(--shadow-md); }
  .nav-links.open a { color: var(--ink); }
}
@media (max-width: 560px) {
  .cc-grid { grid-template-columns: 1fr 1fr; }
  .city-grid, .form-row.two, .footer-grid { grid-template-columns: 1fr; }
  body { font-size: 16px; }
  .feature { grid-template-columns: 1fr; }
}

/* sticky mobile call/price bar (injected by main.js) */
.mobile-cta { display: none; }
@media (max-width: 640px) {
  .mobile-cta {
    display: flex; gap: 10px; align-items: center;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    background: rgba(255,255,255,.92); backdrop-filter: blur(14px);
    border-top: 1px solid var(--line); box-shadow: 0 -4px 20px rgba(0,0,0,.08);
  }
  .mobile-cta a { font-weight: 600; border-radius: 12px; padding: 13px 16px; display: inline-flex; align-items: center; justify-content: center; gap: 7px; }
  .mobile-cta-call { border: 1px solid var(--line); color: var(--ink); background: #fff; flex: none; }
  .mobile-cta-price { flex: 1; background: var(--teal); color: #fff; }
  body { padding-bottom: 74px; }
}
