/* Best In Class Remodeling LLC - homepage concept
   Design language: Industrial Edge (type / spacing / motion only)
   Colour: prospect's own. Red #bf1e2e and grey #58585a sampled from their logo file;
   #bf1e2e also matches the accent token computed in their live stylesheet. */

:root {
  /* Brand, from their logo and live site */
  --red:        #bf1e2e;
  --red-deep:   #99141f;
  --red-text:   #eb5c6a;   /* same hue, lightened for text on the dark bands */
  --steel:      #58585a;   /* logo grey */

  /* Grounds */
  --ink:        #1c1d1f;
  --ink-2:      #26272a;
  --paper:      #ffffff;
  --concrete:   #f2f1ef;

  /* Ink on light */
  --text:       #1c1d1f;
  --body:       #4a4b4e;
  --muted:      #686a6d;
  --line:       #dedcd8;

  /* Ink on dark */
  --on-dark:        #f4f4f3;
  --on-dark-body:   rgba(244, 244, 243, 0.78);
  --on-dark-muted:  rgba(244, 244, 243, 0.62);
  --line-dark:      rgba(244, 244, 243, 0.16);

  /* Type */
  --display: "Antonio", "Arial Narrow", sans-serif;
  --sans:    "Assistant", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Layout */
  --wrap:      min(90%, 1100px);
  --wrap-wide: min(94vw, 1480px);
  --gutter:    clamp(1.25rem, 4vw, 3rem);
  --sec-y:     clamp(3.5rem, 8vw, 7rem);
  --nav-h:     76px;

  /* Motion: quick and mechanical */
  --ease:      cubic-bezier(0.4, 0, 0.6, 1);
  --ease-out:  cubic-bezier(0.2, 0.7, 0.3, 1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  font-weight: 400;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
h1, h2, h3, h4 { margin: 0; font-family: var(--display); font-weight: 600; line-height: 0.95; letter-spacing: -0.02em; }
p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }
ul { margin: 0; padding: 0; list-style: none; }
blockquote, figure { margin: 0; }
button { font: inherit; color: inherit; }
:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; }
.dark :focus-visible { outline-color: var(--red-text); }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- shared blocks ---------- */
.wrap  { width: var(--wrap);      margin-inline: auto; }
.wrap-wide { width: var(--wrap-wide); margin-inline: auto; }

section { padding-block: var(--sec-y); }
.dark { background: var(--ink); color: var(--on-dark); }
.dark h1, .dark h2, .dark h3 { color: var(--on-dark); }
.concrete { background: var(--concrete); }

/* Section head: hairline with a short heavy red segment at its left.
   This is the page's one repeated structural device. */
.sec-head {
  position: relative;
  border-top: 1px solid var(--line);
  padding-top: clamp(1.5rem, 3vw, 2.25rem);
  margin-bottom: clamp(2rem, 4vw, 3.25rem);
}
.dark .sec-head { border-top-color: var(--line-dark); }
.sec-head::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  width: 56px;
  height: 4px;
  background: var(--red);
}
.sec-head__row {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: clamp(1rem, 3vw, 3rem);
  align-items: end;
}
.sec-title {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  text-transform: uppercase;
  letter-spacing: -0.015em;
}
.sec-note {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--body);
  max-width: 46ch;
  padding-bottom: 0.4rem;
}
.dark .sec-note { color: var(--on-dark-body); }

