/* ============================================================
   CHAMPION MB — Construction & Renovations
   Design system: dark industrial premium
   Barlow Condensed (display) / Source Serif 4 (body)
   ============================================================ */

/* ---------- 1. Tokens ---------- */
:root {
  --red: #cc1b1b;
  --red-bright: #e02020;
  --red-dark: #a01515;
  --charcoal: #0f0f0d;
  --charcoal-deep: #0b0b0a;
  --charcoal-mid: #1a1a18;
  --charcoal-light: #2e2e2a;
  --limestone: #f5f0e8;
  --limestone-muted: #c0bab0;
  --limestone-dim: #8a857c;
  --input-bg: #141412;
  --display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --serif: "Source Serif 4", Georgia, serif;
  --track: 0.09em;
  --container: 1220px;
  --gutter: 24px;
  --header-h: 84px;
}

/* ---------- 2. Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--charcoal);
  color: var(--limestone-muted);
  font: 400 17px/1.75 var(--serif);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
::selection { background: var(--red); color: #fff; }
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--charcoal-deep); }
::-webkit-scrollbar-thumb { background: var(--charcoal-light); border: 2px solid var(--charcoal-deep); }
::-webkit-scrollbar-thumb:hover { background: var(--red); }
:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 300;
  background: var(--red); color: #fff; padding: 12px 20px;
  font: 700 14px var(--display); letter-spacing: var(--track); text-transform: uppercase;
}
.skip-link:focus { left: 0; }

/* ---------- 3. Type ---------- */
h1, h2, h3, h4, .display {
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 0.95;
  color: var(--limestone);
}
h1 { font-size: clamp(56px, 8.6vw, 124px); }
h2 { font-size: clamp(38px, 4.6vw, 58px); }
h3 { font-size: clamp(24px, 2.4vw, 30px); line-height: 1.05; }
h4 { font-size: 21px; line-height: 1.1; }
.red { color: var(--red); }
p + p { margin-top: 1.1em; }
strong { color: var(--limestone); font-weight: 600; }

.lead { font-size: clamp(18px, 1.6vw, 21px); line-height: 1.7; }
.small { font-size: 15px; }

/* ---------- 4. Layout utilities ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.sec { padding: clamp(76px, 9vw, 128px) 0; position: relative; }
.sec--tight { padding: clamp(56px, 7vw, 88px) 0; }
.sec--alt { background: var(--charcoal-mid); }
.sec--line-top { border-top: 1px solid var(--charcoal-light); }

.sec-head { margin-bottom: clamp(40px, 5vw, 64px); position: relative; }
.sec-head--center { text-align: center; }
.sec-head--split { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.sec-head .sec-intro { max-width: 620px; margin-top: 20px; }
.sec-head--center .sec-intro { margin-left: auto; margin-right: auto; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font: 700 14px var(--display); letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--red); margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--red); }
.sec-head--center .eyebrow::after { content: ""; width: 26px; height: 2px; background: var(--red); }

.hazard {
  height: 6px;
  background: repeating-linear-gradient(-45deg, var(--red) 0 10px, transparent 10px 22px);
  opacity: 0.85;
}

.grain { position: relative; }
.grain::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
  opacity: 0.05;
}

.ghost-num {
  position: absolute; top: -14px; right: 0; z-index: 0; pointer-events: none;
  font: 800 clamp(110px, 16vw, 210px)/1 var(--display);
  color: transparent; -webkit-text-stroke: 1px rgba(245, 240, 232, 0.07);
  letter-spacing: -0.02em;
}

/* ---------- 5. Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  background: var(--red); color: #fff; border: 1px solid var(--red);
  font: 700 15px/1 var(--display); letter-spacing: var(--track); text-transform: uppercase;
  padding: 18px 30px; border-radius: 0; cursor: pointer;
  transition: background 0.25s, border-color 0.25s, color 0.25s, transform 0.25s;
  position: relative; white-space: nowrap;
}
.btn .arr { display: inline-block; transition: transform 0.25s; font-family: var(--display); }
.btn:hover, .btn:focus { background: var(--red-bright); border-color: var(--red-bright); color: #fff; }
.btn:hover .arr, .btn:focus .arr { transform: translateX(5px); }
.btn--ghost:hover, .btn--ghost:focus { color: var(--limestone); }
.btn--light:hover, .btn--light:focus { color: #fff; }
.cta-band .btn--inv:hover, .cta-band .btn--inv:focus { color: #fff; }
.btn:active { transform: translateY(1px); }

.btn--ghost { background: transparent; border-color: var(--charcoal-light); color: var(--limestone); }
.btn--ghost:hover { background: transparent; border-color: var(--limestone); }
.btn--light { background: transparent; border-color: rgba(255,255,255,0.35); color: #fff; }
.btn--light:hover { background: rgba(255,255,255,0.08); border-color: #fff; }
.btn--sm { padding: 13px 22px; font-size: 14px; }
.btn--xl { padding: 21px 38px; font-size: 16px; }
.btn--block { width: 100%; }

.textlink {
  display: inline-flex; align-items: center; gap: 10px;
  font: 700 15px var(--display); letter-spacing: var(--track); text-transform: uppercase;
  color: var(--limestone); position: relative; padding-bottom: 4px;
}
.textlink::after { content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 100%; background: var(--charcoal-light); transition: background 0.25s; }
.textlink .arr { color: var(--red); transition: transform 0.25s; }
.textlink:hover { color: var(--red); }
.textlink:hover::after { background: var(--red); }
.textlink:hover .arr { transform: translateX(5px); }

/* ---------- 6. Header ---------- */
.site-header.site-header {
  position: fixed; top: 0; left: 0; right: 0; width: 100vw; max-width: none; z-index: 250;
  display: block; flex-wrap: nowrap; padding-block: 0;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
  border-bottom: 1px solid transparent;
  background: linear-gradient(180deg, rgba(11,11,10,0.85), rgba(11,11,10,0));
}
.site-header.site-header .header-inner { max-width: var(--container); width: 100%; flex-wrap: nowrap; margin: 0 auto; }
.site-footer.site-footer { max-width: none; width: 100%; }
.site-footer.site-footer .footer-main,
.site-footer.site-footer .footer-bar > .container { max-width: var(--container); width: 100%; }
.site-header.scrolled {
  background: rgba(11, 11, 10, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom-color: var(--charcoal-light);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); gap: 24px; }

.brand { display: flex; align-items: center; gap: 13px; flex-shrink: 0; }
.brand img { height: 54px; width: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text .brand-name { font: 800 24px var(--display); letter-spacing: 0.02em; color: var(--limestone); text-transform: uppercase; }
.brand-text .brand-sub { font: 600 9.5px var(--display); letter-spacing: 0.3em; color: var(--red); text-transform: uppercase; margin-top: 4px; }

.nav { display: flex; align-items: center; gap: clamp(18px, 2vw, 30px); }
.nav a.nav-link {
  font: 600 14.5px var(--display); letter-spacing: 0.07em; text-transform: uppercase;
  color: var(--limestone); position: relative; padding: 6px 0;
  white-space: nowrap;
}
.nav a.nav-link::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--red); transition: width 0.25s;
}
.nav a.nav-link:hover::after, .nav a.nav-link.active::after { width: 100%; }
.nav a.nav-link.active { color: var(--red); }

