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

/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --primary:        #749D2A;
  --primary-dark:   #5a7a1f;
  --primary-light:  #8fbb35;
  --accent:         #3C7C44;
  --canvas:         #FFFFFF;
  --surface:        #F7F4ED;
  --surface-2:      #EDE9DF;
  --ink:            #141414;
  --ink-mid:        #2e2e2e;
  --muted:          #6B665C;
  --border:         rgba(116,157,42,0.22);
  --border-neutral: rgba(20,20,20,0.1);
  --header-height:  72px;
  --radius:         0px;
  --section-py:     clamp(96px, 12vh, 180px);
}

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

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

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

body {
  font-family: 'Inter Tight', system-ui, sans-serif;
  font-weight: 500;
  font-size: 16.5px;
  line-height: 1.68;
  color: var(--ink);
  background: var(--canvas);
  -webkit-font-smoothing: antialiased;
}

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

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

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

ul { list-style: none; }

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

/* ============================================================
   TYPOGRAPHY SCALE
   ============================================================ */
h1 {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -0.03em;
}
h2 {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.025em;
}
h3 {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.02em;
}
h4 {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 11px;
}

.section-eyebrow, .page-header-eyebrow, .page-eyebrow,
.team-eyebrow, .cta-banner-eyebrow, .cta-band-eyebrow,
.feature-service-label, .gallery-section-eyebrow,
.footer-col-title, .footer-tagline-label, .service-areas-label {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
  display: block;
  margin-bottom: 14px;
}

/* ============================================================
   LAYOUT CONTAINERS
   ============================================================ */
.container, .section-inner, .contact-inner, .credentials-inner,
.faq-inner, .service-areas-inner, .services-detail-header,
.gallery-full-inner, .footer-inner {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(20px, 5vw, 80px);
  padding-right: clamp(20px, 5vw, 80px);
}

.wide-container { max-width: 1400px; margin: 0 auto; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary, .btn-estimate, .btn-submit, .btn-white,
.btn-outline, .btn-outline-white, .btn-outline-light,
.btn-phone, .btn-primary-light {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 18px 32px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 200ms, color 200ms, transform 160ms, box-shadow 200ms;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}

.btn-primary, .btn-estimate, .btn-submit {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.btn-primary:hover, .btn-estimate:hover, .btn-submit:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 10px 30px -8px rgba(116,157,42,0.45);
}

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

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

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

.btn-phone svg, .btn-primary svg, .btn-estimate svg,
.btn-white svg, .btn-outline svg, .btn-outline-white svg {
  width: 18px; height: 18px; flex-shrink: 0;
}

/* ============================================================
   SVG CAPS (all unsized SVGs)
   ============================================================ */
svg { display: block; }
.faq-chevron { width: 20px; height: 20px; transition: transform 220ms; flex-shrink: 0; }
.contact-detail-icon svg, .info-icon svg { width: 20px; height: 20px; }
.gallery-card-location svg { width: 14px; height: 14px; }
.footer-contact-line svg { width: 16px; height: 16px; flex-shrink: 0; }
.mobile-sticky-cta svg, .mobile-call svg, .mobile-call-pill svg, .mobile-cta-sticky svg { width: 22px; height: 22px; }
.ribbon-dot { display: inline-block; }
.trust-badge svg, .trust-chip svg { width: 18px; height: 18px; flex-shrink: 0; }
.nav-cta svg { width: 16px; height: 16px; }
.cta-banner-actions svg { width: 18px; height: 18px; }
.credential-icon svg { width: 32px; height: 32px; }
.value-num svg { width: 24px; height: 24px; }
.footer-cert-badge 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 {
  height: var(--header-height);
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo { flex: 0 0 auto; }
.nav-logo img { max-height: 44px; max-width: 200px; width: auto; object-fit: contain; }

.nav-pages {
  flex: 1;
  display: flex;
  justify-content: center;
}

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

.nav-pages a {
  display: inline-block;
  padding: 6px 0;
  font-family: 'Archivo', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 150ms;
}
.nav-pages a:hover { color: var(--primary); text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 6px; }
.nav-pages a[aria-current="page"] { color: var(--primary); border-bottom: 2px solid var(--primary); }

.nav-cta {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  padding: 10px 20px;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
  transition: filter 200ms;
}
.nav-cta:hover { filter: brightness(0.92); color: #fff; text-decoration: none; }
.nav-cta .nav-cta-num { font-size: 13px; }

.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-shrink: 0;
}

@media (max-width: 900px) {
  .top-nav { padding: 0 18px; gap: 12px; }

  .nav-pages {
    display: none;
    position: absolute;
    top: var(--header-height);
    left: 0; right: 0;
    background: var(--canvas);
    border-bottom: 1px solid rgba(0,0,0,0.08);
    padding: 20px 28px;
    flex-direction: column;
    align-items: flex-start;
    z-index: 800;
  }
  .nav-pages ul { flex-direction: column; gap: 4px; width: 100%; }
  .nav-pages a { font-size: 17px; padding: 10px 0; }
  .nav-pages.open { display: flex; }

  .nav-toggle { display: flex; }

  .nav-cta .nav-cta-num { display: none; }
  .nav-cta { padding: 9px 14px; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 92vh;
  background: var(--ink);
}

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

.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    160deg,
    rgba(20,20,20,0.18) 0%,
    rgba(20,20,20,0.28) 40%,
    rgba(58,84,20,0.72) 100%
  );
}

.hero-ribbon {
  position: absolute;
  top: 28px; right: 28px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.13);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.28);
  padding: 10px 18px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
}
.ribbon-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--primary);
  animation: pulse-dot 1.8s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.65; }
}

