@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=IBM+Plex+Mono:wght@600&family=IBM+Plex+Sans:wght@400;500;600;700&display=swap');

/* ============================================================
   CUSTOM PROPERTIES
   ============================================================ */
:root {
  --primary:        #bf1b28;
  --primary-dark:   #8f1320;
  --accent:         #bf1b28;
  --canvas:         #FFFFFF;
  --surface:        #F2F0EB;
  --surface-2:      #E8E5DF;
  --ink:            #0C0C0F;
  --ink-mid:        #2a2a2e;
  --muted:          #5A5852;
  --border:         rgba(12,12,15,0.14);
  --border-ink:     #0C0C0F;
  --header-height:  72px;
}
@media (max-width: 900px) {
  :root { --header-height: 60px; }
}

/* ============================================================
   GLOBAL RESET & SMOOTH SCROLL
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 16px); font-size: 16px; }
body {
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 500;
  color: var(--ink);
  background: var(--canvas);
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
}
ul, ol { list-style: none; }
address { font-style: normal; }

/* Universal image cap */
img { max-width: 100%; height: auto; display: block; }

section img:not(.hero-bg):not([class*="full-bleed"]):not([class*="fullbleed"]) {
  max-height: 640px;
  object-fit: cover;
}

.nav img, header img, .header img, .nav-logo img, .logo img {
  max-height: 44px !important; max-width: 200px !important;
  width: auto !important; align-self: flex-start !important;
  object-fit: contain !important; flex: 0 0 auto !important;
}
.footer img, footer img {
  max-height: 44px !important; max-width: 180px !important;
  width: auto !important; align-self: flex-start !important;
  object-fit: contain !important; flex: 0 0 auto !important;
}

.hero { position: relative; overflow: hidden; }
.hero-bg, .hero > img:first-of-type {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%; z-index: 0;
}
.hero-inner, .hero > :not(img):not(.hero-bg):not(.hero-overlay) {
  position: relative; z-index: 2;
}
.hero-overlay { position: absolute; inset: 0; z-index: 1; pointer-events: none; }

.page-header, [class*="page-header"], .about-feature, .about-hero {
  position: relative; overflow: hidden; max-height: 64vh;
}
.page-header > img, [class*="page-header"] > img, .page-header-bg,
.about-feature > img:first-of-type, .about-hero-bg,
.page-header img:first-of-type {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%; z-index: 0;
}
section > img:first-child:not([class*="logo"]):not(.nav-logo) {
  max-height: 64vh; object-fit: cover;
}
section img:not(.hero-bg):not(.page-header-bg):not([class*="full-bleed"]):not([class*="logo"]) {
  max-height: 720px;
}

[class*="gallery-grid"] > [class*="gallery-tile"],
[class*="gallery-grid"] > a,
[class*="gallery-grid"] > figure {
  grid-column: auto; width: auto; max-width: 100%; height: auto; min-height: 0;
}
[class*="gallery-tile"] { aspect-ratio: 4 / 3; overflow: hidden; }
[class*="gallery-tile"] > img { width: 100%; height: 100%; object-fit: cover; }

/* Heading anchor rule */
h1 a, h2 a, h3 a, .hero-title a, .hero-eyebrow a, .hero-sub a {
  color: inherit; text-decoration: none; border-bottom: 0;
}

/* ============================================================
   TYPOGRAPHY UTILITIES
   ============================================================ */
.display-font {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 0.92;
  text-transform: uppercase;
}
.mono-label {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

/* ============================================================
   LAYOUT CONTAINERS
   ============================================================ */
.container       { max-width: 1360px; margin-inline: auto; padding-inline: clamp(20px, 4vw, 56px); }
.wide-container  { max-width: 1400px; margin-inline: auto; padding-inline: clamp(20px, 4vw, 56px); }

/* ============================================================
   LINKS
   ============================================================ */
a { color: inherit; transition: color 150ms; text-decoration: none; }
a:hover { color: var(--primary); }

/* ============================================================
   SCROLL PROGRESS
   ============================================================ */
#scrollProgress, .scroll-progress, #scroll-progress, #progress-bar, #scrollBar, .scroll-bar {
  position: fixed; top: 0; left: 0; height: 3px;
  background: var(--primary); width: 0%; z-index: 9999;
  transition: width 60ms linear;
}

