/* ════════════════════════════════════════════════════════════════
   RDS CONSTRUCTION — SITE STYLES (v3 — Clean Service Business)
   Built by Advocate Marketing LLC · 2026-05-25
   Reference aesthetic: Lane CPA Solutions · Bend Contractor Connect
   ════════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700&family=Newsreader:opsz,wght@6..72,400;6..72,500;6..72,600&family=Bebas+Neue&display=swap');

/* ─── PALETTE VARIABLES ─────────────────────────────────────────
   Cream paper + warm black + muted gold.
   To swap to Forest palette: change --ink + --ink-soft.
   ──────────────────────────────────────────────────────────────── */
:root {
  --paper:        #f7f1e6;
  --paper-2:      #efe8d8;
  --paper-edge:   #d8cdb6;
  --ink:          #1c1814;
  --ink-soft:     #2e2820;
  --ink-deep:     #0d0b08;
  --gold:         #b8924a;
  --gold-soft:    #cda657;
  --gold-deep:    #8d6f33;

  --text:           #1c1814;
  --text-secondary: #4a4339;
  --text-muted:     #7a7165;
  --text-faint:     #a39b8e;
  --text-inverse:   #f7f1e6;
  --text-inverse-muted: #b8b0a0;

  --check:    #2d5a2d;
  --warn:     #9c3a18;

  --max-width: 1280px;
  --content-width: 720px;
  --gutter: clamp(20px, 4vw, 56px);

  /* Backward-compat aliases for v1/v2 page references */
  --cream:        var(--paper);
  --cream-warm:   var(--paper-2);
  --cream-edge:   var(--paper-edge);
  --dark:         var(--ink);
  --dark-soft:    var(--ink-soft);
  --dark-deep:    var(--ink-deep);
  --text-primary: var(--text);
}

/* ═══ RESET ═══ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

body {
  font-family: 'Newsreader', Georgia, serif;
  font-optical-sizing: auto;
  background: var(--paper);
  color: var(--text);
  line-height: 1.65;
  font-size: 17px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

/* ═══════════════════════════════════════════════════
   HEADER / NAV — Lane CPA pattern
   Logo left · menu center · phone + CTA right
   ═══════════════════════════════════════════════════ */
.site-header {
  background: var(--paper);
  color: var(--ink);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--paper-edge);
}
.site-header .nav-wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 18px var(--gutter);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: center;
}
.site-header .brand {
  text-decoration: none;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.site-header .brand .mark {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 30px;
  letter-spacing: -0.02em;
  line-height: 0.9;
}
.site-header .brand .tag {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 9px;
  letter-spacing: 2.5px;
  color: var(--text-muted);
  margin-top: 5px;
  text-transform: uppercase;
}
.site-header nav ul {
  list-style: none;
  display: flex;
  gap: 36px;
  align-items: center;
  justify-content: center;
}
.site-header nav a {
  text-decoration: none;
  color: var(--ink);
  font-family: 'Newsreader', Georgia, serif;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.2s ease;
  position: relative;
}
.site-header nav a:hover { color: var(--gold-deep); }
.site-header nav a.active { color: var(--gold-deep); }
.site-header .nav-right {
  display: flex;
  align-items: center;
  gap: 18px;
}
.site-header .phone-link {
  text-decoration: none;
  color: var(--ink);
  font-family: 'Newsreader', Georgia, serif;
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}
.site-header .phone-link::before {
  content: '';
  display: inline-block;
  width: 16px; height: 16px;
  background: var(--ink);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M20 15.5c-1.25 0-2.45-.2-3.57-.57a1 1 0 0 0-1.02.24l-2.2 2.2a15.05 15.05 0 0 1-6.59-6.59l2.2-2.2a1 1 0 0 0 .25-1.02A11.36 11.36 0 0 1 8.5 4a1 1 0 0 0-1-1H4a1 1 0 0 0-1 1c0 9.39 7.61 17 17 17a1 1 0 0 0 1-1v-3.5a1 1 0 0 0-1-1z'/></svg>") no-repeat center;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M20 15.5c-1.25 0-2.45-.2-3.57-.57a1 1 0 0 0-1.02.24l-2.2 2.2a15.05 15.05 0 0 1-6.59-6.59l2.2-2.2a1 1 0 0 0 .25-1.02A11.36 11.36 0 0 1 8.5 4a1 1 0 0 0-1-1H4a1 1 0 0 0-1 1c0 9.39 7.61 17 17 17a1 1 0 0 0 1-1v-3.5a1 1 0 0 0-1-1z'/></svg>") no-repeat center;
  -webkit-mask-size: contain;
          mask-size: contain;
}
.site-header .phone-link:hover { color: var(--gold-deep); }
.site-header .phone-link:hover::before { background: var(--gold-deep); }
.site-header .cta {
  background: var(--ink);
  color: var(--text-inverse);
  font-family: 'Newsreader', Georgia, serif;
  font-size: 15px;
  font-weight: 600;
  padding: 11px 22px;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.2s ease;
  border: 1px solid var(--ink);
}
.site-header .cta:hover { background: var(--gold-deep); border-color: var(--gold-deep); }
.site-header .hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--ink);
  font-size: 22px;
  cursor: pointer;
  padding: 4px 8px;
}

/* ═══════════════════════════════════════════════════
   HERO — Full-bleed photo with light-to-lighter overlay
   Text overlays on left, stats card floats at bottom-right
   ═══════════════════════════════════════════════════ */
.hero {
  background-color: var(--paper);
  background-image: url('img/hero-rory.jpg');
  background-size: cover;
  /* Anchor right side so Rory + truck stay framed.
     Vertical 35% shows full truck circle logo + full chest, keeps belt cropped. */
  background-position: right 35%;
  background-repeat: no-repeat;
  position: relative;
  /* Image is 1717 × 916 (aspect 1.875). Hero at 900 nearly matches image height,
     so cover only crops ~7px vertically — essentially the entire image is visible. */
  min-height: 900px;
  padding: clamp(80px, 9vw, 132px) var(--gutter) clamp(100px, 10vw, 150px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Light-to-lighter cream overlay — pull cream WAY back on the right
   so Rory's face is crisp and the Pacific backdrop reads */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(247, 241, 230, 0.94) 0%,
    rgba(247, 241, 230, 0.82) 22%,
    rgba(247, 241, 230, 0.30) 45%,
    rgba(247, 241, 230, 0.05) 65%,
    rgba(247, 241, 230, 0.00) 100%
  );
  z-index: 0;
  pointer-events: none;
}

.hero .hero-wrap {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}
.hero .hero-content {
  max-width: 580px;
}
.hero .eyebrow {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 17px;        /* bumped 40% from 12 */
  letter-spacing: 5px;
  color: var(--gold-deep);
  text-transform: uppercase;
  margin-bottom: 24px;
  display: block;
}
.hero h1 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: clamp(48px, 6.5vw, 84px);
  line-height: 0.96;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 28px;
}
.hero h1 em {
  font-style: italic;
  font-weight: 500;
  color: var(--gold-deep);
}
.hero .lede {
  font-family: 'Newsreader', Georgia, serif;
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 36px;
  max-width: 520px;
}
.hero-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Stats overlay card — floats at bottom-right of hero */
.hero .stats-overlay {
  position: absolute;
  right: var(--gutter);
  bottom: clamp(20px, 4vw, 36px);
  z-index: 2;
  background: var(--paper);
  border-radius: 14px;
  padding: 22px 28px;
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 32px;
  box-shadow: 0 24px 60px -16px rgba(28, 24, 20, 0.22);
}
.hero .stats-overlay .stat {
  text-align: center;
}
.hero .stats-overlay .stat strong {
  display: block;
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.hero .stats-overlay .stat .label {
  display: block;
  font-family: 'Newsreader', Georgia, serif;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 6px;
  line-height: 1.3;
}

/* ═══════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Newsreader', Georgia, serif;
  font-size: 16px;
  font-weight: 600;
  padding: 14px 26px;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  text-transform: none;
  letter-spacing: 0;
}
.btn-primary {
  background: var(--ink);
  color: var(--text-inverse);
  border-color: var(--ink);
}
.btn-primary:hover { background: var(--gold-deep); border-color: var(--gold-deep); }
.btn-gold {
  background: var(--gold-deep);
  color: var(--text-inverse);
  border-color: var(--gold-deep);
}
.btn-gold:hover { background: var(--ink); border-color: var(--ink); }
.btn-ghost {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--text-inverse); }
.btn .icon-phone {
  width: 16px; height: 16px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M20 15.5c-1.25 0-2.45-.2-3.57-.57a1 1 0 0 0-1.02.24l-2.2 2.2a15.05 15.05 0 0 1-6.59-6.59l2.2-2.2a1 1 0 0 0 .25-1.02A11.36 11.36 0 0 1 8.5 4a1 1 0 0 0-1-1H4a1 1 0 0 0-1 1c0 9.39 7.61 17 17 17a1 1 0 0 0 1-1v-3.5a1 1 0 0 0-1-1z'/></svg>") no-repeat center;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M20 15.5c-1.25 0-2.45-.2-3.57-.57a1 1 0 0 0-1.02.24l-2.2 2.2a15.05 15.05 0 0 1-6.59-6.59l2.2-2.2a1 1 0 0 0 .25-1.02A11.36 11.36 0 0 1 8.5 4a1 1 0 0 0-1-1H4a1 1 0 0 0-1 1c0 9.39 7.61 17 17 17a1 1 0 0 0 1-1v-3.5a1 1 0 0 0-1-1z'/></svg>") no-repeat center;
}

/* ═══════════════════════════════════════════════════
   SECTION SCAFFOLD
   ═══════════════════════════════════════════════════ */
section {
  padding: clamp(72px, 9vw, 120px) var(--gutter);
  position: relative;
}
section.tight { padding: clamp(48px, 6vw, 72px) var(--gutter); }
section.dark {
  background: var(--ink);
  color: var(--text-inverse);
}
section.paper-2,
section.cream-warm {
  background: var(--paper-2);
}
.section-wrap {
  max-width: var(--max-width);
  margin: 0 auto;
}
.section-wrap.narrow {
  max-width: var(--content-width);
}
.section-header {
  margin-bottom: clamp(40px, 5vw, 56px);
  max-width: 720px;
}
.section-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 17px;        /* bumped 40% from 12 */
  letter-spacing: 5px;    /* scaled to match */
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 14px;
  display: block;
}
.section-title {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 18px;
}
section.dark .section-title { color: var(--text-inverse); }
.section-title em {
  font-style: italic;
  font-weight: 500;
  color: var(--gold-deep);
}
.section-lede {
  font-family: 'Newsreader', Georgia, serif;
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 640px;
}
section.dark .section-lede { color: var(--text-inverse-muted); }

