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

/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --primary:       #0C8C4C;
  --primary-dark:  #096e3b;
  --primary-light: #0faa5c;
  --accent:        #73BC44;
  --canvas:        #FFFFFF;
  --surface:       #F2F0EB;
  --ink:           #0C0C0F;
  --ink-mid:       #2a2a2e;
  --muted:         #5A5852;
  --border:        rgba(12,12,15,0.14);
  --border-strong: rgba(12,12,15,0.85);
  --header-height: 72px;
  --radius:        0px;
}
@media (max-width: 900px) {
  :root { --header-height: 60px; }
}

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

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

body {
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 500;
  color: var(--ink);
  background: var(--canvas);
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

.nav img, header img, .header img, .nav-logo img, .logo img {
  max-height: 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; }

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

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

svg { display: block; }

/* ============================================================
   LAYOUT 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 BAR
   ============================================================ */
#scroll-bar, #scroll-progress, #scrollProgress, .scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px;
  background: var(--primary); width: 0%; z-index: 9999;
  transition: width 60ms linear;
}

/* ============================================================
   TYPOGRAPHY SCALE
   ============================================================ */
h1, h2, h3, h4 {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

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

p { line-height: 1.68; }

.section-label, .page-header-eyebrow, .service-eyebrow,
.cta-banner-eyebrow, .crew-strip-eyebrow, .values-cards-eyebrow,
.about-story-eyebrow, .about-section-eyebrow, .contact-form-label,
.footer-col-title, .footer-col-heading, .info-section-label {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  font-size: clamp(10px, 1.1vw, 12px);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 12px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn,
.btn-primary,
.btn-primary-cta,
.btn-cta-banner,
.form-submit,
.btn-service {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 18px 32px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: filter 200ms, transform 200ms;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary, .btn-primary-cta, .btn-cta-banner, .form-submit {
  background: var(--primary);
  color: #fff;
}
.btn-primary:hover, .btn-primary-cta:hover, .btn-cta-banner:hover, .form-submit:hover {
  filter: brightness(0.9);
  transform: translateY(-1px);
  color: #fff;
  text-decoration: none;
}

.btn-outline-white, .btn-phone, .btn-phone-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 18px 32px;
  border-radius: var(--radius);
  border: 2px solid rgba(255,255,255,0.7);
  background: transparent;
  color: #fff;
  cursor: pointer;
  transition: background 200ms, border-color 200ms;
  text-decoration: none;
  white-space: nowrap;
}
.btn-outline-white:hover, .btn-phone:hover, .btn-phone-cta:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
  color: #fff;
  text-decoration: none;
}

.btn-service {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 12px 24px;
  font-size: 13px;
}
.btn-service:hover {
  background: var(--primary);
  color: #fff;
  text-decoration: none;
  filter: none;
}
.btn-service svg { width: 16px; height: 16px; }

/* ============================================================
   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 {
  display: flex;
  align-items: center;
  height: var(--header-height);
  max-width: 1360px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 56px);
  gap: 32px;
}

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

.nav-pages {
  flex: 1;
  display: flex;
  justify-content: center;
}
.nav-pages ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 0; margin: 0;
}
.nav-pages a {
  display: inline-block;
  padding: 6px 0;
  font-size: 14px;
  font-weight: 600;
  font-family: 'IBM Plex Mono', monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  transition: color 150ms;
}
.nav-pages a:hover { color: var(--primary); text-decoration: none; }
.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-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: filter 180ms;
}
.nav-cta:hover { filter: brightness(0.88); color: #fff; text-decoration: none; }
.nav-cta svg, .nav-cta-icon { width: 18px; height: 18px; }

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

@media (max-width: 899px) {
  .nav-toggle { display: flex; margin-left: auto; }
  .nav-pages {
    display: none;
    position: absolute;
    top: var(--header-height);
    left: 0; right: 0;
    background: var(--canvas);
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 28px 24px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    gap: 0;
  }
  .nav-pages ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
  }
  .nav-pages ul li { width: 100%; border-bottom: 1px solid var(--border); }
  .nav-pages ul li:first-child { border-top: 1px solid var(--border); }
  .nav-pages a { padding: 14px 0; display: block; width: 100%; }
  .nav-pages.open { display: flex; }
  .nav-cta-text { display: none; }
  .nav-cta { padding: 10px 12px; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hero-overlay {
  background: linear-gradient(
    135deg,
    rgba(12,12,15,0.82) 0%,
    rgba(12,12,15,0.68) 40%,
    rgba(12,140,76,0.28) 100%
  );
}

.hero-inner {
  max-width: 1360px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 56px);
  padding-top: 80px;
  padding-bottom: clamp(56px, 8vh, 96px);
  width: 100%;
}

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

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

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

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

/* Trust chips — hero */
.hero-trust-chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hero-trust-chips .trust-chip {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  border: 2px solid rgba(255,255,255,0.4);
  padding: 7px 14px;
  display: flex;
  align-items: center;
  gap: 7px;
}

@media (max-width: 640px) {
  .hero { min-height: 85vh; }
  .hero-title { font-size: clamp(48px, 12vw, 80px); }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
}

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

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

.trust-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 4px;
  padding: 18px 28px;
  border-right: 1px solid var(--ink);
  flex: 1 1 auto;
  min-width: 140px;
}
.trust-item:first-child { border-left: 0; }
.trust-item:last-child { border-right: 0; }

