@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:        #145C1C;
  --primary-dark:   #0e4114;
  --primary-light:  #1a7524;
  --accent:         #2DD13F;
  --canvas:         #FFFFFF;
  --surface:        #F2F0EB;
  --surface-2:      #E8E5DE;
  --ink:            #0C0C0F;
  --ink-mid:        #2a2a2e;
  --muted:          #5A5852;
  --border:         rgba(12,12,15,0.15);
  --border-heavy:   rgba(12,12,15,0.9);
  --header-height:  72px;

  --font-display: 'Archivo Black', sans-serif;
  --font-body:    'IBM Plex Sans', sans-serif;
  --font-mono:    'IBM Plex Mono', monospace;

  --pad-section:  clamp(72px, 9vh, 112px);
  --max-w:        1360px;
  --max-w-wide:   1400px;
  --radius:       0;
}

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

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

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

body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.68;
  color: var(--ink);
  background: var(--canvas);
  overflow-x: hidden;
}

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

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

.nav img, header img, .header img, .nav-logo img, .logo img {
  max-height: 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,
.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 anchors */
h1 a, h2 a, h3 a, .hero-title a, .hero-eyebrow a, .hero-sub a {
  color: inherit; text-decoration: none; border-bottom: 0;
}

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

ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }
input, textarea, select {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
}
svg { display: block; }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(20px, 4vw, 48px);
  padding-right: clamp(20px, 4vw, 48px);
}

.wide-container {
  width: 100%;
  max-width: var(--max-w-wide);
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(20px, 4vw, 48px);
  padding-right: clamp(20px, 4vw, 48px);
}

/* ============================================================
   TYPOGRAPHY SCALE
   ============================================================ */
.section-eyebrow, .page-eyebrow, .about-eyebrow,
.section-eyebrow, .journey-eyebrow, .cta-banner-eyebrow {
  display: block;
  font-family: var(--font-mono);
  font-size: clamp(10px, 1vw, 12px);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}

h1, h2, h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 0.92;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  padding: 18px 32px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 180ms, color 180ms, border-color 180ms, transform 150ms;
  white-space: nowrap;
  line-height: 1;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  border: 2px solid var(--primary);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: #fff;
  text-decoration: none;
}

.btn-primary-inv {
  background: var(--accent);
  color: var(--ink);
  border: 2px solid var(--accent);
}
.btn-primary-inv:hover {
  background: #25b834;
  border-color: #25b834;
  color: var(--ink);
  text-decoration: none;
}

.btn-primary-service {
  background: var(--primary);
  color: #fff;
  border: 2px solid var(--primary);
  padding: 14px 24px;
  font-size: 14px;
}
.btn-primary-service:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: #fff;
  text-decoration: none;
}

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

.btn-outline-inv {
  background: transparent;
  color: var(--surface);
  border: 2px solid var(--surface);
}
.btn-outline-inv:hover {
  background: var(--surface);
  color: var(--ink);
  text-decoration: none;
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.btn-outline-white:hover {
  background: #fff;
  color: var(--ink);
  text-decoration: none;
}

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

.btn-phone {
  background: var(--primary);
  color: #fff;
  border: 2px solid var(--primary);
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}
.btn-phone:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: #fff;
  text-decoration: none;
}

.btn-submit {
  width: 100%;
  background: var(--primary);
  color: #fff;
  border: 2px solid var(--primary);
  padding: 18px 32px;
  font-weight: 700;
  font-size: 15px;
  font-family: var(--font-body);
  border-radius: 0;
  cursor: pointer;
  transition: background 180ms, border-color 180ms;
}
.btn-submit:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
}

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

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

.top-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 28px;
  height: var(--header-height);
}

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

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

.nav-pages li { list-style: none; }

.nav-pages a {
  display: inline-block;
  padding: 6px 0;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-body);
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 12px;
  font-family: var(--font-mono);
}
.nav-pages a:hover {
  color: var(--primary);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}
.nav-pages a[aria-current="page"] {
  color: var(--primary);
  border-bottom: 2px solid var(--primary);
}

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

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

@media (max-width: 900px) {
  .nav-toggle { display: flex; }

  .nav-cta span { display: none; }

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

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

  .nav-pages li {
    border-bottom: 1px solid var(--border);
  }

  .nav-pages a {
    display: block;
    padding: 14px 0;
  }

  .top-nav {
    position: relative;
    gap: 12px;
  }
}

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

