/* ============================================================
   SOME ASSEMBLY REQUIRED — KC
   Instruction-manual aesthetic: paper, ink, brand red.
   ============================================================ */

:root {
  --paper: #f7f4ee;
  --paper-deep: #efeae0;
  --ink: #17130e;
  --ink-soft: #4c463d;
  --red: #d92c20;
  --red-dark: #b31f15;
  --red-light: #ef6a60;
  --line: rgba(23, 19, 14, 0.16);
  --line-strong: rgba(23, 19, 14, 0.85);

  --font-display: "Anton", "Arial Narrow", sans-serif;
  --font-body: "Archivo", "Helvetica Neue", sans-serif;
  --font-mono: "IBM Plex Mono", "Courier New", monospace;

  --measure: 62ch;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --section-pad: clamp(4rem, 9vw, 7.5rem);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background-color: var(--ink);
}

:target,
:focus {
  scroll-margin-top: 6rem;
  scroll-margin-bottom: 2rem;
}

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background-color: var(--paper);
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--red); color: var(--paper); }

img, svg { max-width: 100%; display: block; }

a { color: inherit; }

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--ink);
  color: var(--paper);
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-200%);
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--red-dark);
  outline-offset: 3px;
  box-shadow: 0 0 0 5px var(--paper);
}

.wrap {
  max-width: 72rem;
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ---------- type ---------- */

h1, h2, h3, .display {
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: none;
  line-height: 1.04;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

h1 { font-size: clamp(3rem, 7.4vw, 5.9rem); }
h2 { font-size: clamp(2.15rem, 4.4vw, 3.35rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); letter-spacing: -0.015em; }

p { max-width: var(--measure); }

.lede {
  font-size: clamp(1.1rem, 1.8vw, 1.3rem);
  line-height: 1.6;
  color: var(--ink-soft);
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0.08em;
  color: var(--red-dark);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.1rem;
}
.eyebrow::before {
  content: "";
  width: 2.25rem;
  height: 2px;
  background: var(--red);
  flex: none;
}

.fig-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.mark { color: var(--red); }

/* ---------- utility bar ---------- */

.utility {
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: none;
  padding: 0.45rem 0;
}
.utility .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 2.5rem;
  justify-content: center;
  text-align: center;
}
/* ---------- header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--paper);
  border-bottom: 2px solid var(--line-strong);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 0.9rem;
}

.wordmark {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  text-decoration: none;
  flex: none;
}
.wordmark b {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.02rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 2px solid var(--ink);
  padding: 0.18rem 0.42rem 0.12rem;
  line-height: 1;
}
.wordmark svg { height: 1.35rem; width: auto; margin-left: 0.35rem; }

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2rem);
}
.site-nav a {
  font-family: var(--font-body);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: none;
  text-decoration: none;
  color: var(--ink-soft);
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
.site-nav a:hover { color: var(--ink); border-color: var(--red); }
.site-nav a[aria-current="page"] { color: var(--ink); border-color: var(--red); }

/* the Free Quote button keeps its button styling inside the nav */
.site-nav a.btn {
  font-size: 0.84rem;
  padding: 0.65rem 1.2rem;
  border: 2px solid var(--red-dark);
  color: #fff;
}
.site-nav a.btn:hover,
.site-nav a.btn[aria-current="page"] { color: #fff; border-color: var(--ink); }

.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--ink);
  min-height: 2.75rem;
  font-family: var(--font-body);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: none;
  padding: 0.45rem 0.7rem;
  cursor: pointer;
  color: var(--ink);
}

@media (max-width: 56em) {
  .site-nav {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding-top: 0.5rem;
  }
  .site-nav a { padding: 0.8rem 0; border-bottom: 1px solid var(--line); }
  .site-nav .btn { margin-top: 1rem; text-align: center; }

  .site-header .wrap { flex-wrap: wrap; }
  .js .site-header .wrap { flex-wrap: nowrap; }
  .js .nav-toggle { display: block; }
  .js .site-nav {
    display: none;
    position: absolute;
    inset: 100% 0 auto 0;
    width: auto;
    background: var(--paper);
    border-bottom: 2px solid var(--line-strong);
    padding: 0.5rem var(--gutter) 1.25rem;
  }
  .js .site-nav.open { display: flex; }
}

