@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Archivo:wght@400;600;700&family=Fraunces:ital,wght@1,300;1,400;1,500&family=Inter+Tight:wght@400;500;600&display=swap');

/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --primary:       #4CAF50;
  --accent:        #2E7D32;
  --primary-dim:   #3d9e41;
  --primary-glow:  rgba(76,175,80,0.18);
  --canvas:        #0E0E0E;
  --surface:       #1A1A1A;
  --surface-2:     #222222;
  --surface-3:     #2a2a2a;
  --ink:           #FFFFFF;
  --muted:         rgba(255,255,255,0.65);
  --muted-2:       rgba(255,255,255,0.38);
  --border:        rgba(255,255,255,0.10);
  --border-brand:  rgba(76,175,80,0.35);
  --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);
  background: var(--canvas);
  color: var(--ink);
  font-family: 'Inter Tight', system-ui, sans-serif;
  font-size: 16.5px;
  font-weight: 500;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body { background: var(--canvas); 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: 44px !important;
  max-width: 200px !important;
  width: auto !important;
  align-self: flex-start !important;
  object-fit: contain !important;
  flex: 0 0 auto !important;
}

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

.hero { position: relative; overflow: hidden; }
.hero-bg, .hero > img:first-of-type {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.hero-inner, .hero > :not(img):not(.hero-bg):not(.hero-overlay):not(.hero-ribbon) {
  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; 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 reset */
h1 a, h2 a, h3 a, .hero-title a, .hero-eyebrow a, .hero-sub a {
  color: inherit; text-decoration: none; border-bottom: 0;
}

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

/* SVG cap */
svg { max-width: 100%; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, .display {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -0.03em;
  color: var(--ink);
}

h1 { font-size: clamp(48px, 8vw, 132px); }
h2 { font-size: clamp(36px, 5vw, 80px); }
h3 { font-size: clamp(22px, 3vw, 36px); line-height: 1.1; }
h4 { font-size: clamp(16px, 2vw, 22px); line-height: 1.2; letter-spacing: -0.01em; }

p { color: var(--muted); line-height: 1.72; }

.label-text {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container { max-width: 1200px; margin-inline: auto; padding-inline: clamp(20px, 4vw, 48px); }
.section-inner { max-width: 1440px; margin-inline: auto; padding-inline: clamp(20px, 4vw, 64px); }
.wide-container { max-width: 1440px; margin-inline: auto; padding-inline: clamp(20px, 4vw, 64px); }

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

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary, .btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #000;
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 18px 32px;
  border-radius: 0;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 180ms, transform 150ms;
  white-space: nowrap;
}
.btn-primary:hover, .btn-cta-primary:hover {
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-outline, .btn-phone, .btn-cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--ink);
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 17px 31px;
  border-radius: 0;
  border: 1px solid var(--border);
  cursor: pointer;
  text-decoration: none;
  transition: border-color 180ms, color 180ms, background 180ms;
  white-space: nowrap;
}
.btn-outline:hover, .btn-phone:hover, .btn-cta-phone:hover {
  border-color: var(--primary);
  color: var(--primary);
  text-decoration: none;
}

.btn-outline svg, .btn-phone svg, .btn-cta-phone svg,
.btn-primary svg, .btn-cta-primary svg {
  width: 18px; height: 18px; flex-shrink: 0;
}

.btn-service {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #000;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 24px;
  border-radius: 0;
  text-decoration: none;
  transition: background 180ms;
}
.btn-service:hover { background: var(--accent); color: #fff; text-decoration: none; }

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

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

.nav-logo {
  flex: 0 0 auto;
  text-decoration: none;
}
.nav-logo img {
  max-height: 44px !important;
  max-width: 180px !important;
  width: auto !important;
}
.nav-logo:hover { text-decoration: none; }

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

#navLinks a, .nav-pages a {
  display: inline-block;
  padding: 6px 0;
  font-family: 'Archivo', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 150ms;
}
#navLinks a:hover, .nav-pages a:hover { color: var(--primary); text-decoration: none; }
#navLinks a[aria-current="page"], .nav-pages a[aria-current="page"] {
  color: var(--primary);
  border-bottom: 2px solid var(--primary);
}

.nav-cta {
  flex: 0 0 auto;
  background: var(--primary);
  color: #000;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 0;
  text-decoration: none;
  white-space: nowrap;
  transition: background 150ms;
}
.nav-cta:hover { background: var(--accent); color: #fff; text-decoration: none; }
.nav-cta svg { width: 16px; height: 16px; }

.nav-toggle, #navToggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--ink);
  font-size: 24px;
  cursor: pointer;
  padding: 8px;
  line-height: 1;
  flex: 0 0 auto;
}

@media (max-width: 900px) {
  .nav-toggle, #navToggle { display: flex; align-items: center; justify-content: center; }

  #navLinks, .nav-pages {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0; right: 0;
    background: var(--canvas);
    padding: 24px 28px;
    gap: 4px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    z-index: 800;
    justify-content: flex-start;
    align-items: flex-start;
  }

  #navLinks.open, .nav-pages.open { display: flex; }

  #navLinks a, .nav-pages a {
    font-size: 16px;
    padding: 10px 0;
    width: 100%;
  }

  .nav-cta span { display: none; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--canvas);
}

