@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=IBM+Plex+Sans:ital,wght@0,400;0,500;0,600;1,400&family=IBM+Plex+Mono:wght@400;500;600&display=swap');

/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --primary:        #64AC44;
  --accent:         #375F25;
  --canvas:         #FFFFFF;
  --surface:        #F4F2EE;
  --ink:            #0C0C0F;
  --muted:          #6B6B6B;
  --border:         rgba(12,12,15,0.10);
  --border-mid:     rgba(12,12,15,0.16);

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

  --radius:         4px;
  --radius-pill:    999px;

  --section-py:     clamp(88px, 11vh, 144px);
  --content-max:    1280px;
  --wide-max:       1400px;

  --header-height:  72px;
}
@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);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--canvas);
  line-height: 1.65;
}

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

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

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

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

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

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

/* Heading anchor resets */
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 { color: inherit; text-decoration: none; transition: color 150ms; }
a:hover { color: var(--primary); text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 4px; }

ul { list-style: none; }

svg { display: block; }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
}
.wide-container {
  max-width: var(--wide-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
}
.bleed { width: 100%; max-width: none; }

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

/* ============================================================
   TYPOGRAPHY SCALE
   ============================================================ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: -0.03em;
  color: var(--ink);
}
h1 { font-size: clamp(48px, 7vw, 96px); }
h2 { font-size: clamp(36px, 5vw, 72px); }
h3 { font-size: clamp(20px, 2.5vw, 28px); line-height: 1.15; letter-spacing: -0.02em; }
p { line-height: 1.68; }

/* Mono label utility */
.mono-label, .section-eyebrow, .section-label, .section-num,
.page-header-eyebrow, .service-eyebrow, .services-list-eyebrow,
.about-eyebrow, .cta-banner-eyebrow, .gallery-section-eyebrow,
.gallery-section-numeral, .contact-section-label, .contact-form-heading,
.footer-col-title, .footer-col-heading, .info-label,
.contact-info-block-label, .meta-label {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: clamp(10px, 1vw, 12px);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

/* Index numerals — the supergraphic system */
.section-num, .hero-num, .gallery-section-numeral, .page-header-numeral,
.cta-banner-supergraph, .section-numeral-lg {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(72px, 9vw, 120px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--primary);
  display: block;
}
.section-numeral-lg {
  font-size: clamp(88px, 12vw, 160px);
  opacity: 0.12;
  position: absolute;
  top: -20px;
  right: 40px;
  pointer-events: none;
  color: var(--primary);
}

/* Card-level numerals */
.service-body-num, .service-card-numeral, .about-portrait-numeral,
.case-card-numeral, .contact-info-numeral, .about-meta-card-num,
.additional-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(72px, 9vw, 120px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--primary);
  display: block;
}
.service-body-num, .about-portrait-numeral { font-size: clamp(48px, 5vw, 72px); }
.case-card-numeral { font-size: clamp(32px, 3.5vw, 48px); line-height: 1; }
.contact-info-numeral { font-size: clamp(64px, 8vw, 100px); opacity: 0.15; pointer-events: none; }
.about-meta-card-num { font-size: clamp(32px, 4vw, 52px); }
.additional-num { font-size: clamp(40px, 5vw, 64px); }
.srv-idx {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.08em;
  min-width: 28px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  padding: 16px 28px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 200ms ease-out, filter 200ms ease-out, box-shadow 200ms ease-out;
  white-space: nowrap;
  line-height: 1;
}
.btn:hover { text-decoration: none; }

.btn-primary, .btn-primary-lg, .btn-submit {
  background: var(--primary);
  color: #fff;
}
.btn-primary:hover, .btn-primary-lg:hover, .btn-submit:hover {
  filter: brightness(0.9);
  color: #fff;
  transform: translateY(-1px);
}
.btn-primary-lg { font-size: 16px; padding: 18px 36px; }

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.55);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
  color: #fff;
  transform: translateY(-1px);
}

