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

/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --primary:        #DC641C;
  --primary-dark:   #b84e13;
  --primary-light:  #e8793e;
  --accent:         #ECB48C;
  --canvas:         #FFFFFF;
  --surface:        #F2F0EB;
  --ink:            #0C0C0F;
  --muted:          #5A5852;
  --border:         rgba(12,12,15,0.14);
  --border-solid:   #0C0C0F;
  --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;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 500;
  background: var(--canvas);
  color: var(--ink);
  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; }

.hero-split {
  display: grid; grid-template-columns: 60% 40%; min-height: 88vh; gap: 0;
}
.hero-split-text {
  background: var(--canvas); padding: clamp(48px, 7vw, 96px);
  display: flex; flex-direction: column; justify-content: center; z-index: 2;
}
.hero-split-photo { position: relative; overflow: hidden; background: transparent; }
.hero-split-photo > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 900px) {
  .hero-split { grid-template-columns: 1fr; min-height: auto; }
  .hero-split-photo { min-height: 60vw; order: -1; }
}

/* Heading anchors */
h1 a, h2 a, h3 a, .hero-title a, .hero-eyebrow a, .hero-sub a {
  color: inherit; text-decoration: none; border-bottom: 0;
}
h1 a:hover, h2 a:hover, h3 a:hover {
  text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 4px;
}

/* ============================================================
   TYPOGRAPHY SCALES
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
h1 { font-size: clamp(48px, 8.5vw, 132px); }
h2 { font-size: clamp(36px, 5vw, 72px); }
h3 { font-size: clamp(20px, 2.5vw, 32px); }

p { line-height: 1.65; }

/* Label style: IBM Plex Mono */
.section-label, .section-eyebrow, .service-eyebrow,
.hero-eyebrow, .cta-eyebrow, .cta-banner-label,
.founder-eyebrow, .journey-eyebrow,
.page-header-eyebrow, .contact-form-eyebrow, .info-col-label,
.info-block-label, .contact-info-label,
.footer-col-title, .footer-col-head, .step-num,
.timeline-label, .crew-card-role, .footer-tagline {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  font-size: clamp(10px, 1vw, 13px);
  text-transform: uppercase;
  letter-spacing: 0.10em;
  line-height: 1.3;
  color: var(--muted);
}

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

.btn, button {
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 700;
  border: none;
  cursor: pointer;
  border-radius: 0;
  transition: background 200ms, color 200ms, transform 150ms;
}

.btn-primary, .btn.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--primary); color: #fff;
  font-size: 15px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  padding: 18px 32px; border-radius: 0; text-decoration: none;
  border: 2px solid var(--primary);
}
.btn-primary:hover, .btn.btn-primary:hover {
  background: var(--primary-dark); border-color: var(--primary-dark);
  color: #fff; text-decoration: none; transform: translateY(-1px);
}

.btn-white {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff; color: var(--ink);
  font-size: 15px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  padding: 18px 32px; border-radius: 0; text-decoration: none;
  border: 2px solid #fff;
}
.btn-white:hover { background: var(--surface); color: var(--ink); text-decoration: none; }

.btn-outline-banner {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: #fff;
  font-size: 15px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  padding: 16px 30px; border: 2px solid rgba(255,255,255,0.7);
  text-decoration: none; transition: border-color 200ms, background 200ms;
}
.btn-outline-banner:hover { border-color: #fff; background: rgba(255,255,255,0.08); color: #fff; text-decoration: none; }

.btn-primary-banner {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--primary); color: #fff;
  font-size: 15px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  padding: 18px 32px; border-radius: 0; text-decoration: none;
  border: 2px solid var(--primary);
}
.btn-primary-banner:hover { background: var(--primary-dark); border-color: var(--primary-dark); color: #fff; text-decoration: none; }

.btn-phone {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: #fff;
  font-size: 15px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  padding: 16px 28px; border: 2px solid rgba(255,255,255,0.5);
  text-decoration: none;
}
.btn-phone:hover { border-color: #fff; color: #fff; text-decoration: none; }

.btn-service {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary); color: #fff;
  font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 14px 24px; border-radius: 0; text-decoration: none;
  border: 2px solid var(--primary); margin-top: 24px;
}
.btn-service:hover { background: var(--primary-dark); color: #fff; text-decoration: none; }
.btn-service svg { width: 16px; height: 16px; flex-shrink: 0; }

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

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

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

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

.nav-logo {
  flex: 0 0 auto; display: flex; align-items: center;
  text-decoration: none;
}
.nav-logo img {
  max-height: 44px; max-width: 200px; width: auto; object-fit: contain;
}
.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; color: var(--ink);
  text-decoration: none; letter-spacing: 0.06em; text-transform: uppercase;
  font-family: 'IBM Plex Mono', monospace;
  transition: color 150ms;
  border-bottom: 2px solid transparent;
}
.nav-pages a:hover {
  color: var(--primary); text-decoration: none;
  border-bottom-color: var(--primary);
}
.nav-pages a[aria-current="page"] {
  color: var(--primary); border-bottom-color: var(--primary);
}

.nav-cta {
  flex: 0 0 auto;
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary); color: #fff;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600; font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 10px 20px; border-radius: 0; text-decoration: none; white-space: nowrap;
}
.nav-cta:hover { background: var(--primary-dark); color: #fff; text-decoration: none; filter: brightness(0.92); }
.nav-cta svg { width: 16px; height: 16px; }

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

/* Mobile nav */
@media (max-width: 899px) {
  .nav-toggle { display: flex; }
  .nav-pages {
    display: none; position: absolute;
    top: var(--header-height); left: 0; right: 0;
    background: var(--canvas);
    flex-direction: column; gap: 0;
    padding: 16px 0 24px;
    border-bottom: 1px solid var(--border);
    z-index: 800;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .nav-pages.open { display: flex; }
  .nav-pages li { width: 100%; }
  .nav-pages a {
    display: block; padding: 12px clamp(20px, 4vw, 56px);
    border-bottom: none; font-size: 15px;
  }
  .nav-cta span { display: none; }
  .nav-cta { padding: 10px 14px; }
}

/* ============================================================
   HERO
   ============================================================ */
#hero.hero {
  min-height: clamp(560px, 92vh, 1000px);
  display: flex; flex-direction: column;
}

.hero > img:first-of-type,
.hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%; z-index: 0;
}

