/* ============================================================
   WATERHOUSE  —  Manhattan Plumbing Co.
   Editorial trust-builder. Cream paper. Navy ink. Copper accent.
   ============================================================ */

:root {
  /* Color */
  --ink:          #0B1B2E;
  --ink-2:        #142940;
  --ink-3:        #1F3A57;
  --ink-soft:     rgba(11, 27, 46, 0.72);
  --cream:        #F2ECDF;
  --paper:        #F8F2E5;
  --paper-2:      #EAE2D0;
  --copper:       #B85C2E;
  --copper-2:     #D87141;
  --copper-soft:  rgba(184, 92, 46, 0.12);
  --red:          #C8312A;
  --green:        #2F6B45;
  --muted:        #6F6759;
  --muted-2:      #8E8676;
  --line:         rgba(11, 27, 46, 0.14);
  --line-2:       rgba(11, 27, 46, 0.07);
  --line-strong:  rgba(11, 27, 46, 0.42);

  /* Type */
  --display: 'Fraunces', 'Times New Roman', Georgia, serif;
  --body:    'Geist', system-ui, -apple-system, sans-serif;
  --mono:    'Geist Mono', ui-monospace, 'SFMono-Regular', monospace;

  /* Layout */
  --maxw: 1320px;
  --gutter: clamp(20px, 4vw, 56px);

  /* Motion */
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

/* ---------- reset / base ---------- */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--body);
  font-weight: 400;
  color: var(--ink);
  background: var(--cream);
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01", "cv11";
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
hr { border: 0; border-top: 1px solid var(--line); margin: 0; }

::selection { background: var(--ink); color: var(--cream); }

/* paper grain (very subtle) */
body::before {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.05;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.04  0 0 0 0 0.10  0 0 0 0 0.18  0 0 0 0.7 0'/></filter><rect width='220' height='220' filter='url(%23n)'/></svg>");
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* ---------- type primitives ---------- */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.kicker-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--copper);
  box-shadow: 0 0 0 4px var(--copper-soft);
}
.section-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.section-label::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--ink);
  transform: translateY(-4px);
}
.eyebrow-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--copper);
  text-transform: uppercase;
}

/* ---------- announcement bar ---------- */
.bar {
  background: var(--ink);
  color: var(--cream);
  font-size: 13px;
  border-bottom: 1px solid rgba(245, 239, 228, 0.08);
}
.bar-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 10px var(--gutter);
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.bar-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #5BC78F;
  box-shadow: 0 0 0 4px rgba(91, 199, 143, 0.18);
  animation: pulse 2.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(91, 199, 143, 0.18); }
  50%      { box-shadow: 0 0 0 7px rgba(91, 199, 143, 0.04); }
}
.bar-text { flex: 1; color: rgba(245, 239, 228, 0.85); }
.bar-text strong { color: var(--cream); font-weight: 500; }
.bar-link {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--cream);
  border-bottom: 1px solid rgba(245, 239, 228, 0.3);
  padding-bottom: 1px;
  transition: border-color 0.2s var(--ease);
}
.bar-link:hover { border-color: var(--cream); }

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(242, 236, 223, 0.88);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-wrap {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding-top: 18px;
  padding-bottom: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  line-height: 1;
}
.brand-mark {
  width: 38px; height: 38px;
  flex-shrink: 0;
}
.brand-text { display: flex; flex-direction: column; gap: 3px; }
.brand-name {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  font-variation-settings: "opsz" 24, "SOFT" 30;
}
.brand-sub {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  font-size: 14px;
}
.nav a {
  position: relative;
  color: var(--ink-soft);
  transition: color 0.2s var(--ease);
  padding: 6px 0;
}
.nav a:hover { color: var(--ink); }
.nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav a:hover::after { transform: scaleX(1); }

.header-cta { display: flex; align-items: center; gap: 14px; }
.phone-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ink);
  color: var(--cream);
  padding: 10px 16px 10px 12px;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.02em;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}
.phone-pill:hover { background: var(--ink-3); transform: translateY(-1px); }
.phone-label {
  background: var(--copper);
  color: var(--cream);
  font-size: 9.5px;
  letter-spacing: 0.18em;
  padding: 3px 7px;
  border-radius: 999px;
  text-transform: uppercase;
}
.phone-num { letter-spacing: 0.05em; }