.btn-outline, .btn-outline-white {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--border-mid);
}
.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-1px);
}
.btn-outline-white {
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
  color: #fff;
}

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

.btn-phone-lg {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  padding: 0;
  border: none;
  background: none;
}
.btn-phone-lg:hover { color: #fff; text-decoration: none; }

.btn-service {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  text-decoration: none;
  padding: 0;
  margin-top: 16px;
  border: none;
  background: none;
  cursor: pointer;
  transition: gap 200ms ease;
}
.btn-service:hover { gap: 14px; text-decoration: none; color: var(--primary); }
.btn-service svg { width: 16px; height: 16px; }

/* ============================================================
   CHIPS + PILLS
   ============================================================ */
.trust-pill, .trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-pill);
  padding: 6px 14px;
  white-space: nowrap;
  background: var(--canvas);
}

.contact-area-pill {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 4px 10px;
}

.filter-pill {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-pill);
  padding: 7px 16px;
  background: transparent;
  cursor: pointer;
  transition: border-color 150ms, color 150ms, background 150ms;
}
.filter-pill:hover, .filter-pill.active {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(100,172,68,0.06);
}

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

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

.nav-logo {
  flex: 0 0 auto;
  text-decoration: none;
}
.nav-logo:hover { color: inherit; text-decoration: none; }

.nav-pages {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: 28px;
  align-items: center;
  padding: 0;
  margin: 0;
  list-style: none;
}
.nav-pages li { list-style: none; }
.nav-pages a {
  display: inline-block;
  padding: 6px 0;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  transition: color 150ms;
}
.nav-pages a:hover { color: var(--primary); text-decoration: none; }
.nav-pages a[aria-current="page"] {
  color: var(--primary);
  border-bottom: 2px solid var(--primary);
}

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

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--ink);
  font-size: 24px;
  cursor: pointer;
  padding: 8px;
  line-height: 1;
  flex: 0 0 auto;
}

@media (max-width: 899px) {
  .top-nav { gap: 12px; }
  .nav-toggle { display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; }
  .nav-pages {
    display: none;
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    background: var(--canvas);
    padding: 24px 28px;
    gap: 0;
    border-bottom: 1px solid rgba(12,12,15,0.08);
    z-index: 800;
  }
  .nav-pages.open { display: flex; }
  .nav-pages li { width: 100%; }
  .nav-pages a { display: block; padding: 12px 0; border-bottom: 1px solid var(--border); width: 100%; }
  .nav-cta span { display: none; }
  .nav-cta { padding: 10px 12px; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(48px, 7vh, 80px);
}
.hero-overlay {
  background: linear-gradient(180deg, rgba(12,12,15,0.38) 0%, rgba(12,12,15,0.72) 100%);
}
.hero-inner {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
  width: 100%;
}
.hero-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(80px, 10vw, 140px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--primary);
  display: block;
  margin-bottom: 8px;
}
.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: clamp(10px, 1.1vw, 12px);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.65);
  margin-bottom: 20px;
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(48px, 8vw, 120px);
  line-height: 0.96;
  letter-spacing: -0.03em;
  color: #fff;
  max-width: 18ch;
  margin-bottom: 24px;
}
.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.8vw, 20px);
  color: rgba(255,255,255,0.72);
  max-width: 52ch;
  margin-bottom: 36px;
  line-height: 1.6;
}
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-ctas svg { width: 18px; height: 18px; }

.hero-trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.hero-trust-chips .trust-chip {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.30);
  color: rgba(255,255,255,0.88);
  backdrop-filter: blur(4px);
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--canvas);
  overflow: hidden;
}
.trust-strip-row, .trust-strip-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 20px;
  padding: 18px 0;
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee-section {
  overflow: hidden;
  padding: 14px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  position: relative;
  z-index: 1;
}
.marquee-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: marquee 35s linear infinite;
}
.marquee-section:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: clamp(13px, 1.4vw, 16px);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.2;
  flex-shrink: 0;
}
.marquee-item::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  vertical-align: middle;
  margin-right: 16px;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   SECTION SHARED
   ============================================================ */