.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    115deg,
    rgba(12,12,15,0.82) 0%,
    rgba(12,12,15,0.64) 40%,
    rgba(12,12,15,0.28) 75%,
    rgba(12,12,15,0.12) 100%
  );
}

.booking-ribbon {
  position: relative; z-index: 2;
  background: var(--ink);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 10px clamp(20px, 4vw, 56px);
  display: flex; align-items: center; gap: 24px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--accent);
  white-space: nowrap; overflow: hidden;
}

.hero-inner {
  position: relative; z-index: 2;
  max-width: 1360px;
  margin: 0 auto;
  padding: clamp(48px, 8vh, 96px) clamp(20px, 4vw, 56px) clamp(56px, 9vh, 112px);
  display: flex; flex-direction: column; justify-content: flex-end;
  flex: 1;
}

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

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

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

.hero-ctas {
  display: flex; align-items: center; flex-wrap: wrap; gap: 12px;
  margin-bottom: 40px;
}
.hero-ctas a { flex: 0 0 auto; }

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

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

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

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

.trust-badge {
  display: flex; align-items: center; gap: 10px;
  padding: 18px 24px;
  border-right: 1px solid var(--border-solid);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; font-weight: 600; letter-spacing: 0.10em;
  text-transform: uppercase; color: var(--ink);
}
.trust-badge:last-child { border-right: none; }
.trust-badge svg { width: 18px; height: 18px; color: var(--primary); flex-shrink: 0; }

/* Also style .trust-chip when inside trust-strip / trust-inner on gallery / about pages */
.trust-inner .trust-chip {
  display: flex; align-items: center; gap: 10px;
  padding: 18px 24px;
  border-right: 1px solid var(--border-solid);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; font-weight: 600; letter-spacing: 0.10em;
  text-transform: uppercase; color: var(--ink);
}
.trust-inner .trust-chip:last-child { border-right: none; }
.trust-inner .trust-chip svg { width: 18px; height: 18px; color: var(--primary); flex-shrink: 0; }

/* ============================================================
   BRAND BAND (unique move: full-bleed brand-color type band)
   ============================================================ */
.brand-band {
  background: var(--primary);
  padding: clamp(40px, 5vw, 64px) 0;
  overflow: hidden;
}

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

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

.brand-band-meta {
  display: block; margin-top: 20px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.7);
}

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

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

.services-tabs {
  display: flex; flex-wrap: wrap; gap: 0;
  border: 1px solid var(--border-solid);
  margin: 32px 0 0;
  width: fit-content;
}

.service-tab {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600; font-size: 12px; letter-spacing: 0.10em;
  text-transform: uppercase;
  background: transparent; color: var(--ink);
  padding: 14px 22px;
  border: none; border-right: 1px solid var(--border-solid);
  cursor: pointer;
  transition: background 180ms, color 180ms;
  white-space: nowrap;
}
.service-tab:last-child { border-right: none; }
.service-tab:hover { background: var(--surface); }
.service-tab.active {
  background: var(--primary); color: #fff;
}

.services-panels { margin-top: 0; }

.service-panel {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border-solid);
  border-top: none;
}
.service-panel.active { display: grid; }

.service-panel > img,
.service-panel > .service-panel-photo {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  max-height: 480px; display: block;
}

/* The img inside service-panel needs special handling */
.service-panel img {
  width: 100%; height: 100%; min-height: 320px;
  object-fit: cover; max-height: 480px;
  grid-column: 1; grid-row: 1;
}

.service-panel-body {
  padding: clamp(28px, 4vw, 52px);
  display: flex; flex-direction: column; justify-content: center;
  background: var(--surface);
  grid-column: 2; grid-row: 1;
}
.service-panel-body h3 {
  font-size: clamp(22px, 2.8vw, 38px);
  margin-bottom: 16px;
}
.service-panel-body p {
  color: var(--muted); font-size: 15px; line-height: 1.65;
  margin-bottom: 10px;
}
.service-panel-body a { text-decoration: none; }

@media (max-width: 768px) {
  .service-panel.active { grid-template-columns: 1fr; }
  .service-panel img { grid-column: 1; grid-row: 1; min-height: 260px; }
  .service-panel-body { grid-column: 1; grid-row: 2; }
  .services-tabs { width: 100%; }
  .service-tab { flex: 1; min-width: 0; font-size: 10px; padding: 12px 10px; }
}