/* ═══════════════════════════════════════════════════
   SERVICES GRID — photo-driven cards (Lovable pattern)
   ═══════════════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Orphan card centering — works for any service grid where the last card
   needs to sit alone in the middle column (e.g., 7-card or 10-card layouts) */
.services-grid .service-card--centered {
  grid-column: 2 / 3;
}
@media (max-width: 900px) {
  .services-grid .service-card--centered { grid-column: auto; }
}

/* ═══ SPECIALTY ADD-ONS — 2-card sub-grid below main services ═══ */
.specialty-addons {
  margin-top: clamp(48px, 6vw, 72px);
  padding-top: clamp(48px, 6vw, 72px);
  border-top: 1px solid var(--paper-edge);
}
.specialty-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 36px;
}
.specialty-header .section-label {
  margin-bottom: 10px;
  display: block;
}
.specialty-header h3 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: clamp(28px, 3.5vw, 38px);
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.05;
}
.specialty-header p {
  font-family: 'Newsreader', Georgia, serif;
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.55;
}
.specialty-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .specialty-grid { grid-template-columns: repeat(2, 1fr); max-width: 760px; }
}
@media (max-width: 600px) {
  .specialty-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════
   WEEKEND WARRIOR — 9-card grid + scrolling idea ticker
   Builds on .specialty-* but adds price/days metadata,
   gradient photo placeholders, and a marquee of all 30+ project ideas.
   ═══════════════════════════════════════════════════ */
.ww-grid { max-width: 1280px; }
/* Center the orphaned 10th card on desktop 3-col (10 = 3+3+3+1) */
.ww-grid .ww-card:nth-child(10):last-child { grid-column: 2 / 3; }
@media (max-width: 900px) {
  .ww-grid .ww-card:nth-child(10):last-child { grid-column: auto; }
}
.ww-card { position: relative; }
.ww-card .ww-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 10px 0 12px;
  margin: 4px 0 8px;
  border-top: 1px solid var(--paper-edge);
  border-bottom: 1px solid var(--paper-edge);
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 2px;
  font-size: 11.5px;
  text-transform: uppercase;
}
.ww-card .ww-price { color: var(--gold-deep); font-weight: 500; }
.ww-card .ww-days { color: var(--text-muted); }

/* Photo placeholders — themed gradients per project for visual rhythm
   until real photos are wired (replace by adding background-image inline). */
