/* ═══ Imperium Cleaning ═══ */
@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --maroon: #7A1A1A;
  --maroon-deep: #5C1212;
  --maroon-dark: #2A0808;
  --maroon-tint: #F5E8E8;
  --bg: #FAF8F6;
  --bg-warm: #F2EDE8;
  --ink: #0F0F10;
  --ink-2: #3A3A3D;
  --ink-3: #6E6E73;
  --line: #E5E1DC;
  --line-2: #D9D3CC;
  --gold: #C9A961;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ═══ Type ═══ */
.font-display { font-family: 'Rajdhani', sans-serif; font-weight: 600; letter-spacing: -0.01em; line-height: 1; }
.eyebrow {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  color: var(--maroon);
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before {
  content: ""; width: 24px; height: 1px; background: var(--maroon);
}

/* ═══ Container ═══ */
.wrap { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 720px) { .wrap { padding: 0 20px; } }

/* ═══ Buttons ═══ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 22px; border-radius: 999px;
  font-family: 'Rajdhani', sans-serif; font-weight: 600; font-size: 15px;
  letter-spacing: 0.05em; text-transform: uppercase;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn--primary { background: var(--maroon); color: #fff; }
.btn--primary:hover { background: var(--maroon-deep); transform: translateY(-1px); }
.btn--ghost { background: transparent; color: var(--ink); border: 1px solid var(--line-2); }
.btn--ghost:hover { border-color: var(--ink); }
.btn--ghost-light { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.3); }
.btn--ghost-light:hover { border-color: #fff; background: rgba(255,255,255,0.06); }
.btn--lg { padding: 18px 28px; font-size: 16px; }
.btn--sm { padding: 10px 16px; font-size: 13px; }

/* ═══ Nav ═══ */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 248, 246, 0.78);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  transition: all 0.25s ease;
  border-bottom: 1px solid transparent;
}
.nav--scrolled { background: rgba(250, 248, 246, 0.92); border-bottom-color: var(--line); }
.nav--dark:not(.nav--scrolled) {
  background: transparent; backdrop-filter: none;
}
.nav--dark:not(.nav--scrolled) .nav__links a,
.nav--dark:not(.nav--scrolled) .nav__phone,
.nav--dark:not(.nav--scrolled) .nav__dd > button { color: #fff; }
.nav--dark:not(.nav--scrolled) .nav__phone-dot { background: #4ADE80; }

.nav__inner {
  max-width: 1280px; margin: 0 auto; padding: 16px 32px;
  display: flex; align-items: center; gap: 32px;
}
.logo { display: flex; align-items: center; }
.nav__links { display: flex; gap: 28px; align-items: center; flex: 1; }
.nav__links a, .nav__dd > button {
  font-size: 14px; font-weight: 500; color: var(--ink-2);
  transition: color 0.15s;
  display: flex; align-items: center; gap: 4px;
}
.nav__links a:hover, .nav__dd > button:hover { color: var(--maroon); }
.nav__dd { position: relative; }
.nav__dd::before {
  /* invisible hover bridge so cursor can travel from button to menu without losing hover */
  content: ""; position: absolute; left: 0; right: 0; top: 100%; height: 12px;
}
.nav__dd-menu {
  position: absolute; top: calc(100% + 8px); left: -12px;
  background: #fff; border: 1px solid var(--line);
  border-radius: 12px; padding: 8px; min-width: 200px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  opacity: 0; pointer-events: none; transform: translateY(-4px);
  transition: all 0.18s ease;
  z-index: 60;
}
.nav__dd:hover .nav__dd-menu,
.nav__dd--open .nav__dd-menu,
.nav__dd:focus-within .nav__dd-menu { opacity: 1; pointer-events: auto; transform: translateY(0); }
.nav__dd-menu a {
  display: block; padding: 10px 14px; border-radius: 8px;
  font-size: 14px; color: var(--ink) !important;
}
.nav__dd-menu a:hover { background: var(--bg-warm); color: var(--maroon) !important; }
.nav__cta { display: flex; align-items: center; gap: 16px; }
.nav__phone {
  display: flex; align-items: center; gap: 8px;
  font-family: 'Rajdhani', sans-serif; font-weight: 600;
  font-size: 16px; color: var(--ink);
}
.nav__phone-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #16A34A;
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.18);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.18); }
  50% { box-shadow: 0 0 0 6px rgba(22, 163, 74, 0.05); }
}
.nav__burger { display: none; flex-direction: column; gap: 4px; padding: 8px; }
.nav__burger span { width: 22px; height: 2px; background: currentColor; }
.nav__mobile { display: none; }