.trust-item-val {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(18px, 2vw, 24px);
  color: var(--primary);
  line-height: 1;
  display: block;
}

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

.trust-stars { display: flex; gap: 3px; margin-bottom: 4px; }
.trust-stars svg { width: 16px; height: 16px; color: var(--primary); }

/* Trust chips — strip variant (contact.html) */
.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  border: 2px solid var(--ink);
  padding: 8px 16px;
}

.trust-chip-dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--primary);
  flex: 0 0 auto;
}

@media (max-width: 640px) {
  .trust-item { padding: 14px 16px; }
}

/* ============================================================
   BRAND BAND (unique move — full-bleed green claim)
   ============================================================ */
.brand-band {
  background: var(--primary);
  padding: clamp(48px, 6vw, 88px) 0;
  overflow: hidden;
}

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

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

.brand-band-claim em {
  font-style: normal;
  color: var(--accent);
}

.brand-band-sub {
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 500;
  font-size: clamp(15px, 1.5vw, 18px);
  color: rgba(255,255,255,0.75);
  margin-top: 24px;
  max-width: 60ch;
}

.brand-band-divider {
  height: 2px;
  background: rgba(255,255,255,0.2);
  margin: 28px 0;
  max-width: 200px;
}

.brand-band-cta {
  margin-top: 32px;
}

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

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

.services-inner > h2 {
  max-width: 20ch;
  margin-bottom: 48px;
}

.services-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-bottom: 2px solid var(--ink);
  margin-bottom: 0;
}

.service-tab {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 22px;
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  color: var(--muted);
  transition: color 180ms, border-color 180ms;
  white-space: nowrap;
  margin-bottom: -2px;
}
.service-tab:hover { color: var(--ink); }
.service-tab.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
  background: transparent;
}

.services-panels { position: relative; }

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

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

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

.service-panel-num {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(64px, 8vw, 120px);
  line-height: 0.85;
  color: var(--primary);
  opacity: 0.18;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
  user-select: none;
}

.service-panel-body h3 {
  font-size: clamp(24px, 3vw, 40px);
  margin-bottom: 16px;
  line-height: 0.95;
}

.service-panel-body p {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 32px;
  flex: 1;
}

@media (max-width: 900px) {
  .service-panel.active { grid-template-columns: 1fr; }
  .service-panel > img { max-height: 260px; }
  .services-tabs { overflow-x: auto; flex-wrap: nowrap; }
}

/* ============================================================
   SERVICES DETAIL (services.html)
   ============================================================ */
.services-detail {
  padding: clamp(72px, 9vh, 112px) 0;
  max-width: 1360px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 56px);
}

.services-detail-header {
  margin-bottom: clamp(48px, 6vh, 80px);
  border-bottom: 2px solid var(--ink);
  padding-bottom: 32px;
}

.services-detail-header h2 { max-width: 22ch; margin-bottom: 16px; }
.services-detail-header p { font-size: 17px; color: var(--muted); max-width: 60ch; }

.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--ink);
  margin-bottom: -1px;
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}
.service-row:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -16px rgba(0,0,0,0.18);
  z-index: 2;
  position: relative;
}

