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

/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --primary:        #DC641C;
  --accent:         #ECB48C;
  --canvas:         #FFFFFF;
  --surface:        #F4F2EE;
  --ink:            #0C0C0F;
  --muted:          #6B6B6B;
  --border:         rgba(12,12,15,0.10);
  --border-strong:  rgba(12,12,15,0.18);
  --shadow-sm:      0 2px 8px -2px rgba(12,12,15,0.10);
  --shadow-md:      0 8px 24px -8px rgba(12,12,15,0.14);
  --shadow-lg:      0 18px 48px -14px rgba(12,12,15,0.18);
  --radius:         4px;
  --radius-pill:    999px;
  --header-height:  72px;
  --section-py:     clamp(88px, 11vh, 144px);
  --container:      1280px;
  --font-display:   'Space Grotesk', sans-serif;
  --font-body:      'IBM Plex Sans', sans-serif;
  --font-mono:      'IBM Plex Mono', monospace;
}
@media (max-width: 900px) {
  :root { --header-height: 60px; }
}

/* ============================================================
   GLOBAL SMOOTH SCROLL + SCROLL PADDING
   ============================================================ */
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 16px);
}

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

/* ============================================================
   HEADING ANCHOR RESET
   ============================================================ */
h1 a, h2 a, h3 a,
.hero-title a, .hero-eyebrow a, .hero-sub a {
  color: inherit;
  text-decoration: none;
  border-bottom: 0;
}

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: -0.03em;
  color: var(--ink);
}

p { line-height: 1.68; }
ul { list-style: none; }

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

/* ============================================================
   LAYOUT CONTAINERS
   ============================================================ */
.section-inner,
.contact-inner,
.services-list-inner,
.footer-inner,
.cta-banner-inner,
.gallery-section,
.trust-strip-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

.wide-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

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

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

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

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

.nav-pages {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  padding: 0;
  margin: 0;
  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;
  letter-spacing: 0.01em;
  transition: color 150ms;
}
.nav-pages a:hover {
  color: var(--primary);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}
.nav-pages a[aria-current="page"] {
  color: var(--primary);
  border-bottom: 2px solid var(--primary);
}

.nav-cta {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  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 { color: #fff; text-decoration: none; filter: brightness(0.92); }
.nav-cta svg { width: 16px; height: 16px; flex-shrink: 0; }
.nav-cta .nav-cta-text { display: inline; }

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

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

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

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

.btn-primary {
  background: var(--primary);
  color: #fff;
}
.btn-primary:hover { filter: brightness(0.90); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow-md); }

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

.btn-service {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: filter 180ms, transform 180ms;
  border: none;
  cursor: pointer;
}
.btn-service:hover { filter: brightness(0.90); color: #fff; text-decoration: none; transform: translateY(-1px); }
.btn-service svg { width: 16px; height: 16px; }

.btn-submit,
.form-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: filter 180ms, transform 180ms;
}
.btn-submit:hover,
.form-submit:hover { filter: brightness(0.90); transform: translateY(-1px); }
.btn-submit svg,
.form-submit svg { width: 18px; height: 18px; }

.btn-banner-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 28px;
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: filter 180ms, transform 180ms;
}
.btn-banner-primary:hover { filter: brightness(0.90); color: #fff; text-decoration: none; transform: translateY(-1px); }

.btn-banner-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--border-strong);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 150ms, background 150ms;
}
.btn-banner-secondary:hover { border-color: var(--primary); color: var(--primary); text-decoration: none; background: rgba(220,100,28,0.04); }

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

.trust-pill-accent {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.trust-chip-star {
  color: var(--primary);
  font-size: 13px;
}

.star { color: var(--primary); }

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

/* ============================================================
   EYEBROWS / LABELS
   ============================================================ */
.eyebrow,
.section-eyebrow,
.section-label,
.hero-eyebrow,
.page-header-eyebrow,
.about-eyebrow,
.areas-eyebrow,
.cta-banner-eyebrow,
.services-intro,
.service-block-eyebrow,
.cta-form-title {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  line-height: 1.4;
}

.hero-eyebrow { color: rgba(255,255,255,0.75); }
.page-header-eyebrow { color: rgba(255,255,255,0.72); }

/* ============================================================
   SECTION NUMERALS (the identity supergraphic)
   ============================================================ */
.section-numeral,
.hero-numeral,
.about-numeral,
.areas-numeral,
.page-header-numeral,
.cta-numeral,
.cta-banner-numeral,
.services-section-numeral,
.info-card-numeral {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(72px, 9vw, 120px);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--primary);
  user-select: none;
  pointer-events: none;
}