.section-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: clamp(48px, 6vh, 72px);
}
.section-header h2 { margin-top: 4px; }
.section-eyebrow { display: block; margin-bottom: 4px; }

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  padding-block: var(--section-py);
  background: var(--canvas);
}

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

@media (max-width: 899px) {
  .services-bento { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 639px) {
  .services-bento { grid-template-columns: 1fr; }
}

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

.service-img {
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--surface);
  flex-shrink: 0;
}
.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
  max-height: none;
}
.service-card:hover .service-img img { transform: scale(1.04); }

.service-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 6px;
}
.service-body h3 {
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.service-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
  flex: 1;
}
.service-arrow { display: inline-flex; align-items: center; margin-top: 12px; }
.service-arrow svg { width: 20px; height: 20px; color: var(--primary); }

.services-footer-row {
  margin-top: 40px;
  display: flex;
  justify-content: flex-end;
}

/* ============================================================
   GALLERY (index)
   ============================================================ */
.gallery {
  padding-block: var(--section-py);
  background: var(--surface);
}

.gallery-top-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(32px, 4vh, 48px);
  flex-wrap: wrap;
}
.gallery-top-row > div { display: flex; flex-direction: column; gap: 6px; }

.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 4px;
}
.gallery-tile {
  display: block;
  overflow: hidden;
  border-radius: 0;
  background: var(--border);
  aspect-ratio: 4 / 3;
  text-decoration: none;
}
.gallery-tile img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 500ms ease;
  max-height: none;
}
.gallery-tile:hover img { transform: scale(1.05); }
.gallery-tile:hover { text-decoration: none; }

.gallery-tile-hero {
  grid-column: 1 / 3;
  grid-row: 1;
  aspect-ratio: 16 / 9;
}
.gallery-mosaic .gallery-tile:nth-child(2) { grid-column: 3; grid-row: 1; aspect-ratio: 4/5; }
.gallery-mosaic .gallery-tile:nth-child(3) { grid-column: 1; grid-row: 2; }
.gallery-mosaic .gallery-tile:nth-child(4) { grid-column: 2; grid-row: 2; }
.gallery-mosaic .gallery-tile:nth-child(5) { grid-column: 3; grid-row: 2; }

@media (max-width: 639px) {
  .gallery-mosaic { grid-template-columns: repeat(2, 1fr); }
  .gallery-tile-hero { grid-column: 1 / 3; aspect-ratio: 4/3; }
  .gallery-mosaic .gallery-tile:nth-child(2) { grid-column: auto; grid-row: auto; aspect-ratio: 4/3; }
  .gallery-mosaic .gallery-tile:nth-child(3),
  .gallery-mosaic .gallery-tile:nth-child(4),
  .gallery-mosaic .gallery-tile:nth-child(5) { grid-column: auto; grid-row: auto; }
}

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

.gallery-section-header {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  margin-bottom: 48px;
}
.gallery-section-title-block { display: flex; flex-direction: column; gap: 6px; }
.gallery-section-title { font-size: clamp(36px, 5vw, 64px); }
.gallery-section-desc { font-size: 15px; color: var(--muted); max-width: 48ch; line-height: 1.6; }

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

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
}
@media (max-width: 899px) { .case-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 599px) { .case-grid { grid-template-columns: 1fr; } }

.case-card {
  display: flex;
  flex-direction: column;
  background: var(--canvas);
  text-decoration: none;
  color: var(--ink);
  overflow: hidden;
  transition: box-shadow 250ms ease-out;
}
.case-card:hover { box-shadow: 0 12px 32px -12px rgba(0,0,0,0.15); text-decoration: none; color: var(--ink); }
.case-card-feature { grid-column: span 2; }
@media (max-width: 899px) { .case-card-feature { grid-column: span 1; } }