/* ---------- buttons ---------- */

.btn {
  display: inline-block;
  min-height: 2.75rem;
  font-family: var(--font-body);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: none;
  text-decoration: none;
  padding: 0.85rem 1.5rem;
  border: 2px solid var(--ink);
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  transition: transform 0.12s, box-shadow 0.12s, background 0.15s, color 0.15s;
}
.btn:hover { transform: translate(-2px, -2px); box-shadow: 4px 4px 0 var(--ink); }
.btn:active { transform: translate(0, 0); box-shadow: none; }

.btn-primary {
  background: var(--red);
  border-color: var(--red-dark);
  color: #fff;
}
.btn-primary:hover { box-shadow: 4px 4px 0 var(--ink); background: var(--red-dark); }

.btn-light { border-color: var(--paper); color: var(--paper); }
.btn-light:hover { box-shadow: 4px 4px 0 rgba(247, 244, 238, 0.55); }

/* ---------- hero ---------- */

.hero { padding-block: var(--section-pad); overflow: hidden; }
.hero .wrap {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
@media (max-width: 56em) {
  .hero .wrap { grid-template-columns: 1fr; }
  .hero-art { max-width: 24rem; margin-inline: auto; }
}

.hero h1 { margin-bottom: 1.4rem; }
.hero .lede { margin-bottom: 2.2rem; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }

.hero-art { position: relative; }
.hero-art .fig-label {
  margin-top: 0.9rem;
  text-align: center;
}

/* staggered reveal on load */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(18px);
    animation: rise 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
  }
  .reveal:nth-child(2) { animation-delay: 0.08s; }
  .reveal:nth-child(3) { animation-delay: 0.16s; }
  .reveal:nth-child(4) { animation-delay: 0.24s; }
  .hero-art.reveal { animation-delay: 0.2s; }
  @keyframes rise {
    to { opacity: 1; transform: none; }
  }
  .drift { animation: drift 5s ease-in-out infinite alternate; }
  @keyframes drift {
    from { transform: translateY(0); }
    to { transform: translateY(-8px); }
  }
}

/* ---------- sections ---------- */

.section { padding-block: clamp(3.75rem, 7vw, 6rem); }
.section-head { margin-bottom: clamp(2rem, 5vw, 3.5rem); }
.section-head h2 { margin-bottom: 0.9rem; }

.rule-top { border-top: 2px solid var(--line-strong); }

/* ---------- spec strip (trust stats) ---------- */

.spec-strip {
  border-block: 2px solid var(--line-strong);
  background: var(--paper);
}
.spec-strip .wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding-inline: 0;
}
.spec {
  padding: 1.6rem var(--gutter);
  border-right: 1px solid var(--line);
}
.spec:last-child { border-right: 0; }
.spec .fig-label { display: block; margin-bottom: 0.4rem; }
.spec strong {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.3rem, 2.4vw, 1.9rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.05;
  display: block;
}
.spec strong .mark { display: inline; }
@media (max-width: 56em) {
  .spec-strip .wrap { grid-template-columns: 1fr; }
  .spec { border-right: 0; border-bottom: 1px solid var(--line); }
  .spec:last-child { border-bottom: 0; }
}

/* ---------- parts list ---------- */

.parts { border: 2px solid var(--line-strong); background: #fff; }
.parts-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.85rem 1.25rem;
  border-bottom: 2px solid var(--line-strong);
  background: var(--ink);
  color: var(--paper);
}
.parts-head h3 { font-size: 1rem; letter-spacing: 0.08em; }
.parts-head .fig-label { color: rgba(247, 244, 238, 0.7); }
.parts ul { list-style: none; }
.parts li {
  padding: 0.85rem 1.25rem;
  border-bottom: 1px solid var(--line);
  font-size: 1rem;
}
.parts li:last-child { border-bottom: 0; }
.parts li strong { font-weight: 600; }

