/* =========================================================
   Love Pool Care — Site CSS
   Revolut design DNA (pill buttons, Space Grotesk display,
   flat surfaces, near-black + white) with a single aqua
   accent used ONLY for CTAs, phone, and urgency markers.
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
  /* Revolut tokens */
  --rui-dark: #191c1f;
  --rui-white: #ffffff;
  --rui-surface: #f4f4f4;
  --rui-border: #e8e8ea;
  --rui-border-strong: #c9c9cd;
  --rui-mid: #505a63;
  --rui-cool: #8d969e;

  /* Niche accent — used sparingly */
  --ar-accent: #00C2E0;      /* CTA / phone */
  --ar-accent-dark: #00A8C2;
  --ar-primary: #0A3D5C;     /* Deep water — used very sparingly */

  --font-display: 'Aeonik Pro', 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;

  --max-w: 1280px;
  --gutter: clamp(20px, 5vw, 80px);

  --focus-ring: 0 0 0 3px rgba(0, 194, 224, 0.45);
}

* { box-sizing: border-box; }
*::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.50;
  letter-spacing: 0.24px;
  color: var(--rui-dark);
  background: var(--rui-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg, video { max-width: 100%; height: auto; display: block; }

/* =========================================================
   Accessibility helpers
   ========================================================= */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 10000;
  background: var(--rui-dark); color: #fff; padding: 12px 18px;
  font-family: var(--font-display); font-weight: 500;
  border-radius: 0 0 12px 0;
}
.skip-link:focus { left: 0; }

:focus-visible { outline: none; box-shadow: var(--focus-ring); border-radius: 4px; }

/* =========================================================
   Typography
   ========================================================= */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 500;
  margin: 0;
  color: var(--rui-dark);
}

.t-eyebrow {
  font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rui-mid);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.t-eyebrow::before {
  content: "";
  width: 28px;
  height: 1.5px;
  background: currentColor;
  display: inline-block;
}

.t-mega {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(56px, 9vw, 136px);
  line-height: 0.98; letter-spacing: -0.02em;
  color: var(--rui-dark);
}
.t-hero {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(44px, 6.5vw, 96px);
  line-height: 1.0; letter-spacing: -0.02em;
}
.t-h1 {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.04; letter-spacing: -0.02em;
}
.t-h2 {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(30px, 3.6vw, 48px);
  line-height: 1.1; letter-spacing: -0.012em;
}
.t-h3 {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(24px, 2.2vw, 32px);
  line-height: 1.15; letter-spacing: -0.01em;
}
.t-lead {
  font-family: var(--font-body); font-weight: 400;
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.5; letter-spacing: -0.005em;
  color: var(--rui-mid);
  max-width: 62ch;
}

p { margin: 0 0 16px; }
p:last-child { margin-bottom: 0; }

a { color: inherit; text-decoration: none; }

/* =========================================================
   Buttons — pills, universal
   ========================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.005em;
  padding: 16px 28px;
  border-radius: 9999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: opacity 160ms ease, background 160ms ease, color 160ms ease;
  white-space: nowrap;
  min-height: 52px;
}
.btn:hover { opacity: 0.85; text-decoration: none; }
.btn:active { opacity: 0.7; }

.btn-primary {
  background: var(--rui-dark);
  color: var(--rui-white);
}
.btn-accent {
  background: var(--ar-accent);
  color: var(--rui-dark);
}
.btn-accent:hover { background: var(--ar-accent-dark); color: var(--rui-dark); opacity: 1; }
.btn-secondary {
  background: var(--rui-surface);
  color: #000;
}
.btn-outline {
  background: transparent;
  color: var(--rui-dark);
  border-color: var(--rui-dark);
}
.btn-ghost-dark {
  background: rgba(244,244,244,0.08);
  color: #f4f4f4;
  border-color: #f4f4f4;
}

.btn-sm { padding: 10px 18px; font-size: 15px; min-height: 40px; }
.btn-lg { padding: 20px 34px; font-size: 19px; min-height: 60px; }

.btn-full { width: 100%; }

.btn svg { width: 18px; height: 18px; flex: 0 0 auto; }
.btn-lg svg { width: 20px; height: 20px; }
.btn-sm svg { width: 16px; height: 16px; }

/* =========================================================
   Layout
   ========================================================= */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.section { padding-block: clamp(64px, 8vw, 120px); }
.section-tight { padding-block: clamp(48px, 6vw, 80px); }
.section-dark { background: var(--rui-dark); color: var(--rui-white); }
.section-dark h1,.section-dark h2,.section-dark h3,.section-dark h4 { color: var(--rui-white); }
.section-dark .t-lead { color: rgba(255,255,255,0.74); }
.section-dark .t-eyebrow { color: rgba(255,255,255,0.6); }

.section-surface { background: var(--rui-surface); }

