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

/* ============================================================
   CUSTOM PROPERTIES
   ============================================================ */
:root {
  --primary:        #FFC300;
  --primary-dark:   #D9A600;
  --primary-dim:    rgba(255,195,0,0.12);
  --accent:         #1A1A1A;
  --canvas:         #FFFFFF;
  --surface:        #F7F4ED;
  --surface-2:      #EDEAE1;
  --ink:            #141414;
  --ink-mid:        #3A3831;
  --muted:          #6B665C;
  --muted-light:    #9E998F;
  --border:         rgba(20,20,20,0.1);
  --border-strong:  rgba(20,20,20,0.2);
  --invert-bg:      #141414;
  --invert-text:    #F7F4ED;
  --header-height:  72px;
}

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

/* ============================================================
   RESET + BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 16px);
  font-size: 16px;
}

body {
  font-family: 'Inter Tight', system-ui, sans-serif;
  font-weight: 500;
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--canvas);
  -webkit-font-smoothing: antialiased;
  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) {
  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;
}

.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; }
}

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

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

svg { display: block; }

/* ============================================================
   SCROLL PROGRESS BAR
   ============================================================ */
#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;
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container, .section-inner, .contact-inner, .gallery-inner,
.values-inner, .timeline-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 80px);
}

.wide-container { max-width: 1440px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 80px); }

/* Section vertical rhythm */
section, .trust-strip, .faq, .gallery, .gallery-section, .services, .intro,
.values-section, .timeline-section, .about-story, .about-secondary,
.crew-strip-section, .team-cta, .contact, .contact-section {
  padding: clamp(80px, 10vh, 160px) 0;
}

/* Surface alternation */
.trust-strip, .services, .values-section, .contact, .contact-section { background: var(--surface); }
.intro, .gallery, .gallery-section, .faq, .about-secondary, .crew-strip-section { background: var(--canvas); }
.about-story { background: var(--canvas); }
.team-cta { background: var(--invert-bg); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn, .btn-primary, .btn-dark, .btn-outline, .btn-service,
.btn-submit, .btn-primary-cta, .btn-outline-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 18px 32px;
  border-radius: 0;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 180ms, color 180ms, transform 180ms, filter 180ms;
  white-space: nowrap;
}
.btn-primary, .btn-submit, .btn-primary-cta {
  background: var(--primary);
  color: var(--ink);
}
.btn-primary:hover, .btn-submit:hover, .btn-primary-cta:hover {
  filter: brightness(0.92); color: var(--ink); text-decoration: none;
}
.btn-dark, .btn-service {
  background: var(--ink);
  color: var(--canvas);
}
.btn-dark:hover, .btn-service:hover {
  background: var(--primary); color: var(--ink); text-decoration: none;
}
.btn-outline, .btn-outline-cta {
  background: transparent;
  color: var(--canvas);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline:hover, .btn-outline-cta:hover {
  border-color: var(--primary); color: var(--primary); text-decoration: none;
}
.btn-phone {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent;
  color: var(--canvas);
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 18px 0;
  text-decoration: none;
  border-bottom: 2px solid rgba(255,255,255,0.3);
  transition: border-color 150ms, color 150ms;
}
.btn-phone:hover { border-color: var(--primary); color: var(--primary); text-decoration: none; }
.btn-phone svg { width: 18px; height: 18px; flex-shrink: 0; }

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

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

.nav-logo { flex: 0 0 auto; display: flex; align-items: center; }
.nav-logo img { max-height: 44px !important; }

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

.nav-cta {
  flex: 0 0 auto;
  background: var(--primary);
  color: var(--ink);
  padding: 10px 20px;
  border-radius: 0;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: filter 180ms;
  display: inline-flex; align-items: center; gap: 8px;
}
.nav-cta:hover { filter: brightness(0.92); color: var(--ink); text-decoration: none; }
.nav-cta .nav-cta-label { display: inline; }
.nav-cta svg { width: 18px; height: 18px; flex-shrink: 0; }

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

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-cta .nav-cta-label { display: none; }
  .nav-pages {
    display: none;
    flex-direction: column;
    position: absolute;
    top: var(--header-height);
    left: 0; right: 0;
    background: var(--canvas);
    padding: 24px clamp(20px, 4vw, 80px);
    gap: 4px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    z-index: 800;
    justify-content: flex-start;
  }
  .nav-pages.open { display: flex; }
  .nav-pages a { font-size: 16px; padding: 12px 0; border-bottom: 1px solid var(--border); width: 100%; }
  .top-nav { position: relative; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--invert-bg);
}

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

.hero-overlay {
  background: linear-gradient(
    to bottom,
    rgba(20,20,20,0.1) 0%,
    rgba(20,20,20,0.2) 40%,
    rgba(20,20,20,0.75) 75%,
    rgba(20,20,20,0.92) 100%
  );
}