.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(
    165deg,
    rgba(20, 92, 28, 0.82) 0%,
    rgba(12, 12, 15, 0.75) 50%,
    rgba(12, 12, 15, 0.55) 100%
  );
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  padding: clamp(48px, 7vw, 96px) clamp(20px, 4vw, 48px);
  padding-bottom: clamp(64px, 8vw, 112px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-eyebrow {
  display: block;
  font-family: var(--font-mono);
  font-size: clamp(10px, 1vw, 12px);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

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

.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  max-width: 52ch;
  line-height: 1.55;
  margin-bottom: 36px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-ctas a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 15px;
  padding: 18px 32px;
  border-radius: 0;
  text-decoration: none;
  transition: background 180ms, color 180ms, border-color 180ms;
  line-height: 1;
}

.hero-ctas a:first-child {
  background: var(--accent);
  color: var(--ink);
  border: 2px solid var(--accent);
}
.hero-ctas a:first-child:hover {
  background: #25b834;
  border-color: #25b834;
  color: var(--ink);
  text-decoration: none;
}

.hero-ctas a:last-child {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.7);
}
.hero-ctas a:last-child:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
  color: #fff;
  text-decoration: none;
}

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

.trust-chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border: 2px solid rgba(255,255,255,0.6);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  background: rgba(12,12,15,0.35);
  border-radius: 0;
  line-height: 1;
}

@media (max-width: 640px) {
  #hero.hero { min-height: 100svh; }
  .hero-title { font-size: clamp(48px, 12vw, 80px); }
  .hero-ctas { flex-direction: column; width: 100%; }
  .hero-ctas a { justify-content: center; }
}

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

.trust-strip-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 24px 16px;
  text-align: center;
  border-right: 1px solid var(--ink);
}
.trust-item:first-child { border-left: none; }
.trust-item:last-child { border-right: none; }

.trust-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
}

.trust-value {
  font-family: var(--font-display);
  font-size: clamp(14px, 2vw, 20px);
  font-weight: 900;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  display: block;
}

.trust-stars {
  display: flex;
  gap: 2px;
  align-items: center;
}
.trust-stars svg { width: 16px; height: 16px; color: var(--primary); }

@media (max-width: 900px) {
  .trust-strip-inner { grid-template-columns: repeat(3, 1fr); }
  .trust-item:nth-child(3) { border-right: none; }
  .trust-item:nth-child(4) { border-left: none; }
}

@media (max-width: 640px) {
  .trust-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .trust-item { border-right: 1px solid var(--ink); }
  .trust-item:nth-child(2n) { border-right: none; }
  .trust-item:nth-child(3) { border-right: 1px solid var(--ink); }
}

/* ============================================================
   BRAND BAND (unique move — replaces thin marquee)
   ============================================================ */
.brand-band {
  background: var(--primary);
  padding: clamp(40px, 6vw, 80px) 0;
  overflow: hidden;
}

.brand-band-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}

.brand-band-claim {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 120px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 0.92;
  color: #fff;
  max-width: 18ch;
}

.brand-band-accent {
  color: var(--accent);
}

.brand-band-aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 220px;
}

.brand-band-aside p {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}

.brand-band-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--primary);
  padding: 14px 24px;
  font-weight: 700;
  font-size: 14px;
  border: 2px solid #fff;
  text-decoration: none;
  transition: background 150ms;
}
.brand-band-cta:hover {
  background: var(--surface);
  border-color: var(--surface);
  color: var(--primary);
  text-decoration: none;
}

.brand-band-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.band-chip {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  border: 2px solid rgba(255,255,255,0.45);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  border-radius: 0;
  line-height: 1;
}

.brand-band-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (max-width: 900px) {
  .brand-band-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .brand-band-aside { min-width: auto; }
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services {
  background: var(--canvas);
  padding: var(--pad-section) 0;
}

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

.services-inner > .section-eyebrow { margin-bottom: 12px; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 0.92;
  color: var(--ink);
  margin-bottom: 48px;
}

.services-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 2px;
  background: var(--ink);
  border: 2px solid var(--ink);
}