.nav-toggle { display: none; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 22px;
  border-radius: 4px;
  font-family: var(--body);
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--ink);
  color: var(--cream);
}
.btn-primary:hover {
  background: var(--copper);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn-ghost:hover {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.btn-copper {
  background: var(--copper);
  color: var(--cream);
}
.btn-copper:hover { background: #9E4B23; }

/* ---------- HERO ---------- */
.hero {
  padding-top: clamp(40px, 6vw, 80px);
  padding-bottom: clamp(60px, 8vw, 120px);
  position: relative;
  overflow: hidden;
}
.hero-wrap {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: end;
}
.hero-copy { position: relative; z-index: 2; }
.hero-meta {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.hero-meta-sep {
  width: 24px; height: 1px;
  background: var(--line-strong);
}

.hero-title {
  font-family: var(--display);
  font-weight: 380;
  font-size: clamp(44px, 7vw, 96px);
  line-height: 0.96;
  letter-spacing: -0.025em;
  margin: 0 0 28px;
  font-variation-settings: "opsz" 120, "SOFT" 30;
  color: var(--ink);
}
.hero-title em {
  font-style: italic;
  font-weight: 360;
  color: var(--copper);
  font-variation-settings: "opsz" 144, "SOFT" 80;
}
.hero-title .small {
  font-size: 0.5em;
  font-style: italic;
  letter-spacing: 0;
  color: var(--ink-soft);
}

.hero-lede {
  font-size: 17.5px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 50ch;
  margin: 0 0 36px;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 44px;
  flex-wrap: wrap;
}
.hero-ctas .btn-primary {
  padding: 18px 26px;
  font-size: 15px;
}

.hero-chips {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  text-transform: uppercase;
}
.hero-chips li {
  display: flex;
  align-items: center;
  gap: 9px;
}
.hero-chips li + li::before {
  content: '';
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--copper);
  margin-right: 9px;
}

/* Hero visual — Manhattan island SVG composition */
.hero-figure {
  position: relative;
  margin: 0;
  align-self: stretch;
  min-height: 480px;
  display: flex;
  flex-direction: column;
}
.hero-art {
  position: relative;
  background: var(--ink);
  color: var(--cream);
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  isolation: isolate;
}
.hero-art::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 10%, rgba(216, 113, 65, 0.35), transparent 50%),
    radial-gradient(circle at 10% 90%, rgba(31, 58, 87, 0.6), transparent 60%);
  z-index: 0;
}
.hero-art > * { position: relative; z-index: 1; }
.hero-art-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(242, 236, 223, 0.6);
}
.hero-art-head strong {
  color: var(--copper-2);
  font-weight: 500;
}
.hero-art .skyline {
  width: 100%;
  margin-top: auto;
}
.hero-art-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 28px;
  border-top: 1px solid rgba(242, 236, 223, 0.18);
}
.hero-art-stat {
  padding: 16px 14px 4px;
  border-right: 1px solid rgba(242, 236, 223, 0.12);
}
.hero-art-stat:last-child { border-right: 0; }
.hero-art-stat .n {
  font-family: var(--display);
  font-size: 32px;
  font-weight: 380;
  line-height: 1;
  font-variation-settings: "opsz" 48;
}
.hero-art-stat .l {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(242, 236, 223, 0.55);
  margin-top: 6px;
}

.hero-tag {
  background: var(--paper);
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  text-transform: uppercase;
}
.hero-tag-num {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink);
}

/* hero corner ticks */
.hero-figure::before,
.hero-figure::after {
  content: '';
  position: absolute;
  width: 14px; height: 14px;
  border: 1.5px solid var(--copper);
  z-index: 3;
}
.hero-figure::before { top: -7px; left: -7px; border-right: 0; border-bottom: 0; }
.hero-figure::after  { top: -7px; right: -7px; border-left: 0; border-bottom: 0; }