/* Buttons: hard-edged, Industrial Edge */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 48px;
  padding: 0.85rem 1.5rem;
  border: 1px solid transparent;
  border-radius: 2px;
  font-family: var(--display);
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.18s var(--ease), color 0.18s var(--ease), border-color 0.18s var(--ease), transform 0.18s var(--ease);
}
.btn__mark { width: 10px; height: 10px; background: currentColor; flex: none; transition: transform 0.18s var(--ease); }
.btn:hover .btn__mark { transform: translateX(3px); }
.btn--red { background: var(--red); color: #fff; border-color: var(--red); }
.btn--red:hover { background: var(--red-deep); border-color: var(--red-deep); }
.btn--ghost-dark { background: transparent; color: var(--on-dark); border-color: rgba(244,244,243,0.4); }
.btn--ghost-dark:hover { border-color: var(--on-dark); background: rgba(244,244,243,0.08); }
.btn--ghost { background: transparent; color: var(--text); border-color: rgba(28,29,31,0.28); }
.btn--ghost:hover { border-color: var(--text); background: rgba(28,29,31,0.05); }

.textlink {
  font-family: var(--display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  border-bottom: 2px solid var(--red);
  padding-bottom: 2px;
  transition: color 0.18s var(--ease);
}
.textlink:hover { color: var(--red); }
.dark .textlink:hover { color: var(--red-text); }

/* ---------- nav ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background-color 0.28s var(--ease), border-color 0.28s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav::before {
  content: "";
  position: absolute;
  inset: 0;
  bottom: -46px;
  background: linear-gradient(to bottom, rgba(15,16,17,0.92) 0%, rgba(15,16,17,0.66) 52%, rgba(15,16,17,0) 100%);
  pointer-events: none;
  transition: opacity 0.28s var(--ease);
}
.nav.is-solid { background: var(--ink); border-bottom-color: var(--line-dark); }
.nav.is-solid::before { opacity: 0; }
.nav__inner {
  width: var(--wrap-wide);
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  position: relative;
}
/* The logo's letterforms are their grey #58585a, which does not read on the dark bands.
   It sits on a white plate, the way it does on their own site, rather than being recolored. */
.nav__logo { display: block; flex: none; background: #fff; padding: 7px 11px; border-radius: 2px; }
.nav__logo img { width: auto; height: 42px; max-width: 175px; object-fit: contain; }
.nav__links { display: flex; align-items: center; gap: clamp(1rem, 2vw, 1.9rem); margin-left: auto; }
.nav__links a {
  font-family: var(--display);
  font-size: 1.0625rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--on-dark);
  padding-block: 0.5rem;
  border-bottom: 2px solid transparent;
  transition: border-color 0.18s var(--ease);
}
.nav__links a:hover { border-bottom-color: var(--red-text); }
.nav__cta { margin-left: 0.5rem; }
.nav .btn--red { min-height: 44px; padding: 0.6rem 1.15rem; }

.burger {
  display: none;
  margin-left: auto;
  width: 48px; height: 48px;
  background: none; border: 1px solid rgba(244,244,243,0.4); border-radius: 2px;
  cursor: pointer;
  padding: 0;
  align-items: center; justify-content: center;
  flex-direction: column; gap: 5px;
}
.burger span { display: block; width: 20px; height: 2px; background: var(--on-dark); }

/* drawer */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  padding: 1.25rem var(--gutter) 2.5rem;
  transform: translateY(-100%);
  transition: transform 0.32s var(--ease);
  visibility: hidden;
  overflow-y: auto;
}
.drawer.is-open { transform: translateY(0); visibility: visible; }
.drawer__top { display: flex; align-items: center; justify-content: space-between; min-height: calc(var(--nav-h) - 1.25rem); }
.drawer__plate { background: #fff; padding: 7px 11px; border-radius: 2px; display: block; }
.drawer__top img { width: auto; height: 42px; max-width: 175px; object-fit: contain; }
.drawer__close {
  width: 48px; height: 48px;
  background: none; border: 1px solid rgba(244,244,243,0.4); border-radius: 2px;
  color: var(--on-dark); cursor: pointer; font-size: 1.5rem; line-height: 1;
}
.drawer__links { margin-top: 2rem; display: flex; flex-direction: column; }
.drawer__links a {
  font-family: var(--display);
  font-size: clamp(2rem, 9vw, 2.75rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--on-dark);
  text-decoration: none;
  padding-block: 0.55rem;
  border-bottom: 1px solid var(--line-dark);
}
.drawer__foot { margin-top: auto; padding-top: 2rem; display: grid; gap: 0.85rem; }
.drawer__foot a { color: var(--on-dark-body); text-decoration: none; }
.drawer__foot .btn { justify-content: center; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  padding-block: 0;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  background: var(--ink);
  color: var(--on-dark);
}
.hero__panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-h) + clamp(2rem, 5vw, 4rem)) clamp(1.5rem, 5vw, 4.5rem) clamp(2.5rem, 5vw, 4rem);
  padding-left: max(clamp(1.5rem, 5vw, 4.5rem), calc((100vw - var(--wrap-wide)) / 2));
  position: relative;
}
.hero__panel::after {
  content: "";
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 4px;
  background: var(--red);
}
.hero__kicker {
  font-family: var(--display);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red-text);
  margin-bottom: clamp(1.25rem, 3vw, 2rem);
}
.hero h1 {
  font-size: clamp(2.9rem, 6.4vw, 5.4rem);
  line-height: 0.92;
  letter-spacing: -0.025em;
  max-width: 13ch;
  margin-bottom: clamp(1.25rem, 2.5vw, 1.75rem);
}
.hero__sub {
  font-size: clamp(1.0625rem, 1.35vw, 1.1875rem);
  line-height: 1.6;
  color: var(--on-dark-body);
  max-width: 46ch;
  margin-bottom: clamp(1.75rem, 3.5vw, 2.5rem);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-bottom: clamp(1.75rem, 3.5vw, 2.5rem); }
