/* ==========================================================================
   TRUE SHINES · VARIANT C · BRUTALIST (CONCRETE SLAB)
   Bone / ink / hazard orange. Space Grotesk + Inter + JetBrains Mono.
   Visible 4px borders. ALL-CAPS. Instant hover. No motion.
   ========================================================================== */

/* Reset --------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: auto; /* NO smooth scroll */
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: #0a0a0a;
  background: #f4f0e8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

input,
textarea,
select {
  font: inherit;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

/* Tokens -------------------------------------------------------------------- */
:root {
  --bone: #f4f0e8;
  --bone-darker: #e8e2d4;
  --ink: #0a0a0a;
  --ink-soft: #2a2a2a;
  --hazard: #ff6b1a;
  --rule: 4px;
  --gutter: 24px;
  --max: 1440px;
  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', 'Courier New', monospace;
}

/* Typography ---------------------------------------------------------------- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--ink);
}

h1 {
  font-size: clamp(48px, 12vw, 192px);
  line-height: 0.85;
  letter-spacing: -0.05em;
}

h2 {
  font-size: clamp(36px, 7vw, 96px);
  line-height: 0.9;
  letter-spacing: -0.04em;
}

h3 {
  font-size: clamp(24px, 3.5vw, 48px);
  line-height: 1;
  letter-spacing: -0.03em;
}

h4 {
  font-size: clamp(18px, 2vw, 28px);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

p {
  font-size: 17px;
  line-height: 1.6;
}

.allcaps {
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.mono {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.mono-small {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.4;
}

.display-stat {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(80px, 18vw, 280px);
  line-height: 0.85;
  letter-spacing: -0.06em;
}

/* Layout -------------------------------------------------------------------- */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

.grid-12 {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--gutter);
}

/* Section: bordered slab ---------------------------------------------------- */
.slab {
  border: var(--rule) solid var(--ink);
  background: var(--bone);
}

.slab--ink {
  background: var(--ink);
  color: var(--bone);
}

.slab--ink h1,
.slab--ink h2,
.slab--ink h3,
.slab--ink h4 {
  color: var(--bone);
}

.slab--hazard {
  background: var(--hazard);
  color: var(--ink);
}

/* Section spacing ----------------------------------------------------------- */
section {
  padding: 64px 0;
}

@media (min-width: 768px) {
  section {
    padding: 96px 0;
  }
}

/* Header / Nav -------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bone);
  border-bottom: var(--rule) solid var(--ink);
}

.nav {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  height: 72px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-right: 16px;
  border-right: var(--rule) solid var(--ink);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.nav-brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--ink);
  color: var(--bone);
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
}

.nav-menu {
  display: none;
  align-items: stretch;
}

@media (min-width: 900px) {
  .nav-menu {
    display: flex;
    flex: 1;
  }
}

.nav-menu a {
  display: flex;
  align-items: center;
  padding: 0 24px;
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-left: var(--rule) solid var(--ink);
}

.nav-menu a:hover {
  background: var(--ink);
  color: var(--bone);
  transform: translate(0, -2px);
}

.nav-menu a.active {
  background: var(--hazard);
  color: var(--ink);
}

.nav-cta {
  display: none;
  align-items: center;
  gap: 0;
  border-left: var(--rule) solid var(--ink);
}

@media (min-width: 900px) {
  .nav-cta {
    display: flex;
  }
}

.nav-phone {
  display: flex;
  align-items: center;
  padding: 0 20px;
  font-family: var(--font-mono);
  font-size: 13px;
  border-right: var(--rule) solid var(--ink);
}

.nav-cta-btn {
  display: flex;
  align-items: center;
  padding: 0 24px;
  background: var(--hazard);
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.nav-cta-btn:hover {
  background: var(--ink);
  color: var(--hazard);
}

.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  border-left: var(--rule) solid var(--ink);
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

@media (min-width: 900px) {
  .nav-toggle {
    display: none;
  }
}

.nav-toggle:hover {
  background: var(--hazard);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  border-top: var(--rule) solid var(--ink);
  background: var(--bone);
}

.mobile-menu.is-open {
  display: flex;
}

@media (min-width: 900px) {
  .mobile-menu.is-open {
    display: none;
  }
}

.mobile-menu a {
  padding: 20px 24px;
  font-family: var(--font-mono);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-bottom: var(--rule) solid var(--ink);
}

.mobile-menu a:hover {
  background: var(--ink);
  color: var(--bone);
}

/* Buttons ------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px 32px;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: var(--rule) solid var(--ink);
  background: var(--bone);
  color: var(--ink);
}

.btn:hover {
  background: var(--ink);
  color: var(--bone);
  transform: translate(0, -4px);
}

.btn--hazard {
  background: var(--hazard);
  color: var(--ink);
  border-color: var(--ink);
}

.btn--hazard:hover {
  background: var(--ink);
  color: var(--hazard);
}

.btn--ink {
  background: var(--ink);
  color: var(--bone);
}

.btn--ink:hover {
  background: var(--hazard);
  color: var(--ink);
}

.btn-arrow {
  display: inline-block;
  font-family: var(--font-mono);
}

/* Hero ---------------------------------------------------------------------- */
.hero {
  border-bottom: var(--rule) solid var(--ink);
  position: relative;
  padding: 0;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  border-bottom: 0;
}

