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

/* ─── TOKENS ─────────────────────────────────────────────────────────────── */
:root {
  --primary:        #7bb505;
  --primary-dark:   #629004;
  --primary-light:  #a0d406;
  --primary-dim:    rgba(123,181,5,0.12);
  --accent:         #7bb505;

  --canvas:         #F7F6F2;
  --surface:        #FFFFFF;
  --surface-2:      #F0EFE9;

  --ink:            #14181D;
  --ink-mid:        #2c333c;
  --muted:          #5C6068;
  --muted-light:    #8a8f99;

  --border:         rgba(20,24,29,0.10);
  --border-mid:     rgba(20,24,29,0.16);

  --neutral-dark:   #14181D;
  --neutral-light:  #F7F6F2;

  --header-height:  72px;

  --radius-sm:      4px;
  --radius-card:    4px;

  --section-py:     clamp(80px, 10vh, 128px);
  --content-max:    1320px;
  --wide-max:       1400px;
}

@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;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--canvas);
  color: var(--ink);
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  font-weight: 450;
  line-height: 1.68;
  overflow-x: hidden;
}

/* ─── UNIVERSAL IMAGE CAP (mandatory) ───────────────────────────────────── */
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; }

/* ─── HEADING ANCHOR RULE ────────────────────────────────────────────────── */
h1 a, h2 a, h3 a, .hero-title a, .hero-eyebrow a, .hero-sub a {
  color: inherit; text-decoration: none; border-bottom: 0;
}

/* ─── TYPOGRAPHY ─────────────────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--ink);
}

h1 { font-size: clamp(40px, 6vw, 80px); }
h2 { font-size: clamp(36px, 5vw, 72px); }
h3 { font-size: clamp(20px, 2.4vw, 28px); line-height: 1.1; }

p { line-height: 1.68; }

.label-mono, .section-eyebrow, .page-header-eyebrow, .page-eyebrow,
.gallery-section-eyebrow, .cta-banner-eyebrow, .hero-eyebrow,
.services-intro-label, .info-card-eyebrow, .contact-form-eyebrow,
.contact-form-title, .footer-col-title, .footer-col-label,
.info-block-label, .c-info-lbl, .footer-contact-label,
.crew-stat-label, .step-num, .service-block-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  font-size: clamp(10px, 1vw, 12px);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 12px;
}

/* ─── LAYOUT UTILITIES ───────────────────────────────────────────────────── */
.container {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
}

.wide-container {
  max-width: var(--wide-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
}

.bleed { width: 100%; max-width: none; }

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

/* ─── BUTTONS ────────────────────────────────────────────────────────────── */
.btn, .btn-primary, .btn-outline, .btn-ink, .btn-outline-light,
.btn-outline-white, .btn-submit, .btn-service, .form-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  padding: 14px 26px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 150ms ease;
  white-space: nowrap;
}

.btn-primary, .btn-submit, .form-submit {
  background: var(--primary);
  color: var(--surface);
  border-color: var(--primary);
}
.btn-primary:hover, .btn-submit:hover, .form-submit:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--surface);
  text-decoration: none;
}

.btn-outline, .btn-ink {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-outline:hover, .btn-ink:hover {
  background: var(--ink);
  color: var(--surface);
  text-decoration: none;
}

.btn-outline-light, .btn-outline-white {
  background: transparent;
  color: var(--surface);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-light:hover, .btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
  color: #fff;
  text-decoration: none;
}

/* ─── FORM ELEMENTS ──────────────────────────────────────────────────────── */
.form-group, .form-field { position: relative; margin-bottom: 20px; }
.form-group.full, .form-field.full { grid-column: 1 / -1; }

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

.form-input, .form-select, .form-textarea,
input[type="text"], input[type="email"], input[type="tel"],
input[type="number"], select, textarea {
  width: 100%;
  background: var(--canvas);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 15px;
  color: var(--ink);
  transition: border-color 180ms;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus,
input:focus, select:focus, textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-dim);
}
.form-textarea, textarea { min-height: 120px; resize: vertical; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }

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

