@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');

/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --primary:       #048CD4;
  --primary-dark:  #036aA0;
  --primary-deeper:#024e76;
  --accent:        #F4C49C;
  --canvas:        #FFFFFF;
  --surface:       #F2F0EB;
  --ink:           #0C0C0F;
  --muted:         #5A5852;
  --border:        #0C0C0F;
  --border-light:  rgba(12,12,15,0.15);
  --header-height: 72px;
}
@media (max-width: 900px) {
  :root { --header-height: 60px; }
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::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;
  overflow-x: hidden;
}

/* 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: 64px !important;
  max-width: 220px !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; }

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

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

h1 { font-size: clamp(48px, 7vw, 120px); }
h2 { font-size: clamp(36px, 5vw, 72px); }
h3 { font-size: clamp(20px, 2.5vw, 32px); }

p { line-height: 1.7; }

.section-eyebrow,
.page-header-eyebrow,
.service-eyebrow,
.founder-eyebrow,
.cta-banner-eyebrow,
.cta-banner-left-eyebrow,
.cta-banner-label,
.gallery-section-label,
.services-strip-label,
.faq-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  font-size: clamp(10px, 1.1vw, 13px);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 12px;
  display: block;
}

/* ============================================================
   LINKS
   ============================================================ */
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; }

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

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

/* ============================================================
   HEADER & NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--canvas);
  border-bottom: 1px solid rgba(12,12,15,0.12);
}

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

.nav-logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav-logo:hover { text-decoration: none; }

.nav-pages {
  flex: 1;
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 28px;
  align-items: center;
}
.nav-pages a {
  display: inline-block;
  padding: 6px 0;
  font-size: 14px;
  font-weight: 600;
  font-family: 'IBM Plex Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink);
  text-decoration: none;
  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); }

.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;
  font-family: 'IBM Plex Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  white-space: nowrap;
  transition: background 150ms;
}
.nav-cta:hover { background: var(--primary-dark); color: #fff; text-decoration: none; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--ink);
  font-size: 26px;
  cursor: pointer;
  padding: 8px;
  line-height: 1;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
}

@media (max-width: 900px) {
  .nav-toggle { display: flex; margin-left: auto; }
  .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 rgba(12,12,15,0.12);
    z-index: 800;
  }
  .nav-pages.open { display: flex; }
  .nav-pages a { font-size: 16px; padding: 10px 0; }
  .nav-cta span { display: none; }
  .top-nav { gap: 16px; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn,
.btn-primary,
.btn-primary-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 18px 32px;
  border: none;
  border-radius: 0;
  cursor: pointer;
  text-decoration: none;
  transition: background 180ms, transform 180ms;
  white-space: nowrap;
}
.btn:hover, .btn-primary:hover, .btn-primary-cta:hover {
  background: var(--primary-dark);
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-secondary-cta,
.btn-outline,
.btn-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--ink);
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 16px 30px;
  border: 2px solid var(--ink);
  border-radius: 0;
  cursor: pointer;
  text-decoration: none;
  transition: background 180ms, color 180ms;
}
.btn-secondary-cta:hover, .btn-outline:hover, .btn-phone:hover {
  background: var(--ink);
  color: #fff;
  text-decoration: none;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--ink);
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 18px 32px;
  border: none;
  border-radius: 0;
  cursor: pointer;
  text-decoration: none;
  transition: background 180ms, color 180ms;
}
.btn-white:hover { background: var(--surface); color: var(--ink); text-decoration: none; }

.btn-service {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--primary);
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 14px 0;
  border: none;
  border-bottom: 2px solid var(--primary);
  border-radius: 0;
  cursor: pointer;
  text-decoration: none;
  transition: gap 180ms;
}
.btn-service:hover { gap: 16px; text-decoration: none; color: var(--primary); }
.btn-service svg { width: 20px; height: 20px; }

.btn-form-submit,
.form-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 18px 32px;
  border: none;
  border-radius: 0;
  cursor: pointer;
  width: 100%;
  justify-content: center;
  transition: background 180ms;
}
.btn-form-submit:hover, .form-submit:hover { background: var(--primary-dark); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 92vh;
  background: var(--ink);
}

.hero-overlay {
  background: linear-gradient(
    115deg,
    rgba(4,140,212,0.55) 0%,
    rgba(12,12,15,0.82) 45%,
    rgba(12,12,15,0.70) 100%
  );
}

.hero-inner {
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(48px, 7vw, 96px) clamp(24px, 5vw, 80px) clamp(56px, 8vw, 96px);
  max-width: 1360px;
  margin-inline: auto;
}

.hero-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  font-size: clamp(11px, 1.2vw, 14px);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 16px;
}

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

.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.82);
  max-width: 52ch;
  line-height: 1.6;
  margin-bottom: 32px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}
.hero-ctas a:first-child {
  background: var(--primary);
  color: #fff;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 18px 32px;
  border-radius: 0;
  text-decoration: none;
  transition: background 180ms;
}
.hero-ctas a:first-child:hover { background: var(--primary-dark); text-decoration: none; }
.hero-ctas a:last-child {
  background: transparent;
  color: #fff;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 16px 30px;
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: 0;
  text-decoration: none;
  transition: border-color 180ms, background 180ms;
}
.hero-ctas a:last-child:hover { border-color: #fff; background: rgba(255,255,255,0.08); text-decoration: none; }

.hero-trust-chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hero-trust-chips .trust-chip {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.45);
  padding: 6px 14px;
  border-radius: 0;
  background: rgba(12,12,15,0.4);
}

@media (max-width: 640px) {
  .hero-inner { padding-bottom: 48px; }
  .hero-title, section#hero h1 { font-size: clamp(44px, 13vw, 80px); }
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--canvas);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
}
.trust-strip-inner {
  display: flex;
  align-items: stretch;
  max-width: 1360px;
  margin-inline: auto;
}
.trust-chip-sq {
  flex: 1 1 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 20px;
  border-right: 1px solid var(--border);
  min-width: 120px;
}
.trust-chip-sq:last-child { border-right: none; }
.chip-label {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 4px;
}
.chip-value {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink);
}

/* about.html trust chips */
.trust-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink);
}
.trust-chip-star, .trust-chip-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: var(--primary);
  color: #fff;
  font-size: 12px;
  flex-shrink: 0;
}

