/* ═══════════════════════════════════════
   COMMERCIAL ROOF DOCTORS — SITE CSS
   Shared design system for all pages.
═══════════════════════════════════════ */

:root {
  --black:          #1C1C1C;
  --steel:          #5A5A5A;
  --white:          #FFFFFF;
  --orange:         #C4622D;
  --orange-dark:    #A34E22;
  --light-bg:       #F5F4F2;
  --border:         #E2E0DC;
  --dark-section:   #141414;
  --nav-h:          64px;
  --px:             20px;
  --px-md:          40px;
  --px-lg:          60px;
  --max-w:          1280px;
  --font-condensed: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  --font-body:      'Barlow', Arial, sans-serif;
  --focus-ring:     0 0 0 3px rgba(196, 98, 45, 0.55);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 8px);
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--black);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
a   { text-decoration: none; color: inherit; }
img, svg { display: block; max-width: 100%; }

:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
  box-shadow: var(--focus-ring);
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 8px; top: -48px;
  z-index: 999;
  padding: 10px 14px;
  background: var(--orange);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: top 0.2s;
}
.skip-link:focus { top: 8px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ─── CONTAINER ─── */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 var(--px); }
@media (min-width: 640px)  { .container { padding: 0 var(--px-md); } }
@media (min-width: 1024px) { .container { padding: 0 var(--px-lg); } }

/* ─── SECTION LABEL ─── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}
.section-label::before {
  content: '';
  display: block;
  width: 20px; height: 2px;
  background: var(--orange);
  flex-shrink: 0;
}

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: #fff;
  padding: 15px 28px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background-color 0.2s, transform 0.15s;
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary::after { content: '→'; font-size: 14px; }
.btn-primary:hover  { background: var(--orange-dark); transform: translateY(-1px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.88);
  padding: 15px 28px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.38);
  transition: border-color 0.2s, color 0.2s, background-color 0.2s;
  white-space: nowrap;
}
.btn-outline:hover { border-color: rgba(255, 255, 255, 0.8); color: #fff; }
.btn-block         { width: 100%; justify-content: center; }

/* ═══════════════════════════════════════
   NAV
═══════════════════════════════════════ */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 200; }

/* Scroll-triggered header transform.
   When a page has a hero, JS adds .header-overlay + toggles .is-at-top.
   At top of hero: fully transparent nav. After scroll: solid dark bar. */
.site-header.header-overlay nav[aria-label="Main navigation"] {
  transition: background-color 0.25s ease, border-color 0.25s ease, backdrop-filter 0.25s ease, -webkit-backdrop-filter 0.25s ease;
}
.site-header.header-overlay.is-at-top nav[aria-label="Main navigation"] {
  background: transparent !important;
  border-bottom-color: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

nav[aria-label="Main navigation"] {
  height: var(--nav-h);
  background: #121212;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--px);
}
@supports ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  nav[aria-label="Main navigation"] {
    background: rgba(18, 18, 18, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }
}
@media (min-width: 640px)  { nav[aria-label="Main navigation"] { padding: 0 var(--px-md); } }
@media (min-width: 1024px) { nav[aria-label="Main navigation"] { padding: 0 var(--px-lg); } }

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 0;
}
.nav-logo-img {
  display: block;
  height: 44px;
  width: auto;
  max-height: 48px;
  user-select: none;
  -webkit-user-drag: none;
}
.nav-logo-desktop { display: none; }
.nav-logo-mobile  { display: block; height: 40px; }
@media (min-width: 480px) {
  .nav-logo-desktop { display: block; }
  .nav-logo-mobile  { display: none; }
}
/* Legacy SVG logo classes — retained no-op for any pages still referencing them */
.logo-mark, .logo-text { display: none !important; }

.nav-links { display: none; gap: 28px; list-style: none; }
.nav-links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.is-current { color: var(--orange); }
@media (min-width: 1024px) { .nav-links { display: flex; } }

.nav-right { display: flex; align-items: center; gap: 12px; }
.nav-cta {
  display: none;
  background: var(--orange);
  color: #fff;
  padding: 9px 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background-color 0.2s;
}
.nav-cta:hover { background: var(--orange-dark); }
@media (min-width: 580px) { .nav-cta { display: inline-block; } }

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-shrink: 0;
  color: inherit;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: rgba(255, 255, 255, 0.9);
  transition: transform 0.25s, opacity 0.25s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (min-width: 1024px) { .hamburger { display: none; } }

.mobile-menu {
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  z-index: 190;
  background: rgba(18, 18, 18, 0.99);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  max-height: 0;
  visibility: hidden;
  overflow: hidden;
  transition: max-height 0.35s ease, visibility 0s linear 0.35s;
}
.mobile-menu.open {
  max-height: 520px;
  visibility: visible;
  transition: max-height 0.35s ease, visibility 0s linear 0s;
}
@media (min-width: 1024px) { .mobile-menu { display: none !important; } }

.mobile-menu-inner { padding: 16px var(--px) 24px; }
@media (min-width: 640px) { .mobile-menu-inner { padding: 16px var(--px-md) 24px; } }

