@font-face {
  font-family: 'Archivo';
  src: url(assets/fonts/archivo-var.woff2) format('woff2-variations');
  font-weight: 400 800;
  font-stretch: 62% 125%;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Plex Mono';
  src: url(assets/fonts/plexmono-400.woff2) format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Plex Mono';
  src: url(assets/fonts/plexmono-500.woff2) format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Warm paper and graphite, not the blue-white and navy of the older build. */
  --bone: #f4f1ea;
  --bone-2: #eae5db;
  --card: #fbf9f4;
  --white: #fff;
  --ink: #16181c;
  --ink-2: #33383f;
  --muted: #5f5a52;
  --rule: rgba(22, 24, 28, .16);
  --rule-soft: rgba(22, 24, 28, .09);
  /* Brand ink from the logo: the flame red and the house blue. */
  --heat: #cc352a;
  --heat-2: #e85a2a;
  --heat-ink: #b32a20;
  --cool: #1e5aa8;
  --cool-2: #5aa9e6;
  --display: 'Archivo', 'Archivo Expanded', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', sans-serif;
  --mono: 'Plex Mono', ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  --pad: clamp(18px, 5vw, 78px);
  --maxw: 1280px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bone);
  color: var(--ink);
  font-family: var(--display);
  font-size: 16.5px;
  line-height: 1.6;
  font-stretch: 100%;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
img { height: auto; }
h1, h2, h3, h4, p, a, span, strong, article, section, div, li { min-width: 0; }
h1, h2, h3, h4 {
  font-stretch: 112%;
  font-weight: 800;
  letter-spacing: -.022em;
  line-height: .98;
  margin: 0;
  text-wrap: balance;
}
p { margin: 0; }
h1 { font-size: clamp(40px, 6.6vw, 96px); }
h2 { font-size: clamp(27px, 3.5vw, 45px); }
h3 { font-size: clamp(19px, 1.5vw, 23px); line-height: 1.12; letter-spacing: -.014em; }
:focus-visible { outline: 2px solid var(--cool); outline-offset: 3px; }
::selection { background: var(--heat); color: #fff; }

/* Mono metadata label. Replaces the uppercase eyebrow: a numbered index entry
   rather than a coloured kicker. */
.tag {
  display: inline-flex;
  align-items: baseline;
  gap: 9px;
  font-family: var(--mono);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--muted);
  font-stretch: 100%;
}
.tag i { font-style: normal; color: var(--heat-ink); }
.tag.on-ink { color: rgba(255, 255, 255, .62); }
.tag.on-ink i { color: var(--heat-2); }
.mono { font-family: var(--mono); font-stretch: 100%; }

.lede { color: var(--muted); font-size: clamp(16px, 1.25vw, 18.5px); max-width: 62ch; }
.on-ink .lede, .band.ink .lede { color: rgba(255, 255, 255, .72); }

