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

/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --primary:        #2B744C;
  --accent:         #266C4A;
  --primary-dark:   #1e5337;
  --canvas:         #FFFFFF;
  --surface:        #F2F0EB;
  --ink:            #0C0C0F;
  --ink-mid:        #2a2a2d;
  --muted:          #5A5852;
  --border:         rgba(12,12,15,0.14);
  --border-solid:   #0C0C0F;
  --header-height:  72px;
}

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

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

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

body {
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 500;
  color: var(--ink);
  background: var(--canvas);
  -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; object-position: center 45%;
  z-index: 0;
}
.hero-inner,
.hero > :not(img):not(.hero-bg):not(.hero-overlay) { position: relative; z-index: 2; }
.hero-overlay { position: absolute; inset: 0; z-index: 1; pointer-events: none; }

.page-header,
[class*="page-header"],
.about-feature,
.about-hero { position: relative; overflow: hidden; max-height: 64vh; }

.page-header > img,
[class*="page-header"] > img,
.page-header-bg,
.about-feature > img:first-of-type,
.about-hero-bg,
.page-header img:first-of-type {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 45%;
  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; }

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

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

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

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

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

/* ============================================================
   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: 1360px;
  margin-inline: auto;
  padding-inline: clamp(16px, 3vw, 40px);
  display: flex;
  align-items: center;
  gap: 24px;
}

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

.nav-logo img {
  max-height: 44px !important;
  max-width: 180px !important;
}

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

.nav-pages a {
  display: inline-block;
  padding: 6px 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  font-family: 'IBM Plex Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 150ms;
}

.nav-pages a:hover { color: var(--primary); text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 6px; }
.nav-pages a[aria-current="page"] { color: var(--primary); border-bottom: 2px solid var(--primary); }

.nav-cta {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  padding: 10px 20px;
  border-radius: 0;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 150ms;
}

.nav-cta:hover { background: var(--primary-dark); color: #fff; text-decoration: none; }

.nav-cta-icon { width: 16px; height: 16px; flex-shrink: 0; }

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

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

  .nav-pages {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: var(--header-height);
    left: 0; right: 0;
    background: var(--canvas);
    padding: 20px clamp(16px, 4vw, 40px);
    gap: 4px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    z-index: 100;
  }

  .nav-pages.open { display: flex; }
  .nav-pages a { font-size: 15px; padding: 10px 0; width: 100%; }

  .nav-toggle { display: flex; }

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

/* ============================================================
   BUTTONS
   ============================================================ */
.btn,
.btn-primary,
.btn-primary-lg,
.btn-white,
.btn-outline-lg,
.btn-outline-white,
.btn-phone,
.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 0;
  cursor: pointer;
  transition: background 150ms, color 150ms, border-color 150ms;
  text-decoration: none;
  white-space: nowrap;
  border: 2px solid transparent;
  padding: 16px 28px;
  font-size: 13px;
}

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

.btn-white { background: #fff; color: var(--ink); border-color: #fff; }
.btn-white:hover { background: var(--surface); color: var(--ink); text-decoration: none; }

.btn-outline-lg,
.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.7);
}
.btn-outline-lg:hover,
.btn-outline-white:hover { border-color: #fff; color: #fff; text-decoration: none; }

.btn-phone { background: transparent; color: #fff; border-color: rgba(255,255,255,0.5); }
.btn-phone:hover { border-color: #fff; color: #fff; text-decoration: none; }

/* ============================================================
   HERO
   ============================================================ */
#hero.hero {
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(48px, 7vh, 88px);
}

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

.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    160deg,
    rgba(12,12,15,0.85) 0%,
    rgba(12,12,15,0.72) 40%,
    rgba(12,12,15,0.45) 100%
  );
}

.hero-inner {
  position: relative; z-index: 2;
  max-width: 1360px;
  width: 100%;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--primary);
  line-height: 1;
}

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

.hero-sub {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: clamp(15px, 1.6vw, 19px);
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  max-width: 52ch;
  line-height: 1.55;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}

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

.hero-trust-chips .trust-chip {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.88);
  border: 1px solid rgba(255,255,255,0.35);
  padding: 6px 12px;
  border-radius: 0;
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip,
div.trust-strip {
  background: var(--canvas);
  border-top: 1px solid var(--border-solid);
  border-bottom: 1px solid var(--border-solid);
}

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