.ww-photo {
  background-color: var(--ink);
  background-size: cover;
  background-position: center;
  position: relative;
}
.ww-photo::after {
  content: attr(aria-label);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  letter-spacing: 3px;
  color: rgba(247, 241, 230, 0.7);
  text-transform: uppercase;
  line-height: 1.4;
}
/* Per-project gradient placeholders — distinct color stories so they don't all look identical */
.ww-firepit     { background-image: linear-gradient(155deg, #d97f3a 0%, #6b3a1f 60%, #1a1410 100%); }
.ww-pergola     { background-image: linear-gradient(155deg, #b08d5c 0%, #4a5a3a 55%, #1c2419 100%); }
.ww-mudroom     { background-image: linear-gradient(155deg, #6e7c8a 0%, #3d4a55 55%, #1a1f24 100%); }
.ww-petwash     { background-image: linear-gradient(155deg, #88a8b8 0%, #4e6a78 55%, #1c2228 100%); }
.ww-garage-door { background-image: linear-gradient(155deg, #c8b896 0%, #6e6248 55%, #1f1d18 100%); }
.ww-murphy      { background-image: linear-gradient(155deg, #9e8970 0%, #5a4d3e 55%, #1f1c18 100%); }

/* ───── TICKER — horizontal scroll of all 30+ project names ───── */
.ww-ticker-wrap {
  margin-top: clamp(40px, 5vw, 64px);
  padding: 24px 0 8px;
  border-top: 1px solid var(--paper-edge);
}
.ww-ticker-label {
  text-align: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--gold-deep);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.ww-ticker {
  overflow: hidden;
  position: relative;
  /* Fade the leading + trailing edges so pills feel like they emerge/exit */
  mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
}
.ww-ticker-track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: ww-ticker-scroll 90s linear infinite;
}
.ww-ticker:hover .ww-ticker-track { animation-play-state: paused; }
.ww-pill {
  flex-shrink: 0;
  padding: 14px 26px;
  background: var(--paper);
  border: 1.5px solid var(--paper-edge);
  border-radius: 999px;
  font-family: 'Newsreader', Georgia, serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
  white-space: nowrap;
  /* Soft gold-tinted shadow underneath — gives each pill weight */
  box-shadow:
    0 4px 14px -4px rgba(184, 146, 74, 0.28),
    0 2px 6px -2px rgba(28, 24, 20, 0.12);
  transition:
    transform 0.45s cubic-bezier(0.2, 0.7, 0.2, 1),
    box-shadow 0.45s cubic-bezier(0.2, 0.7, 0.2, 1),
    border-color 0.3s ease,
    color 0.3s ease,
    background 0.3s ease;
  transform-origin: center center;
  will-change: transform;
}
.ww-pill:hover {
  border-color: var(--gold-deep);
  color: var(--gold-deep);
  background: #fff;
  cursor: default;
}
/* Center-zoom: the pill currently nearest the ticker's horizontal center
   scales up and gets a stronger gold glow. JS toggles this class via rAF. */
.ww-pill.is-center {
  transform: scale(1.18);
  border-color: var(--gold-deep);
  color: var(--gold-deep);
  background: #fff;
  box-shadow:
    0 14px 36px -10px rgba(184, 146, 74, 0.55),
    0 6px 14px -4px rgba(28, 24, 20, 0.22),
    0 0 0 4px rgba(205, 166, 87, 0.14);
  z-index: 2;
}
/* The two pills adjacent to the center get a smaller bump — feels like
   a magnifying lens passing over the ticker */
.ww-pill.is-near-center {
  transform: scale(1.07);
  box-shadow:
    0 8px 22px -8px rgba(184, 146, 74, 0.38),
    0 3px 8px -3px rgba(28, 24, 20, 0.15);
}
@media (prefers-reduced-motion: reduce) {
  .ww-pill,
  .ww-pill.is-center,
  .ww-pill.is-near-center {
    transition: none;
    transform: none;
  }
}
@keyframes ww-ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ww-ticker-cta {
  text-align: center;
  margin-top: 18px;
  font-family: 'Newsreader', Georgia, serif;
  font-size: 15px;
  color: var(--text-secondary);
}
.ww-ticker-link {
  color: var(--gold-deep);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid var(--gold-deep);
  padding-bottom: 1px;
}
.ww-ticker-link:hover { color: var(--ink); border-color: var(--ink); }

@media (prefers-reduced-motion: reduce) {
  .ww-ticker-track { animation: none; }
}
.service-card {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--paper-edge);
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 0.25s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px -16px rgba(28, 24, 20, 0.18);
}
.service-card .card-photo {
  aspect-ratio: 4 / 3;
  background-color: var(--ink-soft);
  background-size: cover;
  background-position: center;
  position: relative;
}
.service-card .card-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 70%, rgba(0,0,0,0.15) 100%);
  pointer-events: none;
}
.service-card .card-body {
  padding: 24px 26px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.service-card .card-body h3 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 10px;
}
.service-card .card-body p {
  font-family: 'Newsreader', Georgia, serif;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.55;
  flex: 1;
  margin-bottom: 16px;
}
.service-card .card-link {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 12px;
  letter-spacing: 2.5px;
  color: var(--gold-deep);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.service-card .card-link::after {
  content: '→';
  transition: transform 0.25s ease;
}
.service-card:hover .card-link::after { transform: translateX(4px); }

/* ═══════════════════════════════════════════════════
   STATS STRIP (dark sections)
   ═══════════════════════════════════════════════════ */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat-card {
  text-align: center;
  padding: 24px 16px;
}
.stat-card .num {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(44px, 5vw, 64px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--gold-soft);
}
.stat-card .num sup { font-size: 0.5em; color: var(--gold-soft); }
.stat-card .num .num-value {
  display: inline-block;
  font-variant-numeric: tabular-nums; /* keeps digits aligned during count-up */
  transition: text-shadow 0.5s ease;
}
/* Zero-target stat (CCB complaints) — pulse during count-up,
   then shake/jiggle AFTER the other 3 counters finish landing.
   Other counters end at 1.6s. Total animation: 3.0s with 0.2s delay. */
.stat-card .num .num-value.num-pulse {
  animation: num-zero-celebrate 3.0s ease-out 0.2s 1;
  display: inline-block;
  transform-origin: center;
}
@keyframes num-zero-celebrate {
  /* Phase 1: Brief pulse during count-up (0% → 25% → 0%) */
  0%   { transform: scale(1) translateX(0) rotate(0); text-shadow: 0 0 0 transparent; }
  10%  { transform: scale(1.10) translateX(0) rotate(0); text-shadow: 0 0 28px var(--gold-soft); }
  25%  { transform: scale(1) translateX(0) rotate(0); text-shadow: 0 0 0 transparent; }

  /* Phase 2: Hold while other counters finish (25% → 50%) */
  50%  { transform: scale(1) translateX(0) rotate(0); text-shadow: 0 0 0 transparent; }

  /* Phase 3: Shake / jiggle — rapid back-and-forth with slight tilt */
  53%  { transform: scale(1) translateX(-4px) rotate(-3deg); text-shadow: 0 0 16px rgba(205, 166, 87, 0.7); }
  58%  { transform: scale(1) translateX(5px) rotate(3deg); text-shadow: 0 0 16px rgba(205, 166, 87, 0.7); }
  63%  { transform: scale(1) translateX(-4px) rotate(-3deg); text-shadow: 0 0 16px rgba(205, 166, 87, 0.7); }
  68%  { transform: scale(1) translateX(4px) rotate(2deg); text-shadow: 0 0 12px rgba(205, 166, 87, 0.5); }
  73%  { transform: scale(1) translateX(-3px) rotate(-2deg); text-shadow: 0 0 8px rgba(205, 166, 87, 0.4); }
  78%  { transform: scale(1) translateX(3px) rotate(2deg); text-shadow: 0 0 6px rgba(205, 166, 87, 0.3); }
  83%  { transform: scale(1) translateX(-2px) rotate(-1deg); text-shadow: 0 0 0 transparent; }
  88%  { transform: scale(1) translateX(2px) rotate(1deg); text-shadow: 0 0 0 transparent; }
  93%  { transform: scale(1) translateX(-1px) rotate(-0.5deg); }
  100% { transform: scale(1) translateX(0) rotate(0); text-shadow: 0 0 0 transparent; }
}
@media (prefers-reduced-motion: reduce) {
  .stat-card .num .num-value.num-pulse { animation: none; }
}
.stat-card .label {
  font-family: 'Newsreader', Georgia, serif;
  font-size: 14px;
  color: var(--text-inverse-muted);
  margin-top: 10px;
}

/* ═══════════════════════════════════════════════════
   REVIEW QUOTES — clean editorial pull-quotes
   ═══════════════════════════════════════════════════ */
.quotes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.quote {
  background: var(--paper);
  border: 1px solid var(--paper-edge);
  border-radius: 10px;
  padding: 32px 34px;
}
.quote .stars {
  font-size: 14px;
  letter-spacing: 3px;
  color: var(--gold-deep);
  margin-bottom: 16px;
}
.quote blockquote {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 19px;
  line-height: 1.45;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin-bottom: 16px;
}
.quote .author {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════
   TRUST BAR — 5-fact row, Uprise pattern
   Icon + big value + small subtext, all in dark band
   ═══════════════════════════════════════════════════ */
.trust-bar {
  background: var(--ink);
  border-top: 1px solid var(--ink-soft);
  border-bottom: 1px solid var(--ink-soft);
  padding: 28px var(--gutter);
  color: var(--text-inverse);
}

/* ═══════════════════════════════════════════════════
   FINANCING STRIP — horizontal callout between trust bar and services
   Catches the "I want this but can't afford it now" buyer mid-decision.
   ═══════════════════════════════════════════════════ */
.finance-strip {
  display: block;
  text-decoration: none;
  background: linear-gradient(90deg, var(--gold-deep) 0%, #c9a55a 50%, var(--gold-deep) 100%);
  color: var(--ink);
  padding: 16px var(--gutter);
  border-bottom: 1px solid rgba(28, 24, 20, 0.12);
  transition: filter 0.25s ease;
}
.finance-strip:hover {
  filter: brightness(1.06);
}
.finance-strip .fs-row {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.finance-strip .fs-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--gold-soft);
  flex-shrink: 0;
}
.finance-strip .fs-text {
  font-family: 'Newsreader', Georgia, serif;
  font-size: 16px;
  line-height: 1.4;
  color: var(--ink);
}
.finance-strip .fs-text strong {
  font-weight: 700;
  letter-spacing: -0.005em;
}
.finance-strip .fs-cta {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  letter-spacing: 2.5px;
  color: var(--ink);
  text-transform: uppercase;
  padding: 8px 16px;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}
.finance-strip:hover .fs-cta {
  background: var(--ink);
  color: var(--gold-soft);
}
@media (max-width: 640px) {
  .finance-strip { padding: 14px var(--gutter); }
  .finance-strip .fs-row { gap: 12px; }
  .finance-strip .fs-text { font-size: 14.5px; text-align: center; }
}
.trust-bar .row {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  align-items: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 8px;
  border-right: 1px solid rgba(247, 241, 230, 0.12);
}
.trust-item:last-child { border-right: none; }
.trust-item .ti-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gold-deep);
  color: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-item .ti-icon svg { width: 22px; height: 22px; fill: currentColor; }
.trust-item .ti-text { flex: 1; min-width: 0; }
.trust-item .value {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--text-inverse);
  line-height: 1.15;
  display: flex;
  align-items: center;
  gap: 6px;
}
.trust-item .value .stars {
  color: var(--gold-soft);
  font-size: 13px;
  letter-spacing: 1px;
}
.trust-item .sub {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--text-inverse-muted);
  margin-top: 4px;
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════
   NAV DROPDOWN — Plan Your Remodel menu
   ═══════════════════════════════════════════════════ */
.site-header nav .has-dropdown {
  position: relative;
}
.site-header nav .has-dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.site-header nav .has-dropdown > a::after {
  content: '▾';
  font-size: 10px;
  opacity: 0.6;
  margin-top: 1px;
}
.site-header nav .dropdown {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--ink);
  border-radius: 10px;
  padding: 8px;
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s 0.2s;
  box-shadow: 0 18px 40px -12px rgba(0,0,0,0.25);
  list-style: none;
  display: block !important;
}
.site-header nav .has-dropdown:hover .dropdown,
.site-header nav .has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s 0s;
}
.site-header nav .dropdown li {
  display: block;
}
.site-header nav .dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  font-family: 'Newsreader', Georgia, serif;
  font-size: 15px;
  color: var(--text-inverse);
  border-radius: 6px;
  text-decoration: none;
}
.site-header nav .dropdown a:hover { background: var(--ink-soft); color: var(--gold-soft); }
.site-header nav .dropdown a .dd-icon {
  width: 16px; height: 16px;
  opacity: 0.7;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════
   REVIEWS MARQUEE — rolling cards, right-to-left
   ═══════════════════════════════════════════════════ */
.reviews-marquee {
  overflow: hidden;
  position: relative;
  padding: 8px 0;
  margin-top: 40px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, black 80px, black calc(100% - 80px), transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, black 80px, black calc(100% - 80px), transparent 100%);
}
.marquee-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: scroll-left 80s linear infinite;
}
.reviews-marquee:hover .marquee-track {
  animation-play-state: paused;
}
@keyframes scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.review-card {
  flex: 0 0 380px;
  background: var(--paper);
  border: 1px solid var(--paper-edge);
  border-radius: 12px;
  padding: 28px 30px;
  display: flex;
  flex-direction: column;
  min-height: 240px;
}
.review-card .r-stars {
  font-size: 14px;
  letter-spacing: 3px;
  color: var(--gold-deep);
  margin-bottom: 14px;
}
.review-card blockquote {
  font-family: 'Newsreader', Georgia, serif;
  font-size: 16px;
  line-height: 1.55;
  color: var(--text);
  margin-bottom: 18px;
  flex: 1;
}
.review-card .r-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--paper-edge);
}
.review-card .r-author {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
}
.review-card .r-source {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 10px;
  letter-spacing: 2.5px;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════
   CALCULATOR / TOOL UI — Plan Your Remodel pages
   Adapted from Jorge's Uprise structure
   ═══════════════════════════════════════════════════ */
.tool-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 16px 0 48px;
}
.tool-question {
  text-align: center;
  margin-bottom: 40px;
}
.tool-question .eyebrow,
.tool-question .eyebrow-center {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 12px;
  letter-spacing: 4px;
  color: var(--gold-deep);
  text-transform: uppercase;
  margin-bottom: 14px;
  display: block;
}
.tool-question h1,
.tool-question h2 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: clamp(32px, 4.5vw, 48px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 12px;
}
.tool-question p {
  font-family: 'Newsreader', Georgia, serif;
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.55;
  max-width: 540px;
  margin: 0 auto;
}

.btn-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 12px;
  letter-spacing: 2.5px;
  color: var(--text-muted);
  text-transform: uppercase;
  text-decoration: none;
  padding: 8px 14px;
  border: 1px solid var(--paper-edge);
  border-radius: 999px;
  background: var(--paper);
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn-back:hover { color: var(--ink); border-color: var(--ink); }
.btn-back svg { width: 14px; height: 14px; }

/* Calc inputs */
.calc-group {
  margin-bottom: 28px;
}
.calc-group label {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 12px;
  letter-spacing: 2.5px;
  color: var(--text-secondary);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.calc-hint {
  font-family: 'Newsreader', Georgia, serif;
  font-size: 13px;
  letter-spacing: 0;
  color: var(--text-muted);
  text-transform: none;
  font-style: italic;
}
.calc-toggle-group {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  background: var(--paper-2);
  padding: 6px;
  border-radius: 999px;
  border: 1px solid var(--paper-edge);
}
.calc-toggle {
  flex: 1;
  min-width: 88px;
  font-family: 'Newsreader', Georgia, serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  background: transparent;
  border: 0;
  padding: 10px 14px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}
.calc-toggle:hover { color: var(--ink); }
.calc-toggle.active {
  background: var(--ink);
  color: var(--text-inverse);
  box-shadow: 0 4px 12px -4px rgba(28, 24, 20, 0.25);
}

/* Slider */
.calc-value-display {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(32px, 4vw, 42px);
  letter-spacing: -0.025em;
  color: var(--gold-deep);
  text-align: center;
  margin: 8px 0 14px;
  line-height: 1;
}
.calc-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  background: var(--paper-edge);
  border-radius: 999px;
  outline: none;
  transition: background 0.2s ease;
}
.calc-slider:hover { background: var(--gold-soft); }
.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  background: var(--ink);
  border-radius: 50%;
  cursor: pointer;
  border: 3px solid var(--paper);
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  transition: transform 0.15s ease;
}
.calc-slider::-webkit-slider-thumb:hover { transform: scale(1.1); }
.calc-slider::-moz-range-thumb {
  width: 24px;
  height: 24px;
  background: var(--ink);
  border-radius: 50%;
  cursor: pointer;
  border: 3px solid var(--paper);
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.calc-slider-labels {
  display: flex;
  justify-content: space-between;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-top: 8px;
  text-transform: uppercase;
}

/* Calc result box */
.calc-result {
  background: var(--paper-2);
  border: 1px solid var(--paper-edge);
  border-radius: 14px;
  padding: 32px 28px;
  text-align: center;
  margin-top: 32px;
}
.calc-result.highlight {
  background: var(--ink);
  color: var(--text-inverse);
  border-color: var(--ink);
}
.calc-result h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 12px;
}
.calc-result.highlight h3 { color: var(--gold-soft); }
.calc-result-value {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(36px, 5vw, 52px);
  letter-spacing: -0.025em;
  line-height: 1;
  margin-bottom: 10px;
  color: var(--text-inverse);
}
.calc-result-range {
  font-family: 'Newsreader', Georgia, serif;
  font-size: 16px;
  color: var(--text-inverse-muted);
  font-style: italic;
}
.calc-result-cta {
  font-family: 'Newsreader', Georgia, serif;
  font-size: 14px;
  color: var(--text-inverse-muted);
  margin-top: 20px;
  line-height: 1.55;
}
.calc-result-cta a { color: var(--gold-soft); text-decoration: underline; }

.finance-display {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}
.finance-stat {
  text-align: center;
  padding: 16px 8px;
  border-right: 1px solid rgba(247, 241, 230, 0.12);
}
.finance-stat:last-child { border-right: none; }
.calc-result:not(.highlight) .finance-stat { border-color: var(--paper-edge); }
.finance-stat-value {
  display: block;
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.015em;
  color: var(--text-inverse);
  line-height: 1.1;
}
.calc-result:not(.highlight) .finance-stat-value { color: var(--ink); }
.finance-stat-label {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--text-inverse-muted);
  text-transform: uppercase;
  margin-top: 6px;
}
.calc-result:not(.highlight) .finance-stat-label { color: var(--text-muted); }