/* ---------- trust strip ---------- */
.trust {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.trust-wrap {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
}
.trust-cell {
  flex: 1 1 0;
  min-width: 180px;
  padding: 28px 24px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.trust-cell:last-child { border-right: 0; }
.trust-cell .l {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--muted);
  text-transform: uppercase;
}
.trust-cell .v {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 380;
  letter-spacing: -0.01em;
  font-variation-settings: "opsz" 36, "SOFT" 30;
}
.trust-cell .v em {
  font-style: italic;
  color: var(--copper);
  font-weight: 360;
}
.trust-cell .stars {
  letter-spacing: 0.06em;
  color: var(--copper);
  font-size: 14px;
}

/* ---------- generic section ---------- */
.section {
  padding-top: clamp(80px, 10vw, 140px);
  padding-bottom: clamp(80px, 10vw, 140px);
  position: relative;
}
.section-head {
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: end;
  margin-bottom: clamp(48px, 6vw, 80px);
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.section-head h2 {
  font-family: var(--display);
  font-weight: 380;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 18px 0 0;
  font-variation-settings: "opsz" 80, "SOFT" 30;
}
.section-head h2 em {
  font-style: italic;
  color: var(--copper);
  font-variation-settings: "opsz" 120, "SOFT" 80;
}
.section-head p {
  font-size: 16.5px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
  max-width: 56ch;
}

/* ---------- services grid ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.service {
  grid-column: span 2;
  padding: 36px 32px 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  position: relative;
  transition: background 0.3s var(--ease);
  display: flex;
  flex-direction: column;
  min-height: 320px;
}
.service:hover { background: var(--paper-2); }
.service.feature {
  grid-column: span 3;
  background: var(--ink);
  color: var(--cream);
}
.service.feature:hover { background: var(--ink-2); }
.service.span-3 { grid-column: span 3; }

.service-num {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--copper);
  margin-bottom: 16px;
}
.service.feature .service-num { color: var(--copper-2); }

.service-name {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0 0 12px;
  font-variation-settings: "opsz" 48, "SOFT" 30;
}
.service.feature .service-name {
  font-size: 38px;
}
.service-name em {
  font-style: italic;
  color: var(--copper);
  font-variation-settings: "opsz" 72, "SOFT" 60;
}
.service.feature .service-name em { color: var(--copper-2); }

.service-desc {
  color: var(--ink-soft);
  font-size: 14.5px;
  line-height: 1.55;
  margin: 0 0 24px;
  max-width: 42ch;
}
.service.feature .service-desc { color: rgba(242, 236, 223, 0.7); }

.service-foot {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
}
.service-price {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--muted);
  text-transform: uppercase;
}
.service-price strong {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink);
  margin-right: 4px;
}
.service.feature .service-price { color: rgba(242, 236, 223, 0.5); }
.service.feature .service-price strong { color: var(--cream); }

.service-link {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  transition: gap 0.25s var(--ease);
}
.service.feature .service-link { color: var(--cream); }
.service:hover .service-link { gap: 14px; }
.service-link svg { width: 12px; height: 12px; }

/* ---------- promo strip ---------- */
.promo {
  background: var(--ink);
  color: var(--cream);
  padding: 0;
  position: relative;
  overflow: hidden;
}
.promo-wrap {
  padding: 60px var(--gutter);
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
  position: relative;
  z-index: 2;
}
.promo::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 100% 50%, rgba(216, 113, 65, 0.22), transparent 60%);
  z-index: 1;
}
.promo-kicker {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--copper-2);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.promo-kicker::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--copper-2);
}
.promo h3 {
  font-family: var(--display);
  font-weight: 380;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  margin: 0;
  font-variation-settings: "opsz" 80, "SOFT" 30;
}
.promo h3 em {
  font-style: italic;
  color: var(--copper-2);
  font-variation-settings: "opsz" 120, "SOFT" 80;
}
.promo-deals {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.promo-deal {
  padding: 8px 22px;
  border-left: 1px solid rgba(242, 236, 223, 0.18);
}
.promo-deal:first-child { border-left: 0; padding-left: 0; }
.promo-deal .n {
  font-family: var(--display);
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 380;
  line-height: 1;
  letter-spacing: -0.02em;
  font-variation-settings: "opsz" 144, "SOFT" 30;
}
.promo-deal .n .currency {
  font-size: 0.55em;
  vertical-align: super;
  margin-right: 2px;
  font-style: italic;
  color: var(--copper-2);
}
.promo-deal .l {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(242, 236, 223, 0.6);
  margin-top: 10px;
}

/* ---------- why us / stats ---------- */
.why { background: var(--cream); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.why-cell {
  padding: 40px 28px 40px 0;
  border-right: 1px solid var(--line);
  padding-left: 28px;
}
.why-cell:first-child { padding-left: 0; }
.why-cell:last-child { border-right: 0; }
.why-cell .n {
  font-family: var(--display);
  font-size: clamp(56px, 7vw, 92px);
  font-weight: 360;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--ink);
  font-variation-settings: "opsz" 144, "SOFT" 30;
}
.why-cell .n .suffix {
  font-style: italic;
  color: var(--copper);
  font-weight: 380;
  font-variation-settings: "opsz" 144, "SOFT" 80;
  font-size: 0.5em;
  letter-spacing: 0;
  vertical-align: super;
  margin-left: 2px;
}
.why-cell .n .small {
  font-size: 0.42em;
  font-style: italic;
  color: var(--ink-soft);
  letter-spacing: 0;
}
.why-cell h4 {
  font-family: var(--display);
  font-weight: 480;
  font-size: 17px;
  margin: 24px 0 8px;
  letter-spacing: -0.005em;
}
.why-cell p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
}

