@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');

/* ============================================================
   CUSTOM PROPERTIES
   ============================================================ */
:root {
  --primary:        #34542d;
  --primary-dark:   #263e21;
  --primary-light:  #4a7540;
  --accent:         #34542d;
  --canvas:         #FFFFFF;
  --surface:        #F4F2EE;
  --surface-2:      #ECEAE5;
  --ink:            #0C0C0F;
  --ink-mid:        #2a2a2e;
  --muted:          #6B6B6B;
  --border:         rgba(12,12,15,0.1);
  --border-mid:     rgba(12,12,15,0.18);
  --shadow-sm:      0 2px 8px rgba(12,12,15,0.06);
  --shadow-md:      0 8px 32px rgba(12,12,15,0.1);
  --shadow-lg:      0 18px 48px rgba(12,12,15,0.14);
  --radius:         4px;
  --radius-lg:      8px;
  --header-height:  72px;
  --section-y:      clamp(88px, 11vh, 144px);
  --max-w:          1280px;
  --wide-w:         1400px;
  --font-display:   'Space Grotesk', sans-serif;
  --font-body:      'IBM Plex Sans', sans-serif;
  --font-mono:      'IBM Plex Mono', monospace;
  --numeral-size:   clamp(72px, 9vw, 120px);
}

@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: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--canvas);
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

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

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

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

/* Anchor-in-heading fix */
h1 a, h2 a, h3 a, .hero-title a, .hero-eyebrow a, .hero-sub a {
  color: inherit; text-decoration: none; border-bottom: 0;
}

/* ============================================================
   TYPOGRAPHY GLOBALS
   ============================================================ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
  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(16px, 1.8vw, 22px); }

p { line-height: 1.7; color: var(--ink-mid); }

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

ul { list-style: none; }

/* Mono label style */
.section-eyebrow, .panel-eyebrow, .page-header-eyebrow,
.about-feature-eyebrow, .about-story-label,
.info-eyebrow, .contact-eyebrow,
.areas-eyebrow, .cta-banner-eyebrow, .cta-banner-label,
.cta-form-title, .section-label, .service-block-eyebrow,
.footer-col-title, .info-label, .info-card-numeral,
.footer-contact-label, .footer-info-item {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: clamp(10px, 1vw, 12px);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); }
.wide-container { max-width: var(--wide-w); margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); }
.section-inner { max-width: var(--max-w); margin: 0 auto; padding: var(--section-y) clamp(20px, 4vw, 48px); }
.bleed { width: 100%; }

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

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

.top-nav {
  display: flex;
  align-items: center;
  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;
  text-decoration: none;
}
.nav-logo:hover { text-decoration: none; }

.nav-pages {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  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;
  white-space: nowrap;
  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"],
.nav-pages li.active > a {
  color: var(--primary);
  border-bottom: 2px solid var(--primary);
}

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

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

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-pages {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--canvas);
    padding: 24px 28px;
    gap: 4px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    z-index: 800;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .nav-pages.open { display: flex; }
  .nav-pages a { font-size: 17px; padding: 10px 0; width: 100%; }
  .nav-cta span { display: none; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn, .btn-primary, .btn-submit, .form-submit {
  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);
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: filter 180ms ease, transform 150ms ease, box-shadow 180ms ease;
  white-space: nowrap;
}

.btn-primary, .btn-submit, .form-submit {
  background: var(--primary);
  color: #fff;
}
.btn-primary:hover, .btn-submit:hover, .form-submit:hover {
  filter: brightness(0.88);
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(52,84,45,0.3);
}

.btn-outline {
  background: transparent;
  color: var(--canvas);
  border: 1.5px solid rgba(255,255,255,0.7);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  color: var(--canvas);
  text-decoration: none;
}

.btn-dark {
  background: var(--ink);
  color: var(--canvas);
}
.btn-dark:hover {
  filter: brightness(1.2);
  color: var(--canvas);
  text-decoration: none;
}

.btn-primary-light {
  background: var(--canvas);
  color: var(--primary);
}
.btn-primary-light:hover {
  background: var(--surface);
  color: var(--primary);
  text-decoration: none;
}

.btn-cta-phone {
  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);
  background: transparent;
  color: var(--canvas);
  border: 1.5px solid rgba(255,255,255,0.6);
  text-decoration: none;
  transition: background 180ms;
}
.btn-cta-phone:hover {
  background: rgba(255,255,255,0.12);
  color: var(--canvas);
  text-decoration: none;
}
.btn-cta-phone svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ============================================================
   HERO
   ============================================================ */
