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

/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --primary:        #21834C;
  --accent:         #7E9E44;
  --canvas:         #FFFFFF;
  --surface:        #F4F2EE;
  --ink:            #0C0C0F;
  --muted:          #6B6B6B;
  --border:         rgba(12,12,15,0.10);
  --border-mid:     rgba(12,12,15,0.16);
  --primary-dark:   #185f38;
  --primary-pale:   #e8f3ed;
  --shadow-sm:      0 2px 8px rgba(12,12,15,0.07);
  --shadow-md:      0 8px 28px rgba(12,12,15,0.11);
  --shadow-lg:      0 20px 52px rgba(12,12,15,0.14);
  --radius:         4px;
  --radius-lg:      8px;
  --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-text-size-adjust: 100%; }
body { font-family: 'IBM Plex Sans', system-ui, sans-serif; font-weight: 400; color: var(--ink); background: var(--canvas); line-height: 1.68; -webkit-font-smoothing: antialiased; overflow-x: hidden; }

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

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

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

.hero { position: relative; overflow: hidden; }
.hero-bg, .hero > img:first-of-type {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 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; }

.hero-split { display: grid; grid-template-columns: 60% 40%; min-height: 88vh; gap: 0; }
.hero-split-text {
  background: var(--canvas); padding: clamp(48px,7vw,96px);
  display: flex; flex-direction: column; justify-content: center; z-index: 2;
}
.hero-split-photo { position: relative; overflow: hidden; background: transparent; }
.hero-split-photo > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 900px) {
  .hero-split { grid-template-columns: 1fr; min-height: auto; }
  .hero-split-photo { min-height: 60vw; order: -1; }
}

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

/* ============================================================
   TYPOGRAPHY SYSTEM
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', sans-serif;
  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(22px,2.8vw,36px); }
h4 { font-size: clamp(17px,1.8vw,22px); letter-spacing: -0.02em; }

p { line-height: 1.72; }
small { font-size: 13px; }

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

/* Label / mono utility */
.label-mono, .section-eyebrow, .section-label, .hero-eyebrow,
.page-header-eyebrow, .services-intro-label,
.footer-col-head, .footer-col-label, .footer-col-heading,
.contact-info-label, .info-label, .step-num,
.about-eyebrow, .faq-numeral, .areas-label {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 500;
  font-size: clamp(10px,1vw,12px);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.4;
}

/* Section supernumeral — the big brand-green index numerals */
.section-numeral, .section-num, .section-supernumeral,
.faq-numeral, .cta-banner-numeral, .page-header-numeral,
.page-header-num, .info-numeral, .about-supergraphic {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(72px,9vw,120px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--primary);
  display: block;
  user-select: none;
}

/* Card numerals */
.card-numeral, .service-block-numeral, .tile-index {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(42px,5vw,72px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--primary);
  display: block;
  margin-bottom: 12px;
  user-select: none;
}

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

/* Section base */
section, .section { padding: clamp(88px,11vh,144px) 0; }

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

/* ============================================================
   BUTTONS
   ============================================================ */
.btn, button {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 600; font-size: 15px;
  padding: 16px 28px;
  border-radius: var(--radius);
  border: none; cursor: pointer;
  text-decoration: none;
  transition: filter 160ms, transform 120ms, box-shadow 160ms;
  white-space: nowrap;
  line-height: 1;
}
.btn svg, button svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-primary, .btn-cta-primary {
  background: var(--primary); color: #fff;
  box-shadow: 0 4px 14px rgba(33,131,76,0.30);
}
.btn-primary:hover, .btn-cta-primary:hover {
  filter: brightness(0.9); transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(33,131,76,0.38);
  color: #fff; text-decoration: none;
}

.btn-outline {
  background: transparent; color: var(--ink);
  border: 1.5px solid var(--border-mid);
}
.btn-outline:hover { border-color: var(--primary); color: var(--primary); text-decoration: none; }

