@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:        #245414;
  --accent:         #406330;
  --primary-dark:   #1a3d0e;
  --primary-light:  #2f6e1a;
  --canvas:         #FFFFFF;
  --surface:        #F2F0EB;
  --ink:            #0C0C0F;
  --muted:          #5A5852;
  --border:         rgba(12,12,15,0.14);
  --border-ink:     #0C0C0F;
  --header-height:  72px;
}

@media (max-width: 900px) {
  :root { --header-height: 60px; }
}

/* ============================================================
   RESET & GLOBAL
   ============================================================ */
*, *::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.65;
  -webkit-font-smoothing: antialiased;
}

/* 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: 48px !important;
  max-width: 200px !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 anchors — never render as links */
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;
}

.label, .section-eyebrow, .info-label, .info-block-label,
.footer-col-title, .footer-contact-label {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============================================================
   LINKS & BUTTONS
   ============================================================ */
a { color: inherit; text-decoration: none; transition: color 150ms; }
a:hover { color: var(--primary); text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 4px; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 18px 32px;
  border-radius: 0;
  border: none;
  cursor: pointer;
  text-decoration: none;
  line-height: 1;
  transition: filter 180ms, background 180ms, color 180ms;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-primary {
  background: var(--primary);
  color: #fff;
}
.btn-primary:hover { filter: brightness(0.88); color: #fff; text-decoration: none; }

.btn-phone {
  background: var(--canvas);
  color: var(--ink);
  border: 2px solid var(--ink);
}
.btn-phone:hover { background: var(--ink); color: var(--canvas); text-decoration: none; }

.btn-white {
  background: var(--canvas);
  color: var(--ink);
  border: 2px solid var(--canvas);
}
.btn-white:hover { background: transparent; color: var(--canvas); text-decoration: none; }

.btn-ghost-white {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.btn-ghost-white:hover { background: #fff; color: var(--ink); text-decoration: none; }

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.6);
  padding: 14px 24px;
  font-size: 14px;
}
.btn-outline-white:hover { border-color: #fff; text-decoration: none; }

.btn-submit {
  background: var(--primary);
  color: #fff;
  width: 100%;
  justify-content: center;
  padding: 18px 32px;
  font-size: 15px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  border-radius: 0;
  transition: filter 180ms;
}
.btn-submit:hover { filter: brightness(0.88); }

/* ============================================================
   LAYOUT CONTAINERS
   ============================================================ */
.section-inner, .trust-strip-inner, .contact-split-inner,
.services-list-inner, .gallery-inner, .team-cta-inner,
.claim-band-inner, .ba-inner, .stat-strip-inner,
.footer-inner, .footer-grid {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
}

.section-canvas { background: var(--canvas); }
.section-surface { background: var(--surface); }

/* ============================================================
   PROGRESS BAR
   ============================================================ */
#progress-bar, #scrollProgress, .scroll-progress, #scrollBar, .scroll-bar, #scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: var(--primary);
  z-index: 9999;
  transition: width 100ms 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.1);
}

.top-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
  height: var(--header-height);
}

.nav-logo {
  flex: 0 0 auto;
  text-decoration: none;
}
.nav-logo:hover { text-decoration: none; color: inherit; }

.nav-pages {
  flex: 1;
  display: flex;
  justify-content: center;
  list-style: none;
  gap: 28px;
  align-items: center;
}
.nav-pages li { list-style: none; }
.nav-pages a {
  display: inline-block;
  padding: 6px 0;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color 150ms;
}
.nav-pages a:hover { color: var(--primary); text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 6px; }
.nav-pages a[aria-current="page"] { color: var(--primary); border-bottom: 2px solid var(--primary); padding-bottom: 4px; text-decoration: none; }

.nav-cta {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  padding: 10px 20px;
  border-radius: 0;
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
  text-decoration: none;
  transition: filter 180ms;
}
.nav-cta:hover { filter: brightness(0.88); color: #fff; text-decoration: none; }
.nav-cta svg { width: 16px; height: 16px; flex-shrink: 0; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--ink);
  font-size: 24px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nav-toggle svg { width: 24px; height: 24px; }

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-cta span { display: none; }
  .nav-cta { padding: 10px 12px; }

  .nav-pages {
    display: none;
    flex-direction: column;
    position: absolute;
    top: var(--header-height);
    left: 0; right: 0;
    background: var(--canvas);
    padding: 24px clamp(20px, 4vw, 56px);
    gap: 8px;
    border-bottom: 1px solid var(--border);
    justify-content: flex-start;
    align-items: flex-start;
    z-index: 800;
  }
  .nav-pages.open { display: flex; }
  .nav-pages a { font-size: 16px; padding: 12px 0; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
}

.hero-overlay {
  background: linear-gradient(
    165deg,
    rgba(12,12,15,0.82) 0%,
    rgba(36,84,20,0.55) 60%,
    rgba(36,84,20,0.2) 100%
  );
}

.hero-inner {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: clamp(48px, 7vw, 96px) clamp(20px, 4vw, 56px) clamp(56px, 7vw, 96px);
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hero-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
}

.hero-title {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(64px, 8.5vw, 132px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #fff;
  max-width: 18ch;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  max-width: 48ch;
  line-height: 1.55;
  margin-bottom: 36px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}

.hero-divider {
  width: 40px;
  height: 2px;
  background: rgba(255,255,255,0.35);
  margin-bottom: 24px;
}

.hero-trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  list-style: none;
  border: 1px solid rgba(255,255,255,0.35);
  width: fit-content;
}

.trust-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  border-right: 1px solid rgba(255,255,255,0.25);
}
.trust-chip:last-child { border-right: none; }
.trust-chip svg, .trust-chip-star svg { width: 14px; height: 14px; color: var(--primary-light); }
.trust-chip-star { color: #8fc96e; }

@media (max-width: 640px) {
  .hero { min-height: 88vh; }
  .hero-trust-chips { flex-direction: column; border: none; gap: 8px; }
  .trust-chip { border: 1px solid rgba(255,255,255,0.3); border-right: 1px solid rgba(255,255,255,0.3); width: fit-content; }
}

/* ============================================================
   TRUST STRIP (standalone section)
   ============================================================ */
.trust-strip {
  background: var(--surface);
  border-top: 1px solid var(--border-ink);
  border-bottom: 1px solid var(--border-ink);
  padding: 24px 0;
}

.trust-strip-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border: 2px solid var(--ink);
  border-right: none;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--canvas);
  white-space: nowrap;
}
.trust-badge:last-child { border-right: 2px solid var(--ink); }
.trust-badge svg, .trust-badge-star { width: 16px; height: 16px; color: var(--primary); }

