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

/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --primary:       #2474BC;
  --primary-dark:  #1a5a96;
  --primary-light: #d6e8f7;
  --accent:        #FA070F;
  --canvas:        #FFFFFF;
  --surface:       #F7F4ED;
  --ink:           #141414;
  --muted:         #6B665C;
  --border:        rgba(36,116,188,0.18);
  --border-ink:    rgba(20,20,20,0.1);
  --header-height: 72px;
}

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

/* ============================================================
   GLOBAL RESETS & 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', sans-serif;
  font-weight: 500;
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--canvas);
  -webkit-font-smoothing: antialiased;
}

/* Universal image cap */
img { max-width: 100%; height: auto; display: block; }

section img:not(.hero-bg):not([class*="full-bleed"]):not([class*="fullbleed"]) {
  max-height: 640px;
  object-fit: cover;
}

.nav img, header img, .header img, .nav-logo img, .logo img {
  max-height: 64px !important;
  max-width: 220px !important;
  width: auto !important;
  align-self: flex-start !important;
  object-fit: contain !important;
  flex: 0 0 auto !important;
}

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

.hero { position: relative; overflow: hidden; }
.hero-bg, .hero > img:first-of-type {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%; z-index: 0;
}
.hero-inner, .hero > :not(img):not(.hero-bg):not(.hero-overlay) {
  position: relative; z-index: 2;
}
.hero-overlay { position: absolute; inset: 0; z-index: 1; pointer-events: none; }

.page-header, [class*="page-header"], .about-feature, .about-hero {
  position: relative; overflow: hidden; max-height: 64vh;
}
.page-header > img, [class*="page-header"] > img, .page-header-bg,
.about-feature > img:first-of-type, .about-hero-bg,
.page-header img:first-of-type {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%; z-index: 0;
}
section > img:first-child:not([class*="logo"]):not(.nav-logo) {
  max-height: 64vh; object-fit: cover;
}
section img:not(.hero-bg):not(.page-header-bg):not([class*="full-bleed"]):not([class*="logo"]) {
  max-height: 720px;
}

[class*="gallery-grid"] > [class*="gallery-tile"],
[class*="gallery-grid"] > a, [class*="gallery-grid"] > figure {
  grid-column: auto; width: auto; max-width: 100%; height: auto; min-height: 0;
}
[class*="gallery-tile"] { aspect-ratio: 4 / 3; overflow: hidden; }
[class*="gallery-tile"] > img { width: 100%; height: 100%; object-fit: cover; }

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

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

ul { list-style: none; }

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

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

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

h1 { font-size: clamp(48px, 7vw, 120px); }
h2 { font-size: clamp(36px, 5vw, 72px); }
h3 { font-size: clamp(22px, 2.5vw, 36px); }

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

/* ============================================================
   BUTTONS
   ============================================================ */
.btn, .btn-primary, .btn-ghost, .btn-outline,
.btn-outline-banner, .btn-outline-white, .btn-white,
.btn-phone, .btn-primary-sm, .btn-primary-banner, .btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 18px 32px;
  border-radius: 0;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 180ms, color 180ms, border-color 180ms, transform 180ms;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}