/* ─── SITE HEADER ────────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--surface);
  border-bottom: 1px solid rgba(20,24,29,0.08);
}

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

.nav-logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav-logo img {
  max-height: 44px !important;
  max-width: 200px !important;
}
.nav-logo:hover { text-decoration: none; }

.nav-pages {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  padding: 0; margin: 0;
  gap: 28px;
}

.nav-pages a {
  display: inline-block;
  padding: 6px 0;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0;
  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: var(--surface);
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
  transition: filter 180ms;
}
.nav-cta svg { width: 16px; height: 16px; flex-shrink: 0; }
.nav-cta:hover { filter: brightness(0.92); color: var(--surface); text-decoration: none; }

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

@media (max-width: 900px) {
  .top-nav { gap: 16px; }

  .nav-pages {
    display: none;
    position: absolute;
    top: 60px; left: 0; right: 0;
    flex-direction: column;
    background: var(--surface);
    padding: 24px clamp(20px, 4vw, 48px);
    gap: 4px;
    border-bottom: 1px solid rgba(20,24,29,0.08);
    z-index: 800;
  }
  .nav-pages.open { display: flex; }
  .nav-pages li { width: 100%; }
  .nav-pages a { display: block; padding: 10px 0; font-size: 16px; }

  .nav-cta span { display: none; }
  .nav-cta { padding: 10px 12px; }

  .nav-toggle { display: flex; }
}

/* ─── HERO ───────────────────────────────────────────────────────────────── */
#hero.hero {
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hero-overlay {
  background: rgba(20,24,29,0.55);
}

.hero-ribbon {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--primary);
  z-index: 3;
}

.hero-inner {
  padding: clamp(64px, 10vh, 120px) clamp(24px, 5vw, 80px) clamp(56px, 8vh, 96px);
  max-width: var(--content-max);
  margin-inline: auto;
  width: 100%;
}

.hero-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: clamp(10px, 1vw, 12px);
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 20px;
}

.hero-title, h1.hero-title {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: clamp(48px, 7vw, 120px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: #fff;
  max-width: 18ch;
  margin-bottom: 24px;
}

.hero-sub {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: clamp(16px, 1.6vw, 19px);
  color: rgba(255,255,255,0.75);
  max-width: 52ch;
  line-height: 1.6;
  margin-bottom: 36px;
}

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

.hero-trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0; margin: 0;
}

.hero-trust-chips .trust-chip, .trust-chip {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--surface);
  border: 1px solid rgba(123,181,5,0.6);
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  background: rgba(123,181,5,0.10);
  white-space: nowrap;
}

.hero-hairline {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--primary);
  z-index: 3;
}

@media (max-width: 640px) {
  #hero.hero { min-height: 100svh; }
  .hero-inner { padding: 80px 20px 48px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn, .hero-ctas a { width: 100%; justify-content: center; }
}

/* ─── TRUST STRIP ────────────────────────────────────────────────────────── */
.trust-strip {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}

.trust-strip-inner {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 24px;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ink);
  border: 1px solid var(--primary);
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  background: var(--surface);
}

.trust-star {
  color: var(--primary);
  font-size: 14px;
}

/* ─── MARQUEE ────────────────────────────────────────────────────────────── */
.marquee {
  overflow: hidden;
  padding: 14px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  max-height: 64px;
  position: relative;
  z-index: 1;
  background: var(--canvas);
}

.marquee-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: marquee 35s linear infinite;
}

.marquee:hover .marquee-track { animation-play-state: paused; }

.marquee-item {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: clamp(13px, 1.4vw, 18px);
  line-height: 1.2;
  color: var(--ink);
}

.marquee-sep {
  color: var(--primary);
  font-size: 18px;
  line-height: 1.2;
  flex-shrink: 0;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── SERVICES ───────────────────────────────────────────────────────────── */
.services {
  padding: var(--section-py) 0;
  background: var(--canvas);
}

.services-header {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
  margin-bottom: 48px;
}

.services-header h2 { font-size: clamp(36px, 5vw, 64px); }

.services-grid {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.service-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  display: block;
  text-decoration: none;
  background: var(--ink);
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -16px rgba(0,0,0,0.28);
  text-decoration: none;
}

.service-card > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
  max-height: none !important;
}

.service-card:hover > img { transform: scale(1.04); }

.service-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,24,29,0.88) 0%, rgba(20,24,29,0.2) 60%, transparent 100%);
  z-index: 1;
  transition: background 300ms;
}

.service-card:hover .service-card-overlay {
  background: linear-gradient(to top, rgba(20,24,29,0.92) 0%, rgba(20,24,29,0.35) 70%, transparent 100%);
}

.service-card-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px 20px;
  z-index: 2;
}

