/* ==========================================================================
   Tri-State Construction — Shared Site Styles
   ========================================================================== */

:root {
  --bg: #ffffff;
  --bg-soft: #f5f4f1;
  --bg-warm: #ece8e0;
  --ink: #161618;
  --ink-soft: #4a4a4f;
  --muted: #7a7a82;
  --line: #e5e2db;
  --line-soft: #efece7;
  --accent: #c8102e;
  --accent-dark: #a30c25;
  --dark: #14161b;
  --dark-soft: #1f232b;
  --max: 1280px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, .display {
  font-family: 'Bricolage Grotesque', 'Archivo', sans-serif;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.05;
  color: var(--ink);
  text-transform: uppercase;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { max-width: var(--max); margin: 0 auto; padding: 0 28px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.18em; color: var(--accent);
  margin-bottom: 20px;
}
.eyebrow::before { content: ''; width: 28px; height: 2px; background: var(--accent); }
.eyebrow.on-dark { color: #ff7a8c; }
.eyebrow.on-dark::before { background: #ff7a8c; }

/* ================ UTILITY BAR ================ */
.utility { background: var(--dark); color: #c8c8cc; font-size: 13px; }
.utility-inner {
  max-width: var(--max); margin: 0 auto; padding: 10px 28px;
  display: flex; justify-content: flex-end; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.utility-right { display: flex; align-items: center; gap: 22px; }
.utility-right a { color: #c8c8cc; transition: color 0.15s ease; }
.utility-right a:hover { color: #fff; }
.utility-right .pill {
  background: var(--accent); color: #fff; padding: 6px 14px;
  border-radius: 999px; font-weight: 600; font-size: 12px;
  transition: background 0.15s ease;
}
.utility-right .pill:hover { background: var(--accent-dark); color: #fff; }

/* ================ NAV ================ */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: var(--max); margin: 0 auto; padding: 18px 28px;
  display: flex; justify-content: space-between; align-items: center;
}
.brand { display: flex; align-items: center; text-decoration: none; }
.brand-logo {
  height: 60px; width: auto; display: block;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.brand:hover .brand-logo { opacity: 0.75; transform: scale(1.03); }
.nav-links { display: flex; gap: 6px; align-items: center; }
.nav-links a {
  position: relative;
  font-size: 13px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--ink-soft);
  padding: 10px 16px;
  transition: color 0.2s ease;
}
.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  left: 16px; right: 16px; bottom: 4px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0); transform-origin: center;
  transition: transform 0.25s ease;
}
.nav-links a:not(.nav-cta):hover { color: var(--ink); }
.nav-links a:not(.nav-cta):hover::after,
.nav-links a:not(.nav-cta).active::after { transform: scaleX(1); }
.nav-links a:not(.nav-cta).active { color: var(--ink); }

.nav-cta {
  margin-left: 12px;
  background: var(--ink); color: #fff !important;
  padding: 12px 22px 12px 24px;
  border-radius: 999px;
  font-size: 13px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background 0.2s ease, transform 0.2s ease, gap 0.2s ease;
}
.nav-cta::after {
  content: '→';
  font-size: 14px; line-height: 1;
  transition: transform 0.2s ease;
}
.nav-cta:hover { background: var(--accent); gap: 12px; }
.nav-cta:hover::after { transform: translateX(2px); }
.menu-toggle { display: none; background: none; border: 0; color: var(--ink); cursor: pointer; }

/* ================ HERO (HOME) ================ */
.hero {
  position: relative;
  min-height: calc(100vh - 105px);
  display: flex; align-items: flex-end;
  overflow: hidden;
  background: var(--dark);
  color: #fff;
}
.hero-media {
  position: absolute; inset: 0; z-index: 0; overflow: hidden;
  background-color: #0a0c10;
}
.hero-media video,
.hero-media iframe,
.hero-media .hero-fallback {
  position: absolute; top: 50%; left: 50%;
  width: 100%; height: 100%;
  min-width: 100%; min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  border: 0;
  filter: brightness(0.55) saturate(0.9);
}
.hero-media .hero-fallback {
  background-image: url('https://images.squarespace-cdn.com/content/v1/5aec5c9bf793928a334f0ffa/1525457566970-8UVI3X68LL4YR0PBLQL8/DJI00323.JPG');
  background-size: cover; background-position: center;
}
.hero-media::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(20,22,27,0.4) 0%, rgba(20,22,27,0.7) 60%, rgba(20,22,27,0.95) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: var(--max); margin: 0 auto; padding: 100px 28px 80px;
  width: 100%;
}
.hero-grid {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 60px;
  align-items: end;
}
.hero h1 {
  color: #fff;
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 800;
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: normal;
  color: var(--accent);
  font-family: inherit;
}
.hero-tagline {
  font-size: clamp(17px, 1.6vw, 20px);
  color: rgba(255,255,255,0.78);
  max-width: 52ch; margin-bottom: 36px;
}

/* ================ PAGE BANNER (sub pages) ================ */
.page-banner {
  position: relative; overflow: hidden;
  background: var(--dark); color: #fff;
  padding: 140px 0 90px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.page-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 30%, rgba(200,16,46,0.18), transparent 60%);
  pointer-events: none;
}
.page-banner .container { position: relative; z-index: 1; }
.page-banner h1 {
  color: #fff; font-size: clamp(42px, 6vw, 80px);
  margin-bottom: 18px;
}
.page-banner p {
  color: rgba(255,255,255,0.78); font-size: 18px; max-width: 62ch;
}
.crumbs {
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.18em;
  color: rgba(255,255,255,0.6); margin-bottom: 22px;
}
.crumbs a { color: rgba(255,255,255,0.6); transition: color 0.15s ease; }
.crumbs a:hover { color: var(--accent); }

/* ================ BUTTONS ================ */
.cta-row { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px; border-radius: 4px; font-weight: 600;
  font-size: 15px; cursor: pointer; transition: all 0.15s ease;
  border: 1px solid transparent;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.3); }
.btn-ghost:hover { background: rgba(255,255,255,0.08); border-color: #fff; }
.btn-ink { background: var(--ink); color: #fff; }
.btn-ink:hover { background: var(--accent); }
.btn-outline-ink { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-outline-ink:hover { border-color: var(--ink); background: var(--ink); color: #fff; }

.hero-aside {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border-radius: 6px;
  padding: 28px;
}
.hero-aside h4 { color: #fff; font-size: 16px; font-weight: 700; margin-bottom: 16px; }
.hero-aside ul { list-style: none; display: grid; gap: 10px; }
.hero-aside li {
  color: rgba(255,255,255,0.85); font-size: 14px;
  display: flex; align-items: center; gap: 10px;
}
.hero-aside li::before { content: ''; width: 16px; height: 1px; background: var(--accent); }

/* ================ STATS ================ */
.stats { background: var(--bg-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stats-grid { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); }
.stats-grid.stats-5 { grid-template-columns: repeat(5, 1fr); }
.stats-grid.stats-5 .stat { padding: 40px 22px; }
.stats-grid.stats-5 .stat-num { font-size: 42px; }
.stat { padding: 44px 28px; text-align: left; border-right: 1px solid var(--line); }
.stat:last-child { border-right: 0; }
.stat-accent .stat-num { color: var(--accent); }
.stat-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 48px; font-weight: 800; line-height: 1;
  color: var(--ink);
}
.stat-num span { color: var(--accent); }
.stat-label {
  font-size: 12px; color: var(--muted); text-transform: uppercase;
  letter-spacing: 0.16em; margin-top: 10px; font-weight: 600;
}

/* ================ SECTIONS ================ */
section { padding: 130px 0; }
section.dark { background: var(--dark); color: #fff; }
section.dark h2, section.dark h3, section.dark h4 { color: #fff; }
section.soft { background: var(--bg-soft); }
section.warm { background: var(--bg-warm); }
.section-head { margin-bottom: 72px; max-width: 760px; }
.section-head h2 { font-size: clamp(36px, 4.8vw, 64px); margin-bottom: 22px; }
.section-head p { color: var(--ink-soft); font-size: 18px; max-width: 60ch; }
section.dark .section-head p { color: rgba(255,255,255,0.72); }

/* ================ ABOUT ================ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-image {
  position: relative; aspect-ratio: 4/5;
  background-size: cover; background-position: center;
  border-radius: 4px; overflow: hidden;
  background-image: url('https://images.squarespace-cdn.com/content/v1/5aec5c9bf793928a334f0ffa/1568922891621-QRPEAXX6IHZUUX3HA2CT/UUUUUUUse+DJI_0118.jpg');
}
.about-image::after {
  content: 'EST. 1987'; position: absolute; bottom: 28px; left: 28px;
  background: var(--accent); color: #fff;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800; font-size: 14px; padding: 10px 16px;
  letter-spacing: 0.08em;
}
.about-copy h2 { font-size: clamp(36px, 4vw, 56px); margin-bottom: 28px; }
.about-copy p { color: var(--ink-soft); font-size: 17px; margin-bottom: 18px; }
.about-copy strong { color: var(--ink); font-weight: 600; }
.signature-row {
  display: flex; gap: 40px; flex-wrap: wrap;
  margin-top: 36px; padding-top: 28px; border-top: 1px solid var(--line);
}
.signature { display: flex; align-items: center; gap: 14px; }
.signature-mark {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--accent); color: #fff;
  display: grid; place-items: center;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800; font-size: 13px;
}
.signature-text { font-size: 13px; line-height: 1.3; }
.signature-text strong { display: block; font-weight: 700; color: var(--ink); }
.signature-text span { color: var(--muted); font-size: 12px; }

/* Three-column About supplementary content */
.principles-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.principle {
  background: #fff; border: 1px solid var(--line);
  border-radius: 6px; padding: 32px;
}
.principle-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 13px; font-weight: 700; color: var(--accent);
  letter-spacing: 0.16em; margin-bottom: 10px;
}
.principle h3 { font-size: 22px; margin-bottom: 12px; }
.principle p { color: var(--ink-soft); font-size: 15px; }

/* ================ CAPABILITIES ================ */
.caps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.cap {
  background: #fff; border: 1px solid var(--line);
  border-radius: 6px; overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  display: flex; flex-direction: column;
}
.cap:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -20px rgba(0,0,0,0.12); border-color: var(--accent); }
.cap-img { aspect-ratio: 16/10; background-size: cover; background-position: center; }
.cap-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.cap-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 13px; font-weight: 700; color: var(--accent);
  letter-spacing: 0.16em; margin-bottom: 10px;
}
.cap h3 { font-size: 22px; margin-bottom: 10px; }
.cap p { color: var(--ink-soft); font-size: 15px; flex: 1; }
.cap-link {
  margin-top: 20px; font-weight: 600; font-size: 14px;
  color: var(--ink); display: inline-flex; align-items: center; gap: 8px;
  transition: gap 0.2s ease, color 0.2s ease;
}
.cap:hover .cap-link { color: var(--accent); gap: 12px; }

/* ================ TWO-UP FEATURE ================ */
.twoup { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.feature {
  position: relative; aspect-ratio: 4/3;
  background-size: cover; background-position: center;
  border-radius: 6px; overflow: hidden;
  color: #fff;
}
.feature::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,22,27,0.1) 0%, rgba(20,22,27,0.85) 100%);
}
.feature-body { position: absolute; bottom: 0; left: 0; right: 0; z-index: 1; padding: 36px; }
.feature-body h3 { color: #fff; font-size: 32px; margin-bottom: 8px; }
.feature-body p { color: rgba(255,255,255,0.85); margin-bottom: 18px; max-width: 36ch; }
.feature-body a {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff; color: var(--ink);
  padding: 12px 22px; border-radius: 4px;
  font-weight: 600; font-size: 14px;
  transition: background 0.15s ease, color 0.15s ease;
}
.feature-body a:hover { background: var(--accent); color: #fff; }
.feature-tag {
  display: inline-block; background: var(--accent); color: #fff;
  padding: 6px 12px; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  margin-bottom: 14px;
}

/* ================ COOPER CAROUSEL ================ */
.current { background: var(--bg-warm); position: relative; }
.current .container { overflow: hidden; }
.current-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 48px; align-items: start; }
.current-grid > .carousel { width: 100%; min-width: 0; }
.current-grid > .project-info { width: 100%; min-width: 0; }
.carousel {
  position: relative; aspect-ratio: 4/3;
  background: var(--dark); border-radius: 8px; overflow: hidden;
  box-shadow: 0 30px 60px -25px rgba(0,0,0,0.4);
}
.carousel-track { position: absolute; inset: 0; }
.carousel-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 0.6s ease;
}
.carousel-slide.active { opacity: 1; }
/* Only the zoomable slides (Cooper detail page) need pointer-event isolation */
.carousel-slide[data-full]:not(.active) { pointer-events: none; }
.carousel-slide[data-full].active { pointer-events: auto; cursor: zoom-in; }
.carousel-counter {
  position: absolute; top: 20px; left: 20px; z-index: 3;
  background: rgba(0,0,0,0.55); color: #fff;
  backdrop-filter: blur(6px);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700; font-size: 13px;
  padding: 8px 14px; border-radius: 999px;
  letter-spacing: 0.1em;
}
.carousel-tag {
  position: absolute; top: 20px; right: 20px; z-index: 3;
  background: var(--accent); color: #fff;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.16em;
  padding: 8px 14px; border-radius: 999px;
  display: flex; align-items: center; gap: 8px;
}
.carousel-tag .pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: #fff; box-shadow: 0 0 0 0 rgba(255,255,255,0.7);
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255,255,255,0.7); }
  70%  { box-shadow: 0 0 0 10px rgba(255,255,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}
.carousel-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 48px; height: 48px; border: 0; cursor: pointer;
  background: rgba(0,0,0,0.55); color: #fff;
  backdrop-filter: blur(6px);
  border-radius: 50%; display: grid; place-items: center;
  transition: background 0.2s ease, transform 0.2s ease;
}
.carousel-arrow:hover { background: var(--accent); transform: translateY(-50%) scale(1.05); }
.carousel-arrow.prev { left: 16px; }
.carousel-arrow.next { right: 16px; }
.carousel-progress {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 3;
  height: 3px; background: rgba(255,255,255,0.15);
}
.carousel-progress-bar {
  height: 100%; background: var(--accent);
  transform-origin: left; transform: scaleX(0);
  transition: transform 6s linear;
}
.project-info {
  background: var(--dark); color: #fff;
  border-radius: 8px; padding: 40px;
  display: flex; flex-direction: column;
}
.project-info h3 { color: #fff; font-size: 32px; margin-bottom: 8px; }
.project-info .sub {
  color: var(--accent); font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.16em;
  margin-bottom: 24px;
}
.project-info p {
  color: rgba(255,255,255,0.78); font-size: 15px;
  line-height: 1.65; margin-bottom: 28px;
}
.info-stat {
  padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 14px;
}
.info-stat:last-child { border-bottom: 0; }
.info-stat .k {
  color: rgba(255,255,255,0.55); font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.14em; font-weight: 700;
}
.info-stat .v { color: #fff; font-weight: 600; }
.thumb-strip { margin-top: 32px; display: grid; grid-template-columns: repeat(10, 1fr); gap: 10px; }
.thumb {
  aspect-ratio: 4/3; cursor: pointer;
  background-size: cover; background-position: center;
  border-radius: 4px; opacity: 0.55;
  transition: opacity 0.2s ease, transform 0.2s ease;
  border: 2px solid transparent;
}
.thumb:hover { opacity: 0.85; transform: translateY(-2px); }
.thumb.active { opacity: 1; border-color: var(--accent); }

/* ================ PROJECTS PREVIEW ================ */
.projects-head {
  display: flex; justify-content: space-between; align-items: end;
  flex-wrap: wrap; gap: 24px; margin-bottom: 64px;
}
.projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.project {
  background: var(--dark-soft);
  border-radius: 6px; overflow: hidden;
  transition: transform 0.3s ease;
  cursor: pointer;
}
.project:hover { transform: translateY(-6px); }
.project-img {
  aspect-ratio: 4/3; background-size: cover; background-position: center;
  transition: transform 0.5s ease;
  overflow: hidden;
}
.project:hover .project-img { transform: scale(1.04); }
.project-body { padding: 24px; }
.project-meta {
  display: flex; gap: 14px; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: rgba(255,255,255,0.6); margin-bottom: 10px;
}
.project-meta span:first-child { color: var(--accent); }
.project h3 { color: #fff; font-size: 20px; margin-bottom: 4px; }
.project p { color: rgba(255,255,255,0.6); font-size: 14px; }
.project-location {
  color: rgba(255,255,255,0.5); font-size: 13px;
  margin-bottom: 0; padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.project-scope { padding-top: 16px; }
.project-gc {
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.16em; color: var(--accent);
  margin-bottom: 8px;
}
.project-stats {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 15px; font-weight: 700; color: #fff;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.project-desc {
  color: rgba(255,255,255,0.65); font-size: 13px;
  line-height: 1.5; margin-bottom: 0;
}

/* ================ CONTACT ================ */
.contact-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: start; }
.form { display: grid; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field label {
  display: block; font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--ink); margin-bottom: 8px;
}
.field input, .field textarea, .field select {
  width: 100%; padding: 14px 16px;
  background: #fff; border: 1px solid var(--line);
  border-radius: 4px; color: var(--ink);
  font-family: inherit; font-size: 15px;
  transition: border-color 0.15s ease;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: 0; border-color: var(--accent);
}
.field textarea { resize: vertical; min-height: 140px; }
.form-note {
  font-size: 13px; color: var(--muted); margin-top: 6px;
}
.form-status {
  display: none;
  padding: 14px 18px; border-radius: 4px;
  font-size: 14px; font-weight: 500;
  margin-top: 10px;
}
.form-status.success { display: block; background: #eaf5ee; color: #1f6b3a; border-left: 3px solid #1f6b3a; }
.form-status.error   { display: block; background: #fbeaec; color: #a30c25; border-left: 3px solid var(--accent); }

.info-card { background: var(--dark); color: #fff; border-radius: 6px; padding: 36px; }
.info-card h3 { color: #fff; font-size: 24px; margin-bottom: 24px; }
.info-row { padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
.info-row:last-child { border-bottom: 0; }
.info-label {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.16em; color: rgba(255,255,255,0.55);
  margin-bottom: 6px;
}
.info-value { font-size: 17px; color: #fff; }
.info-value a { color: #fff; transition: color 0.15s ease; }
.info-value a:hover { color: var(--accent); }
.hours-card {
  margin-top: 18px; background: #fff;
  border: 1px solid var(--line); border-left: 3px solid var(--accent);
  padding: 24px; border-radius: 4px;
}
.hours-card h4 { font-size: 14px; text-transform: uppercase; letter-spacing: 0.14em; margin-bottom: 12px; }
.hours-card p { font-size: 14px; color: var(--ink-soft); margin: 4px 0; }

.map-wrap {
  margin-top: 56px; border-radius: 6px; overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 16/6; background: var(--bg-soft);
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* ================ CTA STRIP ================ */
.cta-strip {
  background: var(--accent); color: #fff;
  padding: 80px 0;
}
.cta-strip .container {
  display: flex; justify-content: space-between; align-items: center;
  gap: 30px; flex-wrap: wrap;
}
.cta-strip h2 {
  color: #fff; font-size: clamp(28px, 3.5vw, 44px);
  max-width: 20ch;
}
.cta-strip .btn-ink { background: #fff; color: var(--accent); }
.cta-strip .btn-ink:hover { background: var(--ink); color: #fff; }

/* ================ FOOTER ================ */
footer {
  background: var(--dark); color: rgba(255,255,255,0.7);
  padding: 80px 0 32px;
}
.foot-grid {
  display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 60px;
  padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.foot-logo { height: 100px; width: auto; display: block; margin-bottom: 26px; }
.foot-brand p { font-size: 14px; max-width: 36ch; }
.foot-col h5 {
  color: #fff; font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.14em;
  margin-bottom: 18px;
}
.foot-col ul { list-style: none; display: grid; gap: 10px; }
.foot-col a { color: rgba(255,255,255,0.7); font-size: 14px; transition: color 0.15s ease; }
.foot-col a:hover { color: var(--accent); }
.foot-bottom {
  padding-top: 28px; display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 12px; font-size: 12px;
}

/* ================ PROJECT FILTER BAR ================ */
.filter-bar {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: 48px; padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.filter-btn {
  background: transparent; border: 1px solid var(--line);
  color: var(--ink-soft); cursor: pointer;
  padding: 10px 20px; border-radius: 999px;
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  font-family: inherit;
  transition: all 0.2s ease;
}
.filter-btn:hover { border-color: var(--ink); color: var(--ink); }
.filter-btn.active {
  background: var(--ink); color: #fff; border-color: var(--ink);
}
.project.hidden { display: none; }

.project-list-wrap {
  margin-top: 80px; padding: 48px;
  background: var(--dark-soft); border-radius: 6px;
}
.project-list-wrap h3 { font-size: 22px; margin-bottom: 28px; color: #fff; }
.project-list { columns: 3; column-gap: 32px; list-style: none; }
.project-list li {
  padding: 10px 0; font-size: 14px;
  color: rgba(255,255,255,0.72);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  break-inside: avoid;
}

/* ================ FEATURED ON-SITE BANNER ================ */
.featured-banner {
  position: relative; overflow: hidden;
  background: var(--dark); color: #fff;
  border-radius: 8px;
  margin-top: 0; margin-bottom: 64px;
  display: grid; grid-template-columns: 1.4fr 1fr; min-height: 360px;
}
.featured-banner-img {
  background-size: cover; background-position: center;
  position: relative;
}
.featured-banner-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 50%, var(--dark) 100%);
}
.featured-banner-body { padding: 56px 48px; display: flex; flex-direction: column; justify-content: center; }
.featured-banner-body .tag {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--accent); color: #fff;
  padding: 6px 14px; border-radius: 999px;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.16em;
  margin-bottom: 18px; align-self: flex-start;
}
.featured-banner-body .tag .pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: #fff; box-shadow: 0 0 0 0 rgba(255,255,255,0.7);
  animation: pulse 1.6s infinite;
}
.featured-banner-body h2 { color: #fff; font-size: clamp(28px,3.6vw,44px); margin-bottom: 12px; }
.featured-banner-body p { color: rgba(255,255,255,0.78); font-size: 16px; max-width: 50ch; margin-bottom: 24px; }

/* ================ PROJECT DETAIL — GALLERY ================ */
.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.gallery-grid .gi-wide { grid-column: span 2; }
.gallery-item {
  aspect-ratio: 4/3; overflow: hidden;
  background-size: cover; background-position: center;
  border-radius: 4px; cursor: pointer;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery-item:hover { transform: translateY(-3px); box-shadow: 0 20px 40px -20px rgba(0,0,0,0.25); }
.gallery-item.tall { aspect-ratio: 3/4; }

.scope-table {
  background: #fff; border: 1px solid var(--line);
  border-radius: 6px; padding: 8px 24px;
}
.scope-table .row {
  display: grid; grid-template-columns: 200px 1fr; gap: 24px;
  padding: 18px 0; border-bottom: 1px solid var(--line-soft);
  align-items: baseline;
}
.scope-table .row:last-child { border-bottom: 0; }
.scope-table .k {
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--muted);
}
.scope-table .v { color: var(--ink); font-size: 16px; font-weight: 500; }
.scope-table .v strong { color: var(--accent); font-weight: 700; }

/* ================ LIGHTBOX ================ */
.lightbox {
  position: fixed; inset: 0; z-index: 999;
  background: rgba(0,0,0,0.92);
  display: none; align-items: center; justify-content: center;
  padding: 24px; cursor: zoom-out;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 95%; max-height: 92%; object-fit: contain; border-radius: 4px; }
.lightbox-close {
  position: absolute; top: 24px; right: 24px;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.1); color: #fff;
  border: 0; cursor: pointer; font-size: 22px;
  display: grid; place-items: center;
}
.lightbox-close:hover { background: rgba(255,255,255,0.2); }
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 50px; height: 50px; border-radius: 50%;
  background: rgba(255,255,255,0.1); color: #fff;
  border: 0; cursor: pointer; font-size: 22px;
  display: grid; place-items: center;
}
.lightbox-nav:hover { background: rgba(255,255,255,0.2); }
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }
.lightbox-caption {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.75); font-size: 13px;
  background: rgba(0,0,0,0.5); padding: 6px 14px; border-radius: 999px;
}

/* ================ TEAM GRID ================ */
.team-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.team-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: 6px; overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.team-card:hover { transform: translateY(-3px); box-shadow: 0 20px 40px -20px rgba(0,0,0,0.12); }
.team-photo {
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--bg-warm) 0%, var(--line) 100%);
  display: grid; place-items: center;
  color: var(--muted); font-size: 12px;
  font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase;
}
.team-body { padding: 24px 24px 28px; }
.team-body h3 { font-size: 20px; margin-bottom: 4px; }
.team-role {
  color: var(--accent); font-size: 12px;
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em;
  margin-bottom: 12px;
}
.team-bio { color: var(--ink-soft); font-size: 14px; }

/* ================ CAREERS — JOB CARDS ================ */
.jobs-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px;
}
.job-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: 6px; padding: 28px;
  display: flex; flex-direction: column;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.job-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.job-card .badges {
  display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 14px;
}
.job-card .badge {
  font-size: 10px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; padding: 4px 10px;
  border-radius: 999px;
}
.job-card .badge-trade { background: var(--bg-warm); color: var(--ink); }
.job-card .badge-location { background: var(--bg-soft); color: var(--muted); }
.job-card .badge-union { background: var(--accent); color: #fff; }
.job-card h3 { font-size: 22px; margin-bottom: 6px; }
.job-card p { color: var(--ink-soft); font-size: 14px; flex: 1; margin-bottom: 18px; }
.job-card .job-cta {
  font-size: 13px; font-weight: 700; color: var(--ink);
  text-transform: uppercase; letter-spacing: 0.12em;
  display: inline-flex; align-items: center; gap: 8px;
  transition: gap 0.15s ease, color 0.15s ease;
}
.job-card:hover .job-cta { color: var(--accent); gap: 12px; }

/* ================ RESPONSIVE ================ */
@media (max-width: 980px) {
  section { padding: 80px 0; }
  .nav-links { display: none; position: fixed; top: 70px; left: 0; right: 0;
    background: #fff; flex-direction: column; padding: 24px;
    border-bottom: 1px solid var(--line); gap: 18px; align-items: flex-start; }
  .nav-links.open { display: flex; }
  .menu-toggle { display: block; }
  .utility-right { gap: 14px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line); }
  .stats-grid.stats-5 { grid-template-columns: 1fr; }
  .stats-grid.stats-5 .stat { border-right: 0; border-bottom: 1px solid var(--line); padding: 28px; }
  .stats-grid.stats-5 .stat:last-child { border-bottom: 0; }
  .hero-grid, .about-grid, .twoup, .contact-grid {
    grid-template-columns: 1fr; gap: 40px;
  }
  .caps-grid, .projects-grid, .foot-grid, .principles-grid {
    grid-template-columns: 1fr;
  }
  .form-row { grid-template-columns: 1fr; }
  .about-image { aspect-ratio: 4/3; }
  .current-grid { grid-template-columns: 1fr; gap: 24px; }
  .project-info { padding: 28px; }
  .project-info h3 { font-size: 24px; }
  .thumb-strip { grid-template-columns: repeat(5, 1fr); }
  .page-banner { padding: 80px 0 60px; }
  .featured-banner { grid-template-columns: 1fr; min-height: auto; }
  .featured-banner-img { aspect-ratio: 16/9; }
  .featured-banner-body { padding: 32px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid .gi-wide { grid-column: span 2; }
  .scope-table .row { grid-template-columns: 1fr; gap: 4px; padding: 14px 0; }
  .team-grid { grid-template-columns: 1fr; }
  .jobs-grid { grid-template-columns: 1fr; }
  .project-list { columns: 1; }
}