.hero__phone {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 0.6rem 1rem;
  padding-top: clamp(1.25rem, 2.5vw, 1.75rem);
  border-top: 1px solid var(--line-dark);
  font-size: 0.9375rem;
  color: var(--on-dark-muted);
}
.hero__phone a {
  font-family: var(--display);
  font-size: 1.375rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--on-dark);
  text-decoration: none;
}
.hero__phone a:hover { color: var(--red-text); }
.hero__media { position: relative; overflow: hidden; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(28,29,31,0.55), rgba(28,29,31,0) 50%);
  pointer-events: none;
}
.hero__tag {
  position: absolute;
  left: 0; bottom: 0;
  z-index: 2;
  max-width: 100%;
  background: var(--ink);
  color: var(--on-dark-body);
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.7rem 1.1rem;
}

/* ---------- intro ---------- */
.intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(1.75rem, 5vw, 5rem);
  align-items: start;
}
.intro h2 {
  font-size: clamp(2.2rem, 4.6vw, 3.6rem);
  text-transform: uppercase;
}
.intro__lede { position: sticky; top: calc(var(--nav-h) + 2rem); }
.intro__lede .btn { margin-top: clamp(1.5rem, 3vw, 2.25rem); }
@media (max-width: 1024px) { .intro__lede { position: static; } }
.intro__body { color: var(--body); max-width: 68ch; }
.intro__body p + p { margin-top: 1.1em; }
.intro__facts {
  margin-top: clamp(1.75rem, 3.5vw, 2.5rem);
  border-top: 1px solid var(--line);
  display: grid;
  gap: 0;
}
.intro__facts li {
  display: grid;
  grid-template-columns: minmax(0, 12rem) minmax(0, 1fr);
  gap: 1rem;
  padding-block: 0.9rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.9375rem;
  color: var(--body);
}
.intro__facts b {
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steel);
}

/* full-bleed band */
.band { position: relative; height: clamp(280px, 46vw, 560px); overflow: hidden; }
.band img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- before / after ---------- */
.compare__tabs {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 0.25rem;
  margin-bottom: clamp(1.25rem, 2.5vw, 1.75rem);
}
.compare__tabs::-webkit-scrollbar { display: none; }
.compare__tab {
  flex: none;
  background: transparent;
  border: 1px solid var(--line-dark);
  border-radius: 2px;
  color: var(--on-dark-body);
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.7rem 1.25rem;
  min-height: 44px;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.18s var(--ease), color 0.18s var(--ease), border-color 0.18s var(--ease);
}
.compare__tab:hover { border-color: rgba(244,244,243,0.45); color: var(--on-dark); }
.compare__tab[aria-selected="true"] { background: var(--red); border-color: var(--red); color: #fff; }

.compare {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  max-height: 74vh;
  overflow: hidden;
  background: var(--ink-2);
  touch-action: pan-y;
  cursor: ew-resize;
  --cut: 50%;
}
.compare img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
  -webkit-user-drag: none;
}
.compare__after { clip-path: inset(0 0 0 var(--cut)); }
.compare__handle {
  position: absolute;
  top: 0; bottom: 0;
  left: var(--cut);
  width: 4px;
  margin-left: -2px;
  background: var(--red);
  z-index: 3;
}
.compare__grip {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px; height: 52px;
  background: var(--red);
  border: 2px solid #fff;
  border-radius: 2px;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.45);
}
.compare__grip span { display: block; width: 22px; height: 2px; background: #fff; position: relative; }
.compare__grip span::before,
.compare__grip span::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 7px; height: 7px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
}
.compare__grip span::before { left: -1px; transform: translateY(-50%) rotate(-45deg); }
.compare__grip span::after  { right: -1px; transform: translateY(-50%) rotate(135deg); }
.compare__label {
  position: absolute;
  top: 0;
  z-index: 2;
  background: rgba(15,16,17,0.85);
  color: var(--on-dark);
  font-family: var(--display);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.55rem 0.95rem;
}
.compare__label--before { left: 0; }
.compare__label--after  { right: 0; background: var(--red); color: #fff; }
.compare__hint {
  margin-top: 0.9rem;
  font-size: 0.9375rem;
  color: var(--on-dark-muted);
}

/* ---------- services ---------- */
.svc { display: grid; gap: 0; }
.svc__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
  border-top: 1px solid var(--line);
}
.svc__row:last-child { border-bottom: 1px solid var(--line); }
.svc__media { position: relative; overflow: hidden; min-height: clamp(260px, 34vw, 460px); }
.svc__media img { width: 100%; height: 100%; object-fit: cover; }
.svc__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 4vw, 3.5rem) clamp(1.25rem, 3.5vw, 3.25rem);
}
.svc__row:nth-child(even) .svc__media { order: 2; }
.svc__text h3 { font-size: clamp(1.9rem, 3.4vw, 2.75rem); text-transform: uppercase; margin-bottom: 0.9rem; }
.svc__text p { color: var(--body); max-width: 52ch; }
.svc__foot {
  margin-top: clamp(1.75rem, 3.5vw, 2.5rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: center;
}
.svc__foot p { color: var(--body); max-width: 60ch; margin: 0; }

/* ---------- process ---------- */
.proc {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line-dark);
}
.proc__step {
  padding: clamp(1.75rem, 3vw, 2.75rem) clamp(1.25rem, 2.5vw, 2.25rem) 0 0;
  border-right: 1px solid var(--line-dark);
  padding-left: clamp(1.25rem, 2.5vw, 2.25rem);
}
.proc__step:first-child { padding-left: 0; }
.proc__step:last-child { border-right: 0; }
.proc__step h3 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}
.proc__step h3 em { font-style: normal; color: var(--red-text); }
.proc__step p { color: var(--on-dark-body); }
.proc__note {
  margin-top: clamp(2rem, 4vw, 3rem);
  padding-top: clamp(1.5rem, 3vw, 2rem);
  border-top: 1px solid var(--line-dark);
  display: grid;
  grid-template-columns: minmax(0, 14rem) minmax(0, 1fr);
  gap: clamp(1rem, 3vw, 2.5rem);
}
.proc__note h4 {
  font-size: 1.0625rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red-text);
  font-weight: 600;
}
.proc__note p { color: var(--on-dark-body); max-width: 62ch; }