.service-card-body h3 {
  font-family: 'Archivo', sans-serif;
  font-size: clamp(17px, 1.8vw, 22px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
  line-height: 1.1;
}

.service-card-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: 4px;
}

.service-card-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.72);
  line-height: 1.5;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.service-card-link {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.service-card-flagship {
  grid-column: span 2;
  aspect-ratio: 16 / 9;
}

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

@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; gap: 1px; }
  .service-card, .service-card-flagship { grid-column: span 1; aspect-ratio: 4/3; }
}

.services-cta {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

/* ─── SERVICES DETAIL (services.html) ───────────────────────────────────── */
.services-detail { padding: var(--section-py) 0; background: var(--canvas); }

.services-detail-inner {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
}

.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 64px 0;
  border-bottom: 1px solid var(--border);
}

.service-block:last-child { border-bottom: none; }

.service-block.reverse .service-block-photo { order: 2; }
.service-block.reverse .service-block-body  { order: 1; }

.service-block-photo {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  aspect-ratio: 4/3;
  background: var(--surface-2);
}

.service-block-photo > img {
  width: 100%; height: 100%;
  object-fit: cover;
  max-height: none !important;
}

.service-block-photo-num {
  position: absolute;
  top: 16px; right: 16px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--surface);
  background: var(--primary);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
}

.service-block-body h2 {
  font-size: clamp(28px, 3.5vw, 48px);
  margin-bottom: 16px;
}

.service-block-copy {
  color: var(--ink-mid);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 14px;
}

.service-block-features {
  list-style: none;
  padding: 0; margin: 20px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-block-features li {
  padding-left: 20px;
  position: relative;
  font-size: 15px;
  color: var(--ink-mid);
}

.service-block-features li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 8px; height: 2px;
  background: var(--primary);
}

@media (max-width: 900px) {
  .service-block { grid-template-columns: 1fr; gap: 32px; padding: 48px 0; }
  .service-block.reverse .service-block-photo { order: -1; }
  .service-block.reverse .service-block-body  { order: 0; }
}

/* ─── SERVICES INTRO STRIP ───────────────────────────────────────────────── */
.services-intro-strip {
  background: var(--ink);
  padding: 20px 0;
}

.services-intro-inner {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 24px;
}

.services-intro-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-light);
  flex-shrink: 0;
}

.services-intro-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0; margin: 0;
}

.services-intro-chips a {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-sm);
  padding: 5px 12px;
  display: inline-block;
  transition: border-color 150ms, background 150ms;
  text-decoration: none;
}

.services-intro-chips a:hover {
  border-color: var(--primary);
  color: var(--primary);
  text-decoration: none;
}

/* ─── GALLERY (index.html preview) ──────────────────────────────────────── */
.gallery-preview {
  padding: var(--section-py) 0;
  background: var(--surface);
}

.gallery-preview-hd {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 32px;
  gap: 24px;
}

.gallery-preview-hd h2 { font-size: clamp(32px, 4.5vw, 60px); }
.gallery-preview-hd a { flex-shrink: 0; }

.gallery-grid {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 8px;
}

.gallery-tile {
  overflow: hidden;
  border-radius: var(--radius-sm);
  display: block;
  background: var(--surface-2);
  transition: opacity 200ms;
}

.gallery-tile:hover { opacity: 0.88; }
.gallery-tile > img { width: 100%; height: 100%; object-fit: cover; max-height: none !important; }

.gallery-tile-tall { grid-row: span 2; aspect-ratio: 3/4; }
.gallery-tile:not(.gallery-tile-tall) { aspect-ratio: 4/3; }

.gallery-cta-row {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
  margin-top: 32px;
  display: flex;
  justify-content: center;
}

@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-tile-tall { grid-row: span 1; aspect-ratio: 4/3; }
}

@media (max-width: 640px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 4px; }
}

/* ─── GALLERY PAGE ───────────────────────────────────────────────────────── */
.gallery-section {
  padding: clamp(40px, 6vh, 80px) 0 var(--section-py);
  background: var(--canvas);
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
}

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

.gallery-title-block h2 { font-size: clamp(28px, 4vw, 52px); }
.gallery-section-eyebrow { margin-bottom: 8px; }

.filter-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.filter-pill {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ink);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  background: var(--surface);
  cursor: pointer;
  transition: background 150ms, border-color 150ms, color 150ms;
}

.filter-pill.active, .filter-pill:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--surface);
}

.gallery-count-bar {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 24px;
}

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

