/* ==========================================================================
   True Shines Cleaning · Variant G · Prosumer / Healthcare-Grade
   Palette: pure white #ffffff + sterile teal #0d9488 + signal yellow #fbbf24
   Type:    Manrope (display + body)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&display=swap');

/* -- Reset ------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; border: none; background: none; cursor: pointer; color: inherit; }
ul, ol { list-style: none; }
input, select, textarea { font: inherit; color: inherit; }

/* -- Tokens ------------------------------------------------------------ */
:root {
  --bg: #ffffff;
  --bg-tint: #f8fafc;
  --bg-strip: #f1f5f9;
  --ink: #0f172a;
  --ink-soft: #475569;
  --ink-mute: #64748b;
  --line: #e2e8f0;
  --line-soft: #f1f5f9;

  --teal: #0d9488;
  --teal-700: #0f766e;
  --teal-50: #f0fdfa;
  --teal-100: #ccfbf1;
  --teal-ink: #134e4a;

  --yellow: #fbbf24;
  --yellow-700: #d97706;
  --yellow-ink: #422006;

  --shield: #0d9488;

  --radius: 6px;
  --radius-lg: 12px;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 20px 40px -12px rgba(15, 23, 42, 0.12);

  --max: 1280px;
  --gutter: 24px;

  --tr: 220ms cubic-bezier(.2,.7,.2,1);
}

/* -- Container --------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* -- Typography -------------------------------------------------------- */
.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  padding: 6px 12px;
  background: var(--teal-50);
  border: 1px solid var(--teal-100);
  border-radius: 999px;
}
.eyebrow--yellow {
  color: var(--yellow-ink);
  background: var(--yellow);
  border-color: var(--yellow);
}

h1, h2, h3, h4 {
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--ink);
}
h1 { font-size: clamp(36px, 5.5vw, 64px); }
h2 { font-size: clamp(28px, 3.5vw, 44px); line-height: 1.1; }
h3 { font-size: clamp(20px, 2vw, 24px); line-height: 1.2; font-weight: 700; }
h4 { font-size: 16px; font-weight: 700; }
p  { color: var(--ink-soft); }

.lede {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 64ch;
}