@media (max-width: 980px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; margin-left: auto; }
  .nav__mobile {
    display: flex; flex-direction: column;
    background: #fff; border-top: 1px solid var(--line);
    padding: 8px 20px 16px;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }
  .nav__mobile > a { padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 16px; }
  .nav__mobile-phone { color: var(--maroon) !important; font-weight: 600; }

  .nav__mobile-group { border-bottom: 1px solid var(--line); }
  .nav__mobile-group > summary {
    padding: 14px 0; font-size: 16px;
    list-style: none; cursor: pointer;
    display: flex; align-items: center; justify-content: space-between;
    user-select: none;
  }
  .nav__mobile-group > summary::-webkit-details-marker { display: none; }
  .nav__mobile-group > summary::after {
    content: "▾";
    font-size: 11px; color: var(--ink-3);
    transition: transform 0.2s ease;
  }
  .nav__mobile-group[open] > summary::after { transform: rotate(180deg); }
  .nav__mobile-group > a {
    display: block;
    padding: 11px 0 11px 16px;
    font-size: 14px; color: var(--ink-2);
    border-top: 1px solid var(--line);
  }
}

/* ═══ Hero ═══ */
.hero { position: relative; padding: 80px 0 120px; overflow: hidden; }
.hero--dark {
  background: var(--maroon-dark);
  color: #fff;
}
.hero--dark::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(122,26,26,0.5), transparent 60%);
  pointer-events: none;
}

.hero__inner { display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: center; position: relative; }
@media (max-width: 980px) { .hero__inner { grid-template-columns: 1fr; gap: 48px; } }

.hero__h1 {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-top: 24px;
}
.hero__h1 em {
  font-style: normal;
  color: var(--maroon);
  position: relative;
}
.hero--dark .hero__h1 em { color: #FCA5A5; }
.hero__h1 .underline {
  position: relative;
  display: inline-block;
}
.hero__h1 .underline::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0.06em;
  height: 0.18em; background: var(--maroon); opacity: 0.18;
  z-index: -1;
}
.hero--dark .hero__h1 .underline::after { background: #FCA5A5; opacity: 0.25; }

.hero__sub {
  font-size: 19px; line-height: 1.55;
  margin-top: 28px; max-width: 520px;
  color: var(--ink-2);
}
.hero--dark .hero__sub { color: rgba(255,255,255,0.78); }

.hero__cta-row {
  display: flex; gap: 14px; margin-top: 40px; flex-wrap: wrap;
  align-items: center;
}
.hero__phone-block {
  display: flex; flex-direction: column; gap: 2px;
  padding-left: 20px;
  border-left: 1px solid var(--line-2);
  margin-left: 6px;
}
.hero--dark .hero__phone-block { border-color: rgba(255,255,255,0.2); }
.hero__phone-label {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--ink-3); font-weight: 500;
}
.hero--dark .hero__phone-label { color: rgba(255,255,255,0.5); }
.hero__phone-num {
  font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 22px;
}

.hero__trust {
  margin-top: 56px; display: flex; gap: 32px; flex-wrap: wrap; align-items: center;
  padding-top: 32px; border-top: 1px solid var(--line);
}
.hero--dark .hero__trust { border-color: rgba(255,255,255,0.12); }
.hero__trust-item { display: flex; align-items: center; gap: 10px; }
.hero__trust-num {
  font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 28px;
  color: var(--maroon);
}
.hero--dark .hero__trust-num { color: #FCA5A5; }
.hero__trust-label {
  font-size: 12px; line-height: 1.3; color: var(--ink-3);
}
.hero--dark .hero__trust-label { color: rgba(255,255,255,0.6); }

/* hero visual */
.hero__visual {
  position: relative; aspect-ratio: 4/5; border-radius: 24px; overflow: hidden;
  background:
    linear-gradient(135deg, rgba(122,26,26,0.04) 0%, rgba(122,26,26,0) 50%),
    repeating-linear-gradient(45deg, var(--bg-warm) 0px, var(--bg-warm) 12px, var(--bg) 12px, var(--bg) 24px);
  border: 1px solid var(--line);
}
.hero--dark .hero__visual {
  background:
    linear-gradient(135deg, rgba(252,165,165,0.06) 0%, transparent 50%),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.02) 0px, rgba(255,255,255,0.02) 12px, transparent 12px, transparent 24px);
  border: 1px solid rgba(255,255,255,0.1);
}
.hero__visual-tag {
  position: absolute; left: 24px; top: 24px;
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-3);
  background: rgba(255,255,255,0.7); padding: 6px 10px; border-radius: 6px;
  backdrop-filter: blur(6px);
}
.hero--dark .hero__visual-tag {
  background: rgba(0,0,0,0.4); color: rgba(255,255,255,0.7);
}
.hero__visual-card {
  position: absolute; bottom: 24px; left: 24px; right: 24px;
  background: #fff; padding: 20px 22px; border-radius: 16px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.12);
  display: flex; align-items: center; gap: 16px;
}
.hero__visual-card-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--maroon-tint); color: var(--maroon);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 18px;
  flex-shrink: 0;
}
.hero__visual-card-text { flex: 1; }
.hero__visual-card-text strong {
  display: block; font-family: 'Rajdhani', sans-serif; font-size: 17px;
}
.hero__visual-card-text span { font-size: 13px; color: var(--ink-3); }