.btn-outline-light {
  background: transparent; color: #fff;
  border: 1.5px solid rgba(255,255,255,0.55);
}
.btn-outline-light:hover { border-color: #fff; color: #fff; text-decoration: none; }

.btn-phone, .btn-cta-phone {
  background: rgba(255,255,255,0.12); color: #fff;
  border: 1.5px solid rgba(255,255,255,0.45);
  backdrop-filter: blur(4px);
}
.btn-phone:hover, .btn-cta-phone:hover {
  background: rgba(255,255,255,0.22); color: #fff; text-decoration: none;
}

.btn-service {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary); color: #fff;
  padding: 13px 22px; border-radius: var(--radius);
  font-weight: 600; font-size: 14px;
}
.btn-service:hover { filter: brightness(0.88); color: #fff; text-decoration: none; }
.btn-service svg { width: 16px; height: 16px; }

.btn-full { width: 100%; justify-content: center; }

/* Form submit button */
.form-submit {
  width: 100%; background: var(--primary); color: #fff;
  padding: 16px 28px; border-radius: var(--radius);
  font-weight: 600; font-size: 15px; cursor: pointer;
  border: none; transition: filter 160ms;
}
.form-submit:hover { filter: brightness(0.9); }

/* ============================================================
   SITE HEADER
   ============================================================ */
.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: 0 auto;
  padding: 0 28px; height: var(--header-height);
}

.nav-logo { flex: 0 0 auto; display: flex; align-items: center; }
.nav-logo img { max-height: 44px !important; max-width: 200px !important; }

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

.nav-cta {
  flex: 0 0 auto;
  background: var(--primary); color: #fff;
  padding: 10px 20px; border-radius: 999px;
  font-weight: 600; font-size: 14px;
  text-decoration: none; white-space: nowrap;
  display: inline-flex; align-items: center; gap: 7px;
  transition: filter 150ms;
}
.nav-cta:hover { filter: brightness(0.92); color: #fff; text-decoration: none; }
.nav-cta svg { width: 15px; height: 15px; }
.nav-cta .nav-cta-text { display: inline; }

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

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-cta .nav-cta-text { display: none; }
  .nav-cta { padding: 10px 12px; border-radius: 999px; }

  .nav-pages {
    display: none;
    position: absolute; top: 60px; left: 0; right: 0;
    background: var(--canvas);
    flex-direction: column; justify-content: flex-start;
    align-items: flex-start;
    padding: 24px 28px; gap: 4px;
    border-bottom: 1px solid rgba(12,12,15,0.08);
    z-index: 890;
  }
  .nav-pages.open { display: flex; }
  .nav-pages li { width: 100%; }
  .nav-pages a { display: block; padding: 12px 0; font-size: 17px; border-bottom: 1px solid var(--border); width: 100%; }
  .nav-pages a[aria-current="page"] { border-bottom: 1px solid var(--border); }
}

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

.hero-overlay {
  background: linear-gradient(160deg, rgba(12,12,15,0.42) 0%, rgba(12,12,15,0.70) 100%);
}

.hero-inner {
  padding: clamp(48px,7vw,96px) clamp(24px,5vw,96px);
  max-width: 1280px; margin: 0 auto; width: 100%;
  padding-bottom: clamp(64px,8vh,112px);
}

.hero-numeral {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(80px,10vw,140px);
  line-height: 1; letter-spacing: -0.04em;
  color: var(--primary);
  display: block; margin-bottom: 16px;
  user-select: none;
}

.hero-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 500; font-size: clamp(10px,1vw,12px);
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  margin-bottom: 20px;
}

.hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(64px,8.5vw,128px);
  line-height: 0.95; letter-spacing: -0.04em;
  color: #fff;
  max-width: 18ch;
  margin-bottom: 20px;
}

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

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

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

.hero-trust-chips .trust-chip {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  border: 1px solid rgba(255,255,255,0.38);
  border-radius: 999px;
  padding: 6px 14px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(4px);
}

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

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

.trust-chip-pill {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink);
  border: 1px solid var(--border-mid);
  border-radius: 999px;
  padding: 8px 16px;
  white-space: nowrap;
  background: var(--canvas);
}

/* About page trust chips (simpler) */
.trust-chip {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink);
  border: 1px solid var(--border-mid);
  border-radius: 999px;
  padding: 8px 16px;
  white-space: nowrap;
  display: inline-block;
}

/* ============================================================
   SERVICES (index.html bento)
   ============================================================ */
#services.services { background: var(--surface); }

.section-header {
  display: flex; align-items: flex-start; gap: 32px;
  margin-bottom: 56px;
}

.section-header-text { flex: 1; }
.section-header-text h2 { margin-bottom: 10px; line-height: 0.96; }
.section-sub {
  font-size: clamp(15px,1.3vw,17px);
  color: var(--muted); line-height: 1.6;
  max-width: 52ch;
  margin-top: 12px;
}

/* Bento grid — 5 cards: 1 featured large + 4 standard */
.services-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}

/* Featured card spans 7 cols, 2 rows */
.service-card-featured {
  grid-column: 1 / 8;
  grid-row: 1 / 3;
}