.btn-primary, .btn-submit, .btn-primary-banner {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.btn-primary:hover, .btn-submit:hover, .btn-primary-banner:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-primary-sm {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  padding: 12px 22px;
  font-size: 13px;
}
.btn-primary-sm:hover {
  background: var(--primary-dark);
  color: #fff;
  text-decoration: none;
}

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

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

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

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

.btn-phone {
  background: transparent;
  color: var(--ink);
  border-color: var(--border);
}
.btn-phone:hover {
  border-color: var(--primary);
  color: var(--primary);
  text-decoration: none;
}

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

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

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

.nav-pages a {
  display: inline-block;
  padding: 6px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0.01em;
  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: #fff;
  padding: 10px 20px;
  border-radius: 0;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: filter 150ms;
}
.nav-cta:hover { filter: brightness(0.92); text-decoration: none; color: #fff; }
.nav-cta svg { width: 16px; height: 16px; flex-shrink: 0; }

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

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-pages {
    display: none;
    flex-direction: column;
    position: absolute;
    top: var(--header-height);
    left: 0; right: 0;
    background: var(--canvas);
    padding: 24px 28px;
    gap: 8px;
    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: 17px; padding: 10px 0; width: 100%; }
  .nav-cta .nav-cta-text { display: none; }
  .nav-cta { padding: 10px 14px; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  background: #0d1a27;
}

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

.hero-overlay {
  position: absolute; inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(10, 22, 38, 0.25) 0%,
    rgba(10, 22, 38, 0.35) 40%,
    rgba(10, 22, 38, 0.82) 80%,
    rgba(10, 22, 38, 0.95) 100%
  );
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(64px, 10vw, 120px) clamp(20px, 4vw, 64px) clamp(72px, 10vh, 96px);
}

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

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

.hero-sub {
  font-size: clamp(15px, 1.5vw, 18px);
  color: rgba(255,255,255,0.78);
  line-height: 1.6;
  max-width: 52ch;
  margin-bottom: 36px;
  font-weight: 400;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  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 {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 1px solid rgba(36,116,188,0.6);
  color: rgba(255,255,255,0.88);
  padding: 7px 14px;
  border-radius: 0;
  background: rgba(36,116,188,0.12);
  backdrop-filter: blur(4px);
  display: inline-block;
}

/* Trust strip (below hero, canvas bg) */
.trust-strip {
  background: var(--canvas);
  border-top: 1px solid var(--border-ink);
  border-bottom: 1px solid var(--border-ink);
  padding: 28px 0;
}

.trust-strip-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 64px);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

.trust-strip-inner .trust-chip {
  background: transparent;
  border-color: var(--primary);
  color: var(--ink);
  padding: 8px 16px;
}

/* Hero ribbon top-right */
.hero-ribbon {
  position: absolute;
  top: calc(var(--header-height) + 16px);
  right: clamp(20px, 4vw, 64px);
  z-index: 3;
  background: rgba(10, 22, 38, 0.65);
  border: 1px solid rgba(36,116,188,0.5);
  color: rgba(255,255,255,0.92);
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  backdrop-filter: blur(6px);
}

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

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.6); }
}

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

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

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

.marquee-item {
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: clamp(13px, 1.4vw, 18px);
  line-height: 1.2;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 20px;
}

.marquee-item::after {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

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

/* ============================================================
   SERVICES — BENTO GRID
   ============================================================ */
.services {
  background: var(--canvas);
  padding: clamp(96px, 12vh, 180px) 0;
}

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

.services-inner .section-title {
  margin-bottom: 56px;
}

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

/* Flagship card spans 2 columns + 2 rows */
.bento-card-flagship {
  grid-column: 1 / span 2;
  grid-row: 1 / span 2;
}

/* Cards 2-3 sit right column row 1 and row 2 */
.bento-grid .bento-card:nth-child(2) { grid-column: 3; grid-row: 1; }
.bento-grid .bento-card:nth-child(3) { grid-column: 3; grid-row: 2; }

/* Bottom row 3 cards */
.bento-grid .bento-card:nth-child(4) { grid-column: 1; grid-row: 3; }
.bento-grid .bento-card:nth-child(5) { grid-column: 2; grid-row: 3; }
.bento-grid .bento-card:nth-child(6) { grid-column: 3; grid-row: 3; }

.bento-card {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  display: block;
  text-decoration: none;
  min-height: 260px;
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}
.bento-card-flagship { min-height: 560px; }

.bento-card > img:first-of-type,
.bento-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  max-height: none;
  filter: grayscale(15%) brightness(0.88);
  transition: transform 400ms ease-out, filter 400ms;
}

.bento-card:hover { transform: none; box-shadow: none; }
.bento-card:hover > img { transform: scale(1.04); filter: grayscale(0%) brightness(0.82); }

.bento-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(10,22,38,0.9) 0%,
    rgba(10,22,38,0.3) 55%,
    transparent 100%
  );
}

.bento-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 3;
  padding: clamp(20px, 3vw, 40px);
}

.bento-index {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 900;
  line-height: 1;
  color: var(--primary);
  opacity: 0.6;
  position: absolute;
  top: clamp(20px, 3vw, 32px);
  right: clamp(20px, 3vw, 32px);
  z-index: 3;
  letter-spacing: -0.04em;
}