/* =========================================================
   Header / Nav
   ========================================================= */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: transparent;
  transition: background 200ms ease, border-color 200ms ease;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--rui-border);
}
.site-header.on-dark { color: var(--rui-white); background: transparent; border-bottom-color: transparent; }
.site-header.on-dark.is-scrolled {
  background: rgba(25,28,31,0.92);
  border-bottom-color: rgba(255,255,255,0.08);
  color: var(--rui-white);
}
/* Soft scrim behind nav controls on dark hero — attached to the header via a pseudo
   so it doesn't bleed into the hero as a visible band */
.site-header.on-dark::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.25) 50%, rgba(0,0,0,0) 100%);
  pointer-events: none;
  opacity: 1;
  transition: opacity 200ms ease;
}
.site-header.on-dark.is-scrolled::before { opacity: 0; }
.site-header { position: sticky; }

.nav-inner {
  display: flex; align-items: center; gap: 32px;
  height: 80px;
  container-type: inline-size;
  container-name: nav-inner;
}
.nav-logo {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-display); font-weight: 500;
  font-size: 20px; letter-spacing: -0.01em;
  color: inherit;
}
.nav-logo img { width: 40px; height: 40px; object-fit: contain; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.1; gap: 2px; min-width: 0; }
/* Allow the wordmark to wrap up to 3 lines; clamp beyond that. */
.nav-logo-text span:first-child {
  font-size: 17px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  overflow-wrap: normal;
  word-break: keep-all;
  hyphens: none;
}
.nav-logo-text span:last-child { white-space: nowrap; overflow: hidden; text-overflow: clip; }
/* Progressive collapse ONLY when the wordmark would need >3 lines:
   hide subtitle ("PHOENIX, AZ") first, then the wordmark itself. */
@container nav-inner (max-width: 180px) {
  .nav-logo-text span:last-child { display: none; }
}
@container nav-inner (max-width: 120px) {
  .nav-logo-text { display: none; }
}
.nav-logo-text span:last-child {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--rui-cool); font-weight: 500;
}
.site-header.on-dark:not(.is-scrolled) .nav-logo-text span:last-child { color: rgba(255,255,255,0.6); }

.nav-links {
  display: flex; align-items: center; gap: 8px;
  flex-wrap: nowrap;
  list-style: none; margin: 0; padding: 0;
  margin-left: auto;
}
.nav-links a {
  font-family: var(--font-display); font-weight: 500;
  font-size: 16px; letter-spacing: -0.005em;
  white-space: nowrap;
  padding: 10px 16px; border-radius: 9999px;
  color: inherit;
  transition: opacity 160ms ease, background 160ms ease;
}
.nav-links a:hover { opacity: 0.85; text-decoration: none; }

.nav-phone {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 500;
  font-size: 17px; letter-spacing: -0.005em;
  color: var(--ar-accent);
  padding: 10px 14px;
  border-radius: 9999px;
  white-space: nowrap;
  flex: 0 0 auto;
}
.nav-phone .nav-phone-text { white-space: nowrap; }
.site-header.on-dark:not(.is-scrolled) .nav-phone { color: var(--ar-accent); }
.nav-phone svg { width: 18px; height: 18px; }
.nav-phone:hover { opacity: 0.85; text-decoration: none; }

.nav-cta { margin-left: 4px; }

/* Mobile hamburger */
.nav-toggle {
  display: none;
  background: transparent; border: 0; padding: 10px;
  color: inherit; cursor: pointer;
  margin-left: auto;
}
.nav-toggle svg { width: 28px; height: 28px; }

.nav-drawer {
  position: fixed; inset: 0;
  background: var(--rui-dark);
  color: var(--rui-white);
  z-index: 200;
  padding: 24px;
  transform: translateY(-100%);
  transition: transform 280ms cubic-bezier(0.4, 0, 0.2, 1);
  display: flex; flex-direction: column;
  overflow-y: auto;
}
.nav-drawer.open { transform: translateY(0); }
.nav-drawer-top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 40px;
}
.nav-drawer-close {
  background: transparent; border: 0; color: inherit; padding: 10px; cursor: pointer;
}
.nav-drawer-close svg { width: 28px; height: 28px; }
.nav-drawer-links { list-style: none; margin: 0; padding: 0; }
.nav-drawer-links li + li { border-top: 1px solid rgba(255,255,255,0.08); }
.nav-drawer-links a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0;
  font-family: var(--font-display); font-weight: 500;
  font-size: 28px; letter-spacing: -0.01em;
  color: #fff;
}
.nav-drawer-links a svg { width: 20px; height: 20px; opacity: 0.5; }
.nav-drawer-bottom { margin-top: auto; padding-top: 40px; display: grid; gap: 12px; }
.nav-drawer-phone {
  display: flex; align-items: center; gap: 12px;
  color: var(--ar-accent);
  font-family: var(--font-display); font-weight: 500;
  font-size: 32px; letter-spacing: -0.01em;
}

