/* Crosscut Construction — site styles */

:root {
  --bg: #0d0d0e;
  --bg-2: #141416;
  --bg-3: #1c1c1f;
  --line: #2a2a2e;
  --line-2: #3a3a3f;
  --paper: #efe9dc;
  --paper-2: #d9d2c1;
  --ink: #f3efe4;
  --ink-mute: #b5b0a3;
  --ink-dim: #807c72;
  --steel: #c5c8cd;
  --steel-dark: #5a5e64;

  /* Accent — blueprint blue */
  --accent: #3b6ea5;
  --accent-soft: #6d97c4;
  --accent-deep: #20446e;
  --accent-ink: #ffffff;       /* text color on accent fill */

  --timber: #c2935f;
  --timber-deep: #6e4a26;
  --brick: #a64431;

  --shadow-1: 0 1px 0 rgba(255,255,255,0.04) inset, 0 30px 60px -30px rgba(0,0,0,0.6);
  --radius: 4px;

  --display: 'Big Shoulders Display', 'Oswald', 'Arial Narrow', sans-serif;
  --sans: 'Manrope', system-ui, sans-serif;
  --mono: 'JetBrains Mono', 'Menlo', monospace;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
html { scroll-behavior: smooth; }
section[id] { scroll-margin-top: 88px; }

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
img { display: block; max-width: 100%; }

/* ----- Type ----- */
.display {
  font-family: var(--display);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.mono {
  font-family: var(--mono);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 12px;
}
.kicker {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11px;
  color: var(--ink-mute);
}

/* ----- Layout primitives ----- */
.wrap {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
}
.row { display: flex; }
.col { display: flex; flex-direction: column; }

/* ----- Header ----- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(13,13,14,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 76px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.brand img {
  height: 52px;
  width: auto;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.5));
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-text .name {
  font-family: var(--display);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
.brand-text .tag {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  color: var(--ink-dim);
  margin-top: 4px;
  text-transform: uppercase;
}
.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}
.nav a {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  transition: color 0.15s;
}
.nav a:hover, .nav a.active { color: var(--ink); }
.nav .nav-cta {
  background: var(--accent);
  color: var(--accent-ink);
  padding: 12px 18px;
  border-radius: 2px;
  letter-spacing: 0.12em;
  font-weight: 600;
}
.nav .nav-cta:hover { background: var(--accent-soft); color: var(--accent-ink); }

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 22px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--accent-ink);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 2px;
  transition: transform 0.15s, background 0.15s;
}
.btn:hover { background: var(--accent-soft); border-color: var(--accent-soft); color: var(--accent-ink); transform: translateY(-1px); }
.btn--ghost {
  background: transparent;
  border-color: var(--line-2);
  color: var(--ink);
}
.btn--ghost:hover { background: var(--bg-2); border-color: var(--accent); }
.btn--big {
  padding: 22px 28px;
  font-size: 14px;
}
.btn .num {
  font-family: var(--display);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.02em;
  text-transform: none;
}

/* ----- Section frame ----- */
section { position: relative; }
.section-pad {
  padding: 96px 0;
}
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 56px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 24px;
}
.section-head .left { max-width: 760px; }
.section-head h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 0.92;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 12px 0 0;
}
.section-head .meta {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-dim);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ----- HERO COMMON ----- */
.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

/* Blueprint grid background */
.bp-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

/* ----- HERO VARIANT A — Plate ----- */
.hero-a {
  padding: 64px 0 0;
}
.hero-a-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: stretch;
  min-height: 640px;
}
.hero-a-left { padding: 32px 0 80px; }
.hero-a-left .eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 36px;
}
.hero-a-left .eyebrow .bar {
  width: 56px;
  height: 1px;
  background: var(--accent);
}
.hero-a-left h1 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(60px, 8.5vw, 132px);
  line-height: 0.86;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0 0 28px;
}
.hero-a-left h1 .accent-word {
  color: var(--accent);
  font-style: italic;
}
.hero-a-left .lede {
  font-size: 19px;
  color: var(--ink-mute);
  max-width: 520px;
  line-height: 1.5;
  margin-bottom: 40px;
}
.hero-a-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 56px;
}
.hero-a-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  padding-top: 22px;
  max-width: 560px;
}
.hero-a-stats .stat .v {
  font-family: var(--display);
  font-weight: 800;
  font-size: 36px;
  line-height: 1;
}
.hero-a-stats .stat .l {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--ink-dim);
  text-transform: uppercase;
  margin-top: 6px;
}