.services-cta-link {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 32px;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600; font-size: 12px; letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--primary); text-decoration: none;
  border-bottom: 2px solid var(--primary); padding-bottom: 2px;
}
.services-cta-link:hover { color: var(--primary-dark); border-bottom-color: var(--primary-dark); text-decoration: none; }
.services-cta-link svg { width: 18px; height: 18px; transition: transform 200ms; }
.services-cta-link:hover svg { transform: translateX(4px); }

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

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

.gallery-grid-preview {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 2px;
}
.gallery-grid-preview .gallery-tile { aspect-ratio: 4/3; overflow: hidden; position: relative; }
.gallery-grid-preview .gallery-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 400ms ease; }
.gallery-grid-preview .gallery-tile:hover img { transform: scale(1.03); }

.gallery-tile-featured {
  grid-column: 1;
  grid-row: 1 / 3;
  aspect-ratio: auto !important;
  min-height: 480px;
}
.gallery-tile-featured img { width: 100%; height: 100%; object-fit: cover; }

.gallery-cta-row {
  display: flex; gap: 16px; align-items: center; margin-top: 32px;
}

@media (max-width: 640px) {
  .gallery-grid-preview {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-tile-featured {
    grid-column: 1 / -1; grid-row: 1;
    min-height: 280px;
  }
}

/* ============================================================
   SERVICE AREAS
   ============================================================ */
.service-areas {
  background: var(--ink);
  padding: clamp(72px, 9vh, 112px) 0;
}

.service-areas-inner {
  max-width: 1360px; margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
}
.service-areas-inner h2 { color: #fff; margin-bottom: 12px; }
.service-areas-inner .section-label { color: var(--accent); margin-bottom: 32px; display: block; }

.areas-cloud {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; gap: 0;
  border: 1px solid rgba(255,255,255,0.2);
  width: fit-content;
  max-width: 100%;
}

.area-pill {
  padding: 12px 20px;
  border-right: 1px solid rgba(255,255,255,0.15);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; font-weight: 600; letter-spacing: 0.10em;
  text-transform: uppercase; color: rgba(255,255,255,0.8);
  transition: color 150ms, background 150ms;
}
.area-pill:last-child { border-right: none; }
.area-pill:hover { color: var(--accent); background: rgba(255,255,255,0.05); }

/* ============================================================
   PULLQUOTE
   ============================================================ */
.pullquote-section {
  background: var(--canvas);
  padding: clamp(72px, 9vh, 112px) 0;
  border-top: 1px solid var(--border-solid);
  border-bottom: 1px solid var(--border-solid);
}

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

.pullquote-mark {
  font-family: 'Archivo Black', sans-serif;
  font-size: 120px; line-height: 0.8;
  color: var(--primary); font-weight: 900;
  grid-column: 1;
}

.pullquote-inner > div { grid-column: 2; }

.pullquote-text {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(22px, 3vw, 42px);
  font-weight: 900; line-height: 1.1;
  text-transform: uppercase; letter-spacing: -0.02em;
  color: var(--ink); margin-bottom: 20px;
}

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

@media (max-width: 640px) {
  .pullquote-inner { grid-template-columns: 1fr; }
  .pullquote-mark { font-size: 72px; grid-column: 1; }
  .pullquote-inner > div { grid-column: 1; }
}

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

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

.cta-banner-left { grid-column: 1; }
.cta-banner-left h2, .cta-headline { color: #fff; }
.cta-banner-label, .cta-eyebrow {
  color: rgba(255,255,255,0.7); margin-bottom: 16px; display: block;
}
.cta-banner-left > p { color: rgba(255,255,255,0.8); margin-bottom: 28px; }
.cta-sub { color: rgba(255,255,255,0.75); font-size: 17px; line-height: 1.55; margin-top: 16px; }

.cta-phone-line { color: #fff; }
.cta-phone-line a { color: #fff; }
.cta-rating-stars { display: flex; gap: 4px; margin: 12px 0 6px; }
.cta-rating-stars svg { width: 20px; height: 20px; color: var(--accent); }
.cta-rating-count { color: rgba(255,255,255,0.75); font-size: 13px; }

.cta-banner-form, .cta-form {
  grid-column: 2;
  display: flex; flex-direction: column; gap: 12px;
  background: #fff; padding: 36px;
  border: 2px solid rgba(255,255,255,0.3);
}
.cta-banner-form input,
.cta-banner-form textarea,
.cta-form input,
.cta-form textarea {
  width: 100%;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 15px; font-weight: 500;
  padding: 14px 16px;
  border: 1px solid var(--border-solid);
  background: var(--canvas);
  color: var(--ink);
  border-radius: 0;
  outline: none;
}
.cta-banner-form input:focus,
.cta-banner-form textarea:focus,
.cta-form input:focus,
.cta-form textarea:focus {
  border-color: var(--primary);
}
.cta-banner-form textarea,
.cta-form textarea { min-height: 100px; resize: vertical; }

.cta-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.cta-form-submit {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--primary); color: #fff;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px; font-weight: 600; letter-spacing: 0.10em; text-transform: uppercase;
  padding: 18px 32px; border: 2px solid var(--primary);
  width: 100%; cursor: pointer;
  transition: background 200ms;
}
.cta-form-submit:hover { background: var(--primary-dark); border-color: var(--primary-dark); }
.cta-form-submit svg { width: 18px; height: 18px; }

.cta-banner-actions {
  display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px;
}
.cta-banner-aside { grid-column: 2; display: flex; flex-direction: column; gap: 12px; }
.cta-banner-aside-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.65);
  margin-bottom: 4px;
}
.cta-banner-phone {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(28px, 3.5vw, 52px); font-weight: 900;
  color: #fff; text-decoration: none;
}
.cta-banner-phone:hover { color: var(--accent); text-decoration: none; }

.cta-rating { display: flex; align-items: center; gap: 10px; }

/* gallery.html cta-banner variant */
.cta-left { grid-column: 1; }
.cta-right { grid-column: 2; }

@media (max-width: 768px) {
  .cta-banner-inner { grid-template-columns: 1fr; }
  .cta-banner-form, .cta-form { grid-column: 1; }
  .cta-banner-left { grid-column: 1; }
  .cta-left { grid-column: 1; }
  .cta-right { grid-column: 1; }
  .cta-banner-aside { grid-column: 1; }
}

/* ============================================================
   TEAM CTA BAND
   ============================================================ */
.team-cta {
  background: var(--ink);
  padding: clamp(48px, 6vh, 72px) 0;
  border-top: 3px solid var(--primary);
}

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

.team-cta-text {
  font-family: 'IBM Plex Mono', monospace;
  font-size: clamp(13px, 1.5vw, 16px); font-weight: 600;
  letter-spacing: 0.10em; text-transform: uppercase;
  color: #fff;
}

.team-cta-link {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--primary); color: #fff;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px; font-weight: 600; letter-spacing: 0.10em; text-transform: uppercase;
  padding: 16px 28px; text-decoration: none;
  border: 2px solid var(--primary);
}
.team-cta-link:hover { background: var(--primary-dark); color: #fff; text-decoration: none; }
.team-cta-link svg { width: 18px; height: 18px; }

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

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

.contact-inner > div:first-child { grid-column: 1; }
.contact-info { grid-column: 2; }

.contact-inner h2 { margin-bottom: 8px; }
.contact-inner .section-label { margin-bottom: 28px; display: block; }

.contact-form {
  display: flex; flex-direction: column; gap: 12px; margin-top: 0;
}
.contact-form input, .contact-form textarea {
  width: 100%;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 15px; font-weight: 500;
  padding: 14px 16px;
  border: 1px solid var(--border-solid);
  background: var(--canvas);
  color: var(--ink); border-radius: 0; outline: none;
}
.contact-form input:focus, .contact-form textarea:focus {
  border-color: var(--primary);
}
.contact-form textarea { min-height: 120px; resize: vertical; }

.contact-info-item {
  padding: 20px 0;
  border-bottom: 1px solid var(--border-solid);
  display: flex; flex-direction: column; gap: 6px;
}
.contact-info-item:first-child { border-top: 1px solid var(--border-solid); }
.contact-info-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--muted);
}
.contact-info-value {
  font-size: 16px; font-weight: 500; color: var(--ink);
}
.contact-info-item a {
  font-size: 17px; font-weight: 600; color: var(--primary);
}
.contact-info-item a:hover { color: var(--primary-dark); }