@media (max-width: 1023px) {
  .nav-inner { height: 64px; gap: 12px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-phone { font-size: 15px; padding: 8px 12px; margin-left: auto; }
  .nav-phone .nav-phone-text { display: none; }
}

@media (max-width: 480px) {
  .nav-phone { padding: 8px 10px; }
}

/* =========================================================
   Hero patterns
   ========================================================= */
.hero {
  position: relative;
  background: var(--rui-dark);
  color: var(--rui-white);
  overflow: hidden;
  padding-top: clamp(48px, 6vw, 88px);
  padding-bottom: clamp(64px, 8vw, 120px);
  margin-top: -80px; /* sit under sticky header */
  padding-top: calc(clamp(48px, 6vw, 88px) + 80px);
}
@media (max-width: 1023px) {
  .hero { margin-top: -64px; padding-top: calc(64px + 48px); }
}
/* When a breadcrumb precedes the hero (inner pages), pull hero up further
   so it extends behind both the header AND the crumb */
.hero.hero-under-crumb {
  margin-top: calc(-80px - 52px);
  padding-top: calc(clamp(32px, 4vw, 48px) + 80px + 52px);
}
@media (max-width: 1023px) {
  .hero.hero-under-crumb {
    margin-top: calc(-64px - 52px);
    padding-top: calc(64px + 32px + 52px);
  }
}
/* Crumb needs to float on top of the extended hero */
.crumb.on-dark {
  position: relative;
  z-index: 2;
  background: transparent;
}
.hero-compact {
  padding-top: calc(clamp(32px, 4vw, 48px) + 80px);
  padding-bottom: clamp(48px, 5vw, 80px);
}
@media (max-width: 1023px) {
  .hero-compact { padding-top: calc(64px + 32px); }
}

.hero-media {
  position: absolute; inset: 0;
  background-position: center; background-size: cover;
}
.hero-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(25,28,31,0.75) 0%, rgba(25,28,31,0.4) 20%, rgba(25,28,31,0.7) 70%, #191c1f 100%),
              linear-gradient(90deg, rgba(25,28,31,0.85) 0%, rgba(25,28,31,0.35) 60%);
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(32px, 4vw, 64px);
  align-items: end;
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
}

.hero-ghost {
  position: absolute; right: -20px; bottom: -40px;
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(180px, 22vw, 360px);
  line-height: 0.8; letter-spacing: -0.04em;
  color: rgba(255,255,255,0.04);
  pointer-events: none; user-select: none;
  z-index: 0;
}

.hero-content { position: relative; z-index: 1; }
.hero-content .t-hero { color: var(--rui-white); margin-top: 24px; }
.hero-content .t-lead { color: rgba(255,255,255,0.74); max-width: 52ch; margin-top: 20px; }

.hero-actions {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-top: 36px;
}
.hero-meta {
  display: flex; flex-wrap: wrap; gap: 24px;
  margin-top: 28px;
  color: rgba(255,255,255,0.68);
  font-size: 14px;
  font-family: var(--font-body);
  letter-spacing: 0.02em;
}
.hero-meta strong { color: var(--ar-accent); font-weight: 600; letter-spacing: -0.01em; font-size: 18px; font-family: var(--font-display); }

/* Inline hero form card (right column) */
.hero-card {
  position: relative; z-index: 1;
  background: var(--rui-white);
  color: var(--rui-dark);
  border-radius: 24px;
  padding: clamp(24px, 2.4vw, 32px);
  display: grid; gap: 14px;
}
.hero-card .t-h3 { font-size: clamp(22px, 2vw, 28px); }
.hero-card-sub { color: var(--rui-mid); font-size: 14px; margin: -4px 0 8px; }
.hero-card-foot {
  display: flex; align-items: center; gap: 10px;
  color: var(--rui-cool); font-size: 13px;
  padding-top: 4px;
}

/* =========================================================
   Trust bar
   ========================================================= */
.trust-bar {
  border-top: 1px solid var(--rui-border);
  border-bottom: 1px solid var(--rui-border);
  background: var(--rui-white);
}
.trust-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.trust-bar-grid > * + * {
  border-left: 1px solid var(--rui-border);
}
.trust-item {
  padding: 28px clamp(16px, 2vw, 28px);
  display: flex; align-items: center; gap: 14px;
}
.trust-item svg { flex: 0 0 auto; width: 22px; height: 22px; color: var(--ar-accent); }
.trust-item-label {
  font-family: var(--font-display); font-weight: 500;
  font-size: 15px; letter-spacing: -0.005em; line-height: 1.3;
}
.trust-item-sub {
  font-size: 12px; color: var(--rui-cool);
  font-family: 'JetBrains Mono', monospace; letter-spacing: 0.08em;
  text-transform: uppercase; margin-top: 4px;
}
@media (max-width: 900px) {
  .trust-bar-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-bar-grid > :nth-child(2n+1) { border-left: 0; }
  .trust-bar-grid > :nth-child(n+3) { border-top: 1px solid var(--rui-border); }
}
@media (max-width: 520px) {
  .trust-bar-grid { grid-template-columns: 1fr; }
  .trust-bar-grid > * { border-left: 0 !important; }
  .trust-bar-grid > * + * { border-top: 1px solid var(--rui-border); }
}

