﻿:root {
  --bg: #0b0e12;
  --bg-deep: #080b0f;
  --bg-charcoal: #12171d;
  --bg-slate: #1a222b;
  --bg-blueblack: #131b24;
  --bg-graphite: #1a1f26;
  --bg-panel: rgba(20, 25, 31, 0.92);
  --bg-panel-strong: rgba(24, 30, 37, 0.96);
  --text: #f5f7fa;
  --text-muted: #c2c8cf;
  --accent: #ff6a1a;
  --accent-dark: #d9530f;
  --accent-soft: rgba(255, 106, 26, 0.14);
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 106, 26, 0.34);
  --radius: 18px;
  --radius-lg: 24px;
  --shadow-lg: 0 30px 60px rgba(0, 0, 0, 0.38);
  --shadow-md: 0 20px 40px rgba(0, 0, 0, 0.28);
  --shadow-sm: 0 12px 24px rgba(0, 0, 0, 0.2);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background:
    radial-gradient(circle at 14% 0%, rgba(255, 106, 26, 0.08), transparent 24%),
    radial-gradient(circle at 100% 10%, rgba(255, 106, 26, 0.05), transparent 16%),
    linear-gradient(180deg, #1a2129 0%, #0f141a 42%, #090c10 100%);
}

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

.skip-link { position: absolute; left: -9999px; }
.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 9999;
  background: var(--accent);
  color: #111;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
}

.container { width: min(1180px, 92%); margin: 0 auto; }
.section {
  position: relative;
  padding: 5.5rem 0;
  overflow: clip;
}
.section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,0.08), rgba(255,255,255,0));
  pointer-events: none;
}
.section-slate {
  background:
    radial-gradient(circle at 10% 16%, rgba(255, 106, 26, 0.16), transparent 22%),
    radial-gradient(circle at 88% 82%, rgba(76, 98, 122, 0.14), transparent 22%),
    linear-gradient(180deg, #26313c 0%, #19222b 52%, #141b22 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04), inset 0 -42px 84px rgba(0,0,0,0.28);
}
.section-graphite {
  background:
    radial-gradient(circle at 84% 18%, rgba(255, 106, 26, 0.12), transparent 24%),
    radial-gradient(circle at 18% 76%, rgba(255,255,255,0.04), transparent 20%),
    linear-gradient(180deg, #1e242b 0%, #12171d 48%, #0c1015 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03), inset 0 -44px 88px rgba(0,0,0,0.36);
}
.section-blueblack {
  background:
    radial-gradient(circle at 18% 82%, rgba(255, 106, 26, 0.09), transparent 18%),
    radial-gradient(circle at 82% 16%, rgba(82, 108, 132, 0.14), transparent 24%),
    linear-gradient(180deg, #1a2430 0%, #111922 54%, #0c1218 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.035), inset 0 -42px 86px rgba(0,0,0,0.32);
}
.section-dark {
  background:
    radial-gradient(circle at 86% 18%, rgba(255, 106, 26, 0.08), transparent 20%),
    radial-gradient(circle at 12% 88%, rgba(255,255,255,0.03), transparent 18%),
    linear-gradient(180deg, #171d24 0%, #0d1217 56%, #090d11 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.025), inset 0 -40px 82px rgba(0,0,0,0.3);
}
.section-texture::before,
.capability-section::before,
.projects-section::before,
.video-section-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 106, 26, 0.14), rgba(255, 106, 26, 0) 18%),
    linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0) 22%);
}
.section-texture::after,
.capability-section::after,
.projects-section::after,
.video-section-shell::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(255,106,26,0), rgba(255,106,26,0.72), rgba(255,106,26,0));
  pointer-events: none;
}

