/* ===================================================
   M CONSTRUCTION — STYLESHEET
   Dark steel/slate theme
   Fonts: Anton (display) · DM Sans (body)
   =================================================== */

/* ===================================================
   TOKENS
   =================================================== */
:root {
  /* Dark steel/slate backgrounds */
  --bg:          #0c1118;
  --bg-alt:      #111e2a;
  --bg-surface:  #1a2535;
  --bg-dark:     #07090d;
  --bg-dark-2:   #0a0e14;

  /* Text */
  --text:        #dde4ed;
  --text-2:      #7a8898;
  --text-light:  #4a5a6a;
  --text-inv:    #dde4ed;

  /* Brand — orange used once, sparingly */
  --accent:       #d4560f;
  --accent-hover: #be4b0d;
  --accent-light: #1f1208;

  /* Borders */
  --border:        #1e2d3d;
  --border-strong: #283a4d;

  /* Fonts */
  --font-head: "Anton", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;

  /* Layout */
  --radius:    2px;
  --radius-lg: 4px;
  --container: 1200px;
  --gap:       clamp(4rem, 8vw, 7rem);

  /* Header (no top utility bar in this design) */
  --header-h:    72px;
  --header-total: var(--header-h);
}

/* ===================================================
   RESET
   =================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
address { font-style: normal; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
table { border-collapse: collapse; width: 100%; }

/* ===================================================
   LAYOUT UTILITIES
   =================================================== */
.container {
  width: min(var(--container), 100% - 2.5rem);
  margin-inline: auto;
}
.section { padding-block: var(--gap); }
.section--alt { background: var(--bg-alt); }
.section--surface { background: var(--bg-surface); }
.section__head { margin-bottom: clamp(2.5rem, 5vw, 4rem); }

/* ===================================================
   ACCESSIBILITY
   =================================================== */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--accent);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  z-index: 9999;
}
.skip-link:focus { top: 1rem; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

/* ===================================================
   TYPOGRAPHY
   =================================================== */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-2);
  margin-bottom: 0.85rem;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 1.5rem;
  height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 1.5rem + 3.5vw, 4rem);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: -0.01em;
  color: var(--text);
  text-transform: uppercase;
}
.section-title--inv { color: #fff; }

.section-lead {
  font-size: clamp(1rem, 0.9rem + 0.5vw, 1.1rem);
  color: var(--text-2);
  max-width: 52ch;
  line-height: 1.7;
  margin-top: 0.85rem;
}
.section-lead--inv { color: rgba(255,255,255,0.6); }

.accent-text { color: var(--accent); }

/* ===================================================
   BUTTONS
   =================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.8rem 1.6rem;
  border-radius: var(--radius);
  transition: background 0.18s, color 0.18s, border-color 0.18s, transform 0.15s;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}
.btn--primary {
  background: var(--accent);
  color: #fff;
}
.btn--primary:hover,
.btn--primary:focus-visible { background: var(--accent-hover); }
.btn--outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border-strong);
}
.btn--outline:hover,
.btn--outline:focus-visible { border-color: var(--text-2); color: var(--text); }
.btn--outline-inv {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.25);
}
.btn--outline-inv:hover,
.btn--outline-inv:focus-visible { border-color: rgba(255,255,255,0.65); }
.btn:active { transform: scale(0.98); }
.btn--sm { padding: 0.55rem 1.1rem; font-size: 0.85rem; }

/* ===================================================
   BRAND
   =================================================== */
.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  flex-shrink: 0;
}
.brand__mark {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
}
.brand__name {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
  color: var(--text);
}
.brand__name b { font-weight: 700; }

/* ===================================================
   SITE INTRO (entrance animation)
   =================================================== */
.site-intro {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg);
  display: grid;
  place-items: center;
  transition: opacity 0.45s ease;
}
.site-intro.is-done {
  opacity: 0;
  pointer-events: none;
}
.site-intro__mark {
  font-family: var(--font-head);
  font-size: clamp(6rem, 20vw, 14rem);
  color: var(--text);
  letter-spacing: -0.02em;
  animation: intro-rise 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}
@keyframes intro-rise {
  from { opacity: 0; transform: translateY(0.12em); }
  to   { opacity: 1; transform: translateY(0); }
}
body.intro-active { overflow: hidden; }

