:root {
  --ink: #121212;
  --coal: #1d2325;
  --coal-2: #2a3032;
  --steel: #586366;
  --muted: #737b7d;
  --mist: #f4f1ea;
  --ash: #ebe7df;
  --paper: #fffdf8;
  --white: #ffffff;
  --line: #ddd6ca;
  --orange: #ec6b1c;
  --orange-dark: #bb4c10;
  --orange-tint: #fff0e6;
  --heading: "Rajdhani", sans-serif;
  --body: "Manrope", sans-serif;
  --radius: 10px;
  --radius-sm: 6px;
  --shadow: 0 24px 70px rgba(18, 18, 18, 0.14);
  --soft-shadow: 0 14px 36px rgba(18, 18, 18, 0.08);
  --edge-shadow: 0 1px 0 rgba(255, 255, 255, 0.55) inset, 0 18px 42px rgba(18, 18, 18, 0.08);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(29, 35, 37, 0.035) 1px, transparent 1px) 0 0 / 72px 72px,
    linear-gradient(0deg, rgba(29, 35, 37, 0.026) 1px, transparent 1px) 0 0 / 72px 72px,
    var(--paper);
  font-family: var(--body);
  line-height: 1.65;
}

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

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

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2 {
  font-family: var(--heading);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.96;
  text-wrap: balance;
}

h3 {
  font-family: var(--heading);
  font-weight: 700;
  line-height: 1.15;
  text-wrap: balance;
}

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.skip-link:focus {
  width: auto;
  height: auto;
  clip: auto;
  z-index: 20;
  padding: 10px 14px;
  background: var(--orange);
  color: var(--white);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(29, 35, 37, 0.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(16px);
}

.top-strip {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 8px max(20px, calc((100vw - var(--max)) / 2));
  color: var(--white);
  background: var(--coal);
  font-size: 13px;
  font-weight: 800;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px 20px;
}

.brand img {
  width: 168px;
  height: auto;
}

.site-menu {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.site-menu a {
  position: relative;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.site-menu a[aria-current="page"],
.site-menu a:hover {
  color: var(--orange);
}

.site-menu > a,
.nav-group > a {
  color: var(--white);
}

.nav-group {
  position: relative;
}

.nav-submenu {
  position: absolute;
  top: 100%;
  left: -18px;
  display: grid;
  min-width: 310px;
  padding: 16px;
  background: rgba(29, 35, 37, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: 180ms ease;
}

.nav-group:hover .nav-submenu,
.nav-group:focus-within .nav-submenu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-submenu a {
  padding: 10px;
  color: var(--white);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.button::after,
.nav-cta::after,
.service-card a::after,
.overview-card a::after,
.text-link::after {
  content: "→";
  display: inline-block;
  margin-left: 16px;
  font-size: 1.05em;
  line-height: 1;
  transform: translateY(1px) rotate(0deg);
  transform-origin: center;
  transition: transform 180ms ease, margin-left 180ms ease;
}

.button:hover::after,
.nav-cta:hover::after,
.service-card a:hover::after,
.overview-card a:hover::after,
.text-link:hover::after {
  margin-left: 18px;
  transform: translate(4px, -3px) rotate(-38deg);
  font-weight: 900;
}

.nav-cta,
.button.primary {
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 10px 22px rgba(236, 107, 28, 0.22);
}

.button.primary:hover,
.nav-cta:hover {
  color: var(--white);
  background: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(236, 107, 28, 0.28);
}

.site-menu .nav-cta[aria-current="page"] {
  color: var(--white);
  background: var(--orange);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.72);
}

.button.secondary:hover {
  color: var(--coal);
  background: var(--white);
}

.button.dark {
  background: var(--coal);
  box-shadow: none;
}

.button.dark:hover {
  background: #0f1213;
}

.button.ghost {
  color: var(--coal);
  background: transparent;
  border-color: var(--line);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: max(792px, calc(92svh - 85px));
  margin-top: -98px;
  padding-top: 98px;
  overflow: hidden;
  background: var(--coal);
}

.hero picture,
.hero picture img,
.hero-video,
.page-hero img,
.service-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero picture img,
.hero-video,
.page-hero img,
.service-hero img {
  object-fit: cover;
}

.hero-residential {
  object-position: center 42%;
}

.hero-commercial {
  object-position: center 44%;
}

.hero-edge {
  object-position: center 38%;
}

.hero-residential-framing {
  object-position: center 58%;
}

.hero-residential-framing-alt {
  object-position: center 60%;
}

.hero-residential-framing-close {
  object-position: center 54%;
}

.hero-edge-netting {
  object-position: center 47%;
}

.hero-mobile-scaffold {
  object-position: center 54%;
}

.hero-safety-net {
  object-position: center 50%;
}

.hero-project-wide {
  object-position: center 48%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18, 18, 18, 0.9), rgba(18, 18, 18, 0.58) 48%, rgba(18, 18, 18, 0.18)),
    linear-gradient(0deg, rgba(18, 18, 18, 0.5), transparent 42%);
}

.hero::after,
.page-hero::before,
.service-hero::before,
.charcoal-band::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.075) 1px, transparent 1px) 0 0 / 84px 84px,
    linear-gradient(0deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px) 0 0 / 84px 84px;
  opacity: 0.28;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: max(20px, calc((100vw - var(--max)) / 2));
  transform: translateY(-50%);
  z-index: 1;
  display: grid;
  gap: 22px;
  width: min(672px, calc(60vw - 48px));
  max-width: none;
  padding: 0;
  color: var(--white);
}