.hero-a-right {
  position: relative;
  display: flex;
  align-items: stretch;
}
.hero-photo {
  position: relative;
  width: 100%;
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  overflow: hidden;
}
.hero-a-right .hero-photo { margin-bottom: -1px; }
.hero-a-right .corner {
  position: absolute;
  width: 22px;
  height: 22px;
  border: 1px solid var(--accent);
}
.hero-a-right .corner.tl { top: -1px; left: -1px; border-right: 0; border-bottom: 0; }
.hero-a-right .corner.tr { top: -1px; right: -1px; border-left: 0; border-bottom: 0; }
.hero-a-right .corner.bl { bottom: -1px; left: -1px; border-right: 0; border-top: 0; }
.hero-a-right .corner.br { bottom: -1px; right: -1px; border-left: 0; border-top: 0; }
.hero-a-right .annotation {
  position: absolute;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--accent-soft);
  text-transform: uppercase;
}
.hero-a-right .annotation.top {
  top: 14px; left: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-a-right .annotation.bot {
  bottom: 14px; left: 16px;
  background: rgba(13,13,14,0.7);
  padding: 6px 10px;
}
.hero-a-right .dim-h {
  position: absolute;
  top: 50%;
  right: -32px;
  transform: rotate(90deg) translateX(-50%);
  font-family: var(--mono);
  font-size: 10px;
  color: var(--ink-dim);
  letter-spacing: 0.18em;
}

/* ----- HERO VARIANT B — Full bleed ----- */
.hero-b {
  min-height: 760px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 0;
}
.hero-b-photo {
  position: absolute;
  inset: 0;
  background: var(--bg-2);
  z-index: 0;
}
.hero-b-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,13,14,0.65) 0%, rgba(13,13,14,0.35) 30%, rgba(13,13,14,0.92) 100%);
}
.hero-b .bp-grid { z-index: 1; opacity: 0.6; }
.hero-b-content {
  position: relative;
  z-index: 2;
  padding: 140px 0 56px;
}
.hero-b-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 120px;
}
.hero-b-top .badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-b-top .badge {
  border: 1px solid var(--line-2);
  padding: 8px 12px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  background: rgba(13,13,14,0.5);
  backdrop-filter: blur(8px);
}
.hero-b-top .coords {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--ink-mute);
  text-transform: uppercase;
  text-align: right;
  line-height: 1.7;
}
.hero-b h1 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(64px, 11vw, 180px);
  line-height: 0.84;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0 0 36px;
  max-width: 1100px;
}
.hero-b h1 .accent-word {
  color: var(--accent);
}
.hero-b h1 .outline-word {
  -webkit-text-stroke: 1.5px var(--ink);
  color: transparent;
}
.hero-b-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  margin-top: 48px;
}
.hero-b-bottom .lede {
  max-width: 460px;
  color: var(--ink-mute);
  font-size: 17px;
}
.hero-b-bottom .right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}
.hero-b-bottom .right .call {
  font-family: var(--display);
  font-weight: 800;
  font-size: 44px;
  letter-spacing: 0.01em;
}
.hero-b-bottom .right .call:hover { color: var(--accent); }
.hero-b-bottom .right .meta {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--ink-dim);
  text-transform: uppercase;
}

