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

/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --primary:        #E46B04;
  --primary-dark:   #C45A00;
  --primary-light:  #F7A455;
  --accent:         #9C9C54;
  --canvas:         #FFFFFF;
  --surface:        #F4F2EE;
  --surface-2:      #ECEAE4;
  --ink:            #0C0C0F;
  --ink-mid:        #2A2A2E;
  --muted:          #6B6B6B;
  --border:         rgba(12,12,15,0.10);
  --border-strong:  rgba(12,12,15,0.22);
  --shadow-sm:      0 2px 8px -2px rgba(12,12,15,0.10);
  --shadow-md:      0 8px 28px -8px rgba(12,12,15,0.18);
  --shadow-lg:      0 18px 48px -16px rgba(12,12,15,0.24);
  --header-height:  72px;
  --radius:         4px;
  --radius-pill:    999px;
  --font-display:   'Space Grotesk', sans-serif;
  --font-body:      'IBM Plex Sans', sans-serif;
  --font-mono:      'IBM Plex Mono', monospace;
  --section-py:     clamp(88px, 11vh, 144px);
  --content-max:    1280px;
}

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

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 16px);
  -webkit-text-size-adjust: 100%;
}

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

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

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

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

ul { list-style: none; padding: 0; margin: 0; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }
address { font-style: normal; }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container { max-width: var(--content-max); margin: 0 auto; padding: 0 clamp(20px, 5vw, 56px); }
.wide-container { max-width: 1400px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 56px); }
.section-wrap { max-width: var(--content-max); margin: 0 auto; padding: 0 clamp(20px, 5vw, 56px); }

/* ============================================================
   TYPOGRAPHY SCALE
   ============================================================ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--ink);
}

h1 { font-size: clamp(48px, 7vw, 96px); }
h2 { font-size: clamp(36px, 5vw, 64px); }
h3 { font-size: clamp(24px, 3vw, 36px); }

.label-mono {
  font-family: var(--font-mono);
  font-size: clamp(10px, 1.1vw, 12px);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

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

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

.nav-logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav-logo:hover { text-decoration: none; }

#navLinks, .nav-pages {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
}

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

#navLinks a, .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;
}
#navLinks a:hover, .nav-pages a:hover {
  color: var(--primary);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}
#navLinks a[aria-current="page"], .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-weight: 600;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
  transition: filter 150ms;
}
.nav-cta:hover { filter: brightness(0.90); color: #fff; text-decoration: none; }
.nav-cta svg { width: 16px; height: 16px; flex-shrink: 0; }

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

@media (max-width: 899px) {
  .nav-toggle { display: flex; }

  #navLinks, .nav-pages {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--canvas);
    padding: 20px clamp(16px, 5vw, 40px);
    gap: 4px;
    border-bottom: 1px solid var(--border);
    z-index: 800;
  }
  #navLinks.open, .nav-pages.open {
    display: flex;
  }
  #navLinks a, .nav-pages a {
    font-size: 17px;
    padding: 10px 0;
    width: 100%;
  }
  .nav-cta .nav-cta-text { display: none; }
  .nav-cta { padding: 10px 14px; }
}

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

.btn-outline, .btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--ink);
  padding: 15px 27px;
  border-radius: var(--radius);
  border: 1px solid var(--ink);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: background 200ms, color 200ms, transform 200ms;
  white-space: nowrap;
}
.btn-outline:hover, .btn-ghost:hover {
  background: var(--ink);
  color: var(--canvas);
  text-decoration: none;
  transform: translateY(-1px);
}

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

.btn-cta-outline, .btn-banner-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  padding: 15px 27px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.55);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: background 200ms, border-color 200ms, transform 200ms;
  white-space: nowrap;
}
.btn-cta-outline:hover, .btn-banner-secondary:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.80);
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-svc {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  padding: 14px 24px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: filter 180ms;
  white-space: nowrap;
  margin-top: 20px;
}
.btn-svc:hover { filter: brightness(0.90); color: #fff; text-decoration: none; }
.btn-svc svg, .btn-svc-phone svg { width: 16px; height: 16px; }

.btn-svc-phone { background: var(--ink); }
.btn-svc-phone:hover { filter: brightness(1.2); }

.form-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  padding: 16px 32px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: filter 200ms;
  width: 100%;
  justify-content: center;
}
.form-submit:hover { filter: brightness(0.90); }

/* ============================================================
   ANIMATION UTILITIES
   ============================================================ */