@media (min-width: 900px) {
  .hero-inner {
    grid-template-columns: 8fr 4fr;
  }
}

.hero-main {
  padding: 48px 24px;
  border-right: 0;
  border-bottom: var(--rule) solid var(--ink);
}

@media (min-width: 900px) {
  .hero-main {
    padding: 80px 48px;
    border-right: var(--rule) solid var(--ink);
    border-bottom: 0;
  }
}

.hero-kicker {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero-kicker span {
  padding: 6px 10px;
  border: var(--rule) solid var(--ink);
  background: var(--bone);
}

.hero-kicker span:first-child {
  background: var(--hazard);
}

.hero-statement {
  margin-bottom: 48px;
}

.hero-statement .word {
  display: block;
}

.hero-statement .word--accent {
  color: var(--hazard);
}

.hero-side {
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (min-width: 900px) {
  .hero-side {
    padding: 48px 32px;
  }
}

.hero-side .stat-block {
  border: var(--rule) solid var(--ink);
  padding: 24px;
  background: var(--bone);
}

.hero-side .stat-block--hazard {
  background: var(--hazard);
}

.hero-side .stat-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(64px, 10vw, 120px);
  line-height: 0.85;
  letter-spacing: -0.06em;
}

.hero-side .stat-label {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 8px;
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: var(--rule) solid var(--ink);
  border-bottom: var(--rule) solid var(--ink);
}

.hero-stats .stat {
  padding: 32px 24px;
  border-right: var(--rule) solid var(--ink);
}

.hero-stats .stat:last-child {
  border-right: 0;
}

@media (max-width: 600px) {
  .hero-stats {
    grid-template-columns: 1fr;
  }
  .hero-stats .stat {
    border-right: 0;
    border-bottom: var(--rule) solid var(--ink);
  }
  .hero-stats .stat:last-child {
    border-bottom: 0;
  }
}

.hero-stats .stat-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(56px, 12vw, 128px);
  line-height: 0.85;
  letter-spacing: -0.05em;
}

.hero-stats .stat-label {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 8px;
}

/* Section header ----------------------------------------------------------- */
.section-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 48px;
}

@media (min-width: 768px) {
  .section-head {
    grid-template-columns: 4fr 8fr;
    align-items: end;
  }
}

.section-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.section-kicker::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 4px;
  background: var(--hazard);
}

.section-num {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink);
}

/* Routes list (25 neighbourhoods) ----------------------------------------- */
.routes {
  display: grid;
  grid-template-columns: 1fr;
  border: var(--rule) solid var(--ink);
}

@media (min-width: 600px) {
  .routes {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 900px) {
  .routes {
    grid-template-columns: repeat(5, 1fr);
  }
}

.route {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px;
  border-right: var(--rule) solid var(--ink);
  border-bottom: var(--rule) solid var(--ink);
  font-family: var(--font-mono);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--bone);
}

.route:hover {
  background: var(--hazard);
  color: var(--ink);
  transform: translate(0, -2px);
}

.route-num {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--ink-soft);
}

.route-name {
  flex: 1;
  font-weight: 700;
}