/* ----- Marquee ----- */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
  overflow: hidden;
  white-space: nowrap;
  padding: 22px 0;
}
.marquee-track {
  display: inline-flex;
  gap: 64px;
  animation: marquee 38s linear infinite;
}
.marquee-track > span {
  font-family: var(--display);
  font-weight: 800;
  font-size: 28px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ink-mute);
  display: inline-flex;
  align-items: center;
  gap: 64px;
}
.marquee-track > span::after {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--accent);
  display: inline-block;
  transform: rotate(45deg);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ----- Services ----- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--line);
}
.service-card {
  padding: 36px 28px 40px;
  border-right: 1px solid var(--line);
  position: relative;
  background: var(--bg);
  transition: background 0.2s;
  min-height: 380px;
  display: flex;
  flex-direction: column;
}
.service-card:last-child { border-right: 0; }
.service-card:nth-child(n+5) { border-top: 1px solid var(--line); }
.service-card:hover { background: var(--bg-2); }
.service-card .num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--accent);
  text-transform: uppercase;
}
.service-card h3 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 36px;
  line-height: 0.95;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  margin: 18px 0 16px;
}
.service-card p {
  color: var(--ink-mute);
  font-size: 15px;
  line-height: 1.55;
  margin: 0 0 24px;
}
.service-card ul {
  list-style: none;
  padding: 0;
  margin: auto 0 0;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  display: grid;
  gap: 6px;
}
.service-card li {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  color: var(--ink-mute);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-card li::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--accent);
  display: block;
  flex-shrink: 0;
}

/* Diagonal saw-tooth divider */
.sawtooth {
  height: 16px;
  background:
    linear-gradient(135deg, var(--bg) 25%, transparent 25%) 0 0/16px 16px,
    linear-gradient(225deg, var(--bg) 25%, transparent 25%) 0 0/16px 16px;
  background-color: var(--accent);
  position: relative;
}

/* ----- Process ----- */
.process {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 24px;
}
.process-step {
  position: relative;
  padding-top: 32px;
  border-top: 1px solid var(--accent);
}
.process-step .step-num {
  position: absolute;
  top: -16px;
  left: 0;
  background: var(--bg-2);
  padding-right: 12px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--accent);
}
.process-step h4 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 26px;
  text-transform: uppercase;
  margin: 0 0 12px;
  line-height: 1;
}
.process-step p {
  color: var(--ink-mute);
  font-size: 14.5px;
  line-height: 1.55;
  margin: 0;
}

/* ----- About / Owner ----- */
.about {
  background: var(--paper);
  color: #1a1814;
}
.about .wrap { position: relative; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: stretch;
}
.about-photo {
  background: var(--paper-2);
  position: relative;
  border: 1px solid rgba(0,0,0,0.12);
  min-height: 520px;
  overflow: hidden;
}
.about-content { padding: 16px 0; display: flex; flex-direction: column; }
.about .kicker { color: var(--accent-deep); }
.about h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 0.95;
  text-transform: uppercase;
  margin: 12px 0 28px;
  color: #1a1814;
}
.about p {
  font-size: 17px;
  line-height: 1.65;
  color: #2a2620;
  margin: 0 0 18px;
  max-width: 560px;
}
.about .sig {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  gap: 16px;
}
.about .sig .who {
  font-family: var(--display);
  font-weight: 800;
  font-size: 24px;
  text-transform: uppercase;
  line-height: 1;
}
.about .sig .role {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #5a554c;
  margin-top: 4px;
}