.hero-overlay {
  background: linear-gradient(
    to bottom,
    rgba(14,14,14,0.3) 0%,
    rgba(14,14,14,0.15) 40%,
    rgba(14,14,14,0.7) 75%,
    rgba(14,14,14,0.95) 100%
  );
}

.hero-ribbon {
  position: absolute;
  top: clamp(80px, 10vh, 120px);
  right: clamp(20px, 4vw, 64px);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(14,14,14,0.85);
  border: 1px solid var(--border-brand);
  backdrop-filter: blur(8px);
  padding: 10px 18px;
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
}

.ribbon-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--primary);
  animation: pulse-dot 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(76,175,80,0.5); }
  50% { opacity: 0.85; transform: scale(1.15); box-shadow: 0 0 0 6px rgba(76,175,80,0); }
}

.hero-inner {
  padding: clamp(48px, 8vw, 120px) clamp(20px, 4vw, 64px) clamp(64px, 10vh, 120px);
  max-width: 1440px;
  width: 100%;
  margin-inline: auto;
}

.hero-eyebrow {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px; height: 2px;
  background: var(--primary);
}

.hero-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(56px, 8vw, 132px);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -0.03em;
  color: var(--ink);
  max-width: 18ch;
  margin-bottom: 28px;
}

.hero-sub {
  font-size: clamp(16px, 1.6vw, 20px);
  color: var(--muted);
  max-width: 52ch;
  margin-bottom: 36px;
  line-height: 1.6;
  font-weight: 500;
}

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

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

.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border-brand);
  padding: 7px 14px;
  font-family: 'Archivo', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  border-radius: 0;
}

/* ============================================================
   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: 1440px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 64px);
  display: flex;
  flex-wrap: wrap;
  gap: 16px 32px;
  align-items: center;
  justify-content: center;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--border-brand);
  padding: 8px 16px;
  font-family: 'Archivo', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.trust-badge svg { width: 18px; height: 18px; color: var(--primary); flex-shrink: 0; }

.trust-badge-contact {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border: 1px solid var(--border-brand);
}
.trust-badge-contact svg { width: 20px; height: 20px; color: var(--primary); flex-shrink: 0; }
.trust-badge-label {
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============================================================
   MARQUEE STRIP
   ============================================================ */
.marquee-strip {
  overflow: hidden;
  background: var(--primary);
  padding: 14px 0;
  border-top: 0;
  border-bottom: 0;
  position: relative;
  z-index: 1;
}

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

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

.marquee-item {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: clamp(13px, 1.4vw, 16px);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #000;
  display: flex;
  align-items: center;
  gap: 20px;
  line-height: 1.2;
}
.marquee-item::after {
  content: '✦';
  font-size: 10px;
  color: rgba(0,0,0,0.4);
}

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

/* ============================================================
   SECTION EYEBROW
   ============================================================ */
.section-eyebrow, .page-eyebrow, .service-eyebrow,
.story-eyebrow, .about-eyebrow, .values-eyebrow,
.timeline-eyebrow, .crew-eyebrow, .credentials-eyebrow,
.cta-banner-eyebrow, .page-header-eyebrow, .contact-form-label,
.team-cta-label {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
  display: block;
}

.section-title, .story-headline, .about-headline,
.values-title, .timeline-title, .crew-title,
.credentials-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(36px, 5vw, 80px);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: clamp(40px, 6vw, 72px);
}

/* ============================================================
   SERVICES (tabbed panel)
   ============================================================ */
.services {
  background: var(--canvas);
  padding: clamp(80px, 10vh, 140px) 0;
}

.services .section-inner {
  padding-bottom: 0;
}