.route-arrow {
  font-family: var(--font-mono);
  font-size: 14px;
}

/* 3-point grid (INSURED / BONDED / BACKGROUND-CHECKED) ------------------- */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  border: var(--rule) solid var(--ink);
}

@media (min-width: 768px) {
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.why-cell {
  padding: 48px 32px;
  border-right: var(--rule) solid var(--ink);
  border-bottom: var(--rule) solid var(--ink);
  background: var(--bone);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.why-cell:last-child {
  border-right: 0;
}

@media (max-width: 767px) {
  .why-cell {
    border-right: 0;
  }
  .why-cell:last-child {
    border-bottom: 0;
  }
}

.why-num {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.why-cell h3 {
  font-size: clamp(28px, 4vw, 48px);
  text-transform: uppercase;
}

.why-cell p {
  font-size: 16px;
  line-height: 1.5;
}

/* Service card grid -------------------------------------------------------- */
.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  border: var(--rule) solid var(--ink);
}

@media (min-width: 768px) {
  .service-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1100px) {
  .service-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  padding: 32px;
  border-right: var(--rule) solid var(--ink);
  border-bottom: var(--rule) solid var(--ink);
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: var(--bone);
}

.service-card:hover {
  background: var(--ink);
  color: var(--bone);
  transform: translate(0, -4px);
}

.service-card:hover .service-num,
.service-card:hover .service-tag,
.service-card:hover .service-price {
  color: var(--hazard);
}

.service-card:hover h3 {
  color: var(--bone);
}

.service-num {
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 0.1em;
  color: var(--ink);
}

.service-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.service-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 8px;
  border: var(--rule) solid var(--ink);
  color: var(--ink);
}

.service-card h3 {
  font-size: clamp(24px, 3vw, 36px);
  text-transform: uppercase;
  line-height: 1;
}

.service-card p {
  font-size: 16px;
  line-height: 1.5;
}

.service-price {
  font-family: var(--font-mono);
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 12px 16px;
  border: var(--rule) solid var(--ink);
  background: var(--hazard);
  color: var(--ink);
  font-weight: 700;
  align-self: flex-start;
}

.service-card:hover .service-price {
  background: var(--hazard);
  color: var(--ink);
  border-color: var(--hazard);
}

.service-includes {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 16px;
  border-top: var(--rule) solid var(--ink);
}

.service-card:hover .service-includes {
  border-top-color: var(--bone);
}

.service-includes .label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.service-includes li {
  font-family: var(--font-mono);
  font-size: 13px;
  padding-left: 24px;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.service-includes li::before {
  content: '+';
  position: absolute;
  left: 0;
  font-family: var(--font-mono);
  color: var(--hazard);
  font-weight: 700;
}

.service-card:hover .service-includes li::before {
  color: var(--hazard);
}

/* Pricing table ------------------------------------------------------------ */
.pricing-table {
  border: var(--rule) solid var(--ink);
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-mono);
}

.pricing-table thead {
  background: var(--ink);
  color: var(--bone);
}

.pricing-table th {
  padding: 16px 20px;
  text-align: left;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  border-right: var(--rule) solid var(--bone);
}

.pricing-table th:last-child {
  border-right: 0;
}

.pricing-table td {
  padding: 20px;
  border-right: var(--rule) solid var(--ink);
  border-bottom: var(--rule) solid var(--ink);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.pricing-table td:last-child {
  border-right: 0;
}

.pricing-table tr:last-child td {
  border-bottom: 0;
}

.pricing-table tr:hover td {
  background: var(--hazard);
}

.pricing-table .col-num {
  width: 60px;
  color: var(--ink-soft);
}

.pricing-table .col-price {
  text-align: right;
  font-weight: 700;
}

/* Process steps ------------------------------------------------------------ */
.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  border: var(--rule) solid var(--ink);
}

@media (min-width: 600px) {
  .process-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1100px) {
  .process-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.process-step {
  padding: 40px 32px;
  border-right: var(--rule) solid var(--ink);
  border-bottom: var(--rule) solid var(--ink);
  background: var(--bone);
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 320px;
}

.process-step:last-child {
  border-right: 0;
}

@media (max-width: 1099px) {
  .process-step {
    border-right: var(--rule) solid var(--ink);
  }
}

.process-step:hover {
  background: var(--ink);
  color: var(--bone);
  transform: translate(0, -4px);
}

.process-step:hover h3,
.process-step:hover .process-num {
  color: var(--hazard);
}

.process-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(80px, 12vw, 160px);
  line-height: 0.85;
  letter-spacing: -0.06em;
  color: var(--ink);
}

.process-step h3 {
  font-size: clamp(24px, 3vw, 40px);
  text-transform: uppercase;
}

.process-step p {
  font-size: 16px;
  line-height: 1.5;
}

.process-step .process-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: auto;
  padding-top: 16px;
  border-top: var(--rule) solid currentColor;
  display: inline-block;
  align-self: flex-start;
}