.bento-card-flagship .bento-index { font-size: clamp(72px, 8vw, 120px); }

.bento-content h3 {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(20px, 2vw, 32px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 10px;
}

.bento-card-flagship .bento-content h3 { font-size: clamp(28px, 3vw, 48px); }

.bento-desc {
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  line-height: 1.55;
  margin-bottom: 16px;
  max-width: 52ch;
}

.bento-card-flagship .bento-desc { font-size: 16px; }

.bento-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  text-decoration: none;
}
.bento-link svg { width: 16px; height: 16px; transition: transform 200ms; }
.bento-card:hover .bento-link svg { transform: translateX(4px); }

.services-footer {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.services-footer p {
  font-size: 14px;
  color: var(--muted);
}

/* ============================================================
   CERT / TRUST STRIPS
   ============================================================ */
.cert-strip, .certs-strip {
  background: var(--surface);
  border-top: 1px solid var(--border-ink);
  border-bottom: 1px solid var(--border-ink);
  padding: 22px 0;
}

.cert-strip-inner, .certs-strip-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 64px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.cert-strip-label, .certs-strip-label {
  font-family: 'Archivo', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  flex-shrink: 0;
  margin-right: 8px;
}

.cert-chip {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid var(--primary);
  color: var(--ink);
  padding: 6px 14px;
  border-radius: 0;
  background: transparent;
  display: inline-block;
}

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

/* ============================================================
   GALLERY
   ============================================================ */
.gallery {
  background: var(--surface);
  padding: clamp(96px, 12vh, 180px) 0;
}

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

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

.gallery-header .section-eyebrow { margin-bottom: 10px; }

.gallery-header h2 {
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.0;
}

.gallery-feature {
  position: relative;
  overflow: hidden;
  height: clamp(320px, 45vw, 560px);
  border-radius: 0;
}

.gallery-feature > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  max-height: none;
  filter: grayscale(10%);
  transition: transform 600ms ease-out;
}

.gallery-feature:hover > img { transform: scale(1.03); }

.gallery-feature-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,22,38,0.75) 0%, transparent 60%);
  z-index: 1;
}

.gallery-feature-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  padding: 32px 40px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.gallery-feature-caption h3 {
  color: #fff;
  font-size: clamp(24px, 2.5vw, 40px);
}

.gallery-feature-caption a {
  flex-shrink: 0;
  color: #fff;
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-bottom: 2px solid var(--primary);
  padding-bottom: 2px;
}

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

.gallery-inner { }

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

.gallery-title-block h2 { font-size: clamp(36px, 4vw, 60px); }

.gallery-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

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

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

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

.gallery-card > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  max-height: none;
  filter: grayscale(15%);
  transition: transform 400ms ease, filter 300ms;
}

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

.gallery-num {
  position: absolute;
  top: 12px; left: 14px;
  z-index: 3;
  font-family: 'Archivo Black', sans-serif;
  font-size: 11px;
  font-weight: 900;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.06em;
}

.gallery-card-overlay {
  position: absolute; inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(10,22,38,0.8) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 300ms;
}

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

.gallery-card-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  padding: 20px;
  transform: translateY(6px);
  opacity: 0;
  transition: opacity 300ms, transform 300ms;
}

.gallery-card:hover .gallery-card-body { opacity: 1; transform: translateY(0); }

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

.gallery-card-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: 15px;
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
}

.gallery-stat-card {
  background: var(--primary);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 32px;
  text-align: center;
  aspect-ratio: 4/3;
}

.stat-card-num {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 900;
  line-height: 1;
  color: #fff;
  letter-spacing: -0.03em;
}

.stat-card-label {
  font-family: 'Archivo', sans-serif;
  font-size: clamp(10px, 1vw, 12px);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-top: 8px;
}

.stat-card-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-top: 6px;
  line-height: 1.4;
}

.gallery-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.trust-chip-gal {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid var(--primary);
  color: var(--ink);
  padding: 7px 14px;
  border-radius: 0;
  background: transparent;
  display: inline-block;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  background: var(--canvas);
  padding: clamp(96px, 12vh, 180px) 0;
}