/* ============================================================
   SITE HEADER + NAV
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 900;
  background: var(--canvas);
  border-bottom: 1px solid rgba(12,12,15,0.10);
}
.top-nav {
  display: flex; align-items: center; gap: 24px;
  max-width: 1360px; margin-inline: auto;
  padding: 0 clamp(16px, 3vw, 40px);
  height: var(--header-height);
}
.nav-logo { flex: 0 0 auto; }
.nav-pages {
  flex: 1;
  display: flex; align-items: center; justify-content: center; gap: 28px;
  padding: 0; margin: 0;
}
.nav-pages a {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600; font-size: 11px;
  letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--ink); text-decoration: none;
  padding: 6px 0; display: inline-block;
  transition: color 150ms;
}
.nav-pages a:hover { color: var(--primary); }
.nav-pages a[aria-current="page"] {
  color: var(--primary);
  border-bottom: 2px solid var(--primary);
}
.nav-cta {
  flex: 0 0 auto;
  background: var(--primary); color: #fff;
  padding: 10px 20px; border-radius: 0;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600; font-size: 11px;
  letter-spacing: 0.10em; text-transform: uppercase;
  text-decoration: none; white-space: nowrap;
  transition: background 150ms;
}
.nav-cta:hover { background: var(--primary-dark); color: #fff; }
.nav-toggle {
  display: none; background: none; border: none;
  color: var(--ink); font-size: 26px;
  cursor: pointer; width: 44px; height: 44px;
  align-items: center; justify-content: center;
  flex: 0 0 auto;
}
@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-pages {
    display: none; flex-direction: column;
    position: absolute; top: 60px; left: 0; right: 0;
    background: var(--canvas); padding: 20px 24px;
    gap: 4px; border-bottom: 2px solid var(--border-ink);
    justify-content: flex-start; z-index: 800;
  }
  .nav-pages.open { display: flex; }
  .nav-pages a { font-size: 13px; padding: 10px 0; width: 100%; border-bottom: 1px solid var(--border); }
  .nav-cta span { display: none; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600; font-size: 12px;
  letter-spacing: 0.10em; text-transform: uppercase;
  padding: 18px 32px; border-radius: 0;
  text-decoration: none; cursor: pointer;
  transition: background 180ms, color 180ms, transform 150ms;
  border: none;
}
.btn-primary, .btn-primary-cta {
  background: var(--primary); color: #fff;
}
.btn-primary:hover, .btn-primary-cta:hover {
  background: var(--primary-dark); color: #fff;
  transform: translateY(-1px);
}
.btn-ghost, .btn-ink {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.btn-ghost:hover, .btn-ink:hover {
  background: #fff; color: var(--ink);
}
.btn-phone, .btn-phone-cta {
  background: var(--ink); color: #fff;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600; font-size: 12px;
  letter-spacing: 0.08em;
  padding: 18px 32px; border-radius: 0;
  text-decoration: none; display: inline-flex;
  align-items: center; gap: 8px;
}
.btn-phone:hover, .btn-phone-cta:hover { background: var(--primary); color: #fff; }
.btn-submit {
  background: var(--primary); color: #fff;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600; font-size: 12px;
  letter-spacing: 0.10em; text-transform: uppercase;
  padding: 16px 32px; border-radius: 0; border: none;
  cursor: pointer; display: inline-flex; align-items: center; gap: 8px;
  transition: background 150ms;
}
.btn-submit:hover { background: var(--primary-dark); }
.cta-form-btn {
  background: var(--primary); color: #fff;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600; font-size: 12px;
  letter-spacing: 0.10em; text-transform: uppercase;
  padding: 16px 32px; border-radius: 0; border: none;
  cursor: pointer; display: inline-flex; align-items: center; gap: 8px;
  width: 100%; justify-content: center;
  transition: background 150ms;
}
.cta-form-btn:hover { background: var(--primary-dark); }

/* ============================================================
   HERO
   ============================================================ */
#hero.hero {
  min-height: 92vh;
  display: flex; flex-direction: column; justify-content: flex-end;
  background: var(--ink);
}
.hero-overlay {
  background: linear-gradient(
    160deg,
    rgba(12,12,15,0.82) 0%,
    rgba(12,12,15,0.60) 45%,
    rgba(12,12,15,0.30) 100%
  );
}
.hero-inner {
  padding: clamp(48px, 7vw, 96px) clamp(24px, 5vw, 72px);
  max-width: 1360px; margin-inline: auto; width: 100%;
  padding-bottom: clamp(56px, 8vw, 96px);
}
.hero-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600; font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--primary); margin-bottom: 20px;
}
.hero-title {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(56px, 8.5vw, 132px);
  line-height: 0.90;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #fff;
  max-width: 18ch;
  margin-bottom: 24px;
}
.hero-sub {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: clamp(15px, 1.6vw, 19px);
  font-weight: 500;
  color: rgba(255,255,255,0.80);
  max-width: 52ch;
  line-height: 1.6;
  margin-bottom: 36px;
}
.hero-ctas {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-bottom: 40px;
}
.hero-ctas a {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600; font-size: 12px;
  letter-spacing: 0.10em; text-transform: uppercase;
  padding: 18px 32px; border-radius: 0;
  text-decoration: none; display: inline-flex; align-items: center;
  transition: background 150ms, color 150ms;
}
.hero-ctas a:first-child {
  background: var(--primary); color: #fff;
}
.hero-ctas a:first-child:hover { background: var(--primary-dark); }
.hero-ctas a:last-child {
  background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,0.60);
}
.hero-ctas a:last-child:hover { border-color: #fff; background: rgba(255,255,255,0.08); }

.hero-trust-chips {
  display: flex; flex-wrap: wrap; gap: 0;
  border: 1px solid rgba(255,255,255,0.30);
  width: fit-content;
}
.trust-chip {
  padding: 10px 18px;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600; font-size: 11px;
  letter-spacing: 0.10em; text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  border-right: 1px solid rgba(255,255,255,0.30);
}
.trust-chip:last-child { border-right: none; }
.trust-chip-star { color: var(--primary); }

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--surface);
  border-top: 1px solid var(--border-ink);
  border-bottom: 1px solid var(--border-ink);
  padding: 0;
}
.trust-strip-inner {
  max-width: 1360px; margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 56px);
  display: flex; flex-wrap: wrap; align-items: stretch;
}
.trust-item {
  display: flex; flex-direction: column;
  padding: 20px 28px;
  flex: 1 1 auto;
}
.trust-divider {
  width: 1px; background: var(--border-ink);
  align-self: stretch; flex: 0 0 1px;
}
.trust-label {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900; font-size: clamp(14px, 1.6vw, 18px);
  letter-spacing: -0.01em; color: var(--ink);
  display: block;
}
.trust-sub {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600; font-size: 10px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); display: block; margin-top: 2px;
}
@media (max-width: 640px) {
  .trust-strip-inner { flex-direction: column; }
  .trust-divider { width: 100%; height: 1px; flex: 0 0 1px; }
  .trust-item { padding: 14px 20px; }
}

/* ============================================================
   CLAIM BAND / BRAND BAND
   ============================================================ */
.claim-band, .brand-band {
  background: var(--primary);
  padding: clamp(40px, 6vw, 80px) clamp(24px, 5vw, 72px);
  overflow: hidden;
}
.claim-text, .brand-band-claim, .brand-band-text {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 6vw, 100px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #fff;
  max-width: 1360px; margin-inline: auto;
  display: block;
}
.brand-band-inner {
  max-width: 1360px; margin-inline: auto;
}

/* ============================================================
   SERVICES (index.html bento grid)
   ============================================================ */