#hero.hero {
  min-height: 92vh;
  display: flex;
  align-items: flex-start;
}

.hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
  filter: grayscale(15%);
}

.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(160deg, rgba(12,12,15,0.52) 0%, rgba(12,12,15,0.72) 100%);
}

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

.hero-super {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(80px, 10vw, 140px);
  line-height: 0.88;
  color: var(--primary);
  letter-spacing: -0.03em;
  display: block;
  margin-bottom: 12px;
}

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

.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(48px, 7.5vw, 112px);
  line-height: 0.96;
  letter-spacing: -0.03em;
  color: #fff;
  max-width: 16ch;
  margin-bottom: 20px;
}

/* hero-title is the h1 inside hero-inner — override h1 default */
.hero-inner h1 {
  font-size: clamp(48px, 7.5vw, 112px);
  line-height: 0.96;
  letter-spacing: -0.03em;
  color: #fff;
  max-width: 16ch;
  margin-bottom: 20px;
}

.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.6vw, 20px);
  color: rgba(255,255,255,0.75);
  max-width: 52ch;
  line-height: 1.6;
  margin-bottom: 32px;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-ctas a:first-child {
  background: var(--primary);
  color: #fff;
  padding: 16px 32px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: filter 180ms, transform 150ms;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero-ctas a:first-child:hover {
  filter: brightness(0.88);
  text-decoration: none;
  color: #fff;
  transform: translateY(-1px);
}

.hero-ctas a:last-child {
  background: transparent;
  color: #fff;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: 1.5px solid rgba(255,255,255,0.5);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: background 180ms;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero-ctas a:last-child:hover {
  background: rgba(255,255,255,0.1);
  text-decoration: none;
  color: #fff;
}

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

.trust-chip {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.5);
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.07);
  white-space: nowrap;
}

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

.trust-strip-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  padding: 16px clamp(20px, 4vw, 48px);
  max-width: var(--max-w);
  margin: 0 auto;
  align-items: center;
  justify-content: flex-start;
}

.trust-pill {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
  white-space: nowrap;
}

/* trust-chip inside trust-strip (non-hero) */
.trust-strip .trust-chip {
  border-color: var(--ink);
  color: var(--ink);
  background: transparent;
}

.primary-chip {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  overflow: hidden;
  padding: 14px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  max-height: 64px;
  position: relative;
  z-index: 1;
  background: var(--canvas);
}

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

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

.marquee-item {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: clamp(11px, 1.2vw, 14px);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mid);
  line-height: 1.2;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.marquee-item span {
  display: inline-flex;
  align-items: center;
}
.marquee-item span::after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  margin-left: 20px;
  flex-shrink: 0;
}

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

/* ============================================================
   SECTION NUMERALS (The visual identity system)
   ============================================================ */
.section-num, .areas-num, .cta-num, .about-section-numeral,
.about-story-numeral, .contact-numeral, .info-card-numeral,
.page-header-num, .page-header-numeral, .cta-banner-numeral,
.project-card-numeral, .service-block-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--numeral-size);
  line-height: 0.88;
  letter-spacing: -0.03em;
  color: var(--primary);
  display: block;
  user-select: none;
  flex-shrink: 0;
}

.section-header {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: clamp(40px, 5vw, 64px);
}

.section-title-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 8px;
}

.section-title-block h2 { color: var(--ink); }
.section-title-block .section-eyebrow { margin-bottom: 4px; }

/* ============================================================
   SERVICES — TABBED PANEL
   ============================================================ */
#services.services {
  background: var(--surface);
}

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