.faq-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 64px);
}

.faq-inner h2 {
  margin-bottom: 56px;
}

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

.faq-inner details > summary {
  cursor: pointer;
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(16px, 1.4vw, 20px);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  gap: 20px;
  letter-spacing: -0.01em;
  transition: color 150ms;
}
.faq-inner details > summary::-webkit-details-marker { display: none; }
.faq-inner details > summary:hover { color: var(--primary); }

.faq-chevron {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--muted);
  transition: transform 250ms, color 250ms;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq-chevron svg { width: 20px; height: 20px; }

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

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

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  background: var(--surface);
  padding: clamp(96px, 12vh, 180px) 0;
}

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

.contact-form .section-title,
.contact-form-side .section-title {
  margin-bottom: 36px;
}

.contact-form h2 { font-size: clamp(32px, 4vw, 60px); margin-bottom: 36px; }
.contact-form-side h2 { font-size: clamp(32px, 4vw, 60px); margin-bottom: 12px; }

.contact-intro {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 32px;
  line-height: 1.6;
}

.form-group {
  position: relative;
  margin-bottom: 20px;
}

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

.form-group input,
.form-group textarea,
.form-group select,
.contact-form input,
.contact-form textarea,
.contact-form select,
.cta-form input,
.cta-form textarea,
.cta-form select {
  width: 100%;
  border: 1px solid rgba(20,20,20,0.18);
  border-radius: 0;
  padding: 14px 16px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  background: var(--canvas);
  outline: none;
  transition: border-color 200ms;
  appearance: none;
}

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

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

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

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

.contact-info {
  padding-top: 8px;
}

.contact-info-block {
  margin-bottom: 28px;
}

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

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

.contact-info-value a {
  color: var(--ink);
  font-weight: 600;
}
.contact-info-value a:hover { color: var(--primary); }

.contact-notice {
  font-size: 13px;
  color: var(--muted);
  padding: 16px;
  border-left: 3px solid var(--primary);
  background: var(--primary-light);
  margin-top: 24px;
  line-height: 1.55;
}

.contact-info-card {
  background: var(--canvas);
  padding: 32px;
  border: 1px solid var(--border-ink);
}

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

.info-card-phone, .info-card-alt-phone, .info-card-email {
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  display: block;
  margin-bottom: 4px;
}

.info-card-address, .info-card-weather {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink);
}

.info-divider {
  border: none;
  border-top: 1px solid var(--border-ink);
  margin: 20px 0;
}

.service-area-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.area-chip {
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid var(--primary);
  color: var(--ink);
  padding: 5px 12px;
  border-radius: 0;
  background: transparent;
}

.cert-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* Contact page */
.contact-form-side {
  background: transparent;
}

/* ============================================================
   PAGE HEADERS (sub-pages)
   ============================================================ */
.page-header {
  min-height: clamp(280px, 38vh, 440px);
  max-height: 64vh;
  display: flex;
  align-items: flex-end;
  background: var(--ink);
}

.page-header > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 25%;
  z-index: 0;
  max-height: none;
  filter: grayscale(20%) brightness(0.7);
}

.page-header-overlay {
  position: absolute; inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(10,22,38,0.2) 0%,
    rgba(10,22,38,0.75) 100%
  );
}

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

.page-header-inner h1,
.page-header-title {
  font-size: clamp(42px, 6vw, 96px);
  color: #fff;
  max-width: 20ch;
  margin-bottom: 0;
}

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

.page-header-sub, .page-sub {
  color: rgba(255,255,255,0.75);
  font-size: 15px;
  margin-top: 10px;
  max-width: 60ch;
}

/* ============================================================
   SERVICE FEATURE BLOCKS (services.html)
   ============================================================ */
.services-feature > div {
  padding: clamp(64px, 8vh, 96px) 0;
  border-bottom: 1px solid var(--border-ink);
}

.services-feature > div:nth-child(even) {
  background: var(--surface);
}

.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.service-block.reverse {
  direction: ltr;
}

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

.service-block-photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--ink);
  order: 1;
}

.service-block-photo > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  max-height: none;
  filter: grayscale(10%) brightness(0.9);
  transition: transform 500ms ease-out;
}

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