/* two-col section layout */
.split {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}
@media (max-width: 56em) { .split { grid-template-columns: 1fr; } }

/* ---------- steps ---------- */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 3vw, 2rem);
  counter-reset: step;
}
@media (max-width: 56em) { .steps { grid-template-columns: 1fr; } }

.step {
  counter-increment: step;
  border: 2px solid var(--line-strong);
  background: #fff;
  padding: 1.75rem 1.5rem 1.6rem;
  position: relative;
}
.step::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: -1.1rem;
  left: 1.25rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1;
  background: var(--red);
  color: #fff;
  padding: 0.35rem 0.6rem 0.25rem;
  border: 2px solid var(--ink);
}
.step h3 { margin: 0.6rem 0 0.7rem; }
.step p { font-size: 0.98rem; color: var(--ink-soft); }
.step .fig-label { display: block; margin-top: 1.1rem; }

/* ---------- quotes ---------- */

.quote-band { background: var(--ink); color: var(--paper); }
.quote-band .eyebrow { color: var(--red-light); }
.quote-band blockquote p {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: clamp(1.7rem, 4vw, 3rem);
  text-transform: none;
  line-height: 1.25;
  letter-spacing: -0.025em;
  max-width: 31ch;
}
.quote-band cite {
  display: block;
  margin-top: 1.5rem;
  font-style: normal;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(247, 244, 238, 0.65);
}

.t-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.25rem, 3vw, 2rem);
}
@media (max-width: 56em) { .t-grid { grid-template-columns: 1fr; } }

.t-card {
  border-top: 2px solid var(--line-strong);
  padding: 1.5rem 0 0;
}
.t-card:first-child {
  grid-column: 1 / -1;
  padding: 0 0 clamp(1rem, 3vw, 2rem);
  border-top: 0;
}
.t-card blockquote p { font-size: 1.08rem; line-height: 1.6; }
.t-card:first-child blockquote p {
  max-width: 28ch;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.025em;
}
.t-card cite {
  display: block;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px dashed var(--line);
  font-style: normal;
  font-family: var(--font-body);
  font-size: 0.82rem;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink-soft);
}
.t-card cite b { color: var(--red-dark); font-weight: 600; }

/* ---------- service area ---------- */