.hero-inner {
  position: relative; z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 92vh;
  padding: clamp(40px, 6vw, 80px) clamp(24px, 5vw, 80px) clamp(56px, 8vh, 96px);
  max-width: 1440px;
  margin: 0 auto;
}

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

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

.hero-sub {
  font-family: 'Inter Tight', sans-serif;
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  max-width: 52ch;
  line-height: 1.55;
  margin-bottom: 36px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 44px;
}
.hero-ctas .btn-primary {
  background: var(--primary);
  border-color: var(--primary);
  font-size: 14px;
}
.hero-ctas .btn-phone {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.4);
  color: #fff;
}
.hero-ctas .btn-phone:hover { background: rgba(255,255,255,0.18); color: #fff; }

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

.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  border: 1px solid rgba(116,157,42,0.55);
  background: rgba(20,20,20,0.45);
  backdrop-filter: blur(6px);
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
}

@media (max-width: 640px) {
  .hero-inner { padding-bottom: 48px; }
  .hero-ribbon { top: 16px; right: 16px; font-size: 9px; padding: 8px 12px; }
}

/* ============================================================
   MARQUEE STRIP
   ============================================================ */
.marquee-strip {
  overflow: hidden;
  background: var(--ink);
  padding: 16px 0;
  border-top: 1px solid rgba(116,157,42,0.35);
  border-bottom: 1px solid rgba(116,157,42,0.35);
  max-height: 64px;
  position: relative;
  z-index: 1;
}

.marquee-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: marquee 38s linear infinite;
  will-change: transform;
}

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

.marquee-item {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: clamp(11px, 1.2vw, 14px);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  padding: 0 32px;
  line-height: 1.2;
}

.marquee-sep {
  color: var(--primary);
  font-size: 18px;
  align-self: center;
  flex-shrink: 0;
  line-height: 1;
}

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

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--surface);
  border-bottom: 1px solid var(--border-neutral);
  padding: 20px 0;
}

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

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid var(--border);
  background: var(--canvas);
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
}
.trust-badge svg { color: var(--primary); }

/* ============================================================
   SECTION BASE
   ============================================================ */
.section-inner { padding-top: var(--section-py); padding-bottom: var(--section-py); }
.faq-inner, .credentials-inner, .service-areas-inner {
  padding-top: var(--section-py);
  padding-bottom: var(--section-py);
}

.section-title, .section-headline, .services-detail-h2 {
  font-size: clamp(36px, 5vw, 72px);
  margin-bottom: 48px;
  max-width: 22ch;
}

