/* ============================================
   ON-CALL SERVICES — Utilitarian Industrial
   ============================================ */

:root {
  /* Ink & paper — cooler, concrete-like neutrals */
  --ink: #0d0d0d;
  --ink-soft: #1c1c1c;
  --paper: #ecebe6;
  --paper-cool: #dedcd4;
  --paper-warm: #e3e1d9;

  /* Brand — matched to logo */
  --orange: #ec5b2b;
  --orange-deep: #c8401a;
  --orange-soft: #f7a687;

  /* Utility greys for spec-sheet feel */
  --steel: #7a7a75;
  --steel-soft: #a5a5a0;
  --line: rgba(13, 13, 13, 0.22);
  --line-soft: rgba(13, 13, 13, 0.12);
  --line-strong: rgba(13, 13, 13, 0.55);

  /* Status */
  --live: #2a8c4a;

  /* Type */
  --sans: "Archivo", ui-sans-serif, system-ui, -apple-system, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, Menlo, monospace;

  /* Metrics */
  --gutter: clamp(20px, 3vw, 40px);
  --radius: 0px; /* hard edges */

  /* Hazard stripe */
  --hazard: repeating-linear-gradient(
    135deg,
    var(--ink) 0 12px,
    var(--orange) 12px 24px
  );
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--sans);
  font-weight: 400;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Subtle paper grain */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 200;
  opacity: 0.28;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.07 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

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

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

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

/* Kill default italic — em becomes a brand highlight, not a flourish */
em {
  font-style: normal;
  color: var(--orange);
  font-weight: 600;
}

/* ============================================
   Typography system
   ============================================ */

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
}

.eyebrow--muted {
  color: var(--steel);
}

.mono {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.02em;
}

h1,
h2,
h3,
h4 {
  font-family: var(--sans);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.02;
}

/* ============================================
   Layout primitives
   ============================================ */

.shell {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

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

.rule--ink {
  border-color: var(--ink);
  border-top-width: 2px;
}

/* Hazard stripe block — signature accent */
.hazard-bar {
  height: 10px;
  background: var(--hazard);
  width: 100%;
}

/* ============================================
   24/7 "round-clock" banner
   ============================================ */
.round-clock {
  background: var(--ink);
  color: var(--paper);
  padding: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-image: var(--hazard) 1;
}

.round-clock__grid {
  display: grid;
  grid-template-columns: auto auto auto 1fr;
  align-items: stretch;
  gap: 0;
}

.round-clock__item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 28px 36px;
  border-right: 1px solid rgba(236, 235, 230, 0.2);
  justify-content: center;
}

.round-clock__item:last-child {
  border-right: none;
}

.round-clock__num {
  font-family: var(--sans);
  font-weight: 800;
  font-stretch: 80%;
  font-size: clamp(56px, 8vw, 120px);
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: var(--orange);
}

.round-clock__label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--paper);
  font-weight: 600;
}

.round-clock__cta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding: 28px 36px;
  text-align: right;
}

.round-clock__cta-head {
  font-family: var(--sans);
  font-weight: 800;
  font-stretch: 88%;
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.round-clock__cta-head em {
  color: var(--orange);
  font-weight: 800;
}

.round-clock__cta-phone {
  font-family: var(--mono);
  font-size: clamp(16px, 1.6vw, 22px);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--paper);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: color 0.18s ease;
  justify-content: flex-end;
}

.round-clock__cta-phone:hover {
  color: var(--orange);
}

.round-clock__cta-phone::before {
  content: "";
  width: 10px;
  height: 10px;
  background: var(--live);
  box-shadow: 0 0 0 4px rgba(42, 140, 74, 0.2);
  animation: rc-pulse 1.8s ease-in-out infinite;
}

@keyframes rc-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

@media (max-width: 900px) {
  .round-clock__grid {
    grid-template-columns: 1fr 1fr;
  }
  .round-clock__cta {
    grid-column: span 2;
    text-align: left;
    border-top: 1px solid rgba(236, 235, 230, 0.2);
  }
  .round-clock__cta-phone {
    justify-content: flex-start;
  }
}