.gallery-count-num {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--primary);
}

#galleryGrid.gallery-grid {
  grid-template-columns: repeat(3, 1fr);
  padding-inline: 0;
  max-width: none;
  gap: 8px;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  aspect-ratio: 4/3;
  background: var(--surface-2);
  cursor: pointer;
}

.gallery-card > img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
  max-height: none !important;
}

.gallery-card:hover > img { transform: scale(1.05); }

.gallery-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,24,29,0.85) 0%, transparent 55%);
  z-index: 1;
  opacity: 0;
  transition: opacity 250ms;
}

.gallery-card:hover .gallery-card-overlay { opacity: 1; }

.gallery-card-badge {
  position: absolute;
  top: 12px; right: 12px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--primary);
  z-index: 3;
}

.gallery-card-meta {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 16px;
  z-index: 2;
  opacity: 0;
  transition: opacity 250ms;
}

.gallery-card:hover .gallery-card-meta { opacity: 1; }

.gallery-card-meta h3 {
  font-size: 16px;
  color: #fff;
  margin-bottom: 4px;
}

.gallery-card-tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 4px;
}

.gallery-card-desc {
  font-size: 12px;
  color: rgba(255,255,255,0.75);
  line-height: 1.4;
  margin-bottom: 8px;
}

.gallery-card-stats {
  display: flex;
  gap: 12px;
}

.gallery-stat {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: rgba(255,255,255,0.65);
}

.gallery-stat svg { width: 12px; height: 12px; flex-shrink: 0; }

@media (max-width: 900px) {
  #galleryGrid.gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  #galleryGrid.gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 4px; }
}

/* ─── RATING / REVIEWS BLOCK ─────────────────────────────────────────────── */
.rating-block {
  background: var(--ink);
  padding: var(--section-py) 0;
}

.rating-block-inner {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 64px;
}

.rating-left {
  text-align: center;
  flex-shrink: 0;
}

.rating-num {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: clamp(64px, 8vw, 96px);
  line-height: 1;
  color: var(--primary);
  letter-spacing: -0.03em;
}

.rating-stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin: 12px 0 8px;
}

.rating-stars svg { width: 22px; height: 22px; color: var(--primary); }

.rating-lbl {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

.rating-right {
  display: block;
  text-decoration: none;
}

.rating-hed {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: clamp(24px, 3vw, 40px);
  color: #fff;
  line-height: 1.1;
  margin-bottom: 12px;
}

.rating-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

.rating-right:hover .rating-hed { color: var(--primary); }
.rating-right:hover { text-decoration: none; }

@media (max-width: 640px) {
  .rating-block-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  .rating-left { text-align: center; }
  .rating-hed { font-size: 26px; }
}

/* ─── REVIEW CARD ────────────────────────────────────────────────────────── */
.review-card {
  padding: 28px;
  border-radius: var(--radius-card);
  background: var(--surface-2);
  border-top: 1px solid var(--primary);
}

.review-stars svg { color: var(--primary); width: 18px; height: 18px; }

.review-quote {
  font-size: 17px;
  line-height: 1.55;
  margin: 14px 0;
}

.review-attribution {
  font-size: 13px;
  color: var(--muted);
  opacity: 0.75;
}

/* ─── FAQ ────────────────────────────────────────────────────────────────── */
.faq {
  padding: var(--section-py) 0;
  background: var(--surface);
}

.faq-inner {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
}

.faq-hd {
  margin-bottom: 48px;
}

.faq-hd h2 { font-size: clamp(32px, 4.5vw, 60px); }

.faq-list {
  max-width: 800px;
}

details.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 0;
}

details.faq-item > summary {
  cursor: pointer;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: clamp(16px, 1.6vw, 19px);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  gap: 16px;
  color: var(--ink);
  transition: color 150ms;
}

details.faq-item > summary::-webkit-details-marker { display: none; }

.faq-chev {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--muted);
  transition: transform 200ms, color 200ms;
}

details.faq-item[open] > summary { color: var(--primary); }
details.faq-item[open] .faq-chev { transform: rotate(180deg); color: var(--primary); }

.faq-ans {
  padding: 0 0 22px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-mid);
  max-width: 70ch;
}

/* ─── TEAM CTA ───────────────────────────────────────────────────────────── */
.team-cta {
  background: var(--primary);
  padding: clamp(40px, 6vh, 64px) 0;
}