.hero-numeral {
  font-size: clamp(80px, 10vw, 140px);
  color: var(--primary);
  display: block;
  margin-bottom: 16px;
}

.page-header-numeral {
  font-size: clamp(64px, 8vw, 110px);
  color: var(--primary);
  opacity: 0.9;
}

.about-numeral {
  font-size: clamp(72px, 9vw, 120px);
  margin-bottom: -32px;
  position: relative;
  z-index: 0;
  opacity: 0.15;
  color: var(--primary);
}

.service-block-index {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(56px, 7vw, 96px);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--primary);
  margin-bottom: 12px;
}

/* ============================================================
   HERO
   ============================================================ */
#hero.hero {
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(48px, 8vh, 96px);
}

.hero > img:first-of-type,
.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(
    175deg,
    rgba(12,12,15,0.30) 0%,
    rgba(12,12,15,0.55) 50%,
    rgba(12,12,15,0.72) 100%
  );
  pointer-events: none;
}

.hero-inner {
  position: relative; z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
  width: 100%;
}

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

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

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

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

.hero-trust-chips .trust-chip {
  border-color: rgba(255,255,255,0.45);
  color: rgba(255,255,255,0.85);
}

/* ============================================================
   MARQUEE STRIP
   ============================================================ */
.marquee-strip {
  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;
  width: max-content;
}

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

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: clamp(11px, 1.2vw, 14px);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.2;
}
.marquee-item span {
  display: inline-flex;
  align-items: center;
}
.marquee-item::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}

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

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

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

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

.services-header {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 24px;
  margin-bottom: 48px;
}

.services-header > div { display: flex; flex-direction: column; gap: 8px; }

.services-header h2 {
  font-size: clamp(36px, 5vw, 64px);
  line-height: 0.96;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.services-intro {
  margin-top: 12px;
  max-width: 52ch;
}

/* Tab strip */
.services-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
  padding: 0;
}

.service-tab {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  cursor: pointer;
  background: transparent;
  color: var(--muted);
  transition: border-color 150ms, color 150ms, background 150ms;
  white-space: nowrap;
}
.service-tab:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.service-tab.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

/* Panels */
.services-panels {
  position: relative;
}

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

.service-panel-img {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  background: var(--surface);
}
.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 .section-label { margin-bottom: 4px; }

.service-panel-body h3 {
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}

.service-panel-body p {
  font-size: 15px;
  line-height: 1.68;
  color: var(--muted);
  max-width: 52ch;
}

.service-panel-body a.btn-service,
.service-panel-body a {
  margin-top: 8px;
  align-self: flex-start;
}

@media (max-width: 900px) {
  .service-panel { grid-template-columns: 1fr; min-height: auto; }
  .service-panel-img { min-height: 260px; }
  .services-header { grid-template-columns: 1fr; }
}

/* Services page — feature blocks */
.services-list {
  padding: var(--section-py) 0;
  background: var(--canvas);
}

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

.services-section-header {
  margin-bottom: clamp(48px, 7vh, 88px);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.services-section-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.services-section-meta h2 {
  font-size: clamp(36px, 5vw, 64px);
}

.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 540px;
  margin-bottom: 4px;
  overflow: hidden;
  border-radius: var(--radius);
}
.service-block + .service-block { margin-top: 2px; }

.service-block-photo {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  min-height: 400px;
}
.service-block-photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  max-height: none;
  transition: transform 600ms ease;
}
.service-block:hover .service-block-photo img { transform: scale(1.03); }

.service-block-body {
  padding: clamp(40px, 5vw, 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  background: var(--surface);
}

.service-block.reverse .service-block-photo { order: 1; }
.service-block.reverse .service-block-body  { order: 0; background: var(--canvas); }

.service-block-body h2 {
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 0.98;
}

.service-block-desc {
  font-size: 15px;
  line-height: 1.68;
  color: var(--muted);
  max-width: 52ch;
}

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

@media (max-width: 900px) {
  .service-block { grid-template-columns: 1fr; min-height: auto; }
  .service-block-photo { min-height: 260px; order: 0 !important; }
  .service-block-body { order: 1 !important; }
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section {
  padding: var(--section-py) 0;
  background: var(--canvas);
}

.about-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}

.about-text-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}

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