/* Alternating backgrounds */
#services { background: var(--canvas); }
#gallery  { background: var(--surface); }
#service-areas { background: var(--canvas); }
#faq { background: var(--surface); }
#contact { background: var(--canvas); }

/* ============================================================
   SERVICES — TABBED PANEL
   ============================================================ */
.services .section-inner { padding-bottom: 0; }

.services-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}

.service-tab {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 10px 20px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: background 180ms, color 180ms, border-color 180ms;
  border-radius: var(--radius);
  white-space: nowrap;
}
.service-tab:hover { border-color: var(--primary); color: var(--primary); }
.service-tab.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.services-panels { position: relative; }

.service-panel {
  display: none;
  grid-template-columns: 45% 55%;
  min-height: 480px;
  background: var(--surface);
}
.service-panel.active { display: grid; }

.service-panel > img,
.service-panel-img {
  width: 100%;
  height: 100%;
  max-height: 480px;
  object-fit: cover;
  display: block;
  filter: saturate(0.88);
}

/* Override section img cap for service panel images */
.service-panel img {
  position: static;
  max-height: 480px !important;
  height: 100%;
  object-fit: cover;
}

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

.service-num {
  font-family: 'Archivo Black', sans-serif;
  font-size: 72px;
  font-weight: 900;
  line-height: 1;
  color: var(--primary);
  opacity: 0.18;
  letter-spacing: -0.04em;
  margin-bottom: -16px;
  margin-top: -8px;
}

.service-panel-body h3 {
  font-size: clamp(26px, 3vw, 40px);
  color: var(--ink);
}

.service-panel-title { font-size: clamp(26px, 3vw, 40px); }

.service-panel-body p {
  font-size: 16px;
  line-height: 1.68;
  color: var(--muted);
}

@media (max-width: 900px) {
  .service-panel { grid-template-columns: 1fr; min-height: auto; }
  .service-panel > img { max-height: 260px !important; height: 260px; }
  .service-panel-body { padding: 28px 24px; }
  .service-num { font-size: 48px; }
}

/* ============================================================
   ABOUT STORY
   ============================================================ */
.about-story { background: var(--canvas); }

.about-story-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: var(--section-py) clamp(20px, 5vw, 80px);
  display: grid;
  grid-template-columns: 38% 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}

.about-story-photo-col {
  position: relative;
}
.about-story-photo-col img {
  width: 100%;
  max-height: 580px;
  object-fit: cover;
  display: block;
  filter: saturate(0.9);
}

.about-photo-caption {
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 12px;
}

.about-story-text { padding-top: 8px; }
.section-headline { margin-bottom: 32px; }

.about-body p {
  font-size: 17px;
  line-height: 1.72;
  color: var(--ink-mid);
  margin-bottom: 18px;
  max-width: 62ch;
}

/* Values grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.value-card {
  background: var(--surface);
  padding: 24px;
  border-top: 3px solid var(--primary);
}

.value-num {
  font-family: 'Archivo Black', sans-serif;
  font-size: 36px;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 6px;
}

.value-title {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 8px;
}

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

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

/* ============================================================
   GALLERY — HOME PAGE
   ============================================================ */
#gallery.gallery .section-inner { padding-bottom: var(--section-py); }

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

.gallery-tile {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  display: block;
  background: var(--surface-2);
  position: relative;
}
.gallery-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.88);
  transition: transform 500ms ease, filter 400ms;
  max-height: none !important;
}
.gallery-tile:hover img { transform: scale(1.04); filter: saturate(1); }

/* CTA tile */
.gallery-cta-tile {
  background: var(--ink);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 24px;
  text-decoration: none;
}
.gallery-cta-tile:hover { background: var(--primary); text-decoration: none; }
.gallery-cta-icon { font-size: 32px; color: var(--primary); }
.gallery-cta-tile:hover .gallery-cta-icon { color: #fff; }
.gallery-cta-label {
  font-family: 'Archivo Black', sans-serif;
  font-size: 18px;
  color: #fff;
  text-align: center;
}
.gallery-cta-sub {
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

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

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

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

.gallery-section-title {
  font-size: clamp(36px, 4vw, 64px);
}

.gallery-count-label {
  font-family: 'Archivo', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

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

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

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

.gallery-card {
  aspect-ratio: 4 / 3;
  position: relative;
  overflow: hidden;
  background: var(--surface-2);
  grid-column: auto;
}
.gallery-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.85);
  transition: transform 500ms ease, filter 400ms;
  max-height: none !important;
}
.gallery-card:hover img { transform: scale(1.04); filter: saturate(1); }

.gallery-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,20,20,0.72) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 300ms;
}
.gallery-card:hover .gallery-card-overlay { opacity: 1; }