/* ============================================================
   BRAND BAND (unique move — full-bleed primary claim)
   ============================================================ */
.brand-band {
  background: var(--primary);
  padding: clamp(56px, 8vw, 96px) 0;
  position: relative;
  overflow: hidden;
}
.brand-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    rgba(255,255,255,0.03) 0,
    rgba(255,255,255,0.03) 1px,
    transparent 1px,
    transparent 40px
  );
}
.brand-band-inner {
  max-width: 1360px;
  margin-inline: auto;
  padding-inline: clamp(24px, 5vw, 80px);
  position: relative;
  z-index: 1;
}
.brand-band-claim {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 6vw, 96px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #fff;
  max-width: 18ch;
  margin-bottom: 24px;
}
.brand-band-sub {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: clamp(15px, 1.6vw, 18px);
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  max-width: 54ch;
  line-height: 1.65;
}
.brand-band-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
  background: #fff;
  color: var(--primary);
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 18px 32px;
  border: none;
  border-radius: 0;
  text-decoration: none;
  transition: background 180ms;
}
.brand-band-cta:hover { background: var(--surface); color: var(--primary); text-decoration: none; }

/* contact.html brand-band (simpler) */
.contact .brand-band,
.contact-split ~ .brand-band,
div.brand-band {
  padding: clamp(32px, 5vw, 56px) 0;
}

/* ============================================================
   CLAIM BAND (services.html + gallery.html)
   ============================================================ */
.claim-band {
  background: var(--ink);
  padding: clamp(40px, 6vw, 72px) 0;
}
.claim-band-inner {
  max-width: 1360px;
  margin-inline: auto;
  padding-inline: clamp(24px, 5vw, 80px);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.claim-band-text {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 4.5vw, 64px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #fff;
  flex: 1 1 300px;
  max-width: 20ch;
}
.claim-band-meta {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  flex: 0 1 320px;
}
.claim-band-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.claim-chip {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.35);
  padding: 6px 14px;
}

/* ============================================================
   SERVICE AREAS MARQUEE
   ============================================================ */
.service-areas-marquee {
  background: var(--surface);
  overflow: hidden;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
}
.marquee-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  width: max-content;
}
.service-areas-marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  font-size: clamp(13px, 1.4vw, 16px);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink);
  padding: 0 28px;
  line-height: 1.2;
  display: inline-block;
}
.marquee-sep {
  color: var(--primary);
  font-weight: 900;
  font-size: 20px;
  line-height: 1.2;
  display: inline-block;
  vertical-align: middle;
  padding: 0 4px;
  flex-shrink: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  background: var(--canvas);
  padding: clamp(72px, 9vh, 112px) 0;
}
.services-inner {
  max-width: 1360px;
  margin-inline: auto;
  padding-inline: clamp(24px, 5vw, 80px);
}
.services-inner > h2 {
  font-size: clamp(36px, 5vw, 72px);
  color: var(--ink);
  margin-bottom: 48px;
}

/* Flagship service */
.service-flagship {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
  margin-bottom: 32px;
  min-height: 380px;
}
.service-flagship-img {
  position: relative;
  overflow: hidden;
  min-height: 380px;
}
.service-flagship-img > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: none;
}
.service-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, rgba(12,12,15,0.3));
  z-index: 1;
}
.service-flagship-index {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  background: var(--primary);
  padding: 4px 12px;
}
.service-flagship-body {
  padding: 40px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--surface);
}
.service-flagship-title,
.service-flagship-body h3 {
  font-size: clamp(24px, 2.8vw, 40px);
  color: var(--ink);
  margin-bottom: 16px;
}
.service-flagship-body p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 10px;
}
.service-flagship-body a.btn-service {
  margin-top: 20px;
  align-self: flex-start;
}