/* Dropdowns (About + Services). Parent uses .nav-item wrapper; the .nav-sub UL
   is absolutely positioned below and revealed on hover / focus-within. */
.nav .nav-item { position: relative; }
.nav .nav-link--parent { display: inline-flex; align-items: center; gap: 6px; cursor: pointer; }
.nav .nav-caret { font-size: 11px; line-height: 1; transition: transform 0.2s ease; color: var(--red); }
.nav .nav-item:hover .nav-caret, .nav .nav-item:focus-within .nav-caret { transform: rotate(180deg); }
.nav .nav-sub {
  position: absolute; top: calc(100% + 12px); left: -18px;
  list-style: none; margin: 0; padding: 12px 0; min-width: 240px;
  background: var(--charcoal-mid, #1a1a1a); border: 1px solid var(--charcoal-light, #2a2a2a);
  box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.6);
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity 0.18s ease, visibility 0.18s ease, transform 0.18s ease;
  z-index: 300;
}
.nav .nav-sub::before {
  content: ""; position: absolute; top: -6px; left: 24px; width: 12px; height: 12px;
  background: var(--charcoal-mid, #1a1a1a);
  border-top: 1px solid var(--charcoal-light, #2a2a2a);
  border-left: 1px solid var(--charcoal-light, #2a2a2a);
  transform: rotate(45deg);
}
.nav .nav-item:hover .nav-sub,
.nav .nav-item:focus-within .nav-sub { opacity: 1; visibility: visible; transform: translateY(0); }
.nav .nav-sub li { list-style: none; }
.nav .nav-sub-link {
  display: block; padding: 10px 22px;
  font: 600 13.5px var(--display); letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--limestone); transition: color 0.18s ease, background 0.18s ease;
}
.nav .nav-sub-link:hover, .nav .nav-sub-link:focus, .nav .nav-sub-link.active {
  color: var(--red);
  background: rgba(204, 27, 27, 0.06);
}

.header-cta { display: flex; align-items: center; gap: 20px; flex-shrink: 0; }
.header-phone {
  display: inline-flex; align-items: center; gap: 9px;
  font: 700 16px var(--display); letter-spacing: 0.05em; color: var(--limestone);
}
.header-phone svg { width: 15px; height: 15px; stroke: var(--red); }
.header-phone:hover { color: var(--red); }

.nav-burger { display: none; flex-direction: column; gap: 5px; padding: 10px; }
.nav-burger span { display: block; width: 26px; height: 2px; background: var(--limestone); transition: transform 0.3s, opacity 0.3s; }
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Kill any horizontal scroll that can leak from full-width fixed overlays. */
html, body { overflow-x: clip; }

.mobile-nav {
  position: fixed; inset: 0; z-index: 200; background: var(--charcoal-deep);
  display: flex; flex-direction: column; padding: 90px 24px 40px;
  width: 100vw; max-width: 100vw; overflow-y: auto; overflow-x: hidden;
  opacity: 0; visibility: hidden; transition: opacity 0.35s, visibility 0.35s;
}
.mobile-nav > * { max-width: 100%; }
.mobile-nav.open { opacity: 1; visibility: visible; }
.mobile-nav a.m-link, .mobile-nav .m-link {
  font: 800 clamp(22px, 6vw, 32px)/1.1 var(--display); text-transform: uppercase; letter-spacing: 0.02em;
  color: var(--limestone); padding: 14px 0; border-bottom: 1px solid var(--charcoal-light);
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  transform: translateY(18px); opacity: 0; transition: transform 0.4s, opacity 0.4s, color 0.2s;
  min-width: 0;
}
.mobile-nav a.m-link .arr, .mobile-nav .m-link .arr { color: var(--red); font-size: 0.7em; flex-shrink: 0; }
.mobile-nav.open a.m-link, .mobile-nav.open .m-link { transform: translateY(0); opacity: 1; }
.mobile-nav a.m-link:hover { color: var(--red); }

/* Native <details> collapsible group for mobile parent items (About/Services). */
.mobile-nav .m-group { border-bottom: 1px solid var(--charcoal-light); }
.mobile-nav .m-group > .m-link--parent { list-style: none; cursor: pointer; border-bottom: 0; }
.mobile-nav .m-group > .m-link--parent::-webkit-details-marker { display: none; }
.mobile-nav .m-group[open] > .m-link--parent .m-caret { transform: rotate(45deg); color: var(--red); }
.mobile-nav .m-caret {
  color: var(--red); font: 700 22px/1 var(--display); flex-shrink: 0;
  transition: transform 0.25s ease;
}
.mobile-nav .m-sub {
  display: flex; flex-direction: column; padding: 4px 0 14px 14px; border-left: 2px solid var(--red);
  margin: 0 0 10px;
}
.mobile-nav .m-sub-link {
  font: 700 15px/1.2 var(--display); letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--limestone-dim); padding: 10px 0;
  display: flex; justify-content: space-between; align-items: center; gap: 12px; min-width: 0;
}
.mobile-nav .m-sub-link .arr { color: var(--red); font-size: 0.9em; flex-shrink: 0; }
.mobile-nav .m-sub-link:hover, .mobile-nav .m-sub-link:focus { color: var(--red); }

.mobile-nav .m-cta { margin-top: 34px; display: flex; flex-direction: column; gap: 14px; transform: translateY(18px); opacity: 0; transition: transform 0.4s 0.25s, opacity 0.4s 0.25s; }
.mobile-nav.open .m-cta { transform: translateY(0); opacity: 1; }

/* ---------- 7. Hero (homepage) ---------- */
.hero {
  position: relative; min-height: 100svh; display: flex; flex-direction: column; justify-content: center;
  padding: calc(var(--header-h) + 40px) 0 0; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(15,15,13,0.97) 0%, rgba(15,15,13,0.88) 34%, rgba(15,15,13,0.55) 62%, rgba(15,15,13,0.35) 100%),
    linear-gradient(0deg, var(--charcoal) 0%, rgba(15,15,13,0) 32%);
}
.hero .container { position: relative; z-index: 2; }
.hero-content { max-width: 900px; }
.hero-sub { max-width: 560px; margin-top: 28px; font-size: clamp(17px, 1.5vw, 20px); color: var(--limestone-muted); }
.hero-ctas { display: flex; gap: 16px; margin-top: 38px; flex-wrap: wrap; }