.trust-chip-sq {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border: 2px solid var(--border-solid);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink);
  line-height: 1.3;
}

.trust-chip-sq svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--primary); }

.trust-chip-sq + .trust-chip-sq {
  border-left: none;
}

.trust-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border: 2px solid var(--border-solid);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink);
}

.trust-chip + .trust-chip { border-left: none; }

.trust-chip-accent {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* ============================================================
   BRAND BAND
   ============================================================ */
.brand-band {
  background: var(--primary);
  padding: clamp(48px, 7vh, 80px) 0;
  overflow: hidden;
}

.brand-band-inner {
  max-width: 1360px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  gap: 32px;
}

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

.brand-band-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.brand-band-chip {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.4);
  padding: 7px 14px;
}

.brand-band-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-band-stat-num {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 900;
  line-height: 1;
  color: #fff;
}

.brand-band-stat-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.7);
}

/* ============================================================
   MARQUEE STRIP
   ============================================================ */
.marquee-strip,
.service-areas-marquee {
  overflow: hidden;
  padding: 18px 0;
  border-top: 1px solid var(--border-solid);
  border-bottom: 1px solid var(--border-solid);
  background: var(--surface);
  position: relative;
  z-index: 1;
}

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

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

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

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-family: 'IBM Plex Mono', monospace;
  font-size: clamp(12px, 1.2vw, 15px);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-mid);
  padding: 0 28px;
}

.marquee-item span::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 0;
  margin-right: 20px;
  vertical-align: middle;
}

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

.services-inner {
  max-width: 1360px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.services-inner h2 {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--ink);
  max-width: 18ch;
}

/* Bento grid */
.services-bento {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2px;
  background: var(--border-solid);
}

.service-card-flagship {
  grid-column: 1;
}

.services-bento-right {
  grid-column: 2;
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 2px;
  background: var(--border-solid);
}

.services-grid-bottom {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border-solid);
}

/* Service cards */
.service-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: none;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  color: var(--ink);
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}

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

.service-card > img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  max-height: 220px;
  display: block;
}

.service-card-flagship > img {
  height: 380px;
  max-height: 380px;
}

.service-card-body {
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  border-top: 2px solid var(--border-solid);
  background: var(--canvas);
}

.flagship-body {
  padding: 28px 32px;
}

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

.flagship-body h3 {
  font-size: clamp(22px, 2.8vw, 34px);
}

.service-card-num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--primary);
  display: block;
  margin-bottom: 6px;
}

.service-card-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  margin-top: 4px;
}

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

.service-card-link svg { width: 16px; height: 16px; }

/* Lone card at bottom */
.services-inner > .fade-up:last-of-type .service-card {
  display: grid;
  grid-template-columns: 1fr 2fr;
}

.services-inner > .fade-up:last-of-type .service-card > img {
  height: 100%;
  min-height: 200px;
  max-height: 280px;
}

.services-inner > .fade-up:last-of-type .service-card-body {
  border-top: none;
  border-left: 2px solid var(--border-solid);
}

@media (max-width: 900px) {
  .services-bento { grid-template-columns: 1fr; }
  .service-card-flagship { grid-column: 1; }
  .services-bento-right { grid-template-rows: auto auto; grid-template-columns: 1fr 1fr; }
  .services-grid-bottom { grid-template-columns: 1fr 1fr; }
  .services-inner > .fade-up:last-of-type .service-card { grid-template-columns: 1fr; }
  .services-inner > .fade-up:last-of-type .service-card > img { max-height: 220px; }
  .services-inner > .fade-up:last-of-type .service-card-body { border-left: none; border-top: 2px solid var(--border-solid); }
}

@media (max-width: 640px) {
  .services-bento-right { grid-template-columns: 1fr; }
  .services-grid-bottom { grid-template-columns: 1fr; }
}

/* ============================================================
   SECTION LABELS
   ============================================================ */
.section-label,
.section-eyebrow,
.page-eyebrow,
.page-header-label,
.page-header-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--primary);
  display: block;
  margin-bottom: 16px;
}

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

.gallery-inner {
  max-width: 1360px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.gallery-inner h2 {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--ink);
}

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

.gallery-tile {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--ink);
  grid-column: auto;
}

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