/* -- Claim stamp (top of every page) ----------------------------------- */
.stamp {
  display: inline-block;
  padding: 10px 22px;
  background: var(--yellow);
  color: var(--yellow-ink);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 2px solid var(--ink);
  border-radius: 4px;
  box-shadow: 3px 3px 0 0 var(--ink);
  transform: rotate(-2deg);
}
.stamp--vertical {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.stamp--lg { font-size: 18px; padding: 14px 30px; }

/* -- Buttons ----------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  border-radius: var(--radius);
  border: 2px solid transparent;
  transition: all var(--tr);
  white-space: nowrap;
}
.btn--primary {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
}
.btn--primary:hover { background: var(--teal-700); border-color: var(--teal-700); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: #fff; }
.btn--yellow {
  background: var(--yellow);
  color: var(--yellow-ink);
  border-color: var(--yellow);
}
.btn--yellow:hover { background: #f59e0b; border-color: #f59e0b; }
.btn--lg { padding: 18px 32px; font-size: 15px; }
.btn--block { width: 100%; }

/* -- Top claim strip (above header) ------------------------------------ */
.top-claim {
  background: var(--ink);
  color: #fff;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 8px var(--gutter);
  position: relative;
  z-index: 60;
}
.top-claim a { color: var(--yellow); }
.top-claim .stamp { margin-right: 18px; vertical-align: middle; }

/* -- Service-area band (above fold) ------------------------------------ */
.area-band {
  background: var(--bg-strip);
  border-bottom: 1px solid var(--line);
  padding: 8px 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
  text-align: center;
}
.area-band strong { color: var(--ink); font-weight: 700; }
.area-band span { padding: 0 8px; color: var(--line); }

/* -- Header / Nav ------------------------------------------------------ */
.nav {
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(8px);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 24px;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.nav__brand-mark {
  width: 36px;
  height: 36px;
  background: var(--teal);
  color: #fff;
  display: grid;
  place-items: center;
  border-radius: 6px;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.05em;
}
.nav__brand small {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
}
.nav__links {
  display: none;
  gap: 4px;
  align-items: center;
}
.nav__link {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
  border-radius: var(--radius);
  transition: color var(--tr), background var(--tr);
}
.nav__link:hover, .nav__link.is-active { color: var(--teal); background: var(--teal-50); }
.nav__cta {
  display: none;
  align-items: center;
  gap: 8px;
}
.nav__phone {
  display: none;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}
.nav__phone svg { display: inline-block; vertical-align: -3px; margin-right: 4px; }

.nav__burger {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.nav__burger span,
.nav__burger span::before,
.nav__burger span::after {
  content: '';
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  position: relative;
  transition: transform var(--tr);
}
.nav__burger span::before { position: absolute; top: -6px; }
.nav__burger span::after  { position: absolute; top:  6px; }
.nav__burger[aria-expanded="true"] span { background: transparent; }
.nav__burger[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav__burger[aria-expanded="true"] span::after  { top: 0; transform: rotate(-45deg); }

/* mobile drawer */
.nav__drawer {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.4);
  z-index: 70;
  display: none;
}
.nav__drawer.is-open { display: block; }
.nav__drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(320px, 88vw);
  height: 100%;
  background: var(--bg);
  padding: 80px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-shadow: -10px 0 30px rgba(15,23,42,.15);
  overflow-y: auto;
}
.nav__drawer-panel a {
  padding: 14px 0;
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  border-bottom: 1px solid var(--line-soft);
}
.nav__drawer-panel .btn { margin-top: 16px; }
body.nav-locked { overflow: hidden; }

/* -- Hero -------------------------------------------------------------- */
.hero {
  position: relative;
  padding: 56px 0 72px;
  background: var(--bg);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 8%;
  right: -10%;
  width: 540px;
  height: 540px;
  background: radial-gradient(circle, var(--teal-100) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 40px;
  align-items: center;
}
.hero__stamp-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.hero__eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
}
.hero h1 {
  margin: 8px 0 20px;
  color: var(--ink);
}
.hero h1 .accent { color: var(--teal); }
.hero h1 .strike {
  position: relative;
  display: inline-block;
}
.hero h1 .strike::after {
  content: '';
  position: absolute;
  left: -2px;
  right: -2px;
  bottom: 6px;
  height: 12px;
  background: var(--yellow);
  z-index: -1;
  opacity: 0.7;
}
.hero__lede {
  margin-bottom: 28px;
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 56ch;
}
.hero__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--ink-soft);
}
.hero__meta strong { color: var(--ink); font-weight: 700; display: block; font-size: 18px; }

.hero__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
  background: var(--bg-strip);
}
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__media-tag {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow);
  font-size: 13px;
  font-weight: 600;
}
.hero__media-tag-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 4px var(--teal-100);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero__24h-stamp {
  position: absolute;
  top: -16px;
  right: -16px;
  z-index: 2;
}