.hero__big-number {
  position: absolute; right: -40px; top: 50%; transform: translateY(-50%);
  font-family: 'Rajdhani', sans-serif; font-weight: 700;
  font-size: clamp(180px, 30vw, 380px);
  line-height: 0.8; letter-spacing: -0.05em;
  color: var(--maroon); opacity: 0.06;
  pointer-events: none; z-index: -1;
}
.hero--dark .hero__big-number { color: #FCA5A5; opacity: 0.07; }

/* ═══ Marquee ═══ */
.marquee {
  background: var(--ink); color: var(--bg);
  padding: 18px 0; overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.marquee__track {
  display: flex; gap: 56px; white-space: nowrap;
  animation: marquee 40s linear infinite;
  font-family: 'Rajdhani', sans-serif; font-weight: 600;
  font-size: 18px; letter-spacing: 0.08em; text-transform: uppercase;
}
.marquee__track span { display: flex; align-items: center; gap: 56px; }
.marquee__dot { color: var(--maroon); }
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ═══ Section ═══ */
.section { padding: 120px 0; }
.section--tight { padding: 80px 0; }
.section__head {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  margin-bottom: 64px; align-items: end;
}
@media (max-width: 820px) {
  .section__head { grid-template-columns: 1fr; gap: 24px; }
  .section { padding: 80px 0; }
}
.section__title {
  font-family: 'Rajdhani', sans-serif; font-weight: 600;
  font-size: clamp(36px, 5vw, 60px); line-height: 1; letter-spacing: -0.015em;
  margin-top: 16px;
}
.section__title em { font-style: normal; color: var(--maroon); }
.section__lede { font-size: 18px; color: var(--ink-2); max-width: 480px; line-height: 1.55; }

/* ═══ Services ═══ */
.services { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-top: 1px solid var(--line); }
@media (max-width: 820px) { .services { grid-template-columns: 1fr; } }

.svc {
  padding: 48px 40px; border-bottom: 1px solid var(--line);
  position: relative; transition: background 0.3s ease;
  display: flex; flex-direction: column; gap: 18px;
  min-height: 320px;
}
.svc:nth-child(odd) { border-right: 1px solid var(--line); }
@media (max-width: 820px) { .svc:nth-child(odd) { border-right: none; } }
.svc:hover { background: var(--bg-warm); }
.svc:hover .svc__cta { transform: translateX(4px); }

.svc__head {
  display: flex; align-items: baseline; gap: 16px;
}
.svc__num {
  font-family: 'Rajdhani', sans-serif; font-weight: 600;
  font-size: 13px; color: var(--maroon); letter-spacing: 0.1em;
}
.svc__sub {
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  color: var(--ink-3); text-transform: uppercase; letter-spacing: 0.08em;
  margin-left: auto;
}
.svc__title {
  font-family: 'Rajdhani', sans-serif; font-weight: 600;
  font-size: 36px; line-height: 1; letter-spacing: -0.01em;
}
.svc__body { color: var(--ink-2); font-size: 15px; line-height: 1.6; max-width: 460px; }
.svc__bullets {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px 24px;
  margin-top: auto; padding-top: 24px;
  list-style: none;
}
.svc__bullets li {
  font-size: 13px; color: var(--ink-2);
  display: flex; align-items: center; gap: 8px;
}
.svc__bullets li::before {
  content: ""; width: 12px; height: 1px; background: var(--maroon); flex-shrink: 0;
}
.svc__cta {
  margin-top: 20px; align-self: flex-start;
  font-family: 'Rajdhani', sans-serif; font-weight: 600;
  font-size: 14px; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--maroon);
  transition: transform 0.2s ease;
  display: inline-flex; align-items: center; gap: 8px;
}

/* ═══ Specialty & detail grid ═══ */
.specs {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  border-top: 1px solid var(--line);
}
@media (max-width: 900px) { .specs { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .specs { grid-template-columns: 1fr; } }

.spec {
  padding: 32px 28px; border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 12px;
  position: relative; transition: background 0.25s ease;
  min-height: 220px;
}
.spec:nth-child(3n) { border-right: none; }
@media (max-width: 900px) {
  .spec { border-right: 1px solid var(--line); }
  .spec:nth-child(3n) { border-right: 1px solid var(--line); }
  .spec:nth-child(2n) { border-right: none; }
}
@media (max-width: 600px) {
  .spec, .spec:nth-child(2n), .spec:nth-child(3n) { border-right: none; }
}
.spec:hover { background: var(--bg-warm); }
.spec:hover .spec__cta { transform: translateX(4px); }
.spec__dot {
  width: 8px; height: 8px; background: var(--maroon); border-radius: 50%;
  display: block;
}
.spec__title {
  font-family: 'Rajdhani', sans-serif; font-weight: 600;
  font-size: 22px; line-height: 1.15; letter-spacing: -0.01em;
}
.spec__body { color: var(--ink-2); font-size: 14px; line-height: 1.55; }
.spec__cta {
  margin-top: auto; align-self: flex-start; padding-top: 12px;
  font-family: 'Rajdhani', sans-serif; font-weight: 600;
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--maroon);
  transition: transform 0.2s ease;
  display: inline-flex; align-items: center; gap: 6px;
}

/* ═══ Industries served ═══ */
.industries {
  list-style: none;
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px;
}
@media (max-width: 1100px) { .industries { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px)  { .industries { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .industries { grid-template-columns: 1fr; } }

.industry {
  padding: 20px 22px; background: #fff; border: 1px solid var(--line);
  border-radius: 14px;
  display: flex; flex-direction: column; gap: 8px;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.industry:hover {
  border-color: var(--maroon);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(122, 26, 26, 0.08);
}
.industry__name {
  font-family: 'Rajdhani', sans-serif; font-weight: 600;
  font-size: 17px; color: var(--ink); line-height: 1.2;
}
.industry__note {
  font-size: 12.5px; color: var(--ink-3); line-height: 1.45;
}

/* ═══ Quote calculator ═══ */
.quote-calc {
  background: var(--ink); color: #fff; border-radius: 28px;
  padding: 56px; display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px;
  position: relative; overflow: hidden;
}
@media (max-width: 900px) {
  .quote-calc { grid-template-columns: 1fr; padding: 36px; gap: 32px; }
}
.quote-calc::before {
  content: ""; position: absolute; right: -100px; top: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(122,26,26,0.4), transparent 70%);
  pointer-events: none;
}
.quote-calc__title {
  font-family: 'Rajdhani', sans-serif; font-weight: 600;
  font-size: clamp(32px, 4vw, 48px); line-height: 1;
  margin-top: 16px;
}
.quote-calc__lede { color: rgba(255,255,255,0.7); margin-top: 20px; max-width: 360px; }
.quote-calc .eyebrow { color: #FCA5A5; }
.quote-calc .eyebrow::before { background: #FCA5A5; }

.qc__field { margin-bottom: 24px; position: relative; z-index: 1; }
.qc__label {
  display: block; font-family: 'Rajdhani', sans-serif; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em; font-size: 12px;
  color: rgba(255,255,255,0.6); margin-bottom: 12px;
}
.qc__chips { display: flex; gap: 8px; flex-wrap: wrap; }
.qc__chip {
  padding: 12px 18px; border-radius: 999px;
  background: rgba(255,255,255,0.06); color: #fff;
  border: 1px solid rgba(255,255,255,0.12);
  font-family: 'Rajdhani', sans-serif; font-weight: 600;
  font-size: 14px; letter-spacing: 0.04em;
  transition: all 0.15s;
}
.qc__chip:hover { border-color: rgba(255,255,255,0.3); }
.qc__chip--active {
  background: var(--maroon); border-color: var(--maroon); color: #fff;
}
.qc__sliderwrap {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px; padding: 20px;
}
.qc__sliderval {
  font-family: 'Rajdhani', sans-serif; font-weight: 700;
  font-size: 32px; line-height: 1;
}
.qc__sliderval span { font-size: 16px; color: rgba(255,255,255,0.5); margin-left: 6px; font-weight: 500; }
.qc__slider {
  width: 100%; -webkit-appearance: none; appearance: none;
  height: 4px; background: rgba(255,255,255,0.12); border-radius: 2px;
  margin-top: 16px;
}
.qc__slider::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--maroon); cursor: pointer;
  border: 3px solid #fff;
  box-shadow: 0 4px 12px rgba(122,26,26,0.4);
}
.qc__slider::-moz-range-thumb {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--maroon); cursor: pointer;
  border: 3px solid #fff;
}

.qc__estimate {
  margin-top: 8px; padding: 24px; background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08); border-radius: 16px;
  display: flex; align-items: baseline; gap: 16px;
}
.qc__estimate-label {
  font-family: 'Rajdhani', sans-serif; text-transform: uppercase;
  letter-spacing: 0.1em; font-size: 11px; color: rgba(255,255,255,0.5);
}
.qc__estimate-num {
  font-family: 'Rajdhani', sans-serif; font-weight: 700;
  font-size: 56px; line-height: 1; color: #fff;
  white-space: nowrap;
}
.qc__estimate-num small {
  font-size: 18px; color: rgba(255,255,255,0.5); font-weight: 500;
  margin-left: 4px;
}
.qc__estimate-note {
  margin-left: auto; font-size: 11px; color: rgba(255,255,255,0.4);
  text-align: right; max-width: 140px; line-height: 1.4;
}
@media (max-width: 600px) {
  .qc__estimate { flex-direction: column; align-items: flex-start; gap: 10px; padding: 20px; }
  .qc__estimate-num { font-size: 44px; }
  .qc__estimate-note { margin-left: 0; text-align: left; max-width: none; }
}
.qc__cta-row { display: flex; gap: 12px; margin-top: 24px; flex-wrap: wrap; }

/* ═══ Reviews ═══ */
.reviews { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
@media (max-width: 720px) { .reviews { grid-template-columns: 1fr; } }
.review {
  padding: 32px; border: 1px solid var(--line); border-radius: 20px;
  background: #fff;
  display: flex; flex-direction: column; gap: 20px;
}
.review .stars { color: var(--maroon); display: inline-flex; gap: 2px; }
.review__quote {
  font-family: 'Rajdhani', sans-serif; font-weight: 500;
  font-size: 22px; line-height: 1.35; letter-spacing: -0.005em;
}
.review__author { display: flex; align-items: center; gap: 12px; margin-top: auto; padding-top: 16px; border-top: 1px solid var(--line); }
.review__avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--maroon-tint); color: var(--maroon);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Rajdhani', sans-serif; font-weight: 600; font-size: 14px;
  flex-shrink: 0;
}
.review__avatar--img {
  object-fit: cover;
  background: var(--bg-warm);
  display: block;
}
.review__name { font-weight: 600; font-size: 14px; }
.review__city { font-size: 12px; color: var(--ink-3); }