@media (max-width: 900px) {
  .trust-badge { padding: 10px 14px; font-size: 10px; }
}
@media (max-width: 640px) {
  .trust-strip-inner { gap: 8px; }
  .trust-badge { border: 2px solid var(--ink); border-right: 2px solid var(--ink); flex: 1 1 calc(50% - 4px); }
}

/* ============================================================
   CLAIM BAND (the brutalist type band unique move)
   ============================================================ */
.claim-band {
  background: var(--primary);
  padding: clamp(48px, 6vh, 80px) 0;
  overflow: hidden;
}

.claim-band-inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
}

.claim-band-text, .claim-band-inner > p,
.claim-band-inner h2 {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(48px, 7vw, 120px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #fff;
  max-width: 22ch;
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services {
  background: var(--canvas);
  padding: clamp(72px, 9vh, 112px) 0;
}

.services-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.services-header h2, .section-title {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--ink);
}

.services-all-link {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  border-bottom: 2px solid var(--primary);
  padding-bottom: 2px;
  white-space: nowrap;
}

.services-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--ink);
}

.service-card {
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: var(--canvas);
  text-decoration: none;
  color: var(--ink);
  transition: transform 250ms ease-out, box-shadow 250ms ease-out, background 200ms;
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  background: var(--surface);
  text-decoration: none;
  transform: none;
  box-shadow: none;
  z-index: 2;
  outline: 2px solid var(--primary);
  outline-offset: -2px;
}
.service-card:nth-child(3n) { border-right: none; }
.service-card:nth-last-child(-n+3) { border-bottom: none; }

.service-card-flagship {
  grid-column: span 2;
}
.service-card-flagship .service-card-img-wrap { min-height: 280px; }