/* Services grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
}
.service-card {
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--border);
  background: var(--canvas);
  text-decoration: none;
  color: inherit;
  transition: transform 250ms ease-out, box-shadow 250ms ease-out, background 200ms;
}
.service-card:nth-child(4n) { border-right: none; }
.service-card:nth-child(5), .service-card:nth-child(6),
.service-card:nth-child(7), .service-card:nth-child(8) {
  border-top: 1px solid var(--border);
}
.service-card:hover {
  background: var(--surface);
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -16px rgba(4,140,212,0.18);
  text-decoration: none;
  color: inherit;
}
.service-card-img-wrap {
  position: relative;
  overflow: hidden;
  height: 220px;
  flex-shrink: 0;
}
.service-card-img-wrap > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: none;
  transition: transform 400ms ease;
}
.service-card:hover .service-card-img-wrap > img { transform: scale(1.04); }
.service-card-body {
  padding: 20px 20px 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.service-card-index {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  margin-bottom: 8px;
  display: block;
}
.service-card-body h3 {
  font-size: clamp(16px, 1.8vw, 22px);
  color: var(--ink);
  margin-bottom: 8px;
}
.service-card-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
  flex: 1;
}
.service-card-arrow {
  display: block;
  padding: 12px 20px;
  font-size: 18px;
  color: var(--primary);
  border-top: 1px solid var(--border-light);
  margin-top: auto;
  transition: padding-left 200ms;
}
.service-card:hover .service-card-arrow { padding-left: 28px; }

@media (max-width: 900px) {
  .service-flagship { grid-template-columns: 1fr; }
  .service-flagship-img { min-height: 280px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card:nth-child(4n) { border-right: 1px solid var(--border); }
  .service-card:nth-child(2n) { border-right: none; }
  .service-card:nth-child(n+3) { border-top: 1px solid var(--border); }
}
@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; }
  .service-card { border-right: none; border-bottom: 1px solid var(--border); }
  .service-flagship-body { padding: 28px 24px; }
}

/* ============================================================
   SERVICES DETAIL (services.html)
   ============================================================ */
.services-detail {
  background: var(--canvas);
  padding: clamp(72px, 9vh, 112px) 0;
  max-width: 1360px;
  margin-inline: auto;
  padding-inline: clamp(24px, 5vw, 80px);
}

.service-row {
  padding: clamp(48px, 6vh, 80px) 0;
  border-bottom: 1px solid var(--border-light);
}
.service-row:last-of-type { border-bottom: none; }

.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
}
.service-block.reverse { direction: rtl; }
.service-block.reverse > * { direction: ltr; }

.service-block-photo {
  position: relative;
  overflow: hidden;
  min-height: 420px;
}
.service-block-photo > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: none;
}
.service-block-num {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(48px, 8vw, 96px);
  line-height: 1;
  color: rgba(255,255,255,0.15);
  letter-spacing: -0.04em;
  text-transform: uppercase;
  pointer-events: none;
}

.service-block-body {
  padding: clamp(32px, 4vw, 56px);
  background: var(--surface);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service-block-body h2 {
  font-size: clamp(24px, 3vw, 44px);
  color: var(--ink);
  margin-bottom: 16px;
}
.service-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  margin-bottom: 10px;
  display: block;
}
.service-copy {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 12px;
}
.service-bullets {
  list-style: none;
  margin: 16px 0 24px;
}
.service-bullets li {
  font-size: 14px;
  color: var(--ink);
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
  border-bottom: 1px solid var(--border-light);
}
.service-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 2px;
  background: var(--primary);
}

@media (max-width: 900px) {
  .service-block { grid-template-columns: 1fr; }
  .service-block.reverse { direction: ltr; }
  .service-block-photo { min-height: 280px; }
}

/* Mid-claim (services.html) */
.mid-claim {
  background: var(--primary);
  padding: clamp(48px, 7vw, 80px) 0;
  margin: clamp(48px, 6vh, 72px) 0;
}
.mid-claim-inner {
  max-width: 1360px;
  margin-inline: auto;
  padding-inline: clamp(24px, 5vw, 80px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.mid-claim-headline {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 4vw, 56px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #fff;
}
.mid-claim-headline span { color: rgba(255,255,255,0.5); }
.mid-claim-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.mid-claim-fact {
  border-left: 3px solid rgba(255,255,255,0.35);
  padding-left: 16px;
}
.mid-claim-fact-num {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1;
  color: #fff;
  display: block;
}
.mid-claim-fact-label {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.65);
  margin-top: 6px;
  display: block;
}

@media (max-width: 900px) {
  .mid-claim-inner { grid-template-columns: 1fr; gap: 32px; }
  .mid-claim-facts { grid-template-columns: repeat(3, 1fr); }
}

/* Services index strip (services.html) */
.services-index-strip {
  background: var(--ink);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  overflow-x: auto;
  position: sticky;
  top: var(--header-height);
  z-index: 500;
}
.services-index-inner {
  display: flex;
  max-width: 1360px;
  margin-inline: auto;
  padding-inline: clamp(24px, 5vw, 80px);
}
.services-index-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 20px;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  border-right: 1px solid rgba(255,255,255,0.08);
  white-space: nowrap;
  transition: color 150ms, background 150ms;
}
.services-index-link:hover { color: #fff; background: rgba(255,255,255,0.05); text-decoration: none; }
.sil-num {
  font-family: 'Archivo Black', sans-serif;
  font-size: 10px;
  color: var(--primary);
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews {
  background: var(--surface);
  padding: clamp(72px, 9vh, 112px) 0;
}
.reviews-inner {
  max-width: 1360px;
  margin-inline: auto;
  padding-inline: clamp(24px, 5vw, 80px);
}
.reviews-inner > h2 {
  color: var(--ink);
  margin-bottom: 48px;
  font-size: clamp(36px, 5vw, 72px);
}
.reviews-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 32px;
  align-items: start;
}
.review-card {
  padding: 36px;
  border: 1px solid var(--border);
  background: var(--canvas);
  border-radius: 0;
}
.review-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}
.review-stars svg {
  color: var(--primary);
  width: 20px;
  height: 20px;
  fill: var(--primary);
}
.review-quote {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: clamp(16px, 1.8vw, 20px);
  font-style: italic;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 20px;
}
.review-attribution {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.reviews-stat-panel {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  background: var(--ink);
  padding: 36px;
}
.reviews-big-num {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(48px, 6vw, 80px);
  line-height: 1;
  color: var(--primary);
  letter-spacing: -0.03em;
}
.reviews-num-label {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.6);
  margin-top: 6px;
}
.reviews-divider {
  height: 1px;
  background: rgba(255,255,255,0.12);
  margin: 24px 0;
}
.reviews-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  margin-top: 20px;
}

