/* ---------- fonts ---------- */
@font-face {
  font-family: 'Fraunces';
  src: url(assets/fonts/fraunces-var.woff2) format('woff2-variations');
  font-weight: 300 900;
  font-display: swap;
}
@font-face {
  font-family: 'Public Sans';
  src: url(assets/fonts/publicsans-var.woff2) format('woff2-variations');
  font-weight: 300 800;
  font-display: swap;
}

/* ---------- tokens ---------- */
:root {
  --paper: #FFFFFF;
  --paper-2: #F7F7F2;
  --paper-3: #EFEFE7;
  --ink: #14150F;
  --ink-2: #33362B;
  --muted: #63675B;   /* darkened from #6C7064: that was 4.43:1 on --olive-wash, just under AA */
  --olive: #6B7A3D;
  --olive-deep: #4C5729;
  --olive-light: #AEC06E;
  --olive-wash: #EEF1E3;
  --line: #DEDFD5;
  --line-soft: #ECEDE5;
  --display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --sans: 'Public Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --wrap: 1200px;
  --gut: clamp(20px, 4vw, 40px);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.62;
  font-weight: 380;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 0;
}

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 0 0 .5em;
  font-variation-settings: 'opsz' 96, 'SOFT' 0, 'WONK' 0;
}
h1 { font-size: clamp(2.5rem, 6.2vw, 4.4rem); }
h2 { font-size: clamp(1.85rem, 3.7vw, 2.85rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 650; }
h1 em { font-style: italic; font-variation-settings: 'opsz' 144, 'SOFT' 40, 'WONK' 1; color: var(--olive); }
p { margin: 0 0 1.05em; }
a { color: inherit; }
img { max-width: 100%; }
ul, ol { margin: 0 0 1.1em; padding-left: 1.15em; }

.wrap { width: min(var(--wrap), 100%); margin-inline: auto; padding-inline: var(--gut); }
.wrap.narrow { width: min(820px, 100%); }
.skip { position: absolute; left: -9999px; }
.skip:focus { left: 12px; top: 12px; z-index: 200; background: var(--ink); color: #fff; padding: 10px 16px; }
:focus-visible { outline: 2px solid var(--olive); outline-offset: 3px; }

/* ---------- label ---------- */
.label {
  display: flex; align-items: center; gap: 12px;
  font-size: .74rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase;
  color: var(--olive-deep); margin-bottom: 18px;
}
.label::before { content: ''; width: 34px; height: 2px; background: var(--olive); flex: 0 0 auto; }
.label.on-ink { color: var(--olive-light); }
.label.on-ink::before { background: var(--olive-light); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 15px 26px; font-family: var(--sans); font-size: .93rem; font-weight: 700;
  letter-spacing: .01em; text-decoration: none; border: 1.5px solid transparent;
  border-radius: 2px; transition: background .18s, color .18s, border-color .18s;
}
.btn.small { padding: 11px 18px; font-size: .85rem; }
.btn.solid { background: var(--olive); color: #fff; border-color: var(--olive); }
.btn.solid:hover { background: var(--olive-deep); border-color: var(--olive-deep); }
.btn.line { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn.line:hover { background: var(--ink); color: #fff; }
.btn.line-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.btn.line-light:hover { background: #fff; color: var(--ink); border-color: #fff; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }

/* ---------- header ---------- */
.site-head { position: sticky; top: 0; z-index: 60; background: var(--paper); border-bottom: 1px solid var(--line); }
.head-inner { width: min(var(--wrap), 100%); margin-inline: auto; padding: 14px var(--gut); display: flex; align-items: center; gap: 26px; }
.brand { flex: 0 0 auto; line-height: 0; }
.brand img { width: auto; height: 38px; }
.head-nav { display: flex; gap: 24px; margin-left: auto; }
.head-nav a { text-decoration: none; font-size: .93rem; font-weight: 550; color: var(--ink-2); padding: 4px 0; border-bottom: 2px solid transparent; }
.head-nav a:hover { color: var(--ink); border-bottom-color: var(--olive); }
.head-actions { display: flex; align-items: center; gap: 16px; flex: 0 0 auto; }
.head-phone { text-decoration: none; font-weight: 700; font-size: .95rem; white-space: nowrap; }
.head-phone:hover { color: var(--olive-deep); }
.head-toggle { display: none; background: none; border: 0; padding: 10px; cursor: pointer; }
.head-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; }
.mobile-menu { display: none; }

/* ---------- the snap frame (the logo motif) ---------- */
.snap { position: relative; margin: 0; }
.snap::before {
  content: ''; position: absolute; z-index: 0;
  top: -16px; right: -16px; bottom: 16px; left: 16px;
  border: 2px solid var(--olive);
}
.snap img {
  position: relative; z-index: 1; display: block;
  width: 100%; height: auto; aspect-ratio: var(--ratio, 4 / 3);
  object-fit: cover; background: var(--paper-3);
}
.snap figcaption { position: relative; z-index: 1; margin-top: 14px; font-size: .84rem; color: var(--muted); }

/* ---------- hero ---------- */
.hero { border-bottom: 1px solid var(--line); }
.hero .wrap { display: grid; grid-template-columns: 1.02fr .98fr; gap: clamp(32px, 5vw, 72px); align-items: center; padding-block: clamp(48px, 7vw, 92px); }
.hero h1 { margin-bottom: .34em; }
.hero .lead { font-size: clamp(1.06rem, 1.5vw, 1.22rem); color: var(--ink-2); max-width: 40ch; }
.hero-note { margin-top: 20px; font-size: .86rem; color: var(--muted); }
.hero-art { position: relative; padding: 18px 26px 96px 0; }
/* The second frame hangs off the bottom-right CORNER. At 46% wide and
   flush to the bottom it covered the middle of the main render and its
   own frame disappeared behind it. */
.hero-snap-b { position: absolute; right: 0; bottom: 0; width: 37%; }
.hero-snap-b::before { top: 16px; right: -16px; bottom: -16px; left: 16px; border-color: var(--ink); }

/* ---------- strip ---------- */
.strip { background: var(--ink); color: #fff; }
.strip .wrap { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding-block: 28px; }
.strip-item b { display: block; font-family: var(--display); font-size: 1.5rem; font-weight: 600; }
.strip-item span { display: block; font-size: .82rem; color: rgba(255,255,255,.68); margin-top: 3px; }

/* ---------- bands ---------- */
.band { padding-block: clamp(56px, 8vw, 104px); }
.band.alt { background: var(--paper-2); }
.band.ink-band { background: var(--ink); color: #fff; }
.band.ink-band h2, .band.ink-band b { color: #fff; }
.band.ink-band p { color: rgba(255,255,255,.76); }
.band-head { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(24px, 4vw, 56px); align-items: end; margin-bottom: 44px; }
.band-head h2 { margin-bottom: 0; }
.band-head p { margin: 0; color: var(--muted); }
.band.ink-band .band-head p { color: rgba(255,255,255,.7); }

/* ---------- premise ---------- */
.premise .wrap { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(32px, 6vw, 76px); align-items: center; }
.premise-quote { border-left: 3px solid var(--olive); padding-left: 20px; font-family: var(--display); font-size: 1.12rem; line-height: 1.45; color: var(--ink-2); margin-top: 28px; }
.premise-quote b { display: block; font-family: var(--sans); font-size: .82rem; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); margin-top: 12px; font-weight: 700; }

/* ---------- package index (replaces the 3-up card grid) ---------- */
.pkg-index { border-top: 1px solid var(--line); }
.pkg-row {
  display: grid; grid-template-columns: 58px 1fr 190px; gap: 20px; align-items: baseline;
  padding: 26px 0; border-bottom: 1px solid var(--line); text-decoration: none;
  transition: background .16s, padding-left .16s;
}
.pkg-row:hover { background: var(--olive-wash); padding-left: 14px; }
.pkg-n { font-family: var(--display); font-size: 1rem; color: var(--olive); font-weight: 600; font-variant-numeric: tabular-nums; }
.pkg-body b { display: block; font-family: var(--display); font-size: clamp(1.3rem, 2.2vw, 1.72rem); font-weight: 600; margin-bottom: 6px; }
.pkg-body > span { display: block; color: var(--muted); font-size: .95rem; max-width: 62ch; }
.pkg-badge { display: inline-block; vertical-align: middle; font-family: var(--sans); font-style: normal; font-size: .66rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; background: var(--olive); color: #fff; padding: 4px 9px; margin-left: 10px; position: relative; top: -3px; }
.pkg-price { text-align: right; font-weight: 800; font-size: 1.06rem; white-space: nowrap; }
.pkg-price i { display: block; font-style: normal; font-weight: 400; font-size: .8rem; color: var(--muted); margin-top: 3px; }

.addon-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 34px; }
.addon { display: block; padding: 24px; border: 1px solid var(--line); text-decoration: none; background: var(--paper); transition: border-color .16s; }
.addon:hover { border-color: var(--olive); }
.addon b { display: block; font-family: var(--display); font-size: 1.2rem; font-weight: 600; margin-bottom: 6px; }
.addon span { display: block; color: var(--muted); font-size: .9rem; }
.addon i { display: inline-block; margin-top: 12px; font-style: normal; font-weight: 800; color: var(--olive-deep); }

/* ---------- steps ---------- */
.steps { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.ink-band .steps { border-top-color: rgba(255,255,255,.18); }
.steps li { display: grid; grid-template-columns: 78px 1fr; gap: 20px; padding: 24px 0; border-bottom: 1px solid var(--line); }
.ink-band .steps li { border-bottom-color: rgba(255,255,255,.14); }
.step-n { font-family: var(--display); font-size: 1.5rem; font-weight: 600; color: var(--olive); font-variant-numeric: tabular-nums; }
.ink-band .step-n { color: var(--olive-light); }
.steps b { display: block; font-family: var(--display); font-size: 1.3rem; font-weight: 600; margin-bottom: 5px; }
.steps p { margin: 0; color: var(--muted); max-width: 72ch; }
.ink-band .steps p { color: rgba(255,255,255,.72); }
.steps.big li { padding: 32px 0; }
.steps.big b { font-size: clamp(1.35rem, 2.4vw, 1.75rem); }

/* ---------- tiles ---------- */
.tile-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.tile { margin: 0; }
.tile img { display: block; width: 100%; height: auto; aspect-ratio: var(--ratio, 4 / 3); object-fit: cover; background: var(--paper-3); border: 1px solid var(--line); }
/* height:auto is load-bearing — the width/height attrs on these imgs would
   otherwise win as a presentational hint and defeat aspect-ratio entirely. */
.tile figcaption { margin-top: 11px; }
.tile figcaption b { display: block; font-size: .95rem; font-weight: 650; }
.tile figcaption span { display: block; font-size: .8rem; color: var(--muted); margin-top: 2px; }
.tile-open { display: block; width: 100%; padding: 0; border: 0; background: none; cursor: zoom-in; }

/* ---------- services ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.svc-grid.wide { grid-template-columns: repeat(4, 1fr); }
.svc { display: block; text-decoration: none; border: 1px solid var(--line); background: var(--paper); transition: border-color .16s; }
.svc:hover { border-color: var(--olive); }
.svc img { display: block; width: 100%; height: auto; aspect-ratio: 3 / 2; object-fit: cover; background: var(--paper-3); }
.svc div { padding: 20px; }
.svc b { display: block; font-family: var(--display); font-size: 1.15rem; font-weight: 600; margin-bottom: 6px; }
.svc span { display: block; color: var(--muted); font-size: .88rem; }
.svc i { display: block; margin-top: 12px; font-style: normal; font-weight: 800; font-size: .84rem; color: var(--olive-deep); }

/* ---------- quotes ---------- */
.quotes { background: var(--olive-wash); }
.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.quote { margin: 0; background: var(--paper); border: 1px solid var(--line); padding: 28px; }
.quote blockquote { margin: 0 0 18px; font-family: var(--display); font-size: 1.02rem; line-height: 1.5; }
.quote figcaption b { display: block; font-size: .92rem; }
.quote figcaption span { display: block; font-size: .82rem; color: var(--muted); }
.quote-note { margin-top: 26px; font-size: .84rem; color: var(--muted); max-width: 76ch; }

/* ---------- promo ---------- */
.promo .wrap { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 6vw, 72px); align-items: center; }

/* ---------- area pills ---------- */
.area-pills { display: flex; flex-wrap: wrap; gap: 9px; }
.area-pills a { text-decoration: none; font-size: .88rem; font-weight: 550; padding: 9px 15px; border: 1px solid var(--line); background: var(--paper); }
.area-pills a:hover { border-color: var(--olive); background: var(--olive-wash); }
.area-pills .btn { margin-left: 6px; }

/* ---------- county accordions ---------- */
.county-list { display: grid; gap: 10px; }
.county { border: 1px solid var(--line); background: var(--paper); }
.county > summary { cursor: pointer; list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 18px 22px; font-family: var(--display); font-size: 1.22rem; font-weight: 600; }
.county > summary::-webkit-details-marker { display: none; }
.county > summary:hover { background: var(--olive-wash); }
.county[open] > summary { border-bottom: 1px solid var(--line); background: var(--olive-wash); }
.county-count { flex: 0 0 auto; font-family: var(--sans); font-size: .7rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; color: var(--olive-deep); }
.county-body { padding: 20px 22px 24px; }
.county-note { font-size: .87rem; color: var(--muted); margin-bottom: 14px; }

/* ---------- faq ---------- */
.faq-band { background: var(--paper-2); }
.faq-list { border-top: 1px solid var(--line); }
.faq { border-bottom: 1px solid var(--line); }
.faq > summary { cursor: pointer; list-style: none; padding: 20px 40px 20px 0; font-family: var(--display); font-size: 1.14rem; font-weight: 600; position: relative; }
.faq > summary::-webkit-details-marker { display: none; }
.faq > summary::after { content: '+'; position: absolute; right: 6px; top: 18px; font-size: 1.5rem; color: var(--olive); font-family: var(--sans); font-weight: 300; }
.faq[open] > summary::after { content: '\2013'; }
.faq > div { padding: 0 40px 22px 0; color: var(--muted); }

/* ---------- page heads ---------- */
.page-head { border-bottom: 1px solid var(--line); }
.page-head .wrap { display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(32px, 5vw, 68px); align-items: center; padding-block: clamp(44px, 6vw, 76px); }
.page-head:not(.with-photo) .wrap { grid-template-columns: 1fr; }
.page-head.slim .wrap { padding-block: clamp(36px, 5vw, 60px); }
.page-head .lead { font-size: clamp(1.02rem, 1.4vw, 1.16rem); color: var(--ink-2); max-width: 62ch; }
.page-head-photo { margin-right: 16px; }

/* ---------- two column + prose ---------- */
.two-col { display: grid; grid-template-columns: 1.45fr .55fr; gap: clamp(28px, 5vw, 64px); align-items: start; }
.prose h2 { margin-top: 0; }
.prose h3 { margin-top: 1.9em; }
.prose p { color: var(--ink-2); }
.prose .note, .note { font-size: .87rem; color: var(--muted); }
.inline { color: var(--olive-deep); }
.ticks { list-style: none; padding: 0; }
.ticks li { position: relative; padding-left: 28px; margin-bottom: 10px; color: var(--ink-2); }
.ticks li::before { content: ''; position: absolute; left: 0; top: .55em; width: 13px; height: 2px; background: var(--olive); }
.price-list { list-style: none; padding: 0; border-top: 1px solid var(--line); }
.price-list li { display: flex; justify-content: space-between; gap: 20px; padding: 13px 0; border-bottom: 1px solid var(--line); }

.side-card { border: 1px solid var(--line); background: var(--paper-2); padding: 28px; position: sticky; top: 92px; }
.side-price { display: block; font-family: var(--display); font-size: 2.1rem; font-weight: 600; line-height: 1; }
.side-range { display: block; font-size: .85rem; color: var(--muted); margin-top: 6px; }
.side-actions { display: grid; gap: 10px; margin: 22px 0 24px; }
.side-facts { margin: 0; padding-top: 20px; border-top: 1px solid var(--line); font-size: .87rem; }
.side-facts dt { font-weight: 800; color: var(--muted); font-size: .74rem; letter-spacing: .08em; text-transform: uppercase; }
.side-facts dd { margin: 3px 0 14px; }

/* ---------- comparison table ---------- */
.table-scroll { overflow-x: auto; }
.cmp { width: 100%; border-collapse: collapse; min-width: 720px; }
.cmp th, .cmp td { text-align: left; padding: 15px 16px; border-bottom: 1px solid var(--line); font-size: .92rem; }
.cmp thead th { font-size: .72rem; letter-spacing: .09em; text-transform: uppercase; color: var(--muted); border-bottom: 2px solid var(--ink); }
.cmp tbody th { font-weight: 700; }
.cmp tbody th a { color: var(--olive-deep); }

/* ---------- gallery ---------- */
.filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 30px; }
.filter { font-family: var(--sans); font-size: .84rem; font-weight: 650; padding: 9px 16px; border: 1px solid var(--line); background: var(--paper); cursor: pointer; border-radius: 2px; }
.filter:hover { border-color: var(--olive); }
.filter.on { background: var(--ink); color: #fff; border-color: var(--ink); }
.gallery-grid .tile.hide { display: none; }

.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(15,16,11,.94); display: grid; grid-template-columns: 64px 1fr 64px; align-items: center; }
.lightbox[hidden] { display: none; }
.lightbox img { grid-column: 2; justify-self: center; max-width: min(1100px, 92vw); max-height: 82vh; object-fit: contain; }
.lightbox p { grid-column: 2; position: absolute; bottom: 22px; left: 0; right: 0; text-align: center; color: rgba(255,255,255,.8); font-size: .86rem; margin: 0; }
.lightbox button { background: none; border: 0; color: #fff; font-size: 2.4rem; cursor: pointer; line-height: 1; }
.lb-close { position: absolute; top: 14px; right: 20px; font-size: 2.6rem; }

/* ---------- installed ---------- */
.built-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 4vw, 44px); }
.built > div { margin-top: 26px; }
.built-date { display: block; font-size: .74rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--olive-deep); margin-bottom: 8px; }
.built b { display: block; font-family: var(--display); font-size: 1.3rem; font-weight: 600; margin-bottom: 8px; }
.built p { color: var(--muted); font-size: .93rem; margin: 0; }

/* ---------- contact ---------- */
.contact-facts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); margin-top: 30px; }
.cfact { display: block; background: var(--paper); padding: 18px 20px; text-decoration: none; }
.cfact b { display: block; font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.cfact span { display: block; font-weight: 600; }
a.cfact:hover { background: var(--olive-wash); }
.form-placeholder { border: 2px solid var(--ink); padding: 30px; background: var(--paper-2); }
.form-placeholder b { display: block; font-family: var(--display); font-size: 1.5rem; font-weight: 600; margin-bottom: 10px; }
.form-note { font-size: .88rem; color: var(--muted); }

/* ---------- closer ---------- */
.closer { background: var(--ink); color: #fff; }
.closer .wrap { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(28px, 5vw, 60px); align-items: center; padding-block: clamp(50px, 7vw, 84px); }
.closer h2 { color: #fff; margin-bottom: .35em; }
.closer p { color: rgba(255,255,255,.74); margin: 0; max-width: 56ch; }
.closer-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.closer-phone { font-family: var(--display); font-size: 1.3rem; font-weight: 600; text-decoration: none; color: var(--olive-light); }

/* ---------- footer ---------- */
.site-foot { background: #0D0E09; color: rgba(255,255,255,.72); font-size: .9rem; }
.foot-top { width: min(var(--wrap), 100%); margin-inline: auto; padding: clamp(44px, 6vw, 68px) var(--gut) 40px; display: grid; grid-template-columns: 1.15fr 1.35fr; gap: clamp(28px, 5vw, 64px); }
.foot-logo img { height: 34px; width: auto; }
.foot-brand p { margin: 20px 0 0; max-width: 46ch; }
.foot-contact { display: flex; flex-wrap: wrap; gap: 10px; }
.foot-contact a { color: #fff; font-weight: 650; text-decoration: none; }
.foot-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.foot-col { display: flex; flex-direction: column; gap: 9px; }
.foot-col b { color: #fff; font-family: var(--display); font-size: 1.06rem; font-weight: 600; margin-bottom: 4px; }
.foot-col a { text-decoration: none; }
.foot-col a:hover, .foot-areas a:hover { color: var(--olive-light); }
.foot-areas { width: min(var(--wrap), 100%); margin-inline: auto; padding: 26px var(--gut); border-top: 1px solid rgba(255,255,255,.12); }
.foot-areas b { display: block; color: #fff; font-size: .82rem; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 12px; }
.foot-areas p { display: flex; flex-wrap: wrap; gap: 8px 18px; margin: 0; font-size: .87rem; }
.foot-areas a { text-decoration: none; }
.foot-legal { width: min(var(--wrap), 100%); margin-inline: auto; padding: 20px var(--gut) 26px; border-top: 1px solid rgba(255,255,255,.12); display: flex; flex-wrap: wrap; gap: 8px 22px; font-size: .82rem; }
.foot-legal a { text-decoration: none; }

/* ---------- mobile call bar ---------- */
.callbar { display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; background: var(--paper); border-top: 1px solid var(--line); padding: 10px 12px calc(10px + env(safe-area-inset-bottom)); gap: 10px; }
.callbar .btn { flex: 1; padding: 14px 10px; }

/* ---------- reveal: images wipe, text NEVER hides ---------- */
html.js .snap img, html.js .tile img { clip-path: inset(0 100% 0 0); transition: clip-path .72s cubic-bezier(.22,.61,.36,1); }
html.js .snap.in img, html.js .tile.in img { clip-path: inset(0 0 0 0); }
@media (prefers-reduced-motion: reduce) {
  html.js .snap img, html.js .tile img { clip-path: none !important; transition: none; }
}

/* ---------- responsive ---------- */
@media (max-width: 1080px) {
  .tile-grid, .svc-grid, .svc-grid.wide { grid-template-columns: repeat(2, 1fr); }
  .quote-grid, .built-grid { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .side-card { position: static; }
}
@media (max-width: 980px) {
  .head-nav, .head-actions { display: none; }
  .head-toggle { display: block; margin-left: auto; }
  .mobile-menu { display: none; flex-direction: column; gap: 2px; padding: 10px var(--gut) 22px; border-bottom: 1px solid var(--line); background: var(--paper); }
  .mobile-menu.open { display: flex; }
  .mobile-menu a { text-decoration: none; padding: 13px 0; border-bottom: 1px solid var(--line-soft); font-weight: 600; }
  .mobile-menu a.btn { margin-top: 14px; border-bottom: 0; justify-content: center; }
  .callbar { display: flex; }
  body { padding-bottom: 74px; }
  .hero .wrap, .page-head .wrap, .premise .wrap, .promo .wrap, .closer .wrap, .band-head, .foot-top { grid-template-columns: 1fr; }
  .hero-art { padding: 18px 24px 80px 0; max-width: 560px; }
  .band-head { align-items: start; gap: 16px; }
  .strip .wrap { grid-template-columns: repeat(2, 1fr); }
  .foot-cols { grid-template-columns: repeat(2, 1fr); }
  .closer-actions { justify-content: flex-start; }
}
@media (max-width: 700px) {
  body { font-size: 16px; }
  .pkg-row { grid-template-columns: 40px 1fr; row-gap: 8px; }
  .pkg-price { grid-column: 2; text-align: left; }
  .addon-row, .contact-facts { grid-template-columns: 1fr; }
  .tile-grid, .svc-grid, .svc-grid.wide { grid-template-columns: 1fr; }
  .steps li { grid-template-columns: 46px 1fr; gap: 12px; }
  .steps.big li { padding: 24px 0; }
  .hero-snap-b { width: 52%; }
  .lightbox { grid-template-columns: 40px 1fr 40px; }
  .foot-cols { grid-template-columns: 1fr; }
  .btn { padding: 14px 20px; }
}\n