.gallery-tile > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 400ms ease-out;
  filter: grayscale(15%);
}

.gallery-tile:hover > img { transform: scale(1.04); filter: grayscale(0%); }

@media (max-width: 640px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-tile-tall { aspect-ratio: 4/3; grid-row: auto; }
}

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

.faq-inner {
  max-width: 1360px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-inner h2 {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 48px;
}

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

.faq-inner details > summary {
  cursor: pointer;
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(16px, 1.8vw, 22px);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 24px 0;
  color: var(--ink);
}

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

.faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 220ms, color 220ms;
  color: var(--ink);
}

.faq-inner details[open] > summary .faq-chevron {
  transform: rotate(45deg);
  color: var(--primary);
}

.faq-answer {
  padding: 0 0 28px 0;
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 72ch;
}

/* ============================================================
   TEAM CTA STRIP
   ============================================================ */
.team-cta {
  background: var(--primary);
  padding: 40px 0;
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
}

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

.team-cta-text {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(18px, 2.5vw, 30px);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: #fff;
  line-height: 1.1;
}

.team-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--ink);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 16px 28px;
  border-radius: 0;
  text-decoration: none;
  white-space: nowrap;
  transition: background 150ms;
}

.team-cta-link svg { width: 18px; height: 18px; }
.team-cta-link:hover { background: var(--surface); color: var(--ink); text-decoration: none; }

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

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

.contact-form h2,
.contact-form-col h2 {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 3.5vw, 52px);
  line-height: 0.96;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 32px;
}

.contact-form h3,
.contact-info h3 {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 24px;
}

/* Forms */
.form-group,
.form-field {
  display: flex;
  flex-direction: column-reverse;
  gap: 6px;
  margin-bottom: 20px;
}

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

.form-row.full { grid-template-columns: 1fr; }

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

.form-group input,
.form-group textarea,
.form-field input,
.form-field textarea,
.form-field select,
.contact-form input,
.contact-form textarea,
.contact-form select {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  background: var(--canvas);
  border: 2px solid var(--border-solid);
  border-radius: 0;
  padding: 14px 16px;
  width: 100%;
  outline: none;
  transition: border-color 150ms;
}

.form-group input:focus,
.form-group textarea:focus,
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus,
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--primary); }

.form-group textarea,
.form-field textarea,
.contact-form textarea { min-height: 120px; resize: vertical; }

.form-submit,
.form-submit-row { margin-top: 8px; }

.btn-submit,
.form-submit button {
  background: var(--primary);
  color: #fff;
  border: 2px solid var(--primary);
  padding: 18px 36px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  border-radius: 0;
  transition: background 150ms;
}

.btn-submit:hover,
.form-submit button:hover { background: var(--primary-dark); border-color: var(--primary-dark); }

.form-note {
  font-size: 12px;
  color: var(--muted);
  display: block;
  margin-top: 8px;
}

/* Contact info */
.contact-info,
.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-top: 8px;
}

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

.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--canvas);
  border: 2px solid var(--border-solid);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg { width: 20px; height: 20px; color: var(--primary); }

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

.contact-value {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.5;
}

.hours-list p,
.hours-grid span {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 16px;
}

.hours-day { font-weight: 600; color: var(--ink); }

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

/* ============================================================
   FOOTER
   ============================================================ */
.footer,
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.82);
  padding: clamp(56px, 7vh, 96px) 0 0;
}

.footer-inner,
.footer-grid {
  max-width: 1360px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 56px);
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: clamp(32px, 4vw, 56px);
  padding-bottom: 48px;
}

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

.footer-brand-name {
  font-family: 'Archivo Black', sans-serif;
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: -0.01em;
}

.footer-tagline {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,0.6);
}

.footer-bio,
.footer-mission,
.footer-about {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255,255,255,0.6);
}

.footer-col h4,
.footer-col-title,
.footer-col-heading,
.site-footer h3 {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 16px;
}

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

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

.footer-links a:hover,
.footer-col ul a:hover { color: #fff; text-decoration: none; }

.footer-info-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 10px;
}

.footer-info-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  white-space: nowrap;
  min-width: 60px;
}

.footer-info-val,
.footer-info-val a {
  font-size: 14px;
  color: rgba(255,255,255,0.72);
}