/* ----- Trust strip ----- */
.trust {
  background: var(--bg);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.trust-item {
  padding: 36px 28px;
  border-right: 1px solid var(--line);
  text-align: left;
}
.trust-item:last-child { border-right: 0; }
.trust-item .v {
  font-family: var(--display);
  font-weight: 800;
  font-size: 48px;
  line-height: 1;
  color: var(--ink);
}
.trust-item .v .unit { color: var(--accent); }
.trust-item .l {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  color: var(--ink-mute);
  text-transform: uppercase;
  margin-top: 10px;
}

/* ----- Gallery ----- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 280px;
  gap: 12px;
}
.gallery-item {
  background: var(--bg-2);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.gallery-item .photo-placeholder--has-img img {
  transition: transform 0.35s ease;
}
.gallery-item:hover .photo-placeholder--has-img img {
  transform: scale(1.04);
}
.gallery-item .tag {
  position: absolute;
  bottom: 12px;
  left: 12px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--ink);
  background: rgba(13,13,14,0.7);
  padding: 6px 10px;
  text-transform: uppercase;
}

/* ----- Gallery modal ----- */
.gallery-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0,0,0,0.93);
  align-items: center;
  justify-content: center;
}
.gallery-modal.is-open { display: flex; }
.gallery-modal__img-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-modal__img-wrap img {
  max-width: 88vw;
  max-height: 86vh;
  object-fit: contain;
  display: block;
  border: 1px solid var(--line-2);
}
.gallery-modal__caption {
  position: absolute;
  bottom: 12px;
  left: 12px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--ink);
  background: rgba(13,13,14,0.75);
  padding: 6px 10px;
  text-transform: uppercase;
  pointer-events: none;
}
.gallery-modal__close {
  position: fixed;
  top: 20px;
  right: 20px;
  background: rgba(13,13,14,0.7);
  border: 1px solid var(--line-2);
  color: var(--ink);
  font-size: 22px;
  line-height: 1;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 201;
  transition: background 0.15s, border-color 0.15s;
}
.gallery-modal__close:hover { background: var(--bg-3); border-color: var(--accent); }
.gallery-modal__prev,
.gallery-modal__next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(13,13,14,0.7);
  border: 1px solid var(--line-2);
  color: var(--ink);
  font-size: 20px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 201;
  transition: background 0.15s, border-color 0.15s;
  font-family: var(--mono);
}
.gallery-modal__prev:hover,
.gallery-modal__next:hover { background: var(--bg-3); border-color: var(--accent); }
.gallery-modal__prev { left: 20px; }
.gallery-modal__next { right: 20px; }
.gallery-modal__counter {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--ink-dim);
  text-transform: uppercase;
  z-index: 201;
}

/* ----- Areas teaser ----- */
.areas {
  background: var(--bg);
}
.areas-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.area-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  transition: background 0.15s;
}
.area-row:hover { background: var(--bg-2); }
.area-row:nth-child(3n) { border-right: 0; }
.area-row .city {
  font-family: var(--display);
  font-weight: 800;
  font-size: 22px;
  text-transform: uppercase;
}
.area-row .miles {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  color: var(--ink-dim);
  text-transform: uppercase;
}

/* ----- Reviews ----- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.review {
  border: 1px solid var(--line);
  padding: 36px 32px;
  background: var(--bg-2);
  position: relative;
}
.review .quote-mark {
  font-family: var(--display);
  font-weight: 800;
  font-size: 84px;
  line-height: 0.6;
  color: var(--accent);
  position: absolute;
  top: 24px;
  right: 28px;
}
.review .stars {
  color: var(--accent);
  font-family: var(--mono);
  letter-spacing: 0.2em;
  font-size: 14px;
  margin-bottom: 14px;
}
.review blockquote {
  margin: 0 0 24px;
  font-size: 18px;
  line-height: 1.5;
  font-style: italic;
  color: var(--ink);
  max-width: 90%;
}
.review .who {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.review .who .name {
  font-family: var(--display);
  font-weight: 800;
  font-size: 18px;
  text-transform: uppercase;
}
.review .who .where {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--ink-dim);
  text-transform: uppercase;
}

/* ----- CTA banner ----- */
.cta-banner {
  background: var(--bg);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.cta-banner .bp-grid { opacity: 0.4; }
.cta-banner .wrap { position: relative; z-index: 1; }
.cta-banner .inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 80px 0;
}
.cta-banner h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(40px, 6vw, 84px);
  line-height: 0.92;
  text-transform: uppercase;
  margin: 0 0 16px;
}
.cta-banner h2 .accent-word { color: var(--accent); }
.cta-banner p {
  color: var(--ink-mute);
  font-size: 17px;
  max-width: 480px;
  margin: 0;
}
.cta-banner .call-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}
.cta-banner .call-block .label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.cta-banner .call-block .phone {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(48px, 6.5vw, 80px);
  line-height: 0.95;
  letter-spacing: 0.01em;
  display: block;
  margin-bottom: 16px;
}
.cta-banner .call-block .phone:hover { color: var(--accent); }
.cta-banner .call-block .hours {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  color: var(--ink-mute);
  text-transform: uppercase;
}