/* Cards 2 and 3 — right side top row */
#service-tree-trimming  { grid-column: 8 / 13; grid-row: 1; }
#service-stump-grinding { grid-column: 8 / 13; grid-row: 2; }

/* Cards 4 and 5 — bottom row left */
#service-tree-pruning   { grid-column: 1 / 7; grid-row: 3; }
#service-cabling-bracing { grid-column: 7 / 13; grid-row: 3; }

/* Base service card */
.service-card {
  position: relative; overflow: hidden;
  border-radius: var(--radius);
  display: block; text-decoration: none;
  background: var(--ink); color: #fff;
  min-height: 280px;
  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.35);
  text-decoration: none;
}

.service-card > img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transition: transform 400ms ease-out;
  max-height: none !important;
}
.service-card:hover > img { transform: scale(1.04); }

.service-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(12,12,15,0.82) 30%, rgba(12,12,15,0.20) 100%);
  z-index: 1;
}

.service-card-body {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 24px 28px;
  z-index: 2;
}
.service-card-body h3 {
  font-size: clamp(18px,2.2vw,28px);
  color: #fff; margin-bottom: 8px;
  line-height: 1.05;
}
.service-card-body .card-numeral {
  font-size: clamp(28px,3.5vw,48px);
  color: var(--primary);
  margin-bottom: 8px;
}

.service-desc {
  font-size: 14px; color: rgba(255,255,255,0.75);
  line-height: 1.5; margin-bottom: 12px;
  max-width: 42ch;
}

.service-link {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent);
}

.service-card-featured .service-card-body { padding: 32px 36px; }
.service-card-featured .service-card-body h3 { font-size: clamp(24px,3vw,40px); }
.service-card-featured .card-numeral { font-size: clamp(48px,6vw,80px); }

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

@media (max-width: 900px) {
  .services-bento { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .service-card-featured { grid-column: 1 / 3; grid-row: auto; min-height: 360px; }
  #service-tree-trimming  { grid-column: 1; grid-row: auto; }
  #service-stump-grinding { grid-column: 2; grid-row: auto; }
  #service-tree-pruning   { grid-column: 1; grid-row: auto; }
  #service-cabling-bracing { grid-column: 2; grid-row: auto; }
  .service-card { min-height: 240px; }
}
@media (max-width: 600px) {
  .services-bento { grid-template-columns: 1fr; }
  .service-card-featured { grid-column: 1; }
  #service-tree-trimming, #service-stump-grinding,
  #service-tree-pruning, #service-cabling-bracing { grid-column: 1; }
  .service-card { min-height: 260px; }
}

/* ============================================================
   GALLERY PREVIEW (index.html)
   ============================================================ */
.gallery-preview { background: var(--canvas); }

.gallery-grid-preview {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 12px;
  margin-bottom: 36px;
}

.gallery-tile {
  position: relative; overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface);
  aspect-ratio: 4 / 3;
  display: block;
  transition: transform 250ms ease-out;
}
.gallery-tile:hover { transform: scale(1.01); }
.gallery-tile > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  max-height: none !important;
}
.gallery-tile-main { aspect-ratio: 3/2; grid-row: 1; }
.gallery-tile-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(12,12,15,0.60) 0%, transparent 50%);
  z-index: 1; display: flex; align-items: flex-end; padding: 16px;
}
.gallery-tile-overlay span {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}

.gallery-cta-row { display: flex; justify-content: flex-start; margin-top: 8px; }

@media (max-width: 640px) {
  .gallery-grid-preview { grid-template-columns: 1fr 1fr; }
  .gallery-tile-main { grid-column: 1 / 3; }
}

/* ============================================================
   FAQ (index.html)
   ============================================================ */
#faq.faq { background: var(--surface); }

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

details.faq-item {
  border-bottom: 1px solid var(--border-mid);
  padding: 0;
}
details.faq-item:first-of-type { border-top: 1px solid var(--border-mid); }