.review-summary {
  display: inline-flex; align-items: center; gap: 16px;
  padding: 12px 20px; border-radius: 999px;
  background: #fff; border: 1px solid var(--line);
  margin-bottom: 24px;
}
.review-summary__num {
  font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 22px;
}
.review-summary__sep { width: 1px; height: 16px; background: var(--line-2); }
.review-summary__count { font-size: 13px; color: var(--ink-3); }
.review-summary .stars { color: var(--maroon); }

/* ═══ Service area map ═══ */
.area {
  background: var(--bg-warm); padding: 100px 0;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.area__inner { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: center; }
@media (max-width: 900px) { .area__inner { grid-template-columns: 1fr; } }

.area__map {
  position: relative; aspect-ratio: 1/1;
  background: #1a1a1a; border-radius: 24px;
  overflow: hidden; border: 1px solid var(--line);
}
.area__map svg { width: 100%; height: 100%; display: block; }
.area__map-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.area__map-tint {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.35) 100%);
  pointer-events: none;
}
.area__map-caption {
  position: absolute; bottom: 16px; left: 16px;
  font-family: 'JetBrains Mono', monospace; font-size: 10px;
  color: var(--ink); text-transform: uppercase; letter-spacing: 0.08em;
  background: rgba(255,255,255,0.92);
  padding: 6px 10px; border-radius: 6px;
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.area__pin {
  position: absolute; transform: translate(-50%, -100%);
  display: flex; flex-direction: column; align-items: center;
  cursor: pointer; z-index: 2;
}
.area__pin-dot {
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--maroon); border: 3px solid #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
  transition: all 0.2s;
}
.area__pin:hover .area__pin-dot { transform: scale(1.4); }
.area__pin-pulse {
  position: absolute; top: 0; width: 14px; height: 14px; border-radius: 50%;
  background: var(--maroon); animation: ping 2s infinite;
}
@keyframes ping {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(3); opacity: 0; }
}
.area__pin-label {
  margin-top: 6px; padding: 4px 10px;
  background: var(--ink); color: #fff; border-radius: 6px;
  font-family: 'Rajdhani', sans-serif; font-weight: 600; font-size: 12px;
  white-space: nowrap; opacity: 0; transition: opacity 0.2s;
}
.area__pin:hover .area__pin-label { opacity: 1; }
.area__pin--active .area__pin-dot { background: var(--gold); transform: scale(1.3); }
.area__pin--active .area__pin-label { opacity: 1; }