.fade-up  { opacity: 0; transform: translateY(28px);  transition: opacity 600ms ease, transform 600ms ease; }
.fade-left { opacity: 0; transform: translateX(-28px); transition: opacity 600ms ease, transform 600ms ease; }
.fade-right { opacity: 0; transform: translateX(28px); transition: opacity 600ms ease, transform 600ms ease; }
.scale-in { opacity: 0; transform: scale(0.94);       transition: opacity 600ms ease, transform 600ms ease; }

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

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

/* ============================================================
   SEC-HEAD — UNIVERSAL SECTION HEADING BLOCK
   ============================================================ */
.sec-head {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: clamp(40px, 6vh, 72px);
}

.sec-num {
  font-family: var(--font-display);
  font-size: clamp(72px, 9vw, 120px);
  font-weight: 700;
  line-height: 0.88;
  color: var(--primary);
  letter-spacing: -0.04em;
  flex-shrink: 0;
  margin-top: -0.1em;
}

.sec-label {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sec-eyebrow {
  font-family: var(--font-mono);
  font-size: clamp(10px, 1.1vw, 12px);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.sec-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--ink);
}

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

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

.hero-inner {
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: clamp(80px, 12vh, 140px) clamp(20px, 5vw, 56px) clamp(64px, 8vh, 112px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

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

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

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

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

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

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

.trust-chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255,255,255,0.35);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  white-space: nowrap;
}

/* On light backgrounds */
.trust-strip .trust-chip,
.trust-strip-inner .trust-chip,
div.trust-strip .trust-chip {
  border-color: var(--border-strong);
  color: var(--ink);
}

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

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

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

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

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee-section, .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(--surface);
}

.marquee-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: marquee 35s linear infinite;
  width: max-content;
}

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

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

.marquee-sep {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
  margin-left: 20px;
}

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

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

.services-intro {
  font-size: clamp(15px, 1.4vw, 17px);
  color: var(--muted);
  line-height: 1.65;
  max-width: 64ch;
  margin-bottom: 36px;
}

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

.service-tab {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 10px 18px;
  border-radius: var(--radius);
  border: 1px solid var(--border-strong);
  background: var(--canvas);
  color: var(--ink);
  cursor: pointer;
  transition: background 180ms, color 180ms, border-color 180ms;
  white-space: nowrap;
}

.service-tab:hover {
  background: var(--ink);
  color: var(--canvas);
  border-color: var(--ink);
}

.service-tab.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.services-panels { position: relative; }

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

.service-panel.active { display: grid; }

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

.panel-body {
  padding: clamp(28px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.panel-index {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(72px, 9vw, 120px);
  font-weight: 700;
  line-height: 0.88;
  letter-spacing: -0.04em;
  color: var(--primary);
  opacity: 0.18;
  margin-bottom: -8px;
}

.panel-name, .panel-body h3 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.05;
}

.panel-desc {
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 48ch;
}

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

/* ============================================================
   REVIEWS
   ============================================================ */
#reviews.reviews {
  padding: var(--section-py) 0;
  background: var(--canvas);
}

.reviews-showcase {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 40px;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  max-width: 640px;
  text-decoration: none;
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}
.reviews-showcase:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.reviews-big-num {
  font-family: var(--font-display);
  font-size: clamp(64px, 8vw, 96px);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--primary);
}

.reviews-star-row {
  display: flex;
  gap: 4px;
  align-items: center;
}
.reviews-star-row svg {
  width: 22px;
  height: 22px;
  color: var(--primary);
  fill: var(--primary);
}

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