.case-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--surface);
}
.case-card-tall .case-card-img { aspect-ratio: 3 / 4; }
.case-card-feature .case-card-img { aspect-ratio: 16 / 9; }
.case-card-img img { width: 100%; height: 100%; object-fit: cover; max-height: none; transition: transform 400ms ease; }
.case-card:hover .case-card-img img { transform: scale(1.04); }

.case-card-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(12,12,15,0.5) 100%);
  z-index: 1;
}
.case-card-category {
  position: absolute; bottom: 12px; left: 12px; z-index: 2;
  font-family: var(--font-mono);
  font-size: 10px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.1em;
  color: #fff;
  background: rgba(12,12,15,0.55);
  border-radius: var(--radius-pill);
  padding: 4px 10px;
  backdrop-filter: blur(4px);
}

.case-card-body {
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.case-card-body h3 { font-size: 18px; line-height: 1.2; letter-spacing: -0.02em; }
.case-card-location {
  display: flex; align-items: center; gap: 6px;
  font-family: var(--font-mono); font-size: 10px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted);
}
.case-card-location svg { width: 12px; height: 12px; }
.case-card-desc { font-size: 13px; color: var(--muted); line-height: 1.55; flex: 1; }
.case-card-meta {
  display: flex; flex-wrap: wrap; gap: 12px; margin-top: 12px;
  border-top: 1px solid var(--border); padding-top: 12px;
}
.meta-item { display: flex; flex-direction: column; gap: 2px; }
.meta-label { font-size: 9px; }
.meta-value { font-size: 13px; font-weight: 600; color: var(--ink); }

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  padding-block: var(--section-py);
  background: var(--canvas);
}
.faq-list { border-top: 1px solid var(--border); }

details {
  border-bottom: 1px solid var(--border);
}
details > summary {
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: clamp(15px, 1.8vw, 18px);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  color: var(--ink);
  line-height: 1.3;
  gap: 20px;
}
details > summary::-webkit-details-marker { display: none; }

.faq-chevron {
  display: flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; flex-shrink: 0;
  border: 1px solid var(--border-mid); border-radius: 50%;
  color: var(--ink);
  transition: transform 200ms ease, background 200ms ease, color 200ms ease, border-color 200ms ease;
}
.faq-chevron svg { width: 14px; height: 14px; }
details[open] .faq-chevron {
  transform: rotate(45deg);
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

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

/* ============================================================
   CONTACT (index)
   ============================================================ */
.contact {
  padding-block: var(--section-py);
  background: var(--surface);
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
@media (max-width: 899px) {
  .contact-layout { grid-template-columns: 1fr; }
}

.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 639px) { .form-row { grid-template-columns: 1fr; } }

.form-field {
  display: flex;
  flex-direction: column-reverse;
  gap: 6px;
  position: relative;
}
.form-field label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  transition: color 150ms;
}
.form-field input:focus + label,
.form-field textarea:focus + label { color: var(--primary); }

.form-field input, .form-field textarea {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  background: var(--canvas);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius);
  padding: 12px 14px;
  width: 100%;
  transition: border-color 200ms, box-shadow 200ms;
  outline: none;
  resize: none;
}
.form-field input:focus, .form-field textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(100,172,68,0.14);
}
.form-field textarea { min-height: 120px; }