@media (max-width: 900px) {
  .reviews-layout { grid-template-columns: 1fr; }
  .reviews-stat-panel { flex-direction: row; flex-wrap: wrap; gap: 32px; align-items: center; }
  .reviews-divider { display: none; }
}

/* ============================================================
   GALLERY (index.html — simple feature + CTA)
   ============================================================ */
.gallery {
  background: var(--canvas);
  padding: clamp(72px, 9vh, 112px) 0;
}
.gallery-inner {
  max-width: 1360px;
  margin-inline: auto;
  padding-inline: clamp(24px, 5vw, 80px);
}
.gallery-inner > h2 {
  font-size: clamp(36px, 5vw, 72px);
  color: var(--ink);
  margin-bottom: 40px;
}
.gallery-feature {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 480px;
  border: 1px solid var(--border);
}
.gallery-feature > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: none;
}
.gallery-cta-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 24px;
}
.gallery-note {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}

/* ============================================================
   GALLERY FULL PAGE (gallery.html)
   ============================================================ */
.gallery-section {
  background: var(--canvas);
  padding: clamp(72px, 9vh, 112px) 0;
}
.gallery-section-inner {
  max-width: 1360px;
  margin-inline: auto;
  padding-inline: clamp(24px, 5vw, 80px);
}
.gallery-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 16px;
}
.gallery-section-label {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 8px;
}
.gallery-section-header h2 {
  font-size: clamp(32px, 4.5vw, 64px);
  color: var(--ink);
}
.gallery-count {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(48px, 7vw, 96px);
  color: var(--surface);
  letter-spacing: -0.04em;
  line-height: 1;
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.filter-btn {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 8px 18px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  border-radius: 0;
  transition: background 150ms, color 150ms;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.gallery-card {
  position: relative;
  overflow: hidden;
  display: block;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--border);
  text-decoration: none;
}
.gallery-card.featured {
  grid-column: span 2;
  aspect-ratio: 16 / 9;
}
.gallery-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: none;
  transition: transform 400ms ease;
}
.gallery-card:hover > img { transform: scale(1.05); }
.gallery-card-index {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #fff;
  background: var(--primary);
  padding: 3px 10px;
}
.gallery-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12,12,15,0.75) 0%, transparent 50%);
  z-index: 1;
  opacity: 0;
  transition: opacity 280ms;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
}
.gallery-card:hover .gallery-card-overlay { opacity: 1; }
.gallery-card-label {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.7);
  margin-bottom: 4px;
}
.gallery-card-title {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: 16px;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.1;
}

@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-card.featured { grid-column: span 2; }
}
@media (max-width: 640px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-card.featured { grid-column: span 1; }
}

/* Services strip (gallery.html) */
.services-strip {
  background: var(--ink);
  padding: clamp(72px, 9vh, 112px) 0;
}
.services-strip-inner {
  max-width: 1360px;
  margin-inline: auto;
  padding-inline: clamp(24px, 5vw, 80px);
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
}
.services-strip-label {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  margin-bottom: 12px;
  display: block;
}
.services-strip-heading {
  font-size: clamp(32px, 4.5vw, 60px);
  color: #fff;
  margin-bottom: 16px;
}
.services-strip-heading span { color: var(--primary); }
.services-strip-body {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 28px;
}
.services-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.services-chip {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 6px 14px;
  text-decoration: none;
  transition: background 150ms, border-color 150ms;
}
.services-chip:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.45); text-decoration: none; color: #fff; }
.services-strip-photo {
  position: relative;
  overflow: hidden;
  height: 400px;
}
.services-strip-photo > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: none;
}
.services-strip-photo-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 2;
  background: var(--primary);
  color: #fff;
  padding: 12px 20px;
}
.services-strip-photo-badge span {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: 24px;
  line-height: 1;
  display: block;
}
.services-strip-photo-badge small {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.75);
}

@media (max-width: 900px) {
  .services-strip-inner { grid-template-columns: 1fr; }
  .services-strip-photo { height: 300px; }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  background: var(--surface);
  padding: clamp(72px, 9vh, 112px) 0;
}
.faq-inner {
  max-width: 1360px;
  margin-inline: auto;
  padding-inline: clamp(24px, 5vw, 80px);
}
.faq-inner > h2 {
  font-size: clamp(36px, 5vw, 72px);
  color: var(--ink);
  margin-bottom: 48px;
}
.faq-heading {
  font-size: clamp(36px, 5vw, 72px);
  color: var(--ink);
  margin-bottom: 48px;
}
.faq-list { max-width: 900px; }

details.faq-item {
  border-bottom: 1px solid var(--border);
}
details.faq-item:first-of-type { border-top: 1px solid var(--border); }

summary.faq-question {
  cursor: pointer;
  list-style: none;
  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);
  transition: color 150ms;
  user-select: none;
}
summary.faq-question::-webkit-details-marker { display: none; }
summary.faq-question:hover { color: var(--primary); }
summary.faq-question span { flex: 1; }

.faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--ink);
  transition: transform 200ms, color 200ms;
}
details.faq-item[open] .faq-chevron {
  transform: rotate(45deg);
  color: var(--primary);
}

.faq-answer {
  padding-bottom: 24px;
}
.faq-answer p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
}

/* FAQ teaser (contact.html) */
.faq-teaser {
  background: var(--canvas);
  padding: clamp(72px, 9vh, 112px) 0;
}
.faq-teaser-inner {
  max-width: 1360px;
  margin-inline: auto;
  padding-inline: clamp(24px, 5vw, 80px);
}
.faq-teaser-inner > h2 {
  font-size: clamp(36px, 5vw, 72px);
  color: var(--ink);
  margin-bottom: 48px;
}
.faq-teaser .faq-list details {
  border-bottom: 1px solid var(--border);
}
.faq-teaser .faq-list details:first-of-type { border-top: 1px solid var(--border); }
.faq-teaser .faq-list summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
}
.faq-teaser .faq-list summary::-webkit-details-marker { display: none; }
.faq-teaser .faq-list .faq-chevron {
  width: 20px;
  height: 20px;
  color: var(--ink);
  transition: transform 200ms, color 200ms;
  flex-shrink: 0;
}
.faq-teaser .faq-list details[open] .faq-chevron {
  transform: rotate(45deg);
  color: var(--primary);
}
.faq-teaser .faq-list p {
  padding-bottom: 20px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
}

/* ============================================================
   TEAM CTA
   ============================================================ */
.team-cta {
  background: var(--primary);
  padding: clamp(56px, 8vw, 96px) 0;
}
.team-cta-inner {
  max-width: 1360px;
  margin-inline: auto;
  padding-inline: clamp(24px, 5vw, 80px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 28px;
}
.team-cta-text {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(24px, 4vw, 52px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #fff;
  max-width: 20ch;
}
.team-cta-text em {
  font-style: normal;
  color: rgba(255,255,255,0.55);
}
.team-cta-inner > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--primary);
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 18px 32px;
  border-radius: 0;
  text-decoration: none;
  flex-shrink: 0;
  transition: background 180ms;
}
.team-cta-inner > a:hover { background: var(--surface); text-decoration: none; }

/* ============================================================
   CONTACT (index.html split)
   ============================================================ */
.contact {
  background: var(--canvas);
  padding: clamp(72px, 9vh, 112px) 0;
}
.contact-inner {
  max-width: 1360px;
  margin-inline: auto;
  padding-inline: clamp(24px, 5vw, 80px);
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: start;
}
.contact-form-col > h2,
.contact-form-col h2 {
  font-size: clamp(28px, 4vw, 52px);
  color: var(--ink);
  margin-bottom: 12px;
}
.contact-title {
  font-size: clamp(28px, 4vw, 52px);
  color: var(--ink);
  margin-bottom: 12px;
}

/* Contact split (contact.html) */
.contact-split {
  background: var(--canvas);
  padding: clamp(72px, 9vh, 112px) 0;
}
.contact-split-inner {
  max-width: 1360px;
  margin-inline: auto;
  padding-inline: clamp(24px, 5vw, 80px);
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: start;
}
.contact-form-side h2,
.contact-form-heading { font-size: clamp(28px, 4vw, 52px); color: var(--ink); margin-bottom: 12px; }
.contact-form-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  margin-bottom: 8px;
  display: block;
}

/* Forms */
.contact-form,
.cta-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}
.form-group,
.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
label {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}
input, textarea, select {
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 12px 16px;
  width: 100%;
  transition: border-color 150ms;
  outline: none;
  appearance: none;
}
input:focus, textarea:focus, select:focus { border-color: var(--primary); }
textarea { min-height: 120px; resize: vertical; }
.form-note {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}

/* Contact info */
.contact-info-col,
.contact-info-side {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.contact-info-block {
  padding: 20px 0;
  border-bottom: 1px solid var(--border-light);
}
.contact-info-block:last-of-type { border-bottom: none; }
.info-label,
.info-block-label {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 6px;
}
.info-value,
.info-block-sub {
  font-size: 15px;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.65;
}
.info-note { font-size: 12px; color: var(--muted); }
.info-phone {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(20px, 2.5vw, 28px);
  color: var(--primary);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.info-phone:hover { text-decoration: underline; }
.info-divider {
  height: 1px;
  background: var(--border-light);
}

/* Hours */
.hours-grid { display: flex; flex-direction: column; gap: 6px; margin-top: 8px; }
.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  gap: 16px;
}
.hours-day { color: var(--muted); font-weight: 500; }
.hours-time { color: var(--ink); font-weight: 600; }
.hours-emerg { font-size: 13px; color: var(--primary); font-weight: 600; margin-top: 10px; }

/* Service area pills */
.service-area-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.service-area-pill {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  border: 1px solid var(--border);
  color: var(--ink);
}

/* Trust badges */
.trust-badges-row { display: flex; flex-direction: column; gap: 8px; margin-top: 8px; }
.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.trust-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--primary);
  flex-shrink: 0;
}
.trust-badge-text {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
}
.trust-badge-item-label {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 4px;
}
.trust-badge-item-value {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(20px, 2.5vw, 28px);
  line-height: 1;
  color: #fff;
}