.gallery-card-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 16px 18px;
  transform: translateY(8px);
  opacity: 0;
  transition: opacity 280ms, transform 280ms;
}
.gallery-card:hover .gallery-card-body { opacity: 1; transform: translateY(0); }

.gallery-card-body h3 {
  font-size: 16px;
  color: #fff;
  margin-bottom: 4px;
}
.gallery-card-tag {
  font-family: 'Archivo', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: 4px;
}
.gallery-card-label {
  position: absolute;
  top: 12px; left: 12px;
  font-family: 'Archivo', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--primary);
  color: #fff;
  padding: 4px 10px;
}
.gallery-card-location {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: rgba(255,255,255,0.7);
}

.gallery-meta-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  margin-top: 3px;
}
.gallery-meta-card {
  background: var(--surface);
  padding: 28px 24px;
  border-top: 3px solid var(--primary);
}
.gallery-meta-num {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 6px;
}
.gallery-meta-label {
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 8px;
}
.gallery-meta-desc { font-size: 14px; color: var(--muted); line-height: 1.55; }

@media (max-width: 900px) {
  .gallery-full-inner #gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-meta-strip { grid-template-columns: 1fr; }
}

/* ============================================================
   SERVICE AREAS
   ============================================================ */
.service-areas .section-inner { padding-bottom: var(--section-py); }
.service-areas-inner { padding-top: var(--section-py); padding-bottom: var(--section-py); }

.areas-cloud, .areas-pill-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.area-chip, .area-pill {
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid var(--border);
  font-family: 'Archivo', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mid);
  background: var(--canvas);
  transition: background 180ms, color 180ms;
}
.area-chip:hover, .area-pill:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq .section-inner { padding-bottom: var(--section-py); }
.faq-inner { max-width: 1440px; margin: 0 auto; }

.faq-list { max-width: 800px; }

details.faq-item {
  border-bottom: 1px solid var(--border-neutral);
  padding: 0;
}
details.faq-item > summary {
  cursor: pointer;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 17px;
  line-height: 1.35;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 22px 0;
  color: var(--ink);
  transition: color 160ms;
}
details.faq-item > summary::-webkit-details-marker { display: none; }
details.faq-item > summary:hover { color: var(--primary); }

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

.faq-body, .faq-answer {
  font-size: 16px;
  line-height: 1.68;
  color: var(--muted);
  padding: 0 0 22px 0;
  max-width: 68ch;
}

/* also the faq page pattern on services.html */
.faq-list details {
  border-bottom: 1px solid var(--border-neutral);
}
.faq-list details > summary {
  cursor: pointer;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 17px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 22px 0;
  color: var(--ink);
}
.faq-list details > summary::-webkit-details-marker { display: none; }
.faq-list details > summary:hover { color: var(--primary); }
.faq-list details[open] > summary { color: var(--primary); }
.faq-list details[open] > summary .faq-chevron { transform: rotate(180deg); color: var(--primary); }

/* ============================================================
   TEAM CTA BAND
   ============================================================ */
.team-cta {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  min-height: 420px;
}
.team-cta > img:first-of-type {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  filter: brightness(0.3) saturate(0.5);
  z-index: 0;
  max-height: none !important;
}

.team-cta-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(20,20,20,0.85) 0%, rgba(58,124,68,0.6) 100%);
  z-index: 1;
}

.team-cta-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.team-cta-text { flex: 1 1 400px; }
.team-eyebrow { color: var(--primary-light); }

.team-sub {
  font-family: 'Archivo', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.72);
  margin-top: 12px;
  max-width: 52ch;
}