/* ===================================================
   SITE HEADER — always dark, persistent
   =================================================== */
.site-header {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  transition: border-color 0.2s;
}
.site-header__inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: 100%;
}
.site-header .brand__name { color: var(--text); }

.site-nav { display: none; margin-inline-start: auto; }
.site-nav ul { display: flex; gap: 2rem; }
.site-nav a {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-2);
  transition: color 0.18s;
}
.site-nav a:hover { color: var(--text); }
.site-nav a.is-active { color: var(--accent) !important; }

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.header-phone {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-2);
  letter-spacing: 0.04em;
  display: none;
  transition: color 0.15s;
}
.header-phone:hover { color: var(--text); }
.site-header__actions .btn { display: none; }

/* ===================================================
   NAV TOGGLE
   =================================================== */
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  width: 2rem;
}
.nav-toggle__bars { display: flex; flex-direction: column; gap: 5px; }
.nav-toggle__bars span {
  display: block;
  height: 2px;
  border-radius: 1px;
  background: var(--text-2);
  transition: transform 0.22s ease, opacity 0.22s ease;
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===================================================
   MOBILE NAV OVERLAY
   =================================================== */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}
.nav-overlay.is-open { opacity: 1; pointer-events: all; }
.nav-overlay nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
}
.nav-overlay__list { display: flex; flex-direction: column; gap: 0.1rem; }
.nav-overlay__list a {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 10vw, 5rem);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: rgba(255,255,255,0.35);
  transition: color 0.18s;
  line-height: 1.1;
}
.nav-overlay__list a:hover { color: #fff; }

/* ===================================================
   HERO — video stencil (mix-blend-mode: multiply)
   The stencil layer has a dark bg + white Anton text.
   multiply: dark blocks video / white text shows video through.
   When no video is loaded, a gradient serves as fallback.
   =================================================== */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
  /* Gradient fallback shows through the M when no video is present */
  background: linear-gradient(160deg, #1e3854 20%, #0d1e30 55%, #0c1520 100%);
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Stencil blend layer: covers entire hero */
/* White text under multiply = video shows through the letterforms */
.hero__stencil-layer {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--bg);
  mix-blend-mode: multiply;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero__stencil {
  font-family: var(--font-head);
  font-size: clamp(16rem, 54vw, 58rem);
  line-height: 0.85;
  color: #ffffff;
  letter-spacing: -0.03em;
  margin-left: -0.04em;
  user-select: none;
  pointer-events: none;
}

/* Copy layer: sits above the blend */
.hero__copy {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}
.hero__copy > .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.9rem;
}

.hero__descriptor {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero__descriptor::before {
  content: '';
  display: block;
  width: 1.5rem;
  height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}

.hero__heading {
  font-family: var(--font-head);
  font-size: clamp(2rem, 1.5rem + 3.5vw, 4.25rem);
  font-weight: 400;
  line-height: 1.0;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.4rem;
}

/* Animated scroll indicator */
.hero__scroll {
  position: absolute;
  right: clamp(1.25rem, 3vw, 2.5rem);
  bottom: clamp(2.5rem, 5vw, 4rem);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
}
.hero__scroll-label {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
  writing-mode: vertical-rl;
}
.hero__scroll-track {
  width: 1px;
  height: 2.5rem;
  background: rgba(255,255,255,0.1);
  overflow: hidden;
  position: relative;
}
.hero__scroll-track::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 55%;
  background: var(--accent);
  animation: scroll-drop 2.2s ease-in-out infinite;
}
@keyframes scroll-drop {
  0%   { top: -55%; }
  100% { top: 110%; }
}

/* ===================================================
   STATS BAND
   =================================================== */
.stats-band {
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
}
.stats-item {
  background: var(--bg-surface);
  padding: clamp(1.5rem, 3vw, 2.25rem) clamp(1.25rem, 2.5vw, 2rem);
}
.stats-item__num {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 1.25rem + 2vw, 2.4rem);
  font-weight: 400;
  line-height: 1;
  color: var(--text);
  margin-bottom: 0.4rem;
}
.stats-item:first-child .stats-item__num { color: var(--accent); }
.stats-item__label {
  font-size: 0.75rem;
  color: var(--text-2);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ===================================================
   PAGE BANNER (inner pages)
   =================================================== */
.page-banner {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: flex-end;
  padding-top: var(--header-h);
  overflow: hidden;
}
.page-banner--projects {
  background:
    linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.65)),
    linear-gradient(120deg, #1a2830 0%, #2a3820 50%, #151e18 100%);
}
.page-banner--about {
  background:
    linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.65)),
    linear-gradient(120deg, #18283a 0%, #101c30 50%, #0c1420 100%);
}
.page-banner--services {
  background:
    linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.65)),
    linear-gradient(120deg, #1a2028 0%, #252828 50%, #151515 100%);
}
.page-banner--contact {
  background:
    linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.65)),
    linear-gradient(120deg, #182830 0%, #102030 50%, #0c1820 100%);
}
.page-banner__content {
  position: relative;
  z-index: 1;
  padding-block: 3rem 3.5rem;
}
.page-banner__title {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 1.5rem + 5vw, 5.5rem);
  font-weight: 400;
  color: #fff;
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-top: 0.5rem;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.75rem;
}
.breadcrumb a { color: rgba(255,255,255,0.4); transition: color 0.15s; }
.breadcrumb a:hover { color: rgba(255,255,255,0.8); }
.breadcrumb__sep { opacity: 0.35; }