.service-row-photo {
  position: relative;
  overflow: hidden;
}
.service-row-photo > img {
  width: 100%; height: 100%;
  object-fit: cover;
  min-height: 320px;
  max-height: 480px;
  display: block;
  filter: grayscale(20%);
  transition: filter 400ms, transform 400ms;
}
.service-row:hover .service-row-photo > img {
  filter: grayscale(0%);
  transform: scale(1.02);
}

.service-row-photo-num {
  position: absolute;
  top: 16px; left: 16px;
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: #fff;
  background: var(--primary);
  padding: 4px 10px;
  z-index: 1;
}

.service-row-body {
  padding: clamp(32px, 4vw, 56px);
  background: var(--canvas);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-row-body .service-eyebrow {
  color: var(--primary);
  margin-bottom: 8px;
}

.service-row-body h2 {
  font-size: clamp(24px, 3vw, 40px);
  margin-bottom: 14px;
}

.service-row-body > p {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 20px;
}

.service-bullets {
  list-style: none;
  margin-bottom: 28px;
}
.service-bullets li {
  font-size: 15px;
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-mid);
}
.service-bullets li::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--primary);
  flex: 0 0 6px;
}

.service-row.reverse { direction: rtl; }
.service-row.reverse > * { direction: ltr; }

@media (max-width: 900px) {
  .service-row { grid-template-columns: 1fr; direction: ltr; }
  .service-row.reverse { direction: ltr; }
  .service-row-photo { order: -1; }
  .service-row-photo > img { min-height: 240px; max-height: 300px; }
}

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

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

.reviews-inner h2 { margin-bottom: 48px; max-width: 20ch; }

.review-card {
  padding: 28px;
  border-radius: 0;
  background: var(--canvas);
  border: 1px solid var(--ink);
  max-width: 640px;
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}
.review-card:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -16px rgba(0,0,0,0.18); }

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

.review-quote {
  font-size: 17px;
  line-height: 1.55;
  margin-bottom: 18px;
  color: var(--ink);
}

.review-attr { display: flex; gap: 10px; align-items: center; }
.review-name {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
}
.review-meta {
  font-size: 12px;
  color: var(--muted);
  opacity: 0.75;
}

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

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

.gallery-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 16px;
}
.gallery-header h2 { max-width: 20ch; }
.gallery-cta-link {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Gallery grid override (index page) */
.gallery-inner img {
  max-height: 480px;
  object-fit: cover;
  width: 100%;
  filter: grayscale(15%);
  transition: filter 400ms;
}
.gallery-inner img:hover { filter: grayscale(0%); }

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

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

.gallery-section-title { margin-bottom: 32px; }

.gallery-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 12px;
}

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

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
}

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

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

.gallery-card {
  background: var(--surface);
  border: 1px solid var(--ink);
  overflow: hidden;
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}
.gallery-card:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -16px rgba(0,0,0,0.18); }

.gallery-card-img-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.gallery-card-img-wrap > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  max-height: none;
  filter: grayscale(10%);
  transition: filter 400ms, transform 400ms;
}
.gallery-card:hover .gallery-card-img-wrap > img { filter: grayscale(0%); transform: scale(1.03); }

.gallery-card-index {
  position: absolute;
  top: 10px; left: 10px;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.1em;
  background: var(--primary);
  color: #fff;
  padding: 3px 8px;
  z-index: 2;
}

.gallery-card-category {
  position: absolute;
  bottom: 10px; right: 10px;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(12,12,15,0.75);
  color: #fff;
  padding: 4px 10px;
  z-index: 2;
}

.gallery-card-body {
  padding: 18px 20px;
}
.gallery-card-body h3 {
  font-size: clamp(14px, 1.4vw, 18px);
  margin-bottom: 6px;
  line-height: 1.1;
}

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

.gallery-card-desc { font-size: 13px; color: var(--muted); margin-bottom: 12px; }

.gallery-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.gallery-meta-item {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 3px 8px;
}

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

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

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

.faq-left h2 { margin-bottom: 20px; }
.faq-left p { font-size: 15px; color: var(--muted); }

.faq-list { list-style: none; }

.faq-item {
  border-bottom: 1px solid var(--ink);
}
.faq-item:first-child { border-top: 1px solid var(--ink); }

.faq-item summary {
  cursor: pointer;
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 600;
  font-size: 16px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px 0;
  color: var(--ink);
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }

.faq-chevron {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  color: var(--primary);
  transition: transform 250ms;
}
.faq-chevron svg { width: 20px; height: 20px; }

.faq-item[open] .faq-chevron { transform: rotate(45deg); }

.faq-answer {
  font-size: 15px;
  line-height: 1.68;
  color: var(--muted);
  padding-bottom: 20px;
}

details.faq-item summary::after { display: none; }

@media (max-width: 900px) {
  .faq-inner { grid-template-columns: 1fr; }
  .faq-left { margin-bottom: 16px; }
}

/* ============================================================
   TEAM CTA
   ============================================================ */
.team-cta {
  background: var(--ink);
  padding: clamp(56px, 7vh, 88px) 0;
}

.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: 32px;
  flex-wrap: wrap;
}

.team-cta-text {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 4vw, 56px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #fff;
}
.team-cta-text span { color: var(--accent); }
.team-cta-inner > a { flex: 0 0 auto; }

/* ============================================================
   CTA BANNER (services.html, gallery.html)
   ============================================================ */
.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: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.cta-banner-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  display: block;
}

.cta-banner-headline {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(32px, 4vw, 64px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 18px;
}
.cta-banner-headline span { color: var(--accent); }

.cta-banner-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 32px;
  max-width: 52ch;
}

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

.cta-banner-phone {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
}
.cta-phone-label {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 6px;
}
.cta-phone-number {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(28px, 3vw, 44px);
  color: #fff;
  letter-spacing: -0.01em;
  text-decoration: none;
}
.cta-phone-number:hover { color: var(--accent); text-decoration: none; }

/* Gallery CTA variant */
.cta-banner-form {
  display: flex;
  flex-direction: column;
}
.cta-form { display: flex; flex-direction: column; gap: 12px; }
.cta-form input, .cta-form textarea {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 15px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 0;
  color: #fff;
  outline: none;
  transition: border-color 180ms;
}
.cta-form input::placeholder, .cta-form textarea::placeholder { color: rgba(255,255,255,0.4); }
.cta-form input:focus, .cta-form textarea:focus { border-color: var(--accent); }
.cta-form textarea { resize: vertical; min-height: 100px; }
.cta-form button { align-self: flex-start; }

@media (max-width: 900px) {
  .cta-banner-inner { grid-template-columns: 1fr; }
  .cta-banner-phone { align-items: flex-start; }
}

/* ============================================================
   CONTACT SECTION (index.html)
   ============================================================ */