.service-card {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  border: none;
  text-decoration: none;
  color: var(--ink);
  min-height: 320px;
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -16px rgba(0,0,0,0.28);
  text-decoration: none;
  color: var(--ink);
  z-index: 2;
}

.service-card.flagship {
  grid-column: span 2;
  min-height: 420px;
}

.service-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  filter: grayscale(30%);
  transition: transform 400ms ease, filter 400ms ease;
  max-height: none;
}
.service-card:hover > img {
  transform: scale(1.03);
  filter: grayscale(0%);
}

.service-card-body {
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding: 24px;
  background: linear-gradient(to top, rgba(12,12,15,0.9) 0%, rgba(12,12,15,0.5) 70%, transparent 100%);
  color: #fff;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 0.95;
  color: #fff;
  margin-bottom: 8px;
}

.service-card-num {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}

.service-card-desc {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
  margin-bottom: 12px;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
}

.services-footer {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
}

@media (max-width: 900px) {
  .services-bento {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-card.flagship { grid-column: span 2; }
}

@media (max-width: 640px) {
  .services-bento { grid-template-columns: 1fr; }
  .service-card.flagship { grid-column: span 1; min-height: 320px; }
  .service-card { min-height: 280px; }
}

/* ============================================================
   GALLERY PREVIEW (index page)
   ============================================================ */
.gallery-preview {
  background: var(--surface);
  padding: var(--pad-section) 0;
}

.gallery-preview-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

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

.gallery-preview-header a {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 2px solid var(--primary);
  padding-bottom: 2px;
}

.gallery-grid-preview {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 2px;
  background: var(--ink);
  border: 2px solid var(--ink);
  min-height: 480px;
}

.gallery-tile {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
  background: var(--surface-2);
}
.gallery-tile > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: none;
  transition: transform 400ms ease, filter 400ms ease;
  filter: grayscale(20%);
}
.gallery-tile:hover > img {
  transform: scale(1.04);
  filter: grayscale(0%);
}

.gallery-tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12,12,15,0.55) 0%, transparent 60%);
  z-index: 1;
}

.gallery-stat-col {
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: var(--ink);
}

.gallery-stat-block {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 32px 28px;
}

.gallery-stat-green { background: var(--primary); }
.gallery-stat-light { background: var(--surface); }

.gallery-stat-headline {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 48px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 0.92;
  color: #fff;
}

.gallery-stat-headline-accent { color: var(--accent); }

.gallery-stat-number {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 900;
  color: var(--ink);
  line-height: 0.92;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.gallery-stat-number svg { width: 24px; height: 24px; color: var(--primary); }

.gallery-stat-sub {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 8px;
}

@media (max-width: 900px) {
  .gallery-grid-preview { grid-template-columns: 1fr; }
  .gallery-stat-col { flex-direction: row; }
  .gallery-stat-block { flex: 1; padding: 24px 20px; }
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews {
  background: var(--canvas);
  padding: var(--pad-section) 0;
}

.reviews-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

.reviews-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 32px;
}

.reviews-aggregate {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  flex-shrink: 0;
}

.reviews-big-rating {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  letter-spacing: -0.02em;
}

.reviews-star-row {
  display: flex;
  gap: 3px;
}
.reviews-star-row svg { width: 20px; height: 20px; color: var(--primary); }

.reviews-meta {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

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

.review-card {
  background: var(--surface);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.review-card-green {
  background: var(--primary);
}

.review-card-plain {
  background: var(--ink);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 12px;
}

.review-stars {
  display: flex;
  gap: 3px;
}
.review-stars svg { width: 18px; height: 18px; color: var(--primary); }
.review-card-green .review-stars svg { color: var(--accent); }

.review-quote {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.5vw, 18px);
  font-style: italic;
  line-height: 1.55;
  color: var(--ink);
}

.review-quote-light { color: rgba(255,255,255,0.92); }

.review-attribution {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: auto;
}
.review-attribution strong { color: var(--ink); }
.review-attribution-light { color: rgba(255,255,255,0.65); }
.review-attribution-light strong { color: rgba(255,255,255,0.9); }

.review-stat-num {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 900;
  color: var(--accent);
  line-height: 0.92;
  letter-spacing: -0.02em;
  display: block;
}

.review-stat-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}

.review-card-plain .review-attribution { color: rgba(255,255,255,0.65); }
.review-card-plain .review-attribution strong { color: rgba(255,255,255,0.9); }

@media (max-width: 900px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-header { flex-direction: column; align-items: flex-start; }
  .reviews-aggregate { align-items: flex-start; }
}

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

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  background: var(--surface);
  padding: var(--pad-section) 0;
}

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