.service-tab {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid var(--border-mid);
  background: var(--canvas);
  color: var(--ink);
  cursor: pointer;
  transition: background 180ms, color 180ms, border-color 180ms;
}
.service-tab:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.service-tab.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.services-panels {
  position: relative;
}

.service-panel {
  display: none;
}
.service-panel.active {
  display: grid;
  grid-template-columns: 45% 1fr;
  gap: 0;
  min-height: 460px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--canvas);
  box-shadow: var(--shadow-md);
}

.service-panel-img {
  position: relative;
  overflow: hidden;
}
.service-panel-img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  max-height: none;
}

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

.service-panel-body h3 {
  font-size: clamp(24px, 2.8vw, 40px);
  letter-spacing: -0.02em;
}

.service-panel-body .panel-eyebrow {
  color: var(--muted);
  margin-bottom: 4px;
}

.service-panel-body p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-mid);
}

.service-panel-body a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  padding: 14px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  margin-top: 8px;
  align-self: flex-start;
  transition: filter 180ms;
}
.service-panel-body a:hover {
  filter: brightness(0.88);
  text-decoration: none;
  color: #fff;
}

@media (max-width: 900px) {
  .service-panel.active {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .service-panel-img {
    position: relative;
    height: 260px;
  }
  .service-panel-img img {
    position: absolute; inset: 0;
  }
}

/* ============================================================
   SERVICES FEATURE BLOCKS (services.html)
   ============================================================ */
.services-feature {
  padding: var(--section-y) 0;
  background: var(--canvas);
}

.services-feature-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  gap: clamp(64px, 8vw, 100px);
}

.services-section-header {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 0;
}
.services-section-header h2 {
  font-size: clamp(36px, 5vw, 64px);
  padding-top: 8px;
}
.services-section-header p {
  font-size: 18px;
  color: var(--muted);
  max-width: 56ch;
  margin-top: 12px;
}

.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

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

.service-block-photo {
  position: relative;
  overflow: hidden;
  min-height: 420px;
}
.service-block-photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  max-height: none;
}

.service-block-num {
  position: absolute;
  top: 20px; left: 20px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 5vw, 72px);
  color: rgba(255,255,255,0.9);
  line-height: 1;
  letter-spacing: -0.03em;
  z-index: 2;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.service-block-body {
  padding: clamp(36px, 4vw, 60px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.service-block-body .service-block-eyebrow {
  color: var(--primary);
  font-size: 11px;
  letter-spacing: 0.14em;
}

.service-block-body h2 {
  font-size: clamp(24px, 3vw, 40px);
  letter-spacing: -0.02em;
}

.service-block-body p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-mid);
}

.service-bullets {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.service-bullets li {
  font-size: 14px;
  color: var(--ink-mid);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}
.service-bullets li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  margin-top: 6px;
  flex-shrink: 0;
}

.service-block-body a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  padding: 14px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  align-self: flex-start;
  margin-top: 8px;
  transition: filter 180ms;
}
.service-block-body a:hover {
  filter: brightness(0.88);
  text-decoration: none;
  color: #fff;
}

@media (max-width: 900px) {
  .service-block,
  .service-block.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .service-block-photo { min-height: 280px; }
}

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

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

.gallery-tile {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius);
  display: block;
  background: var(--surface-2);
  transition: transform 250ms ease, filter 250ms ease;
}
.gallery-tile:hover { transform: scale(1.01); }
.gallery-tile:hover img { filter: none; }

.gallery-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(8%);
  max-height: none;
  transition: filter 300ms;
}

.gallery-tile-tall {
  aspect-ratio: 3 / 4;
  grid-row: span 1;
}

.gallery-cta {
  text-align: center;
  margin-top: 40px;
}
.gallery-cta a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: filter 180ms;
}
.gallery-cta a:hover { filter: brightness(0.88); text-decoration: none; color: #fff; }

.gallery-empty {
  display: none;
  text-align: center;
  color: var(--muted);
  padding: 48px;
  font-size: 15px;
}

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

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

.gallery-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  max-width: var(--max-w);
  margin: 0 auto clamp(32px, 4vw, 48px);
  padding: 0 clamp(20px, 4vw, 48px);
}