.team-cta .section-inner h2,
.team-cta-inner h2 {
  font-size: clamp(32px, 4.5vw, 64px);
  color: #fff;
  margin-bottom: 0;
}

/* ============================================================
   CTA BANNER (services.html / gallery.html / about.html)
   ============================================================ */
.cta-banner {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  padding: var(--section-py) 0;
}

.cta-banner > img:first-of-type {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  filter: brightness(0.28) saturate(0.6);
  z-index: 0;
  max-height: none !important;
}

.cta-banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(20,20,20,0.82) 0%, rgba(60,124,68,0.55) 100%);
  z-index: 1;
}

.cta-banner-inner {
  position: relative; z-index: 2;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 80px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-banner-text { flex: 1 1 400px; }

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

.cta-banner-headline, .cta-banner h2 {
  font-size: clamp(32px, 4.5vw, 68px);
  color: #fff;
  margin-bottom: 14px;
}

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

.cta-banner-phone {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(22px, 3vw, 36px);
  color: #fff;
  text-decoration: none;
}
.cta-banner-phone:hover { color: var(--primary-light); text-decoration: none; }

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

.cta-btns { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 24px; }

/* about.html cta-banner no bg image */
.about-story ~ .cta-banner:not(:has(img)) {
  background: var(--primary);
}

/* ============================================================
   CTA BAND (contact.html)
   ============================================================ */
.cta-band {
  background: var(--primary);
  padding: clamp(64px, 9vh, 120px) 0;
}
.cta-band-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 80px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-band-inner h2 {
  font-size: clamp(30px, 4vw, 56px);
  color: #fff;
}
.cta-band-inner p { color: rgba(255,255,255,0.8); margin-top: 10px; }
.cta-band-inner .section-eyebrow { color: rgba(255,255,255,0.72); }
.cta-band-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.cta-band-phone {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(20px, 2.5vw, 32px);
  color: #fff;
  text-decoration: none;
}

/* ============================================================
   CONTACT
   ============================================================ */
#contact.contact .section-inner { padding-bottom: var(--section-py); }

.contact-inner {
  padding-top: var(--section-py);
  padding-bottom: var(--section-py);
}

.contact-grid {
  display: grid;
  grid-template-columns: 58% 1fr;
  gap: clamp(32px, 5vw, 72px);
  margin-top: 48px;
}

/* contact.html layout */
.contact-form-wrap {
  background: var(--surface);
  padding: clamp(32px, 4vw, 56px);
}
.contact-info { background: var(--canvas); }

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

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

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

.form-group label {
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-group input,
.form-group textarea,
.form-group select {
  font-family: 'Inter Tight', sans-serif;
  font-size: 16px;
  font-weight: 500;
  padding: 14px 16px;
  border: 1px solid var(--border-neutral);
  background: var(--canvas);
  color: var(--ink);
  border-radius: 0;
  outline: none;
  transition: border-color 180ms;
  width: 100%;
  -webkit-appearance: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--primary);
}
.form-group textarea { min-height: 120px; resize: vertical; }

.form-disclaimer {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}

/* Contact info col */
.contact-info-col { padding-top: 8px; }
.contact-info-header h3 { font-size: clamp(22px, 2.5vw, 34px); margin-bottom: 24px; }
.contact-info-body { margin-top: 28px; display: flex; flex-direction: column; gap: 0; }

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border-neutral);
}
.contact-detail:first-child { border-top: 1px solid var(--border-neutral); }
.contact-detail-icon {
  width: 40px; height: 40px;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg { color: var(--primary); }
.contact-detail-label {
  font-family: 'Archivo', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.contact-detail-value { font-size: 15px; font-weight: 600; color: var(--ink); }

/* contact.html info items */
.contact-info-header { margin-bottom: 20px; }
.info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-neutral);
}
.info-divider { display: none; }
.info-icon {
  width: 36px; height: 36px;
  background: var(--surface);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.info-icon svg { width: 18px; height: 18px; color: var(--primary); }
.info-label {
  font-family: 'Archivo', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2px;
}
.info-value { font-size: 15px; font-weight: 600; color: var(--ink); }

.service-areas-label {
  margin-top: 20px;
  margin-bottom: 10px;
}
.service-area-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-inner { padding-top: clamp(48px, 8vw, 80px); padding-bottom: clamp(48px, 8vw, 80px); }
  .form-row { grid-template-columns: 1fr; }
}