/* brand-tinted overlay variant via pseudo */
.hero::after {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(255,195,0,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.hero-ribbon {
  position: absolute;
  top: clamp(80px, 10vh, 120px);
  right: clamp(20px, 4vw, 80px);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(20,20,20,0.7);
  border: 1px solid var(--primary);
  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(--canvas);
}
.hero-ribbon-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--primary);
  animation: pulse-dot 1.6s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

.hero-inner {
  padding: clamp(40px, 6vw, 80px) clamp(20px, 4vw, 80px) clamp(56px, 8vh, 100px);
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
}

.hero-eyebrow {
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  font-weight: 700;
  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);
  flex-shrink: 0;
}

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

.hero-sub {
  font-size: clamp(15px, 1.4vw, 18px);
  font-weight: 500;
  color: rgba(247,244,237,0.75);
  max-width: 52ch;
  line-height: 1.6;
  margin-bottom: 36px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0; margin: 0;
}
.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px;
  border: 1px solid rgba(255,195,0,0.5);
  background: rgba(20,20,20,0.4);
  backdrop-filter: blur(4px);
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(247,244,237,0.9);
  border-radius: 0;
}
.trust-chip-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .hero { min-height: 100svh; }
  .hero-title { font-size: clamp(44px, 11vw, 72px); }
  .hero-ribbon { display: none; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  padding: clamp(32px, 4vh, 56px) 0;
}
.trust-strip-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 80px);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border: 1px solid var(--primary);
  background: var(--canvas);
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
}
.trust-badge-accent {
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--primary);
  border-radius: 0;
  flex-shrink: 0;
}

/* About page trust strip variant */
.trust-strip:not(section) {
  background: var(--surface);
}
div.trust-strip .trust-strip-inner {
  gap: 14px;
}
div.trust-strip .trust-chip {
  padding: 8px 16px;
  border: 1px solid var(--primary);
  background: var(--canvas);
  color: var(--ink);
  backdrop-filter: none;
  gap: 8px;
}
div.trust-strip .trust-chip-dot {
  background: var(--primary);
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee, .marquee-strip {
  overflow: hidden;
  padding: 16px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--canvas);
  position: relative;
  z-index: 1;
}
.marquee-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: marquee-scroll 35s linear infinite;
  align-items: center;
}
.marquee:hover .marquee-track,
.marquee-strip:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: clamp(13px, 1.4vw, 16px);
  line-height: 1.2;
  color: var(--ink);
  display: inline-flex; align-items: center; gap: 48px;
}
.marquee-sep {
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--primary);
  border-radius: 50%;
  flex-shrink: 0;
  margin-left: 48px;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================================
   INTRO SECTION
   ============================================================ */
.intro { background: var(--canvas); }

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}
.intro-left { grid-column: 1; }
.intro-right { grid-column: 2; }

.intro-left h2 {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 24px;
}
.intro .section-eyebrow {
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
}
.intro .section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px; height: 2px;
  background: var(--primary); flex-shrink: 0;
}
.intro-body {
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 16px;
}
.intro-right .section-eyebrow { margin-bottom: 16px; }
.intro-stat {
  margin-bottom: 28px;
}
.intro-stat-num {
  display: block;
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 900;
  line-height: 1;
  color: var(--primary);
  letter-spacing: -0.02em;
}
.intro-stat-label {
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
  display: block;
}
.intro-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.intro-list li {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-mid);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}
.intro-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 8px; height: 2px;
  background: var(--primary);
}

@media (max-width: 900px) {
  .intro-grid { grid-template-columns: 1fr; }
  .intro-left, .intro-right { grid-column: 1; }
}

/* ============================================================
   SERVICES — TABBED PANEL
   ============================================================ */
.services { background: var(--surface); }

.services-header {
  margin-bottom: clamp(32px, 4vh, 56px);
}
.services-header h2 {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.services-header .section-eyebrow {
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 10px;
}
.services-header .section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px; height: 2px;
  background: var(--primary); flex-shrink: 0;
}

.services-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 0;
  border-bottom: 2px solid var(--border);
  padding-bottom: 0;
}
.service-tab {
  font-family: 'Archivo', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 20px;
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  color: var(--muted);
  transition: color 150ms, border-color 150ms, background 150ms;
  border-radius: 0;
  white-space: nowrap;
}
.service-tab:hover { color: var(--ink); background: rgba(0,0,0,0.03); }
.service-tab.active {
  color: var(--ink);
  border-bottom-color: var(--primary);
  background: transparent;
}

.services-panels { margin-top: 0; }
.service-panel {
  display: none;
  grid-template-columns: 45% 1fr;
  gap: 0;
  min-height: 480px;
  align-items: stretch;
}
.service-panel.active { display: grid; }

.service-panel-img {
  overflow: hidden;
  background: var(--accent);
  position: relative;
}
.service-panel-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: none;
  display: block;
  position: absolute;
  inset: 0;
}

.service-panel-body {
  padding: clamp(32px, 4vw, 56px);
  background: var(--canvas);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}