.faq-question {
  cursor: pointer;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600; font-size: clamp(16px,1.8vw,20px);
  color: var(--ink); list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 0;
  gap: 16px;
  user-select: none;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question span { flex: 1; }

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

.faq-answer {
  padding-bottom: 22px; padding-right: 36px;
}
.faq-answer p {
  font-size: 16px; line-height: 1.72;
  color: var(--muted);
}

/* Contact.html FAQ variant */
.faq-section { background: var(--surface); padding: clamp(88px,11vh,144px) 0; }
.faq-inner { max-width: 1280px; margin: 0 auto; padding: 0 clamp(20px,4vw,48px); }
.faq-header {
  display: flex; align-items: flex-start; gap: 28px;
  margin-bottom: 48px;
}
.faq-heading-block { flex: 1; }
.faq-heading-block h2 { font-size: clamp(36px,5vw,64px); margin-top: 8px; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 48px; }
.faq-grid details.faq-item { border-bottom: 1px solid var(--border-mid); }
.faq-grid details.faq-item:first-child,
.faq-grid details.faq-item:nth-child(2) { border-top: 1px solid var(--border-mid); }
.faq-grid .faq-answer { display: none; }
.faq-grid details.faq-item[open] .faq-answer { display: block; }
.faq-grid summary { list-style: none; }
.faq-grid summary::-webkit-details-marker { display: none; }

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

/* ============================================================
   CONTACT (index.html)
   ============================================================ */
#contact.contact { background: var(--canvas); }

.contact-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  margin-top: 8px;
}

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

.form-group { display: flex; flex-direction: column; gap: 6px; position: relative; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted);
}
.form-input, .form-textarea, .form-select {
  border: 1.5px solid var(--border-mid);
  border-radius: var(--radius);
  padding: 13px 16px;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 15px; color: var(--ink);
  background: var(--canvas);
  transition: border-color 150ms;
  outline: none;
  width: 100%;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--primary);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-note {
  font-size: 12px; color: var(--muted); line-height: 1.5;
}

.contact-info-col { display: flex; flex-direction: column; gap: 0; }
.contact-info-block {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.contact-info-block:last-child { border-bottom: none; }
.contact-info-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 6px;
}
.contact-info-value {
  font-size: 16px; color: var(--ink); line-height: 1.6;
}
.contact-phone {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; font-size: clamp(22px,2.5vw,30px);
  color: var(--primary); letter-spacing: -0.02em;
}

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

/* ============================================================
   CONTACT SECTION (contact.html)
   ============================================================ */
.contact-section { background: var(--canvas); padding: clamp(88px,11vh,144px) 0; }
.contact-inner { max-width: 1280px; margin: 0 auto; padding: 0 clamp(20px,4vw,48px); display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-info-col .info-numeral { display: block; margin-bottom: 24px; }
.info-block { padding: 20px 0; border-bottom: 1px solid var(--border); }
.info-block:last-child { border-bottom: none; }
.info-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 6px; display: block;
}
.info-value { font-size: 16px; color: var(--ink); line-height: 1.6; }
.info-divider { height: 0; }
.info-phone-link {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; font-size: clamp(20px,2.5vw,28px);
  color: var(--primary); letter-spacing: -0.02em;
}

/* Hours */
.hours-row { display: flex; justify-content: space-between; padding: 4px 0; }
.hours-day { font-weight: 500; color: var(--ink); font-size: 15px; }
.hours-time { color: var(--muted); font-size: 15px; }

/* Service area pills */
.service-area-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.area-pill {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--ink);
  border: 1px solid var(--border-mid);
  border-radius: 999px; padding: 5px 12px;
}

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

/* ============================================================
   PAGE HEADER (services / gallery / about / contact sub-pages)
   ============================================================ */
.page-header {
  min-height: clamp(320px,45vh,520px);
  display: flex; flex-direction: column; justify-content: flex-end;
  overflow: hidden; position: relative;
}

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

.page-header-inner {
  position: relative; z-index: 2;
  padding: clamp(40px,6vw,80px) clamp(24px,5vw,96px);
  max-width: 1280px; margin: 0 auto; width: 100%;
}
.page-header-inner h1 {
  font-size: clamp(48px,7vw,96px);
  color: #fff; max-width: 20ch; margin-bottom: 12px;
}

.page-header-numeral {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(64px,8vw,120px);
  line-height: 1; letter-spacing: -0.04em;
  color: var(--primary); display: block;
  margin-bottom: 12px; user-select: none;
  position: relative; z-index: 2;
}

.page-header-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.70);
  margin-bottom: 16px; display: block;
}

.page-header-sub {
  font-size: clamp(15px,1.4vw,18px);
  color: rgba(255,255,255,0.72); line-height: 1.6;
  max-width: 52ch; margin-top: 12px;
}

.page-header-num {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; font-size: clamp(64px,8vw,120px);
  line-height: 1; letter-spacing: -0.04em;
  color: var(--primary); display: block; margin-bottom: 8px;
  user-select: none;
}

/* ============================================================
   SERVICES DETAIL PAGE
   ============================================================ */