.hero h1 {
  max-width: 880px;
  font-size: clamp(46px, 6.8vw, 82px);
}

.hero-content > p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(17px, 1.8vw, 21px);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: nowrap;
  gap: 14px;
  padding-top: 4px;
}

.hero-panel {
  position: absolute;
  top: 50%;
  right: max(20px, calc((100vw - var(--max)) / 2));
  bottom: auto;
  transform: translateY(-50%);
  z-index: 1;
  display: grid;
  gap: 10px;
  max-width: 390px;
  padding: 30px;
  color: var(--white);
  background: linear-gradient(145deg, rgba(29, 35, 37, 0.95), rgba(15, 18, 19, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-top: 3px solid var(--orange);
  border-radius: var(--radius);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background 220ms ease;
}

.hero-panel:hover {
  transform: translateY(calc(-50% - 8px));
  border-color: rgba(236, 107, 28, 0.58);
  background: linear-gradient(145deg, rgba(29, 35, 37, 0.98), rgba(15, 18, 19, 0.96));
  box-shadow: 0 34px 92px rgba(0, 0, 0, 0.42), 0 0 0 1px rgba(236, 107, 28, 0.16);
}

.hero-panel strong {
  font-family: var(--heading);
  font-weight: 700;
  color: var(--orange);
  font-size: clamp(36px, 3.8vw, 46px);
  line-height: 0.95;
  transition: transform 220ms ease, color 220ms ease;
}

.hero-panel:hover strong {
  transform: translateX(4px);
  color: #ff8a3d;
}

.eyebrow {
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.section,
.page-title,
.quote-layout {
  max-width: var(--max);
  margin: 0 auto;
  padding: 112px 20px;
}

.section-header {
  display: grid;
  gap: 16px;
  max-width: 790px;
  margin-bottom: 42px;
}

.section-header.center {
  margin-inline: auto;
  text-align: center;
}

.section-header h2,
.intro-grid h2,
.split-content h2,
.about-story h2,
.service-areas-stack h2,
.statement h2,
.cta-strip h2,
.page-title h1 {
  font-size: clamp(32px, 4.4vw, 56px);
}

.section-header p:not(.eyebrow),
.page-title p:not(.eyebrow),
.rich-copy,
.lead {
  color: var(--steel);
  font-size: 17px;
}

.section-header .eyebrow,
.page-title .eyebrow,
.cta-strip .eyebrow,
.charcoal-band .eyebrow,
.feature-band .eyebrow {
  color: var(--orange);
  font-family: var(--body);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.intro-grid,
.split-content {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 78px;
  align-items: start;
}

.intro-stack {
  grid-template-columns: 1fr;
  gap: 28px;
  max-width: var(--max);
}

.intro-stack .rich-copy {
  max-width: 820px;
}

.about-story {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: 56px;
  align-items: center;
}

.about-story > div {
  display: grid;
  gap: 22px;
}

.about-story .rich-copy,
.service-areas-stack .rich-copy {
  max-width: 920px;
}

.about-story > img {
  width: 100%;
  min-height: 440px;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.value-image-grid .value-card img {
  width: 68px;
  height: 68px;
  padding: 12px;
  object-fit: contain;
  background: radial-gradient(circle at 35% 28%, var(--white), var(--orange-tint));
  border: 1px solid rgba(236, 107, 28, 0.22);
  border-radius: 999px;
  box-shadow: 0 14px 28px rgba(236, 107, 28, 0.18), 0 8px 18px rgba(18, 18, 18, 0.08);
}

.service-areas-stack {
  display: grid;
  gap: 24px;
  justify-items: start;
}

.service-areas-stack > div:first-child {
  display: grid;
  gap: 16px;
  max-width: 980px;
}

.rich-copy {
  display: grid;
  gap: 18px;
}

.trust-bar {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  max-width: var(--max);
  margin: -46px auto 0;
  position: relative;
  z-index: 2;
  padding: 0 20px;
  gap: 10px;
}

.trust-bar a {
  position: relative;
  display: grid;
  align-content: space-between;
  min-height: 132px;
  padding: 22px 18px 20px;
  color: var(--coal);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(250, 247, 241, 0.94)),
    linear-gradient(135deg, rgba(236, 107, 28, 0.16), transparent 48%);
  border: 1px solid rgba(221, 214, 202, 0.86);
  border-top: 3px solid rgba(236, 107, 28, 0.72);
  border-radius: var(--radius-sm);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.72) inset, 0 18px 46px rgba(18, 18, 18, 0.1);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.trust-bar a span {
  display: block;
  color: var(--coal);
  font-family: var(--heading);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.05;
  text-transform: none;
  text-wrap: balance;
}

.trust-bar a em {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  color: var(--orange-dark);
  font-style: normal;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.trust-bar a em::after {
  content: "→";
  display: inline-block;
  color: var(--orange);
  transition: transform 180ms ease;
}

.trust-bar a:hover,
.trust-bar a:focus-visible {
  border-color: rgba(236, 107, 28, 0.62);
  transform: translateY(-5px);
  background:
    linear-gradient(145deg, var(--white), #fff8f2),
    linear-gradient(135deg, rgba(236, 107, 28, 0.22), transparent 48%);
  box-shadow: 0 26px 68px rgba(18, 18, 18, 0.16);
  outline: none;
}

.trust-bar a:hover em::after,
.trust-bar a:focus-visible em::after {
  transform: translateX(4px);
}

.feature-band {
  background:
    radial-gradient(circle at 12% 8%, rgba(236, 107, 28, 0.08), transparent 24%),
    var(--mist);
}

.feature-band .section {
  max-width: none;
  padding-inline: max(20px, calc((100vw - var(--max)) / 2));
}

.service-band,
.card-grid,
.process-grid,
.project-grid,
.proof-grid,
.faq-grid,
.best-grid {
  display: grid;
  gap: 24px;
}

.service-band {
  grid-template-columns: repeat(3, 1fr);
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px 112px;
}

.service-card,
.overview-card {
  position: relative;
  display: grid;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(160deg, var(--coal), #111415);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-card::before,
.overview-card::before {
  content: attr(data-number);
  position: absolute;
  right: 20px;
  bottom: 84px;
  color: rgba(255, 255, 255, 0.055);
  font-family: var(--heading);
  font-size: 96px;
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
}

.service-card:hover,
.overview-card:hover,
.project-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.service-card img,
.overview-card img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.05);
}

.service-card div,
.overview-card div {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 30px;
}

.service-card span,
.overview-card span {
  color: var(--orange);
  font-weight: 900;
  letter-spacing: 0.08em;
}

.service-card h3,
.overview-card h3 {
  font-size: 26px;
}

.service-card p,
.overview-card p {
  color: rgba(255, 255, 255, 0.76);
}

.service-card a,
.overview-card a,
.text-link {
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.card-grid {
  grid-template-columns: repeat(3, 1fr);
}

.proof-grid {
  grid-template-columns: repeat(4, 1fr);
}

.proof-grid-three {
  grid-template-columns: repeat(3, 1fr);
}

.proof-grid article,
.value-card,
.process-card,
.faq-item,
.best-card,
.info-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 30px;
  background: linear-gradient(180deg, var(--white), #fbf8f2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
  transition: transform 190ms ease, box-shadow 190ms ease, border-color 190ms ease, background 190ms ease;
}

.proof-grid article::after,
.value-card::after,
.best-card::after,
.info-card::after,
.faq-item::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, var(--orange), transparent 70%);
  opacity: 0.72;
  border-radius: var(--radius) 0 0 var(--radius);
  transition: opacity 190ms ease, width 190ms ease;
}

.proof-grid article:hover,
.value-card:hover,
.best-card:hover,
.info-card:hover,
.faq-item:hover {
  transform: translateY(-4px);
  border-color: rgba(236, 107, 28, 0.38);
  background: linear-gradient(180deg, var(--white), #fff8f2);
  box-shadow: var(--shadow);
}

.proof-grid article:hover::after,
.value-card:hover::after,
.best-card:hover::after,
.info-card:hover::after,
.faq-item:hover::after {
  width: 5px;
  opacity: 1;
}

.proof-grid article:hover img,
.value-card:hover img {
  transform: translateY(-2px) scale(1.04);
}

.proof-grid img {
  width: 62px;
  height: 62px;
  padding: 10px;
  object-fit: contain;
  background: radial-gradient(circle at 35% 28%, var(--white), var(--orange-tint));
  border: 1px solid rgba(236, 107, 28, 0.22);
  border-radius: 999px;
  box-shadow: 0 14px 28px rgba(236, 107, 28, 0.18), 0 8px 18px rgba(18, 18, 18, 0.08);
  transition: transform 190ms ease, box-shadow 190ms ease;
}

.proof-logo-grid img {
  width: auto;
  max-width: 132px;
  height: 56px;
  padding: 0;
  object-fit: contain;
  object-position: left center;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.proof-grid h3,
.value-card h3,
.process-card h3,
.best-card h3,
.info-card h3 {
  font-size: 24px;
}

.proof-grid p,
.value-card p,
.process-card p,
.faq-item p,
.best-card p,
.info-card p,
.info-card li {
  color: var(--steel);
}

.charcoal-band {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(236, 107, 28, 0.08), transparent 28%),
    linear-gradient(180deg, #202729, #121516);
}

.charcoal-band > * {
  position: relative;
  z-index: 1;
}

.charcoal-band .section {
  max-width: none;
  padding-inline: max(20px, calc((100vw - var(--max)) / 2));
}

.charcoal-band .section-header p:not(.eyebrow),
.charcoal-band .rich-copy,
.charcoal-band .process-card p {
  color: rgba(255, 255, 255, 0.74);
}

.process-grid {
  grid-template-columns: repeat(4, 1fr);
}

.process-card {
  position: relative;
  overflow: hidden;
  min-height: 210px;
  background: rgba(42, 48, 50, 0.92);
  border-color: rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  box-shadow: none;
}

.process-card:hover {
  transform: translateY(-4px);
  border-color: rgba(236, 107, 28, 0.42);
  background: rgba(35, 42, 44, 0.98);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.22);
}

.process-card::before {
  content: attr(data-step);
  position: absolute;
  right: 18px;
  top: 10px;
  color: rgba(255, 255, 255, 0.06);
  font-family: var(--heading);
  font-size: 84px;
  font-weight: 700;
  line-height: 1;
}

.process-card span {
  color: var(--orange);
  font-weight: 900;
}

.project-grid {
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
}

.stat-card {
  display: grid;
  gap: 8px;
  min-height: 180px;
  padding: 34px;
  background: rgba(18, 18, 18, 0.22);
  transition: transform 190ms ease, background 190ms ease, box-shadow 190ms ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  background: rgba(18, 18, 18, 0.34);
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.18);
}

.stat-card strong {
  color: var(--orange);
  font-family: var(--heading);
  font-size: clamp(44px, 5vw, 64px);
  font-weight: 700;
  line-height: 0.95;
}

.stat-card span {
  color: var(--white);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.055em;
}

.stat-card p {
  color: rgba(255, 255, 255, 0.72);
}

.testimonial-slider {
  display: grid;
  gap: 20px;
  overflow: hidden;
}

.testimonial-track {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 290px;
}

.testimonial-card {
  grid-area: 1 / 1;
  position: relative;
  display: grid;
  gap: 22px;
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--edge-shadow);
  opacity: 0;
  transform: translateX(28px);
  pointer-events: none;
  transition: opacity 260ms ease, transform 260ms ease, box-shadow 190ms ease, border-color 190ms ease;
}

.testimonial-card.is-active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.testimonial-card.is-active:hover {
  border-color: rgba(236, 107, 28, 0.34);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.testimonial-card blockquote {
  margin: 0;
  color: var(--coal);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.55;
}

.testimonial-card p {
  color: var(--steel);
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.testimonial-controls > button {
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--coal);
  background: var(--white);
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: var(--soft-shadow);
  transition: transform 180ms ease, color 180ms ease, background 180ms ease;
}

.testimonial-controls > button:hover,
.testimonial-dot.is-active {
  color: var(--white);
  background: var(--orange);
  border-color: var(--orange);
}

.testimonial-controls > button:hover {
  transform: translateY(-1px);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 1px solid var(--orange);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
}

.case-study {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 0;
  overflow: hidden;
  background: var(--coal);
  color: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.case-study img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.case-study div {
  display: grid;
  align-content: center;
  gap: 20px;
  padding: 48px;
  background:
    linear-gradient(90deg, rgba(236, 107, 28, 0.12), transparent),
    var(--coal);
}

.case-study p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
}

.case-study h2 {
  font-size: clamp(34px, 4vw, 54px);
}

.case-study + .project-grid {
  margin-top: 26px;
}

.project-card {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  background: var(--coal);
  color: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.project-card:first-child {
  grid-row: span 2;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  opacity: 0.82;
  transition: transform 320ms ease, opacity 320ms ease;
}

.project-card:hover img {
  transform: scale(1.04);
  opacity: 0.92;
}

.project-card div {
  position: absolute;
  inset: auto 0 0 0;
  display: grid;
  gap: 6px;
  padding: 28px;
  background: linear-gradient(0deg, rgba(18, 18, 18, 0.92), rgba(18, 18, 18, 0.08));
}

.project-card h3 {
  font-size: 24px;
}

.faq-grid {
  grid-template-columns: repeat(2, 1fr);
}

.faq-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.8fr);
  gap: 34px;
  align-items: start;
}

.faq-feature .faq-grid {
  grid-template-columns: 1fr;
}

.faq-feature > img {
  width: 100%;
  min-height: 520px;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.faq-item h3 {
  font-size: 21px;
}

.faq-item.is-enhanced {
  gap: 0;
  padding: 0;
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  padding: 24px 28px;
  border: 0;
  color: var(--coal);
  background: transparent;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.faq-question span {
  font-family: var(--heading);
  font-size: 21px;
  font-weight: 700;
  line-height: 1.15;
}

.faq-question::after {
  content: "+";
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--orange);
  background: var(--orange-tint);
  border-radius: 999px;
  box-shadow: 0 10px 20px rgba(236, 107, 28, 0.14);
  transition: transform 180ms ease, color 180ms ease, background 180ms ease;
}

.faq-item:hover .faq-question::after {
  color: var(--white);
  background: var(--orange);
  transform: rotate(90deg);
}

.faq-item.is-open .faq-question::after {
  content: "−";
  color: var(--white);
  background: var(--orange);
  transform: rotate(180deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 220ms ease;
}

.faq-answer > div {
  overflow: hidden;
}

.faq-answer p,
.faq-answer ul {
  padding: 0 28px 26px;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.cta-strip {
  position: relative;
  overflow: hidden;
  display: grid;
  justify-items: start;
  gap: 24px;
  max-width: var(--max);
  margin: 96px auto;
  padding: 56px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(236, 107, 28, 0.94) 0%, rgba(236, 107, 28, 0.86) 42%, rgba(29, 35, 37, 0.68) 72%, rgba(29, 35, 37, 0.38) 100%),
    url("assets/img/November2_2000x500c1pcenter.jpg") center / cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.cta-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.16) 1px, transparent 1px) 0 0 / 64px 64px,
    linear-gradient(0deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px) 0 0 / 64px 64px;
  opacity: 0.22;
}

.cta-strip > * {
  position: relative;
  z-index: 1;
}

.cta-strip > div {
  display: grid;
  justify-items: start;
  gap: 14px;
  max-width: 700px;
}

.cta-strip .eyebrow {
  color: var(--white);
}

.cta-strip p:not(.eyebrow) {
  max-width: 620px;
}

.page-hero,
.service-hero {
  position: relative;
  min-height: 430px;
  margin-top: -98px;
  padding-top: 98px;
  display: grid;
  align-items: end;
  color: var(--white);
  background: var(--coal);
  overflow: hidden;
}

.service-hero {
  min-height: 500px;
}

.page-hero::after,
.service-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(18, 18, 18, 0.9), rgba(18, 18, 18, 0.2));
}

.page-hero div,
.service-hero div {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  padding: 82px 20px;
}

.page-hero h1,
.service-hero h1,
.quote-layout h1 {
  max-width: 820px;
  font-size: clamp(38px, 5.8vw, 70px);
}

.page-hero p:not(.eyebrow),
.service-hero p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
}

.page-hero .eyebrow,
.service-hero .eyebrow {
  color: var(--white);
}

.statement {
  display: grid;
  justify-items: start;
  gap: 28px;
  padding-top: 0;
}

.page-title {
  display: grid;
  gap: 20px;
  max-width: 980px;
}

.legal-content {
  display: grid;
  gap: 18px;
  max-width: 920px;
}

.legal-content h2 {
  font-size: clamp(34px, 4.5vw, 56px);
}

.legal-content h3 {
  margin-top: 16px;
  color: var(--coal);
  font-size: 26px;
}

.legal-content p {
  color: var(--steel);
  font-size: 17px;
}

.legal-content a {
  color: var(--orange);
  font-weight: 800;
}

.overview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.service-layout {
  display: block;
}

.service-main {
  display: grid;
  gap: 84px;
}

.service-overview,
.service-faq {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: 38px;
  align-items: center;
}

.service-overview .info-card {
  align-self: center;
}

.service-overview-image,
.service-faq-image {
  width: 100%;
  min-height: 420px;
  height: auto;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.service-faq-image {
  height: 100%;
}

.service-overview-residential {
  object-position: center 58%;
}

.service-overview-edge {
  object-position: center 45%;
}

.service-overview-mobile-scaffold {
  object-position: center 52%;
}

.service-overview-safety-net {
  object-position: center 50%;
}

.service-best {
  display: grid;
  justify-items: center;
}

.service-best .section-header {
  margin-inline: auto;
  text-align: center;
}

.service-best .best-grid {
  width: 100%;
  grid-template-columns: repeat(3, minmax(0, 330px));
  justify-content: center;
}

.service-faq > div {
  display: grid;
  align-content: start;
}

.service-faq .faq-grid {
  grid-template-columns: 1fr;
}

.service-layout-no-faq {
  padding-bottom: 48px;
}

.service-layout-no-faq + .cta-strip {
  margin-top: 0;
}

.service-main .charcoal-band .section {
  max-width: none;
  padding: 34px;
}

.service-main .process-grid {
  grid-template-columns: 1fr;
  gap: 14px;
}

.service-main .process-card {
  min-height: 0;
  gap: 10px;
  padding: 22px 24px;
}

.service-main .charcoal-band .section-header h2 {
  font-size: clamp(30px, 4vw, 48px);
}

.service-panel {
  position: sticky;
  top: 128px;
  display: grid;
  gap: 18px;
  padding: 28px;
  color: var(--white);
  background: var(--coal);
  box-shadow: var(--soft-shadow);
}

.service-panel p {
  color: rgba(255, 255, 255, 0.76);
}

.best-grid {
  grid-template-columns: repeat(3, 1fr);
}

.info-card ul {
  margin: 0;
  padding-left: 20px;
}

.gallery-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: var(--max);
  margin: -42px auto 34px;
  padding: 0 20px;
}

.filter-button {
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--coal);
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  cursor: pointer;
}