/* ============================================
   Navigation
   ============================================ */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--paper);
  border-bottom: 2px solid var(--ink);
  backdrop-filter: blur(8px);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo__mark {
  width: 36px;
  height: 20px;
  border-radius: 999px;
  background: var(--orange);
  position: relative;
  flex-shrink: 0;
}

.logo__mark::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--paper);
}

.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 3px;
}

.logo__name {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.logo__tag {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--steel);
}

.nav__links {
  display: flex;
  gap: 2px;
  list-style: none;
}

.nav__links a {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.15s ease, color 0.15s ease;
}

.nav__links a:hover {
  background: var(--ink);
  color: var(--paper);
}

.nav__links a.is-active {
  background: var(--ink);
  color: var(--paper);
}

.nav__cta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.phone-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 600;
  padding: 10px 14px;
  border: 1.5px solid var(--ink);
  transition: background 0.15s ease, color 0.15s ease;
}

.phone-chip:hover {
  background: var(--ink);
  color: var(--paper);
}

.phone-chip::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--live);
}

/* Buttons — square, technical */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1.5px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
  cursor: pointer;
  white-space: nowrap;
}

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

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

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

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

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}

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

.btn__arrow {
  display: inline-block;
  transition: transform 0.15s ease;
}

.btn:hover .btn__arrow {
  transform: translateX(3px);
}

/* ============================================
   HERO
   ============================================ */

.hero {
  position: relative;
  padding: clamp(40px, 6vw, 80px) 0 clamp(60px, 8vw, 120px);
  overflow: hidden;
}

.hero__meta {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 32px;
  align-items: end;
  padding-bottom: 20px;
  border-bottom: 1.5px solid var(--ink);
  margin-bottom: clamp(40px, 7vw, 80px);
}

.hero__meta-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hero__meta-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--steel);
}

.hero__meta-value {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink);
}

.hero__headline {
  position: relative;
}

.hero__headline .line {
  display: block;
  font-family: var(--sans);
  font-weight: 800;
  font-stretch: 85%;
  font-size: clamp(56px, 13vw, 200px);
  line-height: 0.86;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.hero__headline .line--indent {
  padding-left: clamp(60px, 12vw, 180px);
}

.hero__headline .orange {
  color: var(--orange);
}

.hero__headline .strike {
  text-decoration: underline;
  text-decoration-thickness: 6px;
  text-decoration-color: var(--orange);
  text-underline-offset: -0.08em;
  text-decoration-skip-ink: none;
}

.hero__body {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 32px;
  margin-top: clamp(40px, 6vw, 80px);
  align-items: start;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}

.hero__body-left {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero__body-mid {
  max-width: 54ch;
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.5;
  color: var(--ink-soft);
}

.hero__body-mid .lede {
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 18px;
}

.hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.hero__body-right {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 1.5px solid var(--ink);
}

.counter {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}

.counter:last-child {
  border-bottom: none;
}

.counter__value {
  font-family: var(--sans);
  font-weight: 800;
  font-stretch: 85%;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  color: var(--ink);
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.counter__value em {
  color: var(--orange);
  font-size: 0.6em;
  font-weight: 700;
  font-stretch: 100%;
}

.counter__label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel);
  line-height: 1.4;
}

/* ============================================
   Section blueprint
   ============================================ */

.section {
  padding: clamp(60px, 9vw, 140px) 0;
  position: relative;
}

.section--ink {
  background: var(--ink);
  color: var(--paper);
}

.section--warm {
  background: var(--paper-cool);
}

.section__header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: baseline;
  padding-bottom: 20px;
  margin-bottom: clamp(30px, 4vw, 60px);
  border-bottom: 1.5px solid var(--ink);
}

.section--ink .section__header {
  border-bottom-color: var(--paper);
}

.section__index {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel);
  align-self: flex-start;
  padding-top: 10px;
  font-weight: 500;
}