.reviews-tagline {
  font-family: var(--font-body);
  font-style: italic;
  font-size: clamp(17px, 1.8vw, 22px);
  line-height: 1.5;
  color: var(--ink);
  max-width: 48ch;
}

/* Review cards (used in other contexts) */
.review-card {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}
.review-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.review-stars svg { color: var(--primary); fill: 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; }

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

.gallery-frame {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}

.gallery-frame img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  max-height: none;
  display: block;
}

.gallery-caption {
  grid-column: 1 / -1;
  padding: 20px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

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

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

.gallery-header-row {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 56px);
  margin-bottom: 40px;
}

.gallery-title-block {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.gallery-section-numeral {
  font-family: var(--font-display);
  font-size: clamp(72px, 9vw, 120px);
  font-weight: 700;
  line-height: 0.88;
  letter-spacing: -0.04em;
  color: var(--primary);
  flex-shrink: 0;
}

.gallery-section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.gallery-section-sub {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
  margin-top: 12px;
  max-width: 52ch;
}

/* Filter pills */
.filter-pills {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 56px);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
}

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

/* Gallery grid */
.gallery-grid {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 56px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

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

.gallery-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--canvas);
  border: 1px solid var(--border);
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}
.gallery-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.gallery-card.tall .gallery-card-img-wrap { aspect-ratio: 3 / 4; }

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

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

.gallery-card-cat {
  position: absolute;
  bottom: 12px;
  right: 12px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  background: rgba(12,12,15,0.72);
  color: #fff;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  z-index: 2;
}

.gallery-card-body {
  padding: 20px;
}
.gallery-card-body h3 {
  font-size: clamp(15px, 1.5vw, 18px);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}

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

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

.gallery-card-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.gallery-meta-item { display: flex; flex-direction: column; gap: 2px; }
.meta-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.meta-value {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
}

/* ============================================================
   FAQ
   ============================================================ */
#faq.faq {
  padding: var(--section-py) 0;
  background: var(--canvas);
}

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

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

.faq-list details summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  min-height: 66px;
  font-family: var(--font-body);
  font-size: clamp(15px, 1.4vw, 17px);
  font-weight: 600;
  color: var(--ink);
  gap: 20px;
  transition: color 150ms;
}
.faq-list details summary::-webkit-details-marker { display: none; }
.faq-list details summary:hover { color: var(--primary); }

.faq-q { flex: 1; }

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

.faq-a {
  padding: 0 0 24px;
  font-size: 15px;
  line-height: 1.68;
  color: var(--muted);
  max-width: 72ch;
}

/* ============================================================
   CONTACT (INDEX)
   ============================================================ */
#contact.contact {
  padding: var(--section-py) 0;
  background: var(--surface);
}

.contact-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 56px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

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

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

.contact-grid {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 56px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

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

.contact-form-wrap {}

.contact-form-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 32px;
}

.contact-form-numeral {
  font-family: var(--font-display);
  font-size: clamp(72px, 9vw, 120px);
  font-weight: 700;
  line-height: 0.88;
  letter-spacing: -0.04em;
  color: var(--primary);
  flex-shrink: 0;
}

.contact-form-label, .contact-form-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.05;
}

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

.form-field {
  display: flex;
  flex-direction: column-reverse;
  gap: 6px;
}
.field-full { grid-column: 1 / -1; }

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

.form-input, .form-field input, .form-field textarea, .form-field select,
input#cf-name, input#cf-phone, input#cf-email, textarea#cf-message,
input#name, input#phone, input#email, textarea#message {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  background: var(--canvas);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  outline: none;
  transition: border-color 180ms;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  border-color: var(--primary);
}
.form-field input:focus + label, .form-field textarea:focus + label {
  color: var(--primary);
}
.form-textarea, .form-field textarea { min-height: 120px; resize: vertical; }

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

/* Contact info card */
.contact-info-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--border);
}