.service-card-img-wrap {
  width: 100%;
  min-height: 200px;
  overflow: hidden;
  flex-shrink: 0;
}
.service-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 200px;
  max-height: 360px;
  transition: transform 400ms ease;
  filter: grayscale(20%);
}
.service-card:hover .service-card-img-wrap img { transform: scale(1.03); filter: grayscale(0%); }

.service-card-body {
  padding: 24px 28px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.service-card-body h3 {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(18px, 2vw, 24px);
  letter-spacing: -0.01em;
  text-transform: uppercase;
  line-height: 1.0;
  color: var(--ink);
  margin-bottom: 12px;
  padding-right: 32px;
}

.service-card-num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--primary);
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

.service-card-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
  flex: 1;
  margin-bottom: 16px;
}

.service-card-link {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-top: auto;
}

@media (max-width: 900px) {
  .services-bento { grid-template-columns: repeat(2, 1fr); }
  .service-card-flagship { grid-column: span 2; }
  .service-card:nth-child(3n) { border-right: 1px solid var(--ink); }
  .service-card:nth-child(2n) { border-right: none; }
}
@media (max-width: 640px) {
  .services-bento { grid-template-columns: 1fr; }
  .service-card-flagship, .service-card { grid-column: span 1; }
  .service-card { border-right: none; }
}

/* ============================================================
   GALLERY PREVIEW (homepage)
   ============================================================ */
.gallery-preview {
  background: var(--ink);
  padding: clamp(72px, 9vh, 112px) 0;
}

.gallery-preview .section-eyebrow { color: rgba(255,255,255,0.5); }

.gallery-feature {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 0;
  border: 1px solid rgba(255,255,255,0.15);
  margin-top: 40px;
}

.gallery-feature-img {
  overflow: hidden;
  min-height: 480px;
}
.gallery-feature-img img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  max-height: 600px;
  object-fit: cover;
  filter: grayscale(15%);
  transition: transform 500ms ease;
}
.gallery-feature:hover .gallery-feature-img img { transform: scale(1.03); }

.gallery-feature-info {
  background: var(--primary);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-left: 1px solid rgba(255,255,255,0.15);
}

.gallery-feature-info .section-eyebrow { color: rgba(255,255,255,0.6); margin-bottom: 16px; }

.big-num {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(72px, 10vw, 120px);
  line-height: 0.85;
  letter-spacing: -0.03em;
  color: rgba(255,255,255,0.25);
  text-transform: uppercase;
}

.gallery-feature-info p {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  margin-bottom: 28px;
}

@media (max-width: 900px) {
  .gallery-feature { grid-template-columns: 1fr; }
  .gallery-feature-info { border-left: none; border-top: 1px solid rgba(255,255,255,0.15); padding: 36px 28px; }
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews {
  background: var(--surface);
  padding: clamp(72px, 9vh, 112px) 0;
}

.reviews .section-inner > h2,
.reviews .section-inner > .section-eyebrow + h2 {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 56px;
  margin-top: 16px;
}

.section-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 12px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border-ink);
}

.review-card {
  padding: 36px 32px;
  border-right: 1px solid var(--border-ink);
  border-bottom: 1px solid var(--border-ink);
  background: var(--canvas);
}
.review-card:last-child { border-right: none; }
.review-card-featured {
  grid-column: span 1;
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--ink);
  padding: 0;
}
.review-card-featured .review-inner {
  padding: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  flex: 1;
}
.review-card-featured .review-inner:last-child { border-bottom: none; }
.review-card-featured .review-quote { color: rgba(255,255,255,0.9); }
.review-card-featured .review-attribution { color: rgba(255,255,255,0.55); }

.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}
.review-stars svg { width: 16px; height: 16px; color: var(--primary); fill: var(--primary); }

.review-quote {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 16px;
  font-style: italic;
}

.review-attribution {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
}

.review-verified {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  display: block;
  margin-top: 8px;
}