.section--ink .section__index {
  color: var(--steel-soft);
}

.section__title {
  font-family: var(--sans);
  font-weight: 800;
  font-stretch: 90%;
  font-size: clamp(32px, 5vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  max-width: 18ch;
  text-transform: uppercase;
}

.section__meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steel);
  text-align: right;
  max-width: 24ch;
  line-height: 1.6;
  padding-top: 12px;
}

/* ============================================
   Value props strip
   ============================================ */

.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1.5px solid var(--ink);
}

.value {
  padding: 36px 28px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  background: var(--paper);
  transition: background 0.2s ease;
}

.value:last-child {
  border-right: none;
}

.value:hover {
  background: var(--paper-cool);
}

.value__no {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--orange);
  font-weight: 600;
  text-transform: uppercase;
}

.value__title {
  font-family: var(--sans);
  font-weight: 800;
  font-stretch: 92%;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.value__body {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 34ch;
}

/* ============================================
   Trade specialties grid
   ============================================ */

.trades {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border: 1.5px solid var(--ink);
  background: var(--paper);
}

.trade {
  padding: 28px 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 180px;
  transition: background 0.18s ease, color 0.18s ease;
  cursor: pointer;
  position: relative;
  background: var(--paper);
}

.trade:nth-child(6n) {
  border-right: none;
}

.trade:nth-last-child(-n + 6) {
  border-bottom: none;
}

.trade:hover {
  background: var(--ink);
  color: var(--paper);
}

.trade:hover .trade__code {
  color: var(--orange);
}

.trade:hover .trade__meta {
  color: var(--steel-soft);
}

.trade__code {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.trade__code-dot {
  width: 6px;
  height: 6px;
  background: currentColor;
}

.trade__title {
  font-family: var(--sans);
  font-weight: 800;
  font-stretch: 92%;
  font-size: 24px;
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-top: auto;
}

.trade__meta {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--steel);
}

/* ============================================
   Industries (dark, asymmetric)
   ============================================ */

.industries {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  border-top: 1.5px solid var(--paper);
}

.ind-item {
  padding: 32px 24px;
  border-right: 1px solid rgba(236, 235, 230, 0.18);
  border-bottom: 1px solid rgba(236, 235, 230, 0.18);
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 240px;
  transition: background 0.2s ease;
}

.ind-item:hover {
  background: rgba(236, 91, 43, 0.1);
}

.ind-item__no {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--orange);
  font-weight: 600;
  text-transform: uppercase;
}

.ind-item__title {
  font-family: var(--sans);
  font-weight: 800;
  font-stretch: 90%;
  font-size: clamp(26px, 2.6vw, 40px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-top: auto;
}

.ind-item__body {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(236, 235, 230, 0.75);
  max-width: 32ch;
}

.ind-item--w5 {
  grid-column: span 5;
}

.ind-item--w4 {
  grid-column: span 4;
}

.ind-item--w3 {
  grid-column: span 3;
}

.ind-item--w6 {
  grid-column: span 6;
}

.ind-item--w7 {
  grid-column: span 7;
}

/* ============================================
   Promise section (giant sans)
   ============================================ */

.promise {
  padding: clamp(60px, 9vw, 140px) 0;
  border-top: 1.5px solid var(--ink);
  border-bottom: 1.5px solid var(--ink);
  position: relative;
  background: var(--paper);
}

.promise__eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 600;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
}

.promise__eyebrow::before,
.promise__eyebrow::after {
  content: "";
  height: 1.5px;
  background: var(--ink);
  flex: 1;
  max-width: 280px;
}

.promise__statement {
  font-family: var(--sans);
  font-weight: 800;
  font-stretch: 82%;
  font-size: clamp(48px, 9vw, 156px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  text-align: center;
  max-width: 14ch;
  margin: 0 auto;
  text-transform: uppercase;
}

.promise__statement .num {
  color: var(--orange);
}

.promise__footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1.5px solid var(--ink);
}