@media (max-width: 768px) {
  .contact-inner { grid-template-columns: 1fr; }
  .contact-inner > div:first-child { grid-column: 1; }
  .contact-info { grid-column: 1; }
}

/* ============================================================
   FORM STYLES (contact.html, gallery.html)
   ============================================================ */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-group { display: flex; flex-direction: column; gap: 6px; position: relative; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field-full { grid-column: 1 / -1; }

.form-label, label.form-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--muted);
}
/* Float label positioning */
.form-group label, .form-field label {
  position: absolute; top: 14px; left: 16px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; font-weight: 600; letter-spacing: 0.10em;
  text-transform: uppercase; color: var(--muted);
  pointer-events: none; transition: top 180ms, font-size 180ms;
}

.form-input, input.form-input,
.form-group input, .form-field input,
.form-group select, .form-select {
  width: 100%;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 15px; font-weight: 500;
  padding: 28px 16px 10px;
  border: 1px solid var(--border-solid);
  background: var(--canvas);
  color: var(--ink); border-radius: 0; outline: none;
  appearance: none;
}
.form-group input:focus, .form-field input:focus,
.form-group select:focus, .form-select:focus {
  border-color: var(--primary);
}
.form-textarea, textarea.form-textarea,
.form-group textarea, .form-field textarea {
  width: 100%;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 15px; font-weight: 500;
  padding: 28px 16px 10px;
  border: 1px solid var(--border-solid);
  background: var(--canvas);
  color: var(--ink); border-radius: 0; outline: none;
  min-height: 120px; resize: vertical;
}

.form-submit {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--primary); color: #fff;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px; font-weight: 600; letter-spacing: 0.10em; text-transform: uppercase;
  padding: 20px 32px; border: 2px solid var(--primary);
  width: 100%; cursor: pointer; margin-top: 8px;
  transition: background 200ms;
}
.form-submit:hover { background: var(--primary-dark); border-color: var(--primary-dark); }
.form-submit-arrow { font-size: 18px; font-weight: 300; }

/* ============================================================
   PAGE HEADER (sub pages)
   ============================================================ */
.page-header {
  min-height: clamp(320px, 42vh, 560px);
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-end;
  max-height: 64vh;
}

.page-header > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; object-position: center 30%;
  z-index: 0;
}

.page-header-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    to top,
    rgba(12,12,15,0.88) 0%,
    rgba(12,12,15,0.5) 50%,
    rgba(12,12,15,0.2) 100%
  );
}

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

.page-header-inner h1 {
  color: #fff;
  font-size: clamp(40px, 6vw, 96px);
}