.service-panel-num {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 900;
  line-height: 1;
  color: var(--primary);
  letter-spacing: -0.02em;
  opacity: 0.25;
  display: block;
  margin-bottom: 8px;
}
.service-panel-body h3 {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(24px, 2.5vw, 36px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 16px;
}
.service-panel-title {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 16px;
  display: block;
}
.service-panel-desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 28px;
  max-width: 60ch;
}

@media (max-width: 900px) {
  .service-panel { grid-template-columns: 1fr; min-height: auto; }
  .service-panel-img { min-height: 280px; position: relative; }
  .service-panel-img img { position: absolute; inset: 0; }
}

/* Services page detail blocks */
.services-intro { background: var(--canvas); }
.services-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}
.services-intro-grid > div { grid-column: auto; }
.services-intro-grid h2 {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(36px, 4.5vw, 60px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 20px;
}
@media (max-width: 900px) {
  .services-intro-grid { grid-template-columns: 1fr; }
}

.service-block { background: var(--canvas); padding: clamp(64px, 8vh, 120px) 0; }
.service-block:nth-child(even) { background: var(--surface); }

.service-block-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.service-block-grid.photo-right .service-block-body { grid-column: 1; grid-row: 1; }
.service-block-grid.photo-right .service-block-photo { grid-column: 2; grid-row: 1; }
.service-block-grid.photo-left .service-block-photo { grid-column: 1; grid-row: 1; }
.service-block-grid.photo-left .service-block-body { grid-column: 2; grid-row: 1; }

.service-block-body h2 {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 16px;
}
.service-block-body .section-label {
  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: block;
}
.service-block-body p {
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 16px;
}
.service-bullets {
  list-style: none;
  padding: 0; margin: 0 0 28px;
  display: flex; flex-direction: column; gap: 10px;
}
.service-bullets li {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-mid);
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
}
.service-bullets li::before {
  content: '';
  position: absolute;
  left: 0; top: 10px;
  width: 10px; height: 2px;
  background: var(--primary);
}

.service-block-photo {
  position: relative;
  overflow: hidden;
  background: var(--accent);
}
.service-block-photo img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  max-height: none;
  display: block;
}
.service-block-photo-num {
  position: absolute;
  bottom: 16px; left: 20px;
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 900;
  line-height: 1;
  color: var(--primary);
  opacity: 0.35;
  letter-spacing: -0.02em;
  pointer-events: none;
}

@media (max-width: 900px) {
  .service-block-grid { grid-template-columns: 1fr; }
  .service-block-grid.photo-right .service-block-body,
  .service-block-grid.photo-left .service-block-body { grid-column: 1; grid-row: 2; }
  .service-block-grid.photo-right .service-block-photo,
  .service-block-grid.photo-left .service-block-photo { grid-column: 1; grid-row: 1; }
  .service-block-photo img { height: 280px; }
}

/* Impact band */
.impact-band {
  background: var(--invert-bg);
  padding: clamp(56px, 7vh, 96px) 0;
}
.impact-band-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 80px);
  text-align: center;
}
.impact-band-label {
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 20px;
}
.impact-band blockquote {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: clamp(24px, 3vw, 40px);
  line-height: 1.35;
  color: var(--invert-text);
  max-width: 70ch;
  margin: 0 auto 20px;
  font-weight: 400;
}
.impact-band-cite {
  font-size: 13px;
  color: rgba(247,244,237,0.5);
  font-family: 'Archivo', sans-serif;
  letter-spacing: 0.08em;
}

/* ============================================================
   ABOUT STORY (MAGAZINE LAYOUT)
   ============================================================ */
.about-story-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 80px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 100px);
  align-items: start;
}
.about-story-media { grid-column: 1; position: relative; }
.about-story-text { grid-column: 2; }

.about-story-media > img {
  width: 100%;
  height: clamp(400px, 55vh, 680px);
  object-fit: cover;
  display: block;
  max-height: none;
  position: relative;
  z-index: 1;
}
.about-story-color-block {
  position: absolute;
  bottom: -24px; left: -24px;
  width: 55%; height: 55%;
  background: var(--primary);
  z-index: 0;
}
.about-story-media img:first-of-type { position: relative; z-index: 2; }

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

.about-story-text h2 {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 28px;
}
.about-story-body p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 20px;
}
.about-pull-quote {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.4;
  color: var(--ink);
  border-left: 3px solid var(--primary);
  padding: 12px 0 12px 24px;
  margin: 32px 0;
}

@media (max-width: 900px) {
  .about-story-inner { grid-template-columns: 1fr; }
  .about-story-media, .about-story-text { grid-column: 1; }
}