/* ----- Footer ----- */
.site-footer {
  background: #08080a;
  color: var(--ink-mute);
  border-top: 1px solid var(--line);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand img { height: 72px; margin-bottom: 16px; }
.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 14px;
  max-width: 360px;
}
.footer-col h5 {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--ink);
  text-transform: uppercase;
  margin: 12px 0 18px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-col li { font-size: 14px; }
.footer-col a:hover { color: var(--ink); }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  color: var(--ink-dim);
  text-transform: uppercase;
}

/* ----- Photo placeholder ----- */
.photo-placeholder {
  position: relative;
  width: 100%;
  height: 100%;
  background:
    repeating-linear-gradient(
      45deg,
      rgba(255,255,255,0.025),
      rgba(255,255,255,0.025) 8px,
      transparent 8px,
      transparent 16px
    ),
    var(--bg-2);
  border: 1px dashed var(--line-2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-dim);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
  padding: 16px;
  min-height: 100%;
}
.photo-placeholder .ph-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.photo-placeholder .ph-icon {
  width: 24px;
  height: 24px;
  border: 1px solid currentColor;
  position: relative;
}
.photo-placeholder .ph-icon::after {
  content: '';
  position: absolute;
  inset: 4px;
  border: 1px solid currentColor;
  border-style: dashed;
}

/* Real-image variant — render an <img> instead of the dashed placeholder */
.photo-placeholder--has-img {
  background: var(--bg-2);
  border: 0;
  padding: 0;
  overflow: hidden;
}
.photo-placeholder--has-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about .photo-placeholder {
  background:
    repeating-linear-gradient(
      45deg,
      rgba(0,0,0,0.04),
      rgba(0,0,0,0.04) 8px,
      transparent 8px,
      transparent 16px
    ),
    var(--paper-2);
  color: #5a554c;
  border-color: rgba(0,0,0,0.18);
}

/* ----- Service Areas Page ----- */
.areas-hero {
  padding: 120px 0 64px;
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.areas-hero h1 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(56px, 9vw, 132px);
  line-height: 0.88;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 24px 0 28px;
  max-width: 1200px;
}
.areas-hero h1 .accent-word { color: var(--accent); }
.areas-hero .lede {
  font-size: 19px;
  color: var(--ink-mute);
  max-width: 720px;
  line-height: 1.55;
}
.areas-hero .crumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--ink-dim);
  text-transform: uppercase;
  margin-bottom: 0;
}
.areas-hero .crumbs a:hover { color: var(--ink); }

.areas-map-strip {
  background: var(--bg-2);
  border-bottom: 1px solid var(--line);
  padding: 32px 0;
}
.areas-map-strip .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.areas-map-strip .pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.areas-map-strip .pill {
  border: 1px solid var(--line-2);
  padding: 8px 14px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--ink-mute);
  text-transform: uppercase;
  transition: all 0.15s;
}
.areas-map-strip .pill:hover {
  color: var(--ink);
  border-color: var(--accent);
}

.city-section {
  border-bottom: 1px solid var(--line);
  padding: 80px 0;
}
.city-section:nth-child(even) {
  background: var(--bg-2);
}
.city-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.city-meta .pinmark {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.city-meta .pinmark::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-block;
}
.city-meta h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 0.92;
  text-transform: uppercase;
  margin: 0 0 24px;
}
.city-meta .stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
  margin-top: 24px;
}
.city-meta .stats .stat {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.city-meta .stats .stat:nth-child(odd) { padding-right: 16px; }
.city-meta .stats .stat:nth-child(even) {
  padding-left: 16px;
  border-left: 1px solid var(--line);
}
.city-meta .stats .l {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--ink-dim);
  text-transform: uppercase;
}
.city-meta .stats .v {
  font-family: var(--display);
  font-weight: 800;
  font-size: 22px;
  margin-top: 4px;
  line-height: 1;
}
.city-body p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  margin: 0 0 18px;
}
.city-body .neighborhoods {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.city-body .neighborhoods h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--accent);
  text-transform: uppercase;
  margin: 0 0 12px;
}
.city-body .neighborhoods .list {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--ink-mute);
  line-height: 1.8;
}
.city-body .services-mini {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.city-body .service-tag {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  color: var(--ink);
  text-transform: uppercase;
  border: 1px solid var(--accent);
  padding: 7px 12px;
}

/* ----- Mobile menu button ----- */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--line-2);
  border-radius: 2px;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}