.about-headline {
  font-size: clamp(32px, 4vw, 56px);
  line-height: 0.98;
  margin-bottom: 4px;
}

.about-body {
  font-size: 16px;
  line-height: 1.72;
  color: var(--muted);
  max-width: 56ch;
}

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

.about-photo-col {
  position: relative;
}

.about-photo-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4 / 5;
}
.about-photo-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  max-height: none;
  filter: grayscale(10%);
  display: block;
}

.about-photo-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(12,12,15,0.72);
  backdrop-filter: blur(4px);
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.about-photo-label-text {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.65);
}
.about-photo-label-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-photo-wrap { aspect-ratio: 4 / 3; }
}

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

.gallery-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 24px;
}
.gallery-header > div { display: flex; flex-direction: column; gap: 6px; }
.gallery-header h2 {
  font-size: clamp(32px, 4.5vw, 64px);
  line-height: 0.96;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.gallery-header a {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  text-decoration: none;
  flex-shrink: 0;
}
.gallery-header a:hover { text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 4px; }

/* Index grid: 3-col, first tile tall */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.gallery-tile {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface);
  position: relative;
}
.gallery-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  max-height: none;
  display: block;
  transition: transform 500ms ease;
  filter: grayscale(8%);
}
.gallery-tile:hover img { transform: scale(1.04); }

.gallery-tile-tall {
  grid-row: span 2;
  aspect-ratio: auto;
}
.gallery-tile-tall img { height: 100%; }

@media (max-width: 640px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-tile-tall { grid-row: span 1; aspect-ratio: 4 / 3; }
}

/* Full gallery page */
.gallery-section {
  padding: var(--section-py) 0;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: clamp(20px, 4vw, 48px);
  padding-right: clamp(20px, 4vw, 48px);
}

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

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

.section-title {
  font-size: clamp(32px, 4.5vw, 64px);
  line-height: 0.96;
  letter-spacing: -0.03em;
}

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

.gallery-count-row {
  margin-bottom: 24px;
}

.gallery-count-label {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--muted);
}

/* Gallery cards (gallery.html full page) */
#galleryGrid.gallery-grid {
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.gallery-card {
  display: flex;
  flex-direction: column;
  background: var(--canvas);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
  aspect-ratio: auto;
  grid-column: auto;
}
.gallery-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); text-decoration: none; color: var(--ink); }

.gallery-card-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--surface);
  flex-shrink: 0;
}
.gallery-card-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  max-height: none;
  display: block;
  transition: transform 500ms ease;
  filter: grayscale(8%);
}
.gallery-card:hover .gallery-card-img-wrap img { transform: scale(1.04); }

.gallery-card-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

.gallery-card-cat {
  position: absolute;
  bottom: 12px; right: 12px;
  background: rgba(12,12,15,0.65);
  backdrop-filter: blur(4px);
  color: rgba(255,255,255,0.85);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

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

.gallery-card-body h3 {
  font-size: 18px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.gallery-card-location {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--muted);
}
.gallery-card-location svg { width: 12px; height: 12px; }

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

.gallery-card-meta {
  display: flex;
  gap: 16px;
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

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

.meta-value {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.02em;
  line-height: 1;
}

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

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

.service-areas .section-inner {
  position: relative;
}

.areas-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: start;
}

.service-areas > .section-inner > .section-numeral {
  position: absolute;
  top: -40px; right: 0;
  font-size: clamp(80px, 12vw, 160px);
  opacity: 0.06;
  color: var(--ink);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.areas-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.areas-text h2 {
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 0.98;
}

.areas-text > p { font-size: 15px; color: var(--muted); line-height: 1.68; max-width: 52ch; }

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

.areas-stat {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  z-index: 1;
}

.stat-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 24px 28px;
  background: var(--canvas);
  border-radius: var(--radius);
  border-left: 3px solid var(--primary);
}

.stat-row-num {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: -0.03em;
  color: var(--primary);
}

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

/* About page areas */
.areas-section {
  padding: var(--section-py) 0;
  background: var(--surface);
}

.areas-label-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.areas-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

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

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

.contact > .section-inner > .section-numeral { margin-bottom: 8px; }
.contact > .section-inner > .section-label { display: block; margin-bottom: 8px; }
.contact > .section-inner > h2 {
  font-size: clamp(32px, 4.5vw, 64px);
  margin-bottom: 56px;
}

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

/* Contact page */
.contact-section {
  padding: var(--section-py) 0;
  background: var(--canvas);
}

.contact-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 56px;
}