.page-header-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 12px;
}
.page-header-title { color: #fff; }
.page-header-sub {
  font-size: 17px; color: rgba(255,255,255,0.75);
  margin-top: 12px; font-weight: 500;
}

/* ============================================================
   SERVICE FEATURE (services.html)
   ============================================================ */
.service-feature {
  padding: clamp(72px, 9vh, 112px) 0;
  border-bottom: 1px solid var(--border-solid);
}
.service-feature:nth-child(odd) { background: var(--canvas); }
.service-feature:nth-child(even) { background: var(--surface); }

.service-feature-inner {
  max-width: 1360px; margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.service-feature-inner.photo-right .service-photo-wrap { order: 2; }
.service-feature-inner.photo-right .service-body { order: 1; }

.service-photo-wrap {
  position: relative; overflow: hidden;
  aspect-ratio: 4/3;
  border: 1px solid var(--border-solid);
}
.service-photo-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  max-height: 520px;
  transition: transform 400ms ease;
}
.service-photo-wrap:hover img { transform: scale(1.03); }

.service-index {
  position: absolute; top: 16px; left: 16px;
  font-family: 'Archivo Black', sans-serif;
  font-size: 13px; font-weight: 900; letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--primary); color: #fff;
  padding: 6px 12px;
  z-index: 2;
}

.service-body { display: flex; flex-direction: column; }
.service-eyebrow { margin-bottom: 12px; display: block; }
.service-body h2 { margin-bottom: 16px; }
.service-body > p { color: var(--muted); line-height: 1.65; margin-bottom: 10px; }

.service-bullets {
  list-style: none; padding: 0; margin: 16px 0 0;
  display: flex; flex-direction: column; gap: 10px;
}
.service-bullets li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px; color: var(--muted); line-height: 1.5;
  padding-left: 16px; border-left: 2px solid var(--primary);
  padding-top: 2px; padding-bottom: 2px;
}

@media (max-width: 768px) {
  .service-feature-inner { grid-template-columns: 1fr; }
  .service-feature-inner.photo-right .service-photo-wrap { order: 0; }
  .service-feature-inner.photo-right .service-body { order: 0; }
}

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

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

.gallery-section-header {
  display: flex; align-items: baseline; gap: 20px;
  margin-bottom: 40px;
}
.gallery-section-header h2 { margin-bottom: 0; }
.gallery-section-meta {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; font-weight: 600; letter-spacing: 0.10em;
  text-transform: uppercase; color: var(--muted);
}
.gallery-section-title { /* same as h2 */ }

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

.gallery-card {
  display: flex; flex-direction: column;
  border: none; text-decoration: none; color: var(--ink);
  position: relative; overflow: hidden;
  transition: transform 250ms ease-out;
}
.gallery-card:hover { text-decoration: none; }
.gallery-card:hover .gallery-card-photo img { transform: scale(1.04); }

.gallery-card-featured {
  grid-column: 1 / 3;
  grid-row: 1;
}

.gallery-card-photo {
  position: relative; overflow: hidden;
  aspect-ratio: 4/3;
}
.gallery-card-featured .gallery-card-photo {
  aspect-ratio: 16/9;
}
.gallery-card-photo img {
  width: 100%; height: 100%; object-fit: cover;
  max-height: none;
  transition: transform 400ms ease;
}
.gallery-card-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(12,12,15,0.6) 0%, transparent 60%);
  z-index: 1;
}
.gallery-card-tag {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; font-weight: 600; letter-spacing: 0.10em;
  text-transform: uppercase; background: var(--primary); color: #fff;
  padding: 4px 10px;
}
.gallery-card-index {
  position: absolute; bottom: 12px; right: 12px; z-index: 2;
  font-family: 'Archivo Black', sans-serif;
  font-size: 36px; font-weight: 900; color: rgba(255,255,255,0.3);
  line-height: 1;
}

.gallery-card-body {
  padding: 18px 20px;
  background: var(--surface);
  border: 1px solid var(--border-solid);
  border-top: none; flex: 1;
}
.gallery-card-body h3 {
  font-size: clamp(14px, 1.5vw, 18px);
  margin-bottom: 6px;
}
.gallery-card-loc {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--muted);
  display: flex; align-items: center; gap: 6px; margin-bottom: 6px;
}
.gallery-card-loc svg { width: 12px; height: 12px; }
.gallery-card-desc { font-size: 13px; color: var(--muted); line-height: 1.5; }
.gallery-card-stats {
  display: flex; gap: 16px; margin-top: 10px; flex-wrap: wrap;
}
.g-stat {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--muted);
}
.g-stat-n { font-weight: 700; color: var(--primary); }
.g-stat-l { color: var(--muted); }

/* Stat + quote tiles inside gallery grid */
.gallery-tile-stat {
  background: var(--primary);
  padding: clamp(28px, 4vw, 48px);
  display: flex; flex-direction: column; justify-content: center;
  gap: 16px;
}
.gallery-tile-stat > div { display: flex; flex-direction: column; gap: 8px; }
.tile-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.7);
}
.tile-big-num {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(48px, 6vw, 88px); font-weight: 900; line-height: 0.9;
  color: #fff;
}
.tile-text { font-size: 15px; color: rgba(255,255,255,0.9); line-height: 1.5; }
.tile-link {
  color: #fff; text-decoration: underline; font-weight: 600;
  text-underline-offset: 4px;
}