/* -- Compliance badges wall ------------------------------------------- */
.compliance {
  padding: 56px 0;
  background: var(--bg-tint);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.compliance__head {
  text-align: center;
  margin-bottom: 32px;
}
.compliance__head .eyebrow { margin-bottom: 12px; }
.compliance__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.compliance__badge {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: all var(--tr);
}
.compliance__badge:hover { border-color: var(--teal); transform: translateY(-2px); box-shadow: var(--shadow); }
.compliance__badge-icon {
  width: 44px;
  height: 50px;
  position: relative;
  color: var(--teal);
}
.compliance__badge-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.04em;
}
.compliance__badge-sub {
  font-size: 11px;
  color: var(--ink-mute);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* -- Section shell ----------------------------------------------------- */
.section { padding: 80px 0; }
.section--alt { background: var(--bg-tint); }
.section--ink { background: var(--ink); color: #fff; }
.section--ink h2, .section--ink h3, .section--ink p { color: inherit; }
.section--ink p { color: rgba(255,255,255,.7); }

.section__head {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
}
.section__head .eyebrow { margin-bottom: 14px; }
.section__head .lede { margin: 16px auto 0; }

/* -- Service category cards -------------------------------------------- */
.services {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
.service-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--tr);
  position: relative;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  border-color: var(--teal);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.service-card__media {
  aspect-ratio: 16 / 10;
  background: var(--bg-strip);
  overflow: hidden;
  position: relative;
}
.service-card__media img { width: 100%; height: 100%; object-fit: cover; }
.service-card__body { padding: 24px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.service-card__icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  background: var(--teal-50);
  color: var(--teal);
  display: grid;
  place-items: center;
}
.service-card__title { font-size: 19px; font-weight: 700; color: var(--ink); }
.service-card__desc { font-size: 14px; color: var(--ink-soft); line-height: 1.55; }
.service-card__price {
  margin-top: auto;
  font-size: 13px;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: 0.04em;
}
.service-card__flag {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--yellow);
  color: var(--yellow-ink);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1.5px solid var(--ink);
}

/* -- 3-step process ---------------------------------------------------- */
.process {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  counter-reset: step;
}
.process__step {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  position: relative;
  counter-increment: step;
}
.process__step::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 56px;
  font-weight: 800;
  color: var(--teal);
  opacity: 0.18;
  line-height: 1;
  letter-spacing: -0.04em;
}
.process__step h3 { margin-bottom: 8px; padding-right: 60px; }
.process__step p { font-size: 14px; }

/* -- Quote calculator -------------------------------------------------- */
.calc {
  background: linear-gradient(135deg, #fff 0%, var(--teal-50) 100%);
  border: 2px solid var(--teal);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  position: relative;
  overflow: hidden;
}
.calc::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, var(--yellow) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0.3;
  pointer-events: none;
}
.calc__head { margin-bottom: 28px; position: relative; }
.calc__head h2 { margin-bottom: 8px; }
.calc__row { margin-bottom: 28px; }
.calc__label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 12px;
}
.calc__value {
  font-size: 22px;
  font-weight: 800;
  color: var(--teal);
  letter-spacing: -0.02em;
}
.calc__slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 999px;
  outline: none;
  cursor: pointer;
}
.calc__slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  background: var(--teal);
  border: 3px solid #fff;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(13, 148, 136, 0.4);
  transition: transform var(--tr);
}
.calc__slider::-webkit-slider-thumb:hover { transform: scale(1.15); }
.calc__slider::-moz-range-thumb {
  width: 24px;
  height: 24px;
  background: var(--teal);
  border: 3px solid #fff;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(13, 148, 136, 0.4);
}
.calc__select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%230d9488' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.calc__select:focus { outline: 2px solid var(--teal); outline-offset: 2px; }
.calc__result {
  background: var(--ink);
  color: #fff;
  padding: 24px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 24px;
}
.calc__result-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-100);
}
.calc__result-price {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
}
.calc__result-price small { font-size: 14px; color: var(--teal-100); font-weight: 500; }
.calc__result-note {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  margin-top: 6px;
}
.calc__cta { margin-top: 16px; }

/* -- Promise strip ----------------------------------------------------- */
.promise {
  background: var(--ink);
  color: #fff;
  padding: 48px 0;
  position: relative;
  overflow: hidden;
}
.promise::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}
.promise__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  text-align: center;
}
.promise h2 { color: #fff; margin-bottom: 8px; }
.promise p { color: rgba(255,255,255,0.7); max-width: 52ch; }
.promise__ctas { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

/* -- Trust strip / partners ------------------------------------------- */
.trust {
  padding: 32px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg);
  text-align: center;
}
.trust__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 18px;
}
.trust__partners {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px 20px;
  align-items: center;
  justify-items: center;
  margin-bottom: 24px;
}
.partner-logo {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 14px;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
  opacity: 0.7;
  transition: opacity var(--tr);
}
.partner-logo:hover { opacity: 1; }
.partner-logo svg { width: 22px; height: 22px; }