.faq-inner > .section-eyebrow { margin-bottom: 12px; }
.faq-inner > .section-title { margin-bottom: 48px; }

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 48px;
}

details.fade-up {
  border-bottom: 1px solid var(--ink);
  padding: 20px 0;
}

details.fade-up summary {
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(15px, 1.5vw, 17px);
  color: var(--ink);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  line-height: 1.3;
}
details.fade-up summary::-webkit-details-marker { display: none; }

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

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

@media (max-width: 900px) {
  .faq-grid { grid-template-columns: 1fr; gap: 0; }
}

/* ============================================================
   TEAM CTA (full-bleed photo section)
   ============================================================ */
.team-cta {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
}

.team-cta > img:first-of-type {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  z-index: 0;
  filter: grayscale(20%);
  max-height: none;
}

.team-cta-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    100deg,
    rgba(20, 92, 28, 0.92) 0%,
    rgba(20, 92, 28, 0.75) 55%,
    rgba(12, 12, 15, 0.6) 100%
  );
}

.team-cta-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }

.team-cta-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  padding: clamp(64px, 8vw, 112px) clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}

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

.team-cta-text .section-eyebrow { color: var(--accent); }

.team-cta-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 0.92;
  color: #fff;
}

.team-cta-title-accent { color: var(--accent); }

.team-cta-inner > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--ink);
  padding: 18px 32px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  white-space: nowrap;
  border: 2px solid var(--accent);
  transition: background 150ms;
  flex-shrink: 0;
}
.team-cta-inner > a:hover {
  background: #25b834;
  border-color: #25b834;
  text-decoration: none;
  color: var(--ink);
}

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

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact {
  background: var(--canvas);
  padding: var(--pad-section) 0;
}

.contact-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 80px;
  align-items: start;
}

.contact-form-side h2,
.contact-form-wrap h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 0.92;
  color: var(--ink);
  margin-bottom: 32px;
}

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

.form-intro {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 8px;
}

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

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

.form-field {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--ink);
  margin: -1px 0 0 -1px;
  padding: 14px 16px 10px;
  background: var(--canvas);
  transition: background 150ms;
}
.form-field:focus-within {
  background: var(--surface);
  z-index: 1;
}

.form-field.form-field-full { grid-column: span 2; }

.form-field label {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
  display: block;
}

.form-field input,
.form-field textarea,
.form-field select {
  border: none;
  outline: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  padding: 0;
  width: 100%;
  resize: vertical;
}

.form-field textarea { min-height: 100px; }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
}

.form-group input,
.form-group textarea,
.form-group select {
  border: 1px solid var(--border);
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 15px;
  background: var(--canvas);
  color: var(--ink);
  border-radius: 0;
  outline: none;
  transition: border-color 150ms;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary);
}

.form-submit {
  margin-top: 4px;
  border-top: 1px solid var(--ink);
}

.contact-info-side { padding-top: 80px; }

.contact-info-block {
  border: 2px solid var(--ink);
  margin-bottom: 24px;
}

.contact-info-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.contact-info-row:last-child { border-bottom: none; }

.contact-info-lbl {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-info-val {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.5;
}
.contact-info-val a { color: var(--primary); }
.contact-info-val a:hover { text-decoration: underline; }

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

.info-card-eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
  display: block;
}

.info-card-phone {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-decoration: none;
  margin-bottom: 24px;
  line-height: 1;
}
.info-card-phone:hover { color: var(--primary); text-decoration: none; }
.info-card-phone a { color: inherit; }
.info-card-phone a:hover { color: var(--primary); text-decoration: none; }

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

.info-block { margin-bottom: 20px; }

.info-block-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
  display: block;
}

.info-block-value {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.55;
}
.info-block-value a { color: var(--primary); }

.rating-display { display: flex; align-items: center; gap: 10px; }