.info-card-numeral {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(72px, 9vw, 120px);
  font-weight: 700;
  line-height: 0.88;
  letter-spacing: -0.04em;
  color: var(--primary);
  margin-bottom: 20px;
}

.contact-info-card h3, .info-card-heading {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}

.info-group {
  margin-bottom: 24px;
}
.info-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.info-phone-big {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.info-phone-big a { color: var(--ink); }
.info-phone-big a:hover { color: var(--primary); text-decoration: none; }
.info-value { font-size: 15px; color: var(--ink-mid); line-height: 1.55; }
.info-value a { color: var(--ink-mid); }
.info-value a:hover { color: var(--primary); }
.info-areas {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.info-block {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.info-block:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.info-block-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.info-block a { color: var(--ink-mid); font-size: 15px; font-weight: 500; }
.info-block a:hover { color: var(--primary); text-decoration: none; }
.info-block p { font-size: 14px; line-height: 1.6; color: var(--ink-mid); }

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  margin-bottom: 4px;
}
.hours-day { color: var(--ink); font-weight: 500; }
.hours-time { color: var(--muted); }
.hours-badge {
  display: inline-block;
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  background: var(--primary);
  color: #fff;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
}

.service-area-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.area-pill {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-strong);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mid);
}

/* CTA Strip */
.cta-strip {
  padding: clamp(48px, 6vh, 80px) 0;
  background: var(--ink);
}
.cta-strip-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 56px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-strip-text { display: flex; flex-direction: column; gap: 4px; }
.cta-strip-numeral {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(64px, 8vw, 96px);
  font-weight: 700;
  line-height: 0.88;
  letter-spacing: -0.04em;
  color: var(--primary);
  opacity: 0.22;
}
.cta-strip-headline, .cta-strip-text h3 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1.05;
}
.cta-strip-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.60);
  line-height: 1.55;
  max-width: 44ch;
  margin-top: 8px;
}
.cta-strip-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* ============================================================
   PAGE HEADER (sub-pages)
   ============================================================ */
.page-header {
  min-height: clamp(260px, 38vh, 440px);
  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;
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: clamp(40px, 6vh, 72px) clamp(20px, 5vw, 56px);
}

.page-header-inner h1, .ph-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: -0.03em;
  color: #fff;
  max-width: 18ch;
}

.page-header-eyebrow, .ph-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.60);
  margin-bottom: 16px;
  display: block;
}

.page-header-numeral, .ph-numeral {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(72px, 9vw, 120px);
  font-weight: 700;
  line-height: 0.88;
  letter-spacing: -0.04em;
  color: var(--primary);
  margin-bottom: 8px;
}

.page-header-sub, .ph-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  line-height: 1.55;
  margin-top: 12px;
}

/* ============================================================
   SERVICE QUICK NAV (.sqn)
   ============================================================ */
.sqn {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.sqn::-webkit-scrollbar { display: none; }
.sqn-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 56px);
  display: flex;
  gap: 4px;
  align-items: center;
  height: 52px;
  white-space: nowrap;
}
.sqn-link {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: var(--radius);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: background 150ms, color 150ms;
  white-space: nowrap;
}
.sqn-link:hover {
  background: var(--surface-2);
  color: var(--ink);
  text-decoration: none;
}

/* ============================================================
   SERVICES DETAIL PAGE
   ============================================================ */
#services.services-detail {
  padding: clamp(48px, 6vh, 80px) 0;
  background: var(--canvas);
}

.service-block {
  padding: clamp(48px, 6vh, 80px) 0;
  border-bottom: 1px solid var(--border);
}
.service-block:last-child { border-bottom: none; }
.service-block:nth-child(even) .service-block-inner {
  direction: rtl;
}
.service-block:nth-child(even) .service-block-inner > * {
  direction: ltr;
}

.service-block-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 56px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

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

.svc-photo {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  min-height: 320px;
}
.svc-photo img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  max-height: none;
}

