/* ============================================================
   Color Splash Painting — Rebuild stylesheet (Direction 3)
   Loaded AFTER brand.css — overrides for fonts, colors, components.
   Goal: same flow as mockup-1, completely new visual system.
   ============================================================ */

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

:root {
  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --cta: #14B3F2;
  --cta-hover: #006970;
  --paper: #FAFAF7;
  --paper-2: #F2F0EA;
  --line: #E8E5DD;
  --ink: #1F1F1F;
  --muted: #6B6B66;
}

/* Body + base */
body {
  background: var(--paper) !important;
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

/* Kill Bungee heading treatment — move to Space Grotesk, mixed case */
.h1, .h2, .h3, .h4, .display {
  font-family: var(--font-display) !important;
  font-weight: 700 !important;
  text-transform: none !important;
  letter-spacing: -0.02em !important;
  line-height: 1.05 !important;
}
.h1, .display { font-size: clamp(48px, 7.5vw, 96px) !important; }
.h2 { font-size: clamp(32px, 4.5vw, 56px) !important; }
.h3 { font-size: clamp(22px, 2.6vw, 32px) !important; }
.h4 { font-size: clamp(18px, 2vw, 22px) !important; }

/* Eyebrow — simplify */
.eyebrow, .eyebrow-brush {
  font-family: var(--font-body) !important;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px !important;
  font-weight: 600 !important;
  color: var(--muted) !important;
  display: inline-block;
  background: none !important;
}
.eyebrow-brush::before { display: none !important; }

/* Buttons — cyan primary, clean ghost, pill shape */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px !important;
  border-radius: 999px !important;
  font-weight: 600 !important;
  font-family: var(--font-body) !important;
  font-size: 15px !important;
  line-height: 1 !important;
  text-decoration: none !important;
  transition: transform .15s ease, background .15s ease, color .15s ease !important;
  border: 0 !important;
  box-shadow: none !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}
.btn-primary, [data-cta-text] {
  background: var(--cta) !important;
  color: #fff !important;
}
.btn-primary:hover, [data-cta-text]:hover {
  background: var(--cta-hover) !important;
  color: #fff !important;
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent !important;
  color: var(--ink) !important;
  border: 1.5px solid var(--ink) !important;
}
.btn-ghost:hover {
  background: var(--ink) !important;
  color: #fff !important;
}

/* Sections */
.section {
  padding-block: clamp(80px, 10vw, 140px) !important;
}
.wrap {
  max-width: 1180px;
  padding-inline: 28px;
}

/* Kill old card styling — use minimal cards */
.card, .card-brush {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
}
.card-brush::before { display: none !important; }
.card-brush:hover { transform: none !important; box-shadow: none !important; }

/* Thin divider */
.thin-rule {
  height: 1px;
  background: var(--line);
  border: 0;
  margin: 0;
}

/* Hero layout */
.hero-new {
  padding: clamp(80px, 12vw, 160px) 0 clamp(60px, 8vw, 100px);
  text-align: center;
  background: var(--paper);
}
.hero-new .hero-h1 {
  margin: 0 auto 24px;
  max-width: 16ch;
}
.hero-new .period-pill {
  display: inline-block;
  background: var(--cta);
  color: #fff;
  padding: 0 12px 2px;
  border-radius: 12px;
  vertical-align: middle;
  font-size: 0.85em;
}
.hero-new .hero-sub {
  font-size: 19px;
  color: var(--muted);
  max-width: 52ch;
  margin: 0 auto 36px;
  line-height: 1.55;
}
.hero-new .hero-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero-new .trust-inline {
  font-size: 14px;
  color: var(--muted);
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.hero-new .trust-inline strong { color: var(--ink); font-weight: 600; }

/* Trust strip (replace the black bar) */
.trust-strip-new {
  border-block: 1px solid var(--line);
  padding: 22px 0;
}
.trust-strip-new .wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px 40px;
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.trust-strip-new span { display: flex; align-items: center; gap: 8px; }
.trust-strip-new span::before {
  content: "";
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cta);
}

/* Section intro bar */
.section-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 48px;
}
.section-intro-single {
  text-align: center;
  margin-bottom: 48px;
}
.section-intro h2 { margin: 8px 0 0; }
.section-intro-single p { max-width: 56ch; margin: 16px auto 0; color: var(--muted); }
@media (max-width: 820px) {
  .section-intro { grid-template-columns: 1fr; align-items: start; }
}

