@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:       #ebebd6;
  --accent:        #ebebd6;
  --canvas:        #FFFFFF;
  --surface:       #F4F2EE;
  --ink:           #0C0C0F;
  --muted:         #6B6B6B;
  --ink-mid:       #3A3A3F;
  --border:        rgba(12,12,15,0.10);
  --border-strong: rgba(12,12,15,0.18);
  --shadow-card:   0 2px 16px rgba(12,12,15,0.07);
  --shadow-hover:  0 18px 40px -16px rgba(12,12,15,0.18);
  --radius:        4px;
  --header-height: 72px;
  --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);
  --container:     1280px;
}

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

/* ─── Reset / Base ───────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 16px);
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-weight: 450;
  color: var(--ink);
  background: var(--canvas);
  line-height: 1.65;
  -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; object-position: center 45%; z-index: 0;
}
.hero-inner, .hero > :not(img):not(.hero-bg):not(.hero-overlay) {
  position: relative; z-index: 2;
}
.hero-overlay { position: absolute; inset: 0; z-index: 1; pointer-events: none; }

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

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

/* ─── Heading link reset ─────────────────────────────────────────────────── */
h1 a, h2 a, h3 a, .hero-title a, .hero-eyebrow a, .hero-sub a {
  color: inherit; text-decoration: none; border-bottom: 0;
}

/* ─── Typography ─────────────────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--ink);
}

p { line-height: 1.65; }

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

/* ─── Layout Utilities ───────────────────────────────────────────────────── */
.container { 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); }
.section-inner { max-width: var(--container); margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); }

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

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

.top-nav {
  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; }
.nav-logo img { max-height: 44px !important; max-width: 200px !important; }

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

.nav-pages a {
  display: inline-block;
  padding: 6px 0;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  transition: color 150ms;
}
.nav-pages a:hover { color: var(--ink); text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 6px; }
.nav-pages a[aria-current="page"], .nav-pages li.active a {
  color: var(--ink);
  border-bottom: 2px solid var(--ink);
  padding-bottom: 4px;
}

.nav-cta {
  flex: 0 0 auto;
  background: var(--ink);
  color: var(--canvas);
  padding: 10px 20px;
  border-radius: var(--radius);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 150ms;
}
.nav-cta:hover { opacity: 0.82; text-decoration: none; color: var(--canvas); }

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

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-pages {
    display: none;
    position: absolute;
    top: 60px; 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;
    justify-content: flex-start;
  }
  .nav-pages.open { display: flex; }
  .nav-pages a { font-size: 14px; padding: 10px 0; }
}

/* ─── Buttons ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 28px;
  border-radius: var(--radius);
  border: none; cursor: pointer;
  text-decoration: none;
  transition: opacity 150ms, transform 150ms;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); text-decoration: none; }

.btn-primary {
  background: var(--ink);
  color: var(--canvas);
}
.btn-primary:hover { opacity: 0.85; color: var(--canvas); }

.btn-ghost, .btn-outline-white {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn-ghost:hover, .btn-outline-white:hover { background: var(--ink); color: var(--canvas); }

.btn-dark {
  background: var(--ink);
  color: var(--primary);
}
.btn-dark:hover { opacity: 0.85; color: var(--primary); }

.btn-cta-primary {
  background: var(--ink);
  color: var(--primary);
  font-family: var(--font-mono);
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 28px;
  border-radius: var(--radius);
  display: inline-flex; align-items: center; gap: 8px;
  text-decoration: none;
  transition: opacity 150ms;
}
.btn-cta-primary:hover { opacity: 0.85; text-decoration: none; color: var(--primary); }

.btn-cta-phone {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
  font-family: var(--font-mono);
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 28px;
  border-radius: var(--radius);
  display: inline-flex; align-items: center; gap: 8px;
  text-decoration: none;
  transition: background 150ms, color 150ms;
}
.btn-cta-phone:hover { background: var(--ink); color: var(--canvas); text-decoration: none; }

.btn-service {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1.5px solid var(--ink);
  padding-bottom: 2px;
  transition: opacity 150ms;
}
.btn-service:hover { opacity: 0.6; text-decoration: none; }
.btn-service svg { width: 16px; height: 16px; }

.btn-submit {
  background: var(--ink);
  color: var(--primary);
  font-family: var(--font-mono);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: var(--radius);
  border: none; cursor: pointer;
  transition: opacity 150ms;
  width: 100%;
  margin-top: 8px;
}
.btn-submit:hover { opacity: 0.85; }

/* ─── Animation Utilities ────────────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-right {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.scale-in {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-up.visible, .fade-left.visible, .fade-right.visible, .scale-in.visible {
  opacity: 1; transform: none;
}
.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; }

/* ─── Section Headers (shared) ───────────────────────────────────────────── */
.section-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;
  margin-bottom: 8px;
}