.service-block-photo-overlay {
  position: absolute; inset: 0;
  background: rgba(10,22,38,0.2);
  z-index: 1;
}

.service-index {
  position: absolute;
  top: 16px; left: 20px;
  z-index: 3;
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 900;
  line-height: 1;
  color: rgba(255,255,255,0.25);
  letter-spacing: -0.04em;
}

.service-block-body {
  order: 2;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-block-body h2 {
  font-size: clamp(28px, 3.5vw, 52px);
  line-height: 1.0;
  letter-spacing: -0.03em;
}

.service-block-body p {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--muted);
}

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

.service-bullets li {
  font-size: 14.5px;
  color: var(--ink);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

.service-bullets li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  margin-top: 7px;
  flex-shrink: 0;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--ink);
  padding: clamp(80px, 10vh, 120px) 0;
  position: relative;
  overflow: hidden;
}

.cta-banner > img:first-of-type {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  max-height: none;
  opacity: 0.25;
  filter: grayscale(60%);
}

.cta-banner-bg {
  position: absolute; inset: 0;
  background: rgba(10,22,38,0.85);
  z-index: 1;
}

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

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

.cta-banner-title {
  font-size: clamp(36px, 5vw, 72px);
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.0;
}
.cta-banner-title span { color: var(--primary); }

.cta-banner-sub {
  color: rgba(255,255,255,0.65);
  font-size: 16px;
  margin-bottom: 32px;
  line-height: 1.65;
  max-width: 56ch;
}

.cta-btn-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

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

.cta-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cta-form input,
.cta-form textarea,
.cta-form select {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  padding: 14px 16px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 14px;
  border-radius: 0;
  outline: none;
  transition: border-color 200ms;
  width: 100%;
  appearance: none;
}

.cta-form input::placeholder { color: rgba(255,255,255,0.4); }
.cta-form input:focus { border-color: var(--primary); }

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

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

.founder-portrait-col { }

.founder-portrait-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--surface);
  margin-bottom: 16px;
}

.founder-portrait-wrap > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  max-height: none;
  filter: grayscale(15%);
}

.founder-portrait-caption {
  padding: 16px 0;
  border-top: 2px solid var(--primary);
}

.founder-portrait-name {
  font-family: 'Archivo Black', sans-serif;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.founder-portrait-title {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 4px;
}

.founder-text-col { }

.founder-headline {
  font-size: clamp(32px, 4vw, 64px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}

.founder-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.drop-cap-para::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);
}

.founder-pull-quote {
  border-left: 4px solid var(--primary);
  padding: 20px 28px;
  background: var(--surface);
  margin: 8px 0;
}

.founder-pull-quote blockquote {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--ink);
}

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

.founder-divider {
  height: 1px;
  background: var(--border-ink);
  margin: 8px 0;
}

.co-founder-block { }