.gallery-tile-quote {
  background: var(--ink);
  padding: clamp(28px, 4vw, 48px);
  display: flex; flex-direction: column; justify-content: center;
  gap: 12px;
}
.tile-quote-mark {
  font-family: 'Archivo Black', sans-serif;
  font-size: 64px; font-weight: 900; line-height: 0.8;
  color: var(--primary);
}
.tile-quote-text { font-size: 17px; color: #fff; line-height: 1.55; }
.tile-quote-attr {
  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.5);
}

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

@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-card-featured { grid-column: 1 / -1; }
}
@media (max-width: 580px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-card-featured { grid-column: 1; }
}

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

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

.founder-portrait-col { grid-column: 1; }
.founder-copy-col { grid-column: 2; }

.founder-portrait-wrap {
  position: relative; overflow: hidden;
  aspect-ratio: 3/4;
  border: 1px solid var(--border-solid);
  max-height: 520px;
}
.founder-portrait-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(20%);
  max-height: 520px;
}

.founder-portrait-label {
  background: var(--primary); color: #fff;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 12px 16px;
  border: 1px solid var(--primary);
  border-top: none;
}

.founder-stat-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border: 1px solid var(--border-solid);
  border-top: none;
  margin-top: 0;
}
.founder-stat {
  padding: 20px 16px;
  border-right: 1px solid var(--border-solid);
}
.founder-stat:last-child { border-right: none; }
.founder-stat-num {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(28px, 3vw, 44px); font-weight: 900; line-height: 1;
  color: var(--primary);
}
.founder-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: 6px;
}

.founder-eyebrow { margin-bottom: 16px; display: block; }
.founder-copy-col h2 { margin-bottom: 24px; }
.founder-headline { margin-bottom: 24px; }
.founder-body { display: flex; flex-direction: column; gap: 16px; }
.founder-body p { font-size: 16px; color: var(--muted); line-height: 1.7; }

@media (max-width: 768px) {
  .founder-story-inner { grid-template-columns: 1fr; }
  .founder-portrait-col { grid-column: 1; }
  .founder-copy-col { grid-column: 1; }
  .founder-portrait-wrap { aspect-ratio: 4/3; max-height: 360px; }
}

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

.values-inner {
  max-width: 1360px; margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
}
.values-inner h2 { margin-bottom: 12px; }
.section-eyebrow { margin-bottom: 40px; display: block; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border-solid);
  margin-top: 40px;
}

.value-card {
  padding: 32px 28px;
  border-right: 1px solid var(--border-solid);
  background: var(--surface);
  transition: background 200ms;
}
.value-card:last-child { border-right: none; }
.value-card:hover { background: var(--canvas); }

.value-num {
  display: block;
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(40px, 5vw, 72px); font-weight: 900; line-height: 0.9;
  color: var(--primary); letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.value-card h3 {
  font-size: clamp(15px, 1.6vw, 20px); margin-bottom: 10px;
}
.value-title { /* inside h3 */ }
.value-desc { font-size: 14px; color: var(--muted); line-height: 1.6; }

@media (max-width: 768px) {
  .values-grid { grid-template-columns: 1fr 1fr; }
  .value-card { border-bottom: 1px solid var(--border-solid); }
  .value-card:nth-child(2n) { border-right: none; }
}
@media (max-width: 500px) {
  .values-grid { grid-template-columns: 1fr; }
  .value-card { border-right: none; }
}

/* ============================================================
   JOURNEY / TIMELINE (about.html)
   ============================================================ */
.journey-section {
  background: var(--canvas);
  padding: clamp(72px, 9vh, 112px) 0;
  border-top: 1px solid var(--border-solid);
}

.journey-inner {
  max-width: 1360px; margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
}
.journey-inner h2 { margin-bottom: 12px; }
.journey-eyebrow { margin-bottom: 40px; display: block; }

.timeline-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border-solid);
  margin-top: 40px;
  counter-reset: timeline;
}

.timeline-step {
  padding: 32px 28px;
  border-right: 1px solid var(--border-solid);
  position: relative;
}
.timeline-step:last-child { border-right: none; }

.timeline-dot {
  width: 12px; height: 12px;
  background: var(--primary);
  margin-bottom: 16px;
}
.timeline-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--primary);
  margin-bottom: 10px; display: block;
}
.timeline-step h3 { font-size: clamp(14px, 1.5vw, 18px); margin-bottom: 10px; }
.timeline-title { /* inside h3 */ }
.timeline-desc { font-size: 14px; color: var(--muted); line-height: 1.6; }

@media (max-width: 768px) {
  .timeline-track { grid-template-columns: 1fr 1fr; }
  .timeline-step { border-bottom: 1px solid var(--border-solid); }
  .timeline-step:nth-child(2n) { border-right: none; }
}
@media (max-width: 500px) {
  .timeline-track { grid-template-columns: 1fr; }
  .timeline-step { border-right: none; }
}

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

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

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

.crew-card {
  border-right: 1px solid var(--border-solid);
  overflow: hidden;
  transition: transform 250ms ease-out;
}
.crew-card:last-child { border-right: none; }
.crew-card:hover { transform: translateY(-2px); }

.crew-card-photo {
  width: 100%; aspect-ratio: 3/4; overflow: hidden;
  max-height: 400px;
}
.crew-card-photo img,
.crew-card > img {
  width: 100%; height: 100%; object-fit: cover;
  aspect-ratio: 3/4; max-height: 400px;
  filter: grayscale(15%);
  transition: transform 400ms ease;
}
.crew-card:hover img { transform: scale(1.03); }