/* ===================================================
   CAPABILITIES
   =================================================== */
.capabilities-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}
.capabilities-left .section-title { margin-block: 0.5rem 0.85rem; }
.capabilities-left .section-lead { margin-top: 0; }
.capabilities-left .btn { margin-top: 1.75rem; }
.capabilities-list { border-top: 1px solid var(--border); }
.capabilities-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  font-size: clamp(0.93rem, 0.85rem + 0.5vw, 1.1rem);
  color: var(--text);
  font-weight: 500;
}
.capabilities-list li::after {
  content: '→';
  color: var(--text-light);
  font-size: 0.85em;
  flex-shrink: 0;
}

/* ===================================================
   LEADERSHIP
   =================================================== */
.leadership-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.leader-card__photo {
  aspect-ratio: 3/4;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  margin-bottom: 1.1rem;
  position: relative;
  overflow: hidden;
}
.leader-card__photo::after {
  content: '[Photo]';
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
}
.leader-card h3 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.leader-card p {
  font-size: 0.82rem;
  color: var(--text-2);
  margin-top: 0.25rem;
}

/* ===================================================
   SERVICES GRID (homepage preview)
   =================================================== */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--border);
}
.service-card {
  background: var(--bg-surface);
  padding: 2rem;
  transition: background 0.2s;
}
.service-card:hover { background: var(--bg-alt); }
.service-card__num {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.1rem;
}
.service-card h3 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 0.6rem;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--text);
}
.service-card p {
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.65;
}

/* ===================================================
   SERVICES PAGE — alternating rows
   =================================================== */