.trust__strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
}
.trust__strip span { color: var(--line); }

/* -- Testimonials ------------------------------------------------------ */
.testimonials {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
.t-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
}
.t-card__stars {
  color: var(--yellow);
  font-size: 18px;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}
.t-card__quote {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 20px;
}
.t-card__person {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--line-soft);
  padding-top: 16px;
}
.t-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}
.t-card__meta { font-size: 13px; }
.t-card__name { font-weight: 700; color: var(--ink); }
.t-card__where { color: var(--ink-mute); font-size: 12px; }

/* -- CTA section ------------------------------------------------------- */
.cta {
  background: var(--ink);
  color: #fff;
  padding: 64px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--teal) 0%, transparent 60%);
  opacity: 0.25;
  pointer-events: none;
}
.cta__inner { position: relative; }
.cta h2 { color: #fff; margin-bottom: 12px; }
.cta p { color: rgba(255,255,255,0.75); max-width: 52ch; margin: 0 auto 28px; }
.cta__buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* -- Footer ------------------------------------------------------------ */
.footer {
  background: var(--bg-tint);
  border-top: 1px solid var(--line);
  padding: 56px 0 24px;
  font-size: 14px;
  color: var(--ink-soft);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 40px;
}
.footer__brand { font-size: 17px; font-weight: 800; color: var(--ink); margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.footer__brand-mark { width: 32px; height: 32px; background: var(--teal); color: #fff; display: grid; place-items: center; border-radius: 6px; font-weight: 800; font-size: 12px; }
.footer__col h4 { font-size: 12px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink); margin-bottom: 14px; }
.footer__col ul li { margin-bottom: 8px; }
.footer__col a { color: var(--ink-soft); transition: color var(--tr); }
.footer__col a:hover { color: var(--teal); }
.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--ink-mute);
  text-align: center;
}

/* -- Reveal animation -------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__media-tag-dot { animation: none; }
}

/* ==========================================================================
   Page-specific: index
   ========================================================================== */

/* ==========================================================================
   Page-specific: services
   ========================================================================== */
.pricing-table {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 48px;
}
.pricing-table table { width: 100%; border-collapse: collapse; }
.pricing-table th, .pricing-table td {
  padding: 16px 20px;
  text-align: left;
  font-size: 14px;
  border-bottom: 1px solid var(--line-soft);
}
.pricing-table th {
  background: var(--bg-tint);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
}
.pricing-table td { color: var(--ink-soft); }
.pricing-table td.price {
  font-weight: 700;
  color: var(--teal);
  text-align: right;
  white-space: nowrap;
}
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table tr:hover td { background: var(--teal-50); }

.includes-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
  margin: 12px 0 0;
  padding: 0;
}
.includes-list li {
  font-size: 13px;
  color: var(--ink-soft);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.4;
}
.includes-list li::before {
  content: '✓';
  color: var(--teal);
  font-weight: 800;
  flex-shrink: 0;
}

/* ==========================================================================
   Page-specific: about
   ========================================================================== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.team-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: center;
  transition: all var(--tr);
}
.team-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.team-card__photo {
  aspect-ratio: 1;
  background: var(--bg-strip);
  position: relative;
  overflow: hidden;
}
.team-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card__body { padding: 20px 16px; }
.team-card__name { font-weight: 700; color: var(--ink); font-size: 16px; }
.team-card__role {
  font-size: 12px;
  color: var(--teal);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 4px 0 8px;
}
.team-card__bio { font-size: 13px; color: var(--ink-soft); line-height: 1.5; }

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.value-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  position: relative;
}
.value-card__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: var(--teal-50);
  color: var(--teal);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}
.value-card h3 { font-size: 18px; margin-bottom: 8px; }
.value-card p { font-size: 14px; }

.docs-block {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.docs-block h3 { margin-bottom: 16px; }
.docs-list { display: grid; grid-template-columns: 1fr; gap: 8px; }
.docs-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: var(--bg-tint);
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--ink);
}
.docs-list li svg { color: var(--teal); flex-shrink: 0; }
.docs-list li strong { font-weight: 600; }

/* ==========================================================================
   Page-specific: reviews
   ========================================================================== */