/* Buttons: hard-edged, mono-labelled, no shadow and no radius. */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid var(--ink);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font-family: var(--mono);
  font-weight: 500;
  font-size: 12.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-stretch: 100%;
  cursor: pointer;
  transition: background .18s ease, color .18s ease, border-color .18s ease;
  text-align: center;
  white-space: nowrap;
}
.btn.solid { background: var(--heat); border-color: var(--heat); color: #fff; }
.btn.solid:hover { background: var(--heat-ink); border-color: var(--heat-ink); }
.btn.ink { background: var(--ink); border-color: var(--ink); color: #fff; }
.btn.ink:hover { background: #000; border-color: #000; }
.btn.line:hover { background: var(--ink); color: #fff; }
.btn.on-ink { border-color: rgba(255, 255, 255, .42); color: #fff; }
.btn.on-ink:hover { background: #fff; color: var(--ink); border-color: #fff; }
.btn.small { min-height: 42px; padding: 0 16px; font-size: 11.5px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 72px;
  padding: 10px var(--pad);
  background: rgba(244, 241, 234, .93);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease;
}
html.scrolled .site-header { border-bottom-color: var(--rule); }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: 0; }
.brand-mark { width: 44px; height: 44px; object-fit: contain; flex: 0 0 auto; }
.brand-word { display: grid; line-height: 1; }
.brand-word strong { font-size: 1.16rem; font-weight: 800; font-stretch: 112%; letter-spacing: -.01em; }
/* Set in the display face at the same width as the J&A above it, so the lockup
   reads as one piece of type rather than two fonts stacked. */
.brand-word span {
  font-family: var(--display);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 5px;
  font-stretch: 112%;
}
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--ink-2);
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: border-color .18s ease, color .18s ease;
}
.nav-links a:hover { color: var(--ink); border-bottom-color: var(--heat); }
.nav-actions { display: flex; align-items: center; gap: 14px; }
.nav-phone {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .06em;
  white-space: nowrap;
}
.nav-phone:hover { color: var(--heat-ink); }
.menu-toggle {
  display: none;
  width: 46px;
  height: 42px;
  border: 1px solid var(--rule);
  background: transparent;
  position: relative;
}
.menu-toggle span, .menu-toggle:before, .menu-toggle:after {
  content: '';
  position: absolute;
  left: 12px;
  right: 12px;
  height: 1.5px;
  background: var(--ink);
  transition: transform .2s ease, opacity .2s ease;
}
.menu-toggle:before { top: 14px; }
.menu-toggle span { top: 20px; }
.menu-toggle:after { top: 26px; }
body.menu-open .menu-toggle:before { transform: translateY(6px) rotate(45deg); }
body.menu-open .menu-toggle span { opacity: 0; }
body.menu-open .menu-toggle:after { transform: translateY(-6px) rotate(-45deg); }
.mobile-menu {
  display: none;
  position: fixed;
  inset: 72px 0 auto 0;
  z-index: 45;
  background: var(--bone);
  border-bottom: 1px solid var(--rule);
  padding: 8px var(--pad) 22px;
  max-height: calc(100vh - 72px);
  overflow-y: auto;
}
.mobile-menu a {
  display: block;
  padding: 15px 0;
  border-bottom: 1px solid var(--rule-soft);
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.mobile-menu .mobile-cta { border-bottom: 0; margin-top: 14px; }
.mobile-menu .mobile-cta .btn { width: 100%; }
body.menu-open .mobile-menu { display: block; }

/* ---------- Frame ---------- */
.band { padding: clamp(56px, 7vw, 104px) var(--pad); }
.band-inner { max-width: var(--maxw); margin: 0 auto; }
.band.paper2 { background: var(--bone-2); }
.band.ink { background: var(--ink); color: #fff; }
.band.ink h2, .band.ink h3 { color: #fff; }
.band.tight { padding-top: clamp(34px, 4vw, 56px); padding-bottom: clamp(34px, 4vw, 56px); }
.band.hair { border-top: 1px solid var(--rule); }
.band-head { display: grid; gap: 16px; max-width: 900px; margin-bottom: clamp(30px, 3.6vw, 52px); }
.band-head h2 { max-width: 24ch; }

/* Rule with a mono caption sitting on it. */
.rule-note {
  display: flex;
  align-items: center;
  gap: 16px;
  border-top: 1px solid var(--rule);
  padding-top: 12px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  font-stretch: 100%;
}
.rule-note span:last-child { margin-left: auto; }

/* ---------- Hero ---------- */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, .88fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: end;
  padding: clamp(40px, 5.5vw, 84px) var(--pad) 0;
  max-width: var(--maxw);
  margin: 0 auto;
}
.hero-copy { display: grid; gap: 22px; padding-bottom: clamp(18px, 3vw, 44px); }
.hero h1 { max-width: 15ch; }
.hero h1 em { font-style: normal; color: var(--heat); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-figure { position: relative; align-self: end; display: grid; }
.hero-figure img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; height: auto; }
.hero-cap {
  position: absolute;
  left: 0;
  bottom: 0;
  background: var(--bone);
  border-top: 1px solid var(--rule);
  border-right: 1px solid var(--rule);
  padding: 10px 16px 9px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  max-width: 78%;
  font-stretch: 100%;
}

/* Readout: mono key/value pairs, the trust row rebuilt as instrument data. */
.readout {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--ink);
  max-width: var(--maxw);
  margin: clamp(34px, 4.4vw, 62px) auto 0;
  padding: 0 var(--pad);
}
.readout > div {
  padding: 16px 18px 18px 0;
  border-right: 1px solid var(--rule);
  display: grid;
  gap: 7px;
  align-content: start;
}
.readout > div:last-child { border-right: 0; }
.readout dt {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--muted);
  font-stretch: 100%;
}
.readout dd { margin: 0; font-size: clamp(15px, 1.15vw, 17px); font-weight: 700; font-stretch: 106%; line-height: 1.2; }
.readout dd .star { color: var(--heat); }

/* Signature motif: the comfort scale. Cold blue through paper to flame red, with
   the marker parked at a comfortable indoor temperature. */
.scale { display: grid; gap: 9px; }
.scale-bar {
  position: relative;
  height: 12px;
  border: 1px solid var(--rule);
  background: linear-gradient(90deg, var(--cool) 0%, var(--cool-2) 24%, #efece4 50%, var(--heat-2) 77%, var(--heat) 100%);
}
.scale-mark {
  position: absolute;
  top: -6px;
  bottom: -6px;
  width: 2px;
  background: var(--ink);
  /* The five ticks are evenly spaced, so the 72 degree label sits at 75%. */
  left: 75%;
}
.scale-mark:after {
  content: attr(data-t);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 7px);
  transform: translateX(-50%);
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .1em;
  white-space: nowrap;
  color: var(--ink);
}
.scale-ticks {
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: .13em;
  color: var(--muted);
  font-stretch: 100%;
}
.band.ink .scale-bar { border-color: rgba(255, 255, 255, .3); }
.band.ink .scale-mark { background: #fff; }
.band.ink .scale-mark:after { color: #fff; }
.band.ink .scale-ticks { color: rgba(255, 255, 255, .6); }

/* Keyword strip: mono, hairline-separated, replaces the pill ribbon. */
.kws {
  display: flex;
  flex-wrap: wrap;
  gap: 0 22px;
  padding: 14px var(--pad);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  margin-top: clamp(34px, 4.4vw, 62px);
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
  font-stretch: 100%;
}
.kws span { display: inline-flex; align-items: center; gap: 22px; }
.kws span:after { content: ''; width: 3px; height: 3px; background: var(--heat); }
.kws span:last-child:after { display: none; }

/* ---------- Numbered index (services) ---------- */
.index { border-top: 1px solid var(--ink); }
.irow {
  display: grid;
  grid-template-columns: 62px 152px minmax(0, 1fr) 44px;
  gap: clamp(14px, 2vw, 30px);
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--rule);
  transition: background .2s ease, padding-left .2s ease;
}
.irow:hover { background: var(--card); padding-left: 12px; }
.irow-n {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .08em;
  color: var(--ink-2);
  font-stretch: 100%;
  transition: color .2s ease;
}
.irow:hover .irow-n { color: var(--heat-ink); }
.irow-thumb { overflow: hidden; border: 1px solid var(--rule-soft); }
.irow-thumb img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  filter: saturate(.72) contrast(1.03);
  transition: transform .5s cubic-bezier(.22, 1, .36, 1), filter .35s ease;
}
.irow:hover .irow-thumb img { transform: scale(1.05); filter: saturate(1) contrast(1.03); }
.irow-body { display: grid; gap: 6px; }
.irow-body p { color: var(--muted); font-size: 15px; max-width: 70ch; }
.irow-kicker {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--heat-ink);
  font-stretch: 100%;
}
.irow-go {
  justify-self: end;
  font-family: var(--mono);
  font-size: 17px;
  color: var(--muted);
  transition: transform .2s ease, color .2s ease;
}
.irow:hover .irow-go { transform: translateX(5px); color: var(--heat-ink); }

/* ---------- Heat / cool duality ---------- */
.duo { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; background: var(--rule); border: 1px solid var(--rule); }
.duo-card { background: var(--bone); padding: clamp(24px, 3vw, 40px); display: grid; gap: 14px; align-content: start; position: relative; }
.duo-card:before { content: ''; position: absolute; inset: 0 0 auto 0; height: 3px; }
.duo-card.heat:before { background: linear-gradient(90deg, var(--heat), var(--heat-2)); }
.duo-card.cool:before { background: linear-gradient(90deg, var(--cool), var(--cool-2)); }
.duo-card p { color: var(--muted); font-size: 15.5px; }
.duo-temp {
  font-family: var(--mono);
  font-size: clamp(30px, 3.4vw, 44px);
  font-weight: 500;
  letter-spacing: -.02em;
  line-height: 1;
  font-stretch: 100%;
}
.duo-card.heat .duo-temp { color: var(--heat); }
.duo-card.cool .duo-temp { color: var(--cool); }

/* ---------- Reason list ---------- */
.reasons { display: grid; gap: 0; border-top: 1px solid rgba(255, 255, 255, .22); }
.reasons article {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: clamp(12px, 2vw, 26px);
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
  align-items: start;
}
.reasons b {
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: .12em;
  color: var(--heat-2);
  font-stretch: 100%;
  padding-top: 4px;
}
.reasons h3 { margin-bottom: 7px; }
.reasons p { color: rgba(255, 255, 255, .7); font-size: 15.5px; max-width: 68ch; }

/* ---------- Photo band ---------- */
/* Sized by aspect ratio rather than vh: a viewport-relative height makes the band
   change shape with window height and renders unpredictably in tall captures. */
.photoband { position: relative; }
.photoband img { width: 100%; aspect-ratio: 24 / 10; object-fit: cover; height: auto; }
.photoband-cap {
  position: absolute;
  right: 0;
  bottom: 0;
  background: var(--bone);
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
  padding: 10px 16px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  font-stretch: 100%;
}
.photo-split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(24px, 3.5vw, 56px); align-items: center; }
.photo-split .ph { border: 1px solid var(--rule-soft); }

/* ---------- Reviews as pull quotes ---------- */
.quotes { columns: 2; column-gap: clamp(26px, 3.5vw, 56px); }
.quote {
  break-inside: avoid;
  border-top: 1px solid var(--rule);
  padding: 20px 0 26px;
  display: grid;
  gap: 13px;
}
.quote .stars { color: var(--heat); font-size: 13px; letter-spacing: .18em; }
.quote p { font-size: clamp(16px, 1.35vw, 19px); line-height: 1.48; font-stretch: 104%; }
.quote-by { display: flex; flex-wrap: wrap; align-items: baseline; gap: 10px; }
.quote-by strong { font-size: 14.5px; font-weight: 700; }
.quote-by span { font-family: var(--mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); font-stretch: 100%; }

/* ---------- Areas ---------- */
.arealist { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; background: var(--rule); border: 1px solid var(--rule); }
.arealink {
  background: var(--bone);
  padding: 20px;
  display: grid;
  gap: 6px;
  align-content: start;
  transition: background .18s ease;
}
.arealink:hover { background: var(--card); }
.arealink strong { font-size: 19px; font-weight: 800; font-stretch: 110%; }
.arealink span { font-family: var(--mono); font-size: 10px; letter-spacing: .15em; text-transform: uppercase; color: var(--muted); font-stretch: 100%; }
.arealink:hover span { color: var(--heat-ink); }
.areacard { background: var(--bone); padding: clamp(20px, 2.4vw, 30px); display: grid; gap: 10px; align-content: start; transition: background .18s ease; }
.areacard:hover { background: var(--card); }
.areacard p { color: var(--muted); font-size: 15px; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1px; background: var(--rule); border-top: 1px solid var(--ink); border-left: 1px solid var(--rule); }
.steps article { background: var(--bone); padding: clamp(20px, 2.2vw, 28px); display: grid; gap: 10px; align-content: start; }
.steps b {
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: .12em;
  color: var(--heat-ink);
  font-stretch: 100%;
}
.steps p { color: var(--muted); font-size: 15px; }

/* ---------- Spec list ---------- */
.spec { display: grid; gap: 0; border-top: 1px solid var(--ink); margin: 0; }
.spec > div { display: grid; grid-template-columns: 34px minmax(0, 1fr); gap: 16px; padding: 15px 0; border-bottom: 1px solid var(--rule); align-items: baseline; }
.spec dt { font-family: var(--mono); font-size: 11px; font-weight: 500; letter-spacing: .1em; color: var(--muted); font-stretch: 100%; }
.spec dd { margin: 0; font-size: 16.5px; font-weight: 600; font-stretch: 104%; }

/* ---------- FAQ ---------- */
.faq { border-top: 1px solid var(--ink); }
.faq details { border-bottom: 1px solid var(--rule); }
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 19px 44px 19px 0;
  position: relative;
  font-size: clamp(16.5px, 1.35vw, 19.5px);
  font-weight: 700;
  font-stretch: 106%;
  letter-spacing: -.01em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:after {
  content: '+';
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--mono);
  font-size: 19px;
  color: var(--heat-ink);
  transition: transform .2s ease;
}
.faq details[open] summary:after { content: '\2212'; }
.faq details p { color: var(--muted); padding: 0 8ch 22px 0; max-width: 78ch; }