.projects-section-light {
  background:
    radial-gradient(circle at 82% 16%, rgba(255,106,26,0.06), transparent 20%),
    linear-gradient(180deg, #171d24 0%, #0d1217 56%, #090d11 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.025), inset 0 -40px 82px rgba(0,0,0,0.3);
}
.projects-section-light::before {
  background:
    linear-gradient(90deg, rgba(255,106,26,0.08), rgba(255,106,26,0) 18%),
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0) 22%);
  opacity: 0.55;
}
.projects-section-light::after {
  background: linear-gradient(90deg, rgba(255,106,26,0), rgba(255,106,26,0.3), rgba(255,106,26,0));
}
.featured-work-panel {
  position: relative;
  padding: 2.2rem;
  border-radius: 28px;
  background:
    radial-gradient(circle at 14% 18%, rgba(255,255,255,0.12), transparent 20%),
    radial-gradient(circle at 84% 82%, rgba(120, 102, 82, 0.08), transparent 22%),
    linear-gradient(180deg, rgba(255,255,255,0.18), rgba(255,255,255,0.04)),
    linear-gradient(180deg, #d2ccc3 0%, #cfc8be 48%, #c7c0b6 100%);
  border: 1px solid rgba(84, 72, 60, 0.12);
  box-shadow:
    0 28px 56px rgba(0,0,0,0.22),
    inset 0 1px 0 rgba(255,255,255,0.34),
    inset 0 -24px 44px rgba(90, 78, 63, 0.08);
}
.featured-work-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 26%, rgba(255,255,255,0.055) 0 1px, transparent 1.6px) 0 0 / 34px 34px,
    linear-gradient(180deg, rgba(0,0,0,0.018), rgba(0,0,0,0) 22%);
  opacity: 0.75;
}
.projects-section-light h2,
.projects-section-light h3,
.projects-section-light .section-head-inline a,
.projects-section-light .featured-work-title {
  color: #22282f;
}
.projects-section-light p {
  color: #555048;
}
.projects-section-light .eyebrow {
  color: #b55a24;
}
.projects-section-light .eyebrow::before {
  background: #b55a24;
  box-shadow: 0 0 14px rgba(181, 90, 36, 0.16);
}

@keyframes ambientFloat {
  0% { transform: translate3d(0,0,0) scale(1); opacity: 0.45; }
  50% { transform: translate3d(18px,-14px,0) scale(1.06); opacity: 0.72; }
  100% { transform: translate3d(0,0,0) scale(1); opacity: 0.45; }
}

@keyframes heroGlow {
  0% { transform: translate3d(0,0,0) scale(1); opacity: 0.4; }
  50% { transform: translate3d(-16px, 14px, 0) scale(1.08); opacity: 0.64; }
  100% { transform: translate3d(0,0,0) scale(1); opacity: 0.4; }
}

h1, h2, h3 {
  margin-top: 0;
  line-height: 1.05;
  color: var(--text);
}
h1 { font-size: clamp(2.7rem, 5.8vw, 5rem); letter-spacing: -0.05em; }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.9rem); margin-bottom: 1rem; letter-spacing: -0.035em; }
h3 { font-size: clamp(1.08rem, 2vw, 1.32rem); }
p { margin: 0 0 1rem; max-width: 72ch; color: var(--text-muted); }
strong { color: var(--text); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  font-weight: 800;
  font-size: 0.76rem;
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: "";
  width: 40px;
  height: 2px;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(255, 106, 26, 0.45);
}

.hero-sub { font-size: 1.14rem; color: rgba(255,255,255,0.96); font-weight: 600; max-width: 62ch; }
.hero-credibility {
  margin-bottom: 0.75rem;
  color: rgba(255,255,255,0.74);
  font-size: 0.95rem;
  max-width: 60ch;
}
.hero-support { color: rgba(255,255,255,0.82); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background:
    linear-gradient(180deg, rgba(10, 12, 15, 0.96), rgba(10, 12, 15, 0.88));
  backdrop-filter: blur(14px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.28);
}
.site-header::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(255,106,26,0), rgba(255,106,26,0.95), rgba(255,106,26,0));
}
.nav-wrap {
  min-height: 112px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
}
.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  padding: 0.25rem 0;
}
.brand-mark {
  display: flex;
  align-items: center;
}
.brand-logo {
  width: min(220px, 54vw);
  height: auto;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,0.18));
}
.nav-toggle {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 0 10px;
}
.nav-toggle span { width: 100%; height: 2px; background: var(--text); }
.site-nav {
  display: none;
  position: absolute;
  top: calc(100% + 1px);
  left: 0;
  right: 0;
  padding: 1rem 0;
  border: 1px solid rgba(255,255,255,0.06);
  border-top: 0;
  background: rgba(13,16,20,0.98);
  box-shadow: var(--shadow-lg);
}
.site-nav.open { display: block; }
.site-nav ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; }
.site-nav li a {
  display: block;
  padding: 0.72rem 1.1rem;
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 600;
}
.site-nav li a:hover,
.site-nav li a:focus-visible,
.site-nav li a[aria-current="page"] { color: var(--text); }
.nav-quote { margin: 0.85rem 1.1rem 0; display: inline-flex; }