/* ---------- reviews ---------- */
.revs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
}
.rev {
  padding: clamp(1.75rem, 3vw, 2.75rem) clamp(1.25rem, 3vw, 2.5rem);
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
}
.rev:nth-child(2n) { border-right: 0; }
.rev:nth-last-child(-n+2) { border-bottom: 1px solid var(--line); }
.rev p {
  font-size: clamp(1.0625rem, 1.4vw, 1.1875rem);
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 1.1rem;
}
.rev cite {
  font-family: var(--display);
  font-style: normal;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel);
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.rev cite::before { content: ""; width: 22px; height: 3px; background: var(--red); flex: none; }

/* ---------- about ---------- */
.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(1.75rem, 5vw, 4.5rem);
  align-items: start;
}
.about__photo figure { margin: 0; }
.about__photo img { width: 100%; height: auto; }
.about__photo figcaption {
  margin-top: 0.85rem;
  font-size: 0.875rem;
  letter-spacing: 0.06em;
  color: var(--muted);
}
.about__text h2 { font-size: clamp(2.1rem, 4.2vw, 3.2rem); text-transform: uppercase; margin-bottom: 1.25rem; }
.about__text p { color: var(--body); max-width: 66ch; }
.about__role {
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.9rem;
}

/* ---------- cta ---------- */
.cta { background: var(--red); color: #fff; }
.cta h2 { font-size: clamp(2.4rem, 6vw, 4.6rem); text-transform: uppercase; color: #fff; margin-bottom: 1.1rem; }
.cta__lead { font-size: clamp(1.0625rem, 1.4vw, 1.1875rem); max-width: 48ch; margin-bottom: clamp(1.75rem, 3.5vw, 2.5rem); color: rgba(255,255,255,0.92); }
.cta__grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); gap: clamp(1.75rem, 5vw, 4rem); align-items: end; }
.cta__lines { display: grid; gap: 1.1rem; }
.cta__line { display: grid; gap: 0.2rem; }
.cta__line span {
  font-family: var(--display);
  font-size: 0.875rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
}
.cta__line a {
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.4vw, 1.9rem);
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #fff;
  text-decoration: none;
  border-bottom: 2px solid rgba(255,255,255,0.45);
  padding-bottom: 2px;
  justify-self: start;
  word-break: break-word;
}
.cta__line a:hover { border-bottom-color: #fff; }
.cta .btn--ghost-dark { border-color: rgba(255,255,255,0.55); color: #fff; }
.cta .btn--ghost-dark:hover { border-color: #fff; background: rgba(255,255,255,0.12); }

/* ---------- footer ---------- */
.foot { background: var(--ink); color: var(--on-dark); padding-block: clamp(2.5rem, 5vw, 4rem) 2rem; }
.foot__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.75rem, 4vw, 3.5rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid var(--line-dark);
}
.foot__plate { background: #fff; padding: 10px 14px; border-radius: 2px; display: inline-block; }
.foot__logo img { width: auto; height: 58px; max-width: 200px; object-fit: contain; }
.foot__blurb { margin-top: 1.1rem; color: var(--on-dark-muted); font-size: 0.9375rem; max-width: 34ch; }
.foot h4 {
  font-family: var(--display);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red-text);
  margin: 0 0 1rem;
}
.foot__list { display: grid; gap: 0.15rem; }
.foot__list a {
  color: var(--on-dark-body);
  text-decoration: none;
  padding-block: 0.5rem;
  display: inline-block;
  transition: color 0.18s var(--ease);
}
.foot__list a:hover { color: var(--on-dark); }
.foot__bottom {
  padding-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  font-size: 0.875rem;
  color: var(--on-dark-muted);
}

/* ---------- 404 ---------- */
.err {
  min-height: 100vh;
  min-height: 100svh;
  background: var(--ink);
  color: var(--on-dark);
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
}
.err__code {
  font-family: var(--display);
  font-size: clamp(6rem, 22vw, 15rem);
  line-height: 0.8;
  color: rgba(191, 30, 46, 0.35);
  letter-spacing: -0.03em;
  margin-bottom: clamp(1rem, 3vw, 2rem);
}
.err h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); text-transform: uppercase; margin-bottom: 1rem; }
.err p { color: var(--on-dark-body); max-width: 50ch; margin-bottom: 2rem; }