/* Services list (replaces card grid) */
.svc-list { border-top: 1px solid var(--line); }
.svc-list-row {
  display: grid;
  grid-template-columns: 50px 1fr auto 24px;
  gap: 24px;
  align-items: center;
  padding: 28px 4px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  text-decoration: none;
  transition: padding .2s ease;
}
.svc-list-row:hover {
  padding-inline: 16px;
}
.svc-list-row:hover .svc-list-num { color: var(--cta); }
.svc-list-row:hover .svc-list-arrow { transform: translateX(6px); color: var(--cta); }
.svc-list-num {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
  transition: color .2s ease;
}
.svc-list-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.2;
}
.svc-list-desc {
  font-size: 14px;
  color: var(--muted);
  margin-top: 2px;
}
.svc-list-kind {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  display: none;
}
.svc-list-arrow {
  font-size: 22px;
  color: var(--muted);
  transition: transform .2s ease, color .2s ease;
}
@media (min-width: 700px) {
  .svc-list-kind { display: inline; }
}

/* "Drama Free truth" block */
.truth-block {
  display: grid;
  gap: 32px;
  padding-block: clamp(40px, 6vw, 80px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-block: clamp(40px, 6vw, 80px);
}
.truth-block .truth-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: baseline;
}
.truth-block .truth-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--cta);
  min-width: 40px;
}
.truth-block .truth-text {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.6vw, 30px);
  line-height: 1.25;
  color: var(--ink);
  font-weight: 600;
}

/* Gallery strip */
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-strip figure {
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  background: var(--paper-2);
  aspect-ratio: 4/3;
}
.gallery-strip figure img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.gallery-strip figure:hover img { transform: scale(1.04); }
.gallery-strip figcaption {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--muted);
  padding: 10px 4px 0;
}
@media (max-width: 820px) { .gallery-strip { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .gallery-strip { grid-template-columns: 1fr; } }

/* Quote block (single testimonial) */
.quote-block {
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}
.quote-block .quote-stars {
  color: var(--cta);
  letter-spacing: 4px;
  margin-bottom: 20px;
  font-size: 16px;
}
.quote-block .quote-text {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.8vw, 34px);
  line-height: 1.3;
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 24px;
  letter-spacing: -0.01em;
}
.quote-block .quote-cite {
  font-size: 14px;
  color: var(--muted);
  font-style: normal;
}
.quote-block .quote-cite strong { color: var(--ink); font-weight: 600; }

/* Areas list (simple columns) */
.areas-list {
  columns: 3;
  column-gap: 40px;
  max-width: 820px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
}
.areas-list li {
  break-inside: avoid;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.areas-list a {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  display: flex; justify-content: space-between; align-items: center;
}
.areas-list a:hover { color: var(--cta); }
.areas-list a::after {
  content: "→";
  opacity: 0;
  transition: opacity .2s ease, transform .2s ease;
}
.areas-list a:hover::after { opacity: 1; transform: translateX(4px); }
@media (max-width: 700px) { .areas-list { columns: 2; } }
@media (max-width: 480px) { .areas-list { columns: 1; } }

/* FAQ simple */
.faq-simple { max-width: 780px; margin: 0 auto; }
.faq-simple details {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
.faq-simple summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  color: var(--ink);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-simple summary::-webkit-details-marker { display: none; }
.faq-simple summary::after {
  content: "+";
  font-size: 26px;
  color: var(--cta);
  font-weight: 300;
  line-height: 1;
  transition: transform .2s ease;
}
.faq-simple details[open] summary::after { content: "–"; }
.faq-simple details p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  max-width: 66ch;
}

/* Final CTA — simple centered */
.final-cta-new {
  background: var(--paper-2);
  padding: clamp(80px, 10vw, 140px) 0;
  text-align: center;
  border-top: 1px solid var(--line);
}
.final-cta-new h2 {
  margin: 0 auto 20px;
  max-width: 18ch;
}
.final-cta-new p {
  color: var(--muted);
  max-width: 48ch;
  margin: 0 auto 32px;
  font-size: 17px;
}
.final-cta-new .cta-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Kill all the old decorative splats/splashes in sections we've replaced */
.bleed-cream, .bleed-dark {
  background: var(--paper) !important;
  color: var(--ink) !important;
}

/* Kill the section-gradient-bar, cta-band-big, section-dark-paint from previous rebuild */
.section-gradient-bar, .cta-band-big, .section-dark-paint {
  display: none !important;
}

/* Hero remove the form side */
.hero-new form, .hero-new .card {
  display: none !important;
}

/* Grad text stays for accent words in body copy (keep brand pop) */
.grad-text {
  background: linear-gradient(95deg, #FF4800 0%, #FF00BD 55%, #14B3F2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* Header — clean nav */
header .wrap a.btn-primary { background: var(--cta) !important; }

/* Mobile tweaks */
@media (max-width: 820px) {
  .svc-list-row { grid-template-columns: 40px 1fr 20px; gap: 16px; }
  .svc-list-desc { display: none; }
}

/* Fix: truth-item numbers/text should style regardless of .truth-block parent */
.truth-item .truth-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--cta);
  min-width: 40px;
}
.truth-item .truth-text {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.6vw, 30px);
  line-height: 1.25;
  color: var(--ink);
  font-weight: 600;
}