.mobile-menu ul { list-style: none; }
.mobile-menu li a {
  display: block;
  padding: 13px 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: color 0.2s;
}
.mobile-menu li a:hover,
.mobile-menu li a:focus-visible,
.mobile-menu li a.is-current { color: var(--orange); }
.mobile-menu .menu-cta {
  margin-top: 18px;
  display: block;
  width: 100%;
  text-align: center;
  background: var(--orange);
  color: #fff;
  padding: 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background-color 0.2s;
}
.mobile-menu .menu-cta:hover { background: var(--orange-dark); }

/* ═══════════════════════════════════════
   HERO (HOMEPAGE)
═══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-top: var(--nav-h);
  padding-bottom: 60px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-color: #121212;
  overflow: hidden;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  user-select: none;
  -webkit-user-drag: none;
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(18,18,18,0.48) 0%, rgba(18,18,18,0.66) 50%, rgba(18,18,18,0.94) 100%);
  z-index: 1;
  pointer-events: none;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(196, 98, 45, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196, 98, 45, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
  z-index: 2;
}
.hero-content { position: relative; z-index: 2; width: 100%; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 18px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 18px; height: 2px;
  background: var(--orange);
  flex-shrink: 0;
}

.hero h1 {
  font-family: var(--font-condensed);
  font-weight: 900;
  font-size: clamp(42px, 11vw, 96px);
  line-height: 0.93;
  letter-spacing: -0.01em;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.hero h1 em { font-style: normal; color: var(--orange); }

.hero-sub {
  font-size: clamp(14px, 3.5vw, 17px);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 520px;
}
.hero-sub strong { color: #fff; font-weight: 500; }

.hero-actions { display: flex; flex-direction: column; gap: 12px; }
@media (min-width: 440px) { .hero-actions { flex-direction: row; flex-wrap: wrap; } }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow { animation: fadeUp 0.6s ease both; }
.hero h1      { animation: fadeUp 0.6s 0.1s ease both; }
.hero-sub     { animation: fadeUp 0.6s 0.2s ease both; }
.hero-actions { animation: fadeUp 0.6s 0.3s ease both; }

/* ═══════════════════════════════════════
   AUTHORITY BAR
═══════════════════════════════════════ */
.authority-bar { background: var(--orange); }
.authority-inner { display: flex; flex-wrap: wrap; }
.authority-item {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1 1 50%;
  padding: 15px var(--px);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.authority-item:nth-child(2n) { border-right: none; }
.authority-item:nth-child(3),
.authority-item:nth-child(4)  { border-bottom: none; }
@media (min-width: 640px) {
  .authority-inner {
    flex-wrap: nowrap;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--px-md);
  }
  .authority-item {
    flex: 1 1 auto;
    border-bottom: none;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    padding: 18px 20px 18px 0;
    margin-right: 20px;
  }
  .authority-item:nth-child(2n) { border-right: 1px solid rgba(255, 255, 255, 0.2); }
  .authority-item:last-child    { border-right: none; margin-right: 0; }
}
@media (min-width: 1024px) {
  .authority-inner { padding: 0 var(--px-lg); }
  .authority-item  { padding: 20px 40px 20px 0; margin-right: 40px; }
}
.authority-icon { width: 15px; height: 15px; flex-shrink: 0; }
.authority-states { font-size: 14px; font-weight: 900; letter-spacing: 0.18em; }

/* ═══════════════════════════════════════
   VALUE SECTION
═══════════════════════════════════════ */
.value-section { padding: 64px 0; background: var(--white); }
.value-grid { display: grid; grid-template-columns: 1fr; gap: 44px; }
@media (min-width: 860px) {
  .value-grid { grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
}
.value-section h2 {
  font-family: var(--font-condensed);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(30px, 7vw, 52px);
  line-height: 1.0;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
}
.value-section h2 em { font-style: normal; color: var(--orange); }
.value-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--steel);
  line-height: 1.75;
  margin-bottom: 28px;
}
.value-bullets { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.value-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--black);
  font-weight: 500;
  line-height: 1.5;
}
.bullet-icon {
  width: 18px; height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  background: var(--orange);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex; align-items: center; justify-content: center;
}
.bullet-icon::after { content: '✓'; color: #fff; font-size: 9px; font-weight: 900; }

.value-stat-card { background: var(--black); position: relative; overflow: hidden; }
.value-stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--orange);
}
.stat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(255,255,255,0.06); }
.stat-cell { background: var(--black); padding: 24px 20px; }
@media (min-width: 640px) { .stat-cell { padding: 28px 24px; } }
.stat-num {
  font-family: var(--font-condensed);
  font-weight: 900;
  font-size: clamp(34px, 8vw, 50px);
  line-height: 1;
  color: var(--orange);
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
  margin-top: 4px;
  line-height: 1.4;
}