.section-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

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

.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: 12px;
  display: block;
}

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

/* ─── Hero ───────────────────────────────────────────────────────────────── */
.hero {
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  background: var(--ink);
}

.hero-overlay {
  background: linear-gradient(to bottom, rgba(12,12,15,0.45) 0%, rgba(12,12,15,0.72) 100%);
}

.hero-inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(48px, 8vh, 96px) clamp(20px, 4vw, 48px);
  padding-bottom: clamp(64px, 10vh, 120px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.hero-numeral {
  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);
  user-select: none;
  margin-bottom: 16px;
}

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(235,235,214,0.75);
  margin-bottom: 16px;
}

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

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

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

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

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

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

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

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

.trust-pill-accent, .trust-chip-accent {
  background: var(--ink);
  color: var(--primary);
  border-color: var(--ink);
}

/* ─── Marquee Band ───────────────────────────────────────────────────────── */
.marquee-band {
  overflow: hidden;
  padding: 18px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  position: relative;
  z-index: 1;
}

.marquee-track {
  display: flex;
  gap: 56px;
  white-space: nowrap;
  animation: marquee 38s linear infinite;
}

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

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

.marquee-item span::before {
  content: '';
  display: inline-block;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--primary);
  border: 1px solid var(--ink);
  vertical-align: middle;
  margin-right: 18px;
}

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

/* ─── Services (index tabs) ──────────────────────────────────────────────── */
.services {
  padding: var(--section-py) 0;
  background: var(--canvas);
}

.services-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.services-head-left {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.services-head-text h2 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.0;
}

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

.service-tab {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  background: transparent;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
  transition: background 150ms, color 150ms, border-color 150ms;
}
.service-tab:hover { background: var(--surface); color: var(--ink); }
.service-tab.active {
  background: var(--ink);
  color: var(--primary);
  border-color: var(--ink);
}

.services-panels { position: relative; }

.service-panel {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.service-panel.active { display: grid; }

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

.service-panel-body {
  padding: clamp(32px, 5vw, 56px);
  background: var(--surface);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}

.service-panel-num {
  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: 20px;
  user-select: none;
}

.service-panel-body h3 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.service-panel-body p {
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 12px;
}

.service-panel-body a { margin-top: 20px; }

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

/* ─── Guarantee ──────────────────────────────────────────────────────────── */
.guarantee {
  padding: clamp(64px, 8vh, 100px) 0;
  background: var(--ink);
}

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

.guarantee-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);
  user-select: none;
  white-space: nowrap;
}

.guarantee-divider {
  width: 1px;
  height: 80px;
  background: rgba(255,255,255,0.15);
}

.guarantee-text h2 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: var(--canvas);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.guarantee-text .label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(235,235,214,0.6);
  margin-bottom: 8px;
}

.guarantee-text .body {
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
  font-size: 17px;
}

@media (max-width: 640px) {
  .guarantee-inner { grid-template-columns: 1fr; gap: 24px; }
  .guarantee-divider { display: none; }
}

/* ─── Gallery (index) ────────────────────────────────────────────────────── */
.gallery {
  padding: var(--section-py) 0;
  background: var(--surface);
}

.gallery-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.gallery-head-left {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

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

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

.gallery-tile-overlay {
  position: absolute; inset: 0;
  background: rgba(12,12,15,0);
  display: flex; align-items: center; justify-content: center;
  transition: background 300ms;
}
.gallery-tile:hover .gallery-tile-overlay { background: rgba(12,12,15,0.35); }
.gallery-tile-overlay svg { width: 32px; height: 32px; color: var(--canvas); opacity: 0; transition: opacity 300ms; }
.gallery-tile:hover .gallery-tile-overlay svg { opacity: 1; }

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

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

/* ─── Reviews ────────────────────────────────────────────────────────────── */
.reviews {
  padding: var(--section-py) 0;
  background: var(--canvas);
}

.reviews-head {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 56px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.review-card {
  padding: 32px;
  background: var(--surface);
  border-radius: var(--radius);
  position: relative;
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}
.review-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.review-card-num {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--primary);
  margin-bottom: 16px;
  user-select: none;
}

.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}
.review-stars svg { width: 18px; height: 18px; color: var(--ink); }