@media (max-width: 900px) {
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .review-card-featured { grid-column: span 2; flex-direction: row; }
  .review-card-featured .review-inner { border-bottom: none; border-right: 1px solid rgba(255,255,255,0.12); }
  .review-card-featured .review-inner:last-child { border-right: none; }
}
@media (max-width: 640px) {
  .reviews-grid { grid-template-columns: 1fr; }
  .review-card, .review-card-featured { grid-column: span 1; border-right: none; }
  .review-card-featured { flex-direction: column; }
  .review-card-featured .review-inner { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  background: var(--canvas);
  padding: clamp(72px, 9vh, 112px) 0;
}

.faq .section-inner > h2 {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 56px;
  margin-top: 16px;
  max-width: 20ch;
}

.faq-list {
  border-top: 1px solid var(--border-ink);
}

.faq-list details {
  border-bottom: 1px solid var(--border-ink);
}

.faq-list details summary {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 700;
  font-size: clamp(15px, 1.6vw, 18px);
  color: var(--ink);
  list-style: none;
  gap: 16px;
}
.faq-list details summary::-webkit-details-marker { display: none; }

.faq-chevron {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid var(--ink);
  transition: background 200ms, border-color 200ms;
}
.faq-chevron svg { width: 16px; height: 16px; transition: transform 200ms, color 200ms; }
details[open] .faq-chevron { background: var(--primary); border-color: var(--primary); }
details[open] .faq-chevron svg { transform: rotate(45deg); color: #fff; }

.faq-body {
  padding: 0 0 24px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 72ch;
}

/* ============================================================
   TEAM CTA
   ============================================================ */
.team-cta {
  background: var(--primary);
  padding: clamp(72px, 9vh, 112px) 0;
}

.team-cta-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.team-cta-inner > p {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(32px, 4.5vw, 64px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #fff;
  max-width: 24ch;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  background: var(--surface);
  padding: clamp(72px, 9vh, 112px) 0;
}

.contact-split {
  background: var(--canvas);
  padding: clamp(72px, 9vh, 112px) 0;
}

.contact-split-inner {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 80px;
  align-items: start;
}

.contact-form-col h2, .contact-form-col > h2 {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 36px;
  margin-top: 8px;
}

.contact-form-col .section-eyebrow { margin-bottom: 12px; }

.contact-form, form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.form-group {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border-ink);
  border-bottom: none;
  border-right: none;
  padding: 14px 18px 10px;
  background: var(--canvas);
  position: relative;
}
.form-row .form-group:first-child { border-right: none; }
.form-row .form-group:last-child { border-left: none; }
.form-group.full-width { border-right: none; }
.form-group:last-of-type { border-bottom: 1px solid var(--border-ink); }

.form-group label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  border: none;
  outline: none;
  background: transparent;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  padding: 0;
  resize: none;
  width: 100%;
}
.form-group input:focus ~ label,
.form-group textarea:focus ~ label { color: var(--primary); }

.form-group textarea { min-height: 120px; }

.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.info-block {
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.info-block:last-child { border-bottom: none; }

.info-block-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 8px;
}

.info-block a {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(20px, 2.5vw, 28px);
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
}
.info-block a:hover { color: var(--primary); text-decoration: none; }

.info-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 6px;
}

.info-value {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.6;
}

.info-divider {
  height: 1px;
  background: var(--border);
}

.info-phone-big, .cta-phone-big {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(24px, 3vw, 40px);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
}

.service-area-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.area-pill {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 10px;
  border: 1px solid var(--border);
  color: var(--muted);
}

.socials, .social-links { display: flex; gap: 12px; margin-top: 12px; }

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--border-ink);
  color: var(--ink);
  transition: background 200ms, color 200ms;
}
.social-link:hover { background: var(--ink); color: #fff; text-decoration: none; }
.social-link svg { width: 16px; height: 16px; }

.cta-strip {
  background: var(--primary);
  padding: 20px 24px;
  margin-top: 32px;
}
.cta-strip p { font-size: 14px; color: rgba(255,255,255,0.85); line-height: 1.5; }
.cta-strip strong { color: #fff; font-weight: 700; }

@media (max-width: 900px) {
  .contact-split-inner { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }
  .form-row .form-group:last-child { border-left: 1px solid var(--border-ink); }
}

/* ============================================================
   PAGE HEADER (sub-pages)
   ============================================================ */
.page-header {
  min-height: clamp(280px, 45vh, 520px);
  display: flex;
  align-items: flex-end;
  background: var(--ink);
}

.page-header-overlay {
  background: linear-gradient(170deg, rgba(12,12,15,0.75) 0%, rgba(36,84,20,0.55) 100%);
}

.page-header-inner {
  position: relative;
  z-index: 2;
  padding: clamp(48px, 6vw, 80px) clamp(20px, 4vw, 56px);
  max-width: 1360px;
  margin: 0 auto;
  width: 100%;
}

.page-header-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 14px;
}

.page-header-title, .page-header h1 {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #fff;
  max-width: 18ch;
}

.page-header-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  margin-top: 16px;
  max-width: 52ch;
  line-height: 1.6;
}