.co-founder-name {
  font-family: 'Archivo Black', sans-serif;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.co-founder-role {
  font-size: 13px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 3px;
}

/* ============================================================
   VALUES CARDS
   ============================================================ */
.values-cards {
  background: var(--surface);
  padding: clamp(96px, 12vh, 180px) 0;
}

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

.values-cards-header {
  margin-bottom: 52px;
}

.values-cards-title {
  font-size: clamp(36px, 5vw, 72px);
}

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

.value-card {
  background: var(--canvas);
  padding: 36px 28px;
  border-top: 3px solid transparent;
  transition: border-color 250ms;
}

.value-card:hover { border-color: var(--primary); }

.value-card-num {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(40px, 4vw, 64px);
  font-weight: 900;
  line-height: 1;
  color: var(--primary);
  opacity: 0.35;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
}

.value-card h3 {
  font-size: clamp(18px, 1.8vw, 24px);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.value-card-body {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.65;
}

/* ============================================================
   JOURNEY TIMELINE
   ============================================================ */
.journey-timeline {
  background: var(--ink);
  padding: clamp(96px, 12vh, 180px) 0;
}

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

.journey-timeline-header {
  margin-bottom: 56px;
}

.journey-timeline-header .section-eyebrow { color: var(--primary); }

.journey-timeline-title {
  font-size: clamp(36px, 5vw, 72px);
  color: #fff;
}

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

.timeline-step {
  background: rgba(255,255,255,0.04);
  padding: 36px 28px;
  border-top: 2px solid rgba(36,116,188,0.3);
  transition: background 250ms, border-color 250ms;
}

.timeline-step:hover {
  background: rgba(255,255,255,0.07);
  border-color: var(--primary);
}

.timeline-dot {
  width: 44px;
  height: 44px;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.timeline-dot-num {
  font-family: 'Archivo Black', sans-serif;
  font-size: 16px;
  font-weight: 900;
  color: #fff;
}

.timeline-step h3 {
  font-size: clamp(16px, 1.5vw, 22px);
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.timeline-step-title { }

.timeline-step-body {
  font-size: 14.5px;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
}

/* ============================================================
   ABOUT EDITORIAL
   ============================================================ */
.about-editorial {
  background: var(--surface);
  padding: clamp(96px, 12vh, 180px) 0;
}

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

.about-editorial-title {
  font-size: clamp(32px, 4vw, 64px);
}

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

.about-editorial-aside {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.aside-block {
  padding: 24px 0;
  border-bottom: 1px solid var(--border-ink);
}

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

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

.aside-block-text {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink);
}

.service-area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
  list-style: none;
  padding: 0; margin-top: 10px;
}

.service-area-item {
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid var(--border-ink);
  color: var(--muted);
  padding: 5px 10px;
  border-radius: 0;
}

/* Weather policy */
.weather-policy {
  background: var(--primary);
  padding: 24px 0;
}

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

.weather-policy-label {
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  flex-shrink: 0;
}

.weather-policy-label span {
  color: #fff;
  margin-right: 8px;
}

.weather-policy-text {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}

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

.footer-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 64px);
  display: grid;
  grid-template-columns: 280px 1fr 1fr 1fr;
  gap: clamp(40px, 5vw, 64px);
}

.footer-grid {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 64px) clamp(64px, 8vh, 80px);
  display: grid;
  grid-template-columns: 280px 1fr 1fr 1fr;
  gap: clamp(40px, 5vw, 64px);
}

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

.footer-brand img {
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-brand-name {
  font-family: 'Archivo Black', sans-serif;
  font-size: 17px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
}

.footer-tagline {
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(255,255,255,0.5);
  max-width: 30ch;
}

.footer-col-title, .footer-col-label, .footer-col-head {
  font-family: 'Archivo', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
  display: block;
}

.footer-col h4 {
  font-family: 'Archivo', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
}

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

.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  text-decoration: none;
  transition: color 150ms;
}
.footer-links a:hover { color: #fff; text-decoration: none; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}

.footer-contact-item svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; color: var(--primary); }
.footer-contact-item a { color: rgba(255,255,255,0.6); }
.footer-contact-item a:hover { color: #fff; text-decoration: none; }

.footer-contact-line {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  margin-bottom: 10px;
}
.footer-contact-line svg { width: 16px; height: 16px; color: var(--primary); flex-shrink: 0; }
.footer-contact-line:hover { color: #fff; text-decoration: none; }

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

.footer-phone-link, .footer-phone-link a {
  color: #fff;
  font-weight: 600;
  font-size: 15px;
}

.footer-address {
  font-size: 13.5px;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
}

.footer-social {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.footer-social a {
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  transition: border-color 150ms, color 150ms;
}
.footer-social a svg { width: 16px; height: 16px; }
.footer-social a:hover { border-color: var(--primary); color: #fff; text-decoration: none; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: clamp(40px, 5vh, 64px);
  padding: 24px clamp(20px, 4vw, 64px);
  max-width: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}

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

.footer-certs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-cert-badge, .footer-cert-tag, .footer-cert {
  font-family: 'Archivo', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.35);
  padding: 4px 10px;
  border-radius: 0;
}

/* ============================================================
   MOBILE CALL PILL
   ============================================================ */
.mobile-cta, .mobile-call-pill, .mobile-cta-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 999;
  background: var(--primary);
  color: #fff;
  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: 14px;
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 200ms, box-shadow 200ms;
}
.mobile-cta:hover, .mobile-call-pill:hover, .mobile-cta-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 48px -10px rgba(0,0,0,0.5);
  text-decoration: none;
  color: #fff;
}
.mobile-cta svg, .mobile-call-pill svg, .mobile-cta-pill svg {
  width: 20px; height: 20px; flex-shrink: 0;
}

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

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

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

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