.review-quote {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 20px;
}

.review-attribution { display: flex; flex-direction: column; gap: 4px; }
.review-name {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
}
.review-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.06em;
}

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

/* ─── Team CTA ───────────────────────────────────────────────────────────── */
.team-cta {
  background: var(--surface);
  padding: var(--section-py) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.team-cta-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: center;
}

.team-cta-numeral {
  font-family: var(--font-display);
  font-size: clamp(64px, 8vw, 120px);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--primary);
  margin-bottom: 20px;
  user-select: none;
}

.team-cta-text h2 {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}

.team-cta-text .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;
}

.team-cta-portrait {
  width: clamp(160px, 18vw, 260px);
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: var(--radius);
  flex-shrink: 0;
}
.team-cta-portrait img {
  width: 100%; height: 100%;
  object-fit: cover;
  max-height: none !important;
  position: absolute; inset: 0;
}

@media (max-width: 640px) {
  .team-cta-inner { grid-template-columns: 1fr; }
  .team-cta-portrait { width: 100%; aspect-ratio: 16 / 9; position: relative; }
}

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

.faq-head {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 48px;
}

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

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

.faq-list details summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  font-family: var(--font-display);
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  gap: 20px;
}
.faq-list details summary::-webkit-details-marker { display: none; }

.faq-chevron {
  width: 20px; height: 20px;
  flex-shrink: 0;
  transition: transform 250ms;
  color: var(--ink);
}
.faq-list details[open] .faq-chevron {
  transform: rotate(45deg);
  color: var(--ink);
}

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

/* ─── Contact (index) ────────────────────────────────────────────────────── */
.contact {
  padding: var(--section-py) 0;
  background: var(--surface);
}

.contact-inner {
  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;
}

.contact-left h2 {
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 32px;
}

.contact-right { position: sticky; top: calc(var(--header-height) + 32px); }

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

.contact-info-item h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

.contact-info-item a {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
}
.contact-info-item a:hover { text-decoration: underline; }

.contact-hours-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 14px;
  color: var(--muted);
  padding: 4px 0;
  border-bottom: 1px solid var(--border);
}

/* ─── Contact Form ───────────────────────────────────────────────────────── */
.contact-form { display: flex; flex-direction: column; gap: 16px; margin-top: 24px; }

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

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

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

.form-field input, .form-field textarea,
.form-group input, .form-group textarea, .form-group select {
  padding: 12px 16px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  background: var(--canvas);
  outline: none;
  transition: border-color 150ms;
}
.form-field input:focus, .form-field textarea:focus,
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--ink);
}
.form-field textarea, .form-group textarea { resize: vertical; min-height: 120px; }

.guarantee-note {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--muted);
  text-align: center;
  padding-top: 8px;
}

@media (max-width: 900px) {
  .contact-inner { grid-template-columns: 1fr; }
  .contact-right { position: static; }
  .form-row { grid-template-columns: 1fr; }
}

/* ─── Contact Page ───────────────────────────────────────────────────────── */
.contact-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: var(--section-py) clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}

.contact-form-side { display: flex; flex-direction: column; }

.contact-headline {
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.0;
  margin-bottom: 12px;
  margin-top: 8px;
}

.contact-sub {
  font-size: 17px;
  color: var(--muted);
  margin-bottom: 32px;
  line-height: 1.6;
}

.contact-info-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 48px);
  position: sticky;
  top: calc(var(--header-height) + 32px);
}

.info-card-numeral {
  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: 24px;
  user-select: none;
}

.info-section {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.info-section:last-child { border-bottom: none; }

.info-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.info-value {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 600;
  color: var(--ink);
}

.phone-big a {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-decoration: none;
}
.phone-big a:hover { text-decoration: underline; }

.info-value-small {
  font-size: 15px;
  color: var(--ink);
  line-height: 1.6;
}
.info-value-small a { color: var(--ink); }
.info-value-small a:hover { text-decoration: underline; }

.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 16px;
  font-size: 14px;
}
.hours-day { color: var(--muted); }
.hours-time { color: var(--ink); font-weight: 500; }
.hours-row { display: contents; }