.services-intro {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
}
.services-intro-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 0 clamp(20px,4vw,48px);
  display: flex; align-items: center; gap: 24px;
}
.services-intro-label {
  flex-shrink: 0;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--primary);
}
.services-intro-text {
  font-size: 16px; color: var(--muted); line-height: 1.6;
  flex: 1;
}

.services-detail { background: var(--canvas); padding: clamp(88px,11vh,144px) 0; }
.services-detail-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 0 clamp(20px,4vw,48px);
  display: flex; flex-direction: column; gap: 80px;
}

/* Alternating service blocks */
.service-block {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: center;
}
.service-block.reverse { direction: rtl; }
.service-block.reverse > * { direction: ltr; }

.service-block-photo {
  position: relative; overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
}
.service-block-photo > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; max-height: none !important;
}

.service-block-body { display: flex; flex-direction: column; gap: 16px; }
.service-block-body h2 { font-size: clamp(28px,3.5vw,48px); line-height: 1.0; }

.service-block-numeral {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; font-size: clamp(48px,6vw,88px);
  line-height: 1; letter-spacing: -0.04em;
  color: var(--primary); display: block; user-select: none;
}
.service-block-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); display: block;
}
.service-block-body p { font-size: 16px; color: var(--muted); line-height: 1.72; }

.service-features { list-style: none; padding: 0; margin: 8px 0; display: flex; flex-direction: column; gap: 8px; }
.service-feature-item {
  font-size: 15px; color: var(--ink); padding-left: 20px;
  position: relative; line-height: 1.5;
}
.service-feature-item::before {
  content: ''; position: absolute; left: 0; top: 8px;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--primary);
}

@media (max-width: 900px) {
  .service-block { grid-template-columns: 1fr; gap: 32px; }
  .service-block.reverse { direction: ltr; }
  .service-block-photo { aspect-ratio: 16/9; }
}

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

.cta-banner-numeral {
  position: absolute; right: -2%; top: -10%;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(160px,20vw,280px);
  line-height: 1; letter-spacing: -0.05em;
  color: rgba(33,131,76,0.12);
  pointer-events: none; user-select: none;
  z-index: 0;
}

.cta-banner-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 0 clamp(20px,4vw,48px);
  display: flex; align-items: center; justify-content: space-between;
  gap: 48px; position: relative; z-index: 1;
}

.cta-banner-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent); display: block; margin-bottom: 12px;
}
.cta-banner-title, .cta-banner-inner h2 {
  font-size: clamp(32px,4.5vw,60px);
  color: #fff; line-height: 1.0; letter-spacing: -0.03em;
  margin-bottom: 0;
}
.cta-banner-sub {
  font-size: clamp(15px,1.4vw,18px);
  color: rgba(255,255,255,0.65); margin-top: 12px;
  line-height: 1.6; max-width: 44ch;
}
.cta-banner-text { flex: 1; max-width: 600px; }
.cta-banner-actions {
  display: flex; flex-wrap: wrap; gap: 14px; flex-shrink: 0;
}
.cta-banner-phone {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; font-size: clamp(18px,2vw,24px);
  color: var(--accent); letter-spacing: -0.02em;
}

@media (max-width: 900px) {
  .cta-banner-inner { flex-direction: column; align-items: flex-start; gap: 32px; }
}

/* ============================================================
   GALLERY FULL PAGE
   ============================================================ */
.gallery-section { background: var(--canvas); padding: clamp(88px,11vh,144px) 0; }
.gallery-inner { max-width: 1280px; margin: 0 auto; padding: 0 clamp(20px,4vw,48px); }

.gallery-section-header {
  display: flex; align-items: flex-start; gap: 32px;
  margin-bottom: 48px;
}
.gallery-section-header-left .section-num {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(72px,9vw,120px);
  line-height: 1; letter-spacing: -0.04em;
  color: var(--primary); display: block;
}
.gallery-section-header-right { flex: 1; }
.gallery-section-header-right h2 { font-size: clamp(36px,5vw,64px); line-height: 0.96; }
.section-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 8px;
}
.gallery-section-intro { font-size: 16px; color: var(--muted); line-height: 1.6; margin-top: 10px; max-width: 52ch; }

/* Gallery filters */
.gallery-filters {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 32px;
}
.gallery-filters button, .filter-pill {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--ink);
  border: 1.5px solid var(--border-mid);
  border-radius: 999px; padding: 7px 16px;
  background: var(--canvas); cursor: pointer;
  transition: border-color 150ms, color 150ms, background 150ms;
}
.gallery-filters button:hover, .filter-pill:hover { border-color: var(--primary); color: var(--primary); }
.gallery-filters button.active, .filter-pill.active {
  background: var(--primary); color: #fff; border-color: var(--primary);
}