.hero {
  padding: 8rem 0 6.25rem;
}
.hero-home {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(10, 13, 17, 0.2), rgba(10, 13, 17, 0.58)),
    linear-gradient(90deg, rgba(8, 12, 16, 0.78) 0%, rgba(11, 17, 24, 0.58) 30%, rgba(12, 18, 25, 0.24) 58%, rgba(12, 18, 25, 0.1) 100%),
    linear-gradient(118deg, rgba(255, 106, 26, 0.18), rgba(22, 31, 41, 0.04) 46%, rgba(0, 0, 0, 0.08) 80%),
    url("../images/projects/commercial-slab-finish.jpg") center/cover no-repeat;
}
.hero-home::before,
.hero-home::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero-home::before {
  width: 42vw;
  height: 42vw;
  min-width: 320px;
  min-height: 320px;
  right: -8vw;
  top: 6%;
  background: radial-gradient(circle, rgba(255,106,26,0.2), rgba(255,106,26,0.02) 56%, transparent 74%);
  filter: blur(22px);
  animation: ambientFloat 24s ease-in-out infinite;
}
.hero-home::after {
  width: 30vw;
  height: 30vw;
  min-width: 220px;
  min-height: 220px;
  left: -8vw;
  bottom: -8%;
  background: radial-gradient(circle, rgba(58,81,104,0.26), rgba(58,81,104,0.04) 55%, transparent 72%);
  filter: blur(22px);
  animation: heroGlow 30s ease-in-out infinite;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin: 1.5rem 0 1.1rem;
}

.btn {
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.92rem 1.4rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.btn:hover,
.btn:focus-visible { transform: translateY(-2px); }
.btn-primary,
.btn-quote {
  background: linear-gradient(180deg, #ff8442, var(--accent));
  color: #111;
  box-shadow: 0 16px 30px rgba(255,106,26,0.25);
}
.btn-primary:hover,
.btn-primary:focus-visible,
.btn-quote:hover,
.btn-quote:focus-visible {
  background: linear-gradient(180deg, #ff9155, var(--accent-dark));
}
.btn-secondary {
  border-color: rgba(255,255,255,0.24);
  color: var(--text);
  background: rgba(255,255,255,0.02);
}
.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 12px 26px rgba(255,106,26,0.12);
}
.text-link {
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
}
.text-link:hover,
.text-link:focus-visible { color: #ff935c; }

.section-intro {
  margin-bottom: 2rem;
  padding-left: 1rem;
  border-left: 3px solid var(--accent);
}
.section-intro h2 { max-width: 18ch; }

.cards { display: grid; gap: 1.1rem; }
.card {
  position: relative;
  overflow: hidden;
  padding: 1.55rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.07);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02)),
    linear-gradient(180deg, rgba(24,30,37,0.96), rgba(18,23,29,0.96));
  box-shadow: var(--shadow-md);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 84px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), rgba(255,106,26,0));
}
.card:hover,
.card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(255,106,26,0.22);
  box-shadow: 0 24px 46px rgba(0,0,0,0.34);
}
.service-card-feature {
  border-color: var(--line-strong);
  background:
    radial-gradient(circle at 90% 16%, rgba(255,106,26,0.14), transparent 25%),
    linear-gradient(180deg, rgba(255,106,26,0.08), rgba(255,255,255,0.02)),
    linear-gradient(180deg, rgba(27,33,40,0.98), rgba(19,24,30,0.98));
}
.capability-grid .card:last-child,
.equipment-grid .card {
  box-shadow: 0 24px 48px rgba(0,0,0,0.36);
}
.equipment-grid .card .eyebrow { margin-bottom: 0.8rem; }