/* ---------- Call strip (replaces the dark CTA band) ---------- */
.callstrip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(20px, 3vw, 48px);
  align-items: center;
  padding: clamp(34px, 4vw, 58px) var(--pad);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  max-width: var(--maxw);
  margin: 0 auto;
}
.callstrip-copy { display: grid; gap: 12px; }
.callstrip h2 { max-width: 26ch; }
.callstrip-actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* Emergency: graphite band, red hairline, no pulsing icon. */
.emergency { background: var(--ink); color: #fff; padding: clamp(34px, 4.2vw, 62px) var(--pad); border-top: 3px solid var(--heat); }
.emergency-inner { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: clamp(20px, 3vw, 46px); align-items: center; }
.emergency h2 { max-width: 22ch; }
.emergency p { color: rgba(255, 255, 255, .72); max-width: 62ch; margin-top: 12px; }
.emergency-actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- Detail hero (service / area / contact pages) ---------- */
.dhero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: clamp(24px, 3.5vw, 56px);
  align-items: end;
  padding: clamp(34px, 4.6vw, 70px) var(--pad) 0;
  max-width: var(--maxw);
  margin: 0 auto;
}
.dhero-copy { display: grid; gap: 20px; padding-bottom: clamp(14px, 2.4vw, 34px); }
.dhero h1 { font-size: clamp(33px, 4.6vw, 62px); max-width: 20ch; overflow-wrap: normal; }
.dhero-figure { position: relative; }
.dhero-figure .ph { border: 1px solid var(--rule-soft); }
.dhero-figure img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }

/* Page head without a photo (legal, areas index). */
.phead { padding: clamp(40px, 5vw, 76px) var(--pad) clamp(24px, 3vw, 40px); max-width: var(--maxw); margin: 0 auto; display: grid; gap: 18px; }
.phead h1 { font-size: clamp(33px, 4.6vw, 66px); max-width: 22ch; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr); gap: clamp(26px, 3.5vw, 58px); align-items: start; }
.contact-aside { display: grid; gap: 20px; align-content: start; }
@media (min-width: 1041px) { .contact-aside { position: sticky; top: 96px; } }
.sms-consent { font-size: 12.5px; color: var(--muted); max-width: 62ch; line-height: 1.55; }
.sms-consent a { border-bottom: 1px solid var(--rule); }
.sms-consent a:hover { color: var(--heat-ink); }
.reqcard { border: 1px solid var(--ink); background: var(--card); padding: clamp(22px, 2.6vw, 34px); display: grid; gap: 16px; }
.reqcard-logo { width: 200px; max-width: 62%; }
.reqcard h2 { font-size: clamp(23px, 2vw, 30px); }
.reqcard > p { color: var(--muted); font-size: 15.5px; }
.reqbox { border-top: 1px solid var(--rule); padding-top: 18px; display: grid; gap: 12px; }
.reqbox-tag {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--heat-ink);
  font-stretch: 100%;
}
.reqbox-title { font-size: 19px; font-weight: 800; font-stretch: 108%; }
.reqbox-note { color: var(--muted); font-size: 14.5px; }
.reqbox-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 4px; }
.details { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; background: var(--rule); border: 1px solid var(--rule); }
.details > div { background: var(--bone); padding: 18px 20px; display: grid; gap: 6px; align-content: start; }
.details dt { font-family: var(--mono); font-size: 10px; font-weight: 500; letter-spacing: .17em; text-transform: uppercase; color: var(--muted); font-stretch: 100%; }
.details dd { margin: 0; font-size: 15.5px; font-weight: 600; font-stretch: 104%; }
.details dd a:hover { color: var(--heat-ink); }
.details .wide { grid-column: 1 / -1; }