.services {
  background: var(--canvas);
  padding: clamp(72px, 9vh, 112px) 0;
}
.services-intro {
  max-width: 1360px; margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 56px);
  margin-bottom: 40px;
}
.section-eyebrow, .sec-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600; font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--primary); margin-bottom: 12px; display: block;
}
.section-heading {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 0.92; letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--ink);
}
.services-bento {
  max-width: 1360px; margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 56px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 2px;
}
/* large card spans 2 cols */
#service-tree-management.service-card-large {
  grid-column: span 2;
  min-height: 480px;
}
.service-card {
  position: relative; overflow: hidden;
  display: block; text-decoration: none;
  background: var(--ink);
  min-height: 320px;
  transition: transform 250ms ease-out;
}
.service-card:hover { transform: scale(1.01); }
.service-card > img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
  transition: transform 400ms ease-out;
  max-height: none !important;
}
.service-card:hover > img { transform: scale(1.04); }
.service-card-scrim {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(0deg, rgba(12,12,15,0.85) 0%, rgba(12,12,15,0.20) 60%, transparent 100%);
}
.service-card-body {
  position: absolute; bottom: 0; left: 0; right: 0;
  z-index: 2; padding: 28px;
}
.service-card-body h3 {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900; font-size: clamp(18px, 2vw, 26px);
  letter-spacing: -0.01em; text-transform: uppercase;
  color: #fff; margin-bottom: 6px; line-height: 1.0;
}
.service-index {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600; font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--primary); display: block; margin-bottom: 8px;
}
.service-desc {
  font-size: 13px; color: rgba(255,255,255,0.75);
  line-height: 1.5; margin-bottom: 10px;
  font-family: 'IBM Plex Sans', sans-serif;
}
.service-cta-link {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600; font-size: 10px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--primary);
}
.services-footer {
  max-width: 1360px; margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 56px);
  margin-top: 32px;
  display: flex; align-items: center;
}
.services-footer a {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600; font-size: 12px;
  letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--ink); text-decoration: none;
  border-bottom: 2px solid var(--primary);
  padding-bottom: 2px;
  transition: color 150ms;
}
.services-footer a:hover { color: var(--primary); }
@media (max-width: 900px) {
  .services-bento { grid-template-columns: 1fr 1fr; }
  #service-tree-management.service-card-large { grid-column: span 2; min-height: 300px; }
}
@media (max-width: 640px) {
  .services-bento { grid-template-columns: 1fr; }
  #service-tree-management.service-card-large { grid-column: span 1; }
}

/* ============================================================
   SERVICES LIST (services.html)
   ============================================================ */
.services-list {
  padding: clamp(72px, 9vh, 112px) 0;
  background: var(--canvas);
}
.service-block {
  max-width: 1360px; margin-inline: auto;
  padding: clamp(48px, 6vw, 80px) clamp(20px, 4vw, 56px);
  border-bottom: 1px solid var(--border);
}
.service-block.alt { background: var(--surface); }
.service-block-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.service-block.alt .service-block-inner {
  direction: rtl;
}
.service-block.alt .service-block-inner > * {
  direction: ltr;
}
.service-block-photo {
  position: relative; overflow: hidden;
  aspect-ratio: 4 / 3;
}
.service-block-photo > img {
  width: 100%; height: 100%; object-fit: cover;
  max-height: none !important;
}
.service-block-index {
  position: absolute; top: 16px; left: 16px;
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 900;
  color: var(--primary);
  line-height: 1; opacity: 0.9;
  z-index: 2;
}
.service-block-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600; font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--primary); display: block; margin-bottom: 12px;
}
.service-block-title {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 3.5vw, 52px);
  line-height: 0.92; letter-spacing: -0.02em;
  text-transform: uppercase; color: var(--ink);
  margin-bottom: 20px;
}
.service-block-desc {
  color: var(--ink-mid); line-height: 1.68;
  margin-bottom: 12px; font-size: 16px;
}
.service-block-features {
  margin: 20px 0 28px;
  display: flex; flex-direction: column; gap: 8px;
}
.service-block-features li {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-mid); padding-left: 16px; position: relative;
}
.service-block-features li::before {
  content: ''; position: absolute; left: 0; top: 50%;
  transform: translateY(-50%);
  width: 6px; height: 6px;
  background: var(--primary);
}
.service-block-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600; font-size: 12px;
  letter-spacing: 0.10em; text-transform: uppercase;
  color: #fff; background: var(--primary);
  padding: 16px 28px; text-decoration: none;
  transition: background 150ms;
}
.service-block-cta:hover { background: var(--primary-dark); color: #fff; }
.service-block-cta svg { width: 16px; height: 16px; }
@media (max-width: 900px) {
  .service-block-inner { grid-template-columns: 1fr; gap: 32px; }
  .service-block.alt .service-block-inner { direction: ltr; }
}

/* ============================================================
   GALLERY PREVIEW (index.html)
   ============================================================ */
.gallery-preview {
  background: var(--surface);
  padding: clamp(72px, 9vh, 112px) 0;
  border-top: 1px solid var(--border);
}
.gallery-preview-inner {
  max-width: 1360px; margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 56px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.gallery-preview-copy { grid-column: 1; }
.gallery-preview-copy .section-heading { margin-bottom: 20px; }
.gallery-preview-text {
  color: var(--muted); line-height: 1.68; margin-bottom: 28px;
  font-size: 16px;
}
.gallery-preview-copy a {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600; font-size: 12px;
  letter-spacing: 0.10em; text-transform: uppercase;
  color: #fff; background: var(--ink);
  padding: 16px 28px; text-decoration: none;
  display: inline-block;
  transition: background 150ms;
}
.gallery-preview-copy a:hover { background: var(--primary); color: #fff; }
.gallery-preview-photo {
  grid-column: 2;
  position: relative; overflow: hidden;
  aspect-ratio: 4 / 3;
}
.gallery-preview-photo > img {
  width: 100%; height: 100%; object-fit: cover;
  max-height: none !important;
  filter: grayscale(20%) contrast(1.05);
}
.gallery-supergraphic {
  position: absolute; bottom: -16px; right: -16px;
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(80px, 12vw, 160px);
  font-weight: 900; text-transform: uppercase;
  color: var(--primary); opacity: 0.12;
  line-height: 1; pointer-events: none;
  z-index: 2;
}
@media (max-width: 900px) {
  .gallery-preview-inner { grid-template-columns: 1fr; }
  .gallery-preview-photo { grid-column: 1; }
}

/* ============================================================
   GALLERY SECTION (gallery.html)
   ============================================================ */
.gallery-section {
  background: var(--canvas);
  padding: clamp(48px, 6vw, 80px) 0 clamp(72px, 9vh, 112px);
}
.gallery-inner {
  max-width: 1360px; margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 56px);
}
.gallery-section-header {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 32px; gap: 16px;
}
.gallery-count {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--muted);
}
#gallery-grid.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.project-card {
  position: relative; overflow: hidden;
  background: var(--surface);
  display: flex; flex-direction: column;
}
.project-card-image {
  position: relative; overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--ink);
}
.project-card-image > img {
  width: 100%; height: 100%; object-fit: cover;
  max-height: none !important;
  transition: transform 400ms ease-out;
  filter: grayscale(15%) contrast(1.05);
}
.project-card:hover .project-card-image > img { transform: scale(1.04); }
.project-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--primary); color: #fff;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 4px 10px; z-index: 2;
}
.project-category-tag {
  position: absolute; bottom: 12px; right: 12px;
  background: rgba(12,12,15,0.75); color: rgba(255,255,255,0.90);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.10em; text-transform: uppercase;
  padding: 4px 10px; z-index: 2;
}
.project-card-body {
  padding: 20px 20px 24px;
  border: 1px solid var(--border);
  border-top: none; background: var(--canvas);
}
.project-card-body h2 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 15px; font-weight: 900;
  text-transform: uppercase; letter-spacing: -0.01em;
  color: var(--ink); margin-bottom: 8px; line-height: 1.1;
}
.project-location {
  display: flex; align-items: center; gap: 4px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; color: var(--muted);
  letter-spacing: 0.06em; margin-bottom: 8px;
}
.project-location svg { width: 14px; height: 14px; flex-shrink: 0; }
.project-desc {
  font-size: 13px; color: var(--muted); line-height: 1.5;
  margin-bottom: 12px;
}
.project-meta {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.project-meta-item {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--ink); background: var(--surface);
  padding: 4px 10px; border: 1px solid var(--border);
}
.project-meta-label { color: var(--muted); }
.project-meta-value { color: var(--primary); }
.no-results {
  display: none; text-align: center;
  padding: 80px 20px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px; color: var(--muted);
  letter-spacing: 0.08em; text-transform: uppercase;
}
.no-results.visible { display: block; }
@media (max-width: 900px) {
  #gallery-grid.gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  #gallery-grid.gallery-grid { grid-template-columns: 1fr; }
}