/* ============================================================
   SERVICE FEATURE (services.html)
   ============================================================ */
.section-wrap {
  padding: clamp(72px, 9vh, 112px) 0;
}

.service-feature {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
}

.service-feature-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border-ink);
}

.service-feature-photo {
  overflow: hidden;
  min-height: 480px;
}
.service-feature-photo img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  max-height: 600px;
  object-fit: cover;
  filter: grayscale(15%);
  transition: transform 400ms ease;
}
.service-feature-wrap:hover .service-feature-photo img { transform: scale(1.03); }

.service-feature-body {
  padding: clamp(40px, 5vw, 64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  background: var(--canvas);
  border-left: 1px solid var(--border-ink);
}

.section-surface .service-feature-body { background: var(--surface); }

.service-feature-wrap.photo-right .service-feature-photo { order: 2; border-left: 1px solid var(--border-ink); border-right: none; }
.service-feature-wrap.photo-right .service-feature-body { border-left: none; order: 1; }

.service-index {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(64px, 10vw, 120px);
  line-height: 0.8;
  letter-spacing: -0.04em;
  color: var(--primary);
  opacity: 0.18;
  margin-bottom: -8px;
  text-transform: uppercase;
  pointer-events: none;
  user-select: none;
}

.service-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  display: block;
  margin-bottom: 14px;
}

.service-feature-body h2 {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 20px;
  max-width: 18ch;
}

.service-feature-body p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 14px;
  max-width: 52ch;
}

.service-bullets {
  list-style: none;
  margin: 16px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-bullets li {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  padding-left: 20px;
  position: relative;
}
.service-bullets li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 8px; height: 2px;
  background: var(--primary);
}

@media (max-width: 900px) {
  .service-feature-wrap,
  .service-feature-wrap.photo-right { grid-template-columns: 1fr; }
  .service-feature-photo { min-height: 300px; order: -1 !important; border-left: none !important; border-right: none !important; }
  .service-feature-body { border-left: none !important; border-top: 1px solid var(--border-ink); }
  .service-feature-wrap.photo-right .service-feature-body { order: 2; }
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--primary);
  padding: clamp(72px, 9vh, 112px) 0;
}

.cta-banner-inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 64px;
  align-items: center;
}

.cta-banner-super, .cta-banner-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  display: block;
  margin-bottom: 14px;
}

.cta-banner-headline, .cta-banner h2 {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 5vw, 68px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #fff;
  max-width: 22ch;
}
.cta-banner-headline span { color: rgba(255,255,255,0.55); }

.cta-banner-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  margin-top: 16px;
  line-height: 1.6;
}

.cta-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.cta-banner-phone {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(20px, 2.5vw, 32px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: #fff;
  display: block;
  margin-bottom: 8px;
  text-decoration: none;
}
.cta-banner-phone:hover { color: rgba(255,255,255,0.75); text-decoration: none; }

.cta-banner-email {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  display: block;
}
.cta-banner-email:hover { color: #fff; text-decoration: underline; }

.cta-banner-form {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.18);
}
.cta-banner-form input,
.cta-banner-form textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.18);
  padding: 16px 20px;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 14px;
  color: #fff;
  outline: none;
  width: 100%;
}
.cta-banner-form input::placeholder,
.cta-banner-form textarea::placeholder { color: rgba(255,255,255,0.45); }
.cta-banner-form textarea { min-height: 100px; resize: none; }
.cta-banner-form button {
  background: #fff;
  color: var(--primary);
  border: none;
  padding: 18px 32px;
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: filter 180ms;
}
.cta-banner-form button:hover { filter: brightness(0.92); }

@media (max-width: 900px) {
  .cta-banner-inner { grid-template-columns: 1fr; gap: 48px; }
}

/* ============================================================
   STAT STRIP (gallery.html)
   ============================================================ */