.precision-band {
  background:
    radial-gradient(circle at 12% 18%, rgba(255,106,26,0.12), transparent 20%),
    radial-gradient(circle at 88% 72%, rgba(62, 84, 104, 0.12), transparent 22%),
    linear-gradient(180deg, #20262e 0%, #14191f 56%, #0d1217 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03), inset 0 -36px 70px rgba(0,0,0,0.28);
  isolation: isolate;
}
.precision-band::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.28;
  background:
    radial-gradient(circle at 12% 20%, rgba(255,255,255,0.035) 0 1px, transparent 1.6px) 0 0 / 34px 34px,
    radial-gradient(circle at 74% 64%, rgba(255,255,255,0.028) 0 1px, transparent 1.6px) 0 0 / 42px 42px,
    linear-gradient(180deg, rgba(255,255,255,0.018), rgba(255,255,255,0));
  mix-blend-mode: screen;
}
.precision-band::after {
  content: "";
  position: absolute;
  width: 32vw;
  height: 32vw;
  min-width: 220px;
  min-height: 220px;
  right: -8vw;
  top: 10%;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(255,106,26,0.1), rgba(255,106,26,0.02) 56%, transparent 72%);
  filter: blur(20px);
  animation: ambientFloat 28s ease-in-out infinite;
}
.precision-grid {
  align-items: stretch;
}
.precision-card {
  padding-top: 1.7rem;
  background:
    radial-gradient(circle at 86% 16%, rgba(255,106,26,0.08), transparent 22%),
    linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.02)),
    linear-gradient(180deg, rgba(24,30,37,0.96), rgba(18,23,29,0.96));
}
.precision-card-head {
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.precision-card h3 {
  margin: 0;
  line-height: 1.18;
}
.precision-card p {
  margin-bottom: 0;
  padding-top: 0.95rem;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.precision-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    radial-gradient(circle at 30% 30%, rgba(255,106,26,0.16), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  display: inline-grid;
  place-items: center;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.04),
    0 12px 24px rgba(0,0,0,0.18);
}
.precision-icon span {
  display: block;
  width: 26px;
  height: 26px;
  position: relative;
}
.precision-icon span::before,
.precision-icon span::after {
  content: "";
  position: absolute;
}
.precision-icon span::before {
  inset: 3px;
  border: 2px solid var(--accent);
  border-radius: 50%;
}
.precision-icon span::after {
  left: 50%;
  top: 1px;
  bottom: 1px;
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(255,106,26,0), var(--accent), rgba(255,106,26,0));
}
.precision-icon-screed span::before {
  inset: auto 0 8px 0;
  height: 10px;
  border: 2px solid var(--accent);
  border-top: 0;
  border-radius: 0 0 10px 10px;
}
.precision-icon-screed span::after {
  left: 2px;
  right: 2px;
  top: 4px;
  height: 2px;
  width: auto;
  transform: none;
  background: linear-gradient(90deg, rgba(255,106,26,0), var(--accent), rgba(255,106,26,0));
  box-shadow: 0 8px 0 rgba(255,106,26,0.65);
}
.precision-icon-projects span::before {
  inset: 2px 3px 9px 3px;
  border: 2px solid var(--accent);
  border-radius: 6px;
}
.precision-icon-projects span::after {
  left: 4px;
  right: 4px;
  bottom: 2px;
  height: 8px;
  width: auto;
  transform: none;
  background:
    linear-gradient(135deg, transparent 35%, var(--accent) 36%, var(--accent) 64%, transparent 65%),
    linear-gradient(45deg, transparent 35%, rgba(255,106,26,0.8) 36%, rgba(255,106,26,0.8) 64%, transparent 65%);
}

.process-list,
.check-list {
  margin: 0;
  padding-left: 1.2rem;
}
.process-list li,
.check-list li { margin: 0.8rem 0; }