.area__cities { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin-top: 32px; border-top: 1px solid var(--line); }
.area__city {
  padding: 20px 0; border-bottom: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between;
  transition: padding-left 0.2s;
}
.area__city:nth-child(odd) { border-right: 1px solid var(--line); padding-right: 24px; }
.area__city:nth-child(even) { padding-left: 24px; }
.area__city:hover { padding-left: 8px; }
.area__city:nth-child(even):hover { padding-left: 32px; }
.area__city-name { font-family: 'Rajdhani', sans-serif; font-weight: 600; font-size: 20px; }
.area__city-zip { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--ink-3); }

/* ═══ Footer ═══ */
.footer { background: var(--ink); color: rgba(255,255,255,0.7); padding: 80px 0 32px; margin-top: 0; }
.footer__top {
  max-width: 1280px; margin: 0 auto; padding: 0 32px;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
}
@media (max-width: 820px) { .footer__top { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 520px) { .footer__top { grid-template-columns: 1fr; } }
.footer__brand p { margin-top: 20px; max-width: 320px; line-height: 1.5; font-size: 14px; }
.footer__phone { margin-top: 24px; display: flex; flex-direction: column; gap: 4px; }
.footer__phone a { font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 24px; color: #fff; }
.footer__phone span { font-size: 12px; color: rgba(255,255,255,0.4); }
.footer__col h4 {
  font-family: 'Rajdhani', sans-serif; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em; font-size: 13px;
  color: #fff; margin-bottom: 18px;
}
.footer__col a { display: block; font-size: 14px; padding: 4px 0; transition: color 0.15s; }
.footer__col a:hover { color: #FCA5A5; }
.footer__bottom {
  max-width: 1280px; margin: 64px auto 0; padding: 24px 32px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 12px; color: rgba(255,255,255,0.4);
}

/* ═══ City page ═══ */
.city-hero {
  background: var(--bg); padding: 64px 0 40px;
  border-bottom: 1px solid var(--line);
}
.city-hero__crumb {
  font-family: 'JetBrains Mono', monospace; font-size: 12px;
  color: var(--ink-3); margin-bottom: 24px;
}
.city-hero__crumb a:hover { color: var(--maroon); }
.city-hero__h1 {
  font-family: 'Rajdhani', sans-serif; font-weight: 700;
  font-size: clamp(44px, 6vw, 80px); line-height: 0.95; letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.city-hero__h1 em { font-style: normal; color: var(--maroon); }
.city-hero__row {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; align-items: center;
}
@media (max-width: 820px) { .city-hero__row { grid-template-columns: 1fr; } }
.city-hero__sub { font-size: 18px; color: var(--ink-2); max-width: 540px; line-height: 1.55; }
.city-hero__cta { margin-top: 32px; display: flex; gap: 12px; flex-wrap: wrap; }

.city-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border: 1px solid var(--line); border-radius: 20px; overflow: hidden;
  background: #fff;
}
@media (max-width: 720px) { .city-stats { grid-template-columns: 1fr 1fr; } }
.city-stat { padding: 28px; border-right: 1px solid var(--line); }
.city-stat:last-child { border-right: none; }
@media (max-width: 720px) {
  .city-stat:nth-child(2) { border-right: none; }
  .city-stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}
.city-stat__num {
  font-family: 'Rajdhani', sans-serif; font-weight: 700;
  font-size: 36px; line-height: 1; color: var(--maroon);
}
.city-stat__label { font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-3); margin-top: 8px; }
.city-stat__sub { font-size: 13px; color: var(--ink-2); margin-top: 4px; }

.zips {
  background: var(--bg-warm); padding: 28px; border-radius: 16px;
  margin-top: 24px;
}
.zips__label { font-family: 'JetBrains Mono', monospace; font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-3); margin-bottom: 12px; }
.zips__list { display: flex; flex-wrap: wrap; gap: 8px; }
.zips__list span {
  padding: 6px 12px; background: #fff; border: 1px solid var(--line);
  border-radius: 6px; font-family: 'JetBrains Mono', monospace; font-size: 13px;
}

/* neighborhoods strip */
.hoods { padding: 60px 0; border-bottom: 1px solid var(--line); }
.hoods__title { font-family: 'Rajdhani', sans-serif; font-weight: 600; font-size: 22px; margin-bottom: 24px; color: var(--ink-3); }
.hoods__list { display: flex; gap: 40px; flex-wrap: wrap; }
.hoods__list span { font-family: 'Rajdhani', sans-serif; font-weight: 600; font-size: 28px; color: var(--ink); }
.hoods__list span:nth-child(even) { color: var(--maroon); }

/* ═══ Quote page (multi-step) ═══ */
.quote-page { background: var(--bg); min-height: 100vh; padding: 60px 0 100px; }
.quote-shell {
  max-width: 880px; margin: 0 auto; background: #fff;
  border: 1px solid var(--line); border-radius: 28px; overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.06);
}
.quote-progress {
  display: flex; padding: 24px 40px; border-bottom: 1px solid var(--line);
  gap: 16px; align-items: center;
}
.quote-progress__step {
  display: flex; align-items: center; gap: 10px; font-size: 13px;
  font-family: 'Rajdhani', sans-serif; font-weight: 600;
  color: var(--ink-3); text-transform: uppercase; letter-spacing: 0.08em;
}
.quote-progress__num {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--bg-warm); color: var(--ink-3);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
}
.quote-progress__step--active .quote-progress__num { background: var(--maroon); color: #fff; }
.quote-progress__step--active { color: var(--ink); }
.quote-progress__step--done .quote-progress__num { background: var(--ink); color: #fff; }
.quote-progress__bar { flex: 1; height: 1px; background: var(--line); }

.quote-body { padding: 56px 40px; }
.quote-body h2 {
  font-family: 'Rajdhani', sans-serif; font-weight: 600;
  font-size: 40px; line-height: 1; letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.quote-body .eyebrow { margin-bottom: 16px; }
.quote-body p.lede { color: var(--ink-2); margin-bottom: 36px; max-width: 560px; }

.opt-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
@media (max-width: 600px) { .opt-grid { grid-template-columns: 1fr; } }
.opt {
  padding: 24px; border: 1px solid var(--line); border-radius: 16px;
  background: #fff; cursor: pointer; transition: all 0.15s;
  display: flex; flex-direction: column; gap: 8px; text-align: left;
}
.opt:hover { border-color: var(--ink-3); }
.opt--active { border-color: var(--maroon); background: #FFF8F8; }
.opt__num {
  font-family: 'Rajdhani', sans-serif; font-weight: 600;
  font-size: 12px; color: var(--maroon); letter-spacing: 0.1em; text-transform: uppercase;
}
.opt__title { font-family: 'Rajdhani', sans-serif; font-weight: 600; font-size: 22px; line-height: 1.1; }
.opt__sub { font-size: 13px; color: var(--ink-3); }

.input {
  width: 100%; padding: 16px 18px; border: 1px solid var(--line);
  border-radius: 12px; background: #fff; font-size: 15px; font-family: inherit;
  transition: border-color 0.15s;
}
.input:focus { outline: none; border-color: var(--maroon); }
.input-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
@media (max-width: 540px) { .input-row { grid-template-columns: 1fr; } }
.input-label {
  display: block; font-family: 'Rajdhani', sans-serif; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em; font-size: 11px;
  color: var(--ink-3); margin-bottom: 8px;
}

.quote-foot {
  padding: 24px 40px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  background: var(--bg);
}
.quote-foot__est {
  display: flex; flex-direction: column; gap: 2px;
}
.quote-foot__est-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-3); font-family: 'Rajdhani', sans-serif; font-weight: 600; }
.quote-foot__est-num {
  font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 28px;
  white-space: nowrap;
}

@media (max-width: 720px) {
  .quote-foot {
    flex-wrap: wrap; gap: 14px;
    padding: 20px 24px;
  }
  .quote-foot__est {
    order: -1;
    flex-basis: 100%;
    align-items: center;
    text-align: center;
  }
  .quote-foot .btn { flex: 1 1 0; min-width: 0; padding-left: 14px; padding-right: 14px; }
  .quote-foot__est-num { font-size: 24px; }
}

/* success */
.quote-success { padding: 80px 40px; text-align: center; }
.quote-success__check {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--maroon); color: #fff;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px; font-size: 32px;
}
.quote-success h2 { font-family: 'Rajdhani', sans-serif; font-weight: 600; font-size: 44px; line-height: 1; margin-bottom: 12px; }
.quote-success p { color: var(--ink-2); max-width: 480px; margin: 0 auto 32px; }

/* trust strip */
.trust-strip {
  display: flex; justify-content: center; gap: 48px; padding: 32px 0;
  border-bottom: 1px solid var(--line);
  background: var(--bg);
  flex-wrap: wrap;
}
.trust-strip__item {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Rajdhani', sans-serif; font-weight: 600;
  font-size: 13px; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--ink-3);
}
.trust-strip__item svg { color: var(--maroon); }