/* Gallery filter */
.gallery-filter {
  background: var(--canvas);
  border-bottom: 1px solid var(--border);
  position: sticky; top: var(--header-height); z-index: 800;
}
.gallery-filter-inner {
  max-width: 1360px; margin-inline: auto;
  padding: 14px clamp(20px, 4vw, 56px);
  display: flex; gap: 8px; flex-wrap: wrap;
}
.filter-pill {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600; font-size: 11px;
  letter-spacing: 0.10em; text-transform: uppercase;
  padding: 8px 16px; border-radius: 0;
  border: 1px solid var(--border-ink);
  background: none; color: var(--ink);
  cursor: pointer; transition: background 150ms, color 150ms;
}
.filter-pill:hover, .filter-pill.active {
  background: var(--ink); color: #fff;
}
.filter-pill.active { border-color: var(--ink); }

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  background: var(--canvas);
  padding: clamp(72px, 9vh, 112px) 0;
  border-top: 1px solid var(--border);
}
.faq-inner, .faq-header, .faq-list {
  max-width: 1360px; margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 56px);
}
.faq-header {
  display: flex; flex-direction: column; gap: 0;
  margin-bottom: 40px;
}
.faq-label, .faq-title {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600; font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--primary); margin-bottom: 12px; display: block;
}
.faq-header h2 {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(32px, 4vw, 60px);
  line-height: 0.92; letter-spacing: -0.02em;
  text-transform: uppercase; color: var(--ink);
}
.faq-intro {
  color: var(--muted); line-height: 1.68; max-width: 60ch;
  margin-top: 16px;
}
.faq-list { padding-top: 0; }
.faq-item {
  border-bottom: 1px solid var(--border-ink);
}
.faq-item:first-child { border-top: 1px solid var(--border-ink); }
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 0; cursor: pointer;
  list-style: none; gap: 24px;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-q-text, .faq-q {
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 600; font-size: clamp(15px, 1.6vw, 18px);
  color: var(--ink); line-height: 1.3; flex: 1;
}
.faq-chevron {
  flex-shrink: 0; width: 24px; height: 24px;
  color: var(--ink); transition: transform 220ms, color 150ms;
}
.faq-chevron svg { width: 24px; height: 24px; }
.faq-item[open] .faq-chevron { transform: rotate(45deg); color: var(--primary); }
.faq-answer, .faq-a {
  padding-bottom: 22px;
  color: var(--muted); line-height: 1.68; font-size: 16px;
  max-width: 72ch;
}
/* contact.html variant */
.faq-inner .faq-list details summary {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 0; cursor: pointer; list-style: none;
}
.faq-inner .faq-list details summary::-webkit-details-marker { display: none; }
.faq-inner .faq-list details .faq-a { padding-bottom: 20px; }
.faq-inner .faq-list details[open] .faq-chevron { transform: rotate(45deg); color: var(--primary); }
/* native details fallback */
details.faq { border-bottom: 1px solid var(--border); padding: 18px 0; }
details.faq > summary { cursor: pointer; font-weight: 600; list-style: none; display: flex; justify-content: space-between; align-items: center; }
details.faq > summary::-webkit-details-marker { display: none; }
details.faq > summary::after { content: "+"; font-weight: 300; transition: transform 200ms; }
details.faq[open] > summary::after { transform: rotate(45deg); color: var(--primary); }
details.faq p { margin-top: 12px; line-height: 1.6; }

/* ============================================================
   TEAM CTA
   ============================================================ */