.hero-badge {
  position: absolute; z-index: 3; right: clamp(24px, 7vw, 110px); top: 32%;
  background: var(--red); color: #fff; text-align: center;
  padding: 22px 26px 18px; box-shadow: 0 24px 60px rgba(0,0,0,0.45);
}
.hero-badge .n { display: block; font: 800 52px/0.9 var(--display); }
.hero-badge .t { display: block; font: 700 12.5px var(--display); letter-spacing: 0.18em; text-transform: uppercase; margin-top: 6px; }
.hero-badge::after { content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 6px; background: repeating-linear-gradient(-45deg, var(--charcoal-deep) 0 8px, transparent 8px 16px), var(--red-dark); }

.hero-stats {
  position: relative; z-index: 2; margin-top: clamp(52px, 7vh, 96px);
  border-top: 1px solid rgba(245, 240, 232, 0.16);
  display: grid; grid-template-columns: repeat(3, 1fr);
}
.hero-stats .stat { padding: 26px 28px 40px; border-right: 1px solid rgba(245, 240, 232, 0.16); }
.hero-stats .stat:last-child { border-right: 0; }
.stat .stat-n { font: 800 clamp(40px, 4.6vw, 64px)/1 var(--display); color: var(--limestone); font-variant-numeric: tabular-nums; }
.stat .stat-n em { font-style: normal; color: var(--red); }
.stat .stat-t { font: 700 13px var(--display); letter-spacing: 0.2em; text-transform: uppercase; color: var(--limestone-dim); margin-top: 8px; }

.scroll-hint {
  position: absolute; bottom: 0; right: var(--gutter); z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  font: 700 11px var(--display); letter-spacing: 0.3em; text-transform: uppercase; color: var(--limestone-dim);
  writing-mode: vertical-rl; padding-bottom: 18px;
}
.scroll-hint::after { content: ""; width: 1px; height: 56px; background: linear-gradient(var(--red), transparent); animation: drip 2.2s ease-in-out infinite; }
@keyframes drip { 0% { transform: scaleY(0); transform-origin: top; } 45% { transform: scaleY(1); transform-origin: top; } 55% { transform: scaleY(1); transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* ---------- 8. Subpage hero ---------- */
.page-hero { position: relative; padding: calc(var(--header-h) + clamp(48px, 8vh, 90px)) 0 0; overflow: hidden; }
.page-hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(36px, 5vw, 72px); align-items: center; padding-bottom: clamp(60px, 8vw, 100px); }
.breadcrumb { display: flex; align-items: center; gap: 12px; font: 700 12.5px var(--display); letter-spacing: 0.2em; text-transform: uppercase; color: var(--limestone-dim); margin-bottom: 26px; }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb .sep { color: var(--red); }
.page-hero h1 { font-size: clamp(46px, 5.2vw, 62px); text-wrap: balance; }
.split-body h2, .sec-head h2 { text-wrap: balance; }
.page-hero .hero-sub { margin-top: 24px; }
.page-hero-img { position: relative; }
.page-hero-img .frame { position: relative; overflow: hidden; }
.page-hero-img img { width: 100%; height: clamp(340px, 44vw, 560px); object-fit: cover; }
.page-hero-img .frame::before { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(245,240,232,0.12); z-index: 2; }
.page-hero-img .corner { position: absolute; width: 84px; height: 84px; border: 2px solid var(--red); z-index: 3; }
.page-hero-img .corner--tl { top: -12px; left: -12px; border-right: 0; border-bottom: 0; }
.page-hero-img .corner--br { bottom: -12px; right: -12px; border-left: 0; border-top: 0; }
.page-hero-img .img-tag {
  position: absolute; left: 0; bottom: 0; z-index: 4; background: var(--red); color: #fff;
  font: 700 12.5px var(--display); letter-spacing: 0.18em; text-transform: uppercase; padding: 12px 18px;
}

/* ---------- 9. Split sections (about / long-form) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 84px); align-items: center; }
.split--rev .split-media { order: 2; }
.split-media { position: relative; }
.split-media img { width: 100%; height: clamp(340px, 40vw, 520px); object-fit: cover; }
.split-media::after { content: ""; position: absolute; top: 18px; left: 18px; right: -18px; bottom: -18px; border: 1px solid var(--charcoal-light); z-index: -1; }
.split-media .media-badge {
  position: absolute; right: -14px; bottom: -14px; background: var(--red); color: #fff; padding: 18px 22px 15px; text-align: center;
}
.split-media .media-badge .n { font: 800 38px/0.9 var(--display); display: block; }
.split-media .media-badge .t { font: 700 11px var(--display); letter-spacing: 0.16em; text-transform: uppercase; display: block; margin-top: 4px; }
.split-body h2 { margin-bottom: 24px; }
.split-body .eyebrow { margin-bottom: 14px; }
.split-body .btn { margin-top: 32px; }

.checklist { margin-top: 26px; display: grid; gap: 13px; }
.checklist li { display: flex; gap: 14px; align-items: baseline; font-size: 16.5px; }
.checklist li::before { content: ""; flex-shrink: 0; width: 9px; height: 9px; background: var(--red); transform: translateY(-1px); }
.checklist li strong { color: var(--limestone); }

/* ---------- 10. Feature / difference cards ---------- */
.diff-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--charcoal-light); border: 1px solid var(--charcoal-light); }
.diff-card { background: var(--charcoal); padding: clamp(28px, 3vw, 44px) clamp(22px, 2.4vw, 34px); position: relative; overflow: hidden; transition: background 0.3s; }
.diff-card:hover { background: var(--charcoal-mid); }
.diff-card .d-num { font: 800 15px var(--display); letter-spacing: 0.14em; color: var(--limestone-dim); display: block; margin-bottom: 26px; }
.diff-card .d-icon { width: 44px; height: 44px; margin-bottom: 22px; }
.diff-card .d-icon svg { width: 100%; height: 100%; stroke: var(--red); fill: none; stroke-width: 1.6; }
.diff-card h3 { font-size: 24px; margin-bottom: 14px; }
.diff-card p { font-size: 15.5px; line-height: 1.7; }
.diff-card::after { content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 3px; background: var(--red); transform: scaleX(0); transform-origin: left; transition: transform 0.35s; }
.diff-card:hover::after { transform: scaleX(1); }