.btn-submit {
  align-self: flex-start;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  padding: 16px 32px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-submit svg { width: 18px; height: 18px; }

.form-success {
  display: none;
  background: rgba(100,172,68,0.1);
  border: 1px solid rgba(100,172,68,0.3);
  border-radius: var(--radius);
  padding: 20px 24px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
}
.form-success.visible { display: block; }

.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-info > div { display: flex; flex-direction: column; gap: 4px; }
.info-label { display: block; margin-bottom: 2px; }
.info-value {
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.5;
}
.info-value a { color: inherit; }
.info-value a:hover { color: var(--primary); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section {
  padding-block: var(--section-py);
  background: var(--canvas);
}
.contact-inner {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
@media (max-width: 1099px) { .contact-inner { grid-template-columns: 1fr; } }

.contact-form-col { display: flex; flex-direction: column; gap: 8px; }
.contact-section-label { display: block; margin-bottom: 8px; }
.contact-form-sub { font-size: 15px; color: var(--muted); margin-bottom: 28px; line-height: 1.6; }

.contact-form-col form { display: flex; flex-direction: column; gap: 18px; }
.field-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 6px;
  transition: color 150ms;
}
.field-input, .field-select, .field-textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  background: var(--canvas);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius);
  padding: 12px 14px;
  outline: none;
  transition: border-color 200ms, box-shadow 200ms;
}
.field-input:focus, .field-select:focus, .field-textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(100,172,68,0.14);
}
.field-textarea { min-height: 140px; resize: vertical; }
.field-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B6B6B' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.field-full { grid-column: 1 / -1; }

.contact-info-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 48px);
  position: relative;
  overflow: hidden;
}
.contact-info-numeral {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(80px, 10vw, 120px);
  color: var(--primary);
  line-height: 1;
  letter-spacing: -0.04em;
  opacity: 0.12;
  position: absolute;
  top: -10px;
  right: 20px;
  pointer-events: none;
}
.contact-info-card h2 {
  font-size: clamp(24px, 3vw, 36px);
  margin-bottom: 28px;
  position: relative;
}
.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 0;
  position: relative;
}
.contact-info-block-label { margin-bottom: 2px; }
.contact-info-block p:not(.contact-info-block-label) {
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.5;
}
.contact-info-block a { color: var(--ink); }
.contact-info-block a:hover { color: var(--primary); text-decoration: none; }
.contact-info-divider { border: none; border-top: 1px solid var(--border); margin: 0; }
.contact-service-areas { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 6px; }

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section {
  padding-block: var(--section-py);
  background: var(--canvas);
}
.about-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: clamp(40px, 6vw, 80px);
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
  align-items: start;
}
@media (max-width: 1099px) { .about-grid { grid-template-columns: 300px 1fr; } }
@media (max-width: 799px) { .about-grid { grid-template-columns: 1fr; } }

.about-portrait-col { position: relative; }
.about-portrait-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--surface);
}
.about-portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: none !important;
  filter: grayscale(15%);
  transition: filter 400ms ease;
}
.about-portrait-wrap:hover .about-portrait-img { filter: grayscale(0%); }
.about-portrait-numeral {
  position: absolute;
  bottom: -10px;
  left: -16px;
  z-index: 1;
  pointer-events: none;
  opacity: 0.18;
}
.about-portrait-badge {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: var(--canvas);
  border-radius: var(--radius);
  padding: 10px 14px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  z-index: 2;
}

.about-copy-col { display: flex; flex-direction: column; gap: 0; }
.about-eyebrow { display: block; margin-bottom: 16px; }
.about-headline {
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.about-body {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.72;
  margin-bottom: 16px;
  max-width: 60ch;
}
.about-divider { border: none; border-top: 1px solid var(--border); margin: 28px 0; }

.about-meta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 0;
}
@media (max-width: 899px) { .about-meta-grid { grid-template-columns: repeat(2, 1fr); } }