.gallery-section-header h2 {
  font-size: clamp(32px, 4.5vw, 60px);
}

.gallery-section-meta {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.section-numeral {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--numeral-size);
  line-height: 0.88;
  color: var(--primary);
  letter-spacing: -0.03em;
}

.section-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: 8px;
}

.gallery-section-headline {
  font-size: clamp(32px, 4.5vw, 60px);
  letter-spacing: -0.025em;
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: var(--max-w);
  margin: 0 auto 32px;
  padding: 0 clamp(20px, 4vw, 48px);
}

.filter-pill {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--border-mid);
  background: var(--canvas);
  color: var(--ink);
  cursor: pointer;
  transition: all 180ms;
}
.filter-pill:hover,
.filter-pill.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

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

/* Project cards */
.project-card {
  background: var(--canvas);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 250ms ease, box-shadow 250ms ease;
}
.project-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.project-card-image-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.project-card-image-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  max-height: none;
  transition: transform 400ms ease;
}
.project-card:hover .project-card-image-wrap img { transform: scale(1.04); }

.project-card-numeral {
  position: absolute;
  top: 12px; left: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1;
  color: rgba(255,255,255,0.9);
  letter-spacing: -0.025em;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.project-card-cat {
  position: absolute;
  bottom: 12px; right: 12px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(12,12,15,0.75);
  color: #fff;
  padding: 4px 10px;
  border-radius: 999px;
}

.project-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.project-card-body h3 {
  font-size: 18px;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.project-card-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
}
.project-card-location svg { width: 14px; height: 14px; flex-shrink: 0; }

.project-card-desc {
  font-size: 14px;
  color: var(--ink-mid);
  line-height: 1.6;
}

.project-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}

.project-meta-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.project-meta-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.project-meta-value {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}

.gallery-empty {
  text-align: center;
  color: var(--muted);
  padding: 64px;
  font-size: 15px;
  grid-column: 1 / -1;
}

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

/* ============================================================
   SERVICE AREAS
   ============================================================ */
.service-areas {
  background: var(--surface);
}

.areas-content {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: flex-start;
}

.areas-right {
  padding-top: 8px;
}

.areas-right h2 {
  font-size: clamp(32px, 4.5vw, 64px);
  margin-bottom: 12px;
}

.areas-eyebrow { margin-bottom: 8px; }

.areas-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 64px);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}

.areas-desc {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 24px;
  line-height: 1.65;
}

.areas-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.area-pill {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid var(--border-mid);
  color: var(--ink);
  background: var(--canvas);
  white-space: nowrap;
}

@media (max-width: 640px) {
  .areas-content { grid-template-columns: 1fr; }
  .areas-num { font-size: clamp(56px, 14vw, 88px); }
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq {
  background: var(--canvas);
}

.faq-list {
  border-top: 1px solid var(--border);
}

details.faq-list > details,
.faq-list > details {
  border-bottom: 1px solid var(--border);
  padding: 0;
}

details {
  border-bottom: 1px solid var(--border);
}

details > summary {
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: clamp(15px, 1.4vw, 18px);
  color: var(--ink);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  gap: 24px;
  transition: color 150ms;
}
details > summary::-webkit-details-marker { display: none; }
details > summary::after {
  content: '+';
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 24px;
  color: var(--muted);
  transition: transform 200ms ease, color 150ms;
  flex-shrink: 0;
  line-height: 1;
}
details[open] > summary::after {
  transform: rotate(45deg);
  color: var(--primary);
}
details[open] > summary { color: var(--primary); }

.faq-body {
  padding-bottom: 22px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-mid);
  max-width: 72ch;
}

/* ============================================================
   TEAM CTA BANNER
   ============================================================ */
.team-cta {
  background: var(--primary);
  padding: clamp(48px, 6vw, 80px) 0;
}

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

.team-cta-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(24px, 3.5vw, 48px);
  letter-spacing: -0.025em;
  color: #fff;
  line-height: 1.1;
}
.team-cta-text span {
  color: rgba(255,255,255,0.65);
}