/* Quiz progress */
.tool-progress {
  display: flex;
  justify-content: space-between;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 12px;
  letter-spacing: 2.5px;
  color: var(--text-muted);
  margin-bottom: 10px;
  text-transform: uppercase;
}
.tool-progress-bar {
  width: 100%;
  height: 4px;
  background: var(--paper-edge);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 32px;
}
.tool-progress-fill {
  height: 100%;
  background: var(--gold-deep);
  border-radius: 999px;
  transition: width 0.4s ease;
}
.tool-options {
  display: grid;
  gap: 12px;
}
.tool-option {
  display: grid;
  grid-template-columns: 44px 1fr 24px;
  gap: 16px;
  align-items: center;
  padding: 18px 20px;
  background: var(--paper);
  border: 1px solid var(--paper-edge);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.tool-option:hover {
  border-color: var(--ink);
  transform: translateX(2px);
}
.tool-option.selected {
  background: var(--ink);
  color: var(--text-inverse);
  border-color: var(--ink);
}
.tool-option-letter {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--paper-2);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 16px;
}
.tool-option.selected .tool-option-letter {
  background: var(--gold-soft);
  color: var(--ink);
}
.tool-option-text strong {
  display: block;
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 17px;
  color: inherit;
  margin-bottom: 2px;
}
.tool-option-text span {
  font-family: 'Newsreader', Georgia, serif;
  font-size: 14px;
  color: var(--text-secondary);
}
.tool-option.selected .tool-option-text span { color: var(--text-inverse-muted); }
.tool-option-arrow { color: var(--text-faint); transition: transform 0.2s ease, color 0.2s ease; }
.tool-option:hover .tool-option-arrow { color: var(--gold-deep); transform: translateX(3px); }
.tool-option.selected .tool-option-arrow { color: var(--gold-soft); }

.tool-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 24px;
}
.tool-steps-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 24px;
}
.tool-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--paper-edge);
  transition: all 0.3s ease;
}
.tool-dot.active { background: var(--gold-deep); width: 24px; border-radius: 999px; }
.tool-dot.completed { background: var(--ink); }

.tool-result-card {
  text-align: center;
  padding: 48px 32px;
  background: var(--paper-2);
  border: 1px solid var(--paper-edge);
  border-radius: 16px;
}
.tool-result-card .result-style {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-style: italic;
  font-size: clamp(40px, 6vw, 60px);
  color: var(--gold-deep);
  margin: 8px 0 24px;
  letter-spacing: -0.025em;
  line-height: 1;
}
.tool-result-card h2 {
  font-family: 'Newsreader', Georgia, serif;
  font-weight: 500;
  font-size: 18px;
  color: var(--text-secondary);
  margin: 0;
}
.tool-result-card p {
  font-family: 'Newsreader', Georgia, serif;
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 540px;
  margin: 0 auto 12px;
}

.btn-outline-dark {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
  padding: 12px 22px;
  border-radius: 999px;
  font-family: 'Newsreader', Georgia, serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}
.btn-outline-dark:hover { background: var(--ink); color: var(--text-inverse); }

.btn-lg { font-size: 17px; padding: 16px 32px; }
.btn-sm { font-size: 13px; padding: 8px 16px; }

/* Project timeline */
.timeline-track {
  margin: 40px 0;
  position: relative;
  padding-left: 32px;
}
.timeline-track::before {
  content: '';
  position: absolute;
  left: 13px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: var(--paper-edge);
}
.timeline-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  padding: 14px 0 24px;
  position: relative;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -25px;
  top: 22px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold-deep);
  border: 3px solid var(--paper);
  box-shadow: 0 0 0 2px var(--gold-deep);
}
.timeline-week {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 11px;
  letter-spacing: 2.5px;
  color: var(--gold-deep);
  text-transform: uppercase;
}
.timeline-content h4 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 4px 0;
}
.timeline-content p {
  font-family: 'Newsreader', Georgia, serif;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.55;
}

@media (max-width: 640px) {
  .calc-toggle-group { flex-direction: column; gap: 4px; }
  .calc-toggle { width: 100%; }
  .finance-display { grid-template-columns: 1fr; }
  .finance-stat { border-right: none; border-bottom: 1px solid rgba(247, 241, 230, 0.12); padding: 12px 0; }
  .finance-stat:last-child { border-bottom: none; }
}

/* ═══════════════════════════════════════════════════
   BARNDO FLOOR PLAN CARDS
   ═══════════════════════════════════════════════════ */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.plan-card {
  background: var(--paper);
  border: 1px solid var(--paper-edge);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.25s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px -14px rgba(28, 24, 20, 0.18);
}
.plan-card .plan-tag {
  background: var(--ink);
  color: var(--gold-soft);
  padding: 10px 16px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-align: center;
}
.plan-card .plan-body {
  padding: 28px 26px 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.plan-card h3 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 26px;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
  color: var(--ink);
}
.plan-card .plan-meta {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 12px;
  letter-spacing: 2.5px;
  color: var(--gold-deep);
  margin-bottom: 18px;
  text-transform: uppercase;
}
.plan-card .plan-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 16px 0;
  border-top: 1px solid var(--paper-edge);
  border-bottom: 1px solid var(--paper-edge);
  margin-bottom: 18px;
}
.plan-card .plan-stat .label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--text-muted);
  text-transform: uppercase;
  display: block;
  margin-bottom: 2px;
}
.plan-card .plan-stat .value {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
  line-height: 1.1;
}
.plan-card .plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  flex: 1;
}
.plan-card .plan-features li {
  font-family: 'Newsreader', Georgia, serif;
  font-size: 14.5px;
  color: var(--text-secondary);
  padding: 4px 0 4px 20px;
  position: relative;
  line-height: 1.5;
}
.plan-card .plan-features li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold-deep);
  font-weight: 700;
}
.plan-card .plan-price {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.015em;
  color: var(--gold-deep);
  margin-bottom: 18px;
}