.team-cta {
  background: var(--ink);
  padding: clamp(56px, 7vh, 80px) 0;
}
.team-cta-inner {
  max-width: 1360px; margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 56px);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 24px;
}
.team-cta-copy { flex: 1 1 auto; }
.team-cta-copy .section-eyebrow { color: var(--primary); }
.team-cta-text {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(22px, 3vw, 40px);
  font-weight: 900; text-transform: uppercase;
  letter-spacing: -0.02em; color: #fff;
  line-height: 1.0;
}
.team-cta-inner > a {
  flex-shrink: 0;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600; font-size: 12px;
  letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--ink); background: #fff;
  padding: 18px 32px; text-decoration: none;
  transition: background 150ms;
}
.team-cta-inner > a:hover { background: var(--primary); color: #fff; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  background: var(--surface);
  padding: clamp(72px, 9vh, 112px) 0;
}
.contact-inner {
  max-width: 1360px; margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 56px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: start;
}
.contact-form-col, .contact-form-side { grid-column: 1; }
.contact-info-col, .contact-info-side { grid-column: 2; }
.contact-form-col .section-eyebrow,
.contact-form-side .info-label,
.contact-form-side > span { display: block; margin-bottom: 12px; }
.contact-form-label {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600; font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--primary); display: block; margin-bottom: 12px;
}
.contact-form-col .section-heading,
.contact-form-side h2, .contact-form-side .info-title {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 3.5vw, 52px);
  line-height: 0.92; letter-spacing: -0.02em;
  text-transform: uppercase; color: var(--ink);
  margin-bottom: 32px;
}
.contact-form {
  display: flex; flex-direction: column; gap: 16px;
}
.form-group, .form-field, .form-field-full {
  display: flex; flex-direction: column-reverse; gap: 6px;
}
.form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.form-label, .field-label, .contact-form-label {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600; font-size: 10px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted);
}
.form-input, .form-textarea, .field-input, .field-textarea, .field-select,
.contact-form input, .contact-form textarea, .contact-form select,
.cta-banner-form input, .cta-banner-form textarea {
  width: 100%;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 15px; font-weight: 500;
  color: var(--ink); background: var(--canvas);
  border: 1px solid var(--border-ink);
  border-radius: 0; padding: 14px 16px;
  outline: none;
  transition: border-color 150ms;
  -webkit-appearance: none;
}
.form-input:focus, .form-textarea:focus, .field-input:focus,
.field-textarea:focus, .field-select:focus,
.contact-form input:focus, .contact-form textarea:focus,
.contact-form select:focus,
.cta-banner-form input:focus, .cta-banner-form textarea:focus {
  border-color: var(--primary);
}
.form-textarea, .field-textarea, .contact-form textarea,
.cta-banner-form textarea { min-height: 120px; resize: vertical; }
.form-submit-row {
  display: flex; flex-direction: column; gap: 10px;
  margin-top: 8px;
}
.form-note {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; letter-spacing: 0.08em;
  color: var(--muted); text-transform: uppercase;
}

/* contact info column */
.contact-block {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.contact-block-label {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600; font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 8px;
}
.contact-phone-link, .contact-link {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 900; letter-spacing: -0.01em;
  color: var(--ink); text-decoration: none;
  transition: color 150ms;
}
.contact-phone-link:hover, .contact-link:hover { color: var(--primary); }
.contact-address { color: var(--muted); line-height: 1.6; font-size: 15px; }
.contact-service-area { color: var(--muted); font-size: 14px; line-height: 1.6; }
.contact-rating-block { padding-top: 24px; display: flex; align-items: center; gap: 12px; }
.contact-stars { display: flex; gap: 2px; }
.contact-stars svg { width: 18px; height: 18px; color: var(--primary); }
.contact-rating-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--muted);
}

/* info block (contact.html) */
.info-label {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600; font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--primary); display: block; margin-bottom: 12px;
}
.info-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(24px, 3vw, 42px);
  font-weight: 900; text-transform: uppercase;
  letter-spacing: -0.02em; color: var(--ink);
  margin-bottom: 28px; line-height: 0.92;
}
.info-block { padding: 20px 0; border-bottom: 1px solid var(--border); }
.info-block-heading {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600; font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 8px;
}
.info-link {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(16px, 2vw, 24px);
  font-weight: 900; color: var(--ink);
  text-decoration: none; display: flex; align-items: center; gap: 8px;
  transition: color 150ms;
}
.info-link:hover { color: var(--primary); }
.info-icon, svg.info-icon { width: 20px; height: 20px; flex-shrink: 0; }
.info-address { color: var(--muted); line-height: 1.6; }
.info-hours { color: var(--muted); line-height: 1.7; font-size: 14px; }
.info-service-areas { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.area-chip {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.10em; text-transform: uppercase;
  padding: 5px 10px; border: 1px solid var(--border-ink);
  color: var(--ink);
}
.info-socials { display: flex; gap: 12px; padding: 20px 0; }
.social-link {
  width: 40px; height: 40px;
  border: 1px solid var(--border-ink);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink); text-decoration: none;
  transition: background 150ms, color 150ms;
}
.social-link:hover { background: var(--primary); border-color: var(--primary); color: #fff; }
.social-link svg { width: 18px; height: 18px; }

@media (max-width: 900px) {
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .contact-form-col, .contact-form-side { grid-column: 1; }
  .contact-info-col, .contact-info-side { grid-column: 1; }
  .form-row { grid-template-columns: 1fr; }
}

/* ============================================================
   CTA BANNER (services.html / gallery.html / about.html)
   ============================================================ */
.cta-banner {
  background: var(--ink);
  padding: clamp(72px, 9vh, 112px) 0;
}
.cta-banner-inner {
  max-width: 1360px; margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 56px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: start;
}
.cta-banner-text { grid-column: 1; }
.cta-banner-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600; font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--primary); display: block; margin-bottom: 16px;
}
.cta-banner-title {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(32px, 4.5vw, 72px);
  line-height: 0.92; letter-spacing: -0.02em;
  text-transform: uppercase; color: #fff;
  margin-bottom: 20px;
}
.cta-banner-sub {
  color: rgba(255,255,255,0.65); line-height: 1.6; font-size: 16px;
  margin-bottom: 28px;
}
.cta-banner-phone, .cta-banner-email {
  display: block;
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(14px, 1.8vw, 20px);
  font-weight: 900; color: #fff;
  text-decoration: none; margin-bottom: 8px;
  transition: color 150ms;
}
.cta-banner-phone:hover, .cta-banner-email:hover { color: var(--primary); }
.cta-banner-actions {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-top: 28px;
}
.cta-banner-actions a {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600; font-size: 12px;
  letter-spacing: 0.10em; text-transform: uppercase;
  padding: 18px 32px; text-decoration: none;
  transition: background 150ms, color 150ms;
}
.cta-banner-actions a:first-child { background: var(--primary); color: #fff; }
.cta-banner-actions a:first-child:hover { background: var(--primary-dark); }
.cta-banner-actions a:last-child { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.4); }
.cta-banner-actions a:last-child:hover { border-color: #fff; }
/* when cta-banner contains form (services.html) */
.cta-banner-form {
  display: flex; flex-direction: column; gap: 12px;
  background: rgba(255,255,255,0.05);
  padding: 32px; border: 1px solid rgba(255,255,255,0.12);
}
.cta-banner-form input, .cta-banner-form textarea {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.20);
  color: #fff;
}
.cta-banner-form input::placeholder, .cta-banner-form textarea::placeholder {
  color: rgba(255,255,255,0.40);
}
.cta-banner-form input:focus, .cta-banner-form textarea:focus {
  border-color: var(--primary);
}
/* cta-btns (about.html) */
.cta-btns {
  display: flex; flex-wrap: wrap; gap: 12px;
}
@media (max-width: 900px) {
  .cta-banner-inner { grid-template-columns: 1fr; gap: 40px; }
  .cta-banner-text { grid-column: 1; }
}