.section-head-inline {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.gallery-teaser {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.gallery-teaser-featured { margin-top: 1.4rem; }
.project-showcase a:first-child { grid-column: span 2; }
.gallery-teaser a {
  position: relative;
  display: block;
  border-radius: 18px;
  overflow: hidden;
  transform: translateZ(0);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
  box-shadow: var(--shadow-md);
}
.gallery-teaser a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 34%, rgba(0,0,0,0.66) 100%);
  z-index: 1;
}
.gallery-teaser a:hover,
.gallery-teaser a:focus-visible {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 28px 46px rgba(0,0,0,0.4);
}
.gallery-teaser img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,0.08);
}
.project-label {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0.95rem;
  z-index: 2;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.featured-work-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}
.featured-work-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow-lg);
  min-height: 360px;
  background: #101317;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}
.featured-work-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.04) 0%, rgba(0,0,0,0.18) 34%, rgba(0,0,0,0.72) 100%);
}
.featured-work-card:hover,
.featured-work-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 30px 54px rgba(0,0,0,0.42);
}
.featured-work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 360px;
}
.featured-work-primary img {
  aspect-ratio: 16 / 8.5;
}
.featured-work-secondary img {
  aspect-ratio: 4 / 5;
}
.featured-work-overlay {
  position: absolute;
  left: 1.3rem;
  right: 1.3rem;
  bottom: 1.25rem;
  z-index: 2;
  display: grid;
  gap: 0.45rem;
}
.featured-work-kicker {
  color: rgba(255,255,255,0.76);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.74rem;
  font-weight: 800;
}
.featured-work-title {
  color: #fff;
  font-size: clamp(1.2rem, 2.35vw, 1.75rem);
  line-height: 1.2;
  font-weight: 800;
  max-width: 24ch;
}
.projects-section-light .featured-work-card {
  border-color: rgba(48, 41, 34, 0.1);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.14), rgba(255,255,255,0.04)),
    #bdb5aa;
  box-shadow:
    0 22px 44px rgba(37, 31, 26, 0.16),
    inset 0 1px 0 rgba(255,255,255,0.2);
}
.projects-section-light .featured-work-card::before {
  background:
    linear-gradient(180deg, rgba(16,18,20,0.03) 0%, rgba(16,18,20,0.14) 34%, rgba(16,18,20,0.5) 100%);
}
.projects-section-light .featured-work-kicker {
  color: rgba(255,255,255,0.82);
}
.projects-section-light .btn-primary {
  box-shadow: 0 14px 28px rgba(181, 90, 36, 0.16);
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.3rem;
}
.filter-btn {
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.03);
  color: var(--text);
  border-radius: 999px;
  padding: 0.55rem 1rem;
  cursor: pointer;
}
.filter-btn.active,
.filter-btn:hover,
.filter-btn:focus-visible {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 10px 20px rgba(255,106,26,0.16);
}

.gallery-grid {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.gallery-grid.masonry .gallery-card:nth-child(2n) img { aspect-ratio: 4 / 5; }
.gallery-grid.masonry .gallery-card:nth-child(3n) img { aspect-ratio: 5 / 4; }
.gallery-card {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02)),
    #13171d;
  box-shadow: var(--shadow-md);
}
.gallery-card img { width: 100%; object-fit: cover; aspect-ratio: 4 / 3; }
.gallery-card figcaption { padding: 1rem 1.05rem 1.1rem; }

.page-hero {
  padding-bottom: 3rem;
  background:
    radial-gradient(circle at 16% 16%, rgba(255,106,26,0.1), transparent 18%),
    linear-gradient(180deg, rgba(27,33,40,0.84), rgba(12,16,20,0.42));
}