.contact-header h2 {
  font-size: clamp(32px, 4.5vw, 64px);
  line-height: 0.96;
  margin-top: 8px;
}

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

/* ============================================================
   FORMS
   ============================================================ */
.contact-form,
.cta-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

.form-field input,
.form-field textarea,
.form-field select,
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  transition: border-color 150ms;
  outline: none;
  appearance: none;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus,
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
}
.form-field textarea,
.form-group textarea {
  min-height: 120px;
  resize: vertical;
  line-height: 1.6;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

/* CTA form (services/gallery pages) */
.cta-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.cta-form input,
.cta-form textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255,255,255,0.10);
  border: 1.5px solid rgba(255,255,255,0.20);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  color: #fff;
  transition: border-color 150ms;
  outline: none;
}
.cta-form input::placeholder,
.cta-form textarea::placeholder { color: rgba(255,255,255,0.45); }
.cta-form input:focus,
.cta-form textarea:focus { border-color: var(--primary); }
.cta-form textarea { min-height: 100px; resize: vertical; }
.cta-form-submit,
.cta-form button[type="submit"] {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 28px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: filter 180ms, transform 180ms;
  width: 100%;
  justify-content: center;
}
.cta-form-submit:hover,
.cta-form button[type="submit"]:hover { filter: brightness(0.90); transform: translateY(-1px); }

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

/* ============================================================
   CONTACT INFO
   ============================================================ */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-info-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.contact-info-item:last-child { border-bottom: 0; padding-bottom: 0; }

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

.contact-info-value {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.contact-info-value.large {
  font-size: clamp(24px, 3vw, 36px);
}
.contact-info-value a { color: var(--ink); text-decoration: none; }
.contact-info-value a:hover { color: var(--primary); }

.contact-info-plain {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}

/* Contact info card (contact.html) */
.contact-info-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  overflow: hidden;
}

.info-card-numeral {
  font-family: var(--font-display);
  font-size: clamp(72px, 9vw, 120px);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--primary);
  opacity: 0.12;
  position: absolute;
  top: -16px; right: 16px;
  pointer-events: none;
  user-select: none;
}

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

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

.info-value {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.info-value.large {
  font-size: clamp(22px, 3vw, 32px);
}
.info-value a { color: var(--ink); text-decoration: none; }
.info-value a:hover { color: var(--primary); }

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

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

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

.cta-banner > img:first-of-type,
.cta-banner-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: grayscale(20%);
  opacity: 0.3;
}

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

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

.cta-banner-eyebrow { color: rgba(255,255,255,0.6); }

.cta-banner-numeral {
  font-size: clamp(56px, 7vw, 100px);
  color: var(--primary);
  opacity: 0.85;
}

.cta-banner-title {
  font-size: clamp(36px, 5vw, 64px);
  line-height: 0.96;
  color: #fff;
}

.cta-banner-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  max-width: 50ch;
}

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

.cta-banner-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
}

.cta-banner-phone {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}

.cta-banner-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cta-banner-info-block {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cta-info-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.cta-info-icon {
  width: 20px;
  height: 20px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

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

.cta-info-value {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}
.cta-info-value a { color: rgba(255,255,255,0.85); }
.cta-info-value a:hover { color: var(--accent); text-decoration: underline; }

.cta-chip {
  border-color: rgba(255,255,255,0.30);
  color: rgba(255,255,255,0.80);
}

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

/* ============================================================
   PAGE HEADER (sub-pages)
   ============================================================ */
.page-header {
  min-height: clamp(280px, 45vh, 520px);
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(40px, 6vh, 72px);
}

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

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

.page-header-title {
  font-size: clamp(40px, 7vw, 96px);
  line-height: 0.96;
  letter-spacing: -0.03em;
  color: #fff;
  max-width: 18ch;
}

.page-header-sub {
  font-family: var(--font-body);
  font-size: 16px;
  color: rgba(255,255,255,0.70);
  max-width: 52ch;
  line-height: 1.6;
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  margin-bottom: clamp(40px, 6vh, 64px);
}

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

.footer-brand p,
.footer-tagline {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.50);
  max-width: 32ch;
}

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

.footer-phone-link,
.footer-email-link,
.footer-contact-line a {
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  text-decoration: none;
}
.footer-phone-link:hover,
.footer-email-link:hover,
.footer-contact-line a:hover { color: var(--accent); text-decoration: underline; text-decoration-thickness: 1px; }

.footer-contact-line { font-size: 14px; color: rgba(255,255,255,0.50); }
.footer-rating { font-size: 14px; color: rgba(255,255,255,0.50); }
.footer-rating span { color: var(--accent); }

.footer-col,
.footer-grid > div {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-col h4,
.footer-col-title,
.footer-grid > div > h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.40);
  margin-bottom: 4px;
}

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

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

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