/* ============================================================
   PAGE HEADER (sub-pages)
   ============================================================ */
.page-header {
  min-height: clamp(260px, 40vh, 460px);
  display: flex; flex-direction: column; justify-content: flex-end;
  background: var(--ink);
}
.page-header-overlay {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(160deg, rgba(12,12,15,0.75) 0%, rgba(12,12,15,0.45) 100%);
}
.page-header-inner {
  position: relative; z-index: 2;
  max-width: 1360px; margin-inline: auto; width: 100%;
  padding: clamp(40px, 6vw, 72px) clamp(20px, 4vw, 56px);
}
.page-header-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600; font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--primary); display: block; margin-bottom: 14px;
}
.page-header-title {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(40px, 6vw, 96px);
  line-height: 0.90; letter-spacing: -0.02em;
  text-transform: uppercase; color: #fff;
  max-width: 18ch; margin-bottom: 14px;
}
.page-header-sub {
  color: rgba(255,255,255,0.72); font-size: 16px; line-height: 1.6;
  max-width: 52ch;
}

/* ============================================================
   FOUNDER / ABOUT
   ============================================================ */
.founder-story {
  background: var(--canvas);
  padding: clamp(72px, 9vh, 112px) 0;
}
.founder-story-inner {
  max-width: 1360px; margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 56px);
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 72px; align-items: start;
}
.founder-portrait { grid-column: 1; position: relative; }
.founder-portrait > img {
  width: 100%; aspect-ratio: 3 / 4; object-fit: cover;
  filter: grayscale(20%) contrast(1.05);
  max-height: 560px;
}
.founder-portrait-cap {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); margin-top: 10px;
}
.founder-text { grid-column: 2; }
.founder-text-eyebrow { color: var(--primary); margin-bottom: 16px; display: block; }
.founder-text h2 {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 3.5vw, 52px);
  line-height: 0.92; letter-spacing: -0.02em;
  text-transform: uppercase; color: var(--ink);
  margin-bottom: 24px;
}
.founder-text p {
  color: var(--muted); line-height: 1.68; margin-bottom: 16px; font-size: 16px;
}
.creds-block { margin-top: 28px; }
.creds-label {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600; font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 12px; display: block;
}
.creds-list { display: flex; flex-direction: column; gap: 8px; }
.cred-row {
  display: flex; gap: 16px; align-items: baseline;
  padding: 8px 0; border-bottom: 1px solid var(--border);
}
.cred-year {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600; font-size: 11px;
  color: var(--primary); letter-spacing: 0.08em;
  flex-shrink: 0;
}
.cred-name {
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 600; font-size: 14px; color: var(--ink);
}
@media (max-width: 900px) {
  .founder-story-inner { grid-template-columns: 1fr; gap: 40px; }
  .founder-portrait { grid-column: 1; }
  .founder-text { grid-column: 1; }
}

/* VALUES */
.values-section {
  background: var(--surface);
  padding: clamp(72px, 9vh, 112px) 0;
  border-top: 1px solid var(--border);
}
.values-inner {
  max-width: 1360px; margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 56px);
}
.values-inner > h2 {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(32px, 4vw, 60px);
  line-height: 0.92; letter-spacing: -0.02em;
  text-transform: uppercase; color: var(--ink);
  margin-bottom: 40px;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.value-card {
  background: var(--canvas);
  padding: 32px; border: 1px solid var(--border);
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}
.value-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -16px rgba(0,0,0,0.14);
}
.value-num {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 900; color: var(--primary);
  line-height: 1; margin-bottom: 16px;
  letter-spacing: -0.03em;
}
.value-card h3 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 16px; font-weight: 900;
  text-transform: uppercase; letter-spacing: -0.01em;
  color: var(--ink); margin-bottom: 10px;
}
.value-body { color: var(--muted); line-height: 1.6; font-size: 14px; }
@media (max-width: 900px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .values-grid { grid-template-columns: 1fr; }
}

/* TIMELINE */
.timeline-section {
  background: var(--canvas);
  padding: clamp(72px, 9vh, 112px) 0;
  border-top: 1px solid var(--border);
}
.timeline-inner {
  max-width: 1360px; margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 56px);
}
.timeline-inner > h2 {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(32px, 4vw, 60px);
  line-height: 0.92; letter-spacing: -0.02em;
  text-transform: uppercase; color: var(--ink);
  margin-bottom: 48px;
}
.timeline-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 2px solid var(--border-ink);
}
.timeline-step {
  padding: 32px 28px;
  border-right: 1px solid var(--border);
  position: relative;
}
.timeline-step:last-child { border-right: none; }
.timeline-dot {
  width: 16px; height: 16px;
  border: 2px solid var(--primary);
  position: absolute; top: -9px; left: 28px;
  background: var(--canvas);
  display: flex; align-items: center; justify-content: center;
}
.timeline-dot-core {
  width: 6px; height: 6px;
  background: var(--primary);
}
.timeline-year {
  font-family: 'Archivo Black', sans-serif;
  font-size: 13px; font-weight: 900;
  color: var(--primary); letter-spacing: 0.04em;
  margin-bottom: 8px; display: block;
}
.timeline-step h3 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 15px; font-weight: 900;
  text-transform: uppercase; color: var(--ink);
  margin-bottom: 8px;
}
.timeline-desc { color: var(--muted); font-size: 13px; line-height: 1.6; }
@media (max-width: 900px) {
  .timeline-list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .timeline-list { grid-template-columns: 1fr; }
  .timeline-step { border-right: none; border-bottom: 1px solid var(--border); }
}