.services-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0;
}

.service-tab {
  font-family: 'Archivo', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 12px 20px;
  cursor: pointer;
  transition: color 160ms, border-color 160ms;
  margin-bottom: -1px;
}
.service-tab:hover { color: var(--ink); }
.service-tab.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.services-panels { position: relative; }

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

.service-panel-img {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  min-height: 420px;
}
.service-panel-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: none !important;
}

.service-panel-body {
  padding: clamp(32px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--surface);
}

.service-index {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(64px, 8vw, 96px);
  font-weight: 900;
  line-height: 1;
  color: var(--primary);
  opacity: 0.2;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
  display: block;
}

.service-panel-title, .service-panel-body h3 {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 20px;
}

.service-panel-body p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 14px;
}

.service-panel-body a {
  align-self: flex-start;
  margin-top: 12px;
}

@media (max-width: 760px) {
  .service-panel { grid-template-columns: 1fr; }
  .service-panel-img { min-height: 240px; }
  .services-tabs { gap: 2px; }
  .service-tab { padding: 10px 12px; font-size: 11px; }
}

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats-strip {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: clamp(56px, 8vh, 100px) clamp(20px, 4vw, 64px);
}

.stats-grid {
  max-width: 1440px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-block { display: flex; flex-direction: column; align-items: center; gap: 10px; }

.stat-num {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 900;
  line-height: 1;
  color: var(--primary);
  letter-spacing: -0.04em;
  display: block;
}

.stat-label {
  font-family: 'Archivo', sans-serif;
  font-size: clamp(10px, 1vw, 12px);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-2);
  line-height: 1.4;
}

@media (max-width: 640px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   TEAM CTA
   ============================================================ */
.team-cta {
  background: var(--accent);
  padding: clamp(48px, 6vh, 80px) clamp(20px, 4vw, 64px);
}

.team-cta-inner {
  max-width: 1440px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.team-cta-label {
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.55);
  margin-bottom: 8px;
}

.team-cta-headline {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(24px, 3.5vw, 48px);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -0.02em;
  color: #000;
}

.team-cta-headline em {
  font-style: italic;
  font-family: 'Fraunces', serif;
  font-weight: 400;
}

.team-cta .btn-outline {
  color: #000;
  border-color: rgba(0,0,0,0.35);
}
.team-cta .btn-outline:hover {
  border-color: #000;
  background: rgba(0,0,0,0.08);
  color: #000;
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-section {
  background: var(--surface);
  padding: clamp(80px, 10vh, 140px) 0;
}

.reviews-section .section-inner {
  padding-bottom: 0;
}

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

.review-card {
  background: var(--surface-2);
  padding: clamp(28px, 3vw, 44px);
  border: 1px solid var(--border);
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}
.review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -16px rgba(76,175,80,0.15);
}

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

.review-quote {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 20px;
}

.review-attribution {
  font-family: 'Archivo', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.review-attribution strong { color: var(--muted); font-weight: 700; }

@media (max-width: 900px) { .reviews-grid { grid-template-columns: 1fr; gap: 2px; } }
@media (min-width: 640px) and (max-width: 900px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-section {
  background: var(--canvas);
  padding: clamp(80px, 10vh, 140px) 0;
}

.gallery-section .section-inner { padding-bottom: 0; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  padding-top: 0;
  padding-bottom: 0;
}

.gallery-tile {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--surface);
  cursor: pointer;
}
.gallery-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  max-height: none !important;
  transition: transform 600ms ease;
  filter: grayscale(20%) contrast(1.05);
}
.gallery-tile:hover img { transform: scale(1.04); filter: grayscale(0%) contrast(1.0); }

.gallery-tile-tall { aspect-ratio: 3 / 4; }

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

/* ============================================================
   SERVICE AREAS
   ============================================================ */
.service-areas {
  background: var(--surface);
  padding: clamp(80px, 10vh, 140px) 0;
}

.area-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.area-pill {
  display: inline-flex;
  align-items: center;
  padding: 9px 18px;
  border: 1px solid var(--border-brand);
  font-family: 'Archivo', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  transition: border-color 150ms, color 150ms;
}
.area-pill:hover { border-color: var(--primary); color: var(--primary); }

.area-chip {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  border: 1px solid var(--border-brand);
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.area-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }

/* ============================================================
   CREDENTIALS
   ============================================================ */
.credentials-section {
  background: var(--canvas);
  padding: clamp(80px, 10vh, 140px) 0;
}

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

.cred-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: clamp(28px, 3vw, 44px);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color 200ms;
}
.cred-card:hover { border-color: var(--border-brand); }