.contact-line {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-line span { display: block; font-size: 14px; color: rgba(255,255,255,0.55); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
}

.footer-copy {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: rgba(255,255,255,0.28);
}

.footer-areas {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(255,255,255,0.25);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

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

/* ============================================================
   MOBILE CALL PILL (mandatory)
   ============================================================ */
.mobile-cta,
.mobile-cta-pill,
.mobile-sticky-cta {
  position: fixed;
  bottom: 18px; right: 18px;
  z-index: 999;
  display: flex;
}

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

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

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

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

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

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

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

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
details.faq {
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}
details.faq > summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
details.faq > summary::-webkit-details-marker { display: none; }
details.faq > summary::after {
  content: "+";
  font-weight: 300;
  transition: transform 200ms;
}
details.faq[open] > summary::after {
  transform: rotate(45deg);
  color: var(--primary);
}
details.faq p { margin-top: 12px; line-height: 1.6; }

/* ============================================================
   PROCESS STRIP
   ============================================================ */
.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: 8px;
}
.step-num {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
  letter-spacing: 0.12em;
}

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

/* ============================================================
   REVIEW CARDS
   ============================================================ */
.review-card {
  padding: 28px;
  border-radius: 12px;
  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; }

/* ============================================================
   TABLE CELLS (thead-only dark, tbody stays light)
   ============================================================ */
.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;
}
.services-table tbody .col-service,
.services-table tbody .col-desc,
.services-table tbody .col-timeline,
.services-table tbody .col-price {
  background: var(--canvas);
  color: var(--ink);
}

/* ============================================================
   MISC HELPERS
   ============================================================ */
.section-h2 {
  font-size: clamp(36px, 5vw, 72px);
  line-height: 0.96;
  letter-spacing: -0.03em;
}

.reverse { /* layout swap handled per-context */ }

.full { grid-column: 1 / -1; }

.large {
  font-size: clamp(22px, 3vw, 36px) !important;
}

/* SVG caps for unsized icons */
svg { max-width: 100%; }
.hero-ctas svg,
.btn svg,
.btn-service svg,
.btn-banner-primary svg,
.btn-banner-secondary svg { width: 18px; height: 18px; flex-shrink: 0; }
.contact-line svg,
.gallery-card-location svg { width: 14px; height: 14px; }
.cta-info-icon { width: 20px; height: 20px; }
.nav-cta svg { width: 16px; height: 16px; }
.mobile-cta svg, .mobile-cta a svg, .mobile-sticky-cta a svg { width: 20px; height: 20px; }

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

@media (max-width: 900px) {
  .service-block { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .cta-banner-inner { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr; }
  .services-header { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-tile-tall { grid-row: span 1; aspect-ratio: 4 / 3; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; }
  .services-tabs { gap: 6px; }
  .service-tab { font-size: 10px; padding: 7px 14px; }
}


/* === Validator patches (auto-applied) === */
/* validator patch: grid children without placement → span full row */
.services-intro { grid-column: 1 / -1; }
.footer-brand { grid-column: 1 / -1; }
.footer-col { grid-column: 1 / -1; }
.service-block-photo { grid-column: 1 / -1; }
.service-block-body { grid-column: 1 / -1; }
.form-field { grid-column: 1 / -1; }
.about-text-col { grid-column: 1 / -1; }
.areas-label-col { grid-column: 1 / -1; }
.areas-list-col { 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; }