/* VALUES */
.values-section { background: var(--surface); }
.values-inner { max-width: 1440px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 80px); }
.values-inner > h2, .values-inner > p.section-eyebrow {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 48px;
}
.values-inner p.section-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: 10px;
  font-size: 11px;
}
.values-inner > p.section-eyebrow::before {
  content: ''; display: inline-block;
  width: 24px; height: 2px; background: var(--primary); flex-shrink: 0;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.value-card {
  padding: 32px 28px;
  background: var(--canvas);
  border-top: 3px solid var(--primary);
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}
.value-card:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -16px rgba(0,0,0,0.15); }
.value-num {
  display: block;
  font-family: 'Archivo Black', sans-serif;
  font-size: 40px;
  font-weight: 900;
  color: var(--primary);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 12px;
}
.value-name {
  font-family: 'Archivo Black', sans-serif;
  font-size: 18px;
  font-weight: 900;
  color: var(--ink);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.value-desc { font-size: 15px; line-height: 1.65; color: var(--muted); }

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

/* TIMELINE */
.timeline-section { background: var(--canvas); }
.timeline-inner { max-width: 1440px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 80px); }
.timeline-inner > h2 {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 48px;
}
.timeline-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.timeline-track::before {
  content: '';
  position: absolute;
  top: 16px; left: 0; right: 0;
  height: 2px;
  background: var(--border-strong);
  z-index: 0;
}
.timeline-step {
  padding: 0 24px 0 0;
  position: relative;
  z-index: 1;
}
.timeline-dot {
  width: 32px; height: 32px;
  border-radius: 0;
  background: var(--canvas);
  border: 2px solid var(--primary);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.timeline-dot-inner {
  width: 12px; height: 12px;
  background: var(--primary);
}
.timeline-year {
  font-family: 'Archivo Black', sans-serif;
  font-size: 24px;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.timeline-label {
  font-family: 'Archivo', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 8px;
}
.timeline-desc { font-size: 14px; line-height: 1.6; color: var(--muted); }

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

/* CREW STRIP */
.crew-strip-section { background: var(--surface); }
.crew-strip-inner {
  max-width: 1440px; margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 80px);
}
.crew-strip-inner h2 {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 24px;
}
.crew-strip-inner p { font-size: 17px; line-height: 1.7; color: var(--muted); margin-bottom: 16px; }
.crew-strip-img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  margin-top: 32px;
}
.crew-strip-caption {
  font-family: 'Archivo', sans-serif;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-light);
  margin-top: 12px;
}

/* ABOUT SECONDARY */
.about-secondary { background: var(--canvas); }
.about-secondary-inner {
  max-width: 1440px; margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 80px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 100px);
  align-items: center;
}
.about-secondary-text { grid-column: 1; }
.about-secondary-image { grid-column: 2; position: relative; }

.about-secondary-text h2 {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 20px;
}
.about-secondary-text .section-eyebrow {
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 10px;
}
.about-secondary-text .section-eyebrow::before {
  content: ''; display: inline-block;
  width: 24px; height: 2px; background: var(--primary); flex-shrink: 0;
}
.about-secondary-text p {
  font-size: 16.5px; line-height: 1.7; color: var(--muted); margin-bottom: 16px;
}
.about-secondary-photo {
  width: 100%;
  height: clamp(360px, 48vh, 580px);
  object-fit: cover;
  max-height: none;
  display: block;
}
.about-secondary-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--primary);
  padding: 20px 24px;
  text-align: center;
}
.about-secondary-badge-label {
  display: block;
  font-family: 'Archivo Black', sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: var(--ink);
  line-height: 1;
}
.about-secondary-badge-sub {
  display: block;
  font-family: 'Archivo', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  margin-top: 4px;
}

@media (max-width: 900px) {
  .about-secondary-inner { grid-template-columns: 1fr; }
  .about-secondary-text, .about-secondary-image { grid-column: 1; }
  .about-secondary-badge { right: 0; bottom: -10px; }
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery, .gallery-section { background: var(--canvas); }
.gallery .section-inner, .gallery-inner {
  max-width: 1440px; margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 80px);
}

.gallery-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 40px;
}
.gallery-header h2 {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.gallery-header .section-eyebrow {
  font-family: 'Archivo', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--primary); margin-bottom: 10px;
}
.gallery-header-row {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 40px;
}
.gallery-section-eyebrow {
  font-family: 'Archivo', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--primary); margin-bottom: 10px;
}
.gallery-section-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.0; letter-spacing: -0.025em; color: var(--ink);
}
.gallery-count {
  font-family: 'Archivo', sans-serif;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 8px;
}
.gallery-cell {
  overflow: hidden;
  background: var(--accent);
  position: relative;
}
.gallery-cell img {
  width: 100%; height: 300px; object-fit: cover;
  display: block; max-height: none;
  transition: transform 400ms ease;
  filter: grayscale(15%);
}
.gallery-cell:hover img { transform: scale(1.04); filter: grayscale(0%); }
.gallery-cell-tall { grid-row: span 2; }
.gallery-cell-tall img { height: 100%; min-height: 608px; object-fit: cover; }