.crew-card-info {
  padding: 20px 24px;
  background: var(--canvas);
  border-top: 1px solid var(--border-solid);
}
.crew-card-name {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(16px, 1.8vw, 22px); font-weight: 900;
  text-transform: uppercase; letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.crew-card-role {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--primary);
}

@media (max-width: 640px) {
  .crew-strip { grid-template-columns: 1fr; }
  .crew-card { border-right: none; border-bottom: 1px solid var(--border-solid); }
  .crew-card:last-child { border-bottom: none; }
}

/* ============================================================
   CTA BANNER (about.html variant)
   ============================================================ */
#contact.cta-banner .cta-banner-inner {
  grid-template-columns: 1fr 1fr;
}
#contact.cta-banner .cta-banner-inner > div:first-child {
  grid-column: 1;
}
#contact.cta-banner .cta-banner-aside {
  grid-column: 2;
}

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

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

.contact-form-col { grid-column: 1; }
.contact-info-col { grid-column: 2; }

.contact-form-eyebrow { margin-bottom: 12px; display: block; }
.contact-form-title { margin-bottom: 32px; }

.info-col-label { margin-bottom: 24px; display: block; }

.info-block {
  padding: 20px 0;
  border-bottom: 1px solid var(--border-solid);
}
.info-block:first-of-type { border-top: 1px solid var(--border-solid); }
.info-block-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--muted);
  margin-bottom: 8px; display: block;
}
.info-block-value {
  font-size: 17px; font-weight: 600; color: var(--ink); line-height: 1.4;
}
.info-block-value a { color: var(--primary); }
.info-block-value a:hover { color: var(--primary-dark); }
.info-block-sub {
  font-size: 13px; color: var(--muted); margin-top: 4px;
}

.info-rating-row { display: flex; align-items: center; gap: 10px; margin-top: 10px; }
.info-stars { display: flex; gap: 3px; }
.info-stars svg { width: 16px; height: 16px; color: var(--primary); }
.info-rating-text {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--muted);
}

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

.social-links { display: flex; gap: 8px; margin-top: 10px; }
.social-link {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border: 1px solid var(--border-solid);
  color: var(--ink);
  transition: background 180ms, color 180ms;
}
.social-link:hover { background: var(--primary); color: #fff; border-color: var(--primary); text-decoration: none; }
.social-link svg { width: 18px; height: 18px; }

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

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.75);
  border-top: 3px solid var(--primary);
}

.footer-inner {
  max-width: 1360px; margin: 0 auto;
  padding: clamp(56px, 7vh, 88px) clamp(20px, 4vw, 56px) clamp(40px, 5vh, 64px);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(32px, 4vw, 56px);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(32px, 4vw, 56px);
  width: 100%;
}

.footer-brand { grid-column: 1; display: flex; flex-direction: column; gap: 14px; }
.footer-brand img { margin-bottom: 8px; }
.footer-brand-name {
  font-family: 'Archivo Black', sans-serif;
  font-size: 18px; font-weight: 900; text-transform: uppercase;
  color: #fff; margin-bottom: 4px;
}
.footer-tagline {
  font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.6;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600; font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase;
}
.footer-brand-desc {
  font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.65;
}
.footer-name {
  font-family: 'Archivo Black', sans-serif;
  font-size: 16px; font-weight: 900; text-transform: uppercase; color: #fff;
}
.footer-contact-row, .footer-contact-line {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: rgba(255,255,255,0.65);
  text-decoration: none;
}
.footer-contact-row a, .footer-contact-line a { color: rgba(255,255,255,0.65); }
.footer-contact-row:hover, .footer-contact-line:hover { color: var(--accent); text-decoration: none; }
.footer-contact-row svg, .footer-contact-line svg { width: 14px; height: 14px; flex-shrink: 0; color: var(--primary); }

.footer-contact-item {
  display: flex; flex-direction: column; gap: 4px;
  margin-bottom: 12px;
}
.footer-contact-item > div, .footer-contact-item > a {
  display: flex; align-items: center; gap: 8px;
}
.footer-contact-label {
  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.4);
}
.footer-contact-value { font-size: 14px; color: rgba(255,255,255,0.75); }

.footer-col { display: flex; flex-direction: column; gap: 14px; }
.footer-col-title, .footer-col-head {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(255,255,255,0.4);
  margin-bottom: 8px;
}
.footer-links { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 14px; color: rgba(255,255,255,0.65);
  text-decoration: none; transition: color 150ms;
}
.footer-links a:hover { color: var(--accent); text-decoration: none; }

.footer-area-label {
  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.35);
  margin-bottom: 4px;
}
.footer-area-text, .footer-area-val, .footer-area-value {
  font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.6;
  margin-bottom: 10px;
}
.footer-area-value a { color: rgba(255,255,255,0.6); }

.footer-rating-block { margin-top: 12px; }
.footer-rating-num {
  font-family: 'Archivo Black', sans-serif;
  font-size: 32px; font-weight: 900; color: var(--primary); display: block;
}
.footer-rating-info { display: flex; align-items: center; gap: 8px; margin-top: 4px; }
.footer-stars {
  font-size: 14px; color: var(--accent);
  font-family: 'IBM Plex Mono', monospace;
}
.footer-review-count { font-size: 12px; color: rgba(255,255,255,0.45); }
.footer-rating { font-size: 12px; color: rgba(255,255,255,0.45); }
.footer-phone-link { color: var(--accent); font-weight: 600; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.10);
  max-width: 1360px; margin: 0 auto;
  padding: 20px clamp(20px, 4vw, 56px);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  flex-wrap: wrap;
}
.footer-copy, .footer-copyright, .footer-legal {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; letter-spacing: 0.06em;
  color: rgba(255,255,255,0.35);
}