.mobile-menu-btn span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.2s, opacity 0.2s;
}
.mobile-menu-btn.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.mobile-menu-btn.is-open span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ----- Mobile nav panel ----- */
.mobile-nav {
  display: none;
  position: fixed;
  top: 76px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 49;
  background: var(--bg);
  border-top: 1px solid var(--line);
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.25s ease;
}
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav nav {
  display: flex;
  flex-direction: column;
  padding: 24px 20px 40px;
}
.mobile-nav nav a {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  padding: 20px 4px;
  border-bottom: 1px solid var(--line);
  transition: color 0.15s;
}
.mobile-nav nav a:hover { color: var(--ink); }
.mobile-nav nav a.mobile-nav-cta {
  margin-top: 24px;
  background: var(--accent);
  color: var(--accent-ink);
  font-weight: 600;
  text-align: center;
  border: none;
  padding: 18px 20px;
  border-radius: 2px;
}
.mobile-nav nav a.mobile-nav-cta:hover { background: var(--accent-soft); color: var(--accent-ink); }

/* ----- Hero mobile CTA ----- */
.hero-cta-mobile { display: none; }

/* Tweaks helpers — hide hero variants */
[data-hero-variant="A"] .hero-b,
[data-hero-variant="B"] .hero-a {
  display: none;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-a-grid, .city-grid, .about-grid, .cta-banner .inner { grid-template-columns: 1fr; gap: 40px; }
  .services-grid, .process-grid, .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card { border-right: 0; border-bottom: 1px solid var(--line); }
  .service-card:nth-child(2n) { border-right: 0; }
  .service-card:nth-child(odd) { border-right: 1px solid var(--line); }
  .trust-item:nth-child(2n) { border-right: 0; }
  .trust-item:nth-child(odd) { border-right: 1px solid var(--line); }
  .areas-list { grid-template-columns: 1fr 1fr; }
  .area-row:nth-child(3n) { border-right: 1px solid var(--line); }
  .area-row:nth-child(2n) { border-right: 0; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-banner .call-block { align-items: flex-start; text-align: left; }
  .reviews-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .wrap { padding: 0 20px; }
  .nav a:not(.nav-cta) { display: none; }
  .nav .nav-cta { display: none; }
  .mobile-menu-btn { display: flex; }
  .mobile-nav { display: block; }
  .services-grid, .process-grid, .trust-grid, .areas-list, .gallery-grid, .footer-grid { grid-template-columns: 1fr; }
  .trust-item, .service-card { border-right: 0 !important; border-bottom: 1px solid var(--line); }
  .area-row { border-right: 0 !important; }
  .brand-text .name { font-size: 16px; }
  .brand img { height: 44px; }
  .section-pad { padding: 64px 0; }

  /* Hero mobile */
  .hero-b { justify-content: center; }
  .hero-b-top { display: none; }
  .hero-b-content { padding-top: 72px; }
  .hero-b-bottom {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .hero-b-bottom .lede { max-width: 100%; }
  .hero-b-bottom .right { display: none; }
  .hero-cta-mobile {
    display: block;
    background: var(--accent);
    color: var(--accent-ink);
    font-family: var(--mono);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-align: center;
    padding: 18px 22px;
    border-radius: 2px;
    margin-top: 20px;
    transition: background 0.15s;
  }
  .hero-cta-mobile:hover { background: var(--accent-soft); color: var(--accent-ink); }
}