/* ---------- process ---------- */
.process {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.step {
  padding: 36px 28px;
  border-right: 1px solid var(--line);
  position: relative;
}
.step:last-child { border-right: 0; }
.step-num {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: 64px;
  line-height: 0.9;
  color: var(--copper);
  margin-bottom: 24px;
  font-variation-settings: "opsz" 144, "SOFT" 80;
}
.step h4 {
  font-family: var(--display);
  font-weight: 460;
  font-size: 22px;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}
.step p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
}
.step-time {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 18px;
  display: block;
}

/* ---------- testimonials ---------- */
.testimonials { }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 32px;
}
.testi {
  border-top: 1px solid var(--ink);
  padding-top: 28px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.testi.lg { grid-column: span 6; }
.testi.sm { grid-column: span 3; }
.testi .stars {
  color: var(--copper);
  letter-spacing: 0.08em;
  font-size: 14px;
  margin-bottom: 18px;
}
.testi blockquote {
  font-family: var(--display);
  font-weight: 380;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.25;
  letter-spacing: -0.005em;
  margin: 0 0 24px;
  color: var(--ink);
  font-variation-settings: "opsz" 48, "SOFT" 30;
}
.testi.lg blockquote {
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.22;
}
.testi blockquote em {
  font-style: italic;
  color: var(--copper);
  font-variation-settings: "opsz" 72, "SOFT" 60;
}
.testi-cite {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.testi-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
}
.testi-meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-transform: uppercase;
}

/* ---------- neighborhoods / map ---------- */
.area {
  background: var(--ink);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.area .section-head {
  border-bottom-color: rgba(242, 236, 223, 0.15);
}
.area .section-head h2 { color: var(--cream); }
.area .section-head h2 em { color: var(--copper-2); }
.area .section-head p { color: rgba(242, 236, 223, 0.7); }
.area .section-label { color: rgba(242, 236, 223, 0.6); }
.area .section-label::before { background: var(--cream); }

.area-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.map-wrap {
  position: relative;
  padding: 14px;
  border: 1px solid rgba(242, 236, 223, 0.14);
  background: rgba(255, 255, 255, 0.02);
}
.map-wrap::before, .map-wrap::after {
  content: '';
  position: absolute;
  width: 12px; height: 12px;
  border: 1px solid var(--copper-2);
  z-index: 5;
}
.map-wrap::before { top: -6px; left: -6px; border-right: 0; border-bottom: 0; }
.map-wrap::after { bottom: -6px; right: -6px; border-left: 0; border-top: 0; }

.manhattan-map {
  width: 100%;
  aspect-ratio: 4 / 5;
  max-height: 620px;
  min-height: 480px;
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

/* Copper service-hub marker */
.map-hub {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--copper);
  border: 1.5px solid var(--cream);
  box-shadow:
    0 0 0 4px rgba(216, 113, 65, 0.22),
    0 0 14px rgba(216, 113, 65, 0.5);
  cursor: pointer;
  transition: transform 0.2s var(--ease);
}
.map-hub:hover {
  transform: scale(1.25);
}

/* Popup styling tuned to Carto Dark Matter */
.maplibregl-popup.map-popup .maplibregl-popup-content {
  background: var(--ink);
  color: var(--cream);
  padding: 10px 14px;
  border-radius: 2px;
  border: 1px solid rgba(216, 113, 65, 0.5);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
  font-family: var(--body);
}
.maplibregl-popup.map-popup .maplibregl-popup-tip {
  border-top-color: var(--ink) !important;
  border-bottom-color: var(--ink) !important;
}
.popup-name {
  display: block;
  font-family: var(--display);
  font-weight: 420;
  font-size: 16px;
  letter-spacing: -0.005em;
  font-variation-settings: "opsz" 36, "SOFT" 30;
}
.popup-meta {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--copper-2);
  margin-top: 3px;
}