/* ═══════════════════════════════════════
   SERVICES (HOMEPAGE GRID)
═══════════════════════════════════════ */
.services-section { background: var(--light-bg); padding: 64px 0; }
.services-header { margin-bottom: 36px; }
.services-header h2 {
  font-family: var(--font-condensed);
  font-weight: 800;
  font-size: clamp(28px, 7vw, 46px);
  text-transform: uppercase;
  line-height: 1.0;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.services-header p {
  font-size: 14px;
  color: var(--steel);
  line-height: 1.65;
  font-weight: 300;
  max-width: 420px;
}
.services-grid { display: grid; grid-template-columns: 1fr; gap: 2px; }
@media (min-width: 520px)  { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(4, 1fr); } }

.service-card {
  background: var(--white);
  padding: 32px 24px;
  border-top: 3px solid transparent;
  transition: background-color 0.25s, border-color 0.25s;
}
.service-card:hover,
.service-card:focus-within { background: var(--black); border-top-color: var(--orange); }
.service-card:hover .service-num,
.service-card:focus-within .service-num,
.service-card:hover .service-title,
.service-card:focus-within .service-title,
.service-card:hover .service-desc,
.service-card:focus-within .service-desc,
.service-card:hover .service-link,
.service-card:focus-within .service-link { color: rgba(255, 255, 255, 0.9); }
.service-card:hover .service-icon-wrap,
.service-card:focus-within .service-icon-wrap { background: var(--orange); border-color: var(--orange); }
.service-card:hover .service-icon-wrap svg,
.service-card:focus-within .service-icon-wrap svg { stroke: #fff; }

.service-num {
  font-family: var(--font-condensed);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--orange);
  margin-bottom: 20px;
  transition: color 0.25s;
}
.service-icon-wrap {
  width: 44px; height: 44px;
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  transition: background-color 0.25s, border-color 0.25s;
}
.service-icon-wrap svg {
  width: 20px; height: 20px;
  stroke: var(--steel);
  fill: none;
  stroke-width: 1.5;
  transition: stroke 0.25s;
}
.service-title {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 19px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--black);
  margin-bottom: 8px;
  line-height: 1.15;
  transition: color 0.25s;
}
.service-desc {
  font-size: 13px;
  color: var(--steel);
  line-height: 1.65;
  margin-bottom: 18px;
  font-weight: 300;
  transition: color 0.25s;
}
.service-link {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  transition: color 0.25s;
}

/* ═══════════════════════════════════════
   PORTFOLIO
═══════════════════════════════════════ */
.portfolio-section {
  background: var(--black);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.portfolio-section::before {
  content: 'PORTFOLIO';
  position: absolute;
  right: -60px; top: 50%;
  transform: translateY(-50%) rotate(90deg);
  font-family: var(--font-condensed);
  font-weight: 900;
  font-size: 90px;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.025);
  pointer-events: none;
  white-space: nowrap;
  user-select: none;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 52px;
  position: relative;
  z-index: 1;
}
@media (min-width: 860px) {
  .portfolio-grid { grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
}
.portfolio-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.portfolio-label::before { content: ''; width: 20px; height: 2px; background: var(--orange); }
.portfolio-section h2 {
  font-family: var(--font-condensed);
  font-weight: 900;
  font-size: clamp(32px, 8vw, 56px);
  text-transform: uppercase;
  line-height: 0.96;
  letter-spacing: -0.01em;
  color: #fff;
  margin-bottom: 18px;
}
.portfolio-section h2 em { font-style: normal; color: var(--orange); }
.portfolio-desc {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
  margin-bottom: 32px;
}
.portfolio-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 32px;
  list-style: none;
}
.portfolio-feat { display: flex; gap: 10px; align-items: flex-start; }
.feat-dot {
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 7px;
}
.feat-text { font-size: 13px; color: rgba(255, 255, 255, 0.78); line-height: 1.5; }

.portfolio-tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.p-tile {
  background: rgba(255, 255, 255, 0.04);
  padding: 24px 20px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition: background-color 0.2s;
}
.p-tile:hover { background: rgba(255, 255, 255, 0.07); }
.p-tile-num {
  font-family: var(--font-condensed);
  font-size: clamp(28px, 6vw, 42px);
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  letter-spacing: -0.02em;
}
.p-tile-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
  margin-top: 5px;
  line-height: 1.4;
}

/* ═══════════════════════════════════════
   COMPARISON
═══════════════════════════════════════ */
.comparison-section { padding: 64px 0; background: var(--white); }
.comparison-header { text-align: center; margin-bottom: 40px; }
.comparison-header .section-label { justify-content: center; }
.comparison-header h2 {
  font-family: var(--font-condensed);
  font-weight: 800;
  font-size: clamp(28px, 7vw, 48px);
  text-transform: uppercase;
  line-height: 1.0;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.comparison-header p { font-size: 14px; color: var(--steel); font-weight: 300; }
.comparison-cards { display: flex; flex-direction: column; gap: 2px; }
@media (min-width: 740px) { .comparison-cards { display: none; } }
.comp-row { border: 1px solid var(--border); overflow: hidden; }
.comp-category {
  background: var(--light-bg);
  padding: 12px 14px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steel);
}
.comp-cols { display: grid; grid-template-columns: 1fr 1fr; }
.comp-col { padding: 14px; }
.comp-col.replacement { border-right: 1px solid var(--border); }
.comp-col-head {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 3px;
}
.comp-col.replacement .comp-col-head { color: var(--steel); }
.comp-col.restoration  .comp-col-head { color: var(--orange); }
.comp-col-val { font-size: 12px; line-height: 1.4; }
.comp-col.replacement .comp-col-val { color: var(--steel); font-weight: 300; }
.comp-col.restoration  .comp-col-val { color: var(--black); font-weight: 600; }