.service-area-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.service-chip {
  display: inline-flex;
  padding: 4px 12px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

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

/* ─── Contact Strip ──────────────────────────────────────────────────────── */
.contact-strip {
  background: var(--ink);
  padding: clamp(40px, 6vh, 64px) 0;
}

.contact-strip-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.contact-strip-item-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(235,235,214,0.5);
  margin-bottom: 10px;
}

.contact-strip-item-value {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 600;
  color: var(--canvas);
}
.contact-strip-item-value a { color: var(--canvas); }
.contact-strip-item-value a:hover { text-decoration: underline; color: var(--primary); }

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

/* ─── CTA Banner ─────────────────────────────────────────────────────────── */
.cta-banner {
  background: var(--ink);
  padding: var(--section-py) 0;
}

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

.cta-banner-numeral {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(64px, 8vw, 120px);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--primary);
  margin-bottom: 16px;
  user-select: none;
}

.cta-banner-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(235,235,214,0.6);
  margin-bottom: 8px;
  display: block;
}

.cta-banner-headline {
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--canvas);
  margin-bottom: 16px;
}

.cta-banner-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(235,235,214,0.6);
  margin-bottom: 12px;
  display: block;
}

.cta-banner-sub {
  color: rgba(255,255,255,0.65);
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 52ch;
}

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

.cta-banner-actions .btn-ghost {
  background: transparent;
  color: var(--canvas);
  border-color: rgba(255,255,255,0.35);
}
.cta-banner-actions .btn-ghost:hover { background: rgba(255,255,255,0.1); }

.cta-banner-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.cta-phone-big {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.02em;
  text-decoration: none;
}

.cta-phone-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(235,235,214,0.55);
  margin-bottom: 8px;
}

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

/* ─── Page Header ────────────────────────────────────────────────────────── */
.page-header {
  min-height: clamp(320px, 42vh, 560px);
  display: flex;
  align-items: flex-end;
  background: var(--ink);
  max-height: 64vh;
}

.page-header-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to bottom, 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;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(40px, 6vh, 72px) clamp(20px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.page-header-numeral {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(64px, 8vw, 120px);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--primary);
  user-select: none;
  position: absolute;
  right: clamp(20px, 4vw, 48px);
  bottom: clamp(40px, 6vh, 72px);
  z-index: 2;
}

.page-header-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(235,235,214,0.7);
}

.page-header-title, .page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 88px);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: -0.03em;
  color: var(--canvas);
  max-width: 16ch;
}

.page-header-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  max-width: 52ch;
  line-height: 1.6;
  margin-top: 8px;
}

.page-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(235,235,214,0.7);
}

/* ─── Services Detail Page ───────────────────────────────────────────────── */
.services-detail {
  padding: var(--section-py) 0;
  background: var(--canvas);
}

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

.services-intro-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);
  user-select: none;
}

.services-intro-right h2 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--ink);
}

.services-intro-right p {
  color: var(--muted);
  font-size: 17px;
  margin-top: 12px;
  max-width: 60ch;
  line-height: 1.65;
}

.service-block {
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(48px, 6vh, 80px) clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--border);
}

.service-block:nth-child(even) { direction: rtl; }
.service-block:nth-child(even) > * { direction: ltr; }

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

.service-block-index {
  position: absolute;
  top: 16px; left: 16px;
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--primary);
  line-height: 1;
  user-select: none;
  z-index: 2;
  text-shadow: 0 2px 8px rgba(12,12,15,0.3);
}

.service-block-content {
  padding: clamp(32px, 5vw, 56px);
  background: var(--surface);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-numeral {
  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: 16px;
  user-select: none;
}

.service-block-content h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.service-block-content p {
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

.service-bullets {
  list-style: none;
  padding: 0; margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-bullets li {
  padding-left: 20px;
  position: relative;
  font-size: 15px;
  color: var(--ink-mid);
  line-height: 1.55;
}
.service-bullets li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--primary);
  border: 1px solid var(--ink);
}

@media (max-width: 900px) {
  .service-block { grid-template-columns: 1fr; direction: ltr !important; }
  .service-block > * { direction: ltr !important; }
  .service-block-photo { min-height: 260px; }
  .services-intro { grid-template-columns: 1fr; }
}

/* ─── About Story ────────────────────────────────────────────────────────── */
.about-story {
  padding: var(--section-py) 0;
  background: var(--canvas);
}

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

.about-portrait-col { position: sticky; top: calc(var(--header-height) + 24px); }

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

.about-portrait-numeral {
  position: absolute;
  bottom: 16px; right: 16px;
  font-family: var(--font-display);
  font-size: clamp(56px, 7vw, 88px);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--primary);
  line-height: 0.9;
  user-select: none;
  z-index: 2;
}

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