/* =========================================================
   Section headers
   ========================================================= */
.sec-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 32px;
  margin-bottom: clamp(32px, 4vw, 56px);
}
.sec-head-copy .t-eyebrow { margin-bottom: 16px; }
.sec-head-copy .t-lead { margin-top: 16px; }
@media (max-width: 720px) {
  .sec-head { grid-template-columns: 1fr; }
}

/* =========================================================
   Services grid (cards with accent top border)
   ========================================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 900px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  position: relative;
  background: var(--rui-white);
  border: 1px solid var(--rui-border);
  border-top: 3px solid var(--ar-accent);
  border-radius: 20px;
  padding: 28px;
  display: flex; flex-direction: column; gap: 14px;
  min-height: 220px;
  transition: border-color 200ms ease;
}
.service-card:hover { border-color: var(--rui-border-strong); border-top-color: var(--ar-accent); text-decoration: none; }
.service-card .sc-num {
  font-family: 'JetBrains Mono', monospace; font-size: 12px;
  letter-spacing: 0.12em; color: var(--rui-cool);
}
.service-card h3 { font-size: clamp(20px, 1.6vw, 24px); }
.service-card p { color: var(--rui-mid); font-size: 15px; }
.service-card-link {
  margin-top: auto;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 500;
  font-size: 15px;
  color: var(--rui-dark);
}
.service-card-link svg { width: 16px; height: 16px; transition: transform 200ms ease; }
.service-card:hover .service-card-link svg { transform: translateX(4px); }

.section-dark .service-card {
  background: #22262a;
  border-color: rgba(255,255,255,0.08);
  border-top-color: var(--ar-accent);
}
.section-dark .service-card p { color: rgba(255,255,255,0.66); }
.section-dark .service-card-link { color: var(--rui-white); }

/* =========================================================
   Why us / stats
   ========================================================= */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.stats-row > * + * { border-left: 1px solid rgba(255,255,255,0.12); }
.stat {
  padding: clamp(24px, 3vw, 40px) clamp(16px, 2vw, 28px);
}
.stat-num {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(48px, 5.5vw, 80px);
  line-height: 1; letter-spacing: -0.03em;
  color: var(--rui-white);
}
.stat-num .unit { color: var(--ar-accent); }
.stat-label {
  margin-top: 14px;
  font-family: var(--font-display); font-weight: 500;
  font-size: 15px; color: rgba(255,255,255,0.74);
  letter-spacing: -0.005em;
}
@media (max-width: 720px) {
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .stats-row > :nth-child(2n+1) { border-left: 0; }
  .stats-row > :nth-child(n+3) { border-top: 1px solid rgba(255,255,255,0.12); }
}

/* =========================================================
   Testimonial cards
   ========================================================= */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 900px) { .testimonials { grid-template-columns: 1fr; } }
.testimonial {
  background: var(--rui-white);
  border: 1px solid var(--rui-border);
  border-radius: 20px;
  padding: 28px;
  display: flex; flex-direction: column;
}
.section-dark .testimonial {
  background: #22262a;
  border-color: rgba(255,255,255,0.08);
}
.section-dark .testimonial .t-name { color: var(--rui-white); }
.section-dark .testimonial .t-meta { color: rgba(255,255,255,0.6); }
.section-dark .testimonial .t-body { color: rgba(255,255,255,0.9); }

.t-stars {
  display: inline-flex; gap: 2px; color: var(--ar-accent); margin-bottom: 16px;
}
.t-stars svg { width: 18px; height: 18px; fill: currentColor; }
.t-body {
  font-size: 17px; line-height: 1.5;
  color: var(--rui-dark);
  margin-bottom: 20px;
  letter-spacing: -0.003em;
}
.t-name {
  font-family: var(--font-display); font-weight: 500;
  font-size: 16px;
  color: var(--rui-dark);
}
.t-meta {
  font-family: 'JetBrains Mono', monospace; font-size: 12px;
  color: var(--rui-cool); letter-spacing: 0.08em; text-transform: uppercase;
  margin-top: 4px;
}

/* =========================================================
   FAQ accordion
   ========================================================= */
.faq {
  border-top: 1px solid var(--rui-border);
}
.faq-item {
  border-bottom: 1px solid var(--rui-border);
}
.faq-q {
  width: 100%;
  background: transparent; border: 0;
  padding: 28px 0;
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 24px;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.3; letter-spacing: -0.01em;
  color: var(--rui-dark);
}
.faq-q:hover { opacity: 0.85; }
.faq-icon {
  flex: 0 0 auto;
  width: 32px; height: 32px;
  border-radius: 9999px;
  border: 1.5px solid var(--rui-dark);
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform 200ms ease, background 200ms ease, color 200ms ease;
}
.faq-icon svg { width: 14px; height: 14px; }
.faq-item.open .faq-icon { transform: rotate(180deg); background: var(--rui-dark); color: var(--rui-white); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 300ms cubic-bezier(0.4,0,0.2,1), padding 300ms ease;
  color: var(--rui-mid);
  font-size: 16px; line-height: 1.6;
  padding-right: 56px;
}
.faq-item.open .faq-a { max-height: 600px; padding-bottom: 28px; }