.stars-row { display: flex; gap: 3px; }
.stars-row svg { width: 18px; height: 18px; color: var(--primary); }

.rating-text {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.06em;
}

.service-area-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }

.area-pill {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border: 1px solid var(--border-heavy);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  border-radius: 0;
}

.trust-note {
  border-top: 1px solid var(--border);
  padding-top: 16px;
  margin-top: 4px;
}
.trust-note p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

.contact-guarantee {
  border: 2px solid var(--primary);
  padding: 20px;
  background: rgba(20,92,28,0.04);
}

.contact-guarantee-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
}
.contact-guarantee p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink);
}

@media (max-width: 900px) {
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .contact-info-side { padding-top: 0; }
  .form-row { grid-template-columns: 1fr; }
  .form-field.form-field-full { grid-column: span 1; }
}

/* ============================================================
   PAGE HEADER (inner pages)
   ============================================================ */
.page-header {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.page-header > img:first-of-type,
.page-header-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  z-index: 0;
  max-height: none;
}

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

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

.page-header-eyebrow {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.page-header-eyebrow a { color: var(--accent); text-decoration: none; }
.page-header-eyebrow span { opacity: 0.6; }

.page-header-inner h1,
.page-header-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 96px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 0.92;
  color: #fff;
  margin-bottom: 16px;
}

.page-header-sub {
  font-size: clamp(15px, 1.5vw, 18px);
  color: rgba(255,255,255,0.8);
  max-width: 56ch;
  line-height: 1.55;
}

.page-eyebrow {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

/* ============================================================
   SERVICE FEATURES (services.html)
   ============================================================ */
.service-feature {
  padding: var(--pad-section) 0;
  border-bottom: 1px solid var(--border);
}
.service-feature:nth-child(odd) { background: var(--canvas); }
.service-feature:nth-child(even) { background: var(--surface); }

.service-feature-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

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

.service-feature-photo {
  position: relative;
  overflow: hidden;
  border: 2px solid var(--ink);
}
.service-feature-photo > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
  max-height: none;
  filter: grayscale(15%);
  transition: filter 400ms;
}
.service-feature-photo:hover > img { filter: grayscale(0%); }

.service-feature-index {
  position: absolute;
  top: 20px;
  left: 20px;
  font-family: var(--font-display);
  font-size: 80px;
  font-weight: 900;
  color: rgba(255,255,255,0.12);
  line-height: 1;
  letter-spacing: -0.02em;
  z-index: 2;
  text-transform: uppercase;
}

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

.service-feature-eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
}

.service-feature-body h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 52px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 0.92;
  color: var(--ink);
}

.service-feature-copy {
  font-size: 16px;
  line-height: 1.68;
  color: var(--muted);
}

.service-feature-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-feature-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--ink);
  line-height: 1.5;
}
.service-feature-bullets li::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background: var(--primary);
  flex-shrink: 0;
  margin-top: 6px;
}

.service-feature-body > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  padding: 16px 28px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  border: 2px solid var(--primary);
  align-self: flex-start;
  transition: background 150ms, border-color 150ms;
}
.service-feature-body > a:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  text-decoration: none;
  color: #fff;
}

.services-index {
  background: var(--ink);
  border-bottom: 2px solid var(--ink);
  position: sticky;
  top: var(--header-height);
  z-index: 500;
}

.services-index-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.services-index-inner::-webkit-scrollbar { display: none; }

.services-index-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 24px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  white-space: nowrap;
  border-right: 1px solid rgba(255,255,255,0.1);
  transition: color 150ms, background 150ms;
}
.services-index-link:hover {
  color: #fff;
  background: rgba(255,255,255,0.06);
  text-decoration: none;
}

.services-index-num {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--primary-light);
  line-height: 1;
}

@media (max-width: 900px) {
  .service-feature-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .service-feature-inner.reverse { direction: ltr; }
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--ink);
  padding: var(--pad-section) 0;
}

.cta-banner-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: center;
}

.cta-banner-eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  display: block;
}

.cta-banner-title, .cta-banner-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 64px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 0.92;
  color: #fff;
}

.cta-banner-title span { color: var(--accent); }

.cta-banner-note {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  margin-top: 12px;
  line-height: 1.6;
}