.cred-label {
  font-family: 'Archivo', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 4px;
}

.cred-value {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 900;
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
}

.cred-detail {
  font-size: 13px;
  color: var(--muted-2);
  line-height: 1.5;
}

/* Credentials (about.html) */
.credentials {
  background: var(--surface);
  padding: clamp(80px, 10vh, 140px) 0;
}

.credentials-inner {
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 64px);
}

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

.credential-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  padding: clamp(24px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color 200ms;
}
.credential-card:hover { border-color: var(--border-brand); }

.credential-badge-label {
  font-family: 'Archivo', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
  display: block;
  margin-bottom: 4px;
}

.credential-card h3 {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(16px, 1.8vw, 22px);
  font-weight: 900;
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.credential-detail {
  font-size: 13px;
  color: var(--muted-2);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .creds-grid, .credentials-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .creds-grid, .credentials-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-section {
  background: var(--surface);
  padding: clamp(80px, 10vh, 140px) 0;
}

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

details {
  border-bottom: 1px solid var(--border);
}

details > summary {
  cursor: pointer;
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ink);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  gap: 16px;
}
details > summary::-webkit-details-marker { display: none; }

.faq-chevron {
  width: 20px !important;
  height: 20px !important;
  flex-shrink: 0;
  color: var(--muted);
  transition: transform 220ms, color 220ms;
}
details[open] .faq-chevron {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq-answer {
  padding-bottom: 24px;
  font-size: 15px;
  line-height: 1.72;
  color: var(--muted);
  max-width: 70ch;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section {
  background: var(--canvas);
  padding: clamp(80px, 10vh, 140px) 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 55% 1fr;
  gap: 64px;
  align-items: start;
  margin-top: 48px;
}

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

.form-field, .form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

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

.contact-form-label, .contact-form-heading label,
.contact-form label, label {
  font-family: 'Archivo', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-2);
}

input, textarea, select {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--ink);
  font-family: 'Inter Tight', sans-serif;
  font-size: 15px;
  font-weight: 500;
  padding: 14px 16px;
  border-radius: 0;
  width: 100%;
  transition: border-color 180ms;
  appearance: none;
  -webkit-appearance: none;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--primary);
}
input::placeholder, textarea::placeholder { color: var(--muted-2); }

textarea { resize: vertical; min-height: 120px; }

select { cursor: pointer; }
select option { background: var(--surface); color: var(--ink); }

.form-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: #000;
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 18px 32px;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: background 180ms, transform 150ms;
  align-self: flex-start;
  margin-top: 8px;
}
.form-submit:hover { background: var(--accent); color: #fff; transform: translateY(-1px); }
.form-submit svg { width: 18px; height: 18px; }

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

.contact-info-item {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.contact-info-item:first-child { border-top: 1px solid var(--border); }

.contact-info-label {
  font-family: 'Archivo', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 6px;
}

.contact-info-value {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
}
.contact-info-value a { color: var(--ink); }
.contact-info-value a:hover { color: var(--primary); text-decoration: none; }

.contact-info-sub {
  font-size: 13px;
  color: var(--muted-2);
  line-height: 1.5;
  margin-top: 4px;
}

.contact-form-heading {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 32px;
}

/* contact.html variant */
.contact {
  background: var(--canvas);
  padding: clamp(80px, 10vh, 140px) 0;
}

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

.contact-form-col { display: flex; flex-direction: column; }

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

.info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: clamp(28px, 3vw, 44px);
}
.info-card h3 {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 24px;
}

.info-items { display: flex; flex-direction: column; gap: 20px; }

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.info-icon { flex-shrink: 0; }
.info-icon svg { width: 20px; height: 20px; color: var(--primary); }

.info-item-body { display: flex; flex-direction: column; gap: 2px; }
.info-item-label {
  font-family: 'Archivo', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.info-item-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
}
.info-item-value a { color: var(--ink); }
.info-item-value a:hover { color: var(--primary); text-decoration: none; }

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

.service-area-label {
  font-family: 'Archivo', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
  display: block;
}

.contact-trust {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 24px clamp(20px, 4vw, 64px);
}

.contact-trust-inner {
  max-width: 1440px;
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

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

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  padding: clamp(80px, 10vh, 140px) clamp(20px, 4vw, 64px);
}

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

.cta-banner-overlay, .cta-banner-bg {
  position: absolute;
  inset: 0;
  background: rgba(14,14,14,0.82);
  z-index: 1;
}

.cta-banner-accent {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 4px;
  background: var(--primary);
  z-index: 2;
}

.cta-banner-inner {
  position: relative;
  z-index: 2;
  max-width: 1440px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-banner-text { flex: 1; min-width: 280px; }

.cta-banner-eyebrow {
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
  display: block;
  margin-bottom: 12px;
}

.cta-banner-title, .cta-banner-headline {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(32px, 4.5vw, 72px);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 16px;
}

.cta-banner-sub {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
}

.cta-banner-phone {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(20px, 2.5vw, 32px);
  font-weight: 900;
  color: var(--primary);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.cta-banner-phone:hover { color: var(--accent); text-decoration: none; }

.cta-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

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

.page-header-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(14,14,14,0.4) 0%, rgba(14,14,14,0.85) 100%);
}

.page-header-inner {
  position: relative;
  z-index: 2;
  padding: clamp(40px, 6vw, 80px) clamp(20px, 4vw, 64px);
  max-width: 1440px;
  width: 100%;
  margin-inline: auto;
}

.page-header-eyebrow {
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
  display: block;
  margin-bottom: 14px;
}

.page-header-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(40px, 6vw, 96px);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 16px;
  max-width: 18ch;
}