/* ═══ CTA band ═══ */
.cta-band {
  background: var(--maroon); color: #fff; padding: 80px 0;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; right: -10%; top: -50%; width: 60%; height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.06), transparent 70%);
}
.cta-band__inner { display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; align-items: center; position: relative; }
@media (max-width: 820px) { .cta-band__inner { grid-template-columns: 1fr; } }
.cta-band h2 {
  font-family: 'Rajdhani', sans-serif; font-weight: 600;
  font-size: clamp(36px, 5vw, 56px); line-height: 1; letter-spacing: -0.015em;
}
.cta-band p { color: rgba(255,255,255,0.8); margin-top: 16px; max-width: 440px; }
.cta-band__actions { display: flex; flex-direction: column; gap: 16px; }
.cta-band__phone {
  display: flex; flex-direction: column; gap: 4px;
  padding: 24px; background: rgba(0,0,0,0.2); border-radius: 16px;
  backdrop-filter: blur(6px);
}
.cta-band__phone-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.6); font-family: 'Rajdhani', sans-serif; font-weight: 600; }
.cta-band__phone-num { font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 36px; line-height: 1; }
.cta-band__phone-sub { font-size: 12px; color: rgba(255,255,255,0.6); }

/* ═══ stats strip on home ═══ */
.stats-strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
@media (max-width: 720px) { .stats-strip { grid-template-columns: 1fr 1fr; } }
.stats-strip__item {
  padding: 32px; border-right: 1px solid var(--line);
}
.stats-strip__item:last-child { border-right: none; }
@media (max-width: 720px) {
  .stats-strip__item:nth-child(2) { border-right: none; }
  .stats-strip__item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}