@media (max-width: 900px) { .plans-grid { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════════════
   BARNDO SHOWCASE — 6-tile grid with themed gradient placeholders
   When real photos land, just add background-image inline + the gradient
   becomes a fallback. Each tile has a distinct color story for visual rhythm.
   ═══════════════════════════════════════════════════ */
.barndo-showcase {
  padding: clamp(64px, 8vw, 104px) var(--gutter);
  background: var(--paper);
}
.barndo-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
@media (max-width: 900px) { .barndo-tiles { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .barndo-tiles { grid-template-columns: 1fr; } }

.bt-tile {
  aspect-ratio: 4 / 3;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  background-color: var(--ink);
  background-size: cover;
  background-position: center;
  box-shadow: 0 14px 32px -16px rgba(28, 24, 20, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.bt-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 44px -18px rgba(28, 24, 20, 0.35);
}
.bt-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.65) 100%);
  z-index: 1;
}
.bt-tile .bt-caption {
  position: absolute;
  bottom: 16px;
  left: 18px;
  right: 18px;
  z-index: 2;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 12px;
  letter-spacing: 2.5px;
  color: rgba(247, 241, 230, 0.92);
  text-transform: uppercase;
  line-height: 1.35;
}

/* Themed gradient placeholders — each captures the FEEL of the future photo.
   When real photo lands, set inline `style="background-image: url('img/barndo-hero-exterior.jpg');"` */
.bt-hero       { background-image: linear-gradient(160deg, #d89954 0%, #8b5e2f 35%, #3a2e22 80%, #1a1410 100%); }
.bt-interior   { background-image: linear-gradient(160deg, #b8916a 0%, #6e5440 35%, #2e2620 80%, #1c1814 100%); }
.bt-shop       { background-image: linear-gradient(160deg, #8a92a0 0%, #4d5560 40%, #2a2e35 80%, #161a1f 100%); }
.bt-winter     { background-image: linear-gradient(160deg, #5e7080 0%, #324656 40%, #1a242e 80%, #0e1419 100%); }
.bt-aerial     { background-image: linear-gradient(160deg, #82896a 0%, #4e5742 40%, #2a3023 80%, #161a14 100%); }
.bt-liveinshop { background-image: linear-gradient(160deg, #826b54 0%, #4d3f30 40%, #2a221a 80%, #161210 100%); }

/* ═══════════════════════════════════════════════════
   PLAN BLUEPRINT — Inline SVG floor plan at top of card
   Architect's working-draft aesthetic (charcoal on cream paper)
   ═══════════════════════════════════════════════════ */
.plan-blueprint {
  position: relative;
  background: #f4ecdd;
  background-image:
    linear-gradient(rgba(28, 24, 20, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(28, 24, 20, 0.04) 1px, transparent 1px);
  background-size: 20px 20px;
  border-bottom: 1px solid var(--paper-edge);
  padding: 18px 16px 12px;
  overflow: hidden;
}
.plan-blueprint svg {
  display: block;
  width: 100%;
  height: auto;
  max-height: 280px;
}
.plan-blueprint .blueprint-titleblock {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 10px;
  padding: 8px 6px 0;
  border-top: 1px solid rgba(28, 24, 20, 0.18);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 9px;
  letter-spacing: 2.2px;
  color: rgba(28, 24, 20, 0.7);
  text-transform: uppercase;
}
.plan-blueprint .blueprint-titleblock .tb-scale { color: var(--gold-deep); }

/* SVG element styling — keeps things consistent across the 3 plans */
.plan-blueprint .wall-outer { stroke: #1c1814; stroke-width: 3.5; fill: none; }
.plan-blueprint .wall-inner { stroke: #1c1814; stroke-width: 1.6; fill: none; }
.plan-blueprint .wall-light { stroke: #1c1814; stroke-width: 0.9; fill: none; }
.plan-blueprint .door-arc { stroke: #1c1814; stroke-width: 0.8; fill: none; }
.plan-blueprint .window-line { stroke: #1c1814; stroke-width: 0.9; fill: none; }
.plan-blueprint .garage-panel { stroke: #1c1814; stroke-width: 0.7; fill: none; }
.plan-blueprint .dim-line { stroke: rgba(28, 24, 20, 0.55); stroke-width: 0.5; fill: none; }
.plan-blueprint .dim-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 11px;
  letter-spacing: 1.5px;
  fill: rgba(28, 24, 20, 0.75);
}
.plan-blueprint .room-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  letter-spacing: 2.5px;
  fill: #1c1814;
  text-anchor: middle;
  text-transform: uppercase;
}
.plan-blueprint .room-sub {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 9px;
  letter-spacing: 2px;
  fill: rgba(28, 24, 20, 0.6);
  text-anchor: middle;
  text-transform: uppercase;
}
.plan-blueprint .north-arrow text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 11px;
  fill: #1c1814;
  text-anchor: middle;
}
.plan-blueprint .north-arrow circle { stroke: #1c1814; stroke-width: 0.8; fill: none; }
.plan-blueprint .north-arrow polygon { fill: var(--gold-deep); }

/* ═══════════════════════════════════════════════════
   FAQ ACCORDION (native <details> for no-JS, with schema)
   ═══════════════════════════════════════════════════ */
.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 32px;
}
.faq-item {
  background: var(--paper);
  border: 1px solid var(--paper-edge);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.2s ease;
}
.faq-item[open] { border-color: var(--gold-deep); }
.faq-item summary {
  padding: 22px 26px;
  cursor: pointer;
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.3;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: 'Newsreader', Georgia, serif;
  font-size: 26px;
  color: var(--gold-deep);
  transition: transform 0.25s ease;
  flex-shrink: 0;
  line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-body {
  padding: 0 26px 24px;
  font-family: 'Newsreader', Georgia, serif;
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.65;
}
.faq-item .faq-body p { margin: 0 0 10px; }
.faq-item .faq-body p:last-child { margin-bottom: 0; }

/* ═══════════════════════════════════════════════════
   PROCESS SECTION — Aspen Builders 4-step pattern
   ═══════════════════════════════════════════════════ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.process-card {
  background: var(--paper);
  border: 1px solid var(--paper-edge);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.process-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px -14px rgba(28, 24, 20, 0.18);
}
.process-card .pc-icon {
  background: var(--ink);
  color: var(--gold-soft);
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.process-card .pc-icon::after {
  content: attr(data-step);
  position: absolute;
  top: 14px;
  right: 18px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 2.5px;
  color: rgba(247, 241, 230, 0.65);
}
.process-card .pc-icon svg { width: 40px; height: 40px; fill: currentColor; }
.process-card .pc-body {
  padding: 28px 26px 32px;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.process-card .pc-step-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  letter-spacing: 4px;
  color: var(--gold-deep);
  text-transform: uppercase;
  margin-bottom: 10px;
  font-weight: 400;
}
.process-card h3 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.015em;
  line-height: 1.1;
  margin-bottom: 16px;
  color: var(--ink);
}
.process-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.process-card li {
  font-family: 'Newsreader', Georgia, serif;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.55;
  padding: 5px 0;
}

/* ═══════════════════════════════════════════════════
   PROCESS — Split-screen cinematic scroll (v4 — sticky fixed)
   Left: scrolling text column with scroll-activated steps
   Right: SHORT grid item that contains a position:sticky inner element
          so the imagery locks in viewport while text scrolls past it.
   ═══════════════════════════════════════════════════ */
.process-scroll {
  position: relative;
  background: var(--cream, #f7f1e6);
  color: var(--ink);
}
.process-grid-split {
  display: grid;
  /* Lock the column ratio so the divider never visually shifts */
  grid-template-columns: 45% 55%;
  /* CRITICAL: stretch so right column matches text column height —
     this gives the sticky inner element a tall enough scroll context. */
  align-items: stretch;
  position: relative;
}

/* LEFT — text column */
.process-text-col {
  padding: clamp(80px, 10vw, 140px) clamp(40px, 6vw, 96px);
}
.process-text-inner { max-width: 560px; }
.process-text-inner .section-label { color: var(--gold-deep); }
.process-text-inner .section-title { margin-bottom: 18px; }
.process-text-inner .section-lede {
  margin-bottom: 48px;
  /* Same right-side anchor as the steps so the intro and step lists align */
  max-width: 100%;
}

.process-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  /* Architectural drawing-set top edge */
  border-top: 1px solid rgba(28, 24, 20, 0.22);
}
.ps-step {
  position: relative;
  padding: 28px 0;
  border-bottom: 1px solid rgba(28, 24, 20, 0.22);
  /* No more opacity hammering — use color contrast for inactive states */
}

.ps-num {
  font-family: 'Inter', 'Helvetica Neue', sans-serif;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 5px;
  /* Sophisticated warm slate for inactive (legible, not faded) */
  color: rgba(28, 24, 20, 0.58);
  margin-bottom: 14px;
  text-transform: uppercase;
  transition: color 0.5s ease;
}
.ps-step.is-active .ps-num { color: var(--gold-deep); }

.ps-title {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(22px, 2.3vw, 30px);
  letter-spacing: -0.012em;
  line-height: 1.18;
  /* Mid-tone warm charcoal — clearly readable secondary state */
  color: rgba(28, 24, 20, 0.62);
  transition: color 0.5s ease;
}
.ps-step.is-active .ps-title {
  /* Pure rich ink for active */
  color: var(--ink);
}

.ps-detail {
  font-family: 'Newsreader', Georgia, serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  margin-top: 0;
  transition: max-height 0.6s ease, opacity 0.5s ease, margin-top 0.4s ease;
}
.ps-step.is-active .ps-detail {
  max-height: 480px;
  opacity: 1;
  margin-top: 18px;
}

/* RIGHT — sticky imagery column.
   Parent grid item stretches to full text-col height; inner element sticks. */
.process-image-col {
  position: relative;
  /* No min-height — let the grid stretch handle sizing */
}
.process-image-stack {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}
.ps-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.95s ease;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 36px 40px;
}
.ps-image.is-active { opacity: 1; }
.ps-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(28, 24, 20, 0.05) 0%, rgba(28, 24, 20, 0.55) 100%);
  z-index: 1;
}
.ps-image-caption {
  position: relative;
  z-index: 2;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 12px;
  letter-spacing: 3.5px;
  color: rgba(247, 241, 230, 0.85);
  text-transform: uppercase;
  border-left: 2px solid var(--gold-soft);
  padding-left: 14px;
}

/* Real photos — wired to Cheryl's step images (May 26, 2026) */
.ps-image[data-image="0"] {
  background-image: url('img/step-01-blueprint.jpg');
}
.ps-image[data-image="1"] {
  background-image: url('img/step-02-foundation.jpg');
}
.ps-image[data-image="2"] {
  background-image: url('img/step-03-craftsmanship.jpg');
}
.ps-image[data-image="3"] {
  background-image: url('img/step-04-finished-retreat.jpg');
}

/* Mobile — stack vertically, drop sticky */
@media (max-width: 900px) {
  .process-grid-split { grid-template-columns: 1fr; }
  .process-image-col { min-height: auto; order: -1; }
  .process-image-stack { position: relative; height: 50vh; }
  .ps-image { opacity: 0; }
  .ps-image.is-active { opacity: 1; }
}
@media (max-width: 640px) {
  .process-text-col { padding: 56px 24px; }
  .process-image-stack { height: 42vh; }
}

/* ═══════════════════════════════════════════════════
   MANIFESTO / QUOTE — Mt Hood backdrop with overlay
   Used as values/mission moment between Process and Barndo
   ═══════════════════════════════════════════════════ */
.manifesto-section {
  position: relative;
  min-height: 520px;
  padding: clamp(80px, 10vw, 140px) var(--gutter);
  background-image: url('img/manifesto-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--text-inverse);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Dark gradient overlay for text legibility — denser on left, lighter on right */
.manifesto-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(28, 24, 20, 0.55) 0%,
    rgba(28, 24, 20, 0.45) 50%,
    rgba(28, 24, 20, 0.65) 100%
  );
  z-index: 0;
  pointer-events: none;
}

.manifesto-section .manifesto-wrap {
  position: relative;
  z-index: 1;
  max-width: 880px;
  text-align: center;
}

.manifesto-section .m-eyebrow {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  letter-spacing: 5px;
  color: var(--gold-soft);
  text-transform: uppercase;
  margin-bottom: 24px;
  display: block;
}

.manifesto-section blockquote {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-style: italic;
  font-size: clamp(28px, 3.8vw, 48px);
  line-height: 1.18;
  letter-spacing: -0.015em;
  color: var(--text-inverse);
  margin: 0 0 24px;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
}

.manifesto-section .m-attribution {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  letter-spacing: 3px;
  color: var(--gold-soft);
  text-transform: uppercase;
  margin-bottom: 0;
}

.manifesto-section .m-attribution::before {
  content: '— ';
}

/* ═══════════════════════════════════════════════════
   SERVICE RADIUS BANNER — capped height, full-width
   ═══════════════════════════════════════════════════ */
.service-radius-section {
  padding: 0;
  background: var(--ink);
  position: relative;
}
.service-radius-section .radius-link {
  display: block;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  /* Generous max so the full banner image can show without cropping the text */
  max-height: 640px;
}
.service-radius-section img {
  width: 100%;
  max-height: 640px;
  display: block;
  /* CONTAIN preserves the whole image (no crop). Dark section bg fills any empty space. */
  object-fit: contain;
  object-position: center;
  transition: transform 0.4s ease;
  background: var(--ink);
}
.service-radius-section .radius-link:hover img {
  transform: scale(1.01);
}
@media (max-width: 900px) {
  .service-radius-section .radius-link { max-height: 480px; }
  .service-radius-section img { max-height: 480px; }
}
@media (max-width: 600px) {
  .service-radius-section .radius-link { max-height: 360px; }
  .service-radius-section img { max-height: 360px; }
}
.service-radius-cta {
  background: var(--ink);
  color: var(--text-inverse);
  padding: 28px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  border-top: 1px solid var(--ink-soft);
}
.service-radius-cta .cta-text {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-style: italic;
  font-size: 18px;
  color: var(--text-inverse-muted);
}

/* ═══════════════════════════════════════════════════
   CREDIBILITY ROW — verified badges (Angi/BBB/CCB)
   ═══════════════════════════════════════════════════ */
.credibility-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.cred-card {
  background: var(--paper);
  border: 1px solid var(--paper-edge);
  border-radius: 14px;
  padding: 36px 24px 28px;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.cred-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px -14px rgba(28, 24, 20, 0.18);
}
.cred-card .logo-slot {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  position: relative;
  padding: 0 16px;
}
.cred-card .logo-slot img {
  max-height: 170px;
  max-width: 260px;
  width: auto;
  object-fit: contain;
  /* mix-blend-mode: multiply makes white logo backgrounds blend with
     the cream card surface so logos appear cleanly without white halos.
     IMPORTANT: never apply transform here — it breaks mix-blend-mode
     and exposes the white PNG background on hover. Use explicit sizing
     instead for any per-logo adjustments. */
  mix-blend-mode: multiply;
}

/* Angi PNG has heavy internal whitespace — give it bigger explicit
   dimensions to visually match BBB and CCB. NO transform — that breaks
   the multiply blend mode and shows the white background on hover. */
.cred-card .logo-slot img[src*="angi"] {
  max-height: 200px;
  max-width: 340px;
}
.cred-card .logo-slot.placeholder {
  border: 1px dashed var(--paper-edge);
  border-radius: 8px;
  background: var(--paper-2);
}
.cred-card .logo-slot.placeholder::after {
  content: attr(data-name);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  letter-spacing: 3px;
  color: var(--text-faint);
}
.cred-card .cred-title {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 8px;
}
.cred-card .cred-detail {
  font-family: 'Newsreader', Georgia, serif;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ═══════════════════════════════════════════════════
   FOOTER — wider Service Area column with 2-col cities
   ═══════════════════════════════════════════════════ */
.site-footer .footer-wrap.with-area {
  /* Home page variant: badge-col wider for logo + text, service area wide for 2-col cities */
  grid-template-columns: 1.8fr 0.7fr 1.4fr 0.8fr;
}
.site-footer .cities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 18px;
}
.site-footer .cities-grid p {
  margin-bottom: 4px;
  font-size: 14px;
}

/* Mobile responsive additions for new patterns */
@media (max-width: 960px) {
  .trust-bar .row { grid-template-columns: 1fr 1fr; gap: 18px 24px; }
  .trust-item:nth-child(2) { border-right: none; }
  .trust-item:nth-child(5) { grid-column: 1 / -1; }
  .credibility-row { grid-template-columns: 1fr; gap: 16px; }
  .site-footer .footer-wrap.with-area { grid-template-columns: 1fr 1fr; }
  .review-card { flex: 0 0 320px; }
  .process-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .service-radius-cta { flex-direction: column; padding: 24px var(--gutter); }
}
@media (max-width: 540px) {
  .process-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .trust-bar { padding: 24px 20px; }
  .trust-bar .row { grid-template-columns: 1fr; gap: 14px; }
  .trust-item { border-right: none; border-bottom: 1px solid rgba(247, 241, 230, 0.1); padding-bottom: 14px; }
  .trust-item:last-child { border-bottom: none; padding-bottom: 0; }
  .trust-item:nth-child(5) { grid-column: auto; }
  .site-header nav .dropdown { position: static; transform: none; min-width: 0; box-shadow: none; background: transparent; padding: 8px 0 8px 16px; }
  .site-header nav .dropdown a { color: var(--ink); font-size: 14px; padding: 8px 10px; }
  .review-card { flex: 0 0 280px; padding: 22px; }
  .site-footer .cities-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════
   FEATURE TEASE (Barndo card on Home)
   ═══════════════════════════════════════════════════ */
.feature-tease {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.feature-tease .ft-visual {
  aspect-ratio: 5 / 4;
  background: linear-gradient(135deg, var(--ink-soft) 0%, var(--ink) 100%);
  border-radius: 10px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

/* ═══════════════════════════════════════════════════
   CTA BAND
   ═══════════════════════════════════════════════════ */
.cta-band {
  background: var(--ink);
  color: var(--text-inverse);
  padding: clamp(64px, 8vw, 96px) var(--gutter);
  text-align: center;
}
.cta-band h2 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
  max-width: 18ch;
  margin-left: auto;
  margin-right: auto;
}
.cta-band h2 em {
  font-style: italic;
  font-weight: 500;
  color: var(--gold-soft);
}
.cta-band p {
  font-family: 'Newsreader', Georgia, serif;
  font-size: 17px;
  color: var(--text-inverse-muted);
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.55;
}
.cta-band .cta-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════ */
.site-footer {
  background: var(--ink);
  color: var(--text-inverse-muted);
  padding: 0 var(--gutter);
  position: relative;
  /* Cascade mountain silhouette anchors the footer to place (Central Oregon).
     Sits behind all content, blends into ink at bottom, recedes into fog up top. */
  background-image: url('img/footer-mountains.svg');
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: 100% auto;
  overflow: hidden;
}

/* ═══════════════════════════════════════════════════
   FOOTER DIVIDER — Laser-beam gold gradient
   1px hairline above the dark footer that tapers from transparent
   at the edges to a #C5A059 gold core, then reveals left-to-right
   on scroll, followed by a single brighter highlight streak.
   ═══════════════════════════════════════════════════ */
.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(197, 160, 89, 0) 0%,
    rgba(197, 160, 89, 0.12) 12%,
    rgba(197, 160, 89, 0.45) 30%,
    #C5A059 50%,
    rgba(197, 160, 89, 0.45) 70%,
    rgba(197, 160, 89, 0.12) 88%,
    rgba(197, 160, 89, 0) 100%
  );
  /* Soft halo so the beam reads like light, not a pencil line */
  box-shadow: 0 0 12px rgba(197, 160, 89, 0.35);
  /* Hidden initially — reveal left-to-right via clip-path */
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1.4s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  z-index: 2;
}
.site-footer.illuminate::before {
  clip-path: inset(0 0 0 0);
}

/* Bright highlight streak — sweeps across once after the line draws in */
.site-footer::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 140px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 245, 215, 0.9) 50%,
    transparent 100%
  );
  filter: blur(0.5px);
  opacity: 0;
  transform: translateX(-140px);
  pointer-events: none;
  z-index: 3;
}
.site-footer.illuminate::after {
  animation: footer-streak 1.8s cubic-bezier(0.4, 0, 0.2, 1) 0.8s forwards;
}
@keyframes footer-streak {
  0%   { transform: translateX(-140px); opacity: 0; }
  15%  { opacity: 1; }
  85%  { opacity: 1; }
  100% { transform: translateX(calc(100vw + 140px)); opacity: 0; }
}

/* Respect reduced-motion preferences — show divider, skip streak */
@media (prefers-reduced-motion: reduce) {
  .site-footer::before {
    clip-path: inset(0 0 0 0);
    transition: none;
  }
  .site-footer::after { display: none; }
}
.site-footer .footer-wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  /* Badge column wider so logo + brand text sit side-by-side */
  grid-template-columns: 2fr 0.8fr 0.8fr 0.8fr;
  gap: clamp(20px, 3vw, 36px);
  /* Generous breathing room above the badge — luxury feel without cavern */
  padding: 56px 0 24px;
  border-bottom: 1px solid rgba(247, 241, 230, 0.12);
  align-items: start;
  position: relative;
  z-index: 2; /* sit above the Cascade silhouette */
}
.site-footer .legal {
  position: relative;
  z-index: 2; /* sit above the Cascade silhouette */
}
.site-footer .col h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--gold-soft);
  margin-bottom: 16px;
  text-transform: uppercase;
}
.site-footer .col p,
.site-footer .col a {
  font-family: 'Newsreader', Georgia, serif;
  font-size: 15px;
  color: var(--text-inverse-muted);
  text-decoration: none;
  display: block;
  margin-bottom: 6px;
  line-height: 1.65;
  transition: color 0.2s ease;
}
.site-footer .col a:hover { color: var(--gold-soft); }
/* Badge column: 2-column internal layout — logo LEFT, brand text RIGHT
   Pure CSS, no HTML changes needed. SVG spans all rows in column 1;
   text elements auto-flow into column 2. */
/* Badge column: SVG positioned absolutely so it doesn't create phantom grid rows.
   The text content flows naturally to the right via padding-left. */
.site-footer .badge-col {
  position: relative;
  padding-left: 252px; /* 220 (SVG) + 32 (gap) */
  padding-right: 16px;
  min-height: 220px;
}
.site-footer .badge-col > svg.footer-badge {
  position: absolute;
  top: 0;
  left: 0;
  width: 220px;
  height: 220px;
  filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.4));
}
.site-footer .brand-name {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -0.015em;
  line-height: 1.05;
  color: var(--text-inverse);
  margin: 0 0 10px 0;
}
.site-footer .slogan-line {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  letter-spacing: 3px;
  color: var(--gold-soft);
  margin: 0 0 16px 0;
  text-transform: uppercase;
  padding-top: 12px;
  border-top: 1px solid rgba(247, 241, 230, 0.15);
  width: 80%;
}

/* Tablet: shrink badge a bit, keep side-by-side */
@media (max-width: 960px) {
  .site-footer .footer-wrap { grid-template-columns: 1fr 1fr; }
  .site-footer .badge-col {
    grid-column: 1 / -1;
    padding-left: 208px; /* 180 SVG + 28 gap */
    padding-right: 0;
    min-height: 180px;
  }
  .site-footer .badge-col > svg.footer-badge { width: 180px; height: 180px; }
}

/* Mobile: stack vertically, center */
@media (max-width: 640px) {
  .site-footer .footer-wrap { grid-template-columns: 1fr; }
  .site-footer .badge-col {
    padding-left: 0;
    text-align: center;
    grid-column: 1;
    min-height: 0;
  }
  .site-footer .badge-col > svg.footer-badge {
    position: static;
    margin: 0 auto 16px;
    width: 180px;
    height: 180px;
  }
  .site-footer .slogan-line { width: 100%; margin-left: auto; margin-right: auto; }
}
.site-footer .legal {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 20px 0 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-family: 'Newsreader', Georgia, serif;
  font-size: 13px;
  color: var(--text-faint);
}
.site-footer .built-by a { color: var(--gold-soft); text-decoration: none; }

/* ═══════════════════════════════════════════════════
   PAGE HERO (sub-pages)
   ═══════════════════════════════════════════════════ */
.page-hero {
  background: var(--ink);
  color: var(--text-inverse);
  padding: clamp(72px, 9vw, 112px) var(--gutter);
  border-bottom: 4px solid var(--gold-deep);
}
.page-hero .ph-wrap {
  max-width: var(--max-width);
  margin: 0 auto;
}
.page-hero .ph-eyebrow,
.page-hero .eyebrow {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 17px;        /* bumped 40% from 12 */
  letter-spacing: 5px;
  color: var(--gold-soft);
  text-transform: uppercase;
  margin-bottom: 22px;
  display: block;
}
.page-hero h1 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: clamp(44px, 6vw, 76px);
  line-height: 0.96;
  letter-spacing: -0.025em;
  margin-bottom: 22px;
}
.page-hero h1 em {
  font-style: italic;
  font-weight: 500;
  color: var(--gold-soft);
}
.page-hero .ph-lede {
  font-family: 'Newsreader', Georgia, serif;
  font-size: 18px;
  color: var(--text-inverse-muted);
  max-width: 720px;
  line-height: 1.6;
}
.page-hero .ph-quicknav {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(247, 241, 230, 0.18);
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
}
.page-hero .ph-quicknav a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 12px;
  letter-spacing: 2.5px;
  color: var(--text-inverse-muted);
  text-decoration: none;
  transition: color 0.2s ease;
  text-transform: uppercase;
}
.page-hero .ph-quicknav a:hover { color: var(--gold-soft); }

/* ═══════════════════════════════════════════════════
   SERVICE DETAIL SECTION (Services + Barndo pages)
   ═══════════════════════════════════════════════════ */
.service-section {
  padding: clamp(64px, 8vw, 104px) var(--gutter);
  border-bottom: 1px solid var(--paper-edge);
  scroll-margin-top: 100px;
}
.service-section:nth-child(even) { background: var(--paper-2); }
.service-section .sv-wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 72px);
  align-items: center;
}
.service-section.flip .sv-wrap > .sv-visual { order: 2; }
.service-section .sv-visual {
  aspect-ratio: 5 / 4;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--ink-soft) 0%, var(--ink) 100%);
  background-size: cover;
  background-position: center;
  position: relative;
}
.service-section .sv-visual .sv-tag {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 11px;
  letter-spacing: 2.5px;
  padding: 6px 12px;
  border-radius: 999px;
}
.service-section .sv-visual .sv-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(247,241,230,0.3);
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 16px;
  text-align: center;
  padding: 24px;
}
.service-section .sv-content .sv-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 15px;        /* bumped 40% from 11 */
  letter-spacing: 4px;
  color: var(--gold-deep);
  margin-bottom: 16px;
  text-transform: uppercase;
}
.service-section .sv-content h2 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 20px;
}
.service-section .sv-content p {
  font-family: 'Newsreader', Georgia, serif;
  font-size: 17px;
  color: var(--text-secondary);
  margin-bottom: 14px;
  line-height: 1.65;
}
.service-section .sv-subitems {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
  margin: 22px 0 26px;
}
.service-section .sv-subitems li {
  font-family: 'Newsreader', Georgia, serif;
  font-size: 15px;
  color: var(--ink);
  padding-left: 20px;
  position: relative;
}
.service-section .sv-subitems li::before {
  content: '';
  position: absolute;
  left: 0; top: 11px;
  width: 12px;
  height: 1.5px;
  background: var(--gold-deep);
}