.about-meta-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.about-meta-card-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3vw, 40px);
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.03em;
}
.about-meta-card-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.about-services-list { margin-top: 0; }
.services-list-eyebrow { display: block; margin-bottom: 12px; }
.services-registry { display: flex; flex-direction: column; gap: 0; list-style: none; padding: 0; }
.services-registry li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  transition: color 150ms;
}
.services-registry li:last-child { border-bottom: none; }
.services-registry li:hover { color: var(--primary); }
.srv-arrow {
  margin-left: auto;
  color: var(--muted);
  opacity: 0.5;
  transition: opacity 150ms, transform 150ms;
}
.services-registry li:hover .srv-arrow { opacity: 1; transform: translateX(3px); color: var(--primary); }
.srv-arrow svg { width: 14px; height: 14px; }

/* ============================================================
   SERVICES DETAIL PAGE
   ============================================================ */
.services-detail {
  padding-block: var(--section-py);
  background: var(--canvas);
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
}
.services-section-header {
  margin-bottom: clamp(48px, 6vh, 80px);
}
.services-section-header h2 {
  font-size: clamp(36px, 5vw, 72px);
}
.section-label { display: block; margin-bottom: 8px; }

.service-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  padding-block: clamp(48px, 6vh, 72px);
  border-bottom: 1px solid var(--border);
}
.service-feature:last-of-type { border-bottom: none; }
.service-feature.reverse { direction: rtl; }
.service-feature.reverse > * { direction: ltr; }

@media (max-width: 799px) {
  .service-feature { grid-template-columns: 1fr; direction: ltr; }
  .service-feature.reverse { direction: ltr; }
  .service-feature.reverse .service-feature-photo { order: -1; }
}

.service-feature-photo {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--surface);
}
.service-feature-photo img {
  width: 100%; height: 100%; object-fit: cover; max-height: none !important;
  filter: grayscale(10%);
  transition: filter 400ms ease, transform 400ms ease;
}
.service-feature:hover .service-feature-photo img { filter: grayscale(0%); transform: scale(1.03); }

.service-card-numeral {
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 4vw, 52px);
  color: var(--primary);
  line-height: 1;
  letter-spacing: -0.04em;
  z-index: 2;
  text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.service-feature-body { display: flex; flex-direction: column; gap: 12px; }
.service-eyebrow { display: block; margin-bottom: 4px; }
.service-feature-body h2 { font-size: clamp(28px, 3.5vw, 48px); margin-bottom: 4px; }
.service-feature-body p { font-size: 16px; color: var(--muted); line-height: 1.7; }
.service-feature-body ul {
  display: flex; flex-direction: column; gap: 8px; list-style: none;
  padding: 0; margin: 4px 0;
}
.service-feature-body ul li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 15px; color: var(--ink); line-height: 1.5;
}
.service-feature-body ul li::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
  margin-top: 7px;
}

/* Additional services */
.additional-services {
  padding-block: var(--section-py);
  background: var(--surface);
}
.additional-services-inner {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
}
.additional-services-header { margin-bottom: clamp(40px, 5vh, 64px); }
.additional-services-header h2 { font-size: clamp(32px, 4.5vw, 60px); }

.additional-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
}
@media (max-width: 799px) { .additional-grid { grid-template-columns: 1fr; } }