/* MapLibre control restyle to match brand */
.maplibregl-ctrl-group {
  background: var(--ink) !important;
  border: 1px solid rgba(242, 236, 223, 0.18) !important;
  box-shadow: none !important;
}
.maplibregl-ctrl-group button {
  background: transparent !important;
}
.maplibregl-ctrl-group button + button {
  border-top: 1px solid rgba(242, 236, 223, 0.12) !important;
}
.maplibregl-ctrl-group button:hover {
  background: rgba(216, 113, 65, 0.18) !important;
}
.maplibregl-ctrl-group button .maplibregl-ctrl-icon {
  filter: invert(1) opacity(0.85);
}
.maplibregl-ctrl-attrib {
  background: rgba(11, 27, 46, 0.72) !important;
  color: rgba(242, 236, 223, 0.6) !important;
  font-family: var(--mono);
  font-size: 9px !important;
  letter-spacing: 0.04em;
}
.maplibregl-ctrl-attrib a { color: var(--copper-2) !important; }

/* Legend */
.map-legend {
  position: absolute;
  top: 26px;
  left: 26px;
  z-index: 4;
  background: rgba(11, 27, 46, 0.78);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(242, 236, 223, 0.18);
  padding: 8px 12px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  border-radius: 2px;
}
.map-legend-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--copper);
  box-shadow: 0 0 0 3px rgba(216, 113, 65, 0.25);
}