.footer-hours,
.footer-hours-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-hour-row,
.footer-hours-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.footer-hour-day,
.footer-hours-day {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
}

.footer-hour-time {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}

.footer-contact-line {
  display: flex;
  gap: 12px;
}

.footer-contact-line a {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
}

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

.footer-bottom p,
.footer-copy,
.footer-bottom-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}

.footer-trust-line,
.footer-bottom-trust {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.footer-trust-chip {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.45);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 4px 10px;
}

.footer-logo,
.footer-logo-wrap {
  display: flex;
  align-items: center;
}

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

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

/* ============================================================
   MOBILE CALL PILL
   ============================================================ */
.mobile-cta,
.mobile-cta-pill,
.mobile-sticky-call,
.mobile-sticky-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 999;
  background: var(--primary);
  color: #fff;
  width: 56px;
  height: 56px;
  border-radius: 0;
  box-shadow: 0 18px 40px -10px rgba(0,0,0,0.45);
  text-decoration: none;
  transition: background 150ms;
}

.mobile-cta svg,
.mobile-cta-pill svg,
.mobile-sticky-call svg,
.mobile-sticky-cta svg,
.mobile-cta > a svg,
.mobile-sticky-call > a svg,
.mobile-sticky-cta > a svg {
  width: 24px;
  height: 24px;
  color: #fff;
}

.mobile-cta > a,
.mobile-sticky-call > a,
.mobile-sticky-cta > a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #fff;
}

.mobile-cta:hover,
.mobile-cta-pill:hover,
.mobile-sticky-call:hover,
.mobile-sticky-cta:hover { background: var(--primary-dark); }

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

/* ============================================================
   PAGE HEADER (sub-pages)
   ============================================================ */
.page-header {
  min-height: 52vh;
  max-height: 64vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(40px, 6vh, 72px);
}

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

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

.page-header-title,
.page-title {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 6vw, 96px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #fff;
  max-width: 16ch;
}

.page-header-sub,
.page-sub {
  font-size: clamp(14px, 1.4vw, 18px);
  color: rgba(255,255,255,0.75);
  max-width: 52ch;
  line-height: 1.55;
  margin-top: 12px;
}

/* ============================================================
   SERVICES DETAIL PAGE
   ============================================================ */
.services-detail {
  background: var(--canvas);
}

.service-block {
  border-bottom: 1px solid var(--border-solid);
}

.service-block-inner {
  max-width: 1360px;
  margin-inline: auto;
  padding: clamp(64px, 8vh, 100px) clamp(20px, 4vw, 56px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 72px);
  align-items: center;
}

.service-block-even .service-block-inner {
  direction: rtl;
}

.service-block-even .service-block-inner > * {
  direction: ltr;
}

.service-block-photo {
  position: relative;
  overflow: hidden;
}

.service-block-photo > img {
  width: 100%;
  height: 480px;
  max-height: 480px;
  object-fit: cover;
  display: block;
}

.service-block-num {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: 'Archivo Black', sans-serif;
  font-size: 80px;
  font-weight: 900;
  line-height: 1;
  color: rgba(255,255,255,0.12);
  pointer-events: none;
  z-index: 2;
}

.service-block-content h2 {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 3.5vw, 52px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 20px;
}

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

.service-desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 16px;
}

.service-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px 0 28px;
}

.service-bullets li {
  font-size: 15px;
  color: var(--ink-mid);
  padding-left: 20px;
  position: relative;
  line-height: 1.55;
}

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

@media (max-width: 900px) {
  .service-block-inner { grid-template-columns: 1fr; }
  .service-block-even .service-block-inner { direction: ltr; }
  .service-block-photo > img { height: 300px; max-height: 300px; }
}

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

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

.cta-banner-label,
.cta-banner-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
}

.cta-banner-title,
.cta-headline {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(32px, 4.5vw, 68px);
  line-height: 0.94;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #fff;
  max-width: 18ch;
}

.cta-banner-sub,
.cta-sub {
  font-size: clamp(14px, 1.4vw, 17px);
  color: rgba(255,255,255,0.65);
  margin-top: 16px;
  max-width: 48ch;
  line-height: 1.6;
}

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

.cta-text,
.cta-banner > div > div:first-child { flex: 1; min-width: 280px; }

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

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