/* Gallery grid — mixed editorial layout */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

/* Override the universal gallery-tile aspect-ratio cap for specific tile types */
.gallery-tile-photo { aspect-ratio: 4/3; }
.gallery-tile-stat {
  aspect-ratio: unset;
  min-height: 260px;
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex; flex-direction: column; justify-content: space-between;
  overflow: visible;
}
.gallery-tile-service {
  aspect-ratio: unset; min-height: 240px;
  background: var(--surface);
  border-radius: var(--radius);
  padding: 28px;
  display: flex; flex-direction: column; justify-content: space-between;
  overflow: visible;
}
.gallery-tile-quote {
  aspect-ratio: unset; min-height: 240px;
  background: var(--ink);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex; flex-direction: column; justify-content: space-between;
  overflow: visible;
}
.gallery-tile-areas {
  aspect-ratio: unset; min-height: 240px;
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius);
  padding: 28px;
  display: flex; flex-direction: column; gap: 16px;
  overflow: visible;
  grid-column: span 3;
}
.gallery-tile-featured { grid-column: span 2; aspect-ratio: 16/7; }

/* Stat tile */
.gallery-stat-big {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; font-size: clamp(56px,7vw,96px);
  line-height: 1; letter-spacing: -0.04em;
  display: block; margin-bottom: 4px;
}
.gallery-stat-unit {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.72);
}
.gallery-stat-body { font-size: 14px; color: rgba(255,255,255,0.80); line-height: 1.5; margin-top: 8px; }

/* Service tile */
.gallery-tile-service h3 { font-size: clamp(17px,2vw,22px); color: var(--ink); margin-bottom: 8px; line-height: 1.1; }
.tile-index {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; font-size: clamp(36px,4.5vw,60px);
  line-height: 1; letter-spacing: -0.04em;
  color: var(--primary); display: block; margin-bottom: 12px;
}
.tile-tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--muted); display: block; margin-bottom: 8px;
}
.tile-service-desc { font-size: 14px; color: var(--muted); line-height: 1.5; flex: 1; }
.tile-meta-row { display: flex; align-items: center; justify-content: space-between; margin-top: 12px; }
.tile-location-chip {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; letter-spacing: 0.08em;
  color: var(--muted); display: flex; align-items: center; gap: 4px;
}
.tile-location-chip svg, .tile-link svg { width: 16px; height: 16px; }
.tile-link { color: var(--primary); display: inline-flex; align-items: center; }

/* Quote tile */
.quote-mark {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; font-size: 64px; line-height: 1;
  color: var(--accent); display: block; margin-bottom: 8px;
}
.quote-text {
  font-size: 15px; color: rgba(255,255,255,0.88); line-height: 1.65;
  font-style: italic; flex: 1;
}
.quote-attr { font-size: 12px; color: rgba(255,255,255,0.55); margin-top: 12px; }
.quote-stars { display: flex; gap: 2px; margin-top: 10px; }
.quote-stars svg { width: 14px; height: 14px; color: var(--accent); fill: currentColor; }

/* Areas tile */
.gallery-tile-areas .tile-index { color: rgba(255,255,255,0.30); }
.areas-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}
.areas-headline { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: clamp(20px,2.5vw,30px); color: #fff; margin-bottom: 16px; }
.areas-list { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.areas-list li {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.88); background: rgba(255,255,255,0.12);
  border-radius: 999px; padding: 5px 12px;
}

/* Gallery tile overlay for photo tiles */
.gallery-tile-photo .gallery-tile-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(12,12,15,0.70) 0%, transparent 50%);
  z-index: 1; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 20px;
}
.gallery-tile-num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}
.gallery-tile-footer { margin-top: auto; }
.gallery-tile-title { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: clamp(15px,2vw,20px); color: #fff; margin-bottom: 8px; }
.gallery-tile-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 8px; }
.gallery-tile-tag {
  font-family: 'IBM Plex Mono', monospace; font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.80); background: rgba(255,255,255,0.15);
  border-radius: 999px; padding: 3px 8px;
}
.gallery-tile-desc { font-size: 13px; color: rgba(255,255,255,0.72); line-height: 1.5; }
.gallery-tile-stats { display: flex; gap: 16px; margin-top: 8px; }
.gallery-tile-stat { font-size: 12px; color: rgba(255,255,255,0.65); }
.gallery-tile-location { font-size: 12px; color: rgba(255,255,255,0.65); }
.gallery-tile-service { background: rgba(33,131,76,0.80); color: #fff; border-radius: 999px; padding: 2px 8px; font-size: 11px; font-family: 'IBM Plex Mono',monospace; }
.gallery-tile-quote { font-size: 13px; color: rgba(255,255,255,0.75); font-style: italic; margin-top: 8px; }

.gallery-page-header { min-height: clamp(280px,40vh,480px); }

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

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-section { background: var(--canvas); padding: clamp(88px,11vh,144px) 0; }
.about-grid {
  max-width: 1280px; margin: 0 auto;
  padding: 0 clamp(20px,4vw,48px);
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: start;
}
.about-left { display: flex; flex-direction: column; gap: 24px; }
.about-left h2 { font-size: clamp(32px,4.5vw,60px); line-height: 1.0; }
.about-supergraphic {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; font-size: clamp(72px,9vw,120px);
  line-height: 1; letter-spacing: -0.04em;
  color: var(--primary); user-select: none;
}
.about-eyebrow { margin-bottom: -8px; }
.about-body { display: flex; flex-direction: column; gap: 16px; }
.about-body p { font-size: 17px; color: var(--muted); line-height: 1.75; }
.about-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.about-chip {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--ink);
  border: 1px solid var(--border-mid);
  border-radius: 999px; padding: 7px 14px;
}