.filter-button.is-active,
.filter-button:hover {
  color: var(--white);
  background: var(--coal);
  border-color: var(--coal);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px 70px;
}

.gallery-item {
  display: grid;
  gap: 10px;
  transition: transform 190ms ease;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 1 / 0.78;
  object-fit: cover;
  box-shadow: var(--soft-shadow);
  border-radius: var(--radius);
  transition: transform 220ms ease, box-shadow 220ms ease, filter 220ms ease;
}

.gallery-item span {
  color: var(--orange);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  transition: color 190ms ease, transform 190ms ease;
}

.gallery-item:hover {
  transform: translateY(-4px);
}

.gallery-item:hover img {
  filter: saturate(1.05) contrast(1.04);
  box-shadow: var(--shadow);
}

.gallery-item:hover span {
  color: var(--orange-dark);
  transform: translateX(2px);
}

.gallery-item.is-hidden {
  display: none;
}

.quote-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 34px;
  align-items: start;
}

.contact-panel {
  position: sticky;
  top: 128px;
  display: grid;
  gap: 24px;
  padding: 38px;
  color: var(--white);
  background: var(--coal);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
  transition: transform 190ms ease, box-shadow 190ms ease, border-color 190ms ease;
}

.contact-panel:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.contact-panel > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.75);
}