/* Gallery page projects grid */
.filter-strip {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 40px;
}
.filter-pill {
  font-family: 'Archivo', sans-serif;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 10px 18px;
  border: 1px solid var(--border);
  background: transparent;
  cursor: pointer;
  color: var(--muted);
  transition: background 150ms, color 150ms, border-color 150ms;
  border-radius: 0;
}
.filter-pill.active,
.filter-pill:hover { background: var(--primary); border-color: var(--primary); color: var(--ink); }

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.project-card {
  background: var(--surface);
  padding: 28px;
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
  cursor: default;
}
.project-card:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -16px rgba(0,0,0,0.18); }
.project-card.featured {
  grid-column: span 2;
  background: var(--invert-bg);
  color: var(--invert-text);
}
.card-top-row { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 16px; }
.card-index {
  font-family: 'Archivo Black', sans-serif;
  font-size: 40px; font-weight: 900;
  color: var(--primary); opacity: 0.3;
  line-height: 1;
}
.card-category-badge {
  font-family: 'Archivo', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 5px 12px;
  border: 1px solid var(--primary);
  color: var(--primary);
}
.featured-quote {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.4;
  color: var(--invert-text);
  margin-bottom: 16px;
}
.project-card h3 {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 900;
  line-height: 1.1; letter-spacing: -0.01em;
  margin-bottom: 12px;
  color: var(--ink);
}
.project-card.featured h3 { color: var(--invert-text); }
.card-desc { font-size: 14px; line-height: 1.65; color: var(--muted); margin-bottom: 20px; }
.project-card.featured .card-desc { color: rgba(247,244,237,0.7); }
.card-location {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; color: var(--muted-light); margin-bottom: 16px;
}
.card-location svg { width: 14px; height: 14px; flex-shrink: 0; }
.card-meta { display: flex; flex-wrap: wrap; gap: 12px; border-top: 1px solid var(--border); padding-top: 16px; }
.project-card.featured .card-meta { border-color: rgba(247,244,237,0.15); }
.card-meta-item { display: flex; flex-direction: column; gap: 3px; }
.meta-label { font-family: 'Archivo', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted-light); }
.meta-value { font-size: 14px; font-weight: 600; color: var(--ink); }
.project-card.featured .meta-value { color: var(--invert-text); }
.card-learn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Archivo', sans-serif; font-size: 12px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--primary); margin-top: 20px;
  text-decoration: none;
}
.card-learn svg { width: 16px; height: 16px; }
.card-learn:hover { text-decoration: underline; color: var(--primary); }

@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-cell-tall { grid-row: span 1; }
  .gallery-cell-tall img { min-height: auto; height: 240px; }
  .projects-grid { grid-template-columns: 1fr; }
  .project-card.featured { grid-column: 1; }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--canvas); }
.faq .section-inner {
  max-width: 1440px; margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 80px);
}
.faq-grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: clamp(48px, 7vw, 120px);
  align-items: start;
}
.faq-left { grid-column: 1; position: sticky; top: calc(var(--header-height) + 32px); }
.faq-right { grid-column: 2; }

.faq-left h2 {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 20px;
}
.faq-left .section-eyebrow {
  font-family: 'Archivo', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--primary); margin-bottom: 14px;
  display: flex; align-items: center; gap: 10px;
}
.faq-left .section-eyebrow::before {
  content: ''; display: inline-block;
  width: 24px; height: 2px; background: var(--primary); flex-shrink: 0;
}
.section-lead { font-size: 17px; line-height: 1.7; color: var(--muted); margin-bottom: 28px; }
.faq-list { display: flex; flex-direction: column; }

.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item summary {
  cursor: pointer;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  gap: 16px;
  transition: color 150ms;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--muted); transition: transform 200ms, color 200ms; }
.faq-item[open] summary { color: var(--primary); }
.faq-item[open] summary svg { transform: rotate(45deg); color: var(--primary); }
.faq-chevron { width: 20px; height: 20px; flex-shrink: 0; }
.faq-answer {
  padding: 0 0 22px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
}

/* Generic details.faq support from REQUIRED PATTERNS */
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; }

@media (max-width: 900px) {
  .faq-grid { grid-template-columns: 1fr; }
  .faq-left { grid-column: 1; position: static; }
  .faq-right { grid-column: 1; }
}

/* ============================================================
   TEAM CTA BAND
   ============================================================ */