.service-stat-strip {
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.stat-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
}

.stat-strip-item {
  padding: 48px 32px;
  border-right: 1px solid rgba(255,255,255,0.1);
  text-align: left;
}
.stat-strip-item:last-child { border-right: none; }

.stat-num {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(48px, 7vw, 88px);
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: #fff;
  text-transform: uppercase;
}

.stat-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: clamp(10px, 1vw, 12px);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.45);
  margin-top: 10px;
  display: block;
}

@media (max-width: 900px) {
  .stat-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-strip-item:nth-child(2) { border-right: none; }
  .stat-strip-item:nth-child(3) { border-top: 1px solid rgba(255,255,255,0.1); }
  .stat-strip-item:nth-child(4) { border-top: 1px solid rgba(255,255,255,0.1); }
}
@media (max-width: 640px) {
  .stat-strip-inner { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   GALLERY (gallery.html)
   ============================================================ */
.gallery-section {
  background: var(--canvas);
  padding: clamp(72px, 9vh, 112px) 0;
}

.gallery-inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
}

.gallery-header-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 12px;
}

.gallery-header-row h2 {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--ink);
}

.gallery-count {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-bottom: 40px;
  border: 1px solid var(--border-ink);
}

.filter-pill {
  background: none;
  border: none;
  border-right: 1px solid var(--border-ink);
  padding: 12px 20px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
  transition: background 180ms, color 180ms;
}
.filter-pill:last-child { border-right: none; }
.filter-pill:hover, .filter-pill.active {
  background: var(--primary);
  color: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border-ink);
}

.gallery-tile {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
  border-right: 1px solid var(--border-ink);
  border-bottom: 1px solid var(--border-ink);
}
.gallery-tile:nth-child(3n) { border-right: none; }
.gallery-tile:nth-last-child(-n+3) { border-bottom: none; }

.gallery-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 400ms ease, filter 400ms;
  filter: grayscale(20%);
}
.gallery-tile:hover img { transform: scale(1.05); filter: grayscale(0%); }

.gallery-tile-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(12,12,15,0.7) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  opacity: 0;
  transition: opacity 300ms;
}
.gallery-tile:hover .gallery-tile-overlay { opacity: 1; }

.gallery-tile-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
}

.gallery-tile-brand {
  background: var(--primary);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 24px;
}
.band-claim {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(22px, 3vw, 36px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 10px;
}
.band-sub {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-tile:nth-child(3n) { border-right: 1px solid var(--border-ink); }
  .gallery-tile:nth-child(2n) { border-right: none; }
}
@media (max-width: 640px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   BEFORE/AFTER STRIP
   ============================================================ */
.before-after-strip {
  background: var(--surface);
  padding: clamp(72px, 9vh, 112px) 0;
}

.ba-inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
}

.ba-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  display: block;
  margin-bottom: 14px;
}

.ba-headline {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 48px;
}
.ba-headline span { color: var(--primary); }

.ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border-ink);
}

.ba-cell {
  position: relative;
  overflow: hidden;
  min-height: 400px;
}
.ba-cell img {
  width: 100%; height: 100%;
  min-height: 400px;
  max-height: 500px;
  object-fit: cover;
  filter: grayscale(25%);
}
.ba-cell:last-child { border-left: 1px solid var(--border-ink); }

.ba-badge, .ba-badge-after {
  position: absolute;
  top: 20px; left: 20px;
  background: var(--ink);
  color: #fff;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 12px;
}
.ba-badge-after { background: var(--primary); }

@media (max-width: 640px) {
  .ba-grid { grid-template-columns: 1fr; }
  .ba-cell:last-child { border-left: none; border-top: 1px solid var(--border-ink); }
}

/* ============================================================
   ABOUT STORY
   ============================================================ */
.about-story {
  background: var(--canvas);
  padding: clamp(72px, 9vh, 112px) 0;
}

.about-story-inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
  display: grid;
  grid-template-columns: 440px 1fr;
  gap: 80px;
  align-items: start;
}

.about-story-photo-col {
  position: relative;
}

.about-story-portrait {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  max-height: 580px;
  filter: grayscale(20%);
}