.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.1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.contact-form-side .section-label { color: var(--muted); }
.section-heading {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(32px, 4vw, 60px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 32px;
}

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

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

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.form-group input,
.form-group textarea,
.form-group select {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  padding: 14px 16px;
  border: 1px solid var(--ink);
  border-radius: 0;
  background: var(--canvas);
  color: var(--ink);
  outline: none;
  transition: border-color 180ms, box-shadow 180ms;
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(12,140,76,0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.form-submit {
  align-self: flex-start;
  margin-top: 8px;
  background: var(--primary);
  color: #fff;
  border: none;
}
.form-submit:hover { filter: brightness(0.9); color: #fff; }

/* Contact info side */
.contact-info-block {
  border: 1px solid var(--ink);
}
.contact-info-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 12px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  align-items: baseline;
}
.contact-info-row:last-child { border-bottom: none; }
.contact-info-key {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact-info-val {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
}

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

/* Contact page info block */
.info-block { margin-bottom: 28px; }
.info-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.info-icon { width: 20px; height: 20px; color: var(--primary); flex: 0 0 20px; margin-top: 2px; }
.info-row-content { display: flex; flex-direction: column; gap: 2px; }
.info-row-label {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.info-row-value { font-size: 15px; color: var(--ink); }

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

.info-primary-phone {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(22px, 3vw, 36px);
  color: var(--primary);
  display: block;
  margin-bottom: 16px;
  text-decoration: none;
}
.info-primary-phone:hover { color: var(--primary-dark); text-decoration: none; }

.service-area-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.service-area-chip {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 2px solid var(--ink);
  color: var(--ink);
  padding: 5px 12px;
  display: inline-block;
}

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

/* ============================================================
   PAGE HEADER (sub pages)
   ============================================================ */
.page-header {
  min-height: clamp(320px, 45vh, 520px);
  display: flex;
  align-items: flex-end;
}

.page-header-overlay {
  background: linear-gradient(
    to top,
    rgba(12,12,15,0.78) 0%,
    rgba(12,12,15,0.42) 55%,
    rgba(12,12,15,0.22) 100%
  );
}

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

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

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

.page-header-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  max-width: 56ch;
}

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

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

.about-story-portrait {
  position: relative;
}
.about-story-portrait > img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  max-height: 620px;
  filter: grayscale(20%);
}
.about-story-portrait-caption {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 12px;
  border-top: 1px solid var(--border);
  padding-top: 8px;
}

.about-story-eyebrow { color: var(--primary); margin-bottom: 16px; }

.about-story-text h2 { margin-bottom: 24px; }
.about-story-headline {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 3.5vw, 52px);
  line-height: 0.95;
  text-transform: uppercase;
  margin-bottom: 24px;
}

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

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

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

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

.values-cards-header { margin-bottom: 48px; }
.values-cards-title { max-width: 22ch; }

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

.value-card {
  padding: 32px;
  border: 1px solid var(--ink);
  margin-right: -1px;
  margin-bottom: 0;
  background: var(--canvas);
  transition: background 200ms;
}
.value-card:hover { background: var(--surface); }

.value-card-num {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(56px, 7vw, 96px);
  line-height: 0.85;
  color: var(--primary);
  opacity: 0.2;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
  user-select: none;
}

.value-card h3 {
  font-size: clamp(16px, 1.8vw, 22px);
  margin-bottom: 12px;
  line-height: 1.1;
}

.value-card-title { margin-bottom: 8px; }
.value-card-body { font-size: 14px; color: var(--muted); line-height: 1.6; }

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

/* ============================================================
   CREW STRIP
   ============================================================ */
.crew-strip {
  background: var(--canvas);
  padding: clamp(72px, 9vh, 112px) 0;
}

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

.crew-strip-header { margin-bottom: 48px; }
.crew-strip-title { max-width: 20ch; }

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

.crew-photo { position: relative; overflow: hidden; }
.crew-photo > img {
  width: 100%; height: 360px;
  object-fit: cover;
  filter: grayscale(25%);
  transition: filter 400ms, transform 400ms;
}
.crew-photo:hover > img { filter: grayscale(0%); transform: scale(1.03); }

.crew-photo-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(12,12,15,0.85) 0%, transparent 100%);
  padding: 24px 16px 14px;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
}

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

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

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

.about-section-eyebrow { color: var(--accent); margin-bottom: 12px; }

.about-section-inner h2 {
  font-size: clamp(28px, 4vw, 56px);
  color: #fff;
  margin-bottom: 24px;
}

.about-section-body p {
  font-size: 16px;
  color: rgba(255,255,255,0.72);
  margin-bottom: 14px;
  line-height: 1.68;
}

.about-section-cta { margin-top: 24px; }

.about-section-signals {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(255,255,255,0.12);
}

