/* ============================================================
   Jenga Joiners — core stylesheet
   Theme: ink black + graphite grey, single orange accent (#ee5408)
   Motif: stacked / interlocking timber blocks (the "Jenga" idea)
   Type:  Space Grotesk (display) · Instrument Sans (body) · Space Mono (labels)
   ============================================================ */

:root {
  --ink:        #0a0a0b;
  --ink-2:      #0f1012;
  --panel:      #141519;
  --panel-2:    #1b1c22;
  --line:       #2a2b31;
  --line-soft:  #202127;

  --fg:         #f5f5f6;
  --fg-muted:   #a4a4ad;
  --fg-dim:     #74747e;

  --brand:      #ee5408;
  --brand-bright:#ff6a24;
  --brand-dim:  #b7420a;
  --brand-wash: rgba(238, 84, 8, 0.10);

  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-body:    'Instrument Sans', system-ui, sans-serif;
  --font-mono:    'Space Mono', ui-monospace, monospace;

  --wrap: 1200px;
  --gut: clamp(20px, 5vw, 64px);
  --radius: 4px;

  --ease: cubic-bezier(0.4, 0, 0.15, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

::selection { background: var(--brand); color: #fff; }

:focus-visible {
  outline: 2px solid var(--brand-bright);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------- Layout primitives ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gut); }

.section { padding-block: clamp(64px, 10vw, 130px); }
.section--tight { padding-block: clamp(48px, 7vw, 88px); }
.section--panel { background: var(--panel); border-block: 1px solid var(--line-soft); }
.section--ink2 { background: var(--ink-2); }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--brand);
  display: inline-block;
}

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.04; letter-spacing: -0.02em; margin: 0; }

.h-xl { font-size: clamp(2.6rem, 6.4vw, 5.2rem); font-weight: 700; letter-spacing: -0.035em; }
.h-lg { font-size: clamp(2rem, 4.4vw, 3.4rem); }
.h-md { font-size: clamp(1.5rem, 2.6vw, 2.1rem); }

p { margin: 0 0 1.05em; color: var(--fg-muted); }
.lead { font-size: clamp(1.08rem, 1.6vw, 1.3rem); color: var(--fg); line-height: 1.55; }
.measure { max-width: 60ch; }
.measure-sm { max-width: 46ch; }

strong { color: var(--fg); font-weight: 600; }

/* ---------- Buttons ---------- */
.btn {
  --b: var(--brand);
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono);
  font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 15px 26px;
  border-radius: var(--radius);
  border: 1px solid var(--b);
  background: var(--b);
  color: #fff;
  cursor: pointer;
  transition: transform .18s var(--ease), background .18s var(--ease), border-color .18s var(--ease);
  white-space: nowrap;
}
.btn:hover { background: var(--brand-bright); border-color: var(--brand-bright); transform: translateY(-2px); }
.btn .arw { transition: transform .2s var(--ease); }
.btn:hover .arw { transform: translateX(4px); }

.btn--ghost { background: transparent; color: var(--fg); border-color: var(--line); }
.btn--ghost:hover { background: var(--panel-2); border-color: var(--fg-dim); transform: translateY(-2px); }

.btn--lg { padding: 18px 32px; font-size: 14px; }