/* CREW STRIP */
.crew-strip {
  background: var(--surface);
  padding: clamp(72px, 9vh, 112px) 0;
  border-top: 1px solid var(--border);
}
.crew-inner {
  max-width: 1360px; margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 56px);
}
.crew-inner > h2 {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(32px, 4vw, 60px);
  line-height: 0.92; letter-spacing: -0.02em;
  text-transform: uppercase; color: var(--ink);
  margin-bottom: 32px;
}
.crew-photo-wrap {
  position: relative; overflow: hidden;
  width: 100%; max-height: 500px;
}
.crew-photo-wrap > img {
  width: 100%; max-height: 500px; object-fit: cover;
  object-position: center top;
  filter: grayscale(15%) contrast(1.05);
}

/* ABOUT SECTION (about.html bottom) */
.about-section {
  background: var(--canvas);
  padding: clamp(72px, 9vh, 112px) 0;
  border-top: 1px solid var(--border);
}
.about-inner {
  max-width: 1360px; margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 56px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: start;
}
.about-left { grid-column: 1; }
.about-right { grid-column: 2; }
.about-left-super {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(80px, 12vw, 160px);
  font-weight: 900; text-transform: uppercase;
  color: var(--primary); opacity: 0.12;
  line-height: 1; letter-spacing: -0.04em;
  margin-bottom: -24px;
}
.about-left-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600; font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--primary); display: block; margin-bottom: 12px;
}
.about-left h2 {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(32px, 4vw, 60px);
  line-height: 0.92; letter-spacing: -0.02em;
  text-transform: uppercase; color: var(--ink);
}
.about-right p {
  color: var(--muted); line-height: 1.68; margin-bottom: 16px;
}
.about-cta-link, .about-right > a {
  display: inline-block;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600; font-size: 12px;
  letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--primary);
  border-bottom: 2px solid var(--primary);
  padding-bottom: 2px;
  text-decoration: none; margin-top: 8px;
  transition: color 150ms;
}
.about-cta-link:hover { color: var(--primary-dark); }
@media (max-width: 900px) {
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-left { grid-column: 1; }
  .about-right { grid-column: 1; }
}

/* ============================================================
   MOBILE CALL BUTTONS
   ============================================================ */