.promise__stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px 28px;
  border-right: 1px solid var(--line);
}

.promise__stat:last-child {
  border-right: none;
}

.promise__stat-num {
  font-family: var(--sans);
  font-weight: 800;
  font-stretch: 85%;
  font-size: clamp(32px, 3.6vw, 56px);
  line-height: 1;
  letter-spacing: -0.03em;
}

.promise__stat-num em {
  color: var(--orange);
  font-weight: 800;
}

.promise__stat-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel);
}

/* ============================================
   Testimonials
   ============================================ */

.testimonials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1.5px solid var(--ink);
}

.testimonials > div {
  border-right: 1px solid var(--line);
}

.testimonials > div:last-child {
  border-right: none;
}

.testimonial {
  padding: 28px 32px;
  border-bottom: 1px solid var(--line);
}

.testimonial:last-child {
  border-bottom: none;
}

.testimonial__quote {
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.35;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
  position: relative;
  padding-left: 18px;
  border-left: 3px solid var(--orange);
}

.testimonial__attrib {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--steel);
}

.testimonial__initial {
  width: 32px;
  height: 32px;
  background: var(--orange);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-weight: 800;
  font-size: 13px;
}

/* ============================================
   Journal / blog
   ============================================ */

.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1.5px solid var(--ink);
}

.article {
  padding: 24px 22px 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background 0.2s ease;
  min-height: 300px;
  background: var(--paper);
}

.article:nth-child(3n) {
  border-right: none;
}

.article:nth-last-child(-n + 3) {
  border-bottom: none;
}

.article:hover {
  background: var(--paper-cool);
}

.article__meta {
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--steel);
}

.article__cat {
  color: var(--orange);
  font-weight: 700;
}

.article__title {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin-top: auto;
}

.article__excerpt {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
}

.article__read {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--orange);
}

/* ============================================
   CTA block (dark)
   ============================================ */

.cta-block {
  padding: clamp(70px, 9vw, 140px) 0;
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
  border-top: 10px solid transparent;
  border-image: var(--hazard) 1;
}

.cta-block__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: center;
}

.cta-block__headline {
  font-family: var(--sans);
  font-weight: 800;
  font-stretch: 82%;
  font-size: clamp(44px, 7vw, 108px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.cta-block__headline em {
  color: var(--orange);
}

.cta-block__contact {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1.5px solid var(--paper);
}

.cta-channel {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(236, 235, 230, 0.2);
  transition: background 0.18s ease;
}

.cta-channel:last-child {
  border-bottom: none;
}

.cta-channel:hover {
  background: rgba(236, 91, 43, 0.1);
}

.cta-channel__label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 600;
}

.cta-channel__value {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--paper);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: color 0.18s ease;
}

.cta-channel__value:hover {
  color: var(--orange);
}

/* ============================================
   Footer
   ============================================ */

.footer {
  background: var(--paper);
  color: var(--ink);
  padding: 64px 0 24px;
  border-top: 2px solid var(--ink);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 32ch;
}

.footer__brand p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.55;
}

.footer__col h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
  font-weight: 600;
}

.footer__col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__col a {
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer__col a:hover {
  color: var(--orange);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steel);
  flex-wrap: wrap;
  gap: 16px;
}

.footer__bottom a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.18s ease;
}

.footer__bottom a:hover {
  color: var(--orange);
}

.footer__wordmark {
  font-family: var(--sans);
  font-weight: 800;
  font-stretch: 72%;
  font-size: clamp(40px, 10vw, 148px);
  line-height: 0.88;
  letter-spacing: -0.045em;
  text-transform: uppercase;
  text-align: center;
  padding: 28px 0 16px;
  color: var(--ink);
  overflow: hidden;
  white-space: nowrap;
}

.footer__wordmark em {
  color: var(--orange);
  font-weight: 800;
}

/* ============================================
   Forms
   ============================================ */

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

.field__label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel);
  font-weight: 600;
}