.team-cta { padding: clamp(64px, 8vh, 100px) 0; }
.team-cta-inner {
  max-width: 1440px; margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 80px);
  display: flex; align-items: center; justify-content: center;
  text-align: center;
}
.team-cta-text {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--invert-text);
  max-width: 70ch;
}
.team-cta-text em {
  font-style: italic;
  color: var(--primary);
  font-family: 'Fraunces', serif;
  font-weight: 600;
}
.team-cta-inner > a {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 32px;
  background: var(--primary);
  color: var(--ink);
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 18px 36px;
  text-decoration: none;
  transition: filter 180ms;
}
.team-cta-inner > a:hover { filter: brightness(0.92); text-decoration: none; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  position: relative;
  overflow: hidden;
  background: var(--invert-bg);
  padding: clamp(64px, 8vh, 120px) 0;
}
.cta-banner-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
  opacity: 0.25;
  max-height: none;
}
.cta-banner-inner {
  max-width: 1440px; margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 80px);
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.cta-banner-left { grid-column: 1; }
.cta-banner-right { grid-column: 2; }
.cta-banner-left h2,
.cta-banner-headline,
.cta-banner-title {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(32px, 4.5vw, 64px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--invert-text);
  margin-bottom: 20px;
}
.cta-banner-headline span,
.cta-banner-title span { color: var(--primary); }
.cta-banner-eyebrow, .section-label ~ p, .cta-banner-left .section-label {
  font-family: 'Archivo', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--primary); margin-bottom: 14px;
  display: block;
}
.cta-banner-sub {
  font-size: 16px; line-height: 1.65;
  color: rgba(247,244,237,0.7);
  margin-bottom: 32px;
}
.cta-banner-address {
  font-size: 14px; line-height: 1.8;
  color: rgba(247,244,237,0.6);
  margin-bottom: 28px;
}
.cta-banner-actions {
  display: flex; flex-wrap: wrap; gap: 16px;
  align-items: center;
}
.cta-banner-phone, .cta-phone-big, .contact-phone-big {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(20px, 2.5vw, 32px);
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.01em;
  text-decoration: none;
}
.cta-banner-phone:hover { color: var(--primary); text-decoration: underline; }

/* CTA form */
.cta-form {
  display: flex; flex-direction: column; gap: 12px;
  background: rgba(247,244,237,0.06);
  border: 1px solid rgba(255,195,0,0.2);
  padding: 32px;
}
.form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.cta-form input, .cta-form textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(247,244,237,0.08);
  border: 1px solid rgba(247,244,237,0.15);
  color: var(--invert-text);
  font-family: 'Inter Tight', sans-serif;
  font-size: 15px;
  outline: none;
  transition: border-color 150ms;
  border-radius: 0;
}
.cta-form input::placeholder, .cta-form textarea::placeholder { color: rgba(247,244,237,0.4); }
.cta-form input:focus, .cta-form textarea:focus { border-color: var(--primary); }
.cta-form textarea { min-height: 100px; resize: vertical; }
.btn-submit {
  width: 100%; justify-content: center;
}
.btn-submit svg { width: 18px; height: 18px; flex-shrink: 0; }

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

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact, .contact-section { background: var(--surface); }
.contact .section-inner,
.contact-inner {
  max-width: 1440px; margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 80px);
}
.contact .section-inner > div:first-child,
.contact-section > .contact-inner > div:first-child {
  margin-bottom: 48px;
}
.contact .section-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: 10px;
}
.contact .section-eyebrow::before {
  content: ''; display: inline-block;
  width: 24px; height: 2px; background: var(--primary); flex-shrink: 0;
}
.contact h2 {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--ink);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}
.contact-form { grid-column: 1; display: flex; flex-direction: column; gap: 16px; }
.contact-info { grid-column: 2; }

.form-field {
  display: flex; flex-direction: column; gap: 6px;
}
.form-label {
  font-family: 'Archivo', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted);
}
.form-input,
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 14px 16px;
  background: var(--canvas);
  border: 1px solid var(--border-strong);
  color: var(--ink);
  font-family: 'Inter Tight', sans-serif;
  font-size: 15px;
  outline: none;
  transition: border-color 150ms;
  border-radius: 0;
  -webkit-appearance: none; appearance: none;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus { border-color: var(--primary); }
.contact-form textarea { min-height: 140px; resize: vertical; }

.contact-info-block {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.contact-info-block:last-child { border-bottom: none; }
.contact-info-label {
  font-family: 'Archivo', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted-light);
  margin-bottom: 6px;
}
.contact-info-val {
  font-size: 16px; font-weight: 500; color: var(--ink); line-height: 1.6;
}
.contact-info-val a { color: var(--ink); }
.contact-info-val a:hover { color: var(--primary); }

/* Contact page */
.contact-form-col { grid-column: 1; }
.contact-eyebrow {
  font-family: 'Archivo', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--primary); margin-bottom: 8px;
  display: block;
}
.contact-sub { font-size: 16px; line-height: 1.6; color: var(--muted); margin-bottom: 28px; }
.contact-form-col h2 {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 12px;
}
.contact-headline {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 12px;
}

.contact-info-card {
  background: var(--canvas);
  padding: clamp(24px, 3vw, 40px);
  border-top: 3px solid var(--primary);
}
.info-card-label {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 900;
  color: var(--ink);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.info-card-phone {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 12px;
  display: block;
}
.info-card-fax { font-size: 14px; color: var(--muted); margin-bottom: 0; }
.info-divider { height: 1px; background: var(--border); margin: 20px 0; }
.info-row {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 16px; padding: 12px 0;
}
.info-row-label {
  font-family: 'Archivo', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted); white-space: nowrap; flex-shrink: 0;
}
.info-row-value { font-size: 14px; color: var(--ink); line-height: 1.6; text-align: right; }
.info-row-value a { color: var(--primary); }