/* ---------- 11. Service cards ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 2.4vw, 32px); }
.svc-card { background: var(--charcoal-mid); border: 1px solid var(--charcoal-light); display: flex; flex-direction: column; position: relative; transition: transform 0.3s, border-color 0.3s; }
.svc-card:hover { transform: translateY(-6px); border-color: rgba(204, 27, 27, 0.55); }
.svc-media { position: relative; overflow: hidden; aspect-ratio: 16 / 10; }
.svc-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.2, 0.6, 0.2, 1); }
.svc-card:hover .svc-media img { transform: scale(1.06); }
.svc-tag {
  position: absolute; top: 0; left: 0; z-index: 2; background: var(--red); color: #fff;
  font: 700 12px var(--display); letter-spacing: 0.16em; text-transform: uppercase; padding: 9px 14px;
}
.svc-body { padding: clamp(24px, 2.6vw, 34px); display: flex; flex-direction: column; flex: 1; }
.svc-body h3 { margin-bottom: 13px; }
.svc-body > p { font-size: 15.5px; line-height: 1.7; }
.svc-list { margin: 20px 0 26px; display: grid; gap: 10px; }
.svc-list li { display: flex; gap: 12px; align-items: baseline; font-size: 15px; color: var(--limestone-muted); }
.svc-list li::before { content: ""; flex-shrink: 0; width: 7px; height: 7px; background: var(--red); }
.svc-body .textlink { margin-top: auto; align-self: flex-start; }

/* ---------- 12. Process ---------- */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(24px, 3vw, 44px); }
.process-grid--5 { grid-template-columns: repeat(5, 1fr); gap: clamp(18px, 2vw, 30px); }
.process-grid--3 { grid-template-columns: repeat(3, 1fr); }
.step { position: relative; padding-top: 26px; border-top: 1px solid var(--charcoal-light); }
.step::before { content: ""; position: absolute; top: -1px; left: 0; width: 56px; height: 3px; background: var(--red); }
.step .s-num {
  font: 800 clamp(64px, 6.5vw, 92px)/1 var(--display);
  color: transparent; -webkit-text-stroke: 1px rgba(245, 240, 232, 0.32);
  display: block; margin-bottom: 18px; transition: color 0.35s, -webkit-text-stroke-color 0.35s;
}
.step:hover .s-num { color: var(--red); -webkit-text-stroke-color: var(--red); }
.step h3 { font-size: 25px; margin-bottom: 13px; }
.step p { font-size: 15.5px; line-height: 1.7; }

/* ---------- 13. Project tiles ---------- */
.proj-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2vw, 28px); }
.proj-tile { position: relative; overflow: hidden; aspect-ratio: 4 / 3; display: block; }
.proj-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.65s cubic-bezier(0.2, 0.6, 0.2, 1); }
.proj-tile:hover img { transform: scale(1.07); }
.proj-tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(10deg, rgba(11,11,10,0.88) 0%, rgba(11,11,10,0.25) 46%, rgba(11,11,10,0.05) 100%); }
.proj-info { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 22px 24px; }
.proj-info .p-cat { font: 700 12px var(--display); letter-spacing: 0.2em; text-transform: uppercase; color: var(--red-bright); display: block; margin-bottom: 6px; }
.proj-info h3 { font-size: 23px; }
.proj-info .p-loc { font: 400 14px var(--serif); color: var(--limestone-muted); margin-top: 4px; font-style: italic; }
.proj-tile .p-line { position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: var(--red); transform: scaleX(0); transform-origin: left; transition: transform 0.4s; z-index: 3; }
.proj-tile:hover .p-line { transform: scaleX(1); }

/* ---------- 14. Testimonials ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 2.4vw, 30px); }
.testi { background: var(--charcoal-mid); border: 1px solid var(--charcoal-light); padding: clamp(28px, 3vw, 38px); position: relative; display: flex; flex-direction: column; }
.testi .q-mark { font: 700 96px/0.5 var(--serif); color: var(--red); position: absolute; top: 38px; left: 30px; opacity: 0.9; pointer-events: none; }
.testi blockquote { font-size: 16px; line-height: 1.78; padding-top: 44px; flex: 1; font-style: italic; }
.testi .t-meta { display: flex; align-items: center; gap: 15px; margin-top: 26px; padding-top: 22px; border-top: 1px solid var(--charcoal-light); }
.testi .t-av {
  width: 48px; height: 48px; border-radius: 50%; flex-shrink: 0;
  background: var(--charcoal-light); border: 1px solid rgba(204, 27, 27, 0.6);
  display: flex; align-items: center; justify-content: center;
  font: 700 16px var(--display); letter-spacing: 0.04em; color: var(--limestone);
}
.testi .t-name { font: 700 17px var(--display); letter-spacing: 0.04em; text-transform: uppercase; color: var(--limestone); display: block; }
.testi .t-loc { font: 400 13.5px var(--serif); color: var(--limestone-dim); display: block; margin-top: 2px; }
.testi .t-proj { font: 700 11.5px var(--display); letter-spacing: 0.18em; text-transform: uppercase; color: var(--red); display: block; margin-top: 5px; }

/* ---------- 15. Stat band (subpages) ---------- */
.stat-band { border-top: 1px solid var(--charcoal-light); border-bottom: 1px solid var(--charcoal-light); background: var(--charcoal-mid); }
.stat-band .container { display: grid; grid-template-columns: repeat(3, 1fr); }
.stat-band .stat { padding: clamp(30px, 3.4vw, 46px) 30px; border-right: 1px solid var(--charcoal-light); text-align: center; }
.stat-band .stat-n, .stat-band .stat-t { display: block; }
.stat-band .stat:last-child { border-right: 0; }