/* =========================================================
   Service areas list
   ========================================================= */
.areas-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--rui-border);
  border: 1px solid var(--rui-border);
  border-radius: 20px;
  overflow: hidden;
}
.areas-list a {
  background: var(--rui-white);
  padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--font-display); font-weight: 500;
  font-size: 17px; letter-spacing: -0.005em;
  color: var(--rui-dark);
  transition: background 160ms ease;
}
.areas-list a:hover { background: var(--rui-surface); text-decoration: none; }
.areas-list a svg { width: 16px; height: 16px; color: var(--rui-cool); transition: color 160ms ease, transform 160ms ease; }
.areas-list a:hover svg { color: var(--ar-accent); transform: translateX(4px); }
@media (max-width: 900px) { .areas-list { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .areas-list { grid-template-columns: 1fr; } }

/* =========================================================
   Forms
   ========================================================= */
.form {
  display: grid;
  gap: 14px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }

.field { display: grid; gap: 6px; }
.field label {
  font-family: var(--font-display); font-weight: 500;
  font-size: 14px; letter-spacing: -0.005em;
  color: var(--rui-dark);
}
.field input,
.field select,
.field textarea {
  font-family: var(--font-body);
  font-size: 16px;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1.5px solid var(--rui-border-strong);
  background: var(--rui-white);
  color: var(--rui-dark);
  transition: border-color 160ms ease, box-shadow 160ms ease;
  width: 100%;
  min-height: 52px;
}
.field textarea { min-height: 120px; resize: vertical; line-height: 1.5; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--ar-accent);
  box-shadow: 0 0 0 3px rgba(0,194,224,0.18);
}
.form-footnote {
  font-size: 13px; color: var(--rui-cool);
  display: flex; align-items: center; gap: 8px;
  margin-top: 4px;
}
.form-footnote svg { width: 14px; height: 14px; flex: 0 0 auto; color: var(--ar-accent); }

/* Form card (on light sections) */
.form-card {
  background: var(--rui-white);
  border: 1px solid var(--rui-border);
  border-radius: 24px;
  padding: clamp(24px, 3vw, 40px);
}
.section-dark .form-card {
  background: var(--rui-white);
  border-color: transparent;
}
.section-dark .form-card h2, .section-dark .form-card h3 { color: var(--rui-dark); }

/* Inline hero short form */
.form-inline-short {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.form-inline-short .field input,
.form-inline-short .field select { min-height: 48px; padding: 12px 14px; font-size: 15px; }
.form-inline-short .hero-sub-submit { grid-column: 1 / -1; }

/* =========================================================
   Breadcrumb
   ========================================================= */
.crumb {
  background: var(--rui-surface);
  border-bottom: 1px solid var(--rui-border);
  padding: 16px 0;
}
.crumb.on-dark {
  background: var(--rui-dark);
  border-bottom-color: transparent;
}
.crumb.on-dark ol { color: rgba(255,255,255,0.6); }
.crumb.on-dark a { color: rgba(255,255,255,0.75); }
.crumb.on-dark a:hover { color: var(--rui-white); }
.crumb.on-dark li[aria-current="page"] { color: var(--rui-white); }
.crumb.on-dark li + li::before { color: rgba(255,255,255,0.35); }
.crumb ol {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 6px;
  font-family: 'JetBrains Mono', monospace; font-size: 12px;
  color: var(--rui-cool); letter-spacing: 0.08em; text-transform: uppercase;
}
.crumb a { color: var(--rui-mid); }
.crumb a:hover { color: var(--rui-dark); text-decoration: none; }
.crumb li[aria-current="page"] { color: var(--rui-dark); }
.crumb li + li::before { content: "/"; margin-right: 6px; color: var(--rui-border-strong); }

/* =========================================================
   Two-column (form + details)
   ========================================================= */
.two-col {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(32px, 4vw, 64px);
  align-items: start;
}
@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; } }

.detail-block {
  display: grid; gap: 24px;
}
.detail-item {
  padding: 20px 0;
  border-top: 1px solid var(--rui-border);
}
.detail-item:first-child { border-top: 0; padding-top: 0; }
.detail-label {
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--rui-cool); margin-bottom: 8px;
}
.detail-value {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(20px, 1.8vw, 26px); letter-spacing: -0.01em;
  color: var(--rui-dark);
}
.detail-value.accent { color: var(--ar-accent); }
.detail-sub { color: var(--rui-mid); font-size: 15px; margin-top: 6px; }

/* Hours table */
.hours { width: 100%; border-collapse: collapse; }
.hours td { padding: 8px 0; font-size: 15px; color: var(--rui-mid); }
.hours td:first-child {
  font-family: var(--font-display); font-weight: 500;
  color: var(--rui-dark);
  width: 120px;
}

/* =========================================================
   Process steps
   ========================================================= */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }

.step {
  padding: 28px;
  border-radius: 20px;
  background: var(--rui-white);
  border: 1px solid var(--rui-border);
  position: relative;
}
.step-num {
  font-family: var(--font-display); font-weight: 500;
  font-size: 44px; letter-spacing: -0.03em; line-height: 1;
  color: var(--ar-accent);
  margin-bottom: 20px;
}
.step h3 { font-size: 20px; margin-bottom: 10px; }
.step p { color: var(--rui-mid); font-size: 15px; margin: 0; }

/* =========================================================
   Scope / inclusion list
   ========================================================= */
.scope-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (max-width: 640px) { .scope-grid { grid-template-columns: 1fr; } }
.scope-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 0;
  border-top: 1px solid var(--rui-border);
}
.scope-item:first-child, .scope-item:nth-child(2) { border-top: 0; padding-top: 0; }
.scope-item svg { flex: 0 0 auto; color: var(--ar-accent); margin-top: 2px; }
.scope-item-title {
  font-family: var(--font-display); font-weight: 500;
  font-size: 16px; color: var(--rui-dark);
}
.scope-item-sub { font-size: 14px; color: var(--rui-mid); margin-top: 4px; }

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
  background: var(--rui-dark);
  color: rgba(255,255,255,0.74);
  padding-block: clamp(64px, 7vw, 96px);
  padding-bottom: calc(clamp(64px, 7vw, 96px) + 72px); /* extra for mobile sticky bar */
}
@media (min-width: 1024px) { .site-footer { padding-bottom: clamp(64px, 7vw, 96px); } }

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-top { grid-template-columns: 1fr; } }

.footer-brand { display: grid; gap: 16px; }
.footer-brand .nav-logo { color: var(--rui-white); }
.footer-brand .nav-logo-text span:last-child { color: rgba(255,255,255,0.5); }
.footer-tag { font-size: 15px; color: rgba(255,255,255,0.66); max-width: 36ch; }
.footer-col h4 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; font-weight: 500;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.footer-col a { color: rgba(255,255,255,0.82); font-size: 15px; }
.footer-col a:hover { color: var(--ar-accent); text-decoration: none; }

.footer-contact-line {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.82); font-size: 15px;
  margin-bottom: 10px;
}
.footer-contact-line svg { width: 16px; height: 16px; color: var(--ar-accent); flex: 0 0 auto; }
.footer-contact-line a { color: inherit; }
.footer-contact-line a:hover { color: var(--ar-accent); text-decoration: none; }

.footer-legal {
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center;
  padding-top: 32px;
  gap: 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.06em;
}
.footer-legal a { color: rgba(255,255,255,0.74); }
.footer-legal a:hover { color: var(--ar-accent); text-decoration: none; }

/* =========================================================
   Sticky mobile tap-to-call bar
   ========================================================= */
.sticky-mobile-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  background: var(--rui-dark);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 10px 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.sticky-mobile-bar .btn { min-height: 52px; font-size: 15px; padding: 14px; }
@media (min-width: 1024px) { .sticky-mobile-bar { display: none; } }

/* =========================================================
   About / Story blocks
   ========================================================= */
.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 4vw, 80px);
  align-items: start;
}
@media (max-width: 900px) { .story { grid-template-columns: 1fr; } }
.story-media img { border-radius: 20px; width: 100%; object-fit: cover; aspect-ratio: 4/5; }

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 900px) { .value-grid { grid-template-columns: 1fr; } }
.value {
  padding: 28px;
  border-radius: 20px;
  background: var(--rui-surface);
  border: 1px solid var(--rui-border);
}
.value-num {
  font-family: 'JetBrains Mono', monospace; font-size: 12px;
  color: var(--ar-accent); letter-spacing: 0.12em; margin-bottom: 20px;
}
.value h3 { font-size: 22px; margin-bottom: 10px; }
.value p { color: var(--rui-mid); font-size: 15px; margin: 0; }

/* =========================================================
   Partners band
   ========================================================= */
.partners {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  align-items: center;
}
@media (max-width: 720px) { .partners { grid-template-columns: repeat(2, 1fr); } }
.partner-tile {
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  border-radius: 16px;
  background: var(--rui-white);
  min-height: 100px;
}
.partner-tile img { max-width: 80%; max-height: 64px; object-fit: contain; }

/* Inline partner chips — for use on dark sections where we need the logos
   to keep their native colors against a white pill */
.partner-row {
  margin-top: 48px;
  display: flex; flex-wrap: wrap; gap: 16px; align-items: center;
}
.partner-chip {
  display: inline-flex; align-items: center; justify-content: center;
  height: 56px; padding: 0 18px;
  background: var(--rui-white);
  border-radius: 12px;
  box-shadow: 0 1px 0 rgba(255,255,255,0.04) inset, 0 8px 24px rgba(0,0,0,0.18);
}
.partner-chip img { height: 26px; width: auto; display: block; }
.partner-chip.partner-chip-tall img { height: 44px; }
.partner-chip-plain { padding: 4px; background: transparent; box-shadow: none; }
.partner-chip-plain img { height: 56px; border-radius: 8px; }