.media-section,
.trust-band,
.cta-panel,
.contact-card,
.quote-form {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow-lg);
}
.media-section {
  max-width: 1100px;
  padding: 2rem;
  background:
    radial-gradient(circle at 84% 16%, rgba(255,106,26,0.12), transparent 24%),
    linear-gradient(180deg, rgba(29,35,42,0.95), rgba(17,22,28,0.92));
}
.media-section::before,
.trust-band::before,
.cta-panel::before,
.contact-card::before,
.quote-form::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 110px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), rgba(255,106,26,0));
}
.video-grid {
  display: grid;
  gap: 1.2rem;
  margin-top: 1.6rem;
}
.video-grid-single { max-width: 800px; margin-left: auto; margin-right: auto; }
.video-grid-finished {
  grid-template-columns: 1fr;
  align-items: stretch;
}
.video-card,
.video-placeholder-card { margin: 0; }
.video-frame {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow-lg);
  background: #111418;
}
.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-card figcaption {
  margin-top: 0.8rem;
  color: var(--text-muted);
  font-weight: 700;
}
.video-placeholder-card {
  padding: 1.6rem;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    radial-gradient(circle at 84% 16%, rgba(255,106,26,0.12), transparent 24%),
    linear-gradient(180deg, rgba(23,29,35,0.96), rgba(16,20,24,0.96));
  box-shadow: var(--shadow-md);
}
.video-placeholder-card h3 { margin-bottom: 0.7rem; }

.accordion { display: grid; gap: 0.8rem; }
.accordion-item {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
  box-shadow: var(--shadow-sm);
}
.accordion-trigger {
  width: 100%;
  text-align: left;
  border: 0;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-weight: 700;
  padding: 1rem;
  cursor: pointer;
}
.accordion-panel { padding: 0 1rem 1rem; color: var(--text-muted); }