.chips { display: flex; flex-wrap: wrap; gap: 0.6rem; list-style: none; max-width: 40rem; }
.chips li {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  border: 1px solid var(--line-strong);
  padding: 0.4rem 0.8rem;
  background: transparent;
}
.chips li.hq { background: var(--ink); border-color: var(--ink); color: #fff; }

/* ---------- CTA band ---------- */

.cta-band {
  background: var(--red);
  color: #fff;
  border-block: 2px solid var(--ink);
  background-image: none;
}
.cta-band .wrap {
  padding-block: clamp(3.5rem, 7vw, 5.5rem);
  display: grid;
  grid-template-columns: minmax(0, 2fr) auto;
  gap: 2rem;
  align-items: center;
}
@media (max-width: 56em) { .cta-band .wrap { grid-template-columns: 1fr; } }
.cta-band h2 { margin-bottom: 0.6rem; }
.cta-band p { color: #fff; }
.cta-band .btn {
  min-height: 3rem;
  border-color: #fff;
  background: #fff;
  color: var(--red-dark);
}
.cta-band .btn:hover {
  border-color: var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  background: var(--paper);
  color: var(--red-dark);
}

/* ---------- FAQ ---------- */

.faq-list { border: 2px solid var(--line-strong); background: #fff; }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list details:last-child { border-bottom: 0; }
.faq-list summary {
  cursor: pointer;
  list-style: none;
  display: grid;
  grid-template-columns: 3.25rem 1fr 2rem;
  align-items: center;
  gap: 0.75rem;
  padding: 1.15rem 1.25rem;
  font-weight: 600;
  font-size: 1.02rem;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary .no {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
}
.faq-list summary .tick {
  font-family: var(--font-mono);
  color: var(--red);
  font-size: 1.1rem;
  text-align: center;
  transition: transform 0.2s;
}
.faq-list details[open] summary .tick { transform: rotate(45deg); }
.faq-list details[open] summary { background: var(--paper); }
.faq-list .answer {
  padding: 0 1.25rem 1.4rem 5.25rem;
  color: var(--ink-soft);
  font-size: 0.99rem;
}
@media (max-width: 47em) {
  .faq-list summary { grid-template-columns: 1fr 2rem; }
  .faq-list summary .no { display: none; }
  .faq-list .answer { padding-left: 1.25rem; }
}

/* ---------- pricing spec sheet ---------- */

.price-hero {
  border: 2px solid var(--line-strong);
  background: #fff;
  box-shadow: 8px 8px 0 var(--paper-deep);
}
.price-hero .top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.85rem 1.5rem;
  background: var(--ink);
  color: var(--paper);
}
.price-hero .top .fig-label { color: rgba(247, 244, 238, 0.7); }
.price-figure {
  padding: 2.5rem 1.5rem 0.75rem;
  text-align: center;
}
.price-figure .amount {
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 12vw, 7.5rem);
  line-height: 0.9;
  display: block;
}
.price-figure .amount sup { font-size: 0.35em; vertical-align: 1.35em; color: var(--red); }
.price-figure .per {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: block;
  margin-top: 0.9rem;
}
.price-lines { list-style: none; margin-top: 1.75rem; border-top: 2px solid var(--line-strong); }
.price-lines li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  padding: 0.95rem 1.5rem;
  border-bottom: 1px dashed var(--line);
  font-size: 0.98rem;
  align-items: baseline;
}
.price-lines li:last-child { border-bottom: 0; }
.price-lines .k { font-weight: 600; }
.price-lines .v {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  text-align: right;
}

.note {
  border-left: 3px solid var(--red);
  background: #fff;
  padding: 1rem 1.25rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
  max-width: var(--measure);
}

/* ---------- prose / about ---------- */

.prose > * + * { margin-top: 1.2rem; }

/* interior subheads are h2 for document outline, styled at h3 scale */
.prose h2,
.price-hero .top h2 {
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  letter-spacing: -0.015em;
}
.prose h2 { margin-top: 2.4rem; }

.contact-social-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(9.5rem, 1fr));
  gap: 0.75rem;
  margin-top: 1rem;
  list-style: none;
}

.contact-social-link.btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.7rem 0.9rem;
  background: #fff;
}

.pull {
  border: 0;
  border-top: 2px solid var(--line-strong);
  background: transparent;
  box-shadow: none;
  padding: 1.75rem 0 0;
}
.pull p {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: clamp(1.4rem, 3vw, 2rem);
  text-transform: none;
  line-height: 1.25;
  letter-spacing: -0.025em;
}
.pull .fig-label { display: block; margin-top: 1.1rem; }

.check-list { list-style: none; }
.check-list li {
  position: relative;
  padding: 0.45rem 0 0.45rem 1.5rem;
  font-size: 1rem;
}
.check-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0.38rem;
  color: var(--red-dark);
  font-size: 1.1rem;
}

/* ---------- forms ---------- */

.form-card {
  border: 1px solid var(--line-strong);
  background: #fff;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: none;
}
.field {
  min-width: 0;
  margin-bottom: 1.4rem;
}
.field label {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: none;
  margin-bottom: 0.45rem;
}
.field label .req { color: var(--red); }
.field label .field-qualifier {
  color: var(--ink-soft);
  font-size: 0.76rem;
  font-weight: 500;
}
.field input,
.field textarea,
.field select {
  display: block;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.75rem 0.9rem;
  border: 1.5px solid var(--line-strong);
  background: var(--paper);
  color: var(--ink);
  border-radius: 0;
}
.field input[type="date"] {
  box-sizing: content-box;
  width: calc(100% - 1.8rem - 3px);
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: 2px solid var(--red);
  outline-offset: 1px;
  border-color: var(--red);
}
.field input[aria-invalid="true"],
.field textarea[aria-invalid="true"],
.field select[aria-invalid="true"] {
  border-color: var(--red-dark);
  box-shadow: inset 0 0 0 1px var(--red-dark);
}
.field-error {
  margin-top: 0.45rem;
  color: var(--red-dark);
  font-size: 0.85rem;
  font-weight: 600;
}
.field-error[hidden] { display: none; }
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
@media (max-width: 40em) { .field-row { grid-template-columns: 1fr; } }