.comparison-table { display: none; width: 100%; border-collapse: collapse; }
@media (min-width: 740px) { .comparison-table { display: table; } }
.comparison-table thead th {
  padding: 18px 22px;
  font-family: var(--font-condensed);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: left;
}
.comparison-table thead th:first-child {
  width: 36%;
  background: var(--light-bg);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--steel);
}
.th-replacement { background: rgba(90,90,90,0.08); color: var(--black); text-align: center !important; }
.th-restoration { background: var(--orange); color: #fff; text-align: center !important; }
.comparison-table tbody tr { border-bottom: 1px solid var(--border); }
.comparison-table tbody tr:hover { background: rgba(196, 98, 45, 0.03); }
.comparison-table tbody td,
.comparison-table tbody th { padding: 16px 22px; font-size: 13px; }
.comparison-table tbody th {
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.04em;
  background: var(--light-bg);
  color: var(--steel);
  text-transform: uppercase;
  text-align: left;
}
.td-replacement { text-align: center; color: var(--steel); font-weight: 300; }
.td-restoration { text-align: center; font-weight: 600; color: var(--orange); }

/* ═══════════════════════════════════════
   PROCESS
═══════════════════════════════════════ */
.process-section { background: var(--light-bg); padding: 64px 0; }
.process-header  { margin-bottom: 40px; }
.process-header h2 {
  font-family: var(--font-condensed);
  font-weight: 800;
  font-size: clamp(28px, 7vw, 46px);
  text-transform: uppercase;
  line-height: 1.0;
  letter-spacing: -0.01em;
}
.process-steps { display: flex; flex-direction: column; list-style: none; }
.process-step {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}
.process-step:last-child { border-bottom: none; }
.step-number {
  width: 52px; height: 52px;
  flex-shrink: 0;
  border: 2px solid var(--orange);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-condensed);
  font-weight: 900;
  font-size: 20px;
  color: var(--orange);
  background: var(--white);
}
.process-step:first-child .step-number {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}
.step-title {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 19px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--black);
  margin-bottom: 4px;
  line-height: 1.1;
}
.step-desc { font-size: 13px; color: var(--steel); line-height: 1.6; font-weight: 300; }
@media (min-width: 860px) {
  .process-steps { flex-direction: row; position: relative; align-items: flex-start; }
  .process-steps::before {
    content: '';
    position: absolute;
    top: 26px; left: 8%; right: 8%;
    height: 2px;
    background: linear-gradient(to right, var(--orange), rgba(196, 98, 45, 0.25));
    z-index: 0;
  }
  .process-step {
    flex: 1;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 12px;
    border-bottom: none;
    gap: 0;
  }
  .step-number { margin-bottom: 18px; position: relative; z-index: 1; }
  .step-title  { margin-bottom: 6px; }
}