.contact-card {
  padding: 1.8rem;
  background:
    radial-gradient(circle at 84% 16%, rgba(255,106,26,0.08), transparent 20%),
    linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.02));
}
.contact-grid { display: grid; gap: 1.4rem; }
.map-wrap {
  margin-top: 1rem;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.map-wrap iframe { width: 100%; min-height: 280px; border: 0; }
.quote-form {
  padding: 1.65rem;
  background:
    radial-gradient(circle at 84% 14%, rgba(255,106,26,0.08), transparent 20%),
    linear-gradient(180deg, rgba(30,36,43,0.98), rgba(21,26,31,0.98));
}
.quote-form label {
  display: block;
  font-weight: 700;
  margin-top: 0.9rem;
}
.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  margin-top: 0.35rem;
  border: 1px solid #46505a;
  border-radius: 12px;
  background: #101317;
  color: var(--text);
  padding: 0.76rem 0.85rem;
}
.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus,
.accordion-trigger:focus,
.filter-btn:focus,
.btn:focus-visible {
  outline: 2px solid rgba(255,106,26,0.65);
  outline-offset: 1px;
}
.service-group {
  margin-top: 1rem;
  border: 1px solid #46505a;
  border-radius: 12px;
  padding: 0.9rem;
}
.service-group legend { padding: 0 0.4rem; font-weight: 800; }
.checkbox-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
}
.checkbox-grid label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  font-weight: 500;
}
.checkbox-grid input { width: auto; margin: 0; }
.error-message { color: #ff9f7b; min-height: 1.2em; margin: 0.2rem 0 0; }
.form-status { min-height: 1.3em; margin-top: 0.8rem; }

.site-footer {
  position: relative;
  border-top: 1px solid rgba(255,255,255,0.08);
  background:
    radial-gradient(circle at 86% 12%, rgba(255,106,26,0.08), transparent 18%),
    linear-gradient(180deg, #0b0f14 0%, #070a0d 100%);
  box-shadow: inset 0 36px 60px rgba(0,0,0,0.24);
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(255,106,26,0), rgba(255,106,26,0.82), rgba(255,106,26,0));
}
.footer-wrap { padding: 78px 0; color: var(--text-muted); }
.footer-grid { display: grid; gap: 1.2rem; }
.footer-brand {
  padding-right: 1rem;
}
.footer-logo {
  width: min(250px, 100%);
  height: auto;
  margin-bottom: 1.2rem;
  filter: drop-shadow(0 12px 20px rgba(0,0,0,0.18));
}
.footer-brand-name {
  margin-bottom: 0.9rem;
  color: var(--text);
  font-weight: 800;
  font-size: 1.08rem;
  letter-spacing: 0.01em;
}
.footer-brand p { max-width: 38ch; }
.footer-service-area {
  margin-top: 1.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-col {
  padding-top: 0.5rem;
}
.footer-heading {
  margin: 0 0 1rem;
  color: var(--text);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
}
.footer-links p { margin-bottom: 0.75rem; }
.footer-col a:hover,
.footer-col a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible { color: #fff; }

.trust-band,
.cta-panel {
  padding: 2.2rem;
  background:
    radial-gradient(circle at 82% 18%, rgba(255,106,26,0.08), transparent 24%),
    linear-gradient(180deg, rgba(31,37,44,0.9), rgba(16,20,24,0.86));
}

.services-home,
.precision-band,
.trust-section,
.projects-section,
.final-cta-shell {
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding-top: 6.4rem;
  padding-bottom: 6.4rem;
}

.final-cta-shell {
  background:
    radial-gradient(circle at 82% 16%, rgba(255,106,26,0.08), transparent 22%),
    linear-gradient(180deg, #141920 0%, #0c1015 100%);
}

.final-cta-shell .cta-panel {
  background:
    radial-gradient(circle at 82% 18%, rgba(255,106,26,0.1), transparent 24%),
    linear-gradient(180deg, rgba(36,42,49,0.92), rgba(18,22,27,0.9));
}

.mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1200;
  background: rgba(9,11,14,0.98);
  border-top: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 -10px 28px rgba(0,0,0,0.24);
  padding: 0.7rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}

@media (min-width: 768px) {
  .section { padding: 6.1rem 0; }
  .nav-wrap { min-height: 126px; }
  .brand-logo { width: clamp(250px, 22vw, 300px); }
  .footer-logo { width: clamp(230px, 22vw, 260px); }

  .site-nav {
    position: static;
    display: flex;
    align-items: center;
    gap: 1.35rem;
    border: 0;
    background: transparent;
    box-shadow: none;
    padding: 0;
  }
  .site-nav ul { flex-direction: row; }
  .site-nav li a { padding: 0.45rem 0.72rem; }
  .nav-toggle { display: none; }
  .nav-quote { margin: 0; }

  .three-up { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .two-up { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-teaser { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .featured-work-grid {
    grid-template-columns: 1.65fr 1fr;
    align-items: stretch;
  }
  .featured-work-primary {
    min-height: 580px;
  }
  .featured-work-secondary {
    min-height: 580px;
  }
  .video-grid-finished { grid-template-columns: 1.35fr 0.85fr; }
  .contact-grid { grid-template-columns: 1fr 1.2fr; align-items: start; }
  .footer-grid { grid-template-columns: 1.45fr 0.8fr 0.8fr; gap: 2rem; }
  .mobile-cta { display: none; }
}

@media (max-width: 767px) {
  .nav-wrap { min-height: 96px; }
  .brand-logo { width: min(210px, 58vw); }
  .services-home,
  .precision-band,
  .trust-section,
  .projects-section,
  .final-cta-shell {
    padding-top: 5.3rem;
    padding-bottom: 5.3rem;
  }
  .featured-work-panel { padding: 1.4rem; border-radius: 22px; }
  .precision-card-head {
    grid-template-columns: 52px 1fr;
    gap: 0.9rem;
  }
  .precision-icon {
    width: 52px;
    height: 52px;
  }
  .hero-content,
  .media-section,
  .trust-band,
  .cta-panel,
  .contact-card,
  .quote-form { padding: 1.45rem; }
  .featured-work-card,
  .featured-work-card img {
    min-height: 300px;
  }
  .project-showcase a:first-child { grid-column: span 1; }
  .section-intro { padding-left: 0.85rem; }
  .footer-logo { width: min(230px, 74vw); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-home::before,
  .hero-home::after {
    animation: none;
  }
  .btn,
  .card,
  .gallery-teaser a,
  .featured-work-card {
    transition: none;
  }
}

@media (min-width: 1024px) {
  .gallery-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