.cta-banner-phone {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 32px);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  margin-top: 12px;
}
.cta-banner-phone:hover { color: #fff; text-decoration: none; }

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

.cta-banner-actions a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 28px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
  border: 2px solid;
  transition: background 150ms, color 150ms, border-color 150ms;
}

.cta-banner-actions a:first-child {
  background: var(--accent);
  color: var(--ink);
  border-color: var(--accent);
}
.cta-banner-actions a:first-child:hover {
  background: #25b834;
  border-color: #25b834;
  text-decoration: none;
  color: var(--ink);
}

.cta-banner-actions a:last-child {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}
.cta-banner-actions a:last-child:hover {
  background: rgba(255,255,255,0.08);
  border-color: #fff;
  text-decoration: none;
  color: #fff;
}

.cta-form {
  background: var(--surface);
  padding: 32px;
  border: 2px solid var(--surface);
}
.cta-form h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 24px;
}
.cta-form form { display: flex; flex-direction: column; gap: 14px; }

@media (max-width: 900px) {
  .cta-banner-inner { grid-template-columns: 1fr; gap: 40px; }
  .cta-banner-actions { flex-direction: row; flex-wrap: wrap; }
}

/* ============================================================
   GALLERY PAGE
   ============================================================ */
.gallery-section {
  background: var(--canvas);
  padding: var(--pad-section) 0;
}

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

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

.gallery-heading-block { display: flex; flex-direction: column; }

.gallery-count {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  flex-shrink: 0;
}

.filter-strip {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  border: 2px solid var(--ink);
  margin-bottom: 32px;
  width: fit-content;
}

.filter-pill {
  padding: 10px 20px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  background: transparent;
  border: none;
  border-right: 1px solid var(--ink);
  cursor: pointer;
  transition: background 150ms, color 150ms;
}
.filter-pill:last-child { border-right: none; }
.filter-pill:hover { background: var(--ink); color: #fff; }
.filter-pill.active { background: var(--primary); color: #fff; border-color: var(--primary); }

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

.gallery-card {
  position: relative;
  overflow: hidden;
  display: block;
  aspect-ratio: 4 / 3;
  background: var(--surface-2);
  text-decoration: none;
}

.gallery-card.featured {
  grid-column: span 2;
  aspect-ratio: 16 / 9;
}

.gallery-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: none;
  transition: transform 450ms ease, filter 450ms ease;
  filter: grayscale(20%);
}
.gallery-card:hover > img { transform: scale(1.04); filter: grayscale(0%); }

.gallery-card-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 10px;
  line-height: 1;
}

.gallery-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12,12,15,0.9) 0%, transparent 60%);
  z-index: 2;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 0;
  transition: opacity 300ms;
}
.gallery-card:hover .gallery-card-overlay { opacity: 1; }

.gallery-card-info-static {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 24px;
  background: linear-gradient(to top, rgba(12,12,15,0.85) 0%, transparent 100%);
}

.gallery-card h3 {
  font-family: var(--font-display);
  font-size: clamp(14px, 1.5vw, 20px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: #fff;
  margin-bottom: 6px;
}

.gallery-card-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.gallery-card-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
  margin-bottom: 12px;
}

.gallery-card-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.gallery-meta-item {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}

.gallery-view-all {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

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

/* Stats bar (gallery page) */
.stats-bar {
  background: var(--ink);
  padding: 0;
  border-top: 2px solid var(--ink);
}

.stats-bar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 48px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-item:last-child { border-right: none; }

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 900;
  line-height: 0.92;
  color: var(--accent);
  letter-spacing: -0.02em;
  display: block;
}

.stat-label {
  font-family: var(--font-mono);
  font-size: clamp(9px, 0.9vw, 11px);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  display: block;
  margin-top: 4px;
}

@media (max-width: 900px) {
  .stats-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
}
@media (max-width: 640px) {
  .stats-bar-inner { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-story {
  background: var(--canvas);
  padding: var(--pad-section) 0;
}

.about-story-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: start;
}

.about-portrait-col { display: flex; flex-direction: column; gap: 24px; }

.about-portrait-wrap {
  position: relative;
  overflow: hidden;
  border: 2px solid var(--ink);
}
.about-portrait-wrap > img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
  filter: grayscale(20%);
  display: block;
}