.footer-social-row { display: flex; gap: 8px; }
.footer-social-row a {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.15); color: rgba(255,255,255,0.5);
}
.footer-social-row a:hover { color: var(--accent); border-color: var(--accent); text-decoration: none; }
.footer-social-row svg { width: 16px; height: 16px; }

@media (max-width: 900px) {
  .footer-inner,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 580px) {
  .footer-inner,
  .footer-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   MOBILE CALL PILL / CTA
   ============================================================ */
.mobile-call-pill,
.mobile-call-btn,
.mobile-cta,
.mobile-cta-pill {
  position: fixed; bottom: 18px; right: 18px; z-index: 999;
  display: none;
}

.mobile-call-pill a,
.mobile-call-btn > a,
.mobile-cta > a,
.mobile-cta-pill > a {
  display: flex; align-items: center; gap: 10px;
  background: var(--primary); color: #fff;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 22px; border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 18px 40px -10px rgba(0,0,0,0.45);
  white-space: nowrap;
}
.mobile-call-pill a svg,
.mobile-call-btn svg,
.mobile-cta svg,
.mobile-cta-pill svg {
  width: 20px; height: 20px; flex-shrink: 0;
}

@media (max-width: 899px) {
  .mobile-call-pill,
  .mobile-call-btn,
  .mobile-cta,
  .mobile-cta-pill { display: block; }
}

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

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

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

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
details.faq { border-bottom: 1px solid var(--border); padding: 18px 0; }
details.faq > summary {
  cursor: pointer; font-weight: 600; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
}
details.faq > summary::-webkit-details-marker { display: none; }
details.faq > summary::after { content: "+"; font-weight: 300; transition: transform 200ms; }
details.faq[open] > summary::after { transform: rotate(45deg); color: var(--primary); }
details.faq p { margin-top: 12px; line-height: 1.6; }

/* ============================================================
   PROCESS / STAT / REVIEW (utility — required patterns)
   ============================================================ */
.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); }
.stat-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.16em; color: var(--muted); margin-top: 8px; }

.process { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 32px; }
.process-step { padding: 24px; border: 1px solid var(--border); }
.step-num { font-size: 14px; font-weight: 700; color: var(--primary); margin-bottom: 12px; letter-spacing: 0.12em; }

.review-card { padding: 28px; background: var(--surface-2, rgba(0,0,0,0.02)); }
.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; }

/* ============================================================
   TABLE CELLS (thead only dark bg)
   ============================================================ */
.services-table thead .col-service,
.services-table thead .col-desc,
.services-table thead .col-timeline,
.services-table thead .col-price {
  background: var(--ink); color: #fff;
}

/* ============================================================
   SECTION BASE
   ============================================================ */
.section {
  padding: clamp(72px, 9vh, 112px) 0;
}
.full-bleed { width: 100%; max-width: none; }
.split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px); align-items: center;
}

/* ============================================================
   UTILITY / MISC
   ============================================================ */
.section-label { margin-bottom: 8px; display: block; }
.section-headline { margin-bottom: 24px; }
.section-title { margin-bottom: 24px; }
.info-block svg { width: 18px; height: 18px; }
svg { flex-shrink: 0; }

/* Cap unsized SVGs in generic contexts */
.hero-ctas svg, .btn svg, .footer svg { width: 20px; height: 20px; }
.nav-cta svg { width: 16px; height: 16px; }
.cta-rating-stars svg { width: 20px; height: 20px; }
.cta-banner-form svg, .cta-form-submit svg { width: 18px; height: 18px; }

/* No-mirror rule */
.flip { order: 2; }

/* ============================================================
   RESPONSIVE OVERRIDES
   ============================================================ */
@media (max-width: 1200px) {
  .founder-story-inner { grid-template-columns: 280px 1fr; }
}

@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; }
  .cta-banner-inner { grid-template-columns: 1fr; }
  .cta-left, .cta-right { grid-column: 1; }
  .pullquote-mark { font-size: 80px; }
  .hero-trust-chips { flex-wrap: wrap; }
  .trust-chip { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.20); }
  .hero-trust-chips .trust-chip:last-child { border-bottom: none; }
}

@media (max-width: 640px) {
  h1 { font-size: clamp(40px, 12vw, 72px); }
  .hero-title { font-size: clamp(40px, 12vw, 72px); }
  .cta-banner-inner { grid-template-columns: 1fr; }
  .form-row, .form-row-2 { grid-template-columns: 1fr; }
  .team-cta-inner { flex-direction: column; align-items: flex-start; }
  .areas-cloud { width: 100%; }
  .area-pill { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.10); width: 100%; }
  .filter-inner { overflow-x: auto; flex-wrap: nowrap; }
}


/* === Validator patches (auto-applied) === */
/* validator patch: grid children without placement → span full row */
.gallery-tile { grid-column: 1 / -1; }
.footer-col { grid-column: 1 / -1; }
.service-photo-wrap { grid-column: 1 / -1; }
.service-body { grid-column: 1 / -1; }
.cta-banner-label { grid-column: 1 / -1; }
.cta-banner-phone { grid-column: 1 / -1; }
.cta-banner-actions { grid-column: 1 / -1; }
.form-field { grid-column: 1 / -1; }
.founder-stat { grid-column: 1 / -1; }
.form-group { 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; }