.neighborhoods {
  columns: 2;
  column-gap: 36px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.neighborhoods li {
  padding: 13px 0;
  border-bottom: 1px solid rgba(242, 236, 223, 0.12);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  break-inside: avoid;
  font-size: 15px;
}
.neighborhoods li:first-child { padding-top: 0; }
.neighborhoods li .nb-name { color: var(--cream); }
.neighborhoods li .nb-zip {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  color: rgba(242, 236, 223, 0.4);
}
.area-foot {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid rgba(242, 236, 223, 0.15);
}
.area-foot-note {
  font-size: 14px;
  color: rgba(242, 236, 223, 0.7);
  max-width: 38ch;
}

/* ---------- emergency CTA band ---------- */
.cta-band {
  background: var(--copper);
  color: var(--cream);
  padding: clamp(60px, 8vw, 110px) 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 0% 100%, rgba(11, 27, 46, 0.35), transparent 50%);
}
.cta-wrap {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: end;
  position: relative;
}
.cta-band h2 {
  font-family: var(--display);
  font-weight: 380;
  font-size: clamp(40px, 6vw, 80px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin: 18px 0 0;
  color: var(--cream);
  font-variation-settings: "opsz" 120, "SOFT" 30;
}
.cta-band h2 em {
  font-style: italic;
  color: var(--ink);
  font-variation-settings: "opsz" 144, "SOFT" 80;
}
.cta-band .kicker { color: rgba(242, 236, 223, 0.85); }
.cta-band .kicker-dot { background: var(--ink); box-shadow: 0 0 0 4px rgba(11, 27, 46, 0.2); }
.cta-band-side {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}
.cta-phone {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  background: var(--ink);
  color: var(--cream);
  padding: 22px 28px;
  border-radius: 6px;
  transition: transform 0.25s var(--ease);
}
.cta-phone:hover { transform: translateY(-2px); }
.cta-phone .cta-label {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(242, 236, 223, 0.55);
}
.cta-phone .cta-num {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: 36px;
  letter-spacing: 0;
  font-variation-settings: "opsz" 72, "SOFT" 60;
}
.cta-second {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: rgba(242, 236, 223, 0.8);
}
.cta-second a {
  border-bottom: 1px solid rgba(242, 236, 223, 0.4);
  padding-bottom: 1px;
}

/* ---------- FAQ (compact) ---------- */
.faq-list {
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
  display: grid;
  grid-template-columns: 0.7fr 2fr;
  gap: 32px;
  align-items: start;
}
.faq-q {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 420;
  letter-spacing: -0.005em;
  line-height: 1.2;
  color: var(--ink);
  font-variation-settings: "opsz" 36, "SOFT" 30;
}
.faq-q em {
  font-style: italic;
  color: var(--copper);
}
.faq-a {
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.6;
}

/* ---------- footer ---------- */
.site-footer {
  background: var(--ink);
  color: var(--cream);
  padding-top: clamp(64px, 8vw, 100px);
  padding-bottom: 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(242, 236, 223, 0.14);
}
.footer-brand .brand-name { color: var(--cream); font-size: 28px; }
.footer-brand .brand-sub { color: rgba(242, 236, 223, 0.5); }
.footer-tag {
  margin-top: 24px;
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(242, 236, 223, 0.7);
  max-width: 36ch;
}
.footer-col h5 {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(242, 236, 223, 0.55);
  margin: 0 0 18px;
  font-weight: 500;
}
.footer-col ul {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14.5px;
}
.footer-col a {
  color: rgba(242, 236, 223, 0.85);
  transition: color 0.2s var(--ease);
}
.footer-col a:hover { color: var(--copper-2); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(242, 236, 223, 0.5);
  gap: 24px;
  flex-wrap: wrap;
}
.footer-bottom a {
  border-bottom: 1px solid rgba(242, 236, 223, 0.2);
  padding-bottom: 1px;
}
.footer-license {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(242, 236, 223, 0.55);
  margin-top: 20px;
  line-height: 1.6;
}

/* ---------- contractors page ---------- */
.contractor-hero {
  padding-top: clamp(40px, 6vw, 80px);
  padding-bottom: clamp(40px, 5vw, 70px);
}
.contractor-hero-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: end;
}
.contractor-hero h1 {
  font-family: var(--display);
  font-weight: 380;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1;
  letter-spacing: -0.022em;
  margin: 24px 0 24px;
  font-variation-settings: "opsz" 120, "SOFT" 30;
}
.contractor-hero h1 em {
  font-style: italic;
  color: var(--copper);
  font-variation-settings: "opsz" 144, "SOFT" 80;
}
.contractor-hero p {
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 50ch;
  margin: 0 0 28px;
}
.contractor-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  margin-top: 28px;
}
.contractor-stat {
  padding: 22px 18px 22px 0;
  border-right: 1px solid var(--line);
  padding-left: 18px;
}
.contractor-stat:first-child { padding-left: 0; }
.contractor-stat:last-child { border-right: 0; }
.contractor-stat .n {
  font-family: var(--display);
  font-size: 38px;
  font-weight: 400;
  letter-spacing: -0.015em;
  font-variation-settings: "opsz" 80, "SOFT" 30;
  line-height: 1;
}
.contractor-stat .n em {
  font-style: italic;
  color: var(--copper);
  font-size: 0.7em;
}
.contractor-stat .l {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 8px;
}

.contractor-form-section {
  padding: 60px 0 120px;
}
.form-wrap {
  max-width: 880px;
  margin: 0 auto;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: clamp(28px, 4vw, 56px);
  position: relative;
}
.form-wrap::before, .form-wrap::after,
.form-wrap > .corner-bl, .form-wrap > .corner-br {
  content: '';
  position: absolute;
  width: 16px; height: 16px;
  border: 1px solid var(--copper);
}
.form-wrap::before { top: -8px; left: -8px; border-right: 0; border-bottom: 0; }
.form-wrap::after  { top: -8px; right: -8px; border-left: 0; border-bottom: 0; }
.form-wrap > .corner-bl { bottom: -8px; left: -8px; border-right: 0; border-top: 0; }
.form-wrap > .corner-br { bottom: -8px; right: -8px; border-left: 0; border-top: 0; }