.about-story-supergraphic {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--primary);
  padding: 20px 24px;
  pointer-events: none;
}
.about-story-supergraphic-num {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(56px, 8vw, 96px);
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: rgba(255,255,255,0.9);
  text-transform: uppercase;
}

.about-story-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  display: block;
  margin-bottom: 16px;
}

.about-story-headline {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 28px;
  max-width: 18ch;
}

.about-story-body {
  columns: 2;
  column-gap: 40px;
  margin-bottom: 48px;
}
.about-story-body p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
  break-inside: avoid;
  margin-bottom: 16px;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border-ink);
}

.about-value-item {
  padding: 24px 20px;
  border-right: 1px solid var(--border-ink);
  border-bottom: 1px solid var(--border-ink);
}
.about-value-item:nth-child(2n) { border-right: none; }
.about-value-item:nth-last-child(-n+2) { border-bottom: none; }

.about-value-num {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: 36px;
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: var(--primary);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.about-value-title {
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink);
  margin-bottom: 6px;
}

.about-value-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
}

@media (max-width: 900px) {
  .about-story-inner { grid-template-columns: 1fr; gap: 56px; }
  .about-story-body { columns: 1; }
  .about-story-supergraphic { right: 0; bottom: 0; }
}

/* ============================================================
   SERVICES LIST (about.html)
   ============================================================ */
.services-list-section {
  background: var(--surface);
  padding: clamp(72px, 9vh, 112px) 0;
}

.services-list-inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
}

.services-list-header {
  margin-bottom: 48px;
}

.services-list-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  display: block;
  margin-bottom: 14px;
}

.services-list-title {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 5vw, 68px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--ink);
  max-width: 18ch;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border-ink);
}

.service-item {
  padding: 28px 24px;
  border-right: 1px solid var(--border-ink);
  border-bottom: 1px solid var(--border-ink);
  background: var(--canvas);
  transition: background 200ms;
}
.service-item:hover { background: var(--primary); }
.service-item:hover .service-item-num { color: rgba(255,255,255,0.55); }
.service-item:hover .service-item-name { color: #fff; }
.service-item:nth-child(4n) { border-right: none; }
.service-item:nth-last-child(-n+4) { border-bottom: none; }

.service-item-num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 10px;
  transition: color 200ms;
}

.service-item-name {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(14px, 1.5vw, 18px);
  letter-spacing: -0.01em;
  text-transform: uppercase;
  line-height: 1.1;
  color: var(--ink);
  transition: color 200ms;
}

@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-item:nth-child(4n) { border-right: 1px solid var(--border-ink); }
  .service-item:nth-child(2n) { border-right: none; }
  .service-item:nth-last-child(-n+4) { border-bottom: 1px solid var(--border-ink); }
  .service-item:nth-last-child(-n+2) { border-bottom: none; }
}
@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   FOOTER
   ============================================================ */
footer, .site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.75);
  padding: clamp(56px, 8vh, 96px) 0 0;
}

.footer-inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
  display: grid;
  grid-template-columns: 280px repeat(3, 1fr);
  gap: 48px;
  padding-bottom: clamp(48px, 6vh, 80px);
}

.footer-grid {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px) clamp(48px, 6vh, 80px);
  display: grid;
  grid-template-columns: 280px repeat(3, 1fr);
  gap: 48px;
}

.footer-brand, .footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-brand img, .footer-brand-col img, .footer-logo-wrap img {
  max-height: 40px !important;
  max-width: 160px !important;
}

.footer-brand-name {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: 16px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #fff;
}

.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.55;
  max-width: 28ch;
}

.footer-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.55;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}
.footer-contact-item svg { width: 14px; height: 14px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: rgba(255,255,255,0.75); text-decoration: none; }
.footer-contact-item a:hover { color: #fff; text-decoration: underline; }

.footer-contact-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  display: block;
  margin-bottom: 4px;
}