.about-right { position: relative; }
.about-photo-wrap {
  position: relative; overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 3/4;
}
.about-photo-wrap > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; max-height: none !important;
}
.about-photo-label {
  position: absolute; bottom: 20px; left: 20px;
  background: rgba(12,12,15,0.75); backdrop-filter: blur(4px);
  padding: 8px 16px; border-radius: var(--radius);
  z-index: 2;
}
.about-photo-label span {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.10em; text-transform: uppercase;
  color: rgba(255,255,255,0.88);
}
.about-photo-accent {
  position: absolute; bottom: -12px; right: -12px;
  width: 80px; height: 80px;
  border-radius: var(--radius-lg);
  background: var(--primary);
  z-index: -1;
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-right { order: -1; }
  .about-photo-wrap { aspect-ratio: 16/9; }
}

/* ============================================================
   SERVICE AREAS
   ============================================================ */
.service-areas { background: var(--surface); padding: clamp(88px,11vh,144px) 0; }
.service-areas-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 0 clamp(20px,4vw,48px);
}
.service-areas-inner h2 { font-size: clamp(32px,4.5vw,56px); margin-bottom: 24px; }
.section-supernumeral { display: block; margin-bottom: 12px; }
.areas-grid {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px;
}
.area-item {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius);
  padding: 8px 14px; background: var(--canvas);
}

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

.footer-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 0 clamp(20px,4vw,48px);
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px;
  padding-bottom: 64px;
}

.footer-grid {
  max-width: 1280px; margin: 0 auto;
  padding: 0 clamp(20px,4vw,48px);
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px;
  padding-bottom: 64px;
}

.footer-brand img { max-height: 40px !important; margin-bottom: 16px; }
.footer-tagline { font-size: 14px; line-height: 1.6; color: rgba(255,255,255,0.55); max-width: 28ch; margin-bottom: 16px; }
.footer-contact-row { font-size: 14px; margin-bottom: 4px; }
.footer-contact-row a { color: rgba(255,255,255,0.72); transition: color 150ms; }
.footer-contact-row a:hover { color: var(--accent); text-decoration: none; }

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

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

.footer-contact-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.footer-contact-list a { font-size: 14px; color: rgba(255,255,255,0.68); transition: color 150ms; }
.footer-contact-list a:hover { color: var(--accent); text-decoration: none; }
.footer-contact-list li { font-size: 13px; color: rgba(255,255,255,0.50); line-height: 1.6; }

.footer-address { font-size: 13px; color: rgba(255,255,255,0.50); line-height: 1.7; font-style: normal; }
.footer-hours { margin-top: 12px; }
.footer-hours p { font-size: 13px; color: rgba(255,255,255,0.50); line-height: 1.7; }
.footer-phone-link { color: var(--accent) !important; font-weight: 600; }
.footer-phone { color: var(--accent); font-weight: 600; }