.additional-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--canvas);
  padding: 28px;
}
.additional-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 4vw, 52px);
  color: var(--primary);
  line-height: 1;
  letter-spacing: -0.04em;
  flex-shrink: 0;
}
.additional-item-body { display: flex; flex-direction: column; gap: 6px; }
.additional-item-body h3 { font-size: 18px; line-height: 1.2; }
.additional-item-body p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  padding-block: var(--section-py);
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-banner-inner {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
@media (max-width: 799px) {
  .cta-banner-inner { grid-template-columns: 1fr; }
}

.cta-banner-supergraph {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(160px, 22vw, 320px);
  color: #fff;
  opacity: 0.03;
  letter-spacing: -0.05em;
  pointer-events: none;
  line-height: 1;
}

.cta-banner-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
  display: block;
}
.cta-banner-headline, .cta-banner-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 0.96;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 16px;
}
.cta-banner-title em { font-style: normal; color: var(--primary); }
.cta-banner-sub, .cta-banner-text p:not(.cta-banner-eyebrow) {
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 52ch;
}
.cta-banner-actions, .cta-banner-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.cta-banner-contact, .cta-banner-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex-shrink: 0;
}
.cta-contact-row, .cta-info-block {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.cta-contact-icon, .cta-info-icon {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}
.cta-contact-icon svg, .cta-info-icon svg { width: 16px; height: 16px; }

.cta-contact-label, .cta-info-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.45);
  display: block;
  margin-bottom: 2px;
}
.cta-contact-row > div > a, .cta-info-block > div > a {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
}
.cta-contact-row > div > a:hover, .cta-info-block > div > a:hover {
  color: var(--primary);
  text-decoration: none;
}
.cta-contact-value-sm, .cta-info-value-small {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

/* ============================================================
   PAGE HEADER (sub-pages)
   ============================================================ */
.page-header {
  min-height: 48vh;
  display: flex;
  align-items: flex-end;
}
.page-header-overlay {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, rgba(12,12,15,0.35) 0%, rgba(12,12,15,0.68) 100%);
}
.page-header-inner {
  position: relative; z-index: 2;
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
  padding-bottom: clamp(40px, 6vh, 64px);
  width: 100%;
}
.page-header-numeral {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(72px, 9vw, 120px);
  color: var(--primary);
  line-height: 1;
  letter-spacing: -0.04em;
  opacity: 0.6;
  display: block;
  margin-bottom: 8px;
}
.page-header-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.6);
  margin-bottom: 10px;
  display: block;
}
.page-header-inner h1 {
  font-size: clamp(40px, 6vw, 88px);
  color: #fff;
  line-height: 0.96;
  letter-spacing: -0.03em;
  max-width: 16ch;
}
.page-header-sub {
  font-size: clamp(15px, 1.8vw, 18px);
  color: rgba(255,255,255,0.65);
  margin-top: 14px;
  max-width: 52ch;
  line-height: 1.6;
}
.page-header-copy { display: flex; flex-direction: column; gap: 8px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.65);
}
.footer-inner, .site-footer > .container {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
}
.footer-top { padding-top: clamp(64px, 8vh, 96px); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-block: clamp(64px, 8vh, 96px) 40px;
}
@media (max-width: 899px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 599px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand { display: flex; flex-direction: column; gap: 12px; }
.footer-brand img { max-height: 48px !important; width: auto !important; margin-bottom: 4px; }
.footer-brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  letter-spacing: -0.02em;
}
.footer-tagline { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.55; max-width: 32ch; }
.footer-contact-line {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; color: rgba(255,255,255,0.5);
}
.footer-contact-line svg { width: 14px; height: 14px; flex-shrink: 0; color: var(--primary); }
.footer-contact-line a { color: rgba(255,255,255,0.7); }
.footer-contact-line a:hover { color: var(--primary); text-decoration: none; }