.service-area-pills {
  display: flex; flex-wrap: wrap; gap: 6px; justify-content: flex-end;
}
.area-pill {
  font-family: 'Archivo', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 4px 10px;
  border: 1px solid var(--primary);
  color: var(--ink);
}
.pledge-block {
  margin-top: 20px;
  padding: 16px 20px;
  background: var(--primary);
}
.pledge-text {
  font-family: 'Archivo', sans-serif;
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--ink); line-height: 1.5;
}

.field-group { display: flex; flex-direction: column; gap: 6px; }
.field-group label {
  font-family: 'Archivo', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted);
}
.field-group input,
.field-group select,
.field-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--canvas);
  border: 1px solid var(--border-strong);
  color: var(--ink);
  font-family: 'Inter Tight', sans-serif;
  font-size: 15px;
  outline: none;
  transition: border-color 150ms;
  border-radius: 0;
  -webkit-appearance: none; appearance: none;
}
.field-group input:focus,
.field-group select:focus,
.field-group textarea:focus { border-color: var(--primary); }
.field-group textarea { min-height: 120px; resize: vertical; }
.contact-section .form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}

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

/* ============================================================
   PAGE HEADER (sub-pages)
   ============================================================ */
.page-header {
  min-height: 45vh;
  display: flex; flex-direction: column; justify-content: flex-end;
  background: var(--invert-bg);
}
.page-header-overlay {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(to bottom, rgba(20,20,20,0.3) 0%, rgba(20,20,20,0.8) 100%);
}
.page-header-inner {
  position: relative; z-index: 2;
  padding: clamp(32px, 5vh, 64px) clamp(20px, 4vw, 80px) clamp(40px, 6vh, 80px);
  max-width: 1440px; margin: 0 auto; width: 100%;
}
.page-header-eyebrow {
  font-family: 'Archivo', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--primary); margin-bottom: 14px;
  display: flex; align-items: center; gap: 10px;
}
.page-header-eyebrow::before {
  content: ''; display: inline-block;
  width: 24px; height: 2px; background: var(--primary); flex-shrink: 0;
}
.page-header h1,
.page-header-title {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(40px, 6vw, 96px);
  line-height: 0.96;
  letter-spacing: -0.03em;
  color: var(--canvas);
  max-width: 18ch;
  margin-bottom: 16px;
}
.page-header-sub {
  font-size: clamp(15px, 1.4vw, 18px);
  color: rgba(247,244,237,0.7);
  max-width: 60ch; line-height: 1.6;
}

/* ============================================================
   SECTION UTILITIES (shared)
   ============================================================ */
.section-eyebrow, .section-label {
  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: block;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--invert-bg);
  color: var(--invert-text);
  padding: clamp(56px, 7vh, 96px) 0 0;
}
.footer-inner {
  max-width: 1440px; margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 80px);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  padding-bottom: clamp(48px, 6vh, 80px);
  border-bottom: 1px solid rgba(247,244,237,0.12);
}
.footer-brand { grid-column: 1; }
.footer-tagline {
  font-size: 13px; font-weight: 500;
  color: rgba(247,244,237,0.55);
  margin-top: 16px; margin-bottom: 8px; line-height: 1.6;
}
.footer-desc, .footer-brand > p:not(.footer-tagline) {
  font-size: 13px; line-height: 1.7;
  color: rgba(247,244,237,0.45);
}
.footer-brand-name {
  font-family: 'Archivo Black', sans-serif;
  font-size: 18px; font-weight: 900; color: var(--invert-text);
  margin-top: 12px;
}
.footer-col-title {
  font-family: 'Archivo', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(247,244,237,0.5); margin-bottom: 16px;
  display: block;
}
.footer-links, .footer-services-list,
.site-footer ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.footer-links a, .footer-services-list li,
.site-footer ul li a {
  font-size: 14px; color: rgba(247,244,237,0.65); text-decoration: none;
  transition: color 150ms;
}
.footer-links a:hover,
.site-footer ul li a:hover { color: var(--primary); text-decoration: none; }
.footer-contact-line {
  font-size: 13px; line-height: 1.9;
  color: rgba(247,244,237,0.55);
}
.footer-contact-line a { color: rgba(247,244,237,0.65); }
.footer-contact-line a:hover { color: var(--primary); }
.footer-contact-item {
  font-size: 13px; color: rgba(247,244,237,0.55); line-height: 1.7;
  margin-bottom: 4px;
}
.footer-contact-item a { color: rgba(247,244,237,0.65); }
.footer-contact-item a:hover { color: var(--primary); }
.footer-contact-items { display: flex; flex-direction: column; gap: 4px; }

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