.link-inline {
  font-family: var(--font-mono); font-size: 13px; letter-spacing: .04em; text-transform: uppercase;
  color: var(--fg); border-bottom: 1px solid var(--brand); padding-bottom: 3px;
  display: inline-flex; gap: 8px; align-items: center; transition: gap .2s var(--ease), color .2s var(--ease);
}
.link-inline:hover { gap: 12px; color: var(--brand-bright); }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10,10,11,0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 74px; gap: 24px;
}
.nav__logo img { height: 42px; width: auto; }
.nav__menu { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav__link {
  font-family: var(--font-mono); font-size: 13px; letter-spacing: .04em; text-transform: uppercase;
  color: var(--fg-muted); padding: 10px 14px; border-radius: var(--radius);
  transition: color .16s var(--ease), background .16s var(--ease);
  display: inline-flex; align-items: center; gap: 7px;
}
.nav__link:hover, .nav__link[aria-current="page"] { color: var(--fg); }
.nav__link[aria-current="page"] { color: var(--brand); }

/* dropdown */
.nav__drop { position: relative; }
.nav__drop-panel {
  position: absolute; top: calc(100% + 10px); left: 0;
  background: var(--panel); border: 1px solid var(--line);
  border-radius: 8px; padding: 8px; min-width: 250px;
  display: grid; gap: 2px;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity .18s var(--ease), transform .18s var(--ease), visibility .18s;
  box-shadow: 0 24px 50px -20px rgba(0,0,0,.7);
}
.nav__drop:hover .nav__drop-panel,
.nav__drop:focus-within .nav__drop-panel { opacity: 1; visibility: visible; transform: translateY(0); }
.nav__drop-panel a {
  padding: 11px 13px; border-radius: var(--radius); color: var(--fg-muted);
  font-size: 15px; display: flex; align-items: center; gap: 11px; transition: background .14s, color .14s;
}
.nav__drop-panel a:hover { background: var(--panel-2); color: var(--fg); }
.nav__drop-panel a::before { content: ""; width: 6px; height: 6px; background: var(--brand); flex: 0 0 auto; }
.nav__caret { transition: transform .2s var(--ease); }
.nav__drop:hover .nav__caret, .nav__drop:focus-within .nav__caret { transform: rotate(180deg); }

.nav__right { display: flex; align-items: center; gap: 14px; }
.nav__phone { font-family: var(--font-mono); font-size: 13px; color: var(--fg-muted); letter-spacing: .02em; }
.nav__phone:hover { color: var(--brand); }

.nav__toggle { display: none; background: none; border: 1px solid var(--line); border-radius: var(--radius); width: 44px; height: 40px; cursor: pointer; color: var(--fg); }
.nav__toggle span, .nav__toggle span::before, .nav__toggle span::after {
  content: ""; display: block; width: 18px; height: 2px; background: currentColor; margin-inline: auto; position: relative; transition: transform .2s var(--ease); }
.nav__toggle span::before { position: absolute; top: -6px; }
.nav__toggle span::after { position: absolute; top: 6px; }

/* ============================================================
   Hero
   ============================================================ */
.hero { position: relative; overflow: hidden; padding-block: clamp(96px, 15vw, 200px); }
.hero__bg { position: absolute; inset: 0; z-index: 0; background: var(--ink); }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero__scrim { position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg, rgba(10,10,11,.94) 0%, rgba(10,10,11,.82) 38%, rgba(10,10,11,.45) 62%, rgba(10,10,11,.16) 82%, rgba(10,10,11,.04) 100%); }
.hero__bg-tag { position: absolute; right: clamp(16px, 4vw, 40px); bottom: clamp(16px, 4vw, 34px); z-index: 3;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .05em; text-transform: uppercase;
  color: var(--fg-dim); background: rgba(10,10,11,.62); border: 1px dashed var(--line);
  padding: 9px 14px; border-radius: 4px; max-width: min(74vw, 420px); }
.hero .wrap { position: relative; z-index: 2; }
.hero__content { max-width: 680px; }
.hero__kicker { font-family: var(--font-mono); font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--fg-dim); margin-bottom: 22px; }
.hero__kicker b { color: var(--brand); font-weight: 400; }
.hero h1 { margin-bottom: 24px; }
.hero h1 .accent { color: var(--brand); }
.hero__sub { font-size: clamp(1.05rem, 1.5vw, 1.25rem); color: var(--fg-muted); max-width: 52ch; margin-bottom: 34px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

/* Services grid — cards with photo placeholder */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.svc-grid > * { min-width: 0; }
.svc-card { display: flex; flex-direction: column; background: var(--panel); border: 1px solid var(--line); border-radius: 10px; overflow: hidden; transition: border-color .2s var(--ease), transform .2s var(--ease); }
.svc-card:hover { border-color: var(--brand); transform: translateY(-4px); }
.svc-card__media { position: relative; aspect-ratio: 4 / 3; border-bottom: 1px solid var(--line);
  background: repeating-linear-gradient(135deg, var(--panel-2) 0 20px, #202127 20px 40px);
  display: grid; place-content: center; text-align: center; color: var(--fg-dim); overflow: hidden; }
.svc-card__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.svc-card__media .imgph__ico { width: 26px; height: 26px; margin: 0 auto 8px; color: var(--line); }
.svc-card__media .t { font-family: var(--font-mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.svc-card__body { padding: 22px 24px 24px; display: flex; flex-direction: column; flex: 1; }
.svc-card h3 { font-size: 1.3rem; margin-bottom: 7px; }
.svc-card__tag { font-size: 14px; color: var(--fg-muted); margin: 0 0 18px; }
.svc-card__go { margin-top: auto; font-family: var(--font-mono); font-size: 12px; letter-spacing: .05em; text-transform: uppercase; color: var(--fg-dim); display: inline-flex; align-items: center; gap: 8px; transition: color .2s var(--ease), gap .2s var(--ease); }
.svc-card:hover .svc-card__go { color: var(--brand); gap: 12px; }
.svc-card__go svg { width: 16px; height: 16px; }

/* Map embed (areas covered) */
.map-embed { position: relative; width: 100%; aspect-ratio: 4 / 3; border: 1px solid var(--line); border-radius: 10px; overflow: hidden; background: var(--panel); }
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block;
  filter: invert(0.9) hue-rotate(180deg) saturate(0.72) brightness(0.95) contrast(0.95); }

/* ============================================================
   Section heading block
   ============================================================ */
.head-row { display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; flex-wrap: wrap; margin-bottom: clamp(36px, 5vw, 60px); }
.head-row .head-copy { max-width: 62ch; }

/* ============================================================
   Services — stacked block cards
   ============================================================ */
.svc-stack { display: grid; gap: 0; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; }
.svc-row {
  display: grid; grid-template-columns: 84px 1fr auto; align-items: center; gap: 28px;
  padding: 30px var(--gut); border-bottom: 1px solid var(--line);
  background: var(--panel); transition: background .2s var(--ease); position: relative;
}
.svc-row:last-child { border-bottom: 0; }
.svc-row::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--brand); transform: scaleY(0); transform-origin: top; transition: transform .25s var(--ease); }
.svc-row:hover { background: var(--panel-2); }
.svc-row:hover::before { transform: scaleY(1); }
.svc-row__no { font-family: var(--font-mono); font-size: 13px; color: var(--fg-dim); letter-spacing: .05em; }
.svc-row__body h3 { font-size: clamp(1.3rem, 2.2vw, 1.75rem); margin-bottom: 6px; }
.svc-row__body p { margin: 0; font-size: 15px; max-width: 62ch; }
.svc-row__go { color: var(--fg-dim); transition: color .2s var(--ease), transform .2s var(--ease); }
.svc-row:hover .svc-row__go { color: var(--brand); transform: translateX(5px); }

/* ============================================================
   Feature grid (why us / assurances)
   ============================================================ */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 8px; overflow: hidden; }