/* ---------- 16. CTA band ---------- */
.cta-band { position: relative; overflow: hidden; background: var(--red); }
.cta-band .cta-inner { position: relative; z-index: 2; padding: clamp(64px, 8vw, 104px) 0; text-align: center; }
.cta-band h2 { color: #fff; font-size: clamp(40px, 5.4vw, 68px); }
.cta-band h2 .hollow { color: transparent; -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.85); }
.cta-band p { color: rgba(255, 255, 255, 0.88); max-width: 640px; margin: 22px auto 0; font-size: 17.5px; }
.cta-band .cta-actions { display: flex; gap: 16px; justify-content: center; margin-top: 38px; flex-wrap: wrap; }
.cta-band .btn--inv { background: var(--charcoal-deep); border-color: var(--charcoal-deep); color: #fff; }
.cta-band .btn--inv:hover { background: #000; }
.cta-band::before {
  content: ""; position: absolute; inset: 0; z-index: 1; opacity: 0.14; pointer-events: none;
  background: repeating-linear-gradient(-45deg, #000 0 2px, transparent 2px 26px);
}
.cta-band .hazard { position: absolute; top: 0; left: 0; right: 0; z-index: 2; background: repeating-linear-gradient(-45deg, var(--charcoal-deep) 0 10px, transparent 10px 22px); }

/* ---------- 17. FAQ ---------- */
.faq-wrap { max-width: 860px; margin: 0 auto; }
.faq-item { border: 1px solid var(--charcoal-light); background: var(--charcoal-mid); margin-bottom: 14px; }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 20px;
  text-align: left; padding: 22px 26px;
  font: 700 20px/1.35 var(--display); letter-spacing: 0.03em; text-transform: uppercase; color: var(--limestone);
  transition: color 0.25s;
  white-space: normal; overflow-wrap: break-word;
}
@media (max-width: 640px) {
  .faq-q { font-size: 16px; padding: 16px 18px; gap: 12px; }
  .faq-a-inner { padding-left: 18px !important; padding-right: 18px !important; margin-left: 18px !important; margin-right: 18px !important; }
  .faq-ind { width: 14px; height: 14px; }
  .faq-ind::before { top: 6px; width: 14px; }
  .faq-ind::after { left: 6px; height: 14px; }
}
.faq-item .faq-q:hover, .faq-item .faq-q:focus { background: transparent; color: var(--red-bright); }

/* Hello Elementor reset.css blanket-applies a pink bg to every button:hover /
   :focus. Neutralise it for our custom buttons so main.css hover rules win. */
.faq-q:hover, .faq-q:focus,
.tab-btn:hover, .tab-btn:focus,
.gal-filter:hover, .gal-filter:focus,
.nav-burger:hover, .nav-burger:focus { background: transparent; color: inherit; }
.tab-btn.active { color: var(--red); }
.gal-filter.active { color: #fff; }
.faq-ind { position: relative; flex-shrink: 0; width: 16px; height: 16px; }
.faq-ind::before, .faq-ind::after { content: ""; position: absolute; background: var(--red); transition: transform 0.3s; }
.faq-ind::before { left: 0; top: 7px; width: 16px; height: 2px; }
.faq-ind::after { left: 7px; top: 0; width: 2px; height: 16px; }
.faq-item.open .faq-ind::after { transform: scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-a-inner { padding: 0 26px 26px; font-size: 16px; line-height: 1.8; border-top: 1px solid var(--charcoal-light); padding-top: 20px; margin: 0 26px 26px; padding-left: 0; padding-right: 0; }
.faq-cat {
  max-width: 860px; margin: 46px auto 18px; display: flex; align-items: center; gap: 14px;
  font: 700 21px var(--display); letter-spacing: 0.08em; text-transform: uppercase; color: var(--limestone);
}
.faq-cat::before { content: ""; width: 28px; height: 3px; background: var(--red); flex-shrink: 0; }
.faq-cat:first-of-type { margin-top: 0; }

/* ---------- 18. Gallery ---------- */
.gal-filters { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: clamp(30px, 4vw, 46px); }
.gal-filter {
  font: 700 13.5px var(--display); letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--limestone-muted); border: 1px solid var(--charcoal-light); padding: 11px 20px;
  transition: all 0.25s; background: transparent;
}
.gal-filter:hover { color: var(--limestone); border-color: var(--limestone-dim); }
.gal-filter.active { background: var(--red); border-color: var(--red); color: #fff; }
.gal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gal-item { position: relative; overflow: hidden; aspect-ratio: 4 / 3; cursor: pointer; }
.gal-item.hidden { display: none; }
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.2, 0.6, 0.2, 1); }
.gal-item:hover img { transform: scale(1.06); }
.gal-overlay {
  position: absolute; inset: 0; z-index: 2; padding: 20px 22px;
  display: flex; flex-direction: column; justify-content: flex-end;
  background: linear-gradient(8deg, rgba(11,11,10,0.92) 0%, rgba(11,11,10,0.3) 45%, rgba(11,11,10,0) 70%);
  opacity: 0; transition: opacity 0.35s;
}
.gal-item:hover .gal-overlay { opacity: 1; }
.gal-overlay .g-cat { font: 700 11px var(--display); letter-spacing: 0.2em; text-transform: uppercase; color: var(--red-bright); margin-bottom: 5px; }
.gal-overlay h3 { font-size: 20px; }
.gal-overlay p { font-size: 13.5px; font-style: italic; color: var(--limestone-muted); margin-top: 4px; line-height: 1.5; }

/* ---------- 19. Before / After slider ---------- */
.ba-slider { position: relative; overflow: hidden; aspect-ratio: 16 / 9; user-select: none; touch-action: none; border: 1px solid var(--charcoal-light); }
.ba-slider img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.ba-after { clip-path: inset(0 0 0 var(--ba, 50%)); }
.ba-handle { position: absolute; top: 0; bottom: 0; left: var(--ba, 50%); width: 2px; background: var(--red); z-index: 5; transform: translateX(-1px); }
.ba-handle::after {
  content: "◂ ▸"; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  background: var(--red); color: #fff; font: 700 13px/1 var(--display); letter-spacing: 1px;
  padding: 12px 10px; white-space: nowrap;
}
.ba-label { position: absolute; top: 16px; z-index: 4; background: rgba(11,11,10,0.82); color: var(--limestone); font: 700 12px var(--display); letter-spacing: 0.18em; text-transform: uppercase; padding: 8px 14px; pointer-events: none; }
.ba-label--before { left: 16px; }
.ba-label--after { right: 16px; color: #fff; background: var(--red); }

/* ---------- 20. Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(40px, 5vw, 80px); align-items: start; }
.c-info-item { display: flex; gap: 18px; padding: 24px 0; border-bottom: 1px solid var(--charcoal-light); }
.c-info-item:first-child { border-top: 1px solid var(--charcoal-light); }
.c-icn { width: 44px; height: 44px; border: 1px solid var(--charcoal-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.c-icn svg { width: 19px; height: 19px; stroke: var(--red); fill: none; stroke-width: 1.7; }
.c-info-item .c-label { font: 700 12.5px var(--display); letter-spacing: 0.2em; text-transform: uppercase; color: var(--limestone-dim); display: block; margin-bottom: 5px; }
.c-info-item .c-val { font: 700 21px var(--display); letter-spacing: 0.03em; color: var(--limestone); text-transform: uppercase; }
.c-info-item .c-val a:hover { color: var(--red); }
.c-info-item .c-note { font-size: 14px; margin-top: 4px; color: var(--limestone-muted); }

/* Style 2 — info column rendered as a 4-col row BELOW the full-width form. */
.c-info-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: clamp(40px, 4vw, 64px); }
.c-info-row .c-info-item { flex-direction: column; align-items: flex-start; gap: 10px; padding: 20px 0 0; border-top: 2px solid var(--red); border-bottom: 0; }
.c-info-row .c-info-item:first-child { border-top: 2px solid var(--red); }
.c-info-row .c-info-item .c-val { font-size: 17px; }
.c-info-row .c-info-item .c-note { font-size: 13.5px; line-height: 1.55; }
.c-info-row .c-icn { margin-bottom: 4px; }

/* Contact page GHL iframe container — full-width, no card chrome. */
.form-card--ghl { padding: 0; border: 0; background: transparent; }
.form-card--ghl::before { display: none; }

@media (max-width: 900px) {
  .c-info-row { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (max-width: 640px) {
  .c-info-row { grid-template-columns: 1fr; }
}

.form-card { background: var(--charcoal-mid); border: 1px solid var(--charcoal-light); padding: clamp(28px, 3.4vw, 46px); position: relative; }
.form-card::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: var(--red); }
.form-card h3 { margin-bottom: 26px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field--full { grid-column: 1 / -1; }
.form-field label { font: 700 12.5px var(--display); letter-spacing: 0.16em; text-transform: uppercase; color: var(--limestone-muted); }
.form-field label em { color: var(--red); font-style: normal; }
.form-field input, .form-field select, .form-field textarea {
  background: var(--input-bg); border: 1px solid var(--charcoal-light); color: var(--limestone);
  font: 400 16px var(--serif); padding: 14px 16px; border-radius: 0; width: 100%;
  transition: border-color 0.25s; appearance: none; -webkit-appearance: none;
}
.form-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23cc1b1b' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; padding-right: 42px; cursor: pointer;
}
.form-field textarea { min-height: 130px; resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--red); outline: none; }
.form-field input::placeholder, .form-field textarea::placeholder { color: var(--limestone-dim); }
.form-success { display: none; text-align: center; padding: 46px 10px; }
.form-success.show { display: block; }
.form-success .fs-icn { width: 62px; height: 62px; margin: 0 auto 22px; border: 2px solid var(--red); display: flex; align-items: center; justify-content: center; }
.form-success .fs-icn svg { width: 28px; height: 28px; stroke: var(--red); fill: none; stroke-width: 2.4; }
.form-success h3 { margin-bottom: 10px; }

/* ---------- 21. Footer ---------- */
.site-footer { background: var(--charcoal-deep); border-top: 1px solid var(--charcoal-light); position: relative; }
.footer-main { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: clamp(32px, 4vw, 64px); padding: clamp(56px, 7vw, 84px) 0 clamp(40px, 5vw, 60px); }
.f-brand .brand { margin-bottom: 20px; }
.f-tag { font: 700 15px var(--display); letter-spacing: 0.12em; text-transform: uppercase; color: var(--red); display: block; margin-bottom: 14px; }
.f-brand p { font-size: 15px; line-height: 1.75; max-width: 320px; }
.f-contact { margin-top: 22px; display: grid; gap: 9px; }
.f-contact li { display: flex; gap: 11px; align-items: center; font-size: 15px; }
.f-contact svg { width: 15px; height: 15px; stroke: var(--red); fill: none; stroke-width: 1.8; flex-shrink: 0; }
.f-contact a:hover { color: var(--red-bright); }
.f-brand .btn { margin-top: 24px; }
.f-col h4 { font-size: 17px; letter-spacing: 0.12em; margin-bottom: 22px; position: relative; padding-bottom: 12px; }
.f-col h4::after { content: ""; position: absolute; left: 0; bottom: 0; width: 30px; height: 2px; background: var(--red); }
.f-col ul { display: grid; gap: 11px; }
.f-col a, .f-col li span { font-size: 15px; color: var(--limestone-muted); transition: color 0.2s, padding-left 0.2s; }
.f-col a:hover { color: var(--red-bright); padding-left: 5px; }
.f-areas li { display: flex; gap: 11px; align-items: baseline; }
.f-areas li::before { content: ""; width: 6px; height: 6px; background: var(--red); flex-shrink: 0; }
.footer-bar { border-top: 1px solid var(--charcoal-light); padding: 22px 0; }
.footer-bar .container { display: flex; justify-content: space-between; align-items: center; gap: 14px 24px; flex-wrap: wrap; }
.footer-bar p { font-size: 13.5px; color: var(--limestone-dim); margin: 0; }
.footer-bar .f-badge { display: inline-flex; align-items: center; gap: 9px; font: 700 12px var(--display); letter-spacing: 0.16em; text-transform: uppercase; color: var(--limestone-muted); }
.footer-bar .f-badge::before { content: ""; width: 7px; height: 7px; background: var(--red); }
.footer-bar .f-legal { display: flex; align-items: center; gap: 8px 20px; flex-wrap: wrap; justify-content: flex-end; }
.footer-bar .f-legal .f-credit { font-size: 12.5px; color: var(--limestone-muted); letter-spacing: 0.02em; }
.footer-bar .f-legal .f-credit::before {
  content: ""; display: inline-block; width: 3px; height: 3px; background: var(--red);
  border-radius: 50%; vertical-align: middle; margin-right: 14px; margin-left: 4px;
  transform: translateY(-2px);
}
.footer-bar .f-legal .f-credit a {
  color: var(--limestone); font-weight: 700; letter-spacing: 0.05em;
  border-bottom: 1px solid transparent; transition: border-color 0.2s, color 0.2s;
}
.footer-bar .f-legal .f-credit a:hover, .footer-bar .f-legal .f-credit a:focus {
  color: var(--red); border-bottom-color: var(--red);
}
@media (max-width: 640px) {
  .footer-bar .container { justify-content: center; text-align: center; }
  .footer-bar .f-legal { justify-content: center; }
  .footer-bar .f-legal .f-credit::before { display: none; }
}

/* ---------- 22. Tabs ---------- */
.tabs-bar { display: flex; gap: 10px; margin-bottom: clamp(34px, 4vw, 52px); flex-wrap: wrap; }
.tab-btn {
  font: 700 16px var(--display); letter-spacing: 0.12em; text-transform: uppercase;
  padding: 15px 34px; border: 1px solid var(--charcoal-light); color: var(--limestone-muted); transition: all 0.25s;
}
.tab-btn:hover { color: var(--limestone); border-color: var(--limestone-dim); }
.tab-btn.active { background: var(--red); border-color: var(--red); color: #fff; }
.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fadeUp 0.5s ease; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }

/* ---------- 23. Included / info cards ---------- */
.inc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2vw, 28px); }
.inc-card { background: var(--charcoal-mid); border: 1px solid var(--charcoal-light); padding: clamp(26px, 2.8vw, 36px); position: relative; transition: border-color 0.3s, transform 0.3s; }
.inc-card:hover { border-color: rgba(204, 27, 27, 0.5); transform: translateY(-4px); }
.inc-card .i-num { font: 800 15px var(--display); letter-spacing: 0.14em; color: var(--red); display: block; margin-bottom: 18px; }
.inc-card h3 { font-size: 22px; margin-bottom: 12px; }
.inc-card p { font-size: 15px; line-height: 1.7; }