.team-cta-inner {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.team-cta-text {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: clamp(20px, 2.5vw, 32px);
  color: var(--surface);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.team-cta-inner > a {
  flex-shrink: 0;
  background: var(--surface);
  color: var(--primary);
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  padding: 14px 26px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background 180ms, color 180ms;
}

.team-cta-inner > a:hover {
  background: var(--canvas);
  color: var(--primary);
  text-decoration: none;
}

/* ─── CONTACT (index) ────────────────────────────────────────────────────── */
.contact {
  padding: var(--section-py) 0;
  background: var(--canvas);
}

.contact-inner {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-inner > div h2 { font-size: clamp(28px, 3.5vw, 48px); margin-bottom: 28px; }

.c-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
}

.c-info-icon {
  width: 40px; height: 40px;
  flex-shrink: 0;
  background: var(--primary-dim);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-info-icon svg { width: 18px; height: 18px; color: var(--primary); }

.c-info-lbl {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}

.c-info-val {
  font-size: 15px;
  color: var(--ink);
  line-height: 1.5;
}

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

/* ─── CONTACT SECTION PAGE ───────────────────────────────────────────────── */
.contact-section {
  padding: var(--section-py) 0;
  background: var(--canvas);
}

.contact-grid {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 64px;
  align-items: start;
}

.contact-form-col h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  margin-bottom: 8px;
}

.contact-form-eyebrow { margin-bottom: 6px; }

.contact-form-sub {
  color: var(--muted);
  margin-bottom: 28px;
  font-size: 15px;
}

.contact-form { display: flex; flex-direction: column; gap: 4px; }

.contact-info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 4px solid var(--primary);
  border-radius: var(--radius-card);
  padding: 32px;
}

.info-card-eyebrow { margin-bottom: 20px; }

.info-block { margin-bottom: 24px; }
.info-block:last-child { margin-bottom: 0; }

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

.info-block-value {
  font-size: 15px;
  color: var(--ink);
  line-height: 1.5;
}

.info-block-value a { color: var(--primary); font-weight: 600; }
.info-block-value a:hover { text-decoration: underline; }

.info-phone-link {
  color: var(--primary);
  font-weight: 700;
  font-size: 18px;
}

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

.area-pill {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 4px 8px;
  color: var(--muted);
  background: var(--canvas);
}

.rating-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.rating-stars {
  display: flex;
  gap: 2px;
}

.rating-stars svg { width: 16px; height: 16px; color: var(--primary); }

.rating-text {
  font-size: 13px;
  color: var(--muted);
}

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info-card { max-width: 480px; }
}

/* ─── CTA BANNER ─────────────────────────────────────────────────────────── */
.cta-banner {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  padding: var(--section-py) 0;
}

.cta-banner > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
  opacity: 0.28;
  max-height: none !important;
}

.cta-banner-inner {
  position: relative;
  z-index: 2;
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 64px;
  align-items: center;
}

.cta-banner-left h2 {
  font-size: clamp(28px, 4vw, 56px);
  color: #fff;
  margin-bottom: 16px;
}

.cta-banner-eyebrow { color: var(--primary); }

.cta-banner-sub {
  color: rgba(255,255,255,0.7);
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 28px;
}

.cta-banner-title {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 4vw, 52px);
  color: #fff;
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

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

.cta-form {
  background: var(--surface);
  border-radius: var(--radius-card);
  padding: 32px;
  border-top: 4px solid var(--primary);
}

.cta-form h3 {
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 20px;
}

.cta-form-title {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--ink);
  margin-bottom: 20px;
  display: block;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cta-headline {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: clamp(24px, 3.5vw, 48px);
  color: #fff;
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.cta-sub {
  color: rgba(255,255,255,0.7);
  margin-bottom: 28px;
}

.cta-phone-big {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: clamp(20px, 2.5vw, 32px);
  color: var(--primary);
  display: block;
  margin-bottom: 20px;
}

.cta-banner-phone {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: clamp(16px, 2vw, 22px);
  color: var(--primary);
  display: block;
  margin-bottom: 20px;
  text-decoration: none;
}

.cta-banner-phone:hover { color: var(--primary-light); text-decoration: none; }

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

/* ─── ABOUT STORY ─────────────────────────────────────────────────────────── */
.about-story {
  padding: var(--section-py) 0;
  background: var(--surface);
}

.about-story-inner {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 80px;
  align-items: start;
}

.about-portrait-frame {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--surface-2);
}