.form-head {
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.form-head h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 38px);
  margin: 12px 0 12px;
  letter-spacing: -0.015em;
  font-variation-settings: "opsz" 60, "SOFT" 30;
}
.form-head p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.field label {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.field input,
.field select,
.field textarea {
  font-family: var(--body);
  font-size: 15px;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  padding: 10px 0 12px;
  transition: border-color 0.2s var(--ease);
  outline: none;
}
.field input::placeholder,
.field textarea::placeholder { color: var(--muted-2); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-bottom-color: var(--copper);
}
.field-hint {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-top: 4px;
}

.form-foot {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.form-foot p {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin: 0;
  max-width: 38ch;
}

/* ---------- responsive ---------- */
@media (max-width: 1100px) {
  .nav { gap: 22px; font-size: 13px; }
  .hero-wrap { grid-template-columns: 1fr; }
  .hero-figure { min-height: 380px; }
  .section-head { grid-template-columns: 1fr; gap: 18px; }
  .services-grid { grid-template-columns: repeat(4, 1fr); }
  .service, .service.feature, .service.span-3 { grid-column: span 2; min-height: 280px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .why-cell:nth-child(2) { border-right: 0; }
  .why-cell:nth-child(3) { padding-left: 0; border-top: 1px solid var(--line); padding-top: 40px; }
  .why-cell:nth-child(4) { border-top: 1px solid var(--line); padding-top: 40px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .step:nth-child(2) { border-right: 0; }
  .step:nth-child(3), .step:nth-child(4) { border-top: 1px solid var(--line); }
  .testi.lg, .testi.sm { grid-column: span 6; }
  .area-grid { grid-template-columns: 1fr; }
  .cta-wrap { grid-template-columns: 1fr; }
  .promo-wrap { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .contractor-hero-wrap { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav { display: none; }
  .nav.open { display: flex; }
  .header-wrap { grid-template-columns: 1fr auto; }
  .phone-pill .phone-num { display: none; }
  .phone-pill { padding: 8px 12px; }
  .promo-deals { grid-template-columns: 1fr; gap: 16px; }
  .promo-deal { padding-left: 0; border-left: 0; border-top: 1px solid rgba(242, 236, 223, 0.18); padding-top: 16px; }
  .promo-deal:first-child { border-top: 0; padding-top: 0; }
  .hero-art-stats { grid-template-columns: 1fr; }
  .hero-art-stat { border-right: 0; border-bottom: 1px solid rgba(242, 236, 223, 0.12); }
  .services-grid { grid-template-columns: 1fr; }
  .service, .service.feature, .service.span-3 { grid-column: span 1; }
  .why-grid { grid-template-columns: 1fr; }
  .why-cell { padding: 32px 0; border-right: 0; border-top: 1px solid var(--line); padding-left: 0; }
  .why-cell:first-child { border-top: 0; padding-top: 0; }
  .process-grid { grid-template-columns: 1fr; }
  .step { border-right: 0; border-top: 1px solid var(--line); padding: 28px 0; }
  .step:first-child { border-top: 0; }
  .testi.lg, .testi.sm { grid-column: span 1; }
  .testi-grid { grid-template-columns: 1fr; }
  .neighborhoods { columns: 1; }
  .faq-item { grid-template-columns: 1fr; gap: 12px; }
  .field-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .contractor-stats { grid-template-columns: 1fr; }
  .contractor-stat { padding: 18px 0; border-right: 0; border-top: 1px solid var(--line); padding-left: 0; }
  .contractor-stat:first-child { border-top: 0; padding-top: 0; }
}

/* ---------- entrance animations ---------- */
@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fade {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.hero-copy > * {
  opacity: 0;
  animation: rise 0.9s var(--ease) forwards;
}
.hero-copy > *:nth-child(1) { animation-delay: 0.05s; }
.hero-copy > *:nth-child(2) { animation-delay: 0.18s; }
.hero-copy > *:nth-child(3) { animation-delay: 0.30s; }
.hero-copy > *:nth-child(4) { animation-delay: 0.42s; }
.hero-copy > *:nth-child(5) { animation-delay: 0.54s; }
.hero-figure { opacity: 0; animation: rise 1s var(--ease) 0.4s forwards; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