.svc-text {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.svc-numeral {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(72px, 9vw, 120px);
  font-weight: 700;
  line-height: 0.88;
  letter-spacing: -0.04em;
  color: var(--primary);
  opacity: 0.18;
  margin-bottom: -8px;
}

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

.svc-text h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--ink);
}

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

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

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner, section.cta-banner {
  padding: clamp(64px, 8vh, 112px) 0;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}

.cta-banner-numeral {
  position: absolute;
  right: clamp(20px, 5vw, 60px);
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: clamp(120px, 16vw, 220px);
  font-weight: 700;
  line-height: 0.88;
  letter-spacing: -0.04em;
  color: var(--primary);
  opacity: 0.08;
  pointer-events: none;
  user-select: none;
}

.cta-banner-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 56px);
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cta-banner-left, .cta-banner-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cta-banner-left { flex: 1; }

/* If using split cta-banner-left/right layout */
.cta-banner-inner:has(.cta-banner-left) {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

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

.cta-heading, .cta-banner-heading, .cta-banner-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.0;
  color: #fff;
  max-width: 16ch;
}
.cta-banner-heading em { color: var(--primary); font-style: normal; }

.cta-sub, .cta-banner-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.60);
  line-height: 1.55;
  max-width: 44ch;
}

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

.cta-phone, .cta-banner-phone {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  text-decoration: none;
}
.cta-phone:hover, .cta-banner-phone:hover {
  color: var(--primary);
  text-decoration: none;
}

/* ============================================================
   ABOUT STORY
   ============================================================ */
.about-story {
  padding: var(--section-py) 0;
  background: var(--canvas);
}
.about-story-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 56px);
}

.about-story-section-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 40px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

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

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

.about-story-portrait {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}
.about-story-portrait img {
  width: 100%;
  height: auto;
  object-fit: cover;
  max-height: 600px;
}

.portrait-caption {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 12px;
}

.about-story-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about-story-content h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.0;
}

.about-story-numeral {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(72px, 9vw, 120px);
  font-weight: 700;
  line-height: 0.88;
  letter-spacing: -0.04em;
  color: var(--primary);
  margin-bottom: -8px;
}

.about-story-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.about-story-body p {
  font-size: 15px;
  line-height: 1.68;
  color: var(--muted);
}

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

.value-card {
  padding: 20px;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}
.value-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }

.value-card-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: var(--primary);
  margin-bottom: 8px;
}

.value-card-title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
  margin-bottom: 4px;
}

.value-card-body {
  font-size: 13px;
  line-height: 1.55;
  color: var(--muted);
}

/* Journey strip */
.journey-strip {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 24px;
  border-top: 1px solid var(--border);
}

.journey-item {
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}

.journey-year {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--primary);
  flex-shrink: 0;
  min-width: 64px;
}

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

/* ============================================================
   ABOUT SECTION (2nd about on about.html)
   ============================================================ */
.about-section {
  padding: var(--section-py) 0;
  background: var(--surface);
}
.about-section-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 56px);
}
.about-section-top {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: clamp(40px, 6vh, 72px);
}
.about-section-numeral {
  font-family: var(--font-display);
  font-size: clamp(72px, 9vw, 120px);
  font-weight: 700;
  line-height: 0.88;
  letter-spacing: -0.04em;
  color: var(--primary);
  flex-shrink: 0;
}
.about-section-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.about-section-subhead {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.0;
}
.about-section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
@media (max-width: 760px) {
  .about-section-grid { grid-template-columns: 1fr; }
}
.about-section-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.about-section-body p {
  font-size: 15px;
  line-height: 1.68;
  color: var(--muted);
}
.about-section-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}
.about-section-photo {
  border-radius: var(--radius);
  overflow: hidden;
}
.about-section-photo img {
  width: 100%;
  height: auto;
  max-height: 540px;
  object-fit: cover;
}

/* ============================================================
   SERVICE AREAS
   ============================================================ */