.about-portrait-accent {
  position: absolute;
  bottom: -8px;
  left: -8px;
  width: 60%;
  height: 50%;
  background: var(--primary);
  z-index: -1;
}

.about-portrait-label {
  border-top: 2px solid var(--ink);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.about-portrait-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.about-portrait-role {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.about-portrait-stat {
  display: flex;
  gap: 24px;
  margin-top: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.portrait-stat-item { display: flex; flex-direction: column; gap: 4px; }

.portrait-stat-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  letter-spacing: -0.02em;
}

.portrait-stat-label {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

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

.about-eyebrow {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 4px;
}

.about-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 64px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 0.92;
  color: var(--ink);
  margin-bottom: 8px;
}
.about-headline span { color: var(--primary); }

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

.about-copy-full {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  columns: 2;
  column-gap: 40px;
}

.drop-cap::first-letter {
  font-family: var(--font-display);
  font-size: 4em;
  font-weight: 900;
  color: var(--primary);
  float: left;
  line-height: 0.75;
  margin: 4px 8px 0 0;
  text-transform: uppercase;
}

.about-copy-flow p {
  font-size: 16px;
  line-height: 1.68;
  color: var(--muted);
}

@media (max-width: 900px) {
  .about-story-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-copy-full { columns: 1; }
}

/* Pros section */
.pros-section {
  background: var(--surface);
  padding: var(--pad-section) 0;
}

.pros-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

.section-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 64px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 0.92;
  color: var(--ink);
  margin-bottom: 48px;
}
.section-headline span { color: var(--primary); }

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

.pro-card {
  background: var(--canvas);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pro-card-num {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 900;
  color: rgba(20,92,28,0.12);
  line-height: 0.85;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  display: block;
}

.pro-card-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-top: 8px;
}

.pro-card-biz {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
}

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

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

/* Values section */
.values-section {
  background: var(--canvas);
  padding: var(--pad-section) 0;
}

.values-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

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

.value-card {
  background: var(--surface);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
  transition: background 200ms;
}
.value-card:hover { background: var(--canvas); }

.value-card-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--primary);
}

.value-icon {
  width: 28px;
  height: 28px;
  color: var(--primary);
}

.value-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--ink);
}

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

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

/* Journey section */
.journey-section {
  background: var(--surface);
  padding: var(--pad-section) 0;
}

.journey-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

.journey-eyebrow {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 40px;
}

.journey-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 2px solid var(--ink);
  border-left: 2px solid var(--ink);
}

.journey-step {
  padding: 32px 28px;
  border-right: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.journey-step-year {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.journey-step-num {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 900;
  color: var(--primary);
  line-height: 0.85;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.journey-step-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-top: 8px;
}

.journey-step-body {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}

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

/* Crew strip */
.crew-strip-section {
  background: var(--ink);
  padding: var(--pad-section) 0;
}

.crew-strip-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

.crew-strip-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
}
.crew-strip-head .section-eyebrow { color: var(--accent); }
.crew-strip-head .section-headline { color: #fff; }
.crew-strip-head .section-headline span { color: var(--accent); }
.crew-strip-head a {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 2px;
  white-space: nowrap;
  flex-shrink: 0;
}

.crew-strip-img-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(255,255,255,0.15);
}

.crew-strip-img-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: rgba(255,255,255,0.05);
}
.crew-strip-img-item > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: none;
  filter: grayscale(40%) brightness(0.85);
  transition: filter 400ms;
}
.crew-strip-img-item:hover > img { filter: grayscale(0%) brightness(1); }

.crew-strip-img-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 16px;
  background: linear-gradient(to top, rgba(12,12,15,0.85) 0%, transparent 100%);
}
.crew-strip-img-label span {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}

@media (max-width: 640px) {
  .crew-strip-img-wrap { grid-template-columns: 1fr; }
  .crew-strip-img-item { aspect-ratio: 16/9; }
}

/* Guarantee strip */
.guarantee-strip {
  background: var(--canvas);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}

.guarantee-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.guarantee-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 40px 32px;
  border-right: 1px solid var(--ink);
}
.guarantee-item:last-child { border-right: none; }

.guarantee-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.guarantee-icon svg { width: 32px; height: 32px; color: var(--primary); }

.guarantee-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 6px;
}

.guarantee-body {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}

