/* ============================================================
   True Services — a TrueBuild company (handyman)
   TrueBuild design system: cream + forest green + ink, system
   fonts with IBM Plex Mono accents, bordered cards, motion.
   ============================================================ */
:root {
  --bg: #ffffff;
  --bg2: #F1EFEA;         /* soft cream */
  --white: #ffffff;
  --ink: #1A1815;         /* TrueBuild ink */
  --navy: #1A1815;        /* dark sections = ink */
  --navy2: #23211d;
  --navy3: #11100e;       /* deepest / nav */
  --muted: #7D7669;
  --muted2: #948C7E;
  --line: #E1DCD2;
  --line2: #DCD6CB;
  --accent: #2C5A40;      /* forest green */
  --accent-2: #1F6F4A;    /* green (eyebrows / links) */
  --accent-3: #9FD79A;    /* light green */
  --accent-dark: #14210F; /* deep green */
  --tint: #DDE4D6;        /* green tint (pills) */
  --tint-2: #C9D4BF;
  --grad-orange: #2C5A40; /* legacy name → solid green */
  --grad-navy: linear-gradient(160deg, #23211d, #11100e);
  --shadow: 0 2px 6px rgba(26, 24, 21, .05), 0 18px 40px -16px rgba(26, 24, 21, .14);
  --font-head: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --mono: 'IBM Plex Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: var(--font-body);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: var(--accent); text-decoration: none; }
img { display: block; max-width: 100%; }
h1, h2, h3, h4 { font-family: var(--font-head); }
::selection { background: var(--accent); color: #fff; }

.wrap { width: min(1280px, calc(100% - 48px)); margin: 0 auto; }
.eyebrow {
  display: inline-block;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1.5px solid transparent;
  border-radius: 12px;
  padding: 16px 28px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15.5px;
  line-height: 1;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.btn-primary {
  background: var(--grad-orange);
  color: #fff;
  box-shadow: 0 14px 30px -10px rgba(44, 90, 64, .5);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 18px 34px -8px rgba(44, 90, 64, .62); }
.btn-secondary {
  background: var(--white);
  color: var(--navy);
  border-color: #d9d3c8;
}
.btn-secondary:hover { transform: translateY(-2px); border-color: var(--navy); }
.btn-dark { background: var(--navy); color: #fff; }
.btn-dark:hover { transform: translateY(-2px); background: var(--navy2); }
.btn-pill { border-radius: 100px; padding: 13px 26px; font-size: 14px; }
.btn:active { transform: translateY(0); }

/* ---- Header ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 246, 242, .82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line2);
  transition: box-shadow .25s ease;
}
.site-header.scrolled { box-shadow: 0 10px 30px -20px rgba(26, 24, 21, .32); }
.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-family: var(--font-head);
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -.01em;
}
.brand .brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--navy2), var(--navy3));
  display: grid;
  place-items: center;
  color: var(--accent);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 15px;
}
.brand img { width: 38px; height: 38px; border-radius: 10px; object-fit: cover; }
.nav-links { display: none; align-items: center; gap: 26px; }
.nav-links a {
  position: relative;
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: color .2s ease, border-color .2s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--accent); border-color: var(--accent); }
.nav-cta { display: none; align-items: center; gap: 14px; }
.nav-phone { font-size: 14px; font-weight: 700; color: var(--navy); }

/* ---- Decorative drifting blobs ---- */
.blob { position: absolute; border-radius: 50%; filter: blur(10px); pointer-events: none; z-index: 0; }
.blob-orange { background: radial-gradient(circle, rgba(44, 90, 64, .22), transparent 70%); }
.blob-navy { background: radial-gradient(circle, rgba(26, 24, 21, .14), transparent 70%); }

/* ---- Hero ---- */
.hero { position: relative; overflow: hidden; padding: 0; }
.hero .blob-a { top: -120px; right: -80px; width: 420px; height: 420px; animation: drift 10s ease-in-out infinite; }
.hero .blob-b { bottom: -160px; left: -120px; width: 460px; height: 460px; }
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 40px;
  align-items: start;
  padding: 28px 0 48px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--line2);
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 26px;
  box-shadow: 0 6px 16px -10px rgba(26, 24, 21, .3);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero-badge i { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.hero h1 {
  font-size: clamp(38px, 7vw, 60px);
  line-height: 1.04;
  font-weight: 800;
  letter-spacing: -.02em;
  margin: 0 0 24px;
}
.hero h1 .grad {
  background: linear-gradient(90deg, var(--accent), var(--accent-3));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p { font-size: 18px; line-height: 1.6; color: var(--muted); max-width: 520px; margin: 0 0 34px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.hero-actions .btn-primary { animation: pulseRing 2.4s ease-out 1; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 14px 28px; }
.hero-proof span { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--muted); }
.hero-proof .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
.hero-media { position: relative; }
.hero-media .shot {
  width: 100%;
  height: clamp(340px, 46vw, 520px);
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 30px 60px -20px rgba(26, 24, 21, .35);
}
.job-card {
  position: absolute;
  left: -20px;
  bottom: -32px;
  width: 296px;
  max-width: 84%;
  background: linear-gradient(160deg, var(--navy2), var(--navy3));
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 22px 60px -26px rgba(26, 24, 21, .55);
  animation: floatY 5s ease-in-out infinite;
}
.job-card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.job-card-top .lbl { font-size: 12px; font-weight: 700; letter-spacing: .05em; color: var(--muted2); text-transform: uppercase; }
.job-card-top .pill { background: var(--grad-orange); color: #fff; font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 100px; }
.job-row { display: flex; align-items: center; gap: 11px; font-size: 13.5px; font-weight: 600; margin-top: 12px; }
.job-row .tick { width: 20px; height: 20px; border-radius: 50%; background: #2C5A40; display: grid; place-items: center; font-size: 11px; color: #ffffff; }
.job-row.pending { color: var(--muted2); }
.job-row.pending .tick { background: #2f463a; color: #fff; }

/* ---- Trust bar ---- */
.trust { background: linear-gradient(120deg, var(--navy), var(--navy2)); }
.trust-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 48px;
  padding: 26px 0;
}
.trust-item { color: #fff; font-size: 14.5px; font-weight: 600; display: inline-flex; align-items: center; gap: 10px; }
.trust-item .check { color: var(--accent); font-weight: 800; }

/* ---- Sections ---- */
section { padding: 96px 0; position: relative; }
section.tight { padding: 88px 0; }
.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(28px, 4.4vw, 38px); font-weight: 800; letter-spacing: -.01em; margin: 14px 0 16px; }
.section-head p { font-size: 17px; line-height: 1.6; color: var(--muted); margin: 0; }

.card-row { display: grid; gap: 24px; }
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 32px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px -18px rgba(26, 24, 21, .3); border-color: var(--accent); }
.card .num {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #e9f0e6, #cfe0cf);
  color: var(--accent);
  font-family: var(--font-head);
  font-weight: 800;
  display: grid; place-items: center;
  margin-bottom: 22px;
  transition: transform .25s ease;
}
.card:hover .num { transform: translateY(-2px) scale(1.06); }
.card h3 { font-size: 19px; font-weight: 700; margin: 0 0 10px; }
.card p { font-size: 14.5px; line-height: 1.6; color: var(--muted); margin: 0 0 18px; }
.card .price { font-size: 13px; font-weight: 700; color: var(--navy); }
.card ul { margin: 12px 0 0; padding-left: 18px; color: var(--muted); font-size: 14.5px; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--navy); font-weight: 700; font-size: 15px; margin-top: 34px; transition: gap .2s ease; }
.text-link:hover { gap: 14px; color: var(--accent); }

/* ---- Value / feature split ---- */
.value { background: var(--bg2); overflow: hidden; }
.value .blob-c { top: 40px; left: -100px; width: 360px; height: 360px; }
.split { position: relative; z-index: 1; display: grid; gap: 40px; align-items: center; }
.checklist { display: flex; flex-direction: column; gap: 16px; margin: 24px 0 32px; }
.checklist div { display: flex; align-items: center; gap: 12px; font-size: 15px; font-weight: 600; }
.checklist .ok { width: 24px; height: 24px; border-radius: 50%; background: #e7f4ea; color: #2f8f4e; display: grid; place-items: center; font-size: 12px; }
.stats { display: flex; flex-wrap: wrap; gap: 32px 40px; }
.stats .num { font-family: var(--font-head); font-size: 28px; font-weight: 800; color: var(--navy); }
.stats .lbl { font-size: 13px; color: var(--muted); font-weight: 600; }
.value-img { width: 100%; height: clamp(320px, 42vw, 440px); object-fit: cover; border-radius: 24px; box-shadow: 0 30px 60px -24px rgba(26, 24, 21, .3); }

/* ---- Dark band (process / contact) ---- */
.dark-band { background: var(--grad-navy); color: #fff; overflow: hidden; }
.dark-band .blob-d { top: -100px; right: -80px; width: 380px; height: 380px; }
.dark-band .section-head h2 { color: #fff; }
.dark-band .section-head p { color: var(--muted2); }
.step {
  background: var(--navy2);
  border-radius: 18px;
  padding: 32px;
  transition: background .25s ease, transform .25s ease;
}
.step:hover { background: var(--white); transform: translateY(-4px); }
.step .num {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--grad-orange);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 800;
  display: grid; place-items: center;
  margin-bottom: 20px;
}
.step h3 { color: #fff; font-size: 18px; font-weight: 700; margin: 0 0 10px; }
.step p { font-size: 14.5px; color: var(--muted2); line-height: 1.6; margin: 0; }

/* ---- Reviews ---- */
.stars { color: var(--accent); font-size: 14px; margin-bottom: 16px; letter-spacing: .06em; }
.review p { font-size: 15px; line-height: 1.6; color: var(--muted); margin: 0 0 22px; }
.review-meta { display: flex; align-items: center; gap: 12px; }
.review-meta .avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-3));
  color: #fff; display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 800; font-size: 15px;
}
.review-meta .who { font-size: 13.5px; font-weight: 700; color: var(--navy); }

/* ---- Contact / quote ---- */
.contact-grid { position: relative; z-index: 1; display: grid; gap: 40px; align-items: start; }
.dark-band .contact-info h2 { color: #fff; }
.contact-info p { font-size: 16px; color: var(--muted2); line-height: 1.6; margin: 0 0 32px; max-width: 420px; }
.contact-list { display: flex; flex-direction: column; gap: 18px; }
.contact-list .k { font-family: var(--mono); font-size: 11px; font-weight: 700; letter-spacing: .14em; color: var(--accent-3); text-transform: uppercase; margin-bottom: 5px; }
.contact-list .v { font-size: 15px; color: rgba(241, 239, 234, .82); }
.contact-list .v.big { font-size: 16px; font-weight: 700; color: #fff; }
.quote-form { background: var(--white); border-radius: 22px; padding: 36px; box-shadow: 0 30px 60px -20px rgba(0, 0, 0, .35); display: grid; gap: 16px; }
.form-row { display: grid; gap: 16px; }
.quote-form label { font-size: 13px; font-weight: 700; color: var(--navy); display: grid; gap: 6px; }
.quote-form input, .quote-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1.5px solid #e2e6eb;
  font: inherit;
  font-size: 14px;
  color: var(--ink);
  background: var(--white);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.quote-form textarea { min-height: 96px; resize: vertical; }
.quote-form input:focus, .quote-form textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(44, 90, 64, .12); }
.quote-form .btn { width: 100%; }
.form-status { display: none; margin: 0; color: #2f8f4e; font-size: 13px; font-weight: 700; }
.form-status.show { display: block; }

/* ---- Page hero (subpages) ---- */
.page-hero { position: relative; overflow: hidden; padding: 40px 0 36px; }
.page-hero .blob-a { top: -120px; right: -60px; width: 380px; height: 380px; }
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(34px, 6vw, 56px); font-weight: 800; line-height: 1.03; letter-spacing: -.02em; margin: 14px 0; }
.page-hero p { max-width: 720px; margin: 0; color: var(--muted); font-size: 18px; }

/* ---- Footer ---- */
.site-footer { background: var(--navy3); color: var(--muted2); }
.footer-grid { display: grid; gap: 40px; padding: 60px 0 32px; border-bottom: 1px solid var(--navy2); }
.footer-brand .brand { color: #fff; margin-bottom: 16px; }
.footer-brand p { max-width: 280px; margin: 0; font-size: 14px; color: #7a8ba3; line-height: 1.6; }
.footer-col h4 { color: #fff; font-size: 13px; font-weight: 700; margin: 0 0 16px; }
.footer-col a, .footer-col span { display: block; color: var(--muted2); font-size: 14px; padding: 5px 0; }
.footer-col a:hover { color: #fff; }
.footer-bottom { padding: 22px 0 26px; }
.footer-bottom .wrap { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.footer-bottom span { font-size: 13px; color: #5c6f88; }

/* ---- Legal pages ---- */
.legal { max-width: 820px; }
.legal h2 { margin: 34px 0 10px; font-size: 24px; }
.legal p, .legal li { color: var(--muted); }

/* ============================================================
   Motion — reveals, counters, decorative keyframes
   ============================================================ */
@keyframes floatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes drift { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(18px, -14px); } }
@keyframes pulseRing {
  0% { box-shadow: 0 14px 30px -10px rgba(44,90,64,.5), 0 0 0 0 rgba(44, 90, 64, .45); }
  70% { box-shadow: 0 14px 30px -10px rgba(44,90,64,.5), 0 0 0 16px rgba(44, 90, 64, 0); }
  100% { box-shadow: 0 14px 30px -10px rgba(44,90,64,.5), 0 0 0 0 rgba(44, 90, 64, 0); }
}
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s cubic-bezier(.2, .7, .2, 1); transition-delay: var(--rd, 0ms); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .job-card, .hero .blob-a, .hero-actions .btn-primary { animation: none !important; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (min-width: 720px) {
  .card-row { grid-template-columns: repeat(3, 1fr); }
  .form-row { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1.6fr repeat(3, 1fr); }
}
@media (min-width: 980px) {
  .nav-links, .nav-cta { display: flex; }
  .hero-grid { grid-template-columns: 1.05fr .95fr; gap: 48px; padding: 44px 0 56px; }
  .split { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .wrap { width: calc(100% - 32px); }
  section { padding: 72px 0; }
  .job-card { left: 0; bottom: -24px; }
  .hero h1 { font-size: clamp(34px, 9vw, 44px); }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
}

/* ============================================================
   Subpage compatibility — older class vocabulary rendered in the
   new design system (services / process / reviews / contact / legal).
   ============================================================ */
.services-grid, .reviews-grid, .grid-3, .steps { display: grid; gap: 24px; }
.soft { background: var(--bg2); }

.card .icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(135deg, #e9f0e6, #cfe0cf);
  color: var(--accent); font-family: var(--font-head); font-weight: 800;
  display: grid; place-items: center; margin-bottom: 22px; transition: transform .25s ease;
}
.card:hover .icon { transform: translateY(-2px) scale(1.06); }

.feature-img { border-radius: 24px; overflow: hidden; box-shadow: 0 30px 60px -24px rgba(26, 24, 21, .3); }
.feature-img img { width: 100%; height: clamp(320px, 42vw, 440px); object-fit: cover; }

/* steps: light + auto-numbered by default; navy inside a dark band */
.steps { counter-reset: step; }
.step { background: var(--white); border: 1px solid var(--line); }
.step:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -18px rgba(26, 24, 21, .3); border-color: var(--accent); background: var(--white); }
.step h3 { color: var(--ink); }
.step p { color: var(--muted); }
.steps .step::before {
  counter-increment: step; content: "0" counter(step);
  display: grid; place-items: center; width: 36px; height: 36px; border-radius: 10px; margin-bottom: 20px;
  background: var(--grad-orange); color: #fff; font-family: var(--font-head); font-weight: 800; font-size: 13px;
}
.dark-band .step { background: var(--navy2); border-color: transparent; }
.dark-band .step:hover { background: #2f3b31; border-color: rgba(159, 215, 154, .32); box-shadow: none; }
.dark-band .step h3 { color: #fff; }
.dark-band .step p { color: var(--muted2); }

.dark-band .card { background: rgba(255, 255, 255, .06); border-color: rgba(255, 255, 255, .14); }
.dark-band .card:hover { background: rgba(255, 255, 255, .1); border-color: rgba(255, 255, 255, .28); }
.dark-band .card h3 { color: #fff; }
.dark-band .card p { color: var(--muted2); }

blockquote { margin: 0 0 18px; font-size: 15.5px; line-height: 1.55; color: var(--muted); font-weight: 500; }
.review-meta { display: flex; align-items: center; gap: 12px; color: var(--muted); font-size: 13.5px; font-weight: 700; }

.contact-section { background: var(--grad-navy); color: #fff; overflow: hidden; }
.contact-section .eyebrow { color: var(--accent); }
.contact-section h2 { color: #fff; font-size: clamp(28px, 4.4vw, 38px); font-weight: 800; letter-spacing: -.01em; margin: 14px 0 18px; }
.contact-section p { color: var(--muted2); }
.contact-section .contact-list { color: var(--muted2); }
.contact-section .contact-list b { color: #fff; }
.contact-section .contact-list a { color: var(--accent-3); }

.quote-form select {
  width: 100%; padding: 12px 14px; border-radius: 10px; border: 1.5px solid #e2e6eb;
  font: inherit; font-size: 14px; color: var(--ink); background: var(--white);
}
.quote-form select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(44, 90, 64, .12); }

.footer-brand img { width: 38px; height: 38px; border-radius: 10px; object-fit: cover; }
.footer-brand b { display: block; margin: 12px 0 8px; color: #fff; font-family: var(--font-head); font-weight: 800; font-size: 18px; }

@media (min-width: 720px) {
  .services-grid, .reviews-grid, .grid-3, .steps { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================================
   Custom subpage components — richer heroes, cards, CTAs, FAQ
   ============================================================ */
/* Two-column subpage hero */
.subhero { position: relative; overflow: hidden; padding: 0; }
.subhero .wrap { position: relative; z-index: 1; }
.subhero-grid { display: grid; gap: 40px; align-items: center; padding: 32px 0 24px; }
.subhero h1 { font-size: clamp(34px, 5.6vw, 52px); font-weight: 800; line-height: 1.04; letter-spacing: -.02em; margin: 0 0 20px; }
.subhero h1 .grad { background: linear-gradient(90deg, var(--accent), var(--accent-3)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.subhero p { font-size: 18px; color: var(--muted); line-height: 1.6; max-width: 540px; margin: 0 0 28px; }
.subhero-media { position: relative; }
.subhero-media .shot { width: 100%; height: clamp(300px, 40vw, 420px); object-fit: cover; border-radius: 24px; box-shadow: var(--shadow); }

/* Floating accent card (reused on subhero visuals) */
.float-card {
  position: absolute; left: -18px; bottom: -26px; width: 250px; max-width: 78%;
  background: linear-gradient(160deg, var(--navy2), var(--navy3)); color: #fff;
  border-radius: 18px; padding: 20px 22px; box-shadow: 0 20px 40px -12px rgba(26, 24, 21, .5);
  animation: floatY 5s ease-in-out infinite;
}
.float-card .fc-num { font-family: var(--font-head); font-size: 30px; font-weight: 800; }
.float-card .fc-lbl { font-size: 12.5px; color: var(--muted2); font-weight: 600; margin-top: 2px; }

/* Popular tag on cards */
.card { position: relative; }
.card .tag { position: absolute; top: 22px; right: 22px; background: var(--grad-orange); color: #fff; font-size: 11px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; padding: 5px 11px; border-radius: 100px; }

/* Emoji/glyph chip for feature cards */
.chip { width: 50px; height: 50px; border-radius: 14px; background: linear-gradient(135deg, #e9f0e6, #cfe0cf); display: grid; place-items: center; font-size: 24px; margin-bottom: 20px; }
.dark-band .chip { background: rgba(255, 255, 255, .1); }

/* Contact info cards (on navy) */
.info-card { background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .12); border-radius: 16px; padding: 22px; transition: border-color .25s ease, transform .25s ease; }
.info-card:hover { border-color: rgba(255, 255, 255, .3); transform: translateY(-3px); }
.info-card .k { font-size: 12px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--accent-3); margin-bottom: 8px; }
.info-card .v { color: #fff; font-size: 15px; font-weight: 600; line-height: 1.5; }
.info-card .v a { color: #fff; }

/* CTA band */
.cta-inner { background: var(--grad-navy); border-radius: 28px; padding: 60px 40px; text-align: center; position: relative; overflow: hidden; }
.cta-inner h2 { color: #fff; font-size: clamp(26px, 3.8vw, 38px); font-weight: 800; margin: 0 0 14px; }
.cta-inner p { color: var(--muted2); max-width: 520px; margin: 0 auto 28px; font-size: 16px; }

/* Rating hero block */
.rating { display: flex; align-items: center; gap: 18px; }
.rating .big { font-family: var(--font-head); font-size: 56px; font-weight: 800; color: var(--navy); line-height: 1; }
.rating .r-stars { color: var(--accent); font-size: 18px; letter-spacing: .12em; }
.rating .r-sub { font-size: 13px; color: var(--muted); font-weight: 600; margin-top: 2px; }
.stat-band { display: flex; flex-wrap: wrap; gap: 28px 44px; margin-top: 8px; }
.stat-band .num { font-family: var(--font-head); font-size: 32px; font-weight: 800; color: var(--navy); }
.stat-band .lbl { font-size: 13px; color: var(--muted); font-weight: 600; }

/* FAQ accordion */
.faq { border: 1px solid var(--line); border-radius: 16px; background: var(--white); padding: 2px 24px; margin-bottom: 12px; transition: box-shadow .2s ease, border-color .2s ease; }
.faq[open] { border-color: var(--accent); box-shadow: 0 16px 34px -22px rgba(26, 24, 21, .3); }
.faq summary { cursor: pointer; list-style: none; padding: 20px 0; font-family: var(--font-head); font-weight: 700; font-size: 16.5px; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--accent); font-size: 24px; font-weight: 700; transition: transform .25s ease; }
.faq[open] summary::after { transform: rotate(45deg); }
.faq p { margin: 0 0 20px; color: var(--muted); font-size: 15px; line-height: 1.65; }

@media (min-width: 980px) {
  .subhero-grid { grid-template-columns: 1.08fr .92fr; padding: 44px 0 44px; }
}
@media (min-width: 720px) {
  .info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
}

/* ============================================================
   v2 — distinct per-page UI: custom SVG icons, transition
   variants, service list, timeline, featured quote, masonry
   ============================================================ */
.ico { width: 22px; height: 22px; display: inline-block; vertical-align: middle; flex: 0 0 auto; }
.chip .ico { width: 26px; height: 26px; color: var(--accent); }
.dark-band .chip .ico { color: var(--accent-3); }

/* Custom check icon replaces the ✓ glyph site-wide */
:root { --check-svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E"); }
.ok, .check { position: relative; color: transparent; }
.ok::after, .check::after { content: ""; position: absolute; inset: 0; margin: auto; width: 62%; height: 62%; -webkit-mask: var(--check-svg) center/contain no-repeat; mask: var(--check-svg) center/contain no-repeat; }
.ok::after { background: #2f8f4e; }
.check::after { background: #fff; }
.job-row:not(.pending) .tick { position: relative; color: transparent; }
.job-row:not(.pending) .tick::after { content: ""; position: absolute; inset: 0; margin: auto; width: 60%; height: 60%; background: #ffffff; -webkit-mask: var(--check-svg) center/contain no-repeat; mask: var(--check-svg) center/contain no-repeat; }

/* Reveal transition variants */
.reveal.rl { transform: translateX(-32px); }
.reveal.rr { transform: translateX(32px); }
.reveal.rs { transform: scale(.92); }
.reveal.rl.is-visible, .reveal.rr.is-visible, .reveal.rs.is-visible { transform: none; }

/* Dark hero (services) */
.hero-dark { background: var(--grad-navy); color: #fff; position: relative; overflow: hidden; padding: 0; }
.hero-dark .hero-badge { background: rgba(255, 255, 255, .08); border-color: rgba(255, 255, 255, .16); color: #fff; }
.hero-dark h1 { color: #fff; }
.hero-dark p { color: var(--muted2); }
.services-hero-grid { display: grid; gap: 34px; align-items: center; padding: 40px 0 56px; position: relative; z-index: 1; }
.services-hero-copy { max-width: 760px; }
.services-hero-media { position: relative; min-height: 320px; overflow: hidden; border-radius: 28px; border: 1px solid rgba(255, 255, 255, .14); box-shadow: 0 30px 70px -42px rgba(0, 0, 0, .72); background: rgba(255, 255, 255, .06); }
.services-hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(15, 31, 52, .1), rgba(15, 31, 52, .02)), linear-gradient(180deg, rgba(15, 31, 52, 0), rgba(15, 31, 52, .18)); pointer-events: none; }
.services-hero-media img { width: 100%; height: 100%; min-height: inherit; object-fit: cover; object-position: center center; }
.hero-stats { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero-stats .chipstat { background: rgba(255, 255, 255, .07); border: 1px solid rgba(255, 255, 255, .14); border-radius: 100px; padding: 10px 18px; font-size: 13px; font-weight: 700; display: inline-flex; align-items: center; gap: 8px; color: var(--muted2); }
.hero-stats .chipstat b { color: var(--accent-3); font-family: var(--font-head); }
@media (min-width: 980px) {
  .services-hero-grid { grid-template-columns: minmax(0, .9fr) minmax(460px, 1.1fr); padding: 50px 0 66px; }
  .services-hero-media { min-height: 430px; }
}
@media (max-width: 620px) {
  .services-hero-grid { padding: 30px 0 42px; }
  .services-hero-media { min-height: 250px; border-radius: 22px; }
  .services-hero-media img { object-position: 64% center; }
}

/* Service list (menu style) */
.svc-list { border-top: 1px solid var(--line); }
.svc-row { display: grid; grid-template-columns: 44px 1fr auto; gap: 22px; align-items: center; padding: 26px 12px; border-bottom: 1px solid var(--line); transition: background .25s ease, padding .25s ease, box-shadow .25s ease; }
.svc-row:hover { background: var(--white); padding-left: 22px; box-shadow: 0 24px 44px -32px rgba(26, 24, 21, .45); }
.svc-row .n { font-family: var(--font-head); font-weight: 800; font-size: 15px; color: var(--accent); }
.svc-row .svc-main h3 { margin: 0 0 4px; font-size: clamp(19px, 2.4vw, 22px); font-weight: 700; }
.svc-row .svc-main p { margin: 0; color: var(--muted); font-size: 14.5px; }
.svc-row .svc-end { display: inline-flex; align-items: center; gap: 16px; white-space: nowrap; }
.svc-row .p { font-family: var(--font-head); font-weight: 800; color: var(--navy); font-size: 15px; }
.svc-row .svc-arrow { color: var(--accent); opacity: 0; transform: translateX(-6px); transition: opacity .25s ease, transform .25s ease; }
.svc-row:hover .svc-arrow { opacity: 1; transform: translateX(0); }

/* Timeline (process) */
.timeline { position: relative; max-width: 720px; margin: 0 auto; }
.timeline::before { content: ""; position: absolute; left: 27px; top: 10px; bottom: 46px; width: 2px; background: linear-gradient(var(--accent), rgba(44, 90, 64, .12)); }
.tl-item { position: relative; padding: 0 0 34px 84px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-num { position: absolute; left: 0; top: 0; width: 56px; height: 56px; border-radius: 50%; background: var(--grad-orange); color: #fff; display: grid; place-items: center; font-family: var(--font-head); font-weight: 800; font-size: 18px; box-shadow: 0 12px 24px -10px rgba(44, 90, 64, .6); z-index: 1; }
.tl-card { background: var(--white); border: 1px solid var(--line); border-radius: 18px; padding: 24px 28px; transition: transform .25s ease, box-shadow .25s ease; }
.tl-item:hover .tl-card { transform: translateX(6px); box-shadow: 0 22px 42px -24px rgba(26, 24, 21, .32); }
.tl-card h3 { margin: 0 0 8px; font-size: 19px; }
.tl-card p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.6; }

/* Featured quote (reviews) */
.feature-quote { background: var(--grad-navy); color: #fff; border-radius: 28px; padding: clamp(36px, 5vw, 60px); position: relative; overflow: hidden; }
.feature-quote .mark { font-family: var(--font-head); font-size: 90px; line-height: .5; color: var(--accent); }
.feature-quote blockquote { color: #fff; font-size: clamp(22px, 3vw, 30px); font-weight: 700; font-family: var(--font-head); line-height: 1.32; margin: 14px 0 26px; max-width: 780px; }
.feature-quote .fq-meta { display: flex; align-items: center; gap: 12px; }
.feature-quote .fq-meta .who { color: #fff; font-weight: 700; font-size: 14px; }
.feature-quote .fq-meta .avatar { background: var(--grad-orange); }

/* Masonry reviews */
.masonry { columns: 1; column-gap: 24px; }
.masonry > * { break-inside: avoid; margin-bottom: 24px; }
@media (min-width: 720px) { .masonry { columns: 2; } }
@media (min-width: 1040px) { .masonry { columns: 3; } }

/* Form-first contact hero */
.contact-hero { background: var(--grad-navy); color: #fff; position: relative; overflow: hidden; padding: 0; }
.contact-hero .hero-badge { background: rgba(255, 255, 255, .08); border-color: rgba(255, 255, 255, .16); color: #fff; }
.contact-hero h1 { color: #fff; }
.contact-hero p { color: var(--muted2); }
.contact-hero-grid { display: grid; gap: 40px; align-items: center; padding: 36px 0 56px; position: relative; z-index: 1; }
@media (min-width: 980px) { .contact-hero-grid { grid-template-columns: 1fr .92fr; padding: 48px 0 72px; } }

/* ============================================================
   Custom booking calendar (replaces the intake form)
   ============================================================ */
.booking { background: var(--white); border-radius: 22px; padding: 26px; box-shadow: var(--shadow); }
.bk-head { margin-bottom: 16px; }
.bk-title { font-family: var(--font-head); font-weight: 800; font-size: 20px; color: var(--ink); }
.bk-sub { color: var(--muted); font-size: 13.5px; margin-top: 4px; }
.cal-nav { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.cal-month { font-family: var(--font-head); font-weight: 700; font-size: 15px; color: var(--ink); }
.cal-nav button { width: 34px; height: 34px; border-radius: 9px; border: 1px solid var(--line); background: var(--white); color: var(--navy); font-size: 18px; line-height: 1; cursor: pointer; transition: background .2s ease, border-color .2s ease; }
.cal-nav button:hover:not(:disabled) { background: var(--bg2); border-color: var(--accent); }
.cal-nav button:disabled { opacity: .3; cursor: default; }
.cal-dow { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; margin-bottom: 6px; }
.cal-dow span { text-align: center; font-size: 10.5px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .04em; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.cal-day { aspect-ratio: 1 / 1; border: none; background: transparent; border-radius: 10px; font: inherit; font-weight: 600; font-size: 14px; color: var(--ink); cursor: pointer; transition: background .16s ease, color .16s ease; }
.cal-day:hover:not(:disabled) { background: var(--bg2); }
.cal-day.today { box-shadow: inset 0 0 0 1.5px var(--line2); }
.cal-day.sel { background: var(--grad-orange); color: #fff; box-shadow: 0 8px 18px -8px rgba(44, 90, 64, .6); }
.cal-day:disabled { color: #cbc6bd; cursor: default; }
.cal-day.blank { visibility: hidden; pointer-events: none; }
.slots { margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line); }
.slots-label { font-size: 13px; color: var(--muted); font-weight: 700; margin-bottom: 10px; }
.slots-label b { color: var(--navy); }
.slot-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.slot { padding: 11px 8px; border: 1.5px solid var(--line); border-radius: 10px; background: var(--white); font: inherit; font-size: 13px; font-weight: 700; color: var(--navy); cursor: pointer; transition: border-color .16s ease, background .16s ease, color .16s ease; }
.slot:hover { border-color: var(--accent); }
.slot.sel { background: var(--navy); color: #fff; border-color: var(--navy); }
.bk-confirm { width: 100%; margin-top: 18px; }
.book-status { margin: 14px 0 0; color: #2f8f4e; font-weight: 700; font-size: 14px; }

/* ============================================================
   Custom service-area map (How It Works hero)
   ============================================================ */
.areamap { position: relative; border-radius: 24px; overflow: hidden; background: linear-gradient(160deg, #23211d, #11100e); box-shadow: var(--shadow); aspect-ratio: 5 / 4.3; }
/* (legacy inline-SVG map rule removed — the map is now a real Leaflet map) */
.areamap .map-chip { position: absolute; top: 16px; left: 16px; background: rgba(255, 255, 255, .1); border: 1px solid rgba(255, 255, 255, .16); color: #fff; font-size: 10.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 7px 12px; border-radius: 100px; display: inline-flex; align-items: center; gap: 8px; backdrop-filter: blur(6px); }
.areamap .map-chip i { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.areamap .map-note { position: absolute; bottom: 16px; left: 16px; right: 16px; color: var(--muted2); font-size: 12px; font-weight: 600; }
.map-water { fill: #1b3f63; opacity: .55; }
.map-coverage { fill: rgba(44, 90, 64, .16); stroke: rgba(44, 90, 64, .5); stroke-width: 1.5; stroke-dasharray: 5 5; }
.map-road { stroke: rgba(255, 255, 255, .14); stroke-width: 2; fill: none; }
.pin-dot { fill: var(--accent); }
.pin-hq .pin-dot { fill: #fff; }
.pin-hq .pin-core { fill: var(--accent); }
.pin-ring { fill: none; stroke: #fff; stroke-opacity: .85; stroke-width: 2; }
.pin-label { fill: #fff; font-family: var(--font-body); font-size: 12.5px; font-weight: 600; }
.pin-hq .pin-label { font-weight: 800; font-size: 14px; }
.map-pulse { fill: rgba(44, 90, 64, .45); transform-box: fill-box; transform-origin: center; animation: mapPulse 2.6s ease-out infinite; }
@keyframes mapPulse { 0% { transform: scale(1); opacity: .55; } 100% { transform: scale(3.2); opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .map-pulse { animation: none !important; opacity: 0; } }

/* Live Leaflet service-area map (How It Works) */
.areamap-live { position: absolute; inset: 0; z-index: 1; }
.leaflet-container { background: #11100e; font-family: var(--font-body); }
.areamap .map-chip { z-index: 1000; pointer-events: none; }
.leaflet-tooltip.svc-tip { background: rgba(26, 24, 21, .92); border: 1px solid rgba(255, 255, 255, .18); color: #fff; font-weight: 700; font-size: 12px; padding: 3px 8px; border-radius: 6px; box-shadow: 0 6px 14px -8px rgba(0, 0, 0, .6); }
.leaflet-tooltip.svc-tip::before { display: none; }
.leaflet-control-zoom a { background: var(--ink) !important; color: #fff !important; border-color: rgba(255, 255, 255, .12) !important; }
.leaflet-control-zoom a:hover { background: var(--bg2) !important; }
.leaflet-control-attribution { background: rgba(26, 24, 21, .55) !important; color: rgba(255, 255, 255, .5) !important; font-size: 9px !important; }
.leaflet-control-attribution a { color: rgba(255, 255, 255, .7) !important; }

/* Service-area map — light "coverage" style (matches reference) */
.areamap { background: #e9eaec; }
.leaflet-container { background: #e9eaec; }
.map-pin-wrap { display: flex; align-items: center; gap: 6px; white-space: nowrap; }
.map-pin { width: 12px; height: 12px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 3px rgba(44, 90, 64, .22); flex: 0 0 auto; }
.map-pin.hq { width: 15px; height: 15px; box-shadow: 0 0 0 4px rgba(44, 90, 64, .28); }
.map-label { background: #151a22; color: #fff; font-family: var(--font-head); font-weight: 800; font-size: 11px; letter-spacing: .05em; text-transform: uppercase; padding: 4px 8px; border-radius: 5px; box-shadow: 0 4px 10px -4px rgba(0, 0, 0, .4); }
.map-pin.hq + .map-label { background: var(--accent); }
.map-banner { position: absolute; left: 16px; bottom: 16px; z-index: 1000; background: var(--accent); color: #fff; font-family: var(--font-head); font-weight: 800; font-size: 13px; padding: 11px 18px; border-radius: 10px; display: inline-flex; align-items: center; gap: 9px; box-shadow: 0 14px 28px -12px rgba(44, 90, 64, .65); }
.map-banner .ico { width: 17px; height: 17px; }
.leaflet-control-zoom a { background: #fff !important; color: var(--ink) !important; border-color: var(--line) !important; }
.leaflet-control-zoom a:hover { background: #f4f7fa !important; }
.leaflet-control-attribution { background: rgba(255, 255, 255, .72) !important; color: #5b6472 !important; }
.leaflet-control-attribution a { color: var(--accent-2) !important; }

/* ============================================================
   TrueBuild formatting — True Services skin overrides
   ============================================================ */
h1, h2, h3 { letter-spacing: -0.04em; line-height: 1.06; }

/* Mono eyebrows (green) */
.eyebrow { font-family: var(--mono); color: var(--accent-2); font-size: 11px; font-weight: 700; letter-spacing: .14em; }

/* Primary = ink; secondary = ghost; square-ish radius */
.btn { border-radius: 8px; }
.btn-primary { background: var(--ink); color: var(--bg2); box-shadow: 0 10px 30px -12px rgba(26, 24, 21, .35); }
.btn-primary:hover { background: #000; box-shadow: 0 16px 34px -12px rgba(26, 24, 21, .45); }
.btn-secondary { background: #fff; color: var(--ink); border-color: var(--line2); }
.btn-secondary:hover { border-color: var(--muted2); background: var(--bg2); }
.btn-pill { border-radius: 8px; padding: 13px 22px; }

/* Headline accent word = solid green */
.hero h1 .grad, .grad { background: none; -webkit-text-fill-color: var(--accent); color: var(--accent); }

/* Eyebrow pill = TrueBuild green tint */
.hero-badge { background: var(--tint); border: 1px solid var(--tint-2); color: var(--accent-2); font-family: var(--mono); border-radius: 8px; box-shadow: none; font-size: 11px; letter-spacing: .12em; }
.hero-badge i { background: var(--accent); }

/* Numbered badges = mono */
.card .num, .chip, .step .num, .tl-num, .svc-row .n, .cal-month, .bk-title { font-family: var(--mono); }
.card .num, .chip { color: var(--accent); font-weight: 600; }

/* Dark top nav (TrueBuild) */
.site-header { background: var(--navy3); border-bottom: 1px solid rgba(255, 255, 255, .12); backdrop-filter: none; -webkit-backdrop-filter: none; }
.site-header.scrolled { box-shadow: 0 8px 24px -16px rgba(0, 0, 0, .55); }
.brand { color: #fff; font-family: var(--font-head); }
.brand .brand-mark { background: var(--accent); color: #fff; border-radius: 8px; font-family: var(--mono); font-weight: 600; font-size: 14px; }
.brand img { border-radius: 8px; }
.nav-links a { color: rgba(255, 255, 255, .68); border-bottom: none; padding-bottom: 0; font-weight: 500; }
.nav-links a::after { display: none; }
.nav-links a:hover, .nav-links a.active { color: #fff; border-bottom: none; }
.nav-phone { color: rgba(255, 255, 255, .72); }
.site-header .btn-primary { background: #fff; color: var(--ink); box-shadow: none; }
.site-header .btn-primary:hover { background: var(--tint); color: var(--ink); }

/* Legibility on near-black dark sections */
.dark-band .section-head p, .hero-dark p, .contact-hero p, .contact-info p, .job-row.pending, .feature-quote .fq-meta div div { color: rgba(255, 255, 255, .66); }
.map-label { background: var(--ink); }
.map-pin.hq + .map-label { background: var(--accent); }

/* Links */
a { color: var(--accent-2); }

/* Buttons on dark sections: primary = white, secondary = ghost (TrueBuild) */
.hero-dark .btn-primary, .dark-band .btn-primary, .cta-inner .btn-primary, .contact-hero .btn-primary {
  background: #fff; color: var(--ink); box-shadow: none;
}
.hero-dark .btn-primary:hover, .dark-band .btn-primary:hover, .cta-inner .btn-primary:hover, .contact-hero .btn-primary:hover {
  background: var(--tint); color: var(--ink);
}
.hero-dark .btn-secondary, .dark-band .btn-secondary, .cta-inner .btn-secondary, .contact-hero .btn-secondary {
  background: transparent; color: #fff; border-color: rgba(255, 255, 255, .28);
}
.hero-dark .btn-secondary:hover, .dark-band .btn-secondary:hover, .cta-inner .btn-secondary:hover, .contact-hero .btn-secondary:hover {
  background: rgba(255, 255, 255, .08); border-color: rgba(255, 255, 255, .5);
}
/* Dark-hero eyebrow pill: light-green tint reads better on dark */
.hero-dark .hero-badge, .contact-hero .hero-badge { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.16); color: var(--accent-3); }

/* Footer — TrueBuild coloring + link transitions */
.site-footer { background: #11100e; color: rgba(241, 239, 234, .66); }
.footer-grid { border-bottom-color: rgba(241, 239, 234, .12); }
.footer-brand p { color: rgba(241, 239, 234, .64); }
.footer-brand .brand { color: #fff; }
.footer-col h4 { color: #fff; }
.footer-col a, .footer-col span { color: rgba(241, 239, 234, .62); transition: color .15s ease; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top-color: rgba(241, 239, 234, .12); color: rgba(241, 239, 234, .48); }
.footer-bottom span { color: rgba(241, 239, 234, .48); }

/* ============================================================
   Visual fixes — blend transitions, calendar, contact, carousel
   ============================================================ */

/* --- "Blend" transition into dark sections (TrueBuild) --- */
.dark-band { position: relative; isolation: isolate; }
.dark-band::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 150px;
  z-index: 0; pointer-events: none;
  background: linear-gradient(180deg, #ffffff 0%, rgba(35, 33, 29, 0) 62%);
}
.dark-band .wrap { position: relative; z-index: 1; }
/* Homepage: cream .value section fades into #process */
#process::before { background: linear-gradient(180deg, #F1EFEA 0%, rgba(35, 33, 29, 0) 62%); }

/* --- Booking calendar: compact, no vertical stretch --- */
.booking { max-width: 440px; padding: 24px; }
.cal-day { aspect-ratio: auto; height: 40px; border-radius: 9px; }
.cal-dow { margin-bottom: 4px; }
.cal-grid { gap: 3px; }
.slots { margin-top: 14px; padding-top: 14px; }
.bk-confirm { margin-top: 14px; }

/* --- Contact section: balance columns, kill left deadspace, tighten footer seam --- */
@media (min-width: 860px) {
  .contact-grid { grid-template-columns: 1fr minmax(360px, 440px); align-items: center; gap: 48px; }
}
#contact { padding-bottom: 72px; }
.site-footer { padding-top: 56px; }

/* --- Reviews carousel --- */
.review-carousel { position: relative; margin-top: 30px; }
.rc-viewport { overflow: hidden; }
.rc-track {
  display: flex; gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory;
  scroll-behavior: smooth; padding: 6px 2px 16px; margin: -6px -2px 0;
  -ms-overflow-style: none; scrollbar-width: none;
}
.rc-track::-webkit-scrollbar { display: none; }
.rc-track > .card { flex: 0 0 clamp(280px, 33.333%, 384px); scroll-snap-align: start; margin: 0; }
.rc-controls { display: flex; align-items: center; justify-content: space-between; margin-top: 20px; gap: 16px; }
.rc-dots { display: flex; gap: 8px; }
.rc-dot { width: 8px; height: 8px; padding: 0; border: none; border-radius: 50%; background: var(--line2); cursor: pointer; transition: width .2s ease, background .2s ease, border-radius .2s ease; }
.rc-dot.active { width: 22px; border-radius: 5px; background: var(--accent); }
.rc-arrows { display: flex; gap: 10px; }
.rc-arrow {
  width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line2);
  background: #fff; color: var(--ink); font-size: 20px; line-height: 1; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  transition: border-color .18s ease, color .18s ease, transform .18s ease, opacity .18s ease;
}
.rc-arrow:hover:not(:disabled) { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.rc-arrow:disabled { opacity: .32; cursor: default; }

/* --- Service rows are links (carry service into booking) --- */
a.svc-row { color: inherit; text-decoration: none; cursor: pointer; }
a.svc-row:hover { color: inherit; }
a.svc-row .svc-main h3 { color: var(--ink); }

/* Booking: "Requesting <service>" badge carried from the services page */
.bk-service { margin-top: 12px; display: inline-flex; align-items: baseline; gap: 8px; font-size: 13px; color: var(--ink); background: var(--tint); border: 1px solid var(--tint-2); padding: 7px 12px; border-radius: 8px; }
.bk-service span { font-family: var(--mono); font-size: 10.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--accent-2); }
.bk-service b { font-weight: 700; color: var(--ink); }

/* ============================================================
   PRODUCTION AUDIT FIXES (Aug 2026) — loaded last so these win.
   Fonts, mobile nav, a11y focus, contrast, legal readability,
   motion coverage, service-row polish.
   ============================================================ */
:root{
  --font-head: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  --muted: #5E594E;            /* darkened from #7D7669 for WCAG AA on white */
  --radius-sm:8px; --radius-md:12px; --radius-lg:16px; --radius-xl:24px;
}
h1,h2,h3{ font-optical-sizing:auto; }

/* --- Global keyboard focus ring (a11y) --- */
:where(a,button,summary,input,textarea,select,[tabindex]):focus-visible{
  outline:2px solid var(--accent-2); outline-offset:2px; border-radius:6px;
}
.site-header :where(a,button):focus-visible,
.dark-band :where(a,button):focus-visible,
.hero-dark :where(a,button):focus-visible,
.contact-hero :where(a,button):focus-visible{ outline-color:var(--accent-3); }

/* --- Active-nav wayfinding (was identical to hover) --- */
.nav-links a.active{ color:#fff; }
.nav-links a.active::after{ display:block; content:''; height:2px; margin-top:3px; background:var(--accent-3); border-radius:2px; }

/* --- Mobile navigation (site had NO nav below 980px) --- */
.nav{ position:relative; }
.nav-toggle{
  display:inline-flex; align-items:center; justify-content:center;
  width:44px; height:44px; padding:0; margin-right:-6px;
  background:transparent; border:1px solid rgba(255,255,255,.20); border-radius:8px;
  color:#fff; cursor:pointer;
}
.nav-toggle .bar{ position:relative; display:block; width:20px; height:2px; background:#fff; border-radius:2px; }
.nav-toggle .bar::before,.nav-toggle .bar::after{ content:''; position:absolute; left:0; width:20px; height:2px; background:#fff; border-radius:2px; transition:transform .25s ease; }
.nav-toggle .bar::before{ top:-6px; }
.nav-toggle .bar::after{ top:6px; }
.nav-toggle[aria-expanded="true"] .bar{ background:transparent; }
.nav-toggle[aria-expanded="true"] .bar::before{ transform:translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .bar::after{ transform:translateY(-6px) rotate(-45deg); }
.nav-mobile{
  display:none; position:absolute; left:0; right:0; top:100%;
  background:var(--navy3); border-top:1px solid rgba(255,255,255,.1);
  box-shadow:0 26px 44px -26px rgba(0,0,0,.7); padding:6px 0 18px; z-index:60;
}
.nav-mobile.open{ display:block; }
.nav-mobile a{
  display:block; padding:14px 24px; color:rgba(255,255,255,.82);
  font-size:16px; font-weight:600; border-bottom:1px solid rgba(255,255,255,.06);
}
.nav-mobile a:hover,.nav-mobile a.active{ color:#fff; background:rgba(255,255,255,.05); }
.nav-mobile .nm-cta{ padding:16px 24px 4px; border:0; }
.nav-mobile .nm-cta .btn{ width:100%; }
.nav-mobile .nm-call{ display:block; padding:12px 24px 2px; border:0; color:var(--accent-3); font-family:var(--mono); font-size:14px; letter-spacing:.04em; }
@media (min-width:980px){ .nav-toggle{ display:none; } .nav-mobile{ display:none !important; } }

/* --- Services: arrow always visible, no hover layout jump --- */
.svc-row .svc-arrow{ opacity:.4; transform:none; }
.svc-row:hover{ padding-left:12px; box-shadow:inset 3px 0 0 var(--accent), 0 24px 44px -32px rgba(26,24,21,.45); }
.svc-row:hover .svc-arrow{ opacity:1; transform:translateX(4px); }
@media (hover:none){ .svc-row .svc-arrow{ opacity:.6; } }

/* --- Legal pages: readable measure + rhythm + TOC --- */
.legal{ max-width:720px; }
.legal p,.legal li{ color:var(--ink); opacity:.9; font-size:16px; line-height:1.75; }
.legal h2{ font-family:var(--font-head); font-size:22px; margin:36px 0 10px; padding-top:28px; border-top:1px solid var(--line); scroll-margin-top:96px; }
.legal h2:first-of-type{ border-top:0; padding-top:0; margin-top:8px; }
.legal-meta{ font-family:var(--mono); font-size:12px; letter-spacing:.06em; text-transform:uppercase; color:var(--muted2); }
.legal-toc{ border:1px solid var(--line); border-radius:var(--radius-md); padding:20px 24px; margin:10px 0 40px; background:var(--bg2); }
.legal-toc .k{ display:block; font-family:var(--mono); font-size:11px; letter-spacing:.12em; text-transform:uppercase; color:var(--accent-2); margin-bottom:10px; }
.legal-toc ul{ margin:0; padding:0; list-style:none; display:grid; gap:8px; }
.legal-toc a{ color:var(--ink); font-weight:600; font-size:14.5px; }
.legal-toc a:hover{ color:var(--accent); }

/* --- Complete reduced-motion coverage (all blobs/float/pulse) --- */
@media (prefers-reduced-motion: reduce){
  .blob,.hero-actions .btn-primary,.job-card,.float-card,.map-pulse{ animation:none !important; }
}

/* ============================================================
   BLOG — index cards + long-form article prose
   ============================================================ */
.breadcrumb{ font-family:var(--mono); font-size:11.5px; letter-spacing:.06em; text-transform:uppercase; color:var(--muted); margin-bottom:14px; }
.breadcrumb a{ color:var(--muted); } .breadcrumb a:hover{ color:var(--accent); }
.breadcrumb .sep{ opacity:.5; margin:0 6px; }

/* Blog index */
.blog-grid{ display:grid; gap:26px; grid-template-columns:1fr; }
@media(min-width:640px){ .blog-grid{ grid-template-columns:1fr 1fr; } }
@media(min-width:1000px){ .blog-grid{ grid-template-columns:1fr 1fr 1fr; } }
.post-card{ display:flex; flex-direction:column; background:var(--white); border:1px solid var(--line); border-radius:var(--radius-lg); overflow:hidden; transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.post-card:hover{ transform:translateY(-4px); box-shadow:0 22px 44px -22px rgba(26,24,21,.3); border-color:var(--accent); }
.post-card .pc-tag{ font-family:var(--mono); font-size:10.5px; letter-spacing:.12em; text-transform:uppercase; color:var(--accent-2); }
.post-card .pc-body{ padding:24px 24px 26px; display:flex; flex-direction:column; gap:10px; height:100%; }
.post-card h3{ font-family:var(--font-head); font-size:20px; line-height:1.18; margin:2px 0 0; }
.post-card p{ color:var(--muted); font-size:14.5px; line-height:1.6; margin:0; }
.post-card .pc-more{ margin-top:auto; padding-top:8px; font-weight:700; font-size:14px; color:var(--accent-2); display:inline-flex; gap:7px; }
.blog-cat{ font-family:var(--mono); font-size:12px; letter-spacing:.14em; text-transform:uppercase; color:var(--accent-2); margin:44px 0 18px; }

/* Article */
.post{ max-width:720px; margin:0 auto; }
.post-head{ margin-bottom:28px; }
.post-head h1{ font-family:var(--font-head); font-size:clamp(30px,4.6vw,46px); line-height:1.08; letter-spacing:-.02em; margin:8px 0 16px; }
.post-meta{ font-family:var(--mono); font-size:12px; letter-spacing:.04em; color:var(--muted); display:flex; flex-wrap:wrap; gap:8px 16px; }
.post-lede{ font-size:19px; line-height:1.6; color:var(--ink); opacity:.92; margin:20px 0 0; }
.post-body{ font-size:16.5px; line-height:1.78; color:var(--ink); }
.post-body>*{ opacity:.94; }
.post-body h2{ font-family:var(--font-head); font-size:clamp(23px,3vw,29px); line-height:1.2; letter-spacing:-.015em; margin:44px 0 12px; opacity:1; scroll-margin-top:90px; }
.post-body h3{ font-family:var(--font-head); font-size:20px; margin:28px 0 8px; opacity:1; }
.post-body p{ margin:0 0 18px; }
.post-body ul,.post-body ol{ margin:0 0 20px; padding-left:22px; }
.post-body li{ margin:0 0 9px; }
.post-body a{ color:var(--accent-2); font-weight:600; text-decoration:underline; text-underline-offset:2px; text-decoration-thickness:1px; }
.post-body strong{ color:var(--ink); }
.post-body img{ border-radius:var(--radius-lg); margin:24px 0; }
/* cost / data tables */
.post-body .table-wrap{ overflow-x:auto; margin:0 0 24px; }
.post-body table{ width:100%; border-collapse:collapse; font-size:15px; min-width:420px; }
.post-body th,.post-body td{ text-align:left; padding:11px 14px; border-bottom:1px solid var(--line); }
.post-body thead th{ font-family:var(--mono); font-size:11px; letter-spacing:.06em; text-transform:uppercase; color:var(--muted); background:var(--bg2); }
.post-body tbody tr:hover{ background:var(--bg2); }
.post-body td.price{ font-family:var(--font-head); font-weight:700; white-space:nowrap; color:var(--accent); }
/* key-facts / callout */
.callout{ background:var(--bg2); border:1px solid var(--line); border-left:4px solid var(--accent); border-radius:var(--radius-md); padding:20px 24px; margin:26px 0; }
.callout .k{ font-family:var(--mono); font-size:11px; letter-spacing:.12em; text-transform:uppercase; color:var(--accent-2); display:block; margin-bottom:8px; }
.callout p:last-child,.callout ul:last-child{ margin-bottom:0; }
/* end-of-post CTA */
.post-cta{ background:var(--grad-navy); color:#fff; border-radius:var(--radius-xl); padding:clamp(28px,4vw,44px); margin:44px 0 0; text-align:center; }
.post-cta h2{ font-family:var(--font-head); color:#fff; font-size:clamp(22px,3vw,30px); margin:0 0 10px; }
.post-cta p{ color:rgba(255,255,255,.72); max-width:44ch; margin:0 auto 22px; }
.post-disclaimer{ font-size:13.5px; color:var(--muted); font-style:italic; border-top:1px solid var(--line); margin-top:40px; padding-top:20px; }

/* ============================================================
   Services hero — light, menu-preview card (replaces stock photo)
   ============================================================ */
.svc-menu-card{ align-self:start; background:var(--white); border:1px solid var(--line); border-radius:var(--radius-xl); padding:24px 28px 26px; box-shadow:0 30px 60px -30px rgba(26,24,21,.26); }
.smc-head{ display:flex; align-items:baseline; justify-content:space-between; gap:12px; padding-bottom:14px; border-bottom:1px solid var(--line); }
.smc-head .k{ font-family:var(--mono); font-size:11px; letter-spacing:.14em; text-transform:uppercase; color:var(--accent-2); }
.smc-head .smc-note{ font-family:var(--mono); font-size:11px; letter-spacing:.04em; color:var(--muted); }
.smc-list{ list-style:none; margin:0; padding:0; }
.smc-list li{ border-bottom:1px solid var(--line); }
.smc-list li:last-child{ border-bottom:0; }
.smc-list a{ display:flex; align-items:baseline; justify-content:space-between; gap:16px; padding:14px 2px; color:inherit; text-decoration:none; border-radius:6px; transition:padding .18s ease, color .18s ease; }
.smc-list a:hover{ padding-left:8px; }
.smc-name{ font-family:var(--font-head); font-weight:600; font-size:17px; color:var(--ink); }
.smc-list a:hover .smc-name{ color:var(--accent); }
.smc-price{ font-family:var(--mono); font-weight:600; font-size:13px; color:var(--accent); white-space:nowrap; }
.smc-cta{ margin-top:16px; }
@media (max-width:979px){ .svc-menu-card{ margin-top:8px; } }

/* ============================================================
   Booking details form (contact) — name / phone / notes
   ============================================================ */
.bk-details{ margin-top:16px; display:grid; gap:12px; }
.bk-details[hidden]{ display:none; }   /* author display:grid otherwise overrides the [hidden] attribute */
.bk-drow{ display:grid; grid-template-columns:1fr 1fr; gap:12px; }
@media (max-width:420px){ .bk-drow{ grid-template-columns:1fr; } }
.bk-field{ display:grid; gap:5px; }
.bk-field>span{ font-size:12.5px; font-weight:700; color:var(--navy); }
.bk-field>span em{ font-style:normal; font-weight:500; color:var(--muted); }
.bk-field input,.bk-field textarea{ width:100%; padding:11px 13px; border:1.5px solid var(--line2); border-radius:10px; font:inherit; font-size:14px; color:var(--ink); background:var(--white); transition:border-color .18s ease, box-shadow .18s ease; }
.bk-field textarea{ resize:vertical; min-height:74px; }
.bk-field input:focus,.bk-field textarea:focus{ outline:none; border-color:var(--accent); box-shadow:0 0 0 3px rgba(44,90,64,.12); }
.bk-error{ margin:2px 0 0; color:#b23b3b; font-size:13px; font-weight:600; }
.book-status .bk-send{ display:inline-block; margin-top:8px; font-weight:700; color:var(--accent-2); }

/* ============================================================
   MOBILE HARDENING — kill horizontal scroll + safe media
   ============================================================ */
/* Do NOT clip html/body (breaks the sticky header). Clip the specific leaky
   elements instead — the header is a direct body child, so this is safe. */
img, video, table, iframe { max-width: 100%; }
.rc-viewport { overflow: clip; }             /* contain the reviews carousel track */
.review-carousel, .trust, section, .subhero, .hero-dark, .page-hero, footer { overflow-x: clip; }
/* Blog articles: comfortable side gutters at every width */
.post { width: min(720px, 100%); box-sizing: border-box; }
@media (max-width: 760px){
  .post { padding-left: 20px !important; padding-right: 20px !important; }
  .post-cta { padding-left: 22px; padding-right: 22px; }
}

/* ============================================================
   MOBILE-FIRST HEROES (Aug 2026) — welcoming on phones first,
   two-column preserved on desktop via grid areas.
   ============================================================ */
.hero-eyebrow{ display:inline-block; margin-bottom:18px; }

/* Homepage hero: desktop = 2 columns (lead+cta left, photo right spanning) */
@media (min-width:980px){
  .hero-grid{
    grid-template-columns:1.05fr .95fr;
    grid-template-areas:"lead media" "cta media";
    column-gap:52px; row-gap:26px; align-items:start; padding:48px 0 60px;
  }
  .hero-lead{ grid-area:lead; }
  .hero-media{ grid-area:media; align-self:center; }
  .hero-cta{ grid-area:cta; }
}

/* Homepage hero: mobile order = eyebrow -> headline -> photo -> CTAs */
@media (max-width:979px){
  .hero-lead p{ margin-bottom:0; }
  .hero-cta{ margin-top:2px; }
}
@media (max-width:700px){
  .hero-grid{ padding:14px 0 44px; gap:22px; }
  .hero-eyebrow{ margin-bottom:12px; }
  .hero h1{ font-size:clamp(31px,8.6vw,40px); line-height:1.08; margin-bottom:16px; }
  .hero-lead p{ font-size:16.5px; line-height:1.6; }
  .hero-media{ margin:2px 0 42px; }               /* clearance for the job-status card overlap */
  .hero-media .shot{ height:clamp(250px,64vw,330px); }
  .hero-actions{ gap:12px; margin-bottom:22px; }
  .hero-proof{ gap:10px 22px; }
}

/* All other page heroes — warmer, tighter top on mobile */
@media (max-width:700px){
  .subhero-grid{ padding:16px 0 18px; gap:26px; }
  .subhero h1{ font-size:clamp(30px,8vw,38px); line-height:1.08; }
  .subhero p{ font-size:16.5px; }
  .contact-hero-grid{ padding:18px 0 40px; gap:26px; }
  .contact-hero h1{ font-size:clamp(30px,8vw,38px); line-height:1.08; }
  .page-hero{ padding:24px 0 18px; }
  .page-hero h1{ font-size:clamp(30px,8vw,40px); line-height:1.06; }
  .services-hero-grid{ padding:14px 0 4px; gap:24px; }
  .hero-dark .services-hero-copy h1, .services-hero-copy h1{ font-size:clamp(31px,8.6vw,40px); line-height:1.08; }
  /* thumb-friendly: primary CTA full width, comfortable tap size */
  .hero-actions .btn, .subhero .hero-actions .btn{ width:100%; padding:15px 24px; }
}

/* Services hero: the menu-preview card is desktop-only — on mobile it just
   duplicates the "full menu of fixes" list right below, so hide it and let
   the hero read as a clean, attractive single-column intro. */
@media (max-width: 979px){
  .svc-menu-card{ display: none; }
}