/* 24h guarantee callout ---------------------------------------------------- */
.guarantee {
  display: grid;
  grid-template-columns: 1fr;
  border: var(--rule) solid var(--ink);
  background: var(--hazard);
  margin-top: 48px;
}

@media (min-width: 768px) {
  .guarantee {
    grid-template-columns: 4fr 8fr;
  }
}

.guarantee-left {
  padding: 32px;
  border-right: 0;
  border-bottom: var(--rule) solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .guarantee-left {
    border-right: var(--rule) solid var(--ink);
    border-bottom: 0;
    padding: 48px;
  }
}

.guarantee-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(80px, 14vw, 200px);
  line-height: 0.85;
  letter-spacing: -0.06em;
}

.guarantee-right {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}

@media (min-width: 768px) {
  .guarantee-right {
    padding: 48px;
  }
}

.guarantee-right .label {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.guarantee-right h3 {
  font-size: clamp(32px, 4vw, 56px);
  text-transform: uppercase;
}

.guarantee-right p {
  font-size: 18px;
  line-height: 1.5;
  max-width: 600px;
}

/* Reviews ------------------------------------------------------------------- */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  border: var(--rule) solid var(--ink);
}

@media (min-width: 900px) {
  .reviews-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.review {
  padding: 32px;
  border-right: var(--rule) solid var(--ink);
  border-bottom: var(--rule) solid var(--ink);
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: var(--bone);
  position: relative;
}

.review:hover {
  background: var(--ink);
  color: var(--bone);
  transform: translate(0, -4px);
}

.review:hover .review-stamp {
  background: var(--hazard);
  color: var(--ink);
  border-color: var(--hazard);
}

.review:hover .review-credit {
  color: var(--hazard);
}

.review:hover .review-num {
  color: var(--hazard);
}

.review-stamp {
  position: absolute;
  top: 16px;
  right: 16px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 8px;
  background: var(--hazard);
  color: var(--ink);
  border: var(--rule) solid var(--ink);
  transform: rotate(2deg);
}

.review-num {
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 0.1em;
  color: var(--ink);
}

.review-stars {
  font-family: var(--font-mono);
  font-size: 18px;
  letter-spacing: 4px;
  color: var(--hazard);
}

.review blockquote {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.3;
  letter-spacing: -0.02em;
  text-transform: none;
}

.review-credit {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: auto;
  padding-top: 16px;
  border-top: var(--rule) solid currentColor;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

/* Reviews summary block ---------------------------------------------------- */
.reviews-summary {
  margin-top: 64px;
  display: grid;
  grid-template-columns: 1fr;
  border: var(--rule) solid var(--ink);
  background: var(--ink);
  color: var(--bone);
}

@media (min-width: 768px) {
  .reviews-summary {
    grid-template-columns: 1fr 1fr;
  }
}

.reviews-summary .cell {
  padding: 48px 32px;
  border-right: 0;
  border-bottom: var(--rule) solid var(--bone);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.reviews-summary .cell:last-child {
  border-bottom: 0;
}

@media (min-width: 768px) {
  .reviews-summary .cell {
    border-right: var(--rule) solid var(--bone);
    border-bottom: 0;
  }
  .reviews-summary .cell:last-child {
    border-right: 0;
  }
}

.reviews-summary .label {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--hazard);
}

.reviews-summary .num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(80px, 14vw, 200px);
  line-height: 0.85;
  letter-spacing: -0.06em;
}

.reviews-summary .num .star {
  color: var(--hazard);
}

/* Contact form ------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border: var(--rule) solid var(--ink);
}

@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 7fr 5fr;
  }
}

.contact-form-wrap {
  padding: 32px;
  border-right: 0;
  border-bottom: var(--rule) solid var(--ink);
}

@media (min-width: 900px) {
  .contact-form-wrap {
    padding: 48px;
    border-right: var(--rule) solid var(--ink);
    border-bottom: 0;
  }
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 600px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 16px;
  background: var(--bone);
  border: var(--rule) solid var(--ink);
  font-family: var(--font-mono);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  background: var(--hazard);
}

.form-field textarea {
  resize: vertical;
  min-height: 140px;
  text-transform: none;
  font-family: var(--font-body);
  font-size: 15px;
  letter-spacing: normal;
}

.contact-aside {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: var(--bone);
}

@media (min-width: 900px) {
  .contact-aside {
    padding: 48px;
  }
}

.contact-block {
  border: var(--rule) solid var(--ink);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: var(--bone);
}

.contact-block .label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.contact-block .value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(20px, 2.4vw, 32px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.contact-block a:hover {
  color: var(--hazard);
}

.map-wrap {
  border: var(--rule) solid var(--ink);
  background: var(--bone);
  margin-top: 48px;
  height: 400px;
  overflow: hidden;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: grayscale(1) contrast(1.1);
}

/* Service area 5-col grid ------------------------------------------------- */
.area-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: var(--rule) solid var(--ink);
}