/* =========================================================
   Final CTA form section (full bleed light card on dark)
   ========================================================= */
.final-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 4vw, 80px);
  align-items: start;
}
@media (max-width: 900px) { .final-cta { grid-template-columns: 1fr; } }

/* =========================================================
   Utilities
   ========================================================= */
.mt-2 { margin-top: 8px; } .mt-3 { margin-top: 16px; } .mt-4 { margin-top: 24px; } .mt-5 { margin-top: 32px; }
.text-accent { color: var(--ar-accent); }
.text-mid { color: var(--rui-mid); }

/* Hover opacity everywhere */
a, button { transition: opacity 160ms ease; }


/* Scope list used on remodel page — compact check-list */
.scope-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 28px;
}
@media (max-width: 720px) {
  .scope-grid { grid-template-columns: 1fr; gap: 14px; }
}
.scope-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.scope-item > svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 4px;
  color: var(--ar-accent, #00c2e0);
  stroke-width: 2.4;
}
.scope-item-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--rui-dark, #191c1f);
  line-height: 1.35;
  letter-spacing: -0.005em;
}
.scope-item-sub {
  margin-top: 4px;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--rui-mid, #6b6e72);
}

/* Fix the 2-up included-grid on small screens */
@media (max-width: 900px) {
  .included-grid { grid-template-columns: 1fr !important; gap: 32px !important; }
}

/* Neighborhood chip row for contact details */
.area-chips {
  list-style: none; margin: 14px 0 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 6px;
}
.area-chips li {
  display: inline-flex; align-items: center;
  height: 28px; padding: 0 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--rui-mid);
  background: var(--rui-surface);
  border: 1px solid var(--rui-border);
  border-radius: 999px;
}
.area-chips .area-chips-more { padding: 0; border: none; background: transparent; }
.area-chips .area-chips-more a {
  display: inline-flex; align-items: center;
  height: 28px; padding: 0 12px;
  color: var(--rui-dark);
  background: var(--ar-accent);
  border-radius: 999px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px; letter-spacing: 0.06em; text-transform: uppercase;
  text-decoration: none;
}
.area-chips .area-chips-more a:hover { background: var(--rui-dark); color: var(--rui-white); }

/* =========================================================
   Mobile nav + drawer (MISSING — audit fix)
   ========================================================= */

/* Top-bar phone link — ensure right-edge breathing room */
.nav-phone {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--rui-dark); text-decoration: none;
  font-family: var(--font-display); font-weight: 500; font-size: 15px;
  padding: 8px 10px; margin-right: 4px;
  white-space: nowrap;
}
.nav-phone svg { width: 16px; height: 16px; color: var(--ar-accent); }
.nav-phone:hover { color: var(--ar-accent-dark); }

/* Hamburger — hidden on desktop, visible on mobile */
.nav-toggle {
  display: none;
  background: transparent; border: 0; padding: 10px;
  color: var(--rui-dark); cursor: pointer; border-radius: 8px;
}
.nav-toggle svg { width: 22px; height: 22px; display: block; }
.nav-toggle:hover { background: var(--rui-surface); }