/* Guarantee chips */
.contact-guarantees { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.guarantee-chip {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 14px;
  border: 2px solid var(--ink);
  color: var(--ink);
}

@media (max-width: 900px) {
  .contact-inner,
  .contact-split-inner { grid-template-columns: 1fr; }
}

/* ============================================================
   CTA BANNER (gallery.html + about.html + services.html)
   ============================================================ */
.cta-banner {
  background: var(--ink);
  padding: clamp(72px, 10vw, 120px) 0;
  position: relative;
  overflow: hidden;
}
.cta-banner-supergraphic {
  position: absolute;
  top: -40px;
  right: -80px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(4,140,212,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner-inner {
  max-width: 1360px;
  margin-inline: auto;
  padding-inline: clamp(24px, 5vw, 80px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.cta-banner-eyebrow,
.cta-banner-label,
.cta-banner-left-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  margin-bottom: 12px;
  display: block;
}
.cta-banner-heading,
.cta-banner-headline {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(32px, 5vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
}
.cta-banner-heading span,
.cta-banner-headline span,
.phone-highlight { color: var(--primary); }
.cta-banner-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  margin-bottom: 28px;
}
.cta-banner-phone,
.cta-banner-phone-link {
  display: block;
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 4vw, 52px);
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
  text-decoration: none;
  margin-bottom: 24px;
}
.cta-banner-phone-link:hover { color: var(--primary); text-decoration: none; }
.cta-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.cta-banner-actions a:first-child {
  background: var(--primary);
  color: #fff;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 16px 28px;
  text-decoration: none;
  transition: background 180ms;
}
.cta-banner-actions a:first-child:hover { background: var(--primary-dark); text-decoration: none; }
.cta-banner-actions a:last-child {
  background: transparent;
  color: rgba(255,255,255,0.8);
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 14px 26px;
  border: 2px solid rgba(255,255,255,0.3);
  text-decoration: none;
  transition: border-color 180ms;
}
.cta-banner-actions a:last-child:hover { border-color: #fff; text-decoration: none; }

.cta-banner-side {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.cta-banner-trust-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid rgba(255,255,255,0.1);
}
.cta-banner-trust-stack .trust-badge-item {
  flex-direction: column;
  align-items: flex-start;
  padding: 28px;
  border-right: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.cta-banner-trust-stack .trust-badge-item:nth-child(even) { border-right: none; }
.cta-banner-trust-stack .trust-badge-item:nth-child(3),
.cta-banner-trust-stack .trust-badge-item:nth-child(4) { border-bottom: none; }

/* cta-form (services.html) */
.cta-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cta-banner .cta-form input,
.cta-banner .cta-form textarea {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.2);
  color: #fff;
}
.cta-banner .cta-form input::placeholder,
.cta-banner .cta-form textarea::placeholder { color: rgba(255,255,255,0.4); }
.cta-banner .cta-form input:focus,
.cta-banner .cta-form textarea:focus { border-color: var(--primary); }
.cta-form button {
  width: 100%;
  background: var(--primary);
  color: #fff;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 16px 24px;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: background 180ms;
}
.cta-form button:hover { background: var(--primary-dark); }

.cta-pair {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
}
.cta-pair a:first-child {
  background: #fff;
  color: var(--ink);
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 16px 28px;
  text-decoration: none;
  transition: background 180ms;
}
.cta-pair a:first-child:hover { background: var(--surface); text-decoration: none; }
.cta-pair a:last-child {
  background: transparent;
  color: rgba(255,255,255,0.8);
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 14px 26px;
  border: 2px solid rgba(255,255,255,0.3);
  text-decoration: none;
  transition: border-color 180ms;
}
.cta-pair a:last-child:hover { border-color: #fff; text-decoration: none; }

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

/* ============================================================
   ABOUT (about.html)
   ============================================================ */
/* Founder story */
.founder-story {
  background: var(--canvas);
  padding: clamp(72px, 9vh, 112px) 0;
}
.founder-story-grid {
  max-width: 1360px;
  margin-inline: auto;
  padding-inline: clamp(24px, 5vw, 80px);
  display: grid;
  grid-template-columns: 480px 1fr;
  gap: 64px;
  align-items: start;
}
.founder-portrait-col {
  position: relative;
}
.founder-portrait-img {
  width: 100%;
  object-fit: cover;
  max-height: 560px;
  filter: grayscale(20%) contrast(1.05);
}
.founder-name-tag {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary);
  padding: 16px 20px;
}
.founder-name-tag-name {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: 18px;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.1;
}
.founder-name-tag-title {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
}
.founder-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  margin-bottom: 12px;
  display: block;
}
.founder-copy-col h2 {
  font-size: clamp(28px, 4vw, 52px);
  color: var(--ink);
  margin-bottom: 28px;
}
.founder-headline {
  font-size: clamp(28px, 4vw, 52px);
  color: var(--ink);
  margin-bottom: 28px;
}
.founder-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}
.founder-body p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
}
.brand-rule {
  width: 80px;
  height: 4px;
  background: var(--primary);
  margin-bottom: 24px;
}
.founder-trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.founder-trust-chip {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 14px;
  border: 2px solid var(--ink);
  color: var(--ink);
}

@media (max-width: 900px) {
  .founder-story-grid { grid-template-columns: 1fr; }
  .founder-portrait-col { max-width: 480px; }
}

/* Values section */
.values-section {
  background: var(--surface);
  padding: clamp(72px, 9vh, 112px) 0;
}
.values-inner {
  max-width: 1360px;
  margin-inline: auto;
  padding-inline: clamp(24px, 5vw, 80px);
}
.values-inner > h2,
.section-heading {
  font-size: clamp(36px, 5vw, 72px);
  color: var(--ink);
  margin-bottom: 48px;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
}
.value-card {
  border-right: 1px solid var(--border);
  padding: 36px 28px;
  background: var(--canvas);
  position: relative;
  overflow: hidden;
  transition: background 200ms;
}
.value-card:last-child { border-right: none; }
.value-card:hover { background: var(--surface); }
.value-card-accent {
  width: 100%;
  height: 4px;
  background: var(--primary);
  position: absolute;
  top: 0;
  left: 0;
}
.value-num {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(48px, 6vw, 80px);
  line-height: 1;
  color: var(--surface);
  letter-spacing: -0.04em;
  margin-bottom: 16px;
  margin-top: 12px;
}
.value-title {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 12px;
}
.value-body {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

@media (max-width: 900px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .value-card:nth-child(2) { border-right: none; }
  .value-card:nth-child(3), .value-card:nth-child(4) { border-top: 1px solid var(--border); }
}
@media (max-width: 640px) {
  .values-grid { grid-template-columns: 1fr; }
  .value-card { border-right: none; border-bottom: 1px solid var(--border); }
}

/* Journey / timeline */
.journey-section {
  background: var(--canvas);
  padding: clamp(72px, 9vh, 112px) 0;
}
.journey-inner {
  max-width: 1360px;
  margin-inline: auto;
  padding-inline: clamp(24px, 5vw, 80px);
}
.journey-inner > h2 { font-size: clamp(36px, 5vw, 72px); color: var(--ink); margin-bottom: 48px; }
.timeline-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 3px solid var(--primary);
  padding-top: 32px;
  position: relative;
}
.timeline-step {
  padding-right: 32px;
  position: relative;
}
.step-dot {
  width: 14px;
  height: 14px;
  background: var(--primary);
  margin-bottom: 16px;
  flex-shrink: 0;
  position: relative;
  top: -39px;
}
.step-year {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 8px;
  margin-top: -16px;
}
.timeline-step h3 {
  font-size: clamp(16px, 2vw, 22px);
  color: var(--ink);
  margin-bottom: 10px;
}
.step-title { font-size: clamp(16px, 2vw, 22px); color: var(--ink); margin-bottom: 10px; }
.step-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

@media (max-width: 900px) {
  .timeline-list { grid-template-columns: repeat(2, 1fr); gap: 32px; border-top: none; }
  .timeline-step { border-left: 3px solid var(--primary); padding-left: 20px; padding-top: 8px; }
  .step-dot { display: none; }
  .step-year { margin-top: 0; }
}
@media (max-width: 640px) {
  .timeline-list { grid-template-columns: 1fr; }
}

/* About split */
.about-split {
  background: var(--surface);
  padding: clamp(72px, 9vh, 112px) 0;
}
.about-split-grid {
  max-width: 1360px;
  margin-inline: auto;
  padding-inline: clamp(24px, 5vw, 80px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-split-copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.about-split-copy h2 { font-size: clamp(28px, 4vw, 52px); color: var(--ink); margin-bottom: 16px; }
.about-split-copy p { font-size: 15px; color: var(--muted); line-height: 1.75; }
.about-split-photo { position: relative; overflow: hidden; }
.about-split-photo > img {
  width: 100%;
  object-fit: cover;
  max-height: 560px;
  filter: grayscale(15%);
}

@media (max-width: 900px) {
  .about-split-grid { grid-template-columns: 1fr; }
}

/* Credentials section */
.credentials-section {
  background: var(--ink);
  padding: clamp(72px, 9vh, 112px) 0;
}
.credentials-inner {
  max-width: 1360px;
  margin-inline: auto;
  padding-inline: clamp(24px, 5vw, 80px);
}
.credentials-inner > h2 { font-size: clamp(36px, 5vw, 72px); color: #fff; margin-bottom: 48px; }
.credentials-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid rgba(255,255,255,0.1);
}
.cred-badge {
  padding: 36px 32px;
  border-right: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.cred-badge:nth-child(3n) { border-right: none; }
.cred-badge:nth-child(4), .cred-badge:nth-child(5), .cred-badge:nth-child(6) { border-bottom: none; }
.cred-badge-label {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 10px;
}
.cred-badge-value {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  font-size: clamp(14px, 1.6vw, 18px);
  color: rgba(255,255,255,0.85);
  line-height: 1.3;
}
.cred-badge-value-accent {
  color: var(--primary);
}

@media (max-width: 900px) {
  .credentials-band { grid-template-columns: repeat(2, 1fr); }
  .cred-badge:nth-child(3n) { border-right: 1px solid rgba(255,255,255,0.1); }
  .cred-badge:nth-child(2n) { border-right: none; }
}
@media (max-width: 640px) {
  .credentials-band { grid-template-columns: 1fr; }
  .cred-badge { border-right: none; }
}

/* ============================================================
   PAGE HEADER (sub-pages)
   ============================================================ */
.page-header {
  min-height: 44vh;
  background: var(--ink);
}
.page-header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(12,12,15,0.8) 0%, rgba(4,140,212,0.35) 100%);
  z-index: 1;
}
.page-header-inner {
  position: relative;
  z-index: 2;
  max-width: 1360px;
  margin-inline: auto;
  padding-inline: clamp(24px, 5vw, 80px);
  padding-top: clamp(48px, 8vw, 80px);
  padding-bottom: clamp(40px, 6vw, 64px);
}
.page-header-inner h1 {
  font-size: clamp(40px, 7vw, 100px);
  color: #fff;
  max-width: 16ch;
}
.page-header-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  margin-top: 12px;
  max-width: 48ch;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.75);
}
.footer-inner,
.footer-grid {
  max-width: 1360px;
  margin-inline: auto;
  padding: clamp(64px, 9vh, 96px) clamp(24px, 5vw, 80px) 0;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand,
.footer-brand-logo {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-brand-name {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: 18px;
  text-transform: uppercase;
  color: #fff;
}
.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}
.footer-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
  margin-top: 6px;
}
.footer-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
}
.footer-address {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
}
.footer-col-title,
.footer-col-heading,
.footer-col-head {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 16px;
}
.footer-col-title-mt { margin-top: 32px; }
.footer-links,
.footer-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-links li a,
.footer-nav-list li a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 150ms;
}
.footer-links li a:hover,
.footer-nav-list li a:hover { color: #fff; text-decoration: none; }
.footer-links li,
.footer-nav-list li { font-size: 14px; color: rgba(255,255,255,0.5); }

.footer-contact-item,
.footer-contact-line {
  display: flex;
  gap: 12px;
  margin-bottom: 8px;
  align-items: flex-start;
}
.footer-contact-label {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.3);
  flex: 0 0 48px;
  margin-top: 2px;
}
.footer-contact-value,
.footer-contact-text {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}
.footer-contact-value a,
.footer-contact-text a { color: rgba(255,255,255,0.65); }
.footer-contact-value a:hover,
.footer-contact-text a:hover { color: #fff; text-decoration: none; }
.footer-phone-link {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: 16px;
  color: var(--primary);
  text-decoration: none;
}
.footer-phone-link:hover { text-decoration: underline; }
.footer-logo a { text-decoration: none; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: clamp(40px, 5vh, 64px);
  padding: 24px clamp(24px, 5vw, 80px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  max-width: 1360px;
  margin-inline: auto;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.35); }
.footer-bottom-copy { font-size: 12px; color: rgba(255,255,255,0.35); }
.footer-creds,
.footer-bottom-creds {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-cert,
.footer-cred-chip {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.4);
}
.footer-cred-line {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}

@media (max-width: 900px) {
  .footer-inner, .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .footer-inner, .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   MOBILE CALL PILL
   ============================================================ */
.mobile-call-pill,
.mobile-cta-pill,
.mobile-call > a,
.mobile-sticky-cta > a {
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 999;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: #fff;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 14px 22px;
  border-radius: 999px;
  box-shadow: 0 18px 40px -10px rgba(0,0,0,0.45);
  text-decoration: none;
  transition: background 180ms, transform 180ms;
}
.mobile-call-pill:hover,
.mobile-cta-pill:hover,
.mobile-call > a:hover,
.mobile-sticky-cta > a:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  text-decoration: none;
  color: #fff;
}
.mobile-call-pill svg,
.mobile-cta-pill svg,
.mobile-call svg,
.mobile-sticky-cta svg { width: 18px; height: 18px; }

.mobile-call,
.mobile-sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 999;
}

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

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

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

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

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

.stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.stagger > *.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   SECTION GENERIC
   ============================================================ */
.section {
  padding: clamp(72px, 9vh, 112px) 0;
}

/* ============================================================
   STATS UTILITY
   ============================================================ */
.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;
  font-family: 'Archivo Black', sans-serif;
  line-height: 1;
  color: var(--primary);
}
.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
   ============================================================ */
.process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}
.process-step {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 0;
}
.step-num {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
  letter-spacing: 0.12em;
  font-family: 'IBM Plex Mono', monospace;
  text-transform: uppercase;
}

/* ============================================================
   TABLE CELLS (scoped to thead only — dark header safe)
   ============================================================ */
thead .col-service,
thead .col-desc,
thead .col-timeline,
thead .col-price {
  background: var(--ink);
  color: #fff;
}

/* ============================================================
   MISC UTILITY
   ============================================================ */
.bleed { width: 100vw; margin-left: calc(-50vw + 50%); }
.full-bleed { width: 100%; }
.section-title {
  font-size: clamp(36px, 5vw, 72px);
  color: var(--ink);
  margin-bottom: 48px;
}

/* No mirror transforms on content */
.flip { order: -1; }


/* === Validator patches (auto-applied) === */
/* validator patch: grid children without placement → span full row */
.service-flagship-img { grid-column: 1 / -1; }
.service-flagship-body { grid-column: 1 / -1; }
.contact-form-col { grid-column: 1 / -1; }
.contact-info-col { grid-column: 1 / -1; }
.footer-brand { grid-column: 1 / -1; }
.footer-col { grid-column: 1 / -1; }
.service-block-photo { grid-column: 1 / -1; }
.service-block-body { grid-column: 1 / -1; }
.mid-claim-headline { grid-column: 1 / -1; }
.mid-claim-facts { grid-column: 1 / -1; }
.mid-claim-fact { grid-column: 1 / -1; }
.gallery-card { grid-column: 1 / -1; }
.trust-badge-item { grid-column: 1 / -1; }
.footer-grid { grid-column: 1 / -1; }
.footer-bottom { grid-column: 1 / -1; }
.form-field { grid-column: 1 / -1; }
.footer-brand-logo { 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; }