/* ═══════════════════════════════════════
   HOMEPAGE CASE STUDY
═══════════════════════════════════════ */
.case-section { padding: 64px 0; background: var(--white); }
.case-header  { margin-bottom: 36px; }
.case-header h2 {
  font-family: var(--font-condensed);
  font-weight: 800;
  font-size: clamp(26px, 7vw, 46px);
  text-transform: uppercase;
  line-height: 1.0;
  letter-spacing: -0.01em;
}
.case-grid { display: grid; grid-template-columns: 1fr; gap: 2px; }
@media (min-width: 580px) { .case-grid { grid-template-columns: 1fr 1fr; } }
.case-panel {
  min-height: 240px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px 20px;
}
@media (min-width: 580px) { .case-panel { min-height: 320px; } }
.case-panel.before {
  /* Desaturated, aged look via blend-mode so only the bg image is greyed — text/badge stay crisp */
  background-color: #3a3a3a;
  background-image:
    linear-gradient(to top, rgba(18,18,18,0.87) 0%, rgba(18,18,18,0.15) 65%, transparent 100%),
    url('https://images.unsplash.com/photo-1674485117944-08d58861b2ba?w=800&q=80');
  background-size: cover;
  background-position: center;
  background-blend-mode: normal, luminosity;
}
.case-panel.before::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    135deg,
    rgba(0,0,0,0) 0,
    rgba(0,0,0,0) 14px,
    rgba(0,0,0,0.06) 14px,
    rgba(0,0,0,0.06) 16px
  );
  pointer-events: none;
}
.case-panel.after {
  background:
    linear-gradient(to top, rgba(18,18,18,0.80) 0%, rgba(18,18,18,0.10) 65%, transparent 100%),
    url('https://images.unsplash.com/photo-1674485169641-bcb2bf6f1df9?w=800&q=80') center/cover;
}
.case-badge {
  position: absolute;
  top: 18px; left: 18px;
  background: rgba(18, 18, 18, 0.78);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 12px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.case-panel.after .case-badge { background: var(--orange); color: #fff; }
.case-panel-info h3 {
  font-family: var(--font-condensed);
  font-weight: 800;
  font-size: 20px;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 0.02em;
  margin-bottom: 5px;
}
.case-panel-info p { font-size: 12px; color: rgba(255, 255, 255, 0.82); font-weight: 300; }

.case-stats { background: var(--black); display: grid; grid-template-columns: 1fr; }
@media (min-width: 520px) { .case-stats { grid-template-columns: repeat(3, 1fr); } }
.case-stat { padding: 28px 24px; border-bottom: 1px solid rgba(255, 255, 255, 0.07); }
@media (min-width: 520px) {
  .case-stat { border-bottom: none; border-right: 1px solid rgba(255, 255, 255, 0.07); }
  .case-stat:last-child { border-right: none; }
}
.case-stat-num {
  font-family: var(--font-condensed);
  font-weight: 900;
  font-size: clamp(36px, 8vw, 52px);
  color: var(--orange);
  line-height: 1;
  letter-spacing: -0.02em;
}
.case-stat-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
  margin-top: 5px;
  line-height: 1.4;
}
.case-stat-sub {
  font-size: 12px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 4px;
  line-height: 1.4;
}

/* ═══════════════════════════════════════
   TRUST BAR
═══════════════════════════════════════ */
.trust-bar {
  background: var(--light-bg);
  padding: 32px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-inner { display: flex; flex-direction: column; gap: 18px; align-items: center; }
@media (min-width: 640px) { .trust-inner { flex-direction: row; gap: 0; } }
.trust-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--steel);
  flex-shrink: 0;
}
@media (min-width: 640px) { .trust-label { margin-right: 36px; } }
.trust-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  justify-content: center;
  list-style: none;
}
@media (min-width: 640px) {
  .trust-logos { flex: 1; justify-content: space-between; flex-wrap: nowrap; }
}
.trust-logo {
  font-family: var(--font-condensed);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(90, 90, 90, 0.6);
  transition: color 0.2s;
  user-select: none;
}
.trust-logo:hover { color: rgba(90, 90, 90, 0.9); }

/* ═══════════════════════════════════════
   FINAL CTA
═══════════════════════════════════════ */
.cta-section {
  background: var(--dark-section);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 90% at 100% 50%, rgba(196, 98, 45, 0.1) 0%, transparent 60%);
  pointer-events: none;
}
.cta-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}
@media (min-width: 860px) {
  .cta-grid { grid-template-columns: 1fr auto; gap: 72px; align-items: center; }
}
.cta-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.cta-label::before { content: ''; width: 20px; height: 2px; background: var(--orange); }
.cta-section h2 {
  font-family: var(--font-condensed);
  font-weight: 900;
  font-size: clamp(34px, 8vw, 66px);
  text-transform: uppercase;
  line-height: 0.96;
  letter-spacing: -0.01em;
  color: #fff;
  margin-bottom: 16px;
}
.cta-section h2 em { font-style: normal; color: var(--orange); }
.cta-sub {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
}
.cta-actions { display: flex; flex-direction: column; gap: 12px; }
@media (min-width: 860px) { .cta-actions { min-width: 270px; } }
.cta-note {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 300;
  text-align: center;
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.site-footer {
  background: #0D0D0D;
  padding: 52px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 24px;
}
@media (min-width: 580px)  { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-top { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; } }
.footer-brand p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.62);
  font-weight: 300;
  line-height: 1.75;
  margin-top: 14px;
}
.footer-logo { line-height: 0; }
.footer-logo-img {
  display: block;
  height: 46px;
  width: auto;
  max-width: 260px;
  user-select: none;
  -webkit-user-drag: none;
}
@media (max-width: 580px) { .footer-logo-img { height: 40px; } }
.footer-col h4 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col li a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.66);
  font-weight: 300;
  transition: color 0.2s;
}
.footer-col li a:hover,
.footer-col li a:focus-visible { color: var(--orange); }
.footer-bottom { display: flex; flex-direction: column; gap: 6px; }
@media (min-width: 580px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; }
}
.footer-bottom p {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.58);
  font-weight: 300;
}
.footer-bottom p strong { color: rgba(255, 255, 255, 0.82); font-weight: 600; }
.footer-bottom a { color: inherit; transition: color 0.2s; }
.footer-bottom a:hover,
.footer-bottom a:focus-visible { color: var(--orange); }