.mobile-cta-pill, .mobile-call-fab, .mobile-sticky-cta a {
  position: fixed; bottom: 18px; right: 18px; z-index: 999;
  background: var(--primary); color: #fff;
  padding: 14px 22px; border-radius: 999px;
  box-shadow: 0 18px 40px -10px rgba(0,0,0,0.45);
  display: flex; align-items: center; gap: 8px;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600; font-size: 12px;
  letter-spacing: 0.08em; text-transform: uppercase;
  text-decoration: none; white-space: nowrap;
  transition: background 150ms, transform 150ms;
}
.mobile-cta-pill:hover, .mobile-call-fab:hover, .mobile-sticky-cta a:hover {
  background: var(--primary-dark); transform: translateY(-2px);
}
.mobile-cta-pill svg, .mobile-call-fab svg { width: 18px; height: 18px; flex-shrink: 0; }
.mobile-sticky-cta { display: none; }
.mobile-call { display: none; }
@media (min-width: 900px) {
  .mobile-cta-pill { display: none; }
  .mobile-call-fab { display: none; }
  .mobile-sticky-cta { display: none; }
  .mobile-call { display: none; }
}
@media (max-width: 899px) {
  .mobile-sticky-cta { display: block; }
  .mobile-call { display: block; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.72);
  padding: clamp(56px, 7vh, 80px) 0 0;
}
.footer-inner, .footer-grid {
  max-width: 1360px; margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 56px);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: clamp(48px, 6vw, 72px);
}
.footer-brand, .footer-brand-col { grid-column: 1; }
.footer-brand p, .footer-brand-col p { margin-bottom: 8px; }
.footer-brand-name {
  font-family: 'Archivo Black', sans-serif;
  font-size: 16px; font-weight: 900;
  text-transform: uppercase; color: #fff;
  letter-spacing: -0.01em; margin-bottom: 8px; display: block;
}
.footer-tagline {
  font-size: 13px; color: rgba(255,255,255,0.55);
  line-height: 1.6; margin-bottom: 20px;
  max-width: 28ch;
}
.footer-brand-phone, .footer-contact-line, .footer-contact-row {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.65); font-size: 13px;
  text-decoration: none; margin-bottom: 8px;
  transition: color 150ms;
}
.footer-contact-line svg, .footer-contact-row svg { width: 16px; height: 16px; flex-shrink: 0; }
.footer-contact-line:hover, .footer-contact-row a:hover { color: var(--primary); }
.footer-contact-item {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.65); font-size: 13px;
  margin-bottom: 8px; text-decoration: none;
}
.footer-contact-item svg { width: 16px; height: 16px; }
.footer-col { }
.footer-col-heading, .footer-col-title, .footer-col-head {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600; font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.35); margin-bottom: 16px; display: block;
}
.footer-links, .footer-creds {
  display: flex; flex-direction: column; gap: 8px;
}
.footer-links a {
  font-size: 14px; color: rgba(255,255,255,0.65);
  text-decoration: none; transition: color 150ms;
  display: block; padding: 2px 0;
}
.footer-links a:hover { color: var(--primary); }
.footer-cred {
  font-size: 13px; color: rgba(255,255,255,0.60); line-height: 1.4;
}
.footer-address {
  color: rgba(255,255,255,0.55); font-size: 13px;
  line-height: 1.6; margin-top: 16px;
}
.footer-info p { font-size: 13px; color: rgba(255,255,255,0.60); line-height: 1.8; }
.footer-info a { color: rgba(255,255,255,0.65); text-decoration: none; transition: color 150ms; }
.footer-info a:hover { color: var(--primary); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px clamp(20px, 4vw, 56px);
  max-width: 1360px; margin-inline: auto; width: 100%;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 8px;
}
.footer-copy, .footer-copyright {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; color: rgba(255,255,255,0.35);
  letter-spacing: 0.06em;
}
.footer-legal, .footer-legal-links {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; color: rgba(255,255,255,0.30);
  letter-spacing: 0.06em; display: flex; gap: 16px;
}
.footer-legal-links a { color: rgba(255,255,255,0.35); text-decoration: none; }
.footer-legal-links a:hover { color: var(--primary); }
.footer-email, .footer-phone {
  color: rgba(255,255,255,0.65); font-size: 13px;
  text-decoration: none; display: block; margin-bottom: 6px;
}
.footer-email:hover, .footer-phone:hover { color: var(--primary); }
@media (max-width: 900px) {
  .footer-inner, .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand, .footer-brand-col { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .footer-inner, .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   ANIMATION UTILITIES
   ============================================================ */
.fade-up   { opacity: 0; transform: translateY(28px); transition: opacity 600ms ease-out, transform 600ms ease-out; }
.fade-left { opacity: 0; transform: translateX(-28px); transition: opacity 600ms ease-out, transform 600ms ease-out; }
.fade-right{ opacity: 0; transform: translateX(28px); transition: opacity 600ms ease-out, transform 600ms ease-out; }
.scale-in  { opacity: 0; transform: scale(0.94); transition: opacity 500ms ease-out, transform 500ms ease-out; }
.stagger   { opacity: 0; transform: translateY(20px); transition: opacity 500ms ease-out, transform 500ms ease-out; }

.fade-up.visible, .fade-left.visible, .fade-right.visible,
.scale-in.visible, .stagger.visible {
  opacity: 1; transform: none;
}

/* ============================================================
   SERVICE CARD HOVER (index)
   ============================================================ */
.service-card { transition: transform 250ms ease-out, box-shadow 250ms ease-out; }
.service-card:hover { box-shadow: 0 18px 40px -16px rgba(0,0,0,0.28); }

/* ============================================================
   ACCENT CLASS
   ============================================================ */
.accent { color: var(--primary); }

/* ============================================================
   MARQUEE (thin strip — fallback if HTML includes one)
   ============================================================ */
.marquee {
  overflow: hidden; padding: 14px 0;
  border-top: 1px solid var(--border-ink);
  border-bottom: 1px solid var(--border-ink);
  max-height: 64px; position: relative; z-index: 1;
  background: var(--canvas);
}
.marquee-track {
  display: flex; gap: 48px; white-space: nowrap;
  animation: marquee 35s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: clamp(13px, 1.4vw, 18px); line-height: 1.2;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   STATS (if present)
   ============================================================ */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 32px; padding: 80px 0; text-align: center; }
.stat-num { font-size: clamp(48px, 8vw, 96px); font-weight: 900; line-height: 1; color: var(--primary); font-family: 'Archivo Black', sans-serif; }
.stat-label { font-size: clamp(11px, 1vw, 14px); text-transform: uppercase; letter-spacing: 0.16em; color: var(--muted); margin-top: 8px; font-family: 'IBM Plex Mono', monospace; font-weight: 600; }

/* ============================================================
   PROCESS (if present)
   ============================================================ */
.process { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 32px; }
.process-step { padding: 24px; border: 1px solid var(--border); }
.step-num { font-size: 14px; font-weight: 700; color: var(--primary); margin-bottom: 12px; letter-spacing: 0.12em; font-family: 'IBM Plex Mono', monospace; }

/* ============================================================
   REVIEW CARD (if present)
   ============================================================ */
.review-card { padding: 28px; border: 1px solid var(--border); background: var(--surface-2); }
.review-stars svg { color: var(--primary); width: 18px; height: 18px; }
.review-quote { font-size: 17px; line-height: 1.55; margin: 14px 0; }
.review-attribution { font-size: 13px; color: var(--muted); opacity: 0.75; }

/* ============================================================
   MISC UTILITY
   ============================================================ */
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.bleed { width: 100%; max-width: none; }
/* Cap unsized SVGs in general */
svg { overflow: visible; }
.info-icon { width: 20px; height: 20px; }
.project-location svg, svg.faq-chevron { width: 18px; height: 18px; display: inline-block; flex-shrink: 0; }
.footer-contact-row svg, .footer-contact-line svg, .footer-contact-item svg { width: 16px; height: 16px; }
.service-block-cta svg { width: 16px; height: 16px; }
/* Thead table guard */
thead .col-service, thead .col-desc, thead .col-timeline, thead .col-price { background: var(--ink); color: #fff; }


/* === Validator patches (auto-applied) === */
/* validator patch: grid children without placement → span full row */
.service-card { grid-column: 1 / -1; }
.footer-col { grid-column: 1 / -1; }
.service-block-photo { grid-column: 1 / -1; }
.service-block-body { grid-column: 1 / -1; }
.footer-info { grid-column: 1 / -1; }
.no-results { grid-column: 1 / -1; }
.cta-banner-actions { grid-column: 1 / -1; }
.cta-banner-eyebrow { grid-column: 1 / -1; }
.cta-banner-title { grid-column: 1 / -1; }
.cta-banner-phone { grid-column: 1 / -1; }
.cta-btns { grid-column: 1 / -1; }
.form-field { grid-column: 1 / -1; }
/* validator patch: hero must never crop its headline */
#hero, .hero { overflow: visible !important; }
:where(#hero, .hero) { padding-top: max(var(--header-height, 72px), 72px); }
/* validator patch: keep the hero photo visible, no smothering dark band */
.hero-overlay { background: linear-gradient(to top, rgba(0,0,0,0.66), rgba(0,0,0,0.34) 38%, rgba(0,0,0,0.12) 68%, rgba(0,0,0,0) 100%), linear-gradient(to right, rgba(0,0,0,0.30), rgba(0,0,0,0) 58%) !important; }