/* ---------- Legal ---------- */
.legal-section { padding-top: clamp(24px, 3vw, 44px); }
.legal-prose { max-width: 74ch; display: grid; gap: 16px; }
.legal-prose h2 { font-size: clamp(21px, 1.9vw, 27px); margin-top: 22px; }
.legal-prose p, .legal-prose li { color: var(--ink-2); font-size: 16px; }
.legal-prose ul { margin: 0; padding-left: 20px; display: grid; gap: 8px; }
.legal-prose a { border-bottom: 1px solid var(--rule); }
.legal-prose a:hover { color: var(--heat-ink); }
.legal-prose .updated { font-family: var(--mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); font-stretch: 100%; }

/* ---------- Footer ---------- */
.foot { background: var(--bone-2); border-top: 1px solid var(--ink); padding: clamp(40px, 4.6vw, 68px) var(--pad) 30px; }
.foot-inner { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr); gap: clamp(26px, 3.5vw, 60px); }
.foot-about { display: grid; gap: 16px; align-content: start; }
.foot-about p { color: var(--muted); font-size: 14.5px; max-width: 58ch; }
.foot-cols { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px; }
.foot-col { display: grid; gap: 10px; align-content: start; }
.foot-col b {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--muted);
  font-stretch: 100%;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--rule);
}
.foot-col a { font-size: 14.5px; }
.foot-col a:hover { color: var(--heat-ink); }
.foot-legal {
  max-width: var(--maxw);
  margin: clamp(30px, 3.4vw, 46px) auto 0;
  padding-top: 16px;
  border-top: 1px solid var(--rule);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  font-stretch: 100%;
}
.foot-legal a:hover { color: var(--heat-ink); }