.field input,
.field select,
.field textarea {
  font-family: var(--sans);
  font-size: 15px;
  padding: 12px 14px;
  background: var(--paper);
  border: 1.5px solid var(--ink);
  color: var(--ink);
  transition: border-color 0.18s ease, background 0.18s ease;
  border-radius: 0;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--orange);
  background: #fff;
}

.field--dark input,
.field--dark select,
.field--dark textarea {
  color: var(--paper);
  background: #1a1a1a;
  border-color: rgba(236, 235, 230, 0.3);
}

.field--dark input::placeholder,
.field--dark textarea::placeholder {
  color: rgba(236, 235, 230, 0.4);
}

/* ============================================
   Page head (internal pages)
   ============================================ */

.page-head {
  padding: clamp(44px, 6vw, 90px) 0 clamp(36px, 5vw, 72px);
  border-bottom: 1.5px solid var(--ink);
  background: var(--paper);
}

.page-head__crumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 32px;
  font-weight: 500;
}

.page-head__crumbs .sep {
  color: var(--orange);
}

.page-head__title {
  font-family: var(--sans);
  font-weight: 800;
  font-stretch: 78%;
  font-size: clamp(56px, 10vw, 180px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.page-head__title em {
  color: var(--orange);
  font-weight: 800;
}

.page-head__lede {
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.35;
  margin-top: 32px;
  max-width: 60ch;
  color: var(--ink-soft);
  letter-spacing: -0.005em;
}

/* ============================================
   Service detail rows
   ============================================ */

.svc-row {
  display: grid;
  grid-template-columns: 80px 1fr 2fr 1fr;
  gap: 40px;
  align-items: start;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
  transition: background 0.2s ease, padding 0.2s ease;
}

.svc-row:first-of-type {
  border-top: 1.5px solid var(--ink);
}

.svc-row:hover {
  background: var(--paper-cool);
  padding-left: 20px;
  padding-right: 20px;
}

.svc-row__no {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--steel);
  letter-spacing: 0.14em;
  padding-top: 8px;
  font-weight: 600;
}

.svc-row__code {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.14em;
  padding-top: 8px;
  text-transform: uppercase;
}

.svc-row__name {
  font-family: var(--sans);
  font-weight: 800;
  font-stretch: 85%;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
  text-transform: uppercase;
}

.svc-row__desc {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 50ch;
}

.svc-row__scope {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  padding-top: 8px;
  line-height: 1.9;
  font-weight: 500;
}

.svc-row__tags {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

/* ============================================
   Blog post layout
   ============================================ */

.post {
  padding: 60px 0 100px;
  max-width: 780px;
  margin: 0 auto;
}

.post__head {
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1.5px solid var(--ink);
}

.post__cat {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 700;
  margin-bottom: 24px;
}

.post__title {
  font-family: var(--sans);
  font-weight: 800;
  font-stretch: 85%;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin-bottom: 28px;
  text-transform: uppercase;
}

.post__title em {
  color: var(--orange);
  font-weight: 800;
}

.post__meta {
  display: flex;
  gap: 24px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel);
  font-weight: 500;
}

.post__body {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
}

.post__body p {
  margin-bottom: 22px;
}

.post__body em {
  color: var(--ink);
  font-weight: 600;
  font-style: normal;
}

.post__body strong {
  color: var(--ink);
  font-weight: 700;
}

.post__body h2 {
  font-family: var(--sans);
  font-weight: 800;
  font-stretch: 90%;
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 40px 0 16px;
  color: var(--ink);
  text-transform: uppercase;
}

.post__body h3 {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
  margin: 32px 0 12px;
  color: var(--ink);
  letter-spacing: -0.015em;
}

.post__body ul,
.post__body ol {
  margin: 10px 0 26px 22px;
}

.post__body li {
  margin-bottom: 8px;
}

.post__pullquote {
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--ink);
  padding: 24px 28px;
  margin: 32px 0;
  background: var(--paper-cool);
  border-left: 4px solid var(--orange);
}