.about-story-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
  display: block;
}

.about-story-headline {
  font-size: clamp(32px, 4.5vw, 60px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin-bottom: 28px;
}

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

.about-guarantee {
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 36px;
}

.about-guarantee-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}

.about-guarantee-text {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.about-values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.about-value-item {
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
}

.about-value-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--primary);
  line-height: 0.9;
  margin-bottom: 10px;
  user-select: none;
}

.about-value-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}

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

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

/* ─── Gallery Full Page ──────────────────────────────────────────────────── */
.gallery-full {
  padding: var(--section-py) 0;
  background: var(--canvas);
}

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

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

.gallery-section-title {
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--ink);
}

.gallery-count {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  flex-shrink: 0;
  padding-bottom: 4px;
}

.filter-bar {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}

.filter-pill {
  display: inline-flex;
  padding: 8px 18px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  transition: background 150ms, color 150ms;
}
.filter-pill:hover, .filter-pill.active {
  background: var(--ink);
  color: var(--primary);
  border-color: var(--ink);
}

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

.project-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  border: 1px solid var(--border);
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: hidden;
}
.project-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.project-card-featured {
  grid-column: span 2;
  background: var(--ink);
  color: var(--canvas);
}
.project-card-featured h3, .project-card-featured p { color: var(--canvas); }
.project-card-featured .project-cat-tag { border-color: rgba(255,255,255,0.3); color: rgba(255,255,255,0.7); }
.project-card-featured .project-meta-label { color: rgba(235,235,214,0.55); }
.project-card-featured .project-meta-val { color: var(--primary); }

.project-card-tall { grid-row: span 2; }

.project-card-accent {
  background: var(--primary);
  border-color: transparent;
}

.project-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.project-cat-tag {
  display: inline-flex;
  padding: 4px 12px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--muted);
}

.project-location {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.06em;
}
.project-location svg { width: 12px; height: 12px; }

.project-card h3 {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

.project-card > p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

.project-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.project-meta-item { display: flex; flex-direction: column; gap: 2px; }
.project-meta-val {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.project-meta-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--muted);
}

.project-card-numeral {
  position: absolute;
  bottom: 16px; right: 20px;
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--primary);
  user-select: none;
  opacity: 0.6;
}

.project-card-accent .project-card-numeral { color: var(--ink); opacity: 0.18; }
.project-card-featured .project-card-numeral { color: var(--primary); opacity: 0.35; }

@media (max-width: 900px) {
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .project-card-featured { grid-column: span 2; }
  .project-card-tall { grid-row: auto; }
}
@media (max-width: 640px) {
  .projects-grid { grid-template-columns: 1fr; }
  .project-card-featured { grid-column: auto; }
}

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

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

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: clamp(48px, 6vh, 72px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-cols {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: clamp(48px, 6vh, 72px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand img, .footer-brand-logo img {
  max-height: 40px !important;
  filter: brightness(0) invert(1);
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  margin-bottom: 20px;
}

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

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

.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(235,235,214,0.45);
  margin-bottom: 16px;
  font-family: var(--font-mono);
}

.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 14px; color: rgba(255,255,255,0.6); text-decoration: none; }
.footer-col ul a:hover { color: var(--primary); }

.footer-hours-list { display: flex; flex-direction: column; gap: 6px; }
.footer-hours-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  padding: 3px 0;
}
.footer-hours-day { color: rgba(255,255,255,0.45); }
.footer-hours-time { color: rgba(255,255,255,0.65); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  gap: 16px;
  flex-wrap: wrap;
}

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

.footer-address {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  font-style: normal;
  line-height: 1.6;
}
.footer-address a { color: rgba(255,255,255,0.65); }

.footer-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.5);
}