.footer-bottom {
  padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-copy, .footer-legal, .footer-bottom span {
  font-size: 12px; color: rgba(247,244,237,0.35);
  letter-spacing: 0.04em;
}
.footer-badge { font-size: 12px; color: rgba(247,244,237,0.35); }

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

/* ============================================================
   MOBILE CALL PILL + STICKY CTA
   ============================================================ */
.mobile-call-pill, .mobile-sticky-cta, .mobile-cta {
  position: fixed;
  bottom: 18px; right: 18px;
  z-index: 999;
  background: var(--primary);
  color: var(--ink);
  display: flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  box-shadow: 0 18px 40px -10px rgba(0,0,0,0.45);
  font-family: 'Archivo', sans-serif;
  font-weight: 700; font-size: 13px;
  letter-spacing: 0.08em; text-transform: uppercase;
  text-decoration: none;
  transition: filter 180ms, transform 180ms;
}
.mobile-call-pill:hover,
.mobile-sticky-cta:hover,
.mobile-cta:hover { filter: brightness(0.92); transform: translateY(-2px); text-decoration: none; color: var(--ink); }
.mobile-call-pill svg, .mobile-sticky-cta svg, .mobile-cta svg { width: 20px; height: 20px; flex-shrink: 0; }
.mobile-sticky-cta a, .mobile-cta a {
  display: flex; align-items: center; gap: 10px;
  color: var(--ink); text-decoration: none;
}
.mobile-sticky-cta a svg, .mobile-cta a svg { width: 20px; height: 20px; }

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

/* ============================================================
   ANIMATION UTILITIES
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 600ms cubic-bezier(0.16, 1, 0.3, 1),
              transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 600ms cubic-bezier(0.16, 1, 0.3, 1),
              transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 600ms cubic-bezier(0.16, 1, 0.3, 1),
              transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
}
.scale-in {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 550ms cubic-bezier(0.16, 1, 0.3, 1),
              transform 550ms cubic-bezier(0.16, 1, 0.3, 1);
}
.stagger > * {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 500ms cubic-bezier(0.16, 1, 0.3, 1),
              transform 500ms cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up.visible,
.fade-left.visible,
.fade-right.visible,
.scale-in.visible { opacity: 1; transform: none; }
.stagger.visible > * { opacity: 1; transform: none; }
.stagger.visible > *:nth-child(1) { transition-delay: 0ms; }
.stagger.visible > *:nth-child(2) { transition-delay: 80ms; }
.stagger.visible > *:nth-child(3) { transition-delay: 160ms; }
.stagger.visible > *:nth-child(4) { transition-delay: 240ms; }
.stagger.visible > *:nth-child(5) { transition-delay: 320ms; }
.stagger.visible > *:nth-child(6) { transition-delay: 400ms; }
.stagger.visible > *:nth-child(7) { transition-delay: 480ms; }
.stagger.visible > *:nth-child(8) { transition-delay: 560ms; }

/* Already-visible on load */
.fade-up.visible, .fade-left.visible, .fade-right.visible { transition: none; }

/* ============================================================
   STAT COUNTER (used in intro)
   ============================================================ */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 32px; padding: 80px 0; text-align: center;
}
.stat-num {
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 900; line-height: 1; color: var(--primary);
  font-family: 'Archivo Black', sans-serif;
}
.stat-label {
  font-size: 11px; text-transform: uppercase;
  letter-spacing: 0.16em; color: var(--muted);
  margin-top: 8px; display: block;
  font-family: 'Archivo', sans-serif; font-weight: 700;
}

/* ============================================================
   PROCESS STRIP (utility)
   ============================================================ */
.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;
  font-family: 'Archivo', sans-serif;
}

/* ============================================================
   REVIEW CARDS
   ============================================================ */
.review-card { padding: 28px; background: var(--surface-2); }
.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; }

/* ============================================================
   SERVICE CARD HOVER (utility)
   ============================================================ */
.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);
}

/* ============================================================
   RESPONSIVE CATCH-ALL
   ============================================================ */
@media (max-width: 640px) {
  section, .trust-strip, .faq, .gallery, .gallery-section, .services, .intro,
  .values-section, .timeline-section, .about-story, .about-secondary,
  .crew-strip-section, .team-cta, .contact, .contact-section {
    padding: clamp(56px, 8vh, 96px) 0;
  }
  .gallery-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
}

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

/* Defensive unsized SVG cap */
svg:not([width]):not([height]):not(.hero-bg) {
  max-width: 24px; max-height: 24px;
}
.btn svg, .btn-primary svg, .btn-dark svg, .btn-service svg,
.btn-submit svg, .btn-primary-cta svg, .btn-outline-cta svg,
.btn-phone svg, .nav-cta svg,
.card-learn svg, .card-location svg { width: 18px; height: 18px; flex-shrink: 0; }
.faq-item summary svg, .faq-chevron { width: 20px; height: 20px; }


/* === Validator patches (auto-applied) === */
/* validator patch: grid children without placement → span full row */
.gallery-cell { grid-column: 1 / -1; }
.footer-col { grid-column: 1 / -1; }
.cta-banner-text { grid-column: 1 / -1; }
.cta-banner-actions { grid-column: 1 / -1; }
.field-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; }