/* ---------- motion ---------- */
html.js .reveal { opacity: 0; transform: translateY(22px); }
html.js .wipe img { clip-path: inset(0 0 100% 0); }
html.js .hero__panel .h-in { opacity: 0; transform: translateY(18px); }
html.js .hero__media img { transform: scale(1.06); }

@media (prefers-reduced-motion: reduce) {
  html.js .reveal, html.js .hero__panel .h-in { opacity: 1 !important; transform: none !important; }
  html.js .wipe img { clip-path: none !important; }
  html.js .hero__media img { transform: none !important; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* ---------- responsive ---------- */
@media (max-width: 1024px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .burger { display: flex; }
  .hero { grid-template-columns: minmax(0, 1fr); min-height: 0; }
  .hero__panel {
    padding: calc(var(--nav-h) + clamp(2rem, 8vw, 3rem)) var(--gutter) clamp(2.5rem, 7vw, 3.5rem);
    padding-left: var(--gutter);
  }
  .hero__panel::after { top: auto; left: 0; right: 0; bottom: 0; width: auto; height: 4px; }
  .hero__media { min-height: clamp(340px, 75vw, 520px); }
  .hero__media::after { background: linear-gradient(to bottom, rgba(28,29,31,0.5), rgba(28,29,31,0) 50%); }
  .intro__grid { grid-template-columns: minmax(0, 1fr); }
  .about__grid { grid-template-columns: minmax(0, 1fr); }
  .about__photo { max-width: 420px; }
  .cta__grid { grid-template-columns: minmax(0, 1fr); align-items: start; }
  .proc { grid-template-columns: minmax(0, 1fr); }
  .proc__step {
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
    padding: clamp(1.5rem, 5vw, 2rem) 0;
    padding-left: 0;
  }
  .proc__step:last-child { border-bottom: 0; }
  .proc__note { grid-template-columns: minmax(0, 1fr); }
  .foot__grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .foot__logo { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .sec-head__row { grid-template-columns: minmax(0, 1fr); align-items: start; }
  .sec-note { padding-bottom: 0; }
  .svc__row { grid-template-columns: minmax(0, 1fr); }
  .svc__row:nth-child(even) .svc__media { order: 0; }
  .svc__media { min-height: clamp(230px, 56vw, 340px); }
  .svc__text { padding: clamp(1.75rem, 6vw, 2.25rem) 0; }
  .svc__foot { grid-template-columns: minmax(0, 1fr); }
  .revs { grid-template-columns: minmax(0, 1fr); }
  .rev { border-right: 0; padding-inline: 0; }
  .rev:nth-last-child(-n+2) { border-bottom: 0; }
  .rev:last-child { border-bottom: 1px solid var(--line); }
  .intro__facts li { grid-template-columns: minmax(0, 1fr); gap: 0.25rem; }
  .compare { aspect-ratio: 4 / 3; }
  .compare__grip { width: 46px; height: 46px; }
  .foot__grid { grid-template-columns: minmax(0, 1fr); }
  .hero__tag { font-size: 0.75rem; padding: 0.55rem 0.85rem; }
}