.footer-rating-stars {
  display: flex;
  gap: 2px;
}
.footer-rating-stars svg { width: 14px; height: 14px; color: var(--primary); }
.footer-rating-text { color: rgba(255,255,255,0.5); }

.footer-phone, .footer-phone-link {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--canvas);
  text-decoration: none;
}
.footer-phone-link:hover { color: var(--primary); }

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

.footer-socials { display: flex; gap: 12px; margin-top: 16px; }
.footer-social-link {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: border-color 150ms, color 150ms;
}
.footer-social-link:hover { border-color: var(--primary); color: var(--primary); }
.footer-social-link svg { width: 16px; height: 16px; }

@media (max-width: 900px) {
  .footer-grid, .footer-cols { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}
@media (max-width: 640px) {
  .footer-grid, .footer-cols { grid-template-columns: 1fr; }
}

/* ─── Mobile CTA Pill ────────────────────────────────────────────────────── */
.mobile-call-pill, .mobile-call, .mobile-cta, .mobile-sticky-cta {
  position: fixed;
  bottom: 18px; right: 18px;
  z-index: 999;
  display: flex;
  align-items: center;
}

.mobile-call-pill a,
.mobile-call > a,
.mobile-cta > a,
.mobile-sticky-cta > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: var(--primary);
  padding: 14px 22px;
  border-radius: 999px;
  box-shadow: 0 18px 40px -10px rgba(0,0,0,0.45);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 150ms, box-shadow 150ms;
}
.mobile-call-pill a:hover,
.mobile-call > a:hover,
.mobile-cta > a:hover,
.mobile-sticky-cta > a:hover {
  transform: scale(1.04);
  text-decoration: none;
  color: var(--primary);
}

.mobile-call-pill svg,
.mobile-call svg,
.mobile-cta svg,
.mobile-sticky-cta svg {
  width: 18px; height: 18px;
}

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

/* ─── Scroll Progress ────────────────────────────────────────────────────── */
#scrollBar.scroll-bar {
  position: fixed; top: 0; left: 0;
  height: 3px; width: 0%;
  background: var(--ink);
  z-index: 9999;
  transition: width 60ms linear;
}

/* ─── FAQs ───────────────────────────────────────────────────────────────── */
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(--ink); }
details.faq p { margin-top: 12px; line-height: 1.6; }

/* ─── Misc ───────────────────────────────────────────────────────────────── */
svg { flex-shrink: 0; }

/* Cap any stray unsized SVGs */
.nav-pages svg, .hero-ctas svg, .btn svg, .faq-chevron,
.gallery-tile-overlay svg, .review-stars svg,
.footer-social-link svg, .project-location svg,
.btn-service svg, .mobile-call-pill svg { width: 18px; height: 18px; }
.faq-chevron { width: 20px; height: 20px; }
.review-stars svg { width: 18px; height: 18px; }

/* ─── Responsive misc ────────────────────────────────────────────────────── */
@media (max-width: 640px) {
  .hero-ctas { flex-direction: column; }
  .hero-ctas a { width: 100%; justify-content: center; }
  .hero { min-height: 100svh; }
  .form-row { grid-template-columns: 1fr; }
  .cta-banner-inner { grid-template-columns: 1fr; }
}


/* === Validator patches (auto-applied) === */
/* validator patch: grid children without placement → span full row */
.guarantee-numeral { grid-column: 1 / -1; }
.guarantee-divider { grid-column: 1 / -1; }
.guarantee-text { grid-column: 1 / -1; }
.gallery-tile { grid-column: 1 / -1; }
.review-card { grid-column: 1 / -1; }
.team-cta-left { grid-column: 1 / -1; }
.contact-left { grid-column: 1 / -1; }
.form-field { grid-column: 1 / -1; }
.footer-brand { grid-column: 1 / -1; }
.services-intro-left { grid-column: 1 / -1; }
.services-intro-right { grid-column: 1 / -1; }
.service-block-photo { grid-column: 1 / -1; }
.service-block-content { grid-column: 1 / -1; }
.cta-banner-actions { grid-column: 1 / -1; }
.footer-col { grid-column: 1 / -1; }
.about-story-col { grid-column: 1 / -1; }
.hours-row { grid-column: 1 / -1; }
.form-group { grid-column: 1 / -1; }
.hours-day { grid-column: 1 / -1; }
.hours-time { 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; }