/* Rich text prose blocks */
.prose h2 { margin: 0 0 22px; }
.prose h3 { margin: 34px 0 14px; }
.prose p { font-size: 16.5px; }
.prose ul { margin: 18px 0; display: grid; gap: 12px; }
.prose ul li { display: flex; gap: 14px; align-items: baseline; }
.prose ul li::before { content: ""; flex-shrink: 0; width: 8px; height: 8px; background: var(--red); }

/* Quote block (careers Rob quote) */
.quote-block { max-width: 880px; margin: 0 auto; text-align: center; position: relative; padding: clamp(20px, 3vw, 40px) 20px; }
.quote-block .q-mark-big { font: 700 150px/0.4 var(--serif); color: var(--red); display: block; margin-bottom: 34px; }
.quote-block blockquote { font: 400 clamp(24px, 3vw, 34px)/1.45 var(--serif); font-style: italic; color: var(--limestone); }
.quote-block cite { display: inline-flex; align-items: center; gap: 14px; margin-top: 30px; font: 700 15px var(--display); letter-spacing: 0.2em; text-transform: uppercase; color: var(--red); font-style: normal; }
.quote-block cite::before, .quote-block cite::after { content: ""; width: 34px; height: 2px; background: var(--red); }

/* Benefit cards (careers) */
.benefit-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(18px, 2vw, 26px); }
.benefit-card { border: 1px solid var(--charcoal-light); background: var(--charcoal-mid); padding: clamp(26px, 2.6vw, 34px); transition: border-color 0.3s, transform 0.3s; }
.benefit-card:hover { border-color: rgba(204, 27, 27, 0.5); transform: translateY(-4px); }
.benefit-card .b-icon { width: 42px; height: 42px; margin-bottom: 20px; }
.benefit-card .b-icon svg { width: 100%; height: 100%; stroke: var(--red); fill: none; stroke-width: 1.6; }
.benefit-card h3 { font-size: 21px; margin-bottom: 11px; }
.benefit-card p { font-size: 14.5px; line-height: 1.7; }