.team-cta-inner > a {
  flex-shrink: 0;
  background: #fff;
  color: var(--primary);
  padding: 16px 32px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  white-space: nowrap;
  transition: filter 180ms, transform 150ms;
}
.team-cta-inner > a:hover {
  filter: brightness(0.94);
  transform: translateY(-1px);
  text-decoration: none;
  color: var(--primary);
}

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

.cta-banner-deco {
  position: absolute;
  top: -40px; right: -40px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(200px, 25vw, 360px);
  line-height: 1;
  color: rgba(255,255,255,0.03);
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.04em;
}

.cta-banner-numeral {
  position: absolute;
  top: 20px; left: clamp(20px, 4vw, 48px);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(60px, 8vw, 120px);
  line-height: 0.88;
  color: var(--primary);
  letter-spacing: -0.03em;
  opacity: 0.8;
}

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

.cta-banner-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cta-banner-left h2,
.cta-banner-title {
  font-size: clamp(32px, 4.5vw, 64px);
  color: #fff;
  line-height: 1.05;
  letter-spacing: -0.025em;
}

.cta-banner-left p,
.cta-banner-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
}

.cta-banner-label,
.cta-banner-eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
}

.cta-pair, .cta-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cta-pair a, .cta-banner-actions a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 180ms;
}

.cta-pair a:first-child, .cta-banner-actions a:first-child {
  background: var(--primary);
  color: #fff;
}
.cta-pair a:first-child:hover, .cta-banner-actions a:first-child:hover {
  filter: brightness(0.88);
  text-decoration: none;
  color: #fff;
}

.cta-pair a:last-child, .cta-banner-actions a:last-child {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.35);
}
.cta-pair a:last-child:hover, .cta-banner-actions a:last-child:hover {
  background: rgba(255,255,255,0.07);
  text-decoration: none;
  color: #fff;
}

.cta-banner-right {
  background: var(--canvas);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 40px);
}

.cta-banner-right h3 {
  font-size: clamp(20px, 2.5vw, 30px);
  margin-bottom: 20px;
  color: var(--ink);
}

.cta-banner-phone {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(24px, 3vw, 40px);
  color: var(--primary);
  letter-spacing: -0.025em;
  margin-bottom: 16px;
  text-decoration: none;
}
.cta-banner-phone:hover { filter: brightness(0.8); text-decoration: none; }

.cta-banner-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cta-banner-text h2 { color: #fff; }

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

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

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-form-col {
  background: var(--canvas);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3.5vw, 48px);
  box-shadow: var(--shadow-sm);
}

.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 8px;
}

.info-eyebrow {
  color: var(--primary);
  margin-bottom: 4px;
}

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

.info-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

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

.info-phone-big {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(24px, 3vw, 40px);
  letter-spacing: -0.025em;
  color: var(--primary);
  text-decoration: none;
  display: block;
}

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

.info-value.small { font-size: 14px; }

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

/* ============================================================
   CONTACT PAGE (contact.html)
   ============================================================ */
.contact-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--section-y) clamp(20px, 4vw, 48px);
}

.contact-header {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: clamp(40px, 5vw, 64px);
}

.contact-numeral {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--numeral-size);
  line-height: 0.88;
  color: var(--primary);
  letter-spacing: -0.03em;
}

.contact-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: 12px;
}

.contact-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 4.5vw, 64px);
  letter-spacing: -0.025em;
}

.contact-form-wrap {
  background: var(--canvas);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3.5vw, 48px);
  box-shadow: var(--shadow-sm);
}

.contact-info-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-card-numeral {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(48px, 6vw, 88px);
  line-height: 0.88;
  color: var(--primary);
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.info-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

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

.social-links { display: flex; gap: 12px; }
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: var(--radius);
  background: var(--surface-2);
  color: var(--ink);
  transition: background 180ms, color 180ms;
}
.social-link:hover {
  background: var(--primary);
  color: #fff;
  text-decoration: none;
}
.social-link svg { width: 18px; height: 18px; }