/* Floating CTA — match cyan */
.floating-cta {
  background: var(--cta) !important;
  color: #fff !important;
  border-radius: 999px !important;
  font-family: var(--font-body) !important;
  font-weight: 600 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}
.floating-cta:hover { background: var(--cta-hover) !important; }

/* Announcement bar + header SC badge — cyan instead of orange */
.announce, .announcement, .announce-bar {
  background: var(--ink) !important;
}
.announce .tag, .announcement .tag, .announce-bar .tag,
.announce [style*="background"] { background: var(--cta) !important; color: #fff !important; }

/* Header phone icon + schedule button cyan */
.btn.cta-top, .schedule-btn, header .btn-primary {
  background: var(--cta) !important;
  color: #fff !important;
}

/* Any remaining orange (--orange var usage) for borders/accents — keep orange as accent but switch header/CTA elements */
.btn-primary[style*="FF4800"], [style*="background:#FF4800"] { background: var(--cta) !important; }

/* Photos in Recent Work — keep orange photo border (that's a nice brand touch) */
.photo { border-color: var(--ink) !important; }

/* Announcement bar pill — cyan not orange */
.announce .pill { background: var(--cta) !important; }
.announce { background: var(--ink) !important; }

/* Footer top border accent — cyan */
footer, .site-footer { border-top-color: var(--line) !important; }

/* Stars in any rating display → cyan (brand accent) */
.stars, .quote-stars { color: var(--cta) !important; }

/* SC Map section brand tweaks — replace orange shadow/borders */
.sc-area-split, .sc-area-map { box-shadow: none !important; }
.sc-map-frame { box-shadow: 6px 6px 0 var(--cta) !important; border-color: var(--ink) !important; }

/* Trust strip (older black bar version) — hide when new one rendered */
.trust-strip { display: none !important; }

/* Misc component polish on other pages */
.page-hero { background: var(--paper) !important; padding-block: clamp(80px, 10vw, 140px) !important; }
.tag, .tag.orange { background: var(--paper-2) !important; color: var(--ink) !important; border: 1px solid var(--line) !important; font-weight: 500; }
.tag.orange { background: var(--cta) !important; color: #fff !important; border: 0 !important; }

/* =============================================================
   Audit Round 1 cleanups — 2026-04-21
   ============================================================= */

/* Hide all legacy splash/splat decorations on pages other than home hero
   (keep the main logo + brand marks, just kill the ambient decorations) */
.page-hero svg[class*="spl"],
.page-hero > div[style*="position:absolute"],
section > div[style*="position:absolute"][style*="pointer-events:none"] {
  display: none !important;
}

/* Reset mockup-1 page-hero to match new clean system */
.page-hero {
  background: var(--paper) !important;
  padding-block: clamp(80px, 10vw, 140px) !important;
  border-bottom: 1px solid var(--line);
  overflow: visible !important;
}
.page-hero .wrap { position: relative; z-index: 1; }

/* Shadow tweak — remove orange 10px shadows on cards/frames */
[style*="box-shadow:10px 10px 0 var(--orange)"],
[style*="box-shadow:10px 10px 0 var(--blue)"],
[style*="box-shadow:6px 6px 0 var(--orange)"] {
  box-shadow: none !important;
}

/* Drop the grey rectangle logo swipe in footer */
.footer-logo, footer .logo-swipe { display: none !important; }

/* Image borders — subtle, not orange */
.photo, .recent-photo, .svc-photo, .ba-before, .ba-after {
  border: 1px solid var(--line) !important;
  border-radius: 8px !important;
}

/* =============================================================
   Round 2 — Reviews 3-up + Financing card
   ============================================================= */

.reviews-3up {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 900px) { .reviews-3up { grid-template-columns: 1fr; max-width: 640px; } }

.review-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.review-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(31,31,31,.06);
}
.review-card .stars { color: var(--cta); letter-spacing: 3px; font-size: 16px; }
.review-card blockquote {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  flex: 1;
}
.review-card cite {
  font-style: normal;
  font-size: 14px;
  color: var(--muted);
}
.review-card cite strong { color: var(--ink); font-weight: 600; }

/* Financing stat card */
.financing-card {
  max-width: 820px;
  margin: 0 auto;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: clamp(32px, 5vw, 56px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 760px) { .financing-card { grid-template-columns: 1fr; gap: 28px; text-align: center; } }
.financing-stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.financing-stat {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: baseline;
}
.financing-stat-num {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 700;
  color: var(--cta);
  line-height: 1;
  min-width: 80px;
}
.financing-stat-label {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.4;
}