/* ============================================================
   CREDENTIALS
   ============================================================ */
#credentials.credentials { background: var(--surface); }
.credentials-inner { max-width: 1440px; margin: 0 auto; }

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
  margin-top: 48px;
}

.credential-card {
  background: var(--canvas);
  padding: 32px 28px;
  border-top: 3px solid var(--primary);
  transition: transform 250ms, box-shadow 250ms;
}
.credential-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -16px rgba(0,0,0,0.14);
}

.credential-icon { margin-bottom: 18px; }
.credential-icon svg { color: var(--primary); }

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

.credential-value {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 900;
  color: var(--ink);
  line-height: 1.1;
  display: block;
  margin-bottom: 8px;
}

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

/* about.html credentials band */
.credentials-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
  margin-top: 48px;
}

.credential-badge {
  background: var(--canvas);
  padding: 28px 24px;
  border-top: 3px solid var(--primary);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.credential-badge-label {
  font-family: 'Archivo', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.credential-badge-value {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 900;
  color: var(--ink);
  line-height: 1.1;
}

.credential-badge-sub {
  font-size: 13px;
  color: var(--muted);
}

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

/* ============================================================
   SERVICES DETAIL PAGE
   ============================================================ */
.services-detail { background: var(--canvas); }
.services-detail-header {
  padding-top: var(--section-py);
  padding-bottom: 64px;
}
.services-detail-h2 { font-size: clamp(36px, 5vw, 72px); margin: 16px 0 20px; }
.services-detail-intro {
  font-size: 18px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 64ch;
}

.feature-block {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 80px) 80px;
  display: grid;
  grid-template-columns: 42% 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.feature-block:nth-child(even) { direction: rtl; }
.feature-block:nth-child(even) > * { direction: ltr; }

.feature-photo {
  position: relative;
  overflow: hidden;
}
.feature-photo img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  display: block;
  filter: saturate(0.88);
}

.feature-index {
  position: absolute;
  top: -16px;
  left: -16px;
  font-family: 'Archivo Black', sans-serif;
  font-size: 96px;
  font-weight: 900;
  line-height: 1;
  color: var(--primary);
  opacity: 0.15;
  letter-spacing: -0.04em;
  pointer-events: none;
  z-index: 1;
}

.feature-body { padding-top: 12px; }
.feature-service-label { margin-bottom: 10px; }
.feature-body h3 { font-size: clamp(24px, 3vw, 40px); margin-bottom: 18px; }
.feature-desc {
  font-size: 16.5px;
  line-height: 1.68;
  color: var(--muted);
  margin-bottom: 16px;
}

.feature-bullets {
  list-style: none;
  padding: 0;
  margin: 18px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.feature-bullets li {
  font-size: 15px;
  color: var(--ink-mid);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}
.feature-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px; height: 8px;
  background: var(--primary);
}

@media (max-width: 900px) {
  .feature-block { grid-template-columns: 1fr; direction: ltr; }
  .feature-block:nth-child(even) { direction: ltr; }
}

/* ============================================================
   PAGE HEADER (sub-pages)
   ============================================================ */
.page-header {
  min-height: 42vh;
  background: var(--ink);
  display: flex;
  align-items: flex-end;
}

.page-header-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(20,20,20,0.45) 0%, rgba(20,20,20,0.72) 100%);
  z-index: 1;
}

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

.page-header h1 {
  font-size: clamp(40px, 6vw, 88px);
  color: #fff;
  max-width: 18ch;
  margin-top: 12px;
}
.page-header-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.72);
  max-width: 56ch;
  margin-top: 14px;
}

.page-eyebrow, .page-header-eyebrow {
  color: var(--primary-light);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.72);
}

.footer-inner {
  padding-top: clamp(64px, 8vh, 96px);
  padding-bottom: clamp(40px, 5vh, 64px);
}