.footer-contact-value { color: rgba(255,255,255,0.75); }
.footer-contact-line {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
}
.footer-contact-line:hover { color: #fff; }
.footer-contact-line svg { width: 14px; height: 14px; color: var(--accent); flex-shrink: 0; }

.footer-col h3, .footer-col h4,
.footer-col-title {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
}

.footer-links, .footer-services-list,
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links li a, .footer-services-list li,
.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 150ms;
}
.footer-links li a:hover, .footer-col ul li a:hover { color: #fff; text-decoration: none; }
.footer-services-list li {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

.footer-logo-wrap { margin-bottom: 8px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px clamp(20px, 4vw, 56px);
  max-width: 1360px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copy, .footer-copyright, .footer-legal-note, .footer-license {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
}

@media (max-width: 900px) {
  .footer-inner, .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .footer-brand, .footer-brand-col { grid-column: span 2; }
}
@media (max-width: 640px) {
  .footer-inner, .footer-grid { grid-template-columns: 1fr; }
  .footer-brand, .footer-brand-col { grid-column: span 1; }
}

/* ============================================================
   MOBILE CALL PILL
   ============================================================ */
.mobile-call-pill, .mobile-cta, .mobile-cta-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  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);
  text-decoration: none;
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 700;
  font-size: 15px;
  white-space: nowrap;
  transition: filter 180ms;
}
.mobile-call-pill:hover, .mobile-cta:hover, .mobile-cta-pill:hover {
  filter: brightness(0.88);
  text-decoration: none;
  color: #fff;
}
.mobile-call-pill svg, .mobile-cta svg, .mobile-cta-pill svg {
  width: 20px; height: 20px; flex-shrink: 0;
}

@media (min-width: 900px) {
  .mobile-call-pill, .mobile-cta, .mobile-cta-pill { display: none; }
}

/* ============================================================
   ANIMATION UTILITIES
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 600ms ease, transform 600ms ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

.fade-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 600ms ease, transform 600ms ease;
}
.fade-left.visible { opacity: 1; transform: translateX(0); }

.fade-right {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 600ms ease, transform 600ms ease;
}
.fade-right.visible { opacity: 1; transform: translateX(0); }

.scale-in {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 500ms ease, transform 500ms ease;
}
.scale-in.visible { opacity: 1; transform: scale(1); }

.stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 500ms ease, transform 500ms ease;
}
.stagger.visible > * { opacity: 1; transform: translateY(0); }
.stagger.visible > *:nth-child(1) { transition-delay: 0ms; }
.stagger.visible > *:nth-child(2) { transition-delay: 80ms; }
.stagger.visible > *:nth-child(3) { transition-delay: 160ms; }
.stagger.visible > *:nth-child(4) { transition-delay: 240ms; }
.stagger.visible > *:nth-child(5) { transition-delay: 320ms; }
.stagger.visible > *:nth-child(6) { transition-delay: 400ms; }

/* Pre-visible state exceptions: hero items start visible */
.hero .fade-up, .hero .stagger > * {
  opacity: 1; transform: none;
}

/* ============================================================
   MISC HELPERS
   ============================================================ */
.section-wrap { position: relative; }

/* Accessibility */
:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

/* Selection */
::selection { background: var(--primary); color: #fff; }


/* === Validator patches (auto-applied) === */
/* validator patch: grid children without placement → span full row */
.gallery-feature-img { grid-column: 1 / -1; }
.gallery-feature-info { grid-column: 1 / -1; }
.form-group { grid-column: 1 / -1; }
.footer-col { grid-column: 1 / -1; }
.service-feature-photo { grid-column: 1 / -1; }
.service-feature-body { grid-column: 1 / -1; }
.cta-banner-text { grid-column: 1 / -1; }
.cta-banner-form { grid-column: 1 / -1; }
.gallery-tile-1 { grid-column: 1 / -1; }
.gallery-tile-2 { grid-column: 1 / -1; }
.gallery-tile-3 { grid-column: 1 / -1; }
.gallery-tile-4 { grid-column: 1 / -1; }
.gallery-tile-5 { grid-column: 1 / -1; }
.gallery-tile-brand { grid-column: 1 / -1; }
.gallery-tile-7 { grid-column: 1 / -1; }
.gallery-tile-8 { grid-column: 1 / -1; }
.ba-cell { grid-column: 1 / -1; }
.about-value-item { grid-column: 1 / -1; }
.service-item { grid-column: 1 / -1; }
.cta-banner-actions { grid-column: 1 / -1; }
.contact-form-col { grid-column: 1 / -1; }
.contact-info-col { grid-column: 1 / -1; }
.footer-grid { grid-column: 1 / -1; }
.footer-bottom { 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; }