.about-portrait-frame > img {
  width: 100%;
  object-fit: cover;
  max-height: 540px !important;
  border-radius: var(--radius-card);
}

.about-portrait-frame::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: var(--primary);
}

.about-story-text h2 {
  font-size: clamp(28px, 3.5vw, 48px);
  margin-bottom: 24px;
}

.about-body p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-mid);
  margin-bottom: 16px;
}

.drop-cap::first-letter {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 4em;
  float: left;
  line-height: 0.8;
  margin: 0.06em 0.12em 0 0;
  color: var(--primary);
}

.about-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.about-chips .trust-chip {
  background: var(--canvas);
  color: var(--ink);
  border-color: var(--border);
}

@media (max-width: 900px) {
  .about-story-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-portrait-frame > img { max-height: 360px !important; }
}

/* ─── ABOUT TWO COL ──────────────────────────────────────────────────────── */
.about-two-col {
  padding: var(--section-py) 0;
  background: var(--canvas);
}

.about-two-col-inner {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.about-two-col-left h2 { font-size: clamp(28px, 4vw, 52px); }

.about-two-col-right > p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-mid);
  margin-bottom: 16px;
}

.about-two-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.about-two-chips .trust-chip {
  background: var(--surface);
  color: var(--ink);
  border: 1px solid var(--primary);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: var(--radius-sm);
}

.about-services-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
  margin-top: 12px;
}

@media (max-width: 900px) {
  .about-two-col-inner { grid-template-columns: 1fr; gap: 32px; }
}

/* ─── VALUES ─────────────────────────────────────────────────────────────── */
.values-section {
  padding: var(--section-py) 0;
  background: var(--ink);
}

.values-inner {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
}

.values-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
  align-items: end;
}

.values-header h2 { font-size: clamp(28px, 4vw, 52px); color: #fff; }
.values-header .section-eyebrow { color: var(--primary); }

.values-intro {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  align-self: end;
}

.values-headline {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: clamp(24px, 3.5vw, 48px);
  color: #fff;
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.value-card {
  background: rgba(255,255,255,0.04);
  border-top: 2px solid rgba(123,181,5,0.3);
  padding: 28px 24px;
  transition: background 200ms, border-color 200ms;
}

.value-card:hover {
  background: rgba(123,181,5,0.08);
  border-top-color: var(--primary);
}

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

.value-card h3 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 10px;
}

.value-body {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .values-header { grid-template-columns: 1fr; gap: 20px; }
}

@media (max-width: 640px) {
  .values-grid { grid-template-columns: 1fr; }
}

/* ─── TIMELINE ───────────────────────────────────────────────────────────── */
.timeline-section {
  padding: var(--section-py) 0;
  background: var(--surface);
}

.timeline-inner {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
}

.timeline-inner > h2 {
  font-size: clamp(28px, 4vw, 52px);
  margin-bottom: 48px;
}

.timeline-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.timeline-track::before {
  content: '';
  position: absolute;
  top: 14px; left: 14px; right: 14px;
  height: 2px;
  background: linear-gradient(to right, var(--primary), rgba(123,181,5,0.3));
}

.timeline-step {
  padding: 0 20px;
  position: relative;
}

.timeline-dot {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--primary);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

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

.timeline-step h3 {
  font-size: 17px;
  margin-bottom: 8px;
  color: var(--ink);
}

.timeline-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

.timeline-headline {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: clamp(22px, 3vw, 38px);
  color: var(--ink);
  margin-bottom: 40px;
}

.timeline-title {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: clamp(20px, 2.5vw, 32px);
  color: var(--ink);
  margin-bottom: 8px;
}

@media (max-width: 900px) {
  .timeline-track { grid-template-columns: 1fr 1fr; gap: 32px; }
  .timeline-track::before { display: none; }
}

@media (max-width: 640px) {
  .timeline-track { grid-template-columns: 1fr; }
}

/* ─── CREW STRIP ─────────────────────────────────────────────────────────── */
.crew-strip {
  padding: var(--section-py) 0;
  background: var(--canvas);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.crew-strip-inner {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
}

.crew-strip-inner > h2 {
  font-size: clamp(28px, 4vw, 52px);
  margin-bottom: 40px;
}

.crew-headline {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: clamp(24px, 3.5vw, 48px);
  color: var(--ink);
  margin-bottom: 40px;
}

.crew-content {
  display: grid;
  grid-template-columns: auto 1px 1fr 1px auto;
  gap: 48px;
  align-items: center;
}

.crew-stat-block { text-align: center; }

.crew-stat-num {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: clamp(48px, 6vw, 72px);
  line-height: 1;
  color: var(--primary);
  letter-spacing: -0.03em;
  display: flex;
  align-items: baseline;
  justify-content: center;
}

.crew-stat-suffix {
  font-size: 0.5em;
  margin-left: 2px;
}

.crew-stat-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 8px;
}

.crew-divider-line {
  width: 1px;
  height: 80px;
  background: var(--border-mid);
  align-self: center;
}

.crew-quote-block { max-width: 400px; }

.crew-quote-mark {
  font-family: 'Archivo', sans-serif;
  font-size: 64px;
  color: var(--primary);
  line-height: 0.6;
  margin-bottom: 8px;
  font-weight: 800;
}

.crew-quote {
  font-family: 'IBM Plex Sans', sans-serif;
  font-style: italic;
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 12px;
}

.crew-quote-source {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--muted);
}