.footer-col { display: flex; flex-direction: column; gap: 16px; }
.footer-col-title, .footer-col-heading {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.35);
  display: block;
}
.footer-links, .footer-col ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.footer-links a, .footer-col ul a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 150ms;
}
.footer-links a:hover, .footer-col ul a:hover { color: #fff; text-decoration: none; }

.footer-address {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  font-style: normal;
}
.footer-address a { color: rgba(255,255,255,0.6); }
.footer-address a:hover { color: #fff; text-decoration: none; }

.footer-phone-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 15px; font-weight: 600;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: color 150ms;
}
.footer-phone-link:hover { color: var(--primary); text-decoration: none; }
.footer-phone-link svg { width: 16px; height: 16px; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding-block: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-bottom p, .footer-copy, .footer-since, .footer-bottom-text {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.3);
}

/* ============================================================
   MOBILE CTA PILL
   ============================================================ */
.mobile-cta-pill, .mobile-sticky-cta, .mobile-cta, .mobile-call-btn {
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  padding: 14px 22px;
  border-radius: var(--radius-pill);
  box-shadow: 0 18px 40px -10px rgba(0,0,0,0.45);
  text-decoration: none;
  transition: filter 200ms, transform 200ms;
}
.mobile-cta-pill svg, .mobile-sticky-cta svg, .mobile-cta svg, .mobile-call-btn svg {
  width: 20px; height: 20px; flex-shrink: 0; color: #fff;
}
.mobile-cta-pill:hover, .mobile-sticky-cta:hover, .mobile-cta:hover, .mobile-call-btn:hover {
  filter: brightness(0.9);
  transform: translateY(-2px);
  color: #fff;
  text-decoration: none;
}
/* sub-elements inside the sticky wrappers */
.mobile-sticky-cta > a, .mobile-cta > a {
  display: flex; align-items: center; gap: 10px;
  color: #fff; text-decoration: none;
  font-weight: 700; font-size: 14px;
}
.mobile-sticky-cta > a svg, .mobile-cta > a svg { width: 20px; height: 20px; }

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

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

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-up   { opacity: 0; transform: translateY(28px); transition: opacity 640ms ease, transform 640ms ease; }
.fade-left { opacity: 0; transform: translateX(-28px); transition: opacity 640ms ease, transform 640ms ease; }
.fade-right{ opacity: 0; transform: translateX(28px); transition: opacity 640ms ease, transform 640ms ease; }
.scale-in  { opacity: 0; transform: scale(0.95); transition: opacity 640ms ease, transform 640ms ease; }
.stagger   { opacity: 0; transform: translateY(20px); transition: opacity 640ms ease, transform 640ms ease; }

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

/* stagger children */
.stagger.visible > *:nth-child(1) { transition-delay: 80ms; }
.stagger.visible > *:nth-child(2) { transition-delay: 160ms; }
.stagger.visible > *:nth-child(3) { transition-delay: 240ms; }
.stagger.visible > *:nth-child(4) { transition-delay: 320ms; }
.stagger.visible > *:nth-child(5) { transition-delay: 400ms; }
.stagger.visible > *:nth-child(6) { transition-delay: 480ms; }

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

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

/* ============================================================
   MISC UTILITY
   ============================================================ */
.active { display: block; }

/* Anchor headings render as heading */
h1 a, h2 a, h3 a, .hero-title a, .hero-eyebrow a, .hero-sub a {
  color: inherit; text-decoration: none; border-bottom: 0;
}
h1 a:hover, h2 a:hover, h3 a:hover { color: inherit; text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 6px; }

/* Cap SVGs */
.service-arrow svg,
.srv-arrow svg,
.btn svg,
.cta-contact-icon svg,
.cta-info-icon svg,
.faq-chevron svg,
.case-card-location svg,
.footer-contact-line svg,
.footer-phone-link svg,
.btn-service svg { width: 18px; height: 18px; }

.cta-banner-actions svg,
.cta-banner-btns svg { width: 18px; height: 18px; }

/* No flip mirror */
.reverse { transform: none !important; }


/* === Validator patches (auto-applied) === */
/* validator patch: grid children without placement → span full row */
.gallery-tile { grid-column: 1 / -1; }
.form-field { grid-column: 1 / -1; }
.footer-brand { grid-column: 1 / -1; }
.footer-col { grid-column: 1 / -1; }
.service-feature-photo { grid-column: 1 / -1; }
.service-feature-body { grid-column: 1 / -1; }
.additional-item { grid-column: 1 / -1; }
.about-copy-col { grid-column: 1 / -1; }
.about-meta-card { grid-column: 1 / -1; }
.cta-banner-eyebrow { grid-column: 1 / -1; }
.cta-banner-headline { grid-column: 1 / -1; }
.cta-banner-sub { grid-column: 1 / -1; }
.cta-banner-btns { 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; }