/* ═══════════════════════════════════════════════════
   PORTFOLIO GRID
   ═══════════════════════════════════════════════════ */
.portfolio-category {
  padding: clamp(56px, 7vw, 88px) var(--gutter);
  border-bottom: 1px solid var(--paper-edge);
  scroll-margin-top: 100px;
}
.portfolio-category:nth-child(even) { background: var(--paper-2); }
.portfolio-category .pc-wrap {
  max-width: var(--max-width);
  margin: 0 auto;
}
.portfolio-category .pc-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 14px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--paper-edge);
}
.portfolio-category h2 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: clamp(28px, 3.5vw, 40px);
  letter-spacing: -0.02em;
  color: var(--ink);
}
.portfolio-category .pc-count {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  letter-spacing: 3px;
  color: var(--gold-deep);
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.portfolio-tile {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--ink-soft) 0%, var(--ink) 100%);
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.portfolio-tile:hover { transform: translateY(-2px); }
.portfolio-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,0.6) 100%);
}
.portfolio-tile .pt-num {
  position: absolute;
  top: 12px; left: 14px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  letter-spacing: 2px;
  color: var(--gold-soft);
  z-index: 1;
}
.portfolio-tile .pt-caption {
  position: absolute;
  bottom: 14px; left: 14px; right: 14px;
  color: var(--text-inverse);
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -0.005em;
  z-index: 1;
  line-height: 1.25;
}
.portfolio-tile .pt-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(247, 241, 230, 0.25);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  text-align: center;
  padding: 8px;
}