.reviews-hero {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-700) 100%);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.reviews-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}
.reviews-hero__inner { position: relative; }
.reviews-hero .eyebrow { background: rgba(255,255,255,0.15); color: #fff; border-color: rgba(255,255,255,0.3); }
.reviews-hero h1 { color: #fff; margin: 16px 0; }
.reviews-hero p { color: rgba(255,255,255,0.85); }
.reviews-hero__stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 40px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.2);
}
.reviews-hero__stat strong {
  display: block;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.reviews-hero__stat span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

.platform-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}
.platform-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 8px 14px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
}
.platform-badge strong { font-weight: 800; }

/* before/after slider */
.ba {
  position: relative;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-lg);
  overflow: hidden;
  user-select: none;
  border: 1px solid var(--line);
  background: var(--bg-strip);
  touch-action: none;
}
.ba__pane {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.ba__pane img { width: 100%; height: 100%; object-fit: cover; }
.ba__pane--after { clip-path: inset(0 0 0 50%); }
.ba__pane-label {
  position: absolute;
  top: 16px;
  padding: 6px 12px;
  background: var(--ink);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 999px;
}
.ba__pane--before .ba__pane-label { left: 16px; background: var(--ink); }
.ba__pane--after  .ba__pane-label { right: 16px; background: var(--teal); }
.ba__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: #fff;
  transform: translateX(-50%);
  pointer-events: none;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.1);
}
.ba__handle-knob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  background: var(--bg);
  border: 3px solid var(--teal);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--teal);
  pointer-events: auto;
  cursor: ew-resize;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.numbers-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
}
.numbers-card__n {
  font-size: 36px;
  font-weight: 800;
  color: var(--teal);
  letter-spacing: -0.03em;
  line-height: 1;
}
.numbers-card__l {
  margin-top: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* ==========================================================================
   Page-specific: contact
   ========================================================================== */
.dual-cta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 48px;
}
.dual-cta__card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
}
.dual-cta__card--accent { background: var(--teal); color: #fff; border-color: var(--teal); }
.dual-cta__card--accent h3, .dual-cta__card--accent p { color: inherit; }
.dual-cta__card--accent p { color: rgba(255,255,255,0.85); }
.dual-cta__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--teal-50);
  color: var(--teal);
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
}
.dual-cta__card--accent .dual-cta__icon { background: rgba(255,255,255,0.2); color: #fff; }
.dual-cta__card h3 { margin-bottom: 8px; }
.dual-cta__card p { font-size: 14px; margin-bottom: 16px; }

.contact-form {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
}
.contact-form h2 { margin-bottom: 8px; }
.contact-form .lede { margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 12px; margin-bottom: 12px; }
.form-field label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 6px;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
  font-size: 15px;
  color: var(--ink);
  font-family: inherit;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { outline: 2px solid var(--teal); outline-offset: 2px; border-color: var(--teal); }
.form-field textarea { min-height: 120px; resize: vertical; }

.neighborhoods {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  font-size: 14px;
}
.neighborhoods li {
  padding: 8px 12px;
  background: var(--bg-tint);
  border-radius: var(--radius);
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 6px;
}
.neighborhoods li::before { content: '•'; color: var(--teal); font-size: 18px; line-height: 0; }
.neighborhoods li.emphasis {
  background: var(--teal-50);
  font-weight: 600;
  grid-column: 1 / -1;
  border: 1px solid var(--teal-100);
}
.neighborhoods li.emphasis::before { content: '★'; color: var(--teal); }

.hours-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  font-size: 14px;
}
.hours-card h3 { margin-bottom: 16px; }
.hours-card__row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--line-soft);
}
.hours-card__row:last-child { border-bottom: none; }
.hours-card__row strong { color: var(--ink); font-weight: 600; }
.hours-card__row .closed { color: var(--ink-mute); font-style: italic; }