/* ---------- Mobile call bar ---------- */
.callbar { display: none; }

/* ---------- Photo wipe ---------- */
.ph { overflow: hidden; display: block; }
html.js .ph img { transition: clip-path .78s cubic-bezier(.22, 1, .36, 1), transform .9s cubic-bezier(.22, 1, .36, 1); }
html.js .ph:not(.seen) img { clip-path: inset(0 0 100% 0); transform: scale(1.05); }
html.js .ph.seen img { clip-path: inset(0 0 0 0); transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1180px) {
  .nav-links { gap: 20px; }
  .nav-links a { font-size: 10.5px; letter-spacing: .11em; }
  .irow { grid-template-columns: 50px 124px minmax(0, 1fr) 34px; }
}
@media (max-width: 1040px) {
  .nav-links, .nav-phone { display: none; }
  .menu-toggle { display: block; }
  .hero { grid-template-columns: 1fr; align-items: start; }
  .hero-figure { min-height: 0; }
  .hero-figure .ph { min-height: 0; }
  .hero-figure img { aspect-ratio: 4 / 3; height: auto; }
  .dhero { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .foot-inner { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .readout { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .readout > div:nth-child(2) { border-right: 0; }
  .readout > div:nth-child(-n+2) { border-bottom: 1px solid var(--rule); }
  .arealist { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 760px) {
  body { font-size: 16px; }
  .quotes { columns: 1; }
  .photoband img { aspect-ratio: 3 / 2; }
  .hero-figure img { aspect-ratio: 4 / 3; }
  .duo { grid-template-columns: 1fr; }
  .photo-split { grid-template-columns: 1fr; }
  .callstrip, .emergency-inner { grid-template-columns: 1fr; }
  .irow { grid-template-columns: 40px minmax(0, 1fr); gap: 12px 14px; padding: 16px 0; align-items: start; }
  .irow-thumb { grid-column: 1 / -1; grid-row: 1; margin-bottom: 4px; }
  .irow-n { grid-row: 2; }
  .irow-body { grid-row: 2; }
  .irow-go { display: none; }
  .irow:hover { padding-left: 0; }
  .steps, .arealist, .details { grid-template-columns: 1fr; }
  .foot-cols { grid-template-columns: 1fr; }
  /* The call bar only exists on small screens, where a thumb is the pointer. */
  .callbar {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    transform: translateY(100%);
    transition: transform .24s ease;
  }
  .callbar a { flex: 1; min-height: 56px; border-radius: 0; border-width: 0; }
  .callbar a + a { border-left: 1px solid rgba(255, 255, 255, .28); }
  body.show-callbar .callbar { transform: translateY(0); }
  body { padding-bottom: 0; }
  body.show-callbar { padding-bottom: 56px; }
}
@media (max-width: 560px) {
  .brand-word span { display: none; }
  .brand-mark { width: 40px; height: 40px; }
  .site-header { gap: 12px; }
}
@media (max-width: 420px) {
  .hero-cap, .photoband-cap { max-width: 100%; font-size: 9px; letter-spacing: .12em; }
  .readout { grid-template-columns: 1fr; }
  .readout > div { border-right: 0; border-bottom: 1px solid var(--rule); }
  .readout > div:last-child { border-bottom: 0; }
}
@media (prefers-reduced-motion: reduce) {
  *, *:before, *:after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
  html.js .ph:not(.seen) img { clip-path: none; transform: none; }
}