/* ============================================================
   FORMS
   ============================================================ */
form { display: flex; flex-direction: column; gap: 16px; }

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

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

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

.form-input, input[type="text"], input[type="email"],
input[type="tel"], input[type="number"],
.form-select, select, 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 16px;
  width: 100%;
  outline: none;
  transition: border-color 150ms, box-shadow 150ms;
  appearance: none;
  -webkit-appearance: none;
}
.form-input:focus, input:focus, select:focus, textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(52,84,45,0.12);
}

.form-textarea, textarea {
  min-height: 120px;
  resize: vertical;
  line-height: 1.6;
}

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

/* CTA form (about/services pages) */
.cta-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cta-form .form-row { grid-template-columns: 1fr 1fr; }
.cta-form input, .cta-form textarea {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.2);
  color: #fff;
}
.cta-form input::placeholder, .cta-form textarea::placeholder {
  color: rgba(255,255,255,0.4);
}
.cta-form input:focus, .cta-form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(52,84,45,0.25);
}
.cta-form-title {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

/* ============================================================
   PAGE HEADER (sub-pages)
   ============================================================ */
.page-header {
  min-height: clamp(280px, 40vh, 480px);
  max-height: 64vh;
  display: flex;
  align-items: flex-end;
  background: var(--ink);
}

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

.page-header-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: clamp(40px, 6vh, 80px) clamp(20px, 4vw, 48px);
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.page-header-num,
.page-header-numeral {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.88;
  color: var(--primary);
  letter-spacing: -0.03em;
  display: block;
}

.page-header-eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}

.page-header-inner h1,
.page-header-title {
  font-size: clamp(40px, 6vw, 88px);
  color: #fff;
  line-height: 1.0;
  letter-spacing: -0.025em;
}

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

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

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

.about-story-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 40px;
  display: block;
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: flex-start;
}

.about-story-portrait {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}

.about-story-portrait img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  max-height: 600px;
  filter: grayscale(12%);
}

.about-story-numeral {
  position: absolute;
  top: -16px; left: -16px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--numeral-size);
  color: var(--primary);
  line-height: 0.88;
  letter-spacing: -0.03em;
  z-index: 2;
}

.about-story-caption {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 12px;
  display: block;
}

.about-section-numeral {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--numeral-size);
  color: var(--primary);
  line-height: 0.88;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.about-story-content h2 {
  font-size: clamp(28px, 3.5vw, 52px);
  margin-bottom: 24px;
}

.about-story-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}
.about-story-body p { font-size: 16px; line-height: 1.75; }

.about-values {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.about-value-chip {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid var(--border-mid);
  color: var(--ink);
  background: var(--surface);
  white-space: nowrap;
}

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

/* ============================================================
   ABOUT FEATURE (about.html second section)
   ============================================================ */
.about-feature {
  background: var(--surface);
  max-height: none;
  padding: var(--section-y) 0;
}

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

.about-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.about-feature-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-feature-content h2 {
  font-size: clamp(28px, 3.5vw, 52px);
}

.about-feature-eyebrow {
  margin-bottom: 4px;
}

.about-feature-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.about-feature-body p { font-size: 15px; line-height: 1.75; }

.about-feature-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.about-feature-photo {
  border-radius: var(--radius);
  overflow: hidden;
}
.about-feature-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  max-height: 560px;
}

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

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--ink);
  padding-top: clamp(56px, 7vw, 96px);
}

.footer-inner, .footer-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px) clamp(56px, 7vw, 80px);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(32px, 4vw, 56px);
}

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

.footer-brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  letter-spacing: -0.015em;
}

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

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 150ms;
}
.footer-contact-item:hover { color: var(--primary); text-decoration: none; }
.footer-contact-item svg { width: 16px; height: 16px; flex-shrink: 0; }

.footer-contact-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

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