.footer-trust { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.footer-badge {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px; font-weight: 500;
  letter-spacing: 0.10em; text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 999px; padding: 5px 10px;
}

.footer-info-item { font-size: 13px; color: rgba(255,255,255,0.50); line-height: 1.7; margin-bottom: 10px; }
.footer-info-item span { font-family: 'IBM Plex Mono', monospace; font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.35); display: block; margin-bottom: 3px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px clamp(20px,4vw,48px);
  max-width: 1280px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-copy, .footer-copyright { font-size: 13px; color: rgba(255,255,255,0.35); }
.footer-lic, .footer-license { font-size: 12px; color: rgba(255,255,255,0.28); font-family: 'IBM Plex Mono', monospace; }
.footer-creds { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-cred { font-size: 12px; color: rgba(255,255,255,0.30); font-family: 'IBM Plex Mono', monospace; }

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

/* ============================================================
   MOBILE CALL PILL
   ============================================================ */
.mobile-cta-pill, .mobile-call-pill, .mobile-call-btn, .mobile-cta > a {
  position: fixed; bottom: 18px; right: 18px; z-index: 999;
  background: var(--primary); color: #fff;
  padding: 14px 22px; border-radius: 999px;
  box-shadow: 0 18px 40px -10px rgba(0,0,0,0.45);
  display: flex; align-items: center; gap: 8px;
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 600; font-size: 15px;
  text-decoration: none;
  transition: filter 150ms, transform 150ms;
}
.mobile-cta-pill:hover, .mobile-call-pill:hover, .mobile-call-btn:hover {
  filter: brightness(0.92); transform: translateY(-2px);
  color: #fff; text-decoration: none;
}
.mobile-cta-pill svg, .mobile-call-pill svg, .mobile-call-btn svg, .mobile-cta > a svg {
  width: 20px; height: 20px; flex-shrink: 0;
}
.mobile-cta { display: block; }

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

/* ============================================================
   ANIMATION UTILITIES
   ============================================================ */
.fade-up  { opacity: 0; transform: translateY(28px); transition: opacity 560ms cubic-bezier(.22,.68,0,1.2), transform 560ms cubic-bezier(.22,.68,0,1.2); }
.fade-left  { opacity: 0; transform: translateX(28px); transition: opacity 560ms cubic-bezier(.22,.68,0,1.2), transform 560ms cubic-bezier(.22,.68,0,1.2); }
.fade-right { opacity: 0; transform: translateX(-28px); transition: opacity 560ms cubic-bezier(.22,.68,0,1.2), transform 560ms cubic-bezier(.22,.68,0,1.2); }
.scale-in { opacity: 0; transform: scale(0.94); transition: opacity 480ms ease-out, transform 480ms ease-out; }

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

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

/* ============================================================
   MISC UTILITIES
   ============================================================ */
/* Cap uncapped SVG icons */
svg { max-width: 100%; }
.faq-chevron { width: 20px; height: 20px; }

/* Reverse layout swap — order only, no mirror */
.reverse { direction: rtl; }
.reverse > * { direction: ltr; }

/* Grain noise overlay — very subtle */
body::after {
  content: ''; pointer-events: none; position: fixed;
  inset: 0; z-index: 9998;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
}

/* ============================================================
   RESPONSIVE TWEAKS
   ============================================================ */
@media (max-width: 1200px) {
  .services-bento { grid-template-columns: repeat(2, 1fr); }
  .service-card-featured { grid-column: 1 / 3; grid-row: auto; min-height: 420px; }
  #service-tree-trimming  { grid-column: 1; grid-row: auto; }
  #service-stump-grinding { grid-column: 2; grid-row: auto; }
  #service-tree-pruning   { grid-column: 1; grid-row: auto; }
  #service-cabling-bracing { grid-column: 2; grid-row: auto; }
}

@media (max-width: 640px) {
  .section-header { flex-direction: column; gap: 8px; }
  .section-numeral, .section-num { font-size: clamp(52px,11vw,80px); }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .contact-split { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .cta-banner-inner { flex-direction: column; gap: 28px; }
  .cta-banner-actions { flex-direction: column; width: 100%; }
  .services-bento { grid-template-columns: 1fr; }
  .service-card-featured, #service-tree-trimming, #service-stump-grinding,
  #service-tree-pruning, #service-cabling-bracing { grid-column: 1; grid-row: auto; }
  .footer-inner, .footer-grid { grid-template-columns: 1fr; }
}


/* === Validator patches (auto-applied) === */
/* validator patch: grid children without placement → span full row */
.gallery-tile { grid-column: 1 / -1; }
.footer-col { grid-column: 1 / -1; }
.service-block-photo { grid-column: 1 / -1; }
.service-block-body { grid-column: 1 / -1; }
.footer-grid { grid-column: 1 / -1; }
.footer-bottom { grid-column: 1 / -1; }
.footer-contact-col { grid-column: 1 / -1; }
.about-left { grid-column: 1 / -1; }
.form-group { grid-column: 1 / -1; }
.faq-item { 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; }