.form-note { font-size: 0.85rem; color: var(--ink-soft); margin-top: 1rem; }
.form-intro {
  margin-bottom: 1.5rem;
  color: var(--ink-soft);
  font-size: 0.85rem;
}
.form-intro span { color: var(--red-dark); }
.form-pricing { margin: 0 0 1.5rem; }
.form-privacy {
  margin: 0 0 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.875rem;
  line-height: 1.55;
}

/* ---------- footer ---------- */

.site-footer {
  background: var(--ink);
  color: var(--paper);
  margin-top: 0;
  border-top: 4px solid var(--red);
}
.site-footer .wrap {
  padding-block: clamp(3rem, 6vw, 4.5rem) 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.4fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(247, 244, 238, 0.18);
}
@media (max-width: 56em) { .footer-grid { grid-template-columns: 1fr; } }

.site-footer .wordmark b { border-color: var(--paper); color: var(--paper); }
.site-footer h4,
.site-footer .footer-heading {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: none;
  color: var(--red-light);
  margin-bottom: 1rem;
}
.site-footer ul { list-style: none; }
.site-footer li { padding: 0.22rem 0; font-size: 0.95rem; }
.site-footer a { text-decoration: none; color: rgba(247, 244, 238, 0.85); }
.site-footer a:hover { color: #fff; text-decoration: underline; text-decoration-color: var(--red); }
.site-footer .social-links {
  display: grid;
  gap: 0.35rem;
}
.site-footer .social-links li { padding: 0; }
.site-footer .social-link {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  min-height: 2.75rem;
}
.social-icon {
  width: 2rem;
  height: 2rem;
  flex: 0 0 auto;
  object-fit: contain;
}
.footer-tag {
  margin-top: 1.25rem;
  font-size: 0.95rem;
  color: rgba(247, 244, 238, 0.7);
  max-width: 30ch;
}
.footer-cities {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  line-height: 2;
  letter-spacing: 0.06em;
  color: rgba(247, 244, 238, 0.7);
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: none;
  color: rgba(247, 244, 238, 0.55);
}

/* ---------- page banner (interior pages) ---------- */

.page-banner {
  padding-block: clamp(3.75rem, 7vw, 5.75rem);
  border-bottom: 2px solid var(--line-strong);
}
.page-banner h1 { font-size: clamp(2.6rem, 7vw, 5rem); margin-bottom: 1rem; }
.page-banner .lede { max-width: 52ch; }

/* ---------- error page ---------- */

.error-hero {
  padding-block: clamp(4rem, 8vw, 7rem);
  border-bottom: 2px solid var(--line-strong);
}

.error-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(18rem, 0.92fr);
  gap: clamp(3rem, 7vw, 6rem);
  align-items: center;
}

.error-layout h1 {
  max-width: 10ch;
  margin-bottom: 1.35rem;
}

.error-layout .lede { max-width: 39rem; }

.error-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.error-diagram {
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid var(--line);
  background-color: var(--paper);
  background-image:
    linear-gradient(rgba(23, 19, 14, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 19, 14, 0.045) 1px, transparent 1px);
  background-size: 28px 28px;
}

.error-diagram .fig-label {
  margin-top: 0.75rem;
  text-align: center;
}

@media (max-width: 56em) {
  .error-layout { grid-template-columns: 1fr; }
  .error-diagram { max-width: 34rem; }
}

.form-status {
  margin-bottom: 1.5rem;
  padding: 1rem 1.1rem;
  border: 2px solid var(--line-strong);
  background: var(--paper-deep);
  font-weight: 600;
}

.form-status[hidden] { display: none; }
.form-status-error { border-color: var(--red-dark); }