::-webkit-scrollbar       { width: 4px; }
::-webkit-scrollbar-track { background: #111; }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 2px; }

/* ═══════════════════════════════════════
   ADDITIONS — INNER PAGES
═══════════════════════════════════════ */

/* ─── Inner-page hero ─── */
.page-hero {
  position: relative;
  padding: calc(var(--nav-h) + 72px) 0 64px;
  background: var(--black);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(to bottom, rgba(18,18,18,0.55), rgba(18,18,18,0.92)),
    var(--page-hero-img, none);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(196,98,45,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196,98,45,0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
}
.page-hero h1 {
  font-family: var(--font-condensed);
  font-weight: 900;
  font-size: clamp(34px, 8vw, 68px);
  line-height: 0.96;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.page-hero h1 em { font-style: normal; color: var(--orange); }
.page-hero p.lead {
  font-size: clamp(14px, 2.5vw, 17px);
  font-weight: 300;
  color: rgba(255,255,255,0.82);
  max-width: 640px;
  line-height: 1.65;
}
.page-hero p.lead strong { color: #fff; font-weight: 500; }

/* ─── Breadcrumbs ─── */
.breadcrumbs {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.62);
  margin-bottom: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.breadcrumbs a { color: var(--orange); transition: color 0.2s; }
.breadcrumbs a:hover { color: #fff; }
.breadcrumbs span[aria-hidden="true"] { color: rgba(255,255,255,0.4); }

/* ─── Generic content section ─── */
.content-section { padding: 64px 0; background: var(--white); }
.content-section.alt  { background: var(--light-bg); }
.content-section.dark { background: var(--black); color: #fff; }
.content-section.dark h2,
.content-section.dark h3 { color: #fff; }
.content-section.dark p  { color: rgba(255,255,255,0.78); }

.content-section h2 {
  font-family: var(--font-condensed);
  font-weight: 800;
  font-size: clamp(28px, 6vw, 44px);
  text-transform: uppercase;
  line-height: 1.0;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
.content-section h2 em { font-style: normal; color: var(--orange); }
.content-section .lead {
  font-size: 15px;
  font-weight: 300;
  color: var(--steel);
  line-height: 1.75;
  max-width: 720px;
  margin-bottom: 20px;
}
.content-section.dark .lead { color: rgba(255,255,255,0.78); }
.content-section .lead strong { color: var(--black); font-weight: 500; }

/* ─── Service detail block ─── */
.service-detail { padding: 64px 0; border-bottom: 1px solid var(--border); background: var(--white); }
.service-detail.alt { background: var(--light-bg); }
.service-detail:last-of-type { border-bottom: none; }
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: start;
}
@media (min-width: 860px) {
  .service-detail-grid { grid-template-columns: 1.2fr 1fr; gap: 64px; }
  .service-detail.reverse .service-detail-grid > :first-child { order: 2; }
}
.service-detail h2 {
  font-family: var(--font-condensed);
  font-weight: 800;
  font-size: clamp(26px, 5vw, 38px);
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: -0.005em;
  margin-bottom: 14px;
}
.service-detail .desc {
  font-size: 14px;
  color: var(--steel);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 22px;
}
.service-detail .panel {
  background: var(--white);
  border-left: 4px solid var(--orange);
  padding: 28px 24px;
  box-shadow: 0 1px 0 var(--border);
}
.service-detail.alt .panel { background: var(--white); }
.service-detail .panel h3 {
  font-family: var(--font-condensed);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}
.service-detail .panel ol,
.service-detail .panel ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  counter-reset: step;
}
.service-detail .panel ol li {
  counter-increment: step;
  padding-left: 34px;
  position: relative;
  font-size: 13px;
  color: var(--black);
  font-weight: 500;
  line-height: 1.55;
}
.service-detail .panel ol li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 0; top: 1px;
  font-family: var(--font-condensed);
  font-weight: 800;
  font-size: 12px;
  color: var(--orange);
  letter-spacing: 0.05em;
}
.service-detail .panel ul li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 13px; color: var(--black); font-weight: 500; line-height: 1.55;
}
.service-detail .panel ul li::before {
  content: ''; flex-shrink: 0; margin-top: 6px;
  width: 6px; height: 6px; background: var(--orange); border-radius: 50%;
}

/* ─── Benefits grid ─── */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
  background: var(--border);
  margin-top: 14px;
}
@media (min-width: 640px)  { .benefits-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .benefits-grid { grid-template-columns: repeat(3, 1fr); } }
.benefit-card { background: var(--white); padding: 28px 24px; }
.benefit-card h3 {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 17px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
  color: var(--black);
}
.benefit-card p { font-size: 13px; color: var(--steel); line-height: 1.65; font-weight: 300; }
.benefit-card .num {
  font-family: var(--font-condensed);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.2em; color: var(--orange);
  margin-bottom: 16px; display: block;
}

/* ─── Areas grid ─── */
.areas-grid {
  display: grid; grid-template-columns: 1fr; gap: 2px;
  background: var(--border);
  margin-top: 14px;
}
@media (min-width: 640px) { .areas-grid { grid-template-columns: 1fr 1fr; } }
.area-card {
  background: var(--white);
  padding: 32px 28px;
  border-top: 3px solid var(--orange);
}
.area-card .state {
  font-family: var(--font-condensed);
  font-weight: 900;
  font-size: clamp(28px, 4vw, 36px);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
  color: var(--black);
}
.area-card .meta {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 16px;
}
.area-card .desc { font-size: 13px; color: var(--steel); line-height: 1.65; font-weight: 300; margin-bottom: 18px; }
.area-card ul {
  list-style: none;
  columns: 2;
  column-gap: 24px;
  margin-bottom: 20px;
}
.area-card ul li {
  font-size: 13px; color: var(--black); font-weight: 500;
  padding: 5px 0; break-inside: avoid;
}
.area-card ul li a { color: inherit; transition: color 0.2s; }
.area-card ul li a:hover { color: var(--orange); }
.area-card ul li a::before { content: '→ '; color: var(--orange); font-weight: 700; }

/* ─── Local context strip ─── */
.local-context {
  background: var(--light-bg);
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}
.local-context-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 640px) { .local-context-grid { grid-template-columns: repeat(3, 1fr); } }
.local-fact strong {
  display: block;
  font-family: var(--font-condensed);
  font-weight: 900;
  color: var(--orange);
  font-size: clamp(22px, 4vw, 28px);
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.local-fact span {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--steel);
}

/* ─── Case study blocks (full page) ─── */
.case-block { padding: 56px 0; border-bottom: 1px solid var(--border); background: var(--white); }
.case-block.alt { background: var(--light-bg); }
.case-block:last-of-type { border-bottom: none; }
.case-block .meta {
  display: flex; flex-wrap: wrap; gap: 14px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--steel); margin-bottom: 14px;
}
.case-block .meta strong { color: var(--orange); font-weight: 700; }
.case-block h2 {
  font-family: var(--font-condensed);
  font-weight: 800; font-size: clamp(26px, 5vw, 38px);
  text-transform: uppercase; line-height: 1.05;
  margin-bottom: 22px;
}
.case-anatomy { display: grid; grid-template-columns: 1fr; gap: 28px; margin-bottom: 28px; }
@media (min-width: 740px) { .case-anatomy { grid-template-columns: repeat(3, 1fr); } }
.case-anatomy section h3 {
  font-family: var(--font-condensed);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 10px;
}
.case-anatomy section p { font-size: 14px; color: var(--steel); line-height: 1.7; font-weight: 300; }

.case-results {
  background: var(--black);
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 520px) { .case-results { grid-template-columns: repeat(3, 1fr); } }
.case-result-cell {
  padding: 26px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
@media (min-width: 520px) {
  .case-result-cell { border-bottom: none; border-right: 1px solid rgba(255,255,255,0.07); }
  .case-result-cell:last-child { border-right: none; }
}
.case-result-cell .num {
  font-family: var(--font-condensed);
  font-weight: 900; font-size: clamp(30px, 6vw, 42px);
  color: var(--orange); line-height: 1; letter-spacing: -0.02em;
}
.case-result-cell .label {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.62); margin-top: 6px;
}

/* ─── About pillars ─── */
.pillars-grid {
  display: grid; grid-template-columns: 1fr; gap: 2px;
  background: var(--border);
  margin-top: 14px;
}
@media (min-width: 740px) { .pillars-grid { grid-template-columns: repeat(3, 1fr); } }
.pillar { background: var(--white); padding: 32px 26px; border-top: 3px solid var(--orange); }
.pillar h3 {
  font-family: var(--font-condensed); font-weight: 700;
  font-size: 18px; text-transform: uppercase;
  letter-spacing: 0.04em; margin-bottom: 10px;
  color: var(--black);
}
.pillar p { font-size: 13px; color: var(--steel); line-height: 1.7; font-weight: 300; }

/* ─── Contact ─── */
.contact-grid {
  display: grid; grid-template-columns: 1fr; gap: 36px;
}
@media (min-width: 860px) { .contact-grid { grid-template-columns: 1.3fr 1fr; gap: 56px; } }

.contact-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  background: var(--light-bg);
  border-left: 4px solid var(--orange);
  padding: 28px 24px;
}
@media (min-width: 580px) { .contact-form { grid-template-columns: 1fr 1fr; padding: 32px; } }
.contact-form .field-full { grid-column: 1 / -1; }
.contact-form label {
  display: block;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--steel); margin-bottom: 6px;
}
.contact-form label .req { color: var(--orange); }
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  font: inherit;
  font-size: 14px;
  padding: 12px 14px;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--black);
  transition: border-color 0.2s, box-shadow 0.2s;
  border-radius: 0;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(196,98,45,0.18);
}
.contact-form textarea { min-height: 130px; resize: vertical; }
.contact-form button {
  font: inherit;
  cursor: pointer;
  border: 2px solid transparent;
  background: var(--orange); color: #fff;
  padding: 14px 28px;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 10px;
  justify-content: center;
  transition: background-color 0.2s, transform 0.15s;
}
.contact-form button:hover { background: var(--orange-dark); transform: translateY(-1px); }
.contact-form button::after { content: '→'; }
.form-note {
  grid-column: 1 / -1;
  font-size: 11px; color: var(--steel); font-weight: 300; line-height: 1.5;
}
.form-status {
  grid-column: 1 / -1;
  padding: 12px 14px;
  font-size: 12px; font-weight: 500;
  background: rgba(196, 98, 45, 0.08);
  border-left: 3px solid var(--orange);
  color: var(--black);
  display: none;
}
.form-status.show { display: block; }