/* Related services strip */
.related-strip { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* Problem-section big stats */
.bigstat { border: 1px solid var(--charcoal-light); background: var(--charcoal-mid); padding: clamp(26px, 3vw, 38px); position: relative; }
.bigstat::before { content: ""; position: absolute; top: 0; left: 0; width: 46px; height: 3px; background: var(--red); }
.bigstat .n { font: 800 clamp(42px, 4.6vw, 66px)/1 var(--display); color: var(--red); display: block; text-transform: uppercase; }
.bigstat .t { font: 700 13.5px var(--display); letter-spacing: 0.16em; text-transform: uppercase; color: var(--limestone-muted); margin-top: 12px; display: block; line-height: 1.5; }
.bigstat + .bigstat { margin-top: 20px; }

/* 4-column stat band variant */
.stat-band--4 .container { grid-template-columns: repeat(4, 1fr); }
.stat-band .stat .stat-w { font: 800 clamp(26px, 2.4vw, 38px)/1.05 var(--display); color: var(--limestone); text-transform: uppercase; display: block; }
.stat-band .stat .stat-w em { font-style: normal; color: var(--red); }
@media (max-width: 1024px) {
  .stat-band--4 .container { grid-template-columns: repeat(2, 1fr); }
  .stat-band--4 .stat:nth-child(2) { border-right: 0; }
  .stat-band--4 .stat:nth-child(-n+2) { border-bottom: 1px solid var(--charcoal-light); }
}
@media (max-width: 640px) {
  .stat-band--4 .container { grid-template-columns: 1fr; }
  .stat-band--4 .stat { border-right: 0; border-bottom: 1px solid var(--charcoal-light); }
  .stat-band--4 .stat:last-child { border-bottom: 0; }
}

/* ---------- 24. Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: 0.1s; }
.reveal[data-d="2"] { transition-delay: 0.2s; }
.reveal[data-d="3"] { transition-delay: 0.3s; }
.reveal[data-d="4"] { transition-delay: 0.4s; }
.reveal[data-d="5"] { transition-delay: 0.5s; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation: none !important; }
}

/* ---------- 25. Responsive ---------- */
@media (max-width: 1120px) {
  .nav { display: none; }
  .nav-burger { display: flex; }
  .header-cta .btn { display: none; }
}
@media (max-width: 1024px) {
  .diff-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); row-gap: 44px; }
  .proj-grid, .testi-grid, .gal-grid, .inc-grid { grid-template-columns: repeat(2, 1fr); }
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .page-hero-grid { grid-template-columns: 1fr; }
  .page-hero-img img { height: clamp(280px, 46vw, 440px); }
  .split, .split--rev { grid-template-columns: 1fr; }
  .split--rev .split-media { order: 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .hero-badge { display: none; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .header-phone { display: none; }
  .header-inner { gap: 12px; }
  .hero { min-height: auto; padding-bottom: 0; }
  .hero-stats { grid-template-columns: 1fr; }
  .hero-stats .stat { border-right: 0; border-bottom: 1px solid rgba(245,240,232,0.14); padding: 18px 4px; display: flex; align-items: baseline; gap: 14px; }
  .hero-stats .stat:last-child { border-bottom: 0; }
  .stat .stat-t { margin-top: 0; }
  .svc-grid, .proj-grid, .testi-grid, .gal-grid, .inc-grid, .diff-grid, .process-grid, .benefit-grid { grid-template-columns: 1fr; }
  /* Mobile footer: Brand full-width, Services full-width, Company + Service Areas side by side */
  .footer-main {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "brand brand"
      "svc svc"
      "co area";
    row-gap: 28px; column-gap: 20px;
  }
  .footer-main > :nth-child(1) { grid-area: brand; }
  .footer-main > :nth-child(2) { grid-area: svc; }
  .footer-main > :nth-child(3) { grid-area: co; }
  .footer-main > :nth-child(4) { grid-area: area; }
  .form-grid { grid-template-columns: 1fr; }
  .stat-band .container { grid-template-columns: 1fr; }
  .stat-band .stat { border-right: 0; border-bottom: 1px solid var(--charcoal-light); }
  .stat-band .stat:last-child { border-bottom: 0; }
  .scroll-hint { display: none; }
  .hero-ctas .btn { width: 100%; }
  .cta-band .cta-actions .btn { width: 100%; }
}

/* ---------- 24. Blog ---------- */

/* Blog index — 3-col card grid */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(28px, 3vw, 44px); }
.blog-card { background: var(--charcoal-mid); border: 1px solid var(--charcoal-light); display: flex; flex-direction: column; overflow: hidden; transition: transform 0.3s ease, border-color 0.3s ease; }
.blog-card:hover { transform: translateY(-4px); border-color: rgba(204, 27, 27, 0.5); }
.blog-card-media { display: block; aspect-ratio: 16/10; overflow: hidden; position: relative; }
.blog-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.blog-card:hover .blog-card-media img { transform: scale(1.04); }
.blog-card-body { padding: clamp(20px, 2vw, 28px); display: flex; flex-direction: column; gap: 12px; flex: 1; }
.blog-card-meta { display: flex; align-items: center; gap: 14px; font: 700 11.5px var(--display); letter-spacing: 0.15em; text-transform: uppercase; }
.blog-card-meta .b-cat { color: var(--red); }
.blog-card-meta .b-date { color: var(--limestone-dim); }
.blog-card h3 { font-size: clamp(18px, 1.6vw, 22px); line-height: 1.3; }
.blog-card h3 a { color: var(--limestone); }
.blog-card h3 a:hover { color: var(--red); }
.blog-card .b-excerpt { font-size: 15px; line-height: 1.7; color: var(--limestone-dim); flex: 1; }
.blog-card .textlink { font: 700 13px var(--display); letter-spacing: 0.12em; text-transform: uppercase; color: var(--red); display: inline-flex; align-items: center; gap: 8px; margin-top: auto; }
.blog-card .textlink:hover { transform: translateX(4px); transition: transform 0.2s; }