.stats-strip__num {
  font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 48px; line-height: 1;
  letter-spacing: -0.02em;
}
.stats-strip__label { font-size: 13px; color: var(--ink); margin-top: 8px; font-weight: 500; }
.stats-strip__sub { font-size: 12px; color: var(--ink-3); margin-top: 4px; }

/* mono utility */
.mono { font-family: 'JetBrains Mono', monospace; }

/* ═══ Before/After slider ═══ */
.ba {
  position: relative; aspect-ratio: 4/5; border-radius: 24px; overflow: hidden;
  border: 1px solid var(--line);
  user-select: none; cursor: ew-resize;
  background: #1a1a1a;
}
.ba__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}
.ba__after { position: absolute; inset: 0; }
.ba__handle {
  position: absolute; top: 0; bottom: 0;
  width: 2px; background: #fff;
  transform: translateX(-50%);
  pointer-events: none;
  box-shadow: 0 0 20px rgba(0,0,0,0.4);
}
.ba__handle-line { display: none; }
.ba__handle-circle {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 48px; height: 48px; border-radius: 50%;
  background: #fff; color: var(--maroon);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}
.ba__tag {
  position: absolute; top: 16px; z-index: 2;
  font-family: 'Rajdhani', sans-serif; font-weight: 600;
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em;
  padding: 6px 10px; border-radius: 6px;
  backdrop-filter: blur(8px);
  pointer-events: none;
}
.ba__tag--before { left: 16px; background: rgba(0,0,0,0.6); color: #fff; }
.ba__tag--after { right: 16px; background: rgba(122,26,26,0.85); color: #fff; }
.ba__card {
  position: absolute; bottom: 16px; left: 16px; right: 16px;
  background: rgba(255,255,255,0.95); padding: 14px 18px; border-radius: 14px;
  backdrop-filter: blur(12px);
  display: flex; align-items: center; gap: 12px;
  pointer-events: none;
  z-index: 2;
}
.ba__card-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--maroon-tint); color: var(--maroon);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 14px;
  flex-shrink: 0;
}
.ba__card-text strong { display: block; font-family: 'Rajdhani', sans-serif; font-size: 15px; }
.ba__card-text span { font-size: 12px; color: var(--ink-3); }

/* ═══ Chamber section ═══ */
.chamber {
  padding: 100px 0; background: var(--bg);
  border-top: 1px solid var(--line);
}
.chamber__inner {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: center;
}
@media (max-width: 820px) {
  .chamber__inner { grid-template-columns: 1fr; gap: 32px; }
  .chamber { padding: 60px 0; }
}
.chamber__badge {
  background: #fff; border: 1px solid var(--line); border-radius: 24px;
  padding: 48px; display: flex; align-items: center; justify-content: center;
  aspect-ratio: 1.1/1; transition: transform 0.3s ease;
}
.chamber__badge:hover { transform: translateY(-4px); }
.chamber__badge img { max-width: 80%; height: auto; }

/* ═══ Footer additions ═══ */
.footer__hours {
  margin-top: 24px; padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; flex-direction: column; gap: 6px;
  font-size: 13px; max-width: 240px;
}
.footer__hours-row {
  display: flex; justify-content: space-between;
  color: rgba(255,255,255,0.7);
}
.footer__hours-row span:first-child { font-family: 'Rajdhani', sans-serif; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; font-size: 11px; color: rgba(255,255,255,0.5); }
.footer__chamber {
  display: flex; gap: 14px; align-items: center;
  margin-top: 28px; padding: 14px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  transition: background 0.15s;
  max-width: 320px;
}
.footer__chamber:hover { background: rgba(255,255,255,0.07); }
.footer__chamber img { width: 56px; height: auto; flex-shrink: 0; background: #fff; padding: 6px; border-radius: 8px; }
.footer__chamber strong { display: block; color: #fff; font-family: 'Rajdhani', sans-serif; font-weight: 600; font-size: 14px; }
.footer__chamber span { font-size: 11px; color: rgba(255,255,255,0.6); }

/* Footer hours + social */
.footer__hours {
  margin-top: 24px; padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; flex-direction: column; gap: 6px;
  font-size: 13px; max-width: 280px;
}
.footer__hours-row { display: flex; justify-content: space-between; color: rgba(255,255,255,0.7); }
.footer__hours-row span:first-child { font-family: 'Rajdhani', sans-serif; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; font-size: 11px; color: rgba(255,255,255,0.5); }
.footer__social {
  display: flex; gap: 8px; margin-top: 24px; flex-wrap: wrap;
}
.footer__social a {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 12px; border-radius: 999px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.85); font-size: 12px;
  font-family: 'Rajdhani', sans-serif; font-weight: 600; letter-spacing: 0.04em;
  transition: all 0.15s;
}
.footer__social a:hover { background: var(--maroon); border-color: var(--maroon); color: #fff; }