@media (max-width: 900px) {
  .crew-content {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }
  .crew-divider-line { display: none; }
}

@media (max-width: 640px) {
  .crew-content { grid-template-columns: 1fr; }
}

/* ─── PAGE HEADER ────────────────────────────────────────────────────────── */
.page-header {
  min-height: 52vh;
  display: flex;
  align-items: flex-end;
}

.page-header-overlay {
  position: absolute; inset: 0;
  background: rgba(20,24,29,0.5);
  z-index: 1;
}

.page-header-inner {
  position: relative;
  z-index: 2;
  max-width: var(--content-max);
  margin-inline: auto;
  padding: clamp(48px, 8vh, 80px) clamp(24px, 5vw, 64px);
  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: var(--primary);
  margin-bottom: 16px;
  display: block;
}

.page-header-inner h1, .page-title {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 6vw, 96px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: #fff;
  max-width: 18ch;
  margin-bottom: 16px;
}

.page-header-sub, .page-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  max-width: 56ch;
  line-height: 1.6;
}

.page-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: 12px;
}

.page-header-hairline {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--primary);
  z-index: 3;
}

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

.footer-inner, .footer-grid {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: 260px repeat(3, 1fr);
  gap: 48px;
  padding-bottom: clamp(40px, 6vh, 64px);
}

.footer-brand, .footer-brand-logo {
  display: block;
}

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

.footer-brand-tagline { color: rgba(255,255,255,0.45); font-size: 13px; margin-top: 10px; }

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

.footer-links, .footer-col ul {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a, .footer-col ul a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 150ms;
}

.footer-links a:hover, .footer-col ul a:hover {
  color: var(--primary);
  text-decoration: none;
}

.footer-contact-line, .footer-contact-item {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 8px;
  display: flex;
  gap: 8px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.footer-contact-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  min-width: 44px;
  margin-top: 2px;
}

.footer-contact-value { color: rgba(255,255,255,0.65); }
.footer-contact-value a, .footer-contact-line a { color: rgba(255,255,255,0.65); }
.footer-contact-value a:hover, .footer-contact-line a:hover { color: var(--primary); text-decoration: none; }

.footer-phone-link { color: var(--primary) !important; font-weight: 600; }
.footer-email-link { color: rgba(255,255,255,0.65); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  max-width: var(--content-max);
  margin-inline: auto;
  padding: 20px clamp(20px, 4vw, 48px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-copy, .footer-rating-badge, .footer-rating {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.28);
}

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

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

/* ─── MOBILE CTA PILL ────────────────────────────────────────────────────── */
.mobile-call-pill, .mobile-call, .mobile-sticky-cta, .mobile-cta {
  position: fixed;
  bottom: 18px; right: 18px;
  z-index: 999;
  display: flex;
  align-items: center;
}

.mobile-call-pill > a, .mobile-call > a, .mobile-sticky-cta > a, .mobile-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: var(--surface);
  padding: 14px 22px;
  border-radius: 999px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 18px 40px -10px rgba(0,0,0,0.45);
  transition: filter 180ms, transform 150ms;
  white-space: nowrap;
}

.mobile-call-pill > a:hover, .mobile-call > a:hover,
.mobile-sticky-cta > a:hover, .mobile-cta:hover {
  filter: brightness(0.92);
  transform: translateY(-2px);
  text-decoration: none;
  color: var(--surface);
}