.cell { background: var(--panel); padding: 34px clamp(24px, 3vw, 38px); }
.cell__icon { width: 34px; height: 34px; color: var(--brand); margin-bottom: 20px; }
.cell h3 { font-size: 1.15rem; margin-bottom: 10px; }
.cell p { margin: 0; font-size: 15px; }

/* ============================================================
   Process — numbered (a genuine sequence)
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.step { border-top: 2px solid var(--line); padding-top: 20px; }
.step__no { font-family: var(--font-mono); font-size: 13px; color: var(--brand); letter-spacing: .1em; margin-bottom: 14px; }
.step h3 { font-size: 1.1rem; margin-bottom: 8px; }
.step p { margin: 0; font-size: 14.5px; }

/* ============================================================
   Image placeholder
   ============================================================ */
.imgph {
  position: relative; width: 100%; background: repeating-linear-gradient(135deg, var(--panel) 0 22px, var(--panel-2) 22px 44px);
  border: 1px dashed var(--line); border-radius: 8px; display: grid; place-content: center; text-align: center;
  color: var(--fg-dim); min-height: 220px;
}
.imgph[data-ratio="16-9"] { aspect-ratio: 16 / 9; }
.imgph[data-ratio="4-3"]  { aspect-ratio: 4 / 3; }
.imgph[data-ratio="1-1"]  { aspect-ratio: 1 / 1; }
.imgph__tag { font-family: var(--font-mono); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.imgph__note { font-size: 12px; margin-top: 6px; color: var(--fg-dim); font-family: var(--font-mono); }
.imgph__ico { width: 30px; height: 30px; margin: 0 auto 12px; color: var(--line); }
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

/* Real photo, cover-filled to a fixed ratio */
.photo { position: relative; width: 100%; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; background: var(--panel); }
.photo[data-ratio="16-9"] { aspect-ratio: 16 / 9; }
.photo[data-ratio="4-3"]  { aspect-ratio: 4 / 3; }
.photo[data-ratio="1-1"]  { aspect-ratio: 1 / 1; }
.photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }

/* ============================================================
   Split content (text + image)
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.split > * { min-width: 0; }
.split--reverse .split__media { order: -1; }
.rich h3 { margin: 30px 0 12px; font-size: 1.25rem; }
.rich ul { list-style: none; margin: 0 0 1em; padding: 0; }
.rich li { position: relative; padding-left: 26px; margin-bottom: 10px; color: var(--fg-muted); }
.rich li::before { content: ""; position: absolute; left: 0; top: 10px; width: 10px; height: 10px; background: var(--brand); }

/* ============================================================
   FAQ
   ============================================================ */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; list-style: none; padding: 22px 0; display: flex; justify-content: space-between; align-items: center; gap: 20px; font-family: var(--font-display); font-size: 1.12rem; color: var(--fg); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .plus { flex: 0 0 auto; width: 22px; height: 22px; position: relative; color: var(--brand); transition: transform .2s var(--ease); }