@media (max-width: 880px) {
  /* Hide inline nav links + desktop CTA on mobile */
  header .nav-links,
  header .nav-cta { display: none; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  /* Keep phone link in header — just give it a safe right inset */
  .nav-phone {
    font-size: 14px;
    padding-right: max(6px, env(safe-area-inset-right));
  }
}

/* Drawer — hidden by default, slides in from the right */
.nav-drawer {
  position: fixed; inset: 0 0 0 auto;
  width: min(420px, 100vw);
  background: var(--rui-dark);
  color: var(--rui-white);
  z-index: 1000;
  flex-direction: column;
  padding: 20px 24px calc(24px + env(safe-area-inset-bottom));
  transform: translateX(105%);
  transition: transform 260ms cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  visibility: hidden;
  display: none;
  box-shadow: -24px 0 48px rgba(0,0,0,0.3);
}
.nav-drawer.open {
  display: flex;
  transform: translateX(0);
  visibility: visible;
}
.nav-drawer[aria-hidden="true"]:not(.open) { /* belt-and-suspenders */
  pointer-events: none;
}

/* Backdrop */
.nav-drawer::before {
  content: "";
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
  z-index: -1;
}
.nav-drawer.open::before {
  opacity: 1;
  left: -100vw; right: 0;
}

.nav-drawer-top {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.nav-drawer-top .nav-logo { text-decoration: none; display: inline-flex; align-items: center; gap: 10px; }
.nav-drawer-top .nav-logo-text { display: inline-flex; flex-direction: column; font-family: var(--font-display); font-weight: 600; line-height: 1.1; font-size: 15px; }
.nav-drawer-top .nav-logo-text span:last-child { font-size: 12px; font-weight: 400; }

.nav-drawer-close {
  background: transparent; border: 0; padding: 10px;
  color: rgba(255,255,255,0.7); cursor: pointer; border-radius: 8px;
}
.nav-drawer-close svg { width: 22px; height: 22px; display: block; }
.nav-drawer-close:hover { color: #fff; background: rgba(255,255,255,0.08); }

.nav-drawer-links {
  list-style: none; padding: 8px 0; margin: 0;
  flex: 1 0 auto;
}
.nav-drawer-links li + li { border-top: 1px solid rgba(255,255,255,0.08); }
.nav-drawer-links a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 4px;
  color: #fff; text-decoration: none;
  font-family: var(--font-display); font-weight: 500; font-size: 20px;
}
.nav-drawer-links a svg {
  width: 18px; height: 18px;
  color: var(--ar-accent);
  opacity: 0; transform: translateX(-6px);
  transition: opacity 180ms ease, transform 180ms ease;
}
.nav-drawer-links a:hover svg { opacity: 1; transform: translateX(0); }

.nav-drawer-bottom {
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; flex-direction: column; gap: 8px;
}
.nav-drawer-phone {
  display: inline-flex; align-items: center; gap: 10px;
  color: #fff; text-decoration: none;
  font-family: var(--font-display); font-weight: 600; font-size: 22px;
}
.nav-drawer-phone svg { width: 18px; height: 18px; color: var(--ar-accent); }

/* Lock background scroll when drawer open */
body.nav-open { overflow: hidden; }

/* Bottom-edge clearance — any sticky bottom CTA bar gets a safe inset
   and the page body gets a scroll-padding so fixed CTAs don't occlude. */
body { padding-bottom: env(safe-area-inset-bottom); }



/* =========================================================
   Sticky mobile CTA bar (MISSING — audit fix)
   Shown only on phones; hidden ≥720px. Dark bg, two actions.
   ========================================================= */
.sticky-mobile-bar {
  display: none;
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  z-index: 900;
  background: var(--rui-dark);
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  gap: 8px;
  box-shadow: 0 -8px 24px rgba(0,0,0,0.18);
}
.sticky-mobile-bar .btn {
  flex: 1 1 0;
  justify-content: center;
  min-height: 48px;
  font-size: 15px;
}
.sticky-mobile-bar .btn svg { width: 16px; height: 16px; }

@media (max-width: 720px) {
  .sticky-mobile-bar { display: flex; }
  /* Give every page body room so the sticky bar doesn't cover the
     last section (forms, CTAs, footers). 92px = bar height + breathing room. */
  body { padding-bottom: calc(92px + env(safe-area-inset-bottom)); }
  /* Forms need anchor scroll offset so the submit isn't hidden on jump-to */
  #form, [id="form"] { scroll-margin-bottom: 120px; }
}

/* =========================================================
   Site header — sticky top bar (restored)
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: var(--rui-white);
  border-bottom: 1px solid var(--rui-border);
  backdrop-filter: saturate(1.2);
  -webkit-backdrop-filter: saturate(1.2);
}
.site-header.on-dark {
  background: var(--rui-dark);
  border-bottom-color: rgba(255,255,255,0.08);
  color: var(--rui-white);
}
.site-header.on-dark .nav-phone { color: var(--rui-white); }
.site-header.on-dark .nav-phone svg { color: var(--ar-accent); }
.site-header.on-dark .nav-toggle { color: var(--rui-white); }
.site-header.on-dark .nav-toggle:hover { background: rgba(255,255,255,0.08); }
.site-header.on-dark .nav-links a { color: rgba(255,255,255,0.85); }
.site-header.on-dark .nav-links a:hover { color: var(--rui-white); }

.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  height: 64px;
}
.nav-logo {
  display: inline-flex; align-items: center; gap: 10px;
  color: inherit; text-decoration: none;
  font-family: var(--font-display); font-weight: 600;
}
.nav-logo-text { display: inline-flex; flex-direction: column; line-height: 1.1; font-size: 15px; }
.nav-logo-text span:last-child { font-size: 11px; font-weight: 400; letter-spacing: 0.06em; text-transform: uppercase; opacity: 0.55; }

.nav-links {
  display: flex; align-items: center; gap: 28px;
  margin: 0 auto;
}
.nav-links a {
  color: var(--rui-dark); text-decoration: none;
  font-family: var(--font-display); font-weight: 500; font-size: 15px;
}
.nav-links a:hover { color: var(--ar-accent-dark); }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--rui-dark); color: #fff; padding: 10px 16px; border-radius: 8px;
}
.skip-link:focus { left: 16px; top: 16px; z-index: 1001; }

/* Horizontal overflow guard — overflow-x:hidden on html/body makes them
   scroll containers and breaks position:sticky. overflow:clip does not. */
html, body { overflow-x: clip; }

/* Job listings — stack on tablet and below so cards breathe */
/* jobs-grid responsive */
@media (max-width: 1023px) {
  .jobs-grid { grid-template-columns: 1fr 1fr !important; }
}
@media (max-width: 680px) {
  .jobs-grid { grid-template-columns: 1fr !important; }
}