/* ============================================================
   MISC / SVG CAPS
   ============================================================ */
.bento-link svg { width: 16px; height: 16px; }
.faq-chevron svg { width: 20px; height: 20px; }
.footer-contact-item svg { width: 16px; height: 16px; }
.footer-contact-line svg { width: 16px; height: 16px; }
.footer-social a svg { width: 16px; height: 16px; }
.mobile-cta svg, .mobile-call-pill svg, .mobile-cta-pill svg { width: 20px; height: 20px; }
.nav-cta svg { width: 16px; height: 16px; }
.nav-toggle svg { width: 24px; height: 24px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .bento-card-flagship {
    grid-column: 1 / span 2;
    grid-row: 1;
  }
  .bento-grid .bento-card:nth-child(2) { grid-column: 1; grid-row: 2; }
  .bento-grid .bento-card:nth-child(3) { grid-column: 2; grid-row: 2; }
  .bento-grid .bento-card:nth-child(4) { grid-column: 1; grid-row: 3; }
  .bento-grid .bento-card:nth-child(5) { grid-column: 2; grid-row: 3; }
  .bento-grid .bento-card:nth-child(6) { grid-column: 1 / span 2; grid-row: 4; }

  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline-track { grid-template-columns: repeat(2, 1fr); }

  .cta-banner-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .site-header { position: sticky; }

  .contact-inner { grid-template-columns: 1fr; }
  .cta-banner-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-grid  { grid-template-columns: 1fr 1fr; }

  .service-block,
  .service-block.reverse {
    grid-template-columns: 1fr;
  }
  .service-block.reverse .service-block-photo { order: 0; }
  .service-block.reverse .service-block-body  { order: 1; }

  .founder-story-inner { grid-template-columns: 1fr; }
  .founder-portrait-wrap { aspect-ratio: 16/9; max-height: 320px; }

  .about-editorial-inner { grid-template-columns: 1fr; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-card:nth-child(4),
  .gallery-stat-card:nth-child(4) {
    grid-column: auto;
  }

  .hero-title { max-width: 16ch; }
}

@media (max-width: 640px) {
  .bento-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .bento-card-flagship    { grid-column: 1; grid-row: auto; }
  .bento-grid .bento-card { grid-column: 1; grid-row: auto; }

  .values-grid { grid-template-columns: 1fr; }
  .timeline-track { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; }
  .footer-grid  { grid-template-columns: 1fr; }

  .gallery-grid { grid-template-columns: 1fr; }

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

  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: fit-content; }

  .cta-btn-group { flex-direction: column; }

  .gallery-feature-caption { flex-direction: column; align-items: flex-start; }
}


/* === Validator patches (auto-applied) === */
/* validator patch: grid children without placement → span full row */
.footer-brand { grid-column: 1 / -1; }
.footer-col { grid-column: 1 / -1; }
.service-block-photo { grid-column: 1 / -1; }
.service-block-body { grid-column: 1 / -1; }
.cta-banner-eyebrow { grid-column: 1 / -1; }
.cta-banner-title { grid-column: 1 / -1; }
.cta-banner-sub { grid-column: 1 / -1; }
.cta-banner-actions { grid-column: 1 / -1; }
.founder-text-col { grid-column: 1 / -1; }
.form-group { grid-column: 1 / -1; }
/* validator patch: hero must never crop its headline */
#hero, .hero { overflow: visible !important; }
:where(#hero, .hero) { padding-top: max(var(--header-height, 72px), 72px); }
/* validator patch: keep the hero photo visible, no smothering dark band */
.hero-overlay { background: linear-gradient(to top, rgba(0,0,0,0.66), rgba(0,0,0,0.34) 38%, rgba(0,0,0,0.12) 68%, rgba(0,0,0,0) 100%), linear-gradient(to right, rgba(0,0,0,0.30), rgba(0,0,0,0) 58%) !important; }