.gallery-section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.gallery-section-title {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(32px, 4.5vw, 60px);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--ink);
}

.gallery-section-count {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.08em;
}

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

.filter-btn {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink);
  background: transparent;
  border: 2px solid var(--border-solid);
  padding: 8px 16px;
  cursor: pointer;
  border-radius: 0;
  transition: background 150ms, color 150ms;
}

.filter-btn:hover,
.filter-btn.active { background: var(--ink); color: #fff; }

/* Gallery cards */
#galleryGrid.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  background: var(--border-solid);
}

.gallery-card {
  background: var(--canvas);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.gallery-card.featured {
  grid-column: span 2;
}

.gallery-card-photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.gallery-card.featured .gallery-card-photo {
  aspect-ratio: 16 / 9;
}

.gallery-card-photo > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 400ms ease-out;
  filter: grayscale(15%);
  max-height: none;
}

.gallery-card:hover .gallery-card-photo > img { transform: scale(1.04); filter: grayscale(0%); }

.gallery-card-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12,12,15,0.6) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 300ms;
}

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

.gallery-card-category {
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #fff;
  background: var(--primary);
  padding: 5px 10px;
}

.gallery-card-body {
  padding: 20px 24px;
  border-top: 1px solid var(--border-solid);
}

.gallery-card-body h3 {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(15px, 1.4vw, 20px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 8px;
}

.gallery-card-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 8px;
}

.gallery-card-location svg { width: 14px; height: 14px; }

.gallery-card-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
}

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

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

.gallery-no-results {
  grid-column: 1 / -1;
  padding: 48px;
  text-align: center;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}

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

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

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

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

.founder-portrait-col {
  position: relative;
}

.founder-portrait-col > img {
  width: 100%;
  height: 600px;
  max-height: 600px;
  object-fit: cover;
  display: block;
  filter: grayscale(20%);
}

.founder-name-block {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 24px;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

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

.founder-name {
  font-family: 'Archivo Black', sans-serif;
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: -0.01em;
}

.founder-years {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.08em;
}

.founder-text-col { display: flex; flex-direction: column; gap: 24px; }

.founder-headline {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 3.5vw, 52px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--ink);
}

.founder-copy { display: flex; flex-direction: column; gap: 16px; }

.founder-copy p { font-size: 16px; line-height: 1.72; color: var(--muted); }

p.drop-cap::first-letter {
  font-family: 'Archivo Black', sans-serif;
  font-size: 4em;
  font-weight: 900;
  line-height: 0.75;
  float: left;
  margin-right: 8px;
  margin-top: 6px;
  color: var(--primary);
}

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

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

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

.section-headline {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 48px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  padding-left: 80px;
  border-left: 2px solid var(--border-solid);
  margin-left: 40px;
}

.timeline-item {
  position: relative;
  padding: 0 0 48px 40px;
}

.timeline-item:last-child { padding-bottom: 0; }

.timeline-dot {
  position: absolute;
  left: -9px;
  top: 4px;
  width: 16px;
  height: 16px;
  background: var(--primary);
  border: 3px solid var(--canvas);
  outline: 2px solid var(--border-solid);
}

.timeline-date {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--primary);
  margin-bottom: 8px;
  position: absolute;
  left: -120px;
  top: 0;
  text-align: right;
  width: 80px;
}

.timeline-content h3 {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(16px, 1.8vw, 22px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 8px;
}

.timeline-content p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
}

@media (max-width: 640px) {
  .timeline { padding-left: 20px; margin-left: 0; }
  .timeline-date { position: static; text-align: left; width: auto; }
}

/* ============================================================
   CREW STRIP
   ============================================================ */
.crew-strip-section {
  background: var(--ink);
  padding: clamp(64px, 8vh, 96px) 0;
  overflow: hidden;
}

.crew-strip-inner {
  max-width: 1360px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 56px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.crew-strip-inner > img {
  width: 100%;
  height: 500px;
  max-height: 500px;
  object-fit: cover;
  filter: grayscale(25%);
}

.crew-strip-caption { display: flex; flex-direction: column; gap: 20px; }

.crew-strip-caption .section-eyebrow { color: var(--primary); }

.crew-headline {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 3.5vw, 52px);
  line-height: 0.94;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #fff;
}

.crew-sub {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
}