.footer-grid {
  display: grid;
  grid-template-columns: 28% repeat(3, 1fr);
  gap: clamp(32px, 4vw, 64px);
}

.footer-brand { grid-column: 1; }
.footer-brand img { margin-bottom: 16px; filter: brightness(10); }

.footer-tagline, .footer-brand-tagline {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.55);
  margin-bottom: 16px;
  max-width: 28ch;
}

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

.footer-about-text {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,0.5);
  max-width: 28ch;
  margin-top: 10px;
}

.footer-contact-line {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}
.footer-contact-line svg { color: var(--primary); flex-shrink: 0; }
.footer-contact-line a { color: rgba(255,255,255,0.7); }
.footer-contact-line a:hover { color: var(--primary-light); text-decoration: none; }

.footer-col-title {
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 18px;
}

.footer-col ul, .footer-links { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 150ms;
}
.footer-col a:hover { color: var(--primary-light); text-decoration: none; }

.footer-hours-list li {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  padding: 3px 0;
}
.day { color: rgba(255,255,255,0.75); font-weight: 600; }

.footer-hours { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.65; }
.footer-hours-note {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin-top: 8px;
  font-style: italic;
}

.footer-bottom {
  max-width: 1440px;
  margin: 0 auto;
  padding: 24px clamp(20px, 5vw, 80px) 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 48px;
}

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

.footer-legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-legal a {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
}
.footer-legal a:hover { color: var(--primary-light); text-decoration: none; }

.footer-certs { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.footer-cert-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Archivo', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.footer-cert-badge svg { color: var(--primary); }

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

/* ============================================================
   MOBILE STICKY CTA
   ============================================================ */
.mobile-sticky-cta, .mobile-call, .mobile-call-pill, .mobile-cta-sticky {
  position: fixed;
  bottom: 18px; right: 18px;
  z-index: 999;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: #fff;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 22px;
  border-radius: 999px;
  box-shadow: 0 18px 40px -10px rgba(0,0,0,0.45);
  text-decoration: none;
  transition: transform 200ms, box-shadow 200ms;
}
.mobile-sticky-cta:hover, .mobile-call:hover, .mobile-call-pill:hover, .mobile-cta-sticky:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 48px -12px rgba(0,0,0,0.5);
  color: #fff;
  text-decoration: none;
}

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

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

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

.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; }
.stagger.visible > *:nth-child(7)  { opacity: 1; transform: none; transition-delay: 480ms; }
.stagger.visible > *:nth-child(8)  { opacity: 1; transform: none; transition-delay: 560ms; }

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

/* ============================================================
   REVIEW CARDS
   ============================================================ */
.review-card {
  padding: 28px;
  border-radius: 0;
  background: var(--surface-2);
}
.review-stars svg { color: var(--primary); width: 18px; height: 18px; }
.review-quote { font-size: 17px; line-height: 1.55; margin: 14px 0; }
.review-attribution { font-size: 13px; color: var(--muted); opacity: 0.75; }

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

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

/* ============================================================
   TABLE CELLS (thead-only dark)
   ============================================================ */
.services-table thead .col-service,
.services-table thead .col-desc,
.services-table thead .col-timeline,
.services-table thead .col-price {
  background: var(--ink);
  color: #fff;
}

/* ============================================================
   MISC UTILITIES
   ============================================================ */
.bleed { width: 100%; max-width: none; }

@media (max-width: 640px) {
  :root { --section-py: clamp(64px, 10vh, 96px); }
  .cta-banner-inner { flex-direction: column; }
  .team-cta-inner { flex-direction: column; }
  .cta-band-inner { flex-direction: column; }
}


/* === Validator patches (auto-applied) === */
/* validator patch: grid children without placement → span full row */
.gallery-tile { grid-column: 1 / -1; }
.gallery-cta-tile { grid-column: 1 / -1; }
.footer-col { grid-column: 1 / -1; }
.feature-photo { grid-column: 1 / -1; }
.credential-card { grid-column: 1 / -1; }
.about-story-text { grid-column: 1 / -1; }
.value-card { 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; }