.page-header-sub {
  font-size: clamp(15px, 1.5vw, 18px);
  color: var(--muted);
  max-width: 60ch;
  line-height: 1.6;
}

/* ============================================================
   SERVICES DETAIL (services.html)
   ============================================================ */
.services-detail {
  background: var(--canvas);
  padding: clamp(80px, 10vh, 140px) 0;
}

.service-row {
  display: grid;
  grid-template-columns: 50% 1fr;
  gap: 0;
  border-bottom: 1px solid var(--border);
  min-height: 560px;
}

.service-row.reverse {
  grid-template-columns: 1fr 50%;
}
.service-row.reverse .service-photo { order: 2; }
.service-row.reverse .service-body  { order: 1; }

.service-photo {
  position: relative;
  overflow: hidden;
  background: var(--surface);
}
.service-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: none !important;
  filter: grayscale(15%) contrast(1.06);
  transition: filter 400ms;
}
.service-row:hover .service-photo img { filter: grayscale(0%) contrast(1.0); }

.service-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(14,14,14,0.2) 0%, transparent 60%);
  z-index: 1;
}

.service-row.reverse .service-photo-overlay {
  background: linear-gradient(to left, rgba(14,14,14,0.2) 0%, transparent 60%);
}

.service-index {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 2;
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(56px, 7vw, 88px);
  font-weight: 900;
  line-height: 1;
  color: var(--primary);
  letter-spacing: -0.04em;
  opacity: 0.5;
}
.service-row.reverse .service-index { left: auto; right: 20px; }

.service-body {
  padding: clamp(40px, 5vw, 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--surface);
  gap: 20px;
}

.service-eyebrow {
  font-family: 'Archivo', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
  display: block;
}

.service-body h2 {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(28px, 3.5vw, 52px);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.service-desc p {
  font-size: 15px;
  line-height: 1.72;
  color: var(--muted);
}
.service-desc p + p { margin-top: 12px; }

.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-features li {
  font-family: 'Archivo', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 10px;
}
.service-features li::before {
  content: '';
  display: inline-block;
  width: 14px; height: 2px;
  background: var(--primary);
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .service-row, .service-row.reverse {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .service-row.reverse .service-photo { order: 0; }
  .service-row.reverse .service-body  { order: 1; }
  .service-photo { min-height: 260px; }
}

/* ============================================================
   GALLERY PAGE (gallery.html)
   ============================================================ */
.gallery-filter {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}

.gallery-filter-inner {
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 64px);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.filter-label {
  font-family: 'Archivo', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-right: 8px;
}

.filter-pill {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--muted);
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 7px 16px;
  cursor: pointer;
  border-radius: 0;
  transition: border-color 150ms, color 150ms, background 150ms;
}
.filter-pill:hover, .filter-pill.active {
  border-color: var(--primary);
  color: var(--primary);
}
.filter-pill.active { background: var(--primary-glow); }

/* Case Grid */
.case-grid-section {
  background: var(--canvas);
  padding: clamp(64px, 8vh, 120px) 0;
}

.case-grid-inner {
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 64px);
}