.crew-quote-block {
  border-left: 3px solid var(--primary);
  padding-left: 20px;
  margin-top: 8px;
}

.crew-quote-block p {
  font-size: 17px;
  font-style: italic;
  line-height: 1.65;
  color: rgba(255,255,255,0.75);
}

@media (max-width: 900px) {
  .crew-strip-inner { grid-template-columns: 1fr; }
  .crew-strip-inner > img { height: 320px; max-height: 320px; }
}

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

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

.about-photo > img {
  width: 100%;
  height: 520px;
  max-height: 520px;
  object-fit: cover;
  filter: grayscale(15%);
}

.about-text { display: flex; flex-direction: column; gap: 20px; }

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

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

.about-divider {
  display: block;
  width: 80px;
  height: 4px;
  background: var(--primary);
}

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

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

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

.contact-form-col h2 {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 3.5vw, 52px);
  line-height: 0.96;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 32px;
}

.contact-section-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--primary);
  margin-bottom: 16px;
}

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

.info-col-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--primary);
  margin-bottom: 24px;
}

.info-block {
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

.info-block p {
  font-size: 16px;
  color: var(--ink);
  font-weight: 600;
  line-height: 1.5;
}

.info-block a { color: var(--ink); }
.info-block a:hover { color: var(--primary); text-decoration: underline; }

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

.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 24px;
}

.hours-day { font-weight: 600; color: var(--ink); font-size: 14px; }
.hours-time { font-size: 14px; color: var(--muted); }

.social-links {
  display: flex;
  gap: 12px;
  padding-top: 8px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 2px solid var(--border-solid);
  color: var(--ink);
  transition: background 150ms, color 150ms;
  text-decoration: none;
}

.social-link svg { width: 20px; height: 20px; }
.social-link:hover { background: var(--primary); border-color: var(--primary); color: #fff; text-decoration: none; }

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

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

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

.areas-inner h2 {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 3.5vw, 52px);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 32px;
}

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

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 6px;
}

.area-chip {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink);
  border: 2px solid var(--border-solid);
  padding: 12px 16px;
  line-height: 1.2;
}

/* ============================================================
   ANIMATION UTILITIES
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 600ms ease-out, transform 600ms ease-out;
}

.fade-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 600ms ease-out, transform 600ms ease-out;
}

.fade-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 600ms ease-out, transform 600ms ease-out;
}

.scale-in {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 500ms ease-out, transform 500ms ease-out;
}

.stagger { transition-delay: calc(var(--i, 0) * 80ms); }

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

/* ============================================================
   MISC PATTERN STYLES (required)
   ============================================================ */

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

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

/* Review cards */
.review-card { padding: 28px; background: var(--surface); border: 1px solid var(--border-solid); }
.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; }

/* Accordion FAQ */
details.faq { border-bottom: 1px solid var(--border-solid); 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; font-size: 20px; }
details.faq[open] > summary::after { transform: rotate(45deg); color: var(--primary); }
details.faq p { margin-top: 12px; line-height: 1.6; }

/* ============================================================
   RESPONSIVE TYPOGRAPHY
   ============================================================ */
@media (max-width: 640px) {
  .hero-title { font-size: clamp(44px, 12vw, 72px); }
  .contact-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .team-cta-inner { flex-direction: column; align-items: flex-start; }
  .cta-banner-inner { flex-direction: column; }
}


/* === Validator patches (auto-applied) === */
/* validator patch: grid children without placement → span full row */
.flagship-body { grid-column: 1 / -1; }
.service-card { grid-column: 1 / -1; }
.service-card-sm { grid-column: 1 / -1; }
.service-card-body { grid-column: 1 / -1; }
.footer-col { grid-column: 1 / -1; }
.service-block-photo { grid-column: 1 / -1; }
.gallery-card { grid-column: 1 / -1; }
.founder-portrait-col { grid-column: 1 / -1; }
.founder-text-col { grid-column: 1 / -1; }
.crew-strip-caption { grid-column: 1 / -1; }
.about-photo { grid-column: 1 / -1; }
.about-text { grid-column: 1 / -1; }
.form-field { grid-column: 1 / -1; }
.hours-day { grid-column: 1 / -1; }
.hours-time { grid-column: 1 / -1; }
.area-chip { 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; }