.footer-links { padding: 0; margin: 0; list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 150ms;
}
.footer-links a:hover { color: #fff; text-decoration: none; }

.footer-col ul { padding: 0; margin: 0; list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 150ms;
}
.footer-col ul a:hover { color: #fff; text-decoration: none; }

.footer-info-block { display: flex; flex-direction: column; gap: 8px; }
.footer-info-item {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  display: block;
}
.footer-info-item a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
}
.footer-info-item a:hover { color: #fff; text-decoration: none; }

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

.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  font-family: var(--font-mono);
  letter-spacing: 0.05em;
  display: block;
}

.footer-license {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}

.footer-phone, .footer-email {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  display: block;
}
.footer-phone:hover, .footer-email:hover { color: var(--primary); text-decoration: none; }

.footer-service-area {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

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

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

/* Inner anchor inside mobile-cta or mobile-sticky-cta */
.mobile-cta > a, .mobile-sticky-cta > a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}
.mobile-cta > a:hover, .mobile-sticky-cta > a:hover { text-decoration: none; color: #fff; }
.mobile-cta > a svg, .mobile-sticky-cta > a svg { width: 20px; height: 20px; }

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

/* ============================================================
   ANIMATION UTILITIES
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

.fade-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-left.visible { opacity: 1; transform: translateX(0); }

.fade-right {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-right.visible { opacity: 1; transform: translateX(0); }

.scale-in {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.scale-in.visible { opacity: 1; transform: scale(1); }

.stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.stagger > *.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   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.03em;
}

.stat-label {
  font-family: var(--font-mono);
  font-size: clamp(11px, 1vw, 14px);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  margin-top: 8px;
  display: block;
}

/* ============================================================
   SERVICE CARD HOVER
   ============================================================ */
.service-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 28px;
  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);
}

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

/* ============================================================
   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);
}

/* ============================================================
   MISC UTILITIES
   ============================================================ */
.small { font-size: 13px; }

svg { display: block; }

/* Cap unsized SVGs */
svg:not([width]):not([height]) { width: 24px; height: 24px; }

/* Table heads */
.services-table thead .col-service,
.services-table thead .col-desc,
.services-table thead .col-timeline,
.services-table thead .col-price {
  background: var(--ink);
  color: #fff;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
  .footer-inner, .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
}

@media (max-width: 900px) {
  .hero-inner h1 { max-width: 20ch; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .hero-ctas a { width: 100%; justify-content: center; }
  .contact-grid { grid-template-columns: 1fr; }
  .section-header { flex-direction: row; gap: 16px; }
  .areas-content { grid-template-columns: 1fr; }
  .cta-banner-inner { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .services-tabs { gap: 6px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
  .hero-trust-chips { gap: 6px; }
  .trust-chip { font-size: 9px; padding: 5px 10px; }
  .section-header { flex-direction: column; gap: 8px; }
  .section-num { font-size: clamp(56px, 16vw, 88px); }
}


/* === Validator patches (auto-applied) === */
/* validator patch: grid children without placement → span full row */
.gallery-tile { grid-column: 1 / -1; }
.areas-num { grid-column: 1 / -1; }
.areas-right { grid-column: 1 / -1; }
.contact-form-col { grid-column: 1 / -1; }
.contact-info-col { grid-column: 1 / -1; }
.service-block-photo { grid-column: 1 / -1; }
.service-block-body { grid-column: 1 / -1; }
.footer-col { grid-column: 1 / -1; }
.about-feature-content { grid-column: 1 / -1; }
.about-feature-photo { grid-column: 1 / -1; }
.cta-banner-text { grid-column: 1 / -1; }
.cta-form { grid-column: 1 / -1; }
.form-group { grid-column: 1 / -1; }
/* validator patch: hero must never crop its headline */
#hero, .hero { overflow: visible !important; }
:where(#hero, .hero) { padding-top: max(var(--header-height, 72px), 72px); }

/* validator patch: keep the hero photo visible, no smothering dark band */
.hero-overlay { background: linear-gradient(to top, rgba(0,0,0,0.66), rgba(0,0,0,0.34) 38%, rgba(0,0,0,0.12) 68%, rgba(0,0,0,0) 100%), linear-gradient(to right, rgba(0,0,0,0.30), rgba(0,0,0,0) 58%) !important; }