/* ═══════════════════════════════════════════════════
   CONTACT FORM
   ═══════════════════════════════════════════════════ */
.contact-wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 5vw, 64px);
}
.contact-info h3 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 30px;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: var(--ink);
}
.contact-info .info-row {
  padding: 20px 0;
  border-bottom: 1px solid var(--paper-edge);
}
.contact-info .info-row .label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.contact-info .info-row .value {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-decoration: none;
  display: block;
}
.contact-info .info-row a.value:hover { color: var(--gold-deep); }
.contact-info .info-row .sub {
  font-family: 'Newsreader', Georgia, serif;
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 4px;
}
.contact-form {
  background: var(--paper-2);
  border: 1px solid var(--paper-edge);
  border-radius: 12px;
  padding: clamp(28px, 4vw, 44px);
}
.contact-form h3 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 28px;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  color: var(--ink);
}
.contact-form .form-intro {
  font-family: 'Newsreader', Georgia, serif;
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 28px;
  line-height: 1.55;
}
.contact-form .field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 18px;
}
.contact-form .field { margin-bottom: 18px; }
.contact-form label {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 8px;
}
.contact-form label .req { color: var(--warn); }
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form select,
.contact-form textarea {
  width: 100%;
  font-family: 'Newsreader', Georgia, serif;
  font-size: 16px;
  color: var(--ink);
  padding: 12px 14px;
  border: 1px solid var(--paper-edge);
  border-radius: 6px;
  background: var(--paper);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(184, 146, 74, 0.18);
}
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form .submit-row {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.contact-form .privacy {
  font-family: 'Newsreader', Georgia, serif;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  font-style: italic;
}
.contact-form button[type="submit"] {
  font-family: 'Newsreader', Georgia, serif;
  font-size: 16px;
  font-weight: 600;
  padding: 14px 28px;
  background: var(--ink);
  color: var(--text-inverse);
  border: 1px solid var(--ink);
  cursor: pointer;
  border-radius: 999px;
  transition: all 0.2s ease;
}
.contact-form button[type="submit"]:hover { background: var(--gold-deep); border-color: var(--gold-deep); }
.contact-form .hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════ */
@media (max-width: 960px) {
  .site-header .nav-wrap { grid-template-columns: auto auto; }
  .site-header nav { display: none; }
  .site-header .nav-right { gap: 12px; }
  .site-header .hamburger { display: block; }
  .site-header nav.open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--paper);
    flex-direction: column;
    padding: 20px var(--gutter);
    border-top: 1px solid var(--paper-edge);
    border-bottom: 1px solid var(--paper-edge);
  }
  .site-header nav.open ul { flex-direction: column; gap: 20px; width: 100%; align-items: flex-start; }

  /* Hero: stronger overlay on tablet so text stays readable */
  .hero { min-height: 740px; }
  .hero::before {
    background: linear-gradient(
      100deg,
      rgba(247, 241, 230, 0.98) 0%,
      rgba(247, 241, 230, 0.95) 50%,
      rgba(247, 241, 230, 0.55) 100%
    );
  }
  .hero .stats-overlay { right: var(--gutter); left: auto; }

  .services-grid { grid-template-columns: 1fr 1fr; }
  .quotes-grid { grid-template-columns: 1fr; }
  .feature-tease { grid-template-columns: 1fr; }
  .service-section .sv-wrap { grid-template-columns: 1fr; gap: 32px; }
  .service-section.flip .sv-wrap > .sv-visual { order: 0; }
  .service-section .sv-subitems { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .site-footer .footer-wrap { grid-template-columns: 1fr 1fr; }
  .contact-wrap { grid-template-columns: 1fr; }
  .trust-bar .row { grid-template-columns: 1fr 1fr; gap: 20px; }
  .trust-item:nth-child(2) { border-right: none; }
  .stats-strip { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .site-header .phone-link span { display: none; }

  /* Hero on phone: photo recedes, overlay almost solid for readability */
  .hero {
    background-position: 70% center;
    min-height: 520px;
    padding-bottom: 160px; /* leave room for stats overlay */
  }
  .hero::before {
    background: linear-gradient(
      180deg,
      rgba(247, 241, 230, 0.92) 0%,
      rgba(247, 241, 230, 0.85) 60%,
      rgba(247, 241, 230, 0.78) 100%
    );
  }
  .hero .stats-overlay {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    padding: 16px 14px;
    right: 16px; left: 16px;
    bottom: 20px;
  }
  .hero .stats-overlay .stat strong { font-size: 22px; }
  .hero .stats-overlay .stat .label { font-size: 10px; }

  .services-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .site-footer .footer-wrap { grid-template-columns: 1fr; gap: 32px; }
  .site-footer .legal { flex-direction: column; text-align: center; }
  .contact-form .field-row { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

@media print {
  .site-header, .site-footer, .cta-band { -webkit-print-color-adjust: exact; print-color-adjust: exact; }
}


/* ═══════════════════════════════════════════════════
   BEFORE / DURING / AFTER — 3-state slider (Uprise-style, v2)
   Handle + vertical divider OVERLAY the image (not below it).
   Three corner badges double as snap buttons. Stage capped so it
   never dominates the viewport.
   ═══════════════════════════════════════════════════ */
.ba-section {
  background: var(--paper);
  padding: clamp(56px, 7vw, 88px) var(--gutter);
  border-top: 1px solid var(--paper-edge);
  border-bottom: 1px solid var(--paper-edge);
}
.ba-wrap {
  max-width: 1100px;
  margin: 0 auto;
}
.ba-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 36px;
}
.ba-eyebrow {
  display: inline-block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 17px;        /* bumped 40% from 12 */
  letter-spacing: 5px;
  color: var(--gold-deep);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.ba-title {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: clamp(32px, 4.2vw, 48px);
  letter-spacing: -0.025em;
  line-height: 1.06;
  color: var(--ink);
  margin: 0 0 12px;
}
.ba-title em {
  font-style: italic;
  color: var(--gold-deep);
  font-weight: 500;
}
.ba-sub {
  font-family: 'Newsreader', Georgia, serif;
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* ── Viewer + Stage ─────────────────────────────────── */
.ba-viewer {
  position: relative;
  user-select: none;
  -webkit-user-select: none;
}
.ba-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  max-height: 600px;
  background-color: #2a2520;
  border-radius: 8px;
  overflow: hidden;
  cursor: ew-resize;
  box-shadow:
    0 24px 48px -22px rgba(28, 24, 20, 0.38),
    0 8px 20px -12px rgba(28, 24, 20, 0.22),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  touch-action: none;
}

/* The 3 stacked images cross-fade based on slider position */
.ba-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  will-change: opacity;
  transform: translateZ(0);
}
.ba-img.is-visible { opacity: 1; }
.ba-img-before { background-image: linear-gradient(155deg, #b48a5a 0%, #6e4f30 40%, #3a2818 80%, #1a1108 100%); }
.ba-img-during { background-image: linear-gradient(155deg, #c8b89e 0%, #8b7a60 40%, #4a4232 80%, #1f1a14 100%); }
.ba-img-after  { background-image: linear-gradient(155deg, #d8c7a8 0%, #a08b6e 40%, #4f4334 80%, #221c14 100%); }
[style*="staircase-before.jpg"]   { background-image: url('img/staircase-before.jpg'), linear-gradient(155deg, #b48a5a 0%, #6e4f30 40%, #3a2818 80%, #1a1108 100%); }
[style*="staircase-during.jpg"]   { background-image: url('img/staircase-during.jpg'), linear-gradient(155deg, #c8b89e 0%, #8b7a60 40%, #4a4232 80%, #1f1a14 100%); }
[style*="staircase-after.jpg"]    { background-image: url('img/staircase-after.jpg'),  linear-gradient(155deg, #d8c7a8 0%, #a08b6e 40%, #4f4334 80%, #221c14 100%); }

/* ── Vertical divider line that follows the handle ─── */
.ba-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0%;
  width: 2px;
  margin-left: -1px;
  background: linear-gradient(180deg,
    rgba(247, 241, 230, 0.4) 0%,
    rgba(247, 241, 230, 0.95) 18%,
    rgba(247, 241, 230, 0.95) 82%,
    rgba(247, 241, 230, 0.4) 100%);
  box-shadow:
    0 0 12px rgba(247, 241, 230, 0.45),
    0 0 24px rgba(184, 146, 74, 0.35);
  pointer-events: none;
  z-index: 3;
}

/* ── Handle — circular grab dot in the middle of the divider ── */
.ba-handle {
  position: absolute;
  top: 50%;
  left: 0%;
  width: 52px;
  height: 52px;
  margin: -26px 0 0 -26px;
  cursor: grab;
  z-index: 4;
  touch-action: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ba-handle:active { cursor: grabbing; }
.ba-handle-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--paper);
  border: 1.5px solid var(--ink);
  box-shadow:
    0 6px 18px -2px rgba(28, 24, 20, 0.42),
    0 0 0 5px rgba(247, 241, 230, 0.55);
  transition: transform 0.22s cubic-bezier(0.2, 0.7, 0.2, 1), border-color 0.22s ease;
}
.ba-handle:hover .ba-handle-ring,
.ba-handle:focus-visible .ba-handle-ring,
.ba-handle.is-dragging .ba-handle-ring {
  transform: scale(1.08);
  border-color: var(--gold-deep);
}
.ba-handle:focus-visible {
  outline: none;
}
.ba-handle:focus-visible .ba-handle-ring {
  box-shadow:
    0 6px 18px -2px rgba(28, 24, 20, 0.42),
    0 0 0 5px rgba(184, 146, 74, 0.3);
}
.ba-handle-arrows {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  color: var(--ink);
}
.ba-handle-arrows svg {
  width: 9px;
  height: 13px;
  fill: currentColor;
}
.ba-handle:hover .ba-handle-arrows,
.ba-handle.is-dragging .ba-handle-arrows {
  color: var(--gold-deep);
}

/* ── Corner state badges (also act as snap-to-position buttons) ── */
.ba-corner {
  position: absolute;
  z-index: 5;
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  padding: 8px 14px;
  background: rgba(28, 24, 20, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--text-inverse);
  border: 1px solid rgba(247, 241, 230, 0.18);
  border-radius: 999px;
  cursor: pointer;
  appearance: none;
  transition: opacity 0.4s ease, transform 0.25s cubic-bezier(0.2, 0.7, 0.2, 1), background-color 0.25s ease;
  opacity: 0.4;
}
.ba-corner.is-active {
  opacity: 1;
  background: rgba(28, 24, 20, 0.92);
}
.ba-corner:hover {
  opacity: 1;
  transform: translateY(-1px);
}
.ba-corner:focus-visible {
  outline: 2px solid var(--gold-deep);
  outline-offset: 3px;
}
.ba-corner-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--gold-soft);
  text-transform: uppercase;
}
.ba-corner-text {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -0.01em;
}
.ba-corner-before { bottom: 16px; left: 16px; }
.ba-corner-during { top: 16px; left: 50%; transform: translateX(-50%); }
.ba-corner-during.is-active,
.ba-corner-during:hover { transform: translateX(-50%) translateY(-1px); }
.ba-corner-after  { bottom: 16px; right: 16px; }

/* ── Hint text below the stage ── */
.ba-hint {
  text-align: center;
  font-family: 'Newsreader', Georgia, serif;
  font-style: italic;
  font-size: 13.5px;
  color: var(--text-muted);
  margin: 18px auto 0;
  max-width: 560px;
}
.ba-footnote {
  text-align: center;
  font-family: 'Newsreader', Georgia, serif;
  font-size: 14px;
  color: var(--text-secondary);
  margin: 22px auto 0;
}

/* ── Mobile ─────────────────────────────────────────── */
@media (max-width: 720px) {
  .ba-stage { aspect-ratio: 4 / 3; max-height: 480px; }
  .ba-handle { width: 60px; height: 60px; margin: -30px 0 0 -30px; }
  .ba-handle-arrows svg { width: 10px; height: 14px; }
  .ba-corner { padding: 6px 11px; gap: 7px; }
  .ba-corner-num { font-size: 9px; letter-spacing: 1.6px; }
  .ba-corner-text { font-size: 12.5px; }
  .ba-corner-before { bottom: 12px; left: 12px; }
  .ba-corner-during { top: 12px; }
  .ba-corner-after  { bottom: 12px; right: 12px; }
}

/* ── Reduced motion ─────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .ba-img,
  .ba-handle-ring,
  .ba-corner { transition: none; }
}

/* ═══════════════════════════════════════════════════
   PLAN YOUR REMODEL — interactive tools grid (home page)
   ═══════════════════════════════════════════════════ */
.plan-tools-section {
  background: var(--paper-2);
  padding: clamp(64px, 8vw, 104px) var(--gutter);
}
.plan-tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: var(--max-width);
  margin: 40px auto 0;
}
@media (max-width: 900px) { .plan-tools-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 580px) { .plan-tools-grid { grid-template-columns: 1fr; } }

.plan-tool-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--paper-edge);
  border-radius: 14px;
  padding: 30px 28px;
  text-decoration: none;
  transition: transform 0.28s cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 0.28s ease, border-color 0.25s ease;
}
.plan-tool-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px -18px rgba(28, 24, 20, 0.22);
  border-color: var(--gold-deep);
}
.plan-tool-card .ptc-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--ink);
  color: var(--gold-soft);
  margin-bottom: 18px;
  transition: background 0.25s ease, color 0.25s ease;
}
.plan-tool-card .ptc-icon svg { width: 26px; height: 26px; }
.plan-tool-card:hover .ptc-icon { background: var(--gold-deep); color: var(--paper); }
.plan-tool-card h3 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0 0 8px;
  line-height: 1.15;
}
.plan-tool-card p {
  font-family: 'Newsreader', Georgia, serif;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.55;
  margin: 0 0 20px;
  flex: 1;
}
.plan-tool-card .ptc-link {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  letter-spacing: 2.5px;
  color: var(--gold-deep);
  text-transform: uppercase;
}
.plan-tool-card:hover .ptc-link { color: var(--ink); }

/* Featured card (Barndo Size Quiz) — dark, stands out */
.plan-tool-card--featured {
  background: var(--ink);
  border-color: var(--ink);
}
.plan-tool-card--featured h3 { color: var(--text-inverse); }
.plan-tool-card--featured p { color: var(--text-inverse-muted); }
.plan-tool-card--featured .ptc-icon { background: var(--gold-deep); color: var(--paper); }
.plan-tool-card--featured .ptc-link { color: var(--gold-soft); }
.plan-tool-card--featured:hover {
  border-color: var(--gold-deep);
  box-shadow: 0 22px 48px -18px rgba(184, 146, 74, 0.4);
}
.plan-tool-card--featured:hover .ptc-icon { background: var(--gold-soft); color: var(--ink); }
.plan-tool-card--featured:hover .ptc-link { color: #fff; }
.plan-tool-card .ptc-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--gold-soft);
  padding: 4px 10px;
  border-radius: 999px;
}

/* ═══════════════════════════════════════════════════
   FOOTER AI / IMAGERY DISCLAIMER — small print above the legal row
   ═══════════════════════════════════════════════════ */
.site-footer .legal-disclaimer {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 16px 0 4px;
  font-family: 'Newsreader', Georgia, serif;
  font-size: 11.5px;
  font-style: italic;
  line-height: 1.55;
  color: var(--text-faint);
  text-align: center;
  position: relative;
  z-index: 2;
  opacity: 0.8;
}