.service-areas {
  padding: clamp(64px, 8vh, 112px) 0;
  background: var(--canvas);
  border-top: 1px solid var(--border);
}
.service-areas-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 56px);
}
.service-areas-inner h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.service-areas-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
  display: block;
}
.service-areas-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.area-chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-strong);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mid);
}

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

.footer-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 56px);
}

.footer-grid {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 56px);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(32px, 5vw, 60px);
  padding-bottom: clamp(40px, 5vh, 64px);
}

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

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

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

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

.footer-tel a, .footer-phone-link {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--primary);
  text-decoration: none;
}
.footer-tel a:hover, .footer-phone-link:hover {
  color: var(--primary-light);
  text-decoration: none;
}

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

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

.footer-address {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
}
.footer-address a { color: rgba(255,255,255,0.65); }
.footer-address a:hover { color: var(--primary); text-decoration: none; }

.footer-areas, .footer-areas-text, .footer-service-areas {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,0.45);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.10);
  padding: 24px clamp(20px, 5vw, 56px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 100%;
}

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

.footer-trust, .footer-bottom-license, .footer-badges, .footer-first-responder {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.30);
}

/* ============================================================
   MOBILE CALL PILL
   ============================================================ */
.mobile-call-pill, .mobile-cta-pill, .mobile-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 999;
  display: 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-weight: 600;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 18px 40px -10px rgba(0,0,0,0.45);
  transition: filter 200ms, transform 200ms;
}
.mobile-call-pill:hover, .mobile-cta-pill:hover, .mobile-cta:hover {
  filter: brightness(0.90);
  color: #fff;
  text-decoration: none;
  transform: scale(1.03);
}
.mobile-call-pill svg, .mobile-cta-pill svg, .mobile-cta svg,
.mobile-cta a svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.mobile-cta a {
  display: inherit;
  align-items: inherit;
  gap: inherit;
  color: inherit;
  text-decoration: none;
}
.mobile-cta-pill a {
  display: inherit;
  align-items: inherit;
  gap: inherit;
  color: inherit;
  text-decoration: none;
}

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

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

/* ============================================================
   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);
  font-family: var(--font-display);
  letter-spacing: -0.04em;
}
.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;
}

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

/* ============================================================
   MISCELLANEOUS
   ============================================================ */
.sqn svg, .btn-svc svg { width: 16px; height: 16px; }

/* Cap all inline SVGs without explicit dimensions */
svg:not([width]):not([height]) { width: 24px; height: 24px; }
.reviews-star-row svg:not([width]) { width: 22px; height: 22px; }
.faq-chevron:not([width]) { width: 20px; height: 20px; }
.gallery-card-location svg:not([width]) { width: 12px; height: 12px; }

/* Services table readable cells */
.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 table */
table { width: 100%; border-collapse: collapse; }
th, td { padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--border); }
th { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.10em; text-transform: uppercase; }

/* ============================================================
   MEDIA QUERIES
   ============================================================ */
@media (max-width: 1200px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .services-tabs { gap: 6px; }
  .cta-strip-inner { flex-direction: column; align-items: flex-start; }
  .cta-banner-inner:has(.cta-banner-left) { flex-direction: column; }
  .contact-inner { gap: 40px; }
  .gallery-frame { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .hero-trust-chips { gap: 6px; }
  .trust-chip { font-size: 9px; padding: 5px 10px; }
  .trust-strip-inner { gap: 6px; }
  .trust-pill { font-size: 9px; padding: 5px 10px; }
  .values-grid { grid-template-columns: 1fr; }
  .gallery-frame img { height: 160px; }
  .service-block-inner { gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}


/* === Validator patches (auto-applied) === */
/* validator patch: grid children without placement → span full row */
.panel-img { grid-column: 1 / -1; }
.panel-body { grid-column: 1 / -1; }
.footer-brand { grid-column: 1 / -1; }
.about-story-portrait { grid-column: 1 / -1; }
.about-story-content { grid-column: 1 / -1; }
.form-field { grid-column: 1 / -1; }
.footer-col { 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; }