.map-embed {
  background: var(--bg-strip);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  height: 280px;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  text-align: center;
  background-image: linear-gradient(45deg, #e2e8f0 25%, transparent 25%),
                    linear-gradient(-45deg, #e2e8f0 25%, transparent 25%),
                    linear-gradient(45deg, transparent 75%, #e2e8f0 75%),
                    linear-gradient(-45deg, transparent 75%, #e2e8f0 75%);
  background-size: 20px 20px;
  background-position: 0 0, 0 10px, 10px -10px, -10px 0;
}
.map-embed__pin {
  background: var(--bg);
  border: 2px solid var(--teal);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}
.map-embed__pin small { display: block; color: var(--ink-mute); font-weight: 500; margin-top: 4px; }

.faq { max-width: 760px; margin: 0 auto; }
.faq__item {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 8px;
  overflow: hidden;
}
.faq__q {
  width: 100%;
  padding: 20px 24px;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  transition: background var(--tr);
}
.faq__q:hover { background: var(--bg-tint); }
.faq__q::after {
  content: '+';
  font-size: 24px;
  font-weight: 400;
  color: var(--teal);
  transition: transform var(--tr);
  margin-left: 16px;
}
.faq__item.is-open .faq__q::after { transform: rotate(45deg); }
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 24px;
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.65;
}
.faq__item.is-open .faq__a {
  max-height: 400px;
  padding: 0 24px 20px;
}

/* ==========================================================================
   Breakpoints — additive
   ========================================================================== */

/* >= 640px: small tablets */
@media (min-width: 640px) {
  .compliance__grid { grid-template-columns: repeat(3, 1fr); }
  .services { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .process { grid-template-columns: repeat(2, 1fr); }
  .numbers-grid { grid-template-columns: repeat(4, 1fr); }
  .neighborhoods { grid-template-columns: repeat(3, 1fr); }
  .form-row { grid-template-columns: 1fr 1fr; }
  .trust__partners { grid-template-columns: repeat(5, 1fr); }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
}

/* >= 860px: tablet landscape / small desktop */
@media (min-width: 860px) {
  .nav__links { display: flex; }
  .nav__burger { display: none; }
  .nav__cta { display: flex; }
  .nav__phone { display: inline-flex; align-items: center; }

  .hero { padding: 80px 0 96px; }
  .hero__inner { grid-template-columns: 1.1fr 1fr; gap: 64px; }
  .hero__media { aspect-ratio: 4 / 5; max-height: 600px; }

  .services { grid-template-columns: repeat(3, 1fr); }
  .process { grid-template-columns: repeat(3, 1fr); }
  .values-grid { grid-template-columns: repeat(4, 1fr); }
  .testimonials { grid-template-columns: repeat(2, 1fr); }
  .testimonials .t-card:first-child { grid-column: 1 / -1; }

  .footer__grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
  .footer__bottom { flex-direction: row; justify-content: space-between; text-align: left; }

  .dual-cta { grid-template-columns: 1fr 1fr; }
  .neighborhoods { grid-template-columns: repeat(4, 1fr); }
  .team-grid { grid-template-columns: repeat(3, 1fr); }

  .calc { padding: 56px 48px; }
  .calc__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
}

/* >= 1100px: desktop */
@media (min-width: 1100px) {
  :root { --gutter: 32px; }
  .compliance__grid { grid-template-columns: repeat(6, 1fr); }
  .services { grid-template-columns: repeat(3, 1fr); }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .neighborhoods { grid-template-columns: repeat(5, 1fr); }
  .testimonials { grid-template-columns: repeat(3, 1fr); }
  .testimonials .t-card:first-child { grid-column: auto; }
  .hero h1 { letter-spacing: -0.03em; }
  .hero__media { aspect-ratio: 5 / 6; }
}