.contact-info { background: var(--black); color: #fff; padding: 32px 28px; }
.contact-info h3 {
  font-family: var(--font-condensed);
  font-weight: 800; font-size: 18px;
  text-transform: uppercase; letter-spacing: 0.04em;
  margin-bottom: 18px;
}
.contact-info dl { display: grid; gap: 18px; }
.contact-info dt {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.58); margin-bottom: 4px;
}
.contact-info dd a,
.contact-info dd { color: #fff; font-size: 15px; font-weight: 500; transition: color 0.2s; }
.contact-info dd a:hover { color: var(--orange); }
.contact-info .promise {
  margin-top: 24px; padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 12px; font-weight: 300; color: rgba(255,255,255,0.75);
  line-height: 1.6;
}
.contact-info .promise strong { color: var(--orange); font-weight: 700; }

/* ─── Trust strip (text) ─── */
.trust-strip {
  background: var(--light-bg);
  padding: 22px 0;
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  font-size: 12px; color: var(--steel); font-weight: 500; letter-spacing: 0.04em;
  line-height: 1.6;
}
.trust-strip strong { color: var(--orange); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }

/* ═══════════════════════════════════════
   CONVERSION REFINEMENTS
═══════════════════════════════════════ */

/* Hero trust badges (under CTA buttons) */
.hero-trust {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-top: 24px;
  animation: fadeUp 0.6s 0.4s ease both;
}
.hero-trust li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.86);
  line-height: 1.3;
  position: relative;
}
.hero-trust li .chk-hex {
  position: relative;
  width: 18px; height: 18px;
  flex-shrink: 0;
  background: var(--orange);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.hero-trust li .chk-hex::after {
  content: '✓';
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
}

/* Pre-value microcopy */
.value-microcopy {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 22px;
  padding-left: 14px;
  border-left: 3px solid var(--orange);
  line-height: 1.5;
}

/* Honesty (trust) section — between value + services */
.honesty-section {
  background: var(--black);
  padding: 64px 0;
  color: #fff;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.honesty-section::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 6px;
  background: var(--orange);
}
.honesty-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 100% 50%, rgba(196,98,45,0.10) 0%, transparent 60%);
  pointer-events: none;
}
.honesty-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: start;
}
@media (min-width: 860px) {
  .honesty-grid { grid-template-columns: auto 1fr; gap: 44px; align-items: center; }
}
.honesty-mark {
  width: 72px; height: 72px;
  background: var(--orange);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.honesty-mark svg { width: 30px; height: 30px; stroke: #fff; fill: none; stroke-width: 2; }
.honesty-section .section-label { color: var(--orange); }
.honesty-section h2 {
  font-family: var(--font-condensed);
  font-weight: 900;
  font-size: clamp(28px, 6vw, 44px);
  text-transform: uppercase;
  line-height: 1.0;
  letter-spacing: -0.01em;
  color: #fff;
  margin: 8px 0 14px;
}
.honesty-section h2 em { font-style: normal; color: var(--orange); }
.honesty-section p {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.82);
  line-height: 1.75;
  max-width: 760px;
}
.honesty-section p + p { margin-top: 12px; }

/* Service micro-conversion line */
.service-micro {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--orange);
  margin-bottom: 10px;
  line-height: 1.4;
  transition: color 0.25s;
}
.service-card:hover .service-micro,
.service-card:focus-within .service-micro {
  color: rgba(255,255,255,0.92);
}