.faq summary .plus::before, .faq summary .plus::after { content: ""; position: absolute; background: currentColor; }
.faq summary .plus::before { top: 10px; left: 0; width: 22px; height: 2px; }
.faq summary .plus::after { left: 10px; top: 0; height: 22px; width: 2px; transition: opacity .2s var(--ease); }
.faq details[open] summary .plus::after { opacity: 0; }
.faq details[open] summary .plus { transform: rotate(90deg); }
.faq__body { padding: 0 0 22px; color: var(--fg-muted); max-width: 72ch; }
.faq__body p { margin: 0; }

/* ============================================================
   CTA band
   ============================================================ */
.cta-band { background: var(--brand); color: #fff; }
.cta-band .wrap { display: flex; justify-content: space-between; align-items: center; gap: 32px; flex-wrap: wrap; padding-block: clamp(48px, 6vw, 72px); }
.cta-band h2 { color: #fff; max-width: 20ch; }
.cta-band p { color: rgba(255,255,255,.86); margin: 10px 0 0; }
.cta-band .btn { background: var(--ink); border-color: var(--ink); }
.cta-band .btn:hover { background: #000; border-color: #000; transform: translateY(-2px); }

/* ============================================================
   Contact / form
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(36px, 5vw, 72px); align-items: start; }
.contact-info dl { margin: 0; display: grid; gap: 24px; }
.contact-info dt { font-family: var(--font-mono); font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--fg-dim); margin-bottom: 6px; }
.contact-info dd { margin: 0; font-size: 1.05rem; }
.contact-info dd a:hover { color: var(--brand); }
.socials { display: flex; gap: 12px; margin-top: 6px; }
.socials a { width: 42px; height: 42px; border: 1px solid var(--line); border-radius: var(--radius); display: grid; place-content: center; color: var(--fg-muted); transition: all .18s var(--ease); }
.socials a:hover { color: #fff; border-color: var(--brand); background: var(--brand); transform: translateY(-2px); }
.socials svg { width: 18px; height: 18px; }

.form { background: var(--panel); border: 1px solid var(--line); border-radius: 10px; padding: clamp(24px, 4vw, 40px); }
.field { margin-bottom: 20px; }
.field label { display: block; font-family: var(--font-mono); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--fg-muted); margin-bottom: 9px; }
.field label .req { color: var(--brand); }
.field input, .field select, .field textarea {
  width: 100%; background: var(--ink); border: 1px solid var(--line); border-radius: var(--radius);
  color: var(--fg); font-family: var(--font-body); font-size: 16px; padding: 14px 16px; transition: border-color .16s var(--ease), background .16s;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--brand); background: var(--ink-2); }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23ee5408' d='M6 8 0 0h12z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 42px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form__foot { display: flex; justify-content: space-between; align-items: center; gap: 18px; flex-wrap: wrap; margin-top: 6px; }
.form__note { font-family: var(--font-mono); font-size: 12px; color: var(--fg-dim); }
.hp { position: absolute; left: -9999px; }

/* ============================================================
   Coverage
   ============================================================ */
.towns { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.town { font-family: var(--font-mono); font-size: 13px; letter-spacing: .02em; color: var(--fg-muted); border: 1px solid var(--line); border-radius: 40px; padding: 8px 16px; background: var(--panel); }
.town--hub { border-color: var(--brand); color: var(--fg); }
.town--hub::before { content: "◆ "; color: var(--brand); }

/* ============================================================
   Page hero (interior)
   ============================================================ */
.phero { border-bottom: 1px solid var(--line-soft); background: var(--ink-2); padding-block: clamp(56px, 8vw, 96px); }
.crumb { font-family: var(--font-mono); font-size: 12px; letter-spacing: .06em; color: var(--fg-dim); margin-bottom: 18px; text-transform: uppercase; }
.crumb a:hover { color: var(--brand); }
.crumb span { color: var(--brand); }
.phero__sub { max-width: 58ch; margin-top: 18px; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: var(--ink-2); border-top: 1px solid var(--line); padding-block: clamp(52px, 7vw, 84px) 34px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
.foot-brand img { height: 26px; width: auto; margin-bottom: 20px; }
.foot-brand p { font-size: 14.5px; max-width: 34ch; }
.foot-col h4 { font-family: var(--font-mono); font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--fg-dim); font-weight: 400; margin-bottom: 18px; }
.foot-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.foot-col a { font-size: 15px; color: var(--fg-muted); transition: color .15s; }
.foot-col a:hover { color: var(--brand); }
.foot-bottom { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; margin-top: clamp(40px, 5vw, 60px); padding-top: 28px; border-top: 1px solid var(--line-soft); }
.foot-bottom p { margin: 0; font-family: var(--font-mono); font-size: 12px; color: var(--fg-dim); letter-spacing: .02em; }

/* ============================================================
   Carousel (build journey)
   ============================================================ */
.carousel { position: relative; max-width: 860px; margin-inline: auto; }
.carousel:focus-visible { outline: 2px solid var(--brand-bright); outline-offset: 4px; border-radius: 12px; }
.carousel__viewport { overflow: hidden; border: 1px solid var(--line); border-radius: 10px; background: #000; }
.carousel__track { display: flex; transition: transform .45s var(--ease); }
.carousel__slide { flex: 0 0 100%; position: relative; margin: 0; }
.carousel__img { aspect-ratio: 3 / 2; background: #0d0d0f; }
.carousel__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.carousel__cap { position: absolute; left: 0; right: 0; bottom: 0; margin: 0; padding: 46px 26px 22px;
  background: linear-gradient(transparent, rgba(0,0,0,.9)); color: var(--fg); font-size: 15px; }
.carousel__step { display: block; font-family: var(--font-mono); font-size: 12px; letter-spacing: .1em;
  text-transform: uppercase; color: var(--brand); margin-bottom: 5px; }
.carousel__btn { position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 52px; height: 52px; border-radius: 50%; border: 1px solid var(--line); background: rgba(10,10,11,.65);
  color: #fff; cursor: pointer; display: grid; place-content: center; -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
  transition: background .18s var(--ease), border-color .18s var(--ease); }
.carousel__btn:hover { background: var(--brand); border-color: var(--brand); }
.carousel__btn svg { width: 22px; height: 22px; }
.carousel__btn--prev { left: 16px; }
.carousel__btn--next { right: 16px; }
.carousel__bar { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 18px; }
.carousel__dots { display: flex; flex-wrap: wrap; gap: 8px; }
.carousel__dot { width: 9px; height: 9px; border-radius: 50%; border: 0; padding: 0; cursor: pointer;
  background: var(--line); transition: background .18s var(--ease), transform .18s var(--ease); }
.carousel__dot:hover { background: var(--fg-dim); }
.carousel__dot[aria-selected="true"] { background: var(--brand); transform: scale(1.3); }
.carousel__counter { font-family: var(--font-mono); font-size: 13px; color: var(--fg-muted); letter-spacing: .05em; white-space: nowrap; }
@media (max-width: 720px) {
  .carousel__img { aspect-ratio: 4 / 3; }
  .carousel__btn { width: 44px; height: 44px; }
  .carousel__btn--prev { left: 8px; }
  .carousel__btn--next { right: 8px; }
  .carousel__cap { font-size: 14px; padding: 38px 16px 16px; }
}

/* Extras grid ("we also do…") */
.xgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.xgrid > * { min-width: 0; }
.xcard h3 { font-size: 1.2rem; margin: 18px 0 8px; }
.xcard p { font-size: 14.5px; margin: 0; color: var(--fg-muted); }

@media (max-width: 960px) {
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .grid-3 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .svc-grid { grid-template-columns: 1fr; }
  .xgrid { grid-template-columns: 1fr; gap: 30px; }
  .hero__scrim { background: linear-gradient(180deg, rgba(10,10,11,.72) 0%, rgba(10,10,11,.9) 100%); }
  .hero__bg-tag { left: clamp(16px, 4vw, 40px); right: auto; }
  .nav__menu, .nav__phone { display: none; }
  .nav__toggle { display: inline-flex; align-items: center; justify-content: center; }
  .nav.open .nav__menu {
    display: flex; flex-direction: column; align-items: stretch; gap: 2px;
    position: absolute; top: 74px; left: 0; right: 0;
    background: var(--panel); border-bottom: 1px solid var(--line); padding: 14px var(--gut) 22px;
  }
  .nav.open .nav__drop-panel { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; padding: 4px 0 4px 14px; min-width: 0; }
  .nav__link { padding: 12px 6px; font-size: 14px; }
  .steps { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .svc-row { grid-template-columns: 1fr auto; gap: 16px; }
  .svc-row__no { display: none; }
  .foot-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .cta-band .wrap { flex-direction: column; align-items: flex-start; }
}