.service-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  padding-block: 3rem;
  border-bottom: 1px solid var(--border);
}
.service-row:last-child { border-bottom: none; }
.service-row__img {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
}
.service-row__img[data-cat="addition"]  { background: linear-gradient(135deg, #2a4030 0%, #1a2a20 100%); }
.service-row__img[data-cat="kitchen"]   { background: linear-gradient(135deg, #4a3820 0%, #2a2010 100%); }
.service-row__img[data-cat="bath"]      { background: linear-gradient(135deg, #20384a 0%, #101e2a 100%); }
.service-row__img[data-cat="roofing"]   { background: linear-gradient(135deg, #303030 0%, #181818 100%); }
.service-row__img[data-cat="deck"]      { background: linear-gradient(135deg, #3a2810 0%, #201808 100%); }
.service-row__img[data-cat="basement"]  { background: linear-gradient(135deg, #1e2840 0%, #0e1428 100%); }
.service-row__text h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 1.5rem + 3vw, 3.5rem);
  font-weight: 400;
  line-height: 1.0;
  text-transform: uppercase;
  margin-block: 0.5rem 1rem;
  color: var(--text);
}
.service-row__text p {
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.service-row__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1.25rem;
  margin-bottom: 1.5rem;
  border-top: 1px solid var(--border);
}
.service-row__list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-2);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
}
.service-row__list li::before {
  content: '';
  width: 0.3rem;
  height: 0.3rem;
  background: var(--accent);
  flex-shrink: 0;
}

/* ===================================================
   GALLERY FILTER
   =================================================== */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}
.filter-btn {
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  border: 1.5px solid var(--border-strong);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-2);
  background: transparent;
  cursor: pointer;
  transition: border-color 0.18s, background 0.18s, color 0.18s;
  white-space: nowrap;
}
.filter-btn:hover { border-color: var(--text-2); color: var(--text); }
.filter-btn.is-active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* ===================================================
   GALLERY / PROJECT GRID
   =================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--border);
}
.gallery-item {
  overflow: hidden;
  transition: opacity 0.3s;
  position: relative;
}
.gallery-item:hover .gallery-item__img { transform: scale(1.03); }
.gallery-item.is-hidden {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  visibility: hidden;
}
.gallery-item__img {
  aspect-ratio: 4/3;
  overflow: hidden;
  transition: transform 0.4s ease;
}
.gallery-item__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.55) 100%);
}
.gallery-item__img[data-cat="kitchen"]  { background: linear-gradient(150deg, #4a3018 0%, #281808 100%); }
.gallery-item__img[data-cat="addition"] { background: linear-gradient(150deg, #283a20 0%, #141e10 100%); }
.gallery-item__img[data-cat="bath"]     { background: linear-gradient(150deg, #1e3040 0%, #0e1820 100%); }
.gallery-item__img[data-cat="deck"]     { background: linear-gradient(150deg, #382008 0%, #1e1004 100%); }
.gallery-item__img[data-cat="roofing"]  { background: linear-gradient(150deg, #282828 0%, #141414 100%); }
.gallery-item__img[data-cat="basement"] { background: linear-gradient(150deg, #182038 0%, #0c1020 100%); }
.gallery-item__body {
  padding: 1.25rem 1.5rem 1.5rem;
  background: var(--bg-surface);
}
.gallery-item__tag {
  display: inline-flex;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.4rem;
}
.gallery-item h3 {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
  color: var(--text);
}
.gallery-item p {
  font-size: 0.85rem;
  color: var(--text-2);
}

/* ===================================================
   PROCESS TIMELINE
   =================================================== */
.process-section { background: var(--bg-alt); }
.process-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.process-timeline::before {
  content: '';
  position: absolute;
  left: 23px;
  top: 46px;
  bottom: 46px;
  width: 1px;
  background: var(--border-strong);
  z-index: 0;
}
.process-step {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 1.5rem;
  align-items: start;
  padding-bottom: 2.5rem;
  position: relative;
  z-index: 1;
}
.process-step:last-child { padding-bottom: 0; }
.process-step__circle {
  width: 46px;
  height: 46px;
  background: var(--accent);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 400;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 0 4px var(--bg-alt);
}
.process-step__body { padding-top: 0.6rem; }
.process-step h3 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 0.4rem;
  color: var(--text);
  text-transform: uppercase;
}
.process-step p {
  font-size: 0.9rem;
  color: var(--text-2);
  max-width: 36ch;
  line-height: 1.65;
}

/* ===================================================
   ABOUT
   =================================================== */
.about-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
.about-img {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(135deg, #1e3828 0%, #0e2018 60%, #0a1810 100%);
  display: grid;
  place-items: center;
  position: relative;
}
.about-img__label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
}
.about-text .section-title { margin-block: 0.5rem 1rem; }
.about-text p {
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  margin-top: 1.75rem;
}
.trust-item {
  background: var(--bg-surface);
  padding: 1.1rem;
}
.trust-item svg {
  width: 1.1rem;
  height: 1.1rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.trust-item strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 0.15rem;
  color: var(--text);
  text-transform: uppercase;
}
.trust-item span { font-size: 0.8rem; color: var(--text-2); }

/* ===================================================
   TESTIMONIALS
   =================================================== */
.testimonial-block {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  padding: clamp(2rem, 5vw, 3rem);
}
.testimonial-block__quote {
  font-size: clamp(1.1rem, 0.95rem + 1vw, 1.5rem);
  line-height: 1.5;
  color: var(--text);
  margin-bottom: 1.5rem;
  quotes: "\201C" "\201D";
}
.testimonial-block__quote::before {
  content: open-quote;
  color: var(--accent);
  font-family: var(--font-head);
  font-size: 2em;
  line-height: 0;
  vertical-align: -0.4em;
  margin-right: 0.1em;
}
.testimonial-block__attr { display: flex; align-items: center; gap: 1rem; }
.testimonial-block__avatar {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--bg-dark);
  border: 1.5px solid var(--accent);
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--accent);
  flex-shrink: 0;
}
.testimonial-block__name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
}
.testimonial-block__meta {
  font-size: 0.78rem;
  color: var(--text-2);
  margin-top: 0.1rem;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

/* ===================================================
   SPLIT CTA
   =================================================== */
.split-cta { display: grid; grid-template-columns: 1fr; }
.split-cta__left {
  background: var(--bg-dark);
  padding: clamp(3rem, 6vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
  border: 1px solid var(--border);
}
.split-cta__title {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 1.5rem + 3.5vw, 4rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.0;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.split-cta__lead {
  font-size: 1rem;
  color: rgba(255,255,255,0.5);
  max-width: 44ch;
  line-height: 1.65;
}
.split-cta__btns { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.split-cta__right {
  position: relative;
  min-height: 280px;
  background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.4)),
    linear-gradient(135deg, #1e3020 0%, #0e1c14 50%, #0a1410 100%);
  display: flex;
  align-items: flex-end;
  padding: 2.5rem;
  border: 1px solid var(--border);
  border-top: none;
}
.split-cta__right-note {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.split-cta__right-note::before {
  content: '';
  display: block;
  width: 1.25rem;
  height: 1px;
  background: var(--accent);
}

/* ===================================================
   CONTACT
   =================================================== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}
.contact-info h3 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 400;
  text-transform: uppercase;
  margin-block: 0.5rem 1.25rem;
  color: var(--text);
}
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin-bottom: 2rem;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}
.contact-info-item__icon {
  width: 2.1rem;
  height: 2.1rem;
  background: var(--accent-light);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.contact-info-item__icon svg {
  width: 0.9rem;
  height: 0.9rem;
  color: var(--accent);
}
.contact-info-item strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-2);
  margin-bottom: 0.2rem;
}
.contact-info-item span,
.contact-info-item a { font-size: 0.93rem; color: var(--text); line-height: 1.5; }
.contact-info-item a:hover { color: var(--accent); }

.hours-table {
  width: 100%;
  margin-top: 1.25rem;
  border-top: 1px solid var(--border);
}
.hours-table tr { border-bottom: 1px solid var(--border); }
.hours-table th,
.hours-table td { padding: 0.75rem 0; font-size: 0.88rem; text-align: left; }
.hours-table th { font-weight: 600; color: var(--text); padding-right: 2rem; }
.hours-table td { color: var(--text-2); }
.hours-table .closed { color: var(--text-light); }

.contact-form-wrap {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  padding: clamp(1.75rem, 4vw, 2.5rem);
}
.contact-form-wrap h3 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  color: var(--text);
}
.contact-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
}
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field--half { grid-column: span 1; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-2);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.field__req { color: var(--accent); margin-left: 1px; }
.field input,
.field select,
.field textarea {
  font-family: var(--font-body);
  font-size: 0.93rem;
  color: var(--text);
  background: var(--bg);
  border: 1.5px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 0.7rem 0.9rem;
  width: 100%;
  appearance: none;
  transition: border-color 0.18s, box-shadow 0.18s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(212, 86, 15, 0.12);
}
.field textarea { resize: vertical; min-height: 110px; }
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237a8898' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1rem;
  padding-right: 2.5rem;
  cursor: pointer;
}
.form-submit-row {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.form-note { font-size: 0.78rem; color: var(--text-2); }

/* ===================================================
   CTA BAND
   =================================================== */
.cta-band {
  background: var(--accent);
  padding-block: clamp(3rem, 6vw, 5rem);
  text-align: left;
}
.cta-band .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.cta-band__text h2 {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 1.25rem + 3vw, 3rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.0;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.cta-band__text p {
  color: rgba(255,255,255,0.75);
  max-width: 44ch;
}
.cta-btns { display: flex; flex-wrap: wrap; gap: 0.75rem; flex-shrink: 0; }

/* ===================================================
   FOOTER — 4 column
   =================================================== */
.site-footer {
  background: var(--bg-dark);
  color: var(--text-inv);
  border-top: 1px solid var(--border);
  padding-block: clamp(3rem, 6vw, 5rem) 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer-brand .brand__name { color: var(--text); }
.footer-brand > p {
  font-size: 0.85rem;
  color: var(--text-2);
  margin-top: 0.75rem;
  max-width: 28ch;
  line-height: 1.6;
}
.footer-social { display: flex; gap: 0.5rem; margin-top: 1.25rem; }
.footer-social a {
  width: 2rem;
  height: 2rem;
  border: 1px solid var(--border-strong);
  display: grid;
  place-items: center;
  color: var(--text-2);
  transition: border-color 0.15s, color 0.15s;
}
.footer-social a:hover { border-color: var(--accent); color: var(--accent); }
.footer-social svg { width: 0.9rem; height: 0.9rem; }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-light);
  margin-bottom: 1.1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col a { font-size: 0.88rem; color: var(--text-2); transition: color 0.15s; }
.footer-col a:hover { color: var(--text); }
.footer-col address { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col address a,
.footer-col address span {
  font-size: 0.88rem;
  color: var(--text-2);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  line-height: 1.4;
  transition: color 0.15s;
}
.footer-col address a:hover { color: var(--text); }
.footer-col address svg { width: 0.85rem; height: 0.85rem; flex-shrink: 0; margin-top: 0.15rem; }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  font-size: 0.78rem;
  color: var(--text-light);
}
.footer-bottom a { color: var(--accent); }
.footer-bottom a:hover { text-decoration: underline; }

/* ===================================================
   SCROLL REVEAL
   =================================================== */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .site-intro__mark { animation: none; }
  .hero__scroll-track::after { animation: none; }
}

/* ===================================================
   RESPONSIVE — 540px
   =================================================== */
@media (min-width: 540px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===================================================
   RESPONSIVE — 640px
   =================================================== */
@media (min-width: 640px) {
  .contact-form { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .leadership-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ===================================================
   RESPONSIVE — 768px
   =================================================== */
@media (min-width: 768px) {
  .site-nav { display: block; }
  .site-header__actions .btn { display: inline-flex; }
  .header-phone { display: block; }
  .site-header__actions { margin-inline-start: auto; }
  .nav-toggle { display: none; }

  .process-timeline { flex-direction: row; align-items: flex-start; }
  .process-timeline::before {
    top: 23px;
    left: calc(100% / 8);
    right: calc(100% / 8);
    bottom: auto;
    height: 1px;
    width: auto;
  }
  .process-step {
    flex-direction: column;
    align-items: flex-start;
    grid-template-columns: 1fr;
    padding-bottom: 0;
    flex: 1;
    gap: 0;
  }
  .process-step__circle { margin-bottom: 1.25rem; }
  .process-step__body { padding-top: 0; padding-inline: 0.5rem 1rem; }
  .process-step p { max-width: none; }

  .split-cta { grid-template-columns: 1fr 1fr; }
  .split-cta__right { min-height: auto; border-top: 1px solid var(--border); border-left: none; }
  .about-split { grid-template-columns: 1fr 1fr; }
  .service-row { grid-template-columns: 1fr 1fr; }
  .service-row:nth-child(even) .service-row__img { order: 2; }
  .service-row:nth-child(even) .service-row__text { order: 1; }
  .contact-layout { grid-template-columns: 1fr 1.4fr; }
  .capabilities-layout { grid-template-columns: 1fr 1fr; gap: 5rem; }
}

/* ===================================================
   RESPONSIVE — 1024px
   =================================================== */
@media (min-width: 1024px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 2fr 1.5fr 1fr 1.5fr; }
}

/* ===================================================
   WHAT WE BUILD — full-bleed video section
   =================================================== */
.what-we-build {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--bg-dark);
}
.what-we-build__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.what-we-build__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(7,9,13,0.25) 0%,
    rgba(7,9,13,0.88) 100%);
  z-index: 1;
}
.what-we-build__content {
  position: relative;
  z-index: 2;
  padding-block: clamp(3rem, 6vw, 6rem);
}
.what-we-build__content .eyebrow { color: rgba(255,255,255,0.4); }
.what-we-build__content .eyebrow::before { background: var(--accent); }
.what-we-build__content h2 {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 1.5rem + 5vw, 6rem);
  font-weight: 400;
  color: #fff;
  text-transform: uppercase;
  line-height: 0.92;
  letter-spacing: -0.02em;
  max-width: 12ch;
  margin-block: 0.85rem 2.25rem;
}
.what-we-build__services {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}
.what-we-build__services span {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 0.35rem 0.9rem;
  transition: color 0.15s, border-color 0.15s;
}

/* ===================================================
   PROJECT SHOWCASES — full-width editorial rows
   =================================================== */
.project-work { padding-block: 0; }
.project-work__head {
  padding-block: var(--gap);
  padding-bottom: clamp(2rem, 4vw, 3rem);
}
.project-showcase {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--border);
}
.project-showcase:last-of-type { border-bottom: 1px solid var(--border); }
.project-showcase__img {
  min-height: 300px;
  position: relative;
  overflow: hidden;
}
.project-showcase__img[data-cat="kitchen"]  { background: linear-gradient(160deg, #5a3818 10%, #241408 100%); }
.project-showcase__img[data-cat="addition"] { background: linear-gradient(160deg, #304828 10%, #141e10 100%); }
.project-showcase__img[data-cat="deck"]     { background: linear-gradient(160deg, #4a2c10 10%, #201408 100%); }
.project-showcase__img[data-cat="roofing"]  { background: linear-gradient(160deg, #303030 10%, #141414 100%); }
.project-showcase__body {
  background: var(--bg-surface);
  padding: clamp(2.5rem, 5vw, 4.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.85rem;
}
.project-showcase__cat {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.project-showcase__cat::before {
  content: '';
  display: block;
  width: 1.25rem;
  height: 1px;
  background: var(--accent);
}
.project-showcase__body h3 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 1.5rem + 2.5vw, 3.5rem);
  font-weight: 400;
  color: var(--text);
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: -0.01em;
}
.project-meta {
  font-size: 0.78rem;
  color: var(--text-2);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 0.25rem;
}
.project-showcase__body p {
  color: var(--text-2);
  font-size: 0.92rem;
  line-height: 1.7;
  max-width: 42ch;
}
.project-work__cta {
  padding-block: clamp(2.5rem, 5vw, 4rem);
  border-top: 1px solid var(--border);
}

/* ===================================================
   BRAND STATEMENT — full-bleed video + quote
   =================================================== */
.brand-statement {
  position: relative;
  min-height: 58vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg-dark);
}
.brand-statement__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.brand-statement__overlay {
  position: absolute;
  inset: 0;
  background: rgba(7,9,13,0.84);
  z-index: 1;
}
.brand-statement__inner {
  position: relative;
  z-index: 2;
  padding-block: clamp(4rem, 8vw, 7rem);
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}
.brand-statement__quote {
  font-family: var(--font-head);
  font-size: clamp(2rem, 1.5rem + 3.5vw, 4.5rem);
  font-weight: 400;
  color: #fff;
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: -0.02em;
}
.brand-statement__quote::before {
  content: '\201C';
  color: var(--accent);
  margin-right: 0.05em;
}
.brand-statement__attr {
  margin-top: 1.25rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.brand-statement__attr::before {
  content: '';
  display: block;
  width: 1.5rem;
  height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}
.trust-stack {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border);
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.5rem;
  background: rgba(26,37,53,0.7);
  backdrop-filter: blur(4px);
}
.trust-badge__num {
  font-family: var(--font-head);
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--accent);
  line-height: 1;
  min-width: 3rem;
}
.trust-badge__label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.4;
}

/* ===================================================
   NEW SECTION RESPONSIVE
   =================================================== */
@media (min-width: 768px) {
  .project-showcase {
    grid-template-columns: 55% 45%;
    min-height: 500px;
  }
  .project-showcase--rev .project-showcase__img { order: 2; }
  .project-showcase--rev .project-showcase__body { order: 1; }
  .brand-statement__inner { grid-template-columns: 1.3fr 1fr; gap: 5rem; }
}

@media (min-width: 1024px) {
  .project-showcase { min-height: 580px; }
}