@media (min-width: 600px) {
  .area-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 900px) {
  .area-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.area-cell {
  padding: 16px 20px;
  border-right: var(--rule) solid var(--ink);
  border-bottom: var(--rule) solid var(--ink);
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  background: var(--bone);
  display: flex;
  align-items: center;
  gap: 8px;
}

.area-cell:hover {
  background: var(--hazard);
  transform: translate(0, -2px);
}

.area-cell .num {
  color: var(--ink-soft);
  font-size: 10px;
}

/* CTA section -------------------------------------------------------------- */
.cta-band {
  background: var(--ink);
  color: var(--bone);
  border-top: var(--rule) solid var(--ink);
  border-bottom: var(--rule) solid var(--ink);
  padding: 64px 0;
}

.cta-band h2 {
  color: var(--bone);
  text-transform: uppercase;
  font-size: clamp(40px, 8vw, 120px);
  line-height: 0.9;
  margin-bottom: 32px;
}

.cta-band h2 .accent {
  color: var(--hazard);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

/* Footer ------------------------------------------------------------------- */
.site-footer {
  background: var(--ink);
  color: var(--bone);
  padding: 64px 0 0;
  border-top: var(--rule) solid var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-bottom: var(--rule) solid var(--bone);
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-col {
  padding: 32px 24px;
  border-right: 0;
  border-bottom: var(--rule) solid var(--bone);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col:last-child {
  border-bottom: 0;
}

@media (min-width: 768px) {
  .footer-col {
    border-right: var(--rule) solid var(--bone);
    border-bottom: 0;
  }
  .footer-col:last-child {
    border-right: 0;
  }
}

.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--hazard);
  margin-bottom: 8px;
  font-weight: 700;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col a {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-col a:hover {
  color: var(--hazard);
}

.footer-bar {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  justify-content: space-between;
  padding: 24px;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

@media (min-width: 768px) {
  .footer-bar {
    flex-direction: row;
    align-items: center;
  }
}

.footer-bar .meta {
  color: var(--bone);
  opacity: 0.6;
}

/* Page hero (sub-pages) ---------------------------------------------------- */
.page-hero {
  padding: 64px 0 48px;
  border-bottom: var(--rule) solid var(--ink);
}

@media (min-width: 768px) {
  .page-hero {
    padding: 96px 0 64px;
  }
}

.page-hero .kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}

.page-hero .kicker .num {
  padding: 4px 8px;
  background: var(--hazard);
  border: var(--rule) solid var(--ink);
}

.page-hero h1 {
  margin-bottom: 24px;
}

.page-hero .lede {
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.4;
  max-width: 720px;
}

/* "We [verb] the [noun]" statement blocks --------------------------------- */
.statement {
  padding: 80px 24px;
  text-align: center;
  border: var(--rule) solid var(--ink);
  background: var(--bone);
}

.statement .label {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
  display: inline-block;
  padding: 4px 8px;
  background: var(--hazard);
  border: var(--rule) solid var(--ink);
}

.statement h2 {
  font-size: clamp(48px, 10vw, 144px);
  text-transform: uppercase;
  line-height: 0.9;
  letter-spacing: -0.05em;
}

.statement h2 .accent {
  color: var(--hazard);
}

/* Image grid (for index/feature blocks) ---------------------------------- */
.feature-row {
  display: grid;
  grid-template-columns: 1fr;
  border: var(--rule) solid var(--ink);
}

@media (min-width: 900px) {
  .feature-row {
    grid-template-columns: 1fr 1fr;
  }
}

.feature-img {
  position: relative;
  min-height: 360px;
  background: var(--ink);
  border-right: 0;
  border-bottom: var(--rule) solid var(--ink);
  overflow: hidden;
}

@media (min-width: 900px) {
  .feature-img {
    border-right: var(--rule) solid var(--ink);
    border-bottom: 0;
    min-height: 480px;
  }
}

.feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(0.4) contrast(1.05);
}

.feature-img-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: var(--hazard);
  color: var(--ink);
  padding: 6px 10px;
  border: var(--rule) solid var(--ink);
  font-weight: 700;
}

.feature-content {
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
}

@media (min-width: 900px) {
  .feature-content {
    padding: 64px 48px;
  }
}

.feature-content .label {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.feature-content h3 {
  font-size: clamp(28px, 3.5vw, 48px);
  text-transform: uppercase;
  line-height: 1;
}

.feature-content p {
  font-size: 17px;
  line-height: 1.6;
  max-width: 540px;
}

/* Manifesto grid (services hero etc) ------------------------------------- */
.manifesto {
  display: grid;
  grid-template-columns: 1fr;
  border: var(--rule) solid var(--ink);
  background: var(--bone);
}

@media (min-width: 768px) {
  .manifesto {
    grid-template-columns: repeat(3, 1fr);
  }
}

.manifesto-cell {
  padding: 32px;
  border-right: 0;
  border-bottom: var(--rule) solid var(--ink);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.manifesto-cell:last-child {
  border-bottom: 0;
}

@media (min-width: 768px) {
  .manifesto-cell {
    border-right: var(--rule) solid var(--ink);
  }
  .manifesto-cell:last-child {
    border-right: 0;
  }
}

.manifesto-cell .num {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--hazard);
}

.manifesto-cell h4 {
  font-size: clamp(20px, 2.4vw, 28px);
  text-transform: uppercase;
}

.manifesto-cell p {
  font-size: 15px;
  line-height: 1.5;
}

/* 2-col content split ----------------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border: var(--rule) solid var(--ink);
}

@media (min-width: 900px) {
  .split {
    grid-template-columns: 5fr 7fr;
  }
}

.split-left {
  padding: 32px;
  border-right: 0;
  border-bottom: var(--rule) solid var(--ink);
  background: var(--ink);
  color: var(--bone);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 900px) {
  .split-left {
    padding: 48px;
    border-right: var(--rule) solid var(--bone);
    border-bottom: 0;
  }
}

.split-left h2 {
  color: var(--bone);
  text-transform: uppercase;
}

.split-left .label {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--hazard);
}

.split-right {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 900px) {
  .split-right {
    padding: 48px;
  }
}

/* Utilities ---------------------------------------------------------------- */
.stack {
  display: flex;
  flex-direction: column;
}

.row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-6 { margin-top: 48px; }
.mt-8 { margin-top: 64px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-6 { margin-bottom: 48px; }
.mb-8 { margin-bottom: 64px; }

.text-hazard { color: var(--hazard); }
.text-mono { font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.06em; }
.text-mono-sm { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.upper { text-transform: uppercase; }

/* Selection ---------------------------------------------------------------- */
::selection {
  background: var(--hazard);
  color: var(--ink);
}

/* Disabled hover-flip for touch (still works as :hover, no transitions) - no-op */

/* Reduced motion (no actual animations exist, but respect preference) ----- */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}