.contact-list {
  display: grid;
  gap: 14px;
  padding-top: 8px;
}

.contact-list a,
.contact-list p {
  display: grid;
  gap: 3px;
  color: var(--white);
  font-weight: 800;
}

.contact-list span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.quote-form {
  display: grid;
  gap: 24px;
  padding: 38px;
  background: linear-gradient(180deg, var(--mist), #f8f4ed);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
  transition: transform 190ms ease, box-shadow 190ms ease, border-color 190ms ease, background 190ms ease;
}

.quote-form:hover {
  transform: translateY(-4px);
  border-color: rgba(236, 107, 28, 0.28);
  background: linear-gradient(180deg, #f8f4ed, #fff8f2);
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.field-note {
  color: var(--steel);
  font-size: 14px;
  font-weight: 600;
  text-transform: none;
}

label {
  display: grid;
  gap: 8px;
  color: var(--coal);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.label-text {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.required-mark {
  color: var(--orange);
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 15px 16px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(236, 107, 28, 0.22);
  border-color: var(--orange);
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.form-footer p {
  color: var(--steel);
  font-size: 14px;
}

.site-footer {
  color: rgba(255, 255, 255, 0.78);
  background: var(--coal);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1.35fr) minmax(150px, 0.75fr) minmax(200px, 1fr) minmax(210px, 0.95fr);
  gap: 48px;
  padding: 70px max(20px, calc((100vw - var(--max)) / 2)) 48px;
}

.footer-main > div,
.footer-company {
  display: grid;
  align-content: start;
  gap: 14px;
}

.site-footer h2 {
  color: var(--white);
  font-family: var(--heading);
  font-size: 18px;
  letter-spacing: 0.035em;
  line-height: 1;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a {
  display: inline-flex;
  width: fit-content;
  color: rgba(255, 255, 255, 0.78);
  transition: color 180ms ease, transform 180ms ease;
}

.footer-links span {
  color: rgba(255, 255, 255, 0.78);
}

.site-footer a:hover {
  color: var(--orange);
  transform: translateX(3px);
}

.footer-logo {
  width: 150px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px max(20px, calc((100vw - var(--max)) / 2));
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom > div {
  display: flex;
  gap: 18px;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.68);
}

@media (max-width: 980px) {
  :root {
    --mobile-gutter: 24px;
  }

  .menu-toggle {
    display: block;
  }

  .site-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    padding: 18px var(--mobile-gutter) 24px;
    background: var(--coal);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow);
  }

  .site-menu a {
    color: var(--white);
  }

  .site-menu.is-open {
    display: grid;
    gap: 16px;
  }

  .nav-submenu {
    position: static;
    display: grid;
    min-width: 0;
    padding: 8px 0 0 14px;
    border: 0;
    box-shadow: none;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    background: transparent;
  }

  .nav-submenu a {
    color: rgba(255, 255, 255, 0.78);
  }

  .hero {
    min-height: 760px;
  }

  .hero-content {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: auto;
    max-width: 720px;
    padding: 112px var(--mobile-gutter) 256px;
  }

  .hero-actions {
    flex-wrap: wrap;
  }

  .hero-panel {
    top: auto;
    transform: none;
    left: var(--mobile-gutter);
    right: var(--mobile-gutter);
    max-width: none;
  }

  .section,
  .page-title,
  .quote-layout,
  .page-hero div,
  .service-hero div,
  .footer-main,
  .footer-bottom {
    padding-left: var(--mobile-gutter);
    padding-right: var(--mobile-gutter);
  }

  .intro-grid,
  .split-content,
  .about-story,
  .quote-layout,
  .service-layout,
  .service-overview,
  .service-faq {
    grid-template-columns: 1fr;
  }

  .about-story > img {
    min-height: 340px;
  }

  .service-panel,
  .contact-panel {
    position: static;
  }

  .trust-bar,
  .service-band,
  .proof-grid,
  .gallery-grid,
  .overview-grid,
  .card-grid,
  .process-grid,
  .best-grid,
  .faq-grid,
  .project-grid,
  .stats-grid,
  .testimonial-grid,
  .case-study {
    grid-template-columns: 1fr 1fr;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 38px;
  }

  .faq-feature {
    grid-template-columns: 1fr;
  }

  .faq-feature > img {
    min-height: 360px;
    height: auto;
  }

  .case-study img {
    min-height: 360px;
  }

  .project-card:first-child {
    grid-row: auto;
  }
}

@media (max-width: 640px) {
  :root {
    --mobile-gutter: 18px;
  }

  html,
  body {
    overflow-x: hidden;
  }

  .top-strip {
    display: none;
  }

  .nav-shell {
    padding: 12px var(--mobile-gutter);
  }

  .brand img {
    width: 132px;
  }

  .hero h1,
  .page-hero h1,
  .service-hero h1,
  .quote-layout h1 {
    font-size: clamp(36px, 10.5vw, 42px);
    line-height: 0.98;
  }

  .hero-content {
    width: 100%;
    max-width: 100%;
    padding: 104px var(--mobile-gutter) 246px;
    gap: 16px;
  }

  .hero,
  .page-hero,
  .service-hero {
    margin-top: -72px;
    padding-top: 72px;
  }

  .page-hero {
    min-height: 410px;
  }

  .service-hero {
    min-height: 460px;
  }

  .page-hero div,
  .service-hero div {
    gap: 14px;
    padding: 112px var(--mobile-gutter) 54px;
  }

  .hero-content > p:not(.eyebrow),
  .page-hero p:not(.eyebrow),
  .service-hero p:not(.eyebrow) {
    max-width: 100%;
    font-size: 15.5px;
    line-height: 1.62;
  }

  .hero-actions {
    display: grid;
    width: 100%;
    max-width: 340px;
    gap: 12px;
  }

  .hero-actions .button {
    width: 100%;
    justify-content: center;
    white-space: nowrap;
  }

  .hero-panel {
    right: var(--mobile-gutter);
    bottom: 22px;
    left: var(--mobile-gutter);
    padding: 22px;
    gap: 8px;
  }

  .hero-panel:hover {
    transform: translateY(-6px);
  }

  .hero-panel strong {
    font-size: 38px;
  }

  .section,
  .page-title,
  .quote-layout {
    padding: 64px var(--mobile-gutter);
  }

  .section-header h2,
  .intro-grid h2,
  .split-content h2,
  .about-story h2,
  .service-areas-stack h2,
  .statement h2,
  .cta-strip h2,
  .page-title h1 {
    font-size: 34px;
  }

  .section-header {
    margin-bottom: 28px;
    gap: 12px;
  }

  .trust-bar {
    margin-top: 0;
    padding: 0 var(--mobile-gutter);
    gap: 12px;
  }

  .trust-bar,
  .service-band,
  .proof-grid,
  .gallery-grid,
  .form-grid,
  .overview-grid,
  .card-grid,
  .process-grid,
  .service-best .best-grid,
  .best-grid,
  .faq-grid,
  .project-grid {
    grid-template-columns: 1fr;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 52px var(--mobile-gutter) 36px;
    justify-items: center;
    text-align: center;
  }

  .footer-main > div,
  .footer-company,
  .footer-links {
    justify-items: center;
    text-align: center;
  }

  .footer-logo {
    margin-inline: auto;
  }

  .service-band {
    padding: 0 var(--mobile-gutter) 64px;
  }

  .service-card img,
  .overview-card img {
    height: 220px;
  }

  .cta-strip {
    display: grid;
    margin: 56px var(--mobile-gutter);
    padding: 30px 24px;
  }

  .quote-form,
  .contact-panel,
  .service-panel {
    padding: 26px;
  }

  .form-footer {
    display: grid;
  }

  .footer-bottom {
    display: grid;
    justify-items: center;
    padding: 22px var(--mobile-gutter);
    text-align: center;
  }

  .footer-bottom > div {
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
  }

  .site-footer a:hover {
    transform: none;
  }

  .case-study {
    grid-template-columns: 1fr;
  }

  .case-study img {
    min-height: 260px;
  }

  .case-study div,
  .stat-card,
  .testimonial-card {
    padding: 28px;
  }

  .stats-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .faq-feature > img {
    min-height: 260px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .proof-grid article,
  .value-card,
  .process-card,
  .faq-item,
  .best-card,
  .info-card,
  .stat-card,
  .testimonial-card,
  .gallery-item,
  .gallery-item img,
  .gallery-item span,
  .contact-panel,
  .quote-form,
  .proof-grid img,
  .value-card img {
    transition: none;
  }

  .proof-grid article:hover,
  .value-card:hover,
  .process-card:hover,
  .faq-item:hover,
  .best-card:hover,
  .info-card:hover,
  .stat-card:hover,
  .testimonial-card.is-active:hover,
  .gallery-item:hover,
  .contact-panel:hover,
  .quote-form:hover {
    transform: none;
  }
}