.form-submit:disabled,
.form-submit:disabled:hover,
.form-submit:disabled:active {
  color: var(--ink-soft);
  background: var(--paper-deep);
  border-color: var(--line-strong);
  cursor: wait;
  transform: none;
  box-shadow: none;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ---------- homepage: editorial restraint ---------- */

.home-page .hero {
  padding-block: clamp(4rem, 7vw, 6.5rem);
}

.home-page .hero .wrap {
  grid-template-columns: minmax(0, 1.08fr) minmax(20rem, 0.92fr);
  gap: clamp(3rem, 7vw, 6rem);
}

.home-page .hero h1 {
  max-width: 10.5ch;
  margin-bottom: 1.6rem;
}

.home-page .hero .lede {
  max-width: 39rem;
}

.home-page .hero-art {
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid var(--line);
  background-color: var(--paper);
  background-image:
    linear-gradient(rgba(23, 19, 14, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 19, 14, 0.045) 1px, transparent 1px);
  background-size: 28px 28px;
}

.home-page .spec-strip {
  background: #fff;
  border-block-width: 1px;
}

.home-page .spec {
  padding-block: 1.5rem;
}

.home-page .spec strong {
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: none;
}

.home-page .spec > span {
  display: block;
  margin-top: 0.2rem;
  color: var(--ink-soft);
  font-size: 0.84rem;
}

.home-page .parts {
  border: 0;
  background: transparent;
}

.home-page .parts-head {
  padding: 0 0 1rem;
  border-bottom: 2px solid var(--ink);
  background: transparent;
  color: var(--ink);
}

.home-page .parts-head h3 {
  font-size: 1.15rem;
}

.home-page .parts li {
  display: block;
  padding: 0.9rem 0;
  border-color: var(--line);
}

.home-page .parts li strong {
  font-weight: 500;
}

.home-page .step {
  padding: 2rem 0 0;
  border: 0;
  border-top: 2px solid var(--ink);
  background: transparent;
}

.home-page .step::before {
  content: "Step " counter(step, decimal-leading-zero);
  position: static;
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--red-dark);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-page .step h3 {
  margin-top: 0.8rem;
}

.home-page .quote-band .wrap {
  padding-block: clamp(3.75rem, 7vw, 6rem);
}

.home-page .service-area-section .split {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}

.home-page .service-locations h3 {
  margin-bottom: 1rem;
  font-size: 1rem;
  letter-spacing: 0;
}

.home-page .cta-band .wrap {
  padding-block: clamp(3rem, 6vw, 4.5rem);
}

@media (max-width: 56em) {
  .home-page .hero .wrap {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .home-page .hero-art {
    max-width: 28rem;
  }

  .home-page .service-area-section .split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 30em) {
  .home-page h1 {
    font-size: clamp(2.75rem, 13vw, 3.7rem);
  }

  .home-page .hero {
    padding-block: 3.25rem 4rem;
  }

  .home-page .hero-art {
    padding: 0.75rem;
  }

  .cta-band .btn {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 24em) {
  .wordmark {
    gap: 0.24rem;
  }

  .wordmark b {
    padding-inline: 0.28rem;
    font-size: 0.84rem;
  }

  .wordmark svg {
    height: 1.15rem;
    margin-left: 0.2rem;
  }

  .site-header .wrap {
    gap: 0.75rem;
  }
}
@font-face {
  font-family: "Anton";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/anton-latin-400.woff2") format("woff2");
}

@font-face {
  font-family: "Archivo";
  font-style: normal;
  font-weight: 400 700;
  font-stretch: 100%;
  font-display: swap;
  src: url("/assets/fonts/archivo-latin-variable.woff2") format("woff2");
}

@font-face {
  font-family: "IBM Plex Mono";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/ibm-plex-mono-latin-400.woff2") format("woff2");
}

@font-face {
  font-family: "IBM Plex Mono";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/assets/fonts/ibm-plex-mono-latin-500.woff2") format("woff2");
}

@font-face {
  font-family: "IBM Plex Mono";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/assets/fonts/ibm-plex-mono-latin-600.woff2") format("woff2");
}