/* ============================================
   Contact page
   ============================================ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding: clamp(60px, 8vw, 100px) 0;
}

.contact-panel {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1.5px solid var(--ink);
}

.contact-channel {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 22px 24px;
  border-bottom: 1px solid var(--line);
}

.contact-channel:last-child {
  border-bottom: none;
}

.contact-channel__label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 600;
}

.contact-channel__value {
  font-family: var(--sans);
  font-weight: 800;
  font-stretch: 88%;
  font-size: clamp(24px, 2.6vw, 38px);
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  transition: color 0.18s ease;
  text-transform: uppercase;
}

.contact-channel__value:hover {
  color: var(--orange);
}

.contact-channel__note {
  font-size: 13px;
  color: var(--steel);
  line-height: 1.5;
}

/* Contact aside — replaces the form */
.contact-aside {
  padding: 40px;
  background: var(--ink);
  color: var(--paper);
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: sticky;
  top: 100px;
}

.contact-aside__eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 600;
}

.contact-aside__headline {
  font-family: var(--sans);
  font-weight: 800;
  font-stretch: 82%;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.contact-aside__headline em {
  color: var(--orange);
  font-weight: 800;
}

.contact-aside__body {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(236, 235, 230, 0.8);
}

.contact-aside__btn {
  justify-content: center;
  margin-top: 4px;
}

.contact-aside .btn--ghost {
  color: var(--paper);
  border-color: var(--paper);
}

.contact-aside .btn--ghost:hover {
  background: var(--paper);
  color: var(--ink);
}

/* ============================================
   Reveal on scroll
   ============================================ */

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 1024px) {
  .trades {
    grid-template-columns: repeat(3, 1fr);
  }
  .trade:nth-child(6n) {
    border-right: 1px solid var(--line);
  }
  .trade:nth-child(3n) {
    border-right: none;
  }
  .trade:nth-last-child(-n + 6) {
    border-bottom: 1px solid var(--line);
  }
  .trade:nth-last-child(-n + 3) {
    border-bottom: none;
  }
  .journal-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .article:nth-child(3n) {
    border-right: 1px solid var(--line);
  }
  .article:nth-child(2n) {
    border-right: none;
  }
  .values {
    grid-template-columns: 1fr;
  }
  .value {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }
  .value:last-child {
    border-bottom: none;
  }
  .testimonials {
    grid-template-columns: 1fr;
  }
  .testimonials > div {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }
  .testimonials > div:last-child {
    border-bottom: none;
  }
  .hero__body,
  .cta-block__inner,
  .contact-grid,
  .promise__footer {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .promise__stat {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }
  .promise__stat:last-child {
    border-bottom: none;
  }
  .hero__body-right {
    border-left: none;
    border-top: 1.5px solid var(--ink);
  }
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
  .svc-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .ind-item--w3,
  .ind-item--w4,
  .ind-item--w5,
  .ind-item--w6,
  .ind-item--w7 {
    grid-column: span 6;
  }
  .hero__headline .line--indent {
    padding-left: 0;
  }
  .hero__meta {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .section__header {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .section__meta {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .nav__links {
    display: none;
  }
  .phone-chip {
    font-size: 12px;
    padding: 8px 12px;
  }
  .trades {
    grid-template-columns: repeat(2, 1fr);
  }
  .trade:nth-child(3n) {
    border-right: 1px solid var(--line);
  }
  .trade:nth-child(2n) {
    border-right: none;
  }
  .trade:nth-last-child(-n + 3) {
    border-bottom: 1px solid var(--line);
  }
  .trade:nth-last-child(-n + 2) {
    border-bottom: none;
  }
  .journal-grid {
    grid-template-columns: 1fr;
  }
  .article {
    border-right: none !important;
  }
  .industries,
  .ind-item--w3,
  .ind-item--w4,
  .ind-item--w5,
  .ind-item--w6,
  .ind-item--w7 {
    grid-column: span 12;
  }
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .contact-aside {
    position: static;
  }
  .hero__meta {
    grid-template-columns: 1fr;
  }
}