.mobile-call-pill svg, .mobile-call svg, .mobile-sticky-cta svg, .mobile-cta svg {
  width: 18px; height: 18px;
  flex-shrink: 0;
}

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

/* ─── STATS ──────────────────────────────────────────────────────────────── */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 32px;
  padding: 80px 0;
  text-align: center;
}

.stat-num {
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 900;
  line-height: 1;
  color: var(--primary);
  font-family: 'Archivo', sans-serif;
}

.stat-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: clamp(11px, 1vw, 14px);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  margin-top: 8px;
}

/* ─── 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: 8px;
  border-top: 4px solid var(--primary);
}

.step-num {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
  letter-spacing: 0.12em;
}

/* ─── SECTION UTILITY ────────────────────────────────────────────────────── */
.section-title, .section-eyebrow + h2 {
  font-size: clamp(36px, 5vw, 72px);
}

/* ─── ANIMATION UTILITIES ────────────────────────────────────────────────── */
.fade-up  { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-left  { opacity: 0; transform: translateX(-28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-right { opacity: 0; transform: translateX(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.scale-in { opacity: 0; transform: scale(0.94); transition: opacity 0.5s ease, transform 0.5s ease; }

.stagger .fade-up:nth-child(1) { transition-delay: 0ms; }
.stagger .fade-up:nth-child(2) { transition-delay: 80ms; }
.stagger .fade-up:nth-child(3) { transition-delay: 160ms; }
.stagger .fade-up:nth-child(4) { transition-delay: 240ms; }
.stagger .fade-up:nth-child(5) { transition-delay: 320ms; }
.stagger .fade-up:nth-child(6) { transition-delay: 400ms; }
.stagger .fade-up:nth-child(7) { transition-delay: 480ms; }
.stagger .fade-up:nth-child(8) { transition-delay: 560ms; }

.fade-up.visible, .fade-left.visible, .fade-right.visible, .scale-in.visible {
  opacity: 1;
  transform: translate(0) scale(1);
}

/* ─── SECTION EYEBROW GLOBAL ─────────────────────────────────────────────── */
.section-eyebrow { color: var(--primary); margin-bottom: 10px; }

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

/* ─── TABLE CELLS ────────────────────────────────────────────────────────── */
table { width: 100%; border-collapse: collapse; }
thead th { padding: 12px 16px; text-align: left; }
tbody td { padding: 12px 16px; background: var(--surface); color: var(--ink); }
tbody tr:nth-child(even) td { background: var(--canvas); }
.services-table thead .col-service,
.services-table thead .col-desc,
.services-table thead .col-timeline,
.services-table thead .col-price {
  background: var(--ink);
  color: var(--surface);
}

/* ─── NO FLIP MIRROR ─────────────────────────────────────────────────────── */
.flip { order: -1; }

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

:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* SVG size caps inside flex/grid */
.c-info-icon svg, .gallery-stat svg { width: 18px; height: 18px; }
.rating-stars svg { width: 18px; height: 18px; }
.nav-cta svg { width: 16px; height: 16px; }
.faq-chev { width: 20px; height: 20px; }
.trust-star svg { width: 14px; height: 14px; }

/* ─── RESPONSIVE GLOBAL ──────────────────────────────────────────────────── */
@media (max-width: 1200px) {
  .footer-inner, .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-inner > div:first-child, .footer-grid > div:first-child { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  h2 { font-size: clamp(28px, 5vw, 52px); }
  .about-two-col-headline { font-size: clamp(24px, 4vw, 44px); }
}

@media (max-width: 640px) {
  .hero-ctas a { width: 100%; justify-content: center; }
  .cta-banner-actions { flex-direction: column; }
  .cta-actions { flex-direction: column; }
  .team-cta-inner { flex-direction: column; text-align: center; }
  .team-cta-inner > a { align-self: center; }
}


/* === Validator patches (auto-applied) === */
/* validator patch: grid children without placement → span full row */
.form-field { grid-column: 1 / -1; }
.footer-brand { grid-column: 1 / -1; }
.footer-col { grid-column: 1 / -1; }
.cta-banner-actions { grid-column: 1 / -1; }
.about-story-text { grid-column: 1 / -1; }
.crew-stat-block { grid-column: 1 / -1; }
.crew-divider-line { grid-column: 1 / -1; }
.crew-quote-block { grid-column: 1 / -1; }
.about-two-col-left { grid-column: 1 / -1; }
.about-two-col-right { 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; }