.about-signal {
  padding: 24px 28px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.about-signal:last-child { border-bottom: none; }

.about-signal-num {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 0.9;
  color: var(--accent);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.about-signal-label {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

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

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

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

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

.footer-brand, .footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-brand-name, .footer-brand-logo {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: #fff;
}
.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.55;
  max-width: 28ch;
}
.footer-desc { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.55; max-width: 32ch; }

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

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 150ms;
}
.footer-links a:hover { color: var(--accent); text-decoration: none; }

.footer-contact-item, .footer-contact-line {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 8px;
  line-height: 1.5;
}
.footer-contact-item a, .footer-contact-line a,
.footer-phone-link {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
}
.footer-contact-item a:hover, .footer-contact-line a:hover { color: var(--accent); text-decoration: none; }

.footer-rating {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

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

.footer-copy, .footer-copyright {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.3);
}

.footer-contact-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-contact-list a { font-size: 14px; color: rgba(255,255,255,0.6); }
.footer-contact-list a:hover { color: var(--accent); text-decoration: none; }

@media (max-width: 900px) {
  .footer-inner, .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand, .footer-brand-col { grid-column: span 2; }
}
@media (max-width: 640px) {
  .footer-inner, .footer-grid { grid-template-columns: 1fr; }
  .footer-brand, .footer-brand-col { grid-column: span 1; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   MOBILE CALL PILL / FAB
   ============================================================ */
.mobile-call-pill, .mobile-cta-pill, .mobile-sticky-cta, .mobile-call-fab, .mobile-cta {
  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);
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: filter 200ms, transform 200ms;
}
.mobile-call-pill:hover, .mobile-cta-pill:hover,
.mobile-sticky-cta:hover, .mobile-call-fab:hover, .mobile-cta:hover {
  filter: brightness(0.88);
  transform: translateY(-2px);
  color: #fff;
  text-decoration: none;
}
.mobile-call-pill svg, .mobile-cta-pill svg,
.mobile-sticky-cta svg, .mobile-call-fab svg, .mobile-cta svg,
.mobile-cta > a svg {
  width: 20px; height: 20px;
}
.mobile-cta > a {
  display: flex; align-items: center; gap: 10px;
  color: #fff; text-decoration: none;
}

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

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

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

.stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 500ms cubic-bezier(0.22,1,0.36,1),
              transform 500ms cubic-bezier(0.22,1,0.36,1);
}
.stagger.visible > *:nth-child(1)  { opacity: 1; transform: none; transition-delay: 0ms; }
.stagger.visible > *:nth-child(2)  { opacity: 1; transform: none; transition-delay: 80ms; }
.stagger.visible > *:nth-child(3)  { opacity: 1; transform: none; transition-delay: 160ms; }
.stagger.visible > *:nth-child(4)  { opacity: 1; transform: none; transition-delay: 240ms; }
.stagger.visible > *:nth-child(5)  { opacity: 1; transform: none; transition-delay: 320ms; }
.stagger.visible > *:nth-child(6)  { opacity: 1; transform: none; transition-delay: 400ms; }

/* ============================================================
   MISC / UTILITY
   ============================================================ */
section {
  padding: clamp(72px, 9vh, 112px) 0;
}

/* Blockquote (contact page) */
blockquote {
  border-left: 3px solid var(--primary);
  padding-left: 20px;
  margin: 16px 0 0;
  font-size: 15px;
  font-style: italic;
  color: var(--muted);
  line-height: 1.65;
}
blockquote cite {
  display: block;
  margin-top: 8px;
  font-style: normal;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
}

/* Star fill for all SVG stars */
.chip-star { color: var(--primary); }

/* Journey / Process (if rendered) */
.journey-timeline { padding: clamp(72px, 9vh, 112px) 0; background: var(--canvas); }
.journey-timeline-inner {
  max-width: 1360px; margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 56px);
}
.journey-timeline-header { margin-bottom: 48px; }
.journey-timeline-title { max-width: 20ch; }
.journey-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 0; }
.journey-step {
  padding: 28px;
  border: 1px solid var(--ink);
  margin-right: -1px;
  position: relative;
  overflow: hidden;
}
.journey-step-bg-num {
  position: absolute;
  top: -10px; right: 8px;
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: 96px;
  line-height: 1;
  color: var(--primary);
  opacity: 0.07;
  user-select: none;
  letter-spacing: -0.04em;
}
.journey-step-label {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 10px;
}
.journey-step-title {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(18px, 2vw, 26px);
  text-transform: uppercase;
  line-height: 1.0;
  margin-bottom: 10px;
}
.journey-step-body { font-size: 14px; color: var(--muted); line-height: 1.6; }
.journey-dot { width: 10px; height: 10px; background: var(--primary); border-radius: 0; margin-bottom: 14px; }

/* Responsive global section padding reduction */
@media (max-width: 640px) {
  section { padding: clamp(48px, 7vh, 72px) 0; }
  .faq-inner { gap: 24px; }
  .form-row { grid-template-columns: 1fr; }
}


/* === Validator patches (auto-applied) === */
/* validator patch: grid children without placement → span full row */
.faq-list { grid-column: 1 / -1; }
.contact-form-side { grid-column: 1 / -1; }
.contact-info-side { grid-column: 1 / -1; }
.contact-info-key { grid-column: 1 / -1; }
.contact-info-val { grid-column: 1 / -1; }
.service-row-photo { grid-column: 1 / -1; }
.cta-banner-left { grid-column: 1 / -1; }
.cta-banner-phone { grid-column: 1 / -1; }
.footer-col { grid-column: 1 / -1; }
.about-story-text { grid-column: 1 / -1; }
.footer-grid { grid-column: 1 / -1; }
.footer-bottom { 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; }