.case-grid-header {
  margin-bottom: 48px;
}
.case-grid-header h2 {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.case-grid-header p {
  font-size: 13px;
  color: var(--muted-2);
  letter-spacing: 0.06em;
  margin-bottom: 8px;
  text-transform: uppercase;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
}

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

.case-card {
  background: var(--surface);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
  overflow: hidden;
}
.case-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -16px rgba(0,0,0,0.5);
}

.case-card-img-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.case-card-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  max-height: none !important;
  transition: transform 500ms ease;
  filter: grayscale(15%);
}
.case-card:hover .case-card-img-wrap img { transform: scale(1.04); filter: grayscale(0%); }

.case-card-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--primary);
  color: #000;
  font-family: 'Archivo', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 4px 10px;
  z-index: 2;
}

.case-card-tag {
  position: absolute;
  bottom: 12px; right: 12px;
  background: rgba(14,14,14,0.8);
  color: var(--muted);
  font-family: 'Archivo', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 10px;
  border: 1px solid var(--border);
  z-index: 2;
}

.case-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.case-card-body h3 {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(15px, 1.5vw, 18px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.case-card-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: 16px;
  font-weight: 900;
  color: var(--ink);
}

.case-card-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
}
.case-card-location svg { width: 12px; height: 12px; flex-shrink: 0; }

.case-card-desc {
  font-size: 13px;
  color: var(--muted-2);
  line-height: 1.6;
}

.case-card-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
  border-top: 1px solid var(--border);
  padding-top: 12px;
}

.case-meta-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.case-meta-label {
  font-family: 'Archivo', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.case-meta-val {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}

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

/* ============================================================
   STORY (about.html)
   ============================================================ */
.story {
  background: var(--canvas);
  padding: clamp(80px, 10vh, 140px) 0;
}

.story-inner {
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 64px);
  display: grid;
  grid-template-columns: 45% 1fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: start;
}

.story-photo-col {
  position: relative;
}
.story-photo-col img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  max-height: none !important;
  display: block;
}

.story-photo-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 60%;
  height: 40%;
  background: var(--primary);
  z-index: -1;
}

.story-text-col { padding-top: 16px; }

.story-headline {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(32px, 4vw, 64px);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 28px;
}

.story-body p {
  font-size: 15px;
  line-height: 1.72;
  color: var(--muted);
  margin-bottom: 16px;
}

.story-pullquote {
  border-left: 3px solid var(--primary);
  padding: 16px 24px;
  margin: 28px 0;
}
.story-pullquote p {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .story-inner { grid-template-columns: 1fr; }
  .story-photo-col img { height: 360px; }
}

/* ============================================================
   ABOUT SECTION (about.html magazine layout)
   ============================================================ */
.about-section {
  background: var(--surface);
  padding: clamp(80px, 10vh, 140px) 0;
}

.about-inner {
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 64px);
  display: grid;
  grid-template-columns: 45% 1fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: start;
}

.about-photo-stack {
  position: relative;
}
.about-photo-stack > img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  max-height: none !important;
  display: block;
}

.about-photo-accent-block {
  position: absolute;
  top: 40px;
  right: -32px;
  width: 55%;
  height: 45%;
  background: var(--primary);
  z-index: -1;
}