@media (max-width: 900px) {
  .guarantee-inner { grid-template-columns: 1fr; }
  .guarantee-item { border-right: none; border-bottom: 1px solid var(--ink); }
  .guarantee-item:last-child { border-bottom: none; }
}

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

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: 280px repeat(3, 1fr);
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: 280px repeat(3, 1fr);
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

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

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: #fff;
}

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

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

.footer-contact-line,
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
}
.footer-contact-line svg,
.footer-contact-item svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; }
.footer-contact-line a,
.footer-contact-item a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
}
.footer-contact-line a:hover,
.footer-contact-item a:hover { color: #fff; text-decoration: underline; }

.footer-phone-link,
.footer-email-link {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 13px;
}
.footer-phone-link:hover,
.footer-email-link:hover { color: var(--accent); text-decoration: none; }

.footer-col { display: flex; flex-direction: column; }

.footer-col-title {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
  display: block;
}

.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}

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

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

.footer-col ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
}
.footer-col ul li a:hover { color: #fff; text-decoration: none; }

.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 24px clamp(20px, 4vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

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

.footer-rating {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}
.footer-rating span { color: var(--accent); }

.footer-trust {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.footer-trust-chip,
.footer-trust-item,
.footer-cert {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  padding: 5px 10px;
  border: 1px solid rgba(255,255,255,0.15);
}

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

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

/* ============================================================
   MOBILE STICKY CTA
   ============================================================ */
.mobile-sticky-cta,
.mobile-cta-pill {
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-sticky-cta > a,
a.mobile-cta-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: #fff;
  padding: 14px 22px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  box-shadow: 0 18px 40px -10px rgba(0,0,0,0.45);
  transition: background 150ms, transform 150ms;
}
.mobile-sticky-cta > a:hover,
a.mobile-cta-pill:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  text-decoration: none;
  color: #fff;
}

.mobile-sticky-cta svg,
.mobile-cta-pill svg { width: 20px; height: 20px; flex-shrink: 0; }

@media (min-width: 900px) {
  .mobile-sticky-cta,
  .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(-32px);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

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

.stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 500ms ease, transform 500ms ease;
}

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

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

/* ============================================================
   SERVICE CARD HOVER (mandatory pattern)
   ============================================================ */
.service-card { transition: transform 250ms ease-out, box-shadow 250ms ease-out; }
.service-card:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -16px rgba(0,0,0,0.18); }

/* ============================================================
   MISC / UTILITY
   ============================================================ */
.featured { position: relative; }

.reverse {
  direction: rtl;
}
.reverse > * {
  direction: ltr;
}

/* Scroll progress */
#progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0;
  background: var(--accent);
  z-index: 9999;
  transition: width 80ms linear;
  pointer-events: none;
}

/* ============================================================
   RESPONSIVE CLEANUP
   ============================================================ */
@media (max-width: 640px) {
  .hero-inner { padding-bottom: 80px; }
  .trust-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .gallery-preview-header { flex-direction: column; align-items: flex-start; }
  .cta-banner-inner { grid-template-columns: 1fr; gap: 32px; }
  .services-footer { flex-direction: column; }
}


/* === Validator patches (auto-applied) === */
/* validator patch: grid children without placement → span full row */
.gallery-tile { grid-column: 1 / -1; }
.gallery-stat-col { grid-column: 1 / -1; }
.contact-form-side { grid-column: 1 / -1; }
.contact-info-lbl { grid-column: 1 / -1; }
.contact-info-val { grid-column: 1 / -1; }
.brand-band-claim { grid-column: 1 / -1; }
.brand-band-cta { grid-column: 1 / -1; }
.footer-col { grid-column: 1 / -1; }
.brand-band-chips { grid-column: 1 / -1; }
.gallery-card { grid-column: 1 / -1; }
.footer-grid { grid-column: 1 / -1; }
.footer-bottom { grid-column: 1 / -1; }
.brand-band-meta { grid-column: 1 / -1; }
.about-copy-col { grid-column: 1 / -1; }
.pro-card { grid-column: 1 / -1; }
.value-card { grid-column: 1 / -1; }
.journey-step { grid-column: 1 / -1; }
.crew-strip-img-item { grid-column: 1 / -1; }
.form-field { 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; }