.blog-empty { text-align: center; padding: 40px 0; color: var(--limestone-dim); }

.blog-pagination { display: flex; justify-content: center; gap: 8px; margin-top: 48px; flex-wrap: wrap; }
.blog-pagination .page-numbers { display: inline-flex; align-items: center; justify-content: center; min-width: 44px; height: 44px; padding: 0 14px; border: 1px solid var(--charcoal-light); color: var(--limestone); font: 700 14px var(--display); letter-spacing: 0.08em; transition: all 0.2s; }
.blog-pagination .page-numbers.current { background: var(--red); border-color: var(--red); color: #fff; }
.blog-pagination .page-numbers:hover:not(.current) { border-color: var(--red); color: var(--red); }

/* Blog single — full-width featured image hero */
.blog-single { color: var(--limestone); }
.blog-single .blog-hero { position: relative; padding: calc(var(--header-h) + clamp(48px, 6vw, 84px)) 0 clamp(60px, 6vw, 90px); overflow: hidden; }
.blog-single .blog-hero-inner { position: relative; z-index: 2; }
.blog-single .blog-hero-media { position: absolute; inset: 0; background-size: cover; background-position: center; z-index: 1; opacity: 0.28; filter: grayscale(20%); }
.blog-single .blog-hero::after { content: ""; position: absolute; inset: 0; z-index: 2; background: linear-gradient(180deg, rgba(11, 11, 10, 0.7) 0%, rgba(11, 11, 10, 0.95) 100%); pointer-events: none; }
.blog-single .blog-hero-inner .container { position: relative; z-index: 3; }
.blog-single .blog-hero h1 { font-size: clamp(34px, 4.4vw, 56px); line-height: 1.1; margin-top: 22px; max-width: 900px; }
.blog-single .blog-meta { display: flex; align-items: center; gap: 14px; margin-top: 24px; font: 700 12px var(--display); letter-spacing: 0.16em; text-transform: uppercase; color: var(--limestone-dim); flex-wrap: wrap; }
.blog-single .blog-meta .b-cat { color: var(--red); border: 1px solid var(--red); padding: 6px 12px; }
.blog-single .blog-meta .b-cat:hover { background: var(--red); color: #fff; }
.blog-single .blog-meta .b-date::before { content: "•"; color: var(--red); margin-right: 14px; }
.blog-single .blog-meta .b-read::before { content: "•"; color: var(--red); margin-right: 14px; }

/* Blog single — body layout: TOC sidebar + boxed content */
.blog-single-body { padding: clamp(60px, 7vw, 100px) 0; background: var(--charcoal-deep); }
.blog-layout { display: grid; grid-template-columns: 280px 1fr; gap: clamp(36px, 4vw, 72px); align-items: start; }

/* TOC — sticky sidebar on desktop */
.blog-toc { position: sticky; top: calc(var(--header-h) + 24px); }
.blog-toc-inner { background: var(--charcoal-mid); border: 1px solid var(--charcoal-light); padding: 24px; border-left: 3px solid var(--red); }
.blog-toc-title { display: block; font: 700 12px var(--display); letter-spacing: 0.2em; text-transform: uppercase; color: var(--limestone-dim); margin-bottom: 14px; }
.blog-toc-list { list-style: none; padding: 0; margin: 0; counter-reset: toc-counter; }
.blog-toc-list li { counter-increment: toc-counter; padding: 6px 0; }
.blog-toc-list li.is-h3 { padding-left: 18px; }
.blog-toc-list a { display: block; font: 600 14px/1.4 var(--body); color: var(--limestone); border-left: 2px solid transparent; padding-left: 10px; margin-left: -12px; transition: color 0.2s, border-color 0.2s; }
.blog-toc-list a:hover { color: var(--red); border-left-color: var(--red); }
.blog-toc-list a.is-active { color: var(--red); border-left-color: var(--red); }

/* Blog body — boxed, max-width prose */
.blog-body { background: var(--charcoal-mid); border: 1px solid var(--charcoal-light); padding: clamp(28px, 4vw, 56px); max-width: 780px; margin: 0; }
.blog-body > *:first-child { margin-top: 0; }
.blog-body > *:last-child { margin-bottom: 0; }
.blog-body p, .blog-body ul, .blog-body ol, .blog-body blockquote, .blog-body figure { font-size: clamp(15.5px, 1.15vw, 17px); line-height: 1.8; color: var(--limestone); margin: 0 0 1.2em; }
.blog-body h2 { font-size: clamp(24px, 2.2vw, 30px); margin: 1.8em 0 0.6em; line-height: 1.25; scroll-margin-top: calc(var(--header-h) + 20px); }
.blog-body h3 { font-size: clamp(20px, 1.7vw, 24px); margin: 1.4em 0 0.5em; line-height: 1.3; scroll-margin-top: calc(var(--header-h) + 20px); }
.blog-body h2::before { content: ""; display: block; width: 46px; height: 3px; background: var(--red); margin-bottom: 14px; }
.blog-body a:not(.btn):not(.textlink) { color: var(--red); border-bottom: 1px solid transparent; transition: border-color 0.2s; }
.blog-body a:not(.btn):not(.textlink):hover { border-bottom-color: var(--red); }
.blog-body strong { color: var(--limestone); font-weight: 700; }
.blog-body em { color: var(--limestone-dim); font-style: italic; }
.blog-body ul, .blog-body ol { padding-left: 24px; }
.blog-body ul li, .blog-body ol li { margin: 0.4em 0; }
.blog-body ul li::marker { color: var(--red); }
.blog-body ol li::marker { color: var(--red); font-weight: 700; }
.blog-body blockquote { border-left: 3px solid var(--red); padding: 12px 22px; margin: 1.6em 0; color: var(--limestone); font-style: italic; background: rgba(204, 27, 27, 0.05); }
.blog-body img { width: 100%; height: auto; border: 1px solid var(--charcoal-light); margin: 1.4em 0; }
.blog-body figure { text-align: center; }
.blog-body figcaption { font-size: 13.5px; color: var(--limestone-dim); margin-top: 6px; }

/* End-of-post CTA */
.blog-cta { margin-top: 40px; padding: 32px; background: linear-gradient(135deg, rgba(204, 27, 27, 0.15) 0%, rgba(204, 27, 27, 0.02) 100%); border: 1px solid var(--red); text-align: center; }
.blog-cta h3 { font-size: clamp(20px, 1.8vw, 26px); margin-bottom: 20px; }

/* Mobile — TOC collapses above the body */
@media (max-width: 900px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-layout { grid-template-columns: 1fr; gap: 24px; }
  .blog-toc { position: static; }
}
@media (max-width: 640px) {
  .blog-grid { grid-template-columns: 1fr; }
  .blog-single .blog-hero h1 { font-size: 30px; }
  .blog-body { padding: 22px; }
  .blog-cta { padding: 22px; }
}