.about-photo-main {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.about-photo-accent {
  position: absolute;
  inset: 0;
  background: var(--primary);
  z-index: -1;
}

.about-text { padding-top: 16px; }

.about-eyebrow {
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.about-eyebrow::before {
  content: '';
  display: block;
  width: 24px; height: 2px;
  background: var(--primary);
}

.about-headline {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(28px, 3.5vw, 52px);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 24px;
}

.about-body p {
  font-size: 15px;
  line-height: 1.72;
  color: var(--muted);
  margin-bottom: 16px;
}

.about-pullquote {
  border-left: 3px solid var(--primary);
  padding: 16px 24px;
  margin: 24px 0;
}
.about-pullquote p {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(17px, 1.8vw, 22px);
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .about-inner { grid-template-columns: 1fr; }
  .about-photo-stack > img { height: 360px; }
}

/* ============================================================
   VALUES (about.html)
   ============================================================ */
.values {
  background: var(--canvas);
  padding: clamp(80px, 10vh, 140px) 0;
}

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

.values-header { margin-bottom: 64px; }

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

.value-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: clamp(28px, 3vw, 44px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 200ms;
}
.value-card:hover { border-color: var(--border-brand); }

.value-num {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 900;
  line-height: 1;
  color: var(--primary);
  opacity: 0.3;
  letter-spacing: -0.04em;
  display: block;
}

.value-card h3 {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.value-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: 20px;
  font-weight: 900;
  color: var(--ink);
}

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

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

/* ============================================================
   TIMELINE (about.html)
   ============================================================ */
.timeline {
  background: var(--surface);
  padding: clamp(80px, 10vh, 140px) 0;
}

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

.timeline-header { margin-bottom: 64px; }

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

.timeline-step {
  background: var(--surface-2);
  border: 1px solid var(--border);
  padding: clamp(24px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.step-dot {
  width: 32px; height: 32px;
  background: var(--surface-3);
  border: 1px solid var(--border-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.step-dot-inner {
  width: 8px; height: 8px;
  background: var(--primary);
  border-radius: 50%;
}

.step-year {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 900;
  line-height: 1;
  color: var(--primary);
  letter-spacing: -0.02em;
  display: block;
}

.timeline-step h3 {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 900;
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.step-label {
  font-family: 'Archivo', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
}

.step-desc {
  font-size: 13px;
  line-height: 1.65;
  color: var(--muted);
}

@media (max-width: 900px) { .timeline-steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .timeline-steps { grid-template-columns: 1fr; } }

/* ============================================================
   CREW (about.html)
   ============================================================ */
.crew {
  background: var(--canvas);
  padding: clamp(80px, 10vh, 140px) 0;
}

.crew-inner {
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 64px);
  position: relative;
}

.crew-inner > img {
  width: 100%;
  height: clamp(300px, 50vh, 560px);
  object-fit: cover;
  max-height: none !important;
  display: block;
  filter: grayscale(20%) brightness(0.75);
}

.crew-strip-img {
  width: 100%;
  height: clamp(300px, 50vh, 560px);
  object-fit: cover;
  filter: grayscale(20%) brightness(0.75);
}

.crew-header {
  margin-bottom: 32px;
}

.crew-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 0;
}

.crew-caption {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.crew-caption-text {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.72;
  max-width: 60ch;
}

.crew-caption-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex-shrink: 0;
}

.crew-stat-num {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  line-height: 1;
  color: var(--primary);
  letter-spacing: -0.03em;
}

.crew-stat-label {
  font-family: 'Archivo', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-top: 4px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #080808;
  border-top: 1px solid var(--border);
  padding: clamp(64px, 8vh, 100px) 0 0;
}

.footer-inner {
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 64px);
}

.footer-grid {
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 64px);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
}

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

.footer-logo img, .footer-brand img {
  max-height: 44px !important;
  max-width: 180px !important;
  width: auto !important;
}

.footer-tagline {
  font-size: 13px;
  color: var(--muted-2);
  line-height: 1.65;
  max-width: 28ch;
}

.footer-contact-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-contact-line {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--muted-2);
  text-decoration: none;
}
.footer-contact-line svg { width: 16px; height: 16px; color: var(--primary); flex-shrink: 0; }
.footer-contact-line a { color: var(--muted-2); text-decoration: none; }
.footer-contact-line:hover, .footer-contact-line a:hover { color: var(--primary); text-decoration: none; }

.footer-contact-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--muted-2);
}
.footer-contact-list svg { width: 16px; height: 16px; color: var(--primary); flex-shrink: 0; }
.footer-contact-list a { color: var(--muted-2); text-decoration: none; }
.footer-contact-list a:hover { color: var(--primary); text-decoration: none; }