/* Case outcome statement */
.case-outcome {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: clamp(16px, 2.5vw, 20px);
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.35;
  margin: 26px 0 14px;
  padding-left: 16px;
  border-left: 3px solid var(--orange);
}

/* CTA urgency pill */
.cta-urgency {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  padding: 10px 14px;
  background: rgba(196, 98, 45, 0.12);
  border: 1px solid rgba(196, 98, 45, 0.35);
  justify-content: center;
  line-height: 1.3;
  text-align: center;
}
.cta-urgency::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulseDot 2.2s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.45; transform: scale(1.25); }
}
@media (prefers-reduced-motion: reduce) {
  .cta-urgency::before { animation: none; }
}

/* Brand differentiator banner */
.brand-diff {
  background: var(--light-bg);
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.brand-diff-inner {
  display: flex;
  gap: 22px;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
}
.brand-diff-mark {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: var(--orange);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex; align-items: center; justify-content: center;
}
.brand-diff-mark svg { width: 20px; height: 20px; stroke: #fff; fill: none; stroke-width: 2.2; }
.brand-diff p {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: clamp(15px, 2.4vw, 22px);
  line-height: 1.35;
  letter-spacing: 0.02em;
  color: var(--black);
  text-transform: uppercase;
}
.brand-diff p em {
  font-style: normal;
  color: var(--orange);
}