.footer-col, .footer-col-title, .footer-col-heading {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer-col-title, .footer-col-heading, .footer-col h4 {
  font-family: 'Archivo', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 20px;
  display: block;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links li a {
  font-size: 13px;
  color: var(--muted-2);
  text-decoration: none;
  transition: color 150ms;
}
.footer-links li a:hover { color: var(--primary); text-decoration: none; }

.footer-socials { display: flex; gap: 12px; margin-top: 8px; }
.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  color: var(--muted-2);
  transition: border-color 150ms, color 150ms;
}
.footer-social-link svg { width: 16px; height: 16px; }
.footer-social-link:hover { border-color: var(--primary); color: var(--primary); text-decoration: none; }

.footer-areas {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.footer-area-item, .footer-area {
  font-size: 11px;
  color: var(--muted-2);
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  letter-spacing: 0.06em;
}
.footer-area-item::after, .footer-area::after {
  content: '·';
  margin-left: 6px;
  color: var(--muted-2);
  opacity: 0.4;
}
.footer-area-item:last-child::after, .footer-area:last-child::after { content: ''; margin-left: 0; }

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

.footer-copy, .footer-bottom p {
  font-size: 12px;
  color: var(--muted-2);
  font-family: 'Archivo', sans-serif;
}

.footer-certs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-cert, .footer-cert-chip {
  font-family: 'Archivo', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-2);
  border: 1px solid var(--border);
  padding: 4px 10px;
}

.footer-creds {
  font-size: 12px;
  color: var(--muted-2);
  font-family: 'Archivo', sans-serif;
}

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

/* ============================================================
   MOBILE CALL PILL
   ============================================================ */
.mobile-cta, .mobile-cta-pill, .mobile-sticky-cta, .mobile-call-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 999;
  background: var(--primary);
  color: #000;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 22px;
  border-radius: 999px;
  box-shadow: 0 18px 40px -10px rgba(0,0,0,0.55), 0 4px 16px rgba(76,175,80,0.25);
  text-decoration: none;
  transition: background 180ms, transform 150ms;
}
.mobile-cta:hover, .mobile-cta-pill:hover, .mobile-sticky-cta:hover, .mobile-call-pill:hover {
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
}
.mobile-cta svg, .mobile-cta-pill svg, .mobile-sticky-cta svg, .mobile-call-pill svg {
  width: 20px; height: 20px; flex-shrink: 0;
}

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

/* ============================================================
   ANIMATION UTILITIES
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 600ms cubic-bezier(0.22,1,0.36,1), transform 600ms cubic-bezier(0.22,1,0.36,1);
}
.fade-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 650ms cubic-bezier(0.22,1,0.36,1), transform 650ms cubic-bezier(0.22,1,0.36,1);
}
.fade-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 650ms cubic-bezier(0.22,1,0.36,1), transform 650ms cubic-bezier(0.22,1,0.36,1);
}
.scale-in {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 550ms cubic-bezier(0.22,1,0.36,1), transform 550ms cubic-bezier(0.22,1,0.36,1);
}
.stagger { transition-delay: var(--stagger-delay, 0ms); }

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

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

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

/* ============================================================
   PROCESS STRIP (if used)
   ============================================================ */
.process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}
.process-step {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 0;
}
.step-num {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
  letter-spacing: 0.12em;
  font-family: 'Archivo', sans-serif;
  text-transform: uppercase;
}

/* ============================================================
   MISC SHARED
   ============================================================ */
.section-eyebrow::before {
  display: none;
}

/* Reverse layout helper (NO transform mirror) */
.reverse {
  direction: ltr;
}

/* Grain overlay — very subtle */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 8000;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
}

/* SVG caps for inline SVG without size attrs */
.trust-badge svg, .trust-badge-contact svg,
.review-stars svg, .faq-chevron,
.footer-contact-line svg, .footer-contact-list svg,
.footer-social-link svg, .info-icon svg,
.case-card-location svg, .btn-primary svg,
.btn-outline svg, .btn-phone svg, .btn-cta-phone svg,
.btn-cta-primary svg, .btn-service svg,
.form-submit svg, .mobile-cta svg, .mobile-cta-pill svg,
.mobile-sticky-cta svg, .mobile-call-pill svg,
.hero-ctas svg, .cta-banner-actions svg,
.nav-cta svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.faq-chevron { width: 20px !important; height: 20px !important; }

/* ============================================================
   RESPONSIVE OVERRIDES
   ============================================================ */
@media (max-width: 640px) {
  .hero { min-height: 100svh; }
  .hero-title { max-width: 100%; }
  .hero-ctas { flex-direction: column; }
  .reviews-grid { grid-template-columns: 1fr; }
  .team-cta-inner { flex-direction: column; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-banner-inner { flex-direction: column; }
  .story-inner { grid-template-columns: 1fr; }
  .about-inner { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .story-inner { grid-template-columns: 1fr; }
  .about-inner { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline-steps { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1200px) {
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
}


/* === Validator patches (auto-applied) === */
/* validator patch: grid children without placement → span full row */
.cred-card { grid-column: 1 / -1; }
.contact-form { grid-column: 1 / -1; }
.contact-info { grid-column: 1 / -1; }
.footer-brand { grid-column: 1 / -1; }
.service-photo { grid-column: 1 / -1; }
.footer-col { grid-column: 1 / -1; }
.footer-brand-col { grid-column: 1 / -1; }
.story-text-col { grid-column: 1 / -1; }
.form-group { 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; }
