/* ============================================================
   BRONCO PAINTING — Design System
   Premium + Bold: dark hero · burnt gold · serif headlines
   ============================================================ */

:root {
  /* Palette */
  --ink: #16120C;
  --ink-soft: #211B12;
  --ink-line: rgba(255,255,255,0.08);
  --cream: #F8F5EF;
  --cream-warm: #F1EBE0;
  --cream-soft: #FBF9F4;
  --gold: #C9962F;
  --gold-dark: #A17624;
  --gold-soft: #E3C378;
  --gold-ink: #836018; /* AA-safe on cream bg: 5.29:1 (cream), 4.85:1 (cream-warm), 5.47:1 (cream-soft) */
  --rust: #9C4528;
  --line: rgba(14,17,22,0.10);
  --shadow: 0 30px 80px -30px rgba(14,17,22,0.35);
  --shadow-lift: 0 60px 120px -40px rgba(14,17,22,0.45);

  /* Type */
  --font-display: 'Fraunces', 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  /* Scale */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 32px;
  --space-lg: 64px;
  --space-xl: 96px;
  --space-2xl: 144px;

  --container: 1280px;
  --container-narrow: 960px;

  --radius: 4px;
  --radius-lg: 12px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
}

h1 { font-size: clamp(3rem, 7vw, 5.5rem); font-weight: 400; }
h2 { font-size: clamp(2.6rem, 5.7vw, 4.5rem); font-weight: 400; }
h3 { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 500; }
h4 { font-size: 1.375rem; font-weight: 500; letter-spacing: -0.01em; }

p { max-width: 65ch; }

a {
  color: var(--ink);
  text-decoration: none;
  transition: color 200ms ease;
}
a:hover { color: var(--gold); }

::selection { background: var(--gold); color: var(--ink); }

/* Eyebrow / kicker text */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  font-variant-caps: all-small-caps;
  font-feature-settings: "smcp" 1, "c2sc" 1;
  text-transform: uppercase;
  color: var(--gold-ink);
  display: inline-block;
  margin-bottom: var(--space-sm);
}

.eyebrow.on-dark { color: var(--gold-soft); }

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

.container-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 32px;
}

.section {
  padding: var(--space-xl) 0;
}

.section-lg {
  padding: var(--space-2xl) 0;
}

.section-dark {
  background: var(--ink);
  color: var(--cream);
}
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: var(--cream); }
.section-dark a { color: var(--gold-soft); }

.section-warm { background: var(--cream-warm); }
.section-soft { background: var(--cream-soft); }

/* Buttons */
.btn {
  --magnet-x: 0px;
  --magnet-y: 0px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 36px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1.5px solid var(--ink);
  border-radius: var(--radius);
  cursor: pointer;
  min-height: 44px;
  overflow: hidden;
  isolation: isolate;
  transform: translate(var(--magnet-x), var(--magnet-y));
  transition: transform 250ms cubic-bezier(0.4, 0, 0.2, 1), background-color 250ms ease, color 250ms ease, border-color 250ms ease, box-shadow 250ms ease, opacity 250ms ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.btn-primary:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -10px rgba(180, 137, 76, 0.45);
}

.btn-gold {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}
.btn-gold::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: var(--gold-soft);
  opacity: 0;
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  pointer-events: none;
}
.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--ink);
  transform: translate(var(--magnet-x), calc(var(--magnet-y) - 2px));
}
.btn-gold:focus-visible {
  outline: 2px solid var(--gold-soft);
  outline-offset: 2px;
}
.btn-gold:active {
  transform: translate(var(--magnet-x), var(--magnet-y)) scale(0.98);
}
.btn-gold[disabled],
.btn-gold[aria-disabled="true"] {
  opacity: .5;
  cursor: not-allowed;
  pointer-events: none;
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover {
  background: var(--ink);
  color: var(--cream);
}
.btn-ghost:focus-visible {
  outline: 2px solid var(--gold-soft);
  outline-offset: 2px;
}
.btn-ghost:active {
  transform: translate(var(--magnet-x), var(--magnet-y)) scale(0.98);
}
.btn-ghost[disabled],
.btn-ghost[aria-disabled="true"] {
  opacity: .5;
  cursor: not-allowed;
  pointer-events: none;
}

/* .cinematic-ctas layout lives in index.html's inline hero styles (single source of truth) */
.cinematic-ctas .btn-ghost,
.cta-band .btn-ghost {
  color: var(--cream);
  border-color: rgba(248,245,239,0.72);
}
.cinematic-ctas .btn-ghost:hover,
.cta-band .btn-ghost:hover {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
}
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-ghost-light {
  background: transparent;
  color: var(--cream);
  border-color: var(--cream);
}
.btn-ghost-light:hover {
  background: var(--cream);
  color: var(--ink);
}

.btn-arrow::after {
  content: "→";
  font-size: 1.125rem;
  transition: transform 250ms ease;
}
.btn-arrow:hover::after {
  transform: translateX(4px);
}

@media (hover: hover) and (pointer: fine) and (prefers-reduced-motion: no-preference) {
  .btn-gold::before {
    opacity: 1;
    transition: clip-path 300ms cubic-bezier(0.22, 1, 0.36, 1);
  }
  .btn-gold:hover {
    background: var(--gold);
    border-color: var(--gold);
  }
  .btn-gold:hover::before,
  .btn-gold:focus-visible::before {
    clip-path: polygon(0 0, 101% 0, 96% 100%, 0 100%);
  }
}

.paint-splatter {
  position: fixed;
  left: 0;
  top: 0;
  width: 1px;
  height: 1px;
  overflow: visible;
  pointer-events: none;
  z-index: 9999;
}
.paint-splatter circle {
  fill: var(--gold-soft);
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
}

@media (prefers-reduced-motion: no-preference) {
  .paint-splatter.is-burst circle {
    animation: paintSplat 450ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: var(--dot-delay, 0ms);
  }
  @keyframes paintSplat {
    0% { opacity: 0.95; transform: translate(0, 0) scale(1); }
    100% { opacity: 0; transform: translate(var(--dx), var(--dy)) scale(0.35); }
  }
}

/* Front masthead */
.bronco-masthead {
  position: relative;
  overflow: hidden;
  background: var(--cream);
  border-top: 1px solid rgba(58,51,42,0.32);
  border-bottom: 1px solid rgba(58,51,42,0.32);
}

.bronco-masthead-inner {
  position: relative;
  display: grid;
  place-items: center;
  padding: clamp(28px, 4.5vw, 66px) 24px clamp(22px, 3vw, 44px);
}

.bronco-masthead-watermark {
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: clamp(100px, 12vw, 180px);
  height: auto;
  opacity: 0.07;
  filter: sepia(1) saturate(1.45) hue-rotate(348deg);
  pointer-events: none;
}

.bronco-masthead-word {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: clamp(7rem, 22vw, 21rem);
  font-weight: 500;
  line-height: 0.72;
  letter-spacing: 0;
  color: var(--ink);
  white-space: nowrap;
  transform: translateY(18px);
  opacity: 0;
  animation: mastheadReveal 620ms cubic-bezier(0.22, 1, 0.36, 1) 80ms forwards;
}

.bronco-masthead-kicker {
  position: relative;
  z-index: 1;
  max-width: none;
  margin-top: clamp(14px, 1.6vw, 24px);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-dark);
  transform: translateY(10px);
  opacity: 0;
  animation: mastheadReveal 520ms cubic-bezier(0.22, 1, 0.36, 1) 220ms forwards;
}

@keyframes mastheadReveal {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 700px) {
  .bronco-masthead-inner {
    padding: 18px 16px 16px;
  }
  .bronco-masthead-watermark {
    width: 94px;
    opacity: 0.05;
  }
  .bronco-masthead-word {
    font-size: 15vw;
    line-height: 0.82;
  }
  .bronco-masthead-kicker {
    margin-top: 10px;
    font-size: 0.62rem;
    letter-spacing: 0.24em;
  }
}

/* Navigation */
#nav-mount {
  display: block;
  min-height: 120px;
  background: var(--cream);
}

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 245, 239, 0.92);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 120px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

@media (max-width: 700px) {
  #nav-mount { min-height: 88px; }
  .nav-inner { height: 88px; }
}

.nav-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav-logo-img {
  height: 88px;
  width: auto;
  display: block;
  max-width: 340px;
  object-fit: contain;
}

@media (max-width: 700px) {
  .nav-logo-img { height: 64px; max-width: 240px; }
}

.nav-brand-text {
  /* Hide text label when image logo loads — uncomment to show alongside */
  display: none;
}

.footer-logo-img {
  height: 56px;
  width: auto;
  display: block;
  max-width: 260px;
  object-fit: contain;
  filter: brightness(1.05);
}

.footer-brand-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--cream);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 36px;
  min-width: 642px;
  list-style: none;
}

.nav-links a {
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 250ms ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-cta {
  padding: 12px 24px;
  min-height: 44px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--radius);
  transition: all 200ms ease;
  display: inline-flex;
  align-items: center;
}
.nav-cta:hover {
  background: var(--gold);
  color: var(--ink);
}

.nav-phone {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  font-weight: 600;
  white-space: nowrap;
}

/* Sticky mobile action bar */
.mobile-action-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 120;
  display: none;
  align-items: center;
  gap: 10px;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(22,18,12,0.94);
  border-top: 1px solid rgba(58,51,42,0.3);
  box-shadow: 0 -20px 50px -28px rgba(22,18,12,0.8);
  transform: translateY(calc(100% + 18px));
  opacity: 0;
  pointer-events: none;
  transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1), opacity 220ms ease;
}

.mobile-action-bar a {
  flex: 1 1 0;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 14px;
  border-radius: var(--radius);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
  text-transform: uppercase;
}

.mobile-action-call {
  border: 1px solid rgba(248,245,239,0.62);
  color: var(--cream);
}

.mobile-action-quote {
  border: 1px solid var(--gold);
  background: var(--gold);
  color: var(--ink);
}

.mobile-action-bar.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 699px) {
  .mobile-action-bar {
    display: flex;
  }
}

/* Promo banner */
.promo-bar {
  background: var(--ink);
  color: var(--cream);
  text-align: center;
  padding: 12px 32px;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.promo-bar strong { color: var(--gold-soft); font-weight: 600; }

/* Mobile nav */
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--ink);
}

@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    inset: 88px 0 auto 0;
    flex-direction: column;
    justify-content: flex-start;
    background: var(--cream);
    padding: 32px;
    gap: 24px;
    min-width: 0;
    border-bottom: 1px solid var(--line);
    transform: translateY(-150%);
    transition: transform 350ms cubic-bezier(0.4, 0, 0.2, 1);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a {
    min-width: 44px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
  .nav-toggle { display: inline-flex; }
}

/* Hero */
.hero {
  background: var(--ink);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--space-lg);
  align-items: center;
  min-height: calc(100vh - 120px);
  padding: var(--space-xl) 0;
}

.hero-copy { padding: var(--space-md) 0; }

.hero-title {
  color: var(--cream);
  margin-bottom: var(--space-md);
}

.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold-soft);
}

.hero-sub {
  font-size: 1.125rem;
  line-height: 1.6;
  color: rgba(248, 245, 239, 0.75);
  margin-bottom: var(--space-md);
  max-width: 50ch;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-image-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--cream);
  color: var(--ink);
  padding: 12px 18px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius);
}
.hero-image-badge strong { color: var(--gold); font-family: var(--font-display); font-weight: 500; font-size: 1.125rem; letter-spacing: 0; text-transform: none; display: block; }

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: var(--space-lg) 0;
  }
  .hero-image { aspect-ratio: 4/3; max-width: 600px; }
}

/* Trust strip */
.trust-strip {
  border-top: 1px solid rgba(58,51,42,0.28);
  border-bottom: 1px solid rgba(58,51,42,0.28);
  padding: 24px 0;
  background: var(--ink);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  text-align: center;
}
.trust-stat .num {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 400;
  color: var(--gold-soft);
  line-height: 1;
  margin-bottom: 8px;
}
.trust-stat .label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  font-variant-caps: all-small-caps;
  font-feature-settings: "smcp" 1, "c2sc" 1;
  text-transform: uppercase;
  color: rgba(248, 245, 239, 0.6);
}

@media (max-width: 700px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-md); }
}

/* Section headers */
.section-head {
  margin-bottom: var(--space-lg);
  max-width: var(--container-narrow);
}
.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-head .lead {
  font-size: 1.25rem;
  line-height: 1.5;
  color: rgba(14,17,22,0.7);
  margin-top: var(--space-sm);
}
.section-dark .section-head .lead { color: rgba(248, 245, 239, 0.7); }

.section-head-editorial,
.section-head-split {
  max-width: none;
}

.section-head-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, .75fr);
  gap: var(--space-lg);
  align-items: end;
}

.section-head-split .lead {
  margin-top: 0;
  max-width: 36ch;
}

.section-kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: var(--space-sm);
}

.section-kicker .eyebrow {
  margin-bottom: 0;
}

.section-rule {
  flex: 1 1 56px;
  min-width: 56px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), rgba(58,51,42,0));
}

.folio {
  font-family: var(--font-display);
  font-size: 0.95rem;
  line-height: 1;
  letter-spacing: 0.08em;
  color: var(--gold-ink);
}

.section-kicker.on-dark .section-rule {
  background: linear-gradient(90deg, var(--gold-soft), rgba(58,51,42,0));
}

.section-kicker.on-dark .folio {
  color: var(--gold-soft);
}

.section-head.center .section-kicker {
  justify-content: center;
}

.section-head.center .section-rule {
  flex: 0 1 96px;
}

.line-reveal .line-mask {
  display: block;
  overflow: hidden;
}

.line-reveal .line-inner {
  display: inline-block;
  opacity: 0;
  transform: translateY(105%);
  transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1), opacity 500ms ease;
  transition-delay: calc(var(--line-delay, 0ms) + var(--reveal-delay, 0ms));
  will-change: transform, opacity;
}

.line-reveal.in .line-inner {
  opacity: 1;
  transform: translateY(0);
}

/* Service cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.service-card {
  background: var(--cream-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform 400ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 400ms ease, border-color 300ms ease;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(180, 137, 76, 0.06) 100%);
  opacity: 0;
  transition: opacity 400ms ease;
  pointer-events: none;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
  border-color: var(--gold-soft);
}
.service-card:hover::before {
  opacity: 1;
}

/* Refined reveal stagger — children of the same parent reveal sequentially */
.reveal {
  transition-delay: var(--reveal-delay, 0ms);
}

.service-card h3 { margin-bottom: 12px; }
.service-card .price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: var(--space-sm);
}
.service-card ul {
  list-style: none;
  margin-bottom: var(--space-md);
  flex-grow: 1;
}
.service-card li {
  padding: 8px 0;
  font-size: 0.9375rem;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 12px;
}
.service-card li::before {
  content: "•";
  color: var(--gold);
  font-weight: 600;
}
.service-card .feature {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  font-variant-caps: all-small-caps;
  font-feature-settings: "smcp" 1, "c2sc" 1;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 12px;
}

/* Paint can color reveal */
.section-colors {
  background: var(--cream);
  overflow: hidden;
}

.color-can-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-md);
}

.color-can-card {
  --selected-color: var(--gold-soft);
  position: relative;
  min-height: 620px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(22,18,12,0.14);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(248,245,239,0.86), rgba(241,235,224,0.72));
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 190px 172px 108px;
  row-gap: 12px;
}

.color-card-head {
  position: relative;
  z-index: 2;
}

.color-card-head h3 {
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  margin-top: 2px;
}

.paint-can {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 180px;
  border: 0;
  background: transparent;
  color: var(--ink);
  display: grid;
  place-items: center;
  cursor: grab;
  touch-action: pan-y;
}

.paint-can:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.paint-can:active {
  cursor: grabbing;
}

.paint-can-art {
  width: min(180px, 76%);
  height: auto;
  overflow: visible;
}

.paint-can-art path {
  fill: rgba(248,245,239,0.72);
  stroke: var(--ink);
  stroke-width: 3.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.paint-can-art .can-arc,
.paint-can-art .can-handle {
  fill: none;
  stroke: rgba(22,18,12,0.58);
}

.paint-can-art .can-lid {
  fill: var(--gold-soft);
  transform-box: fill-box;
  transform-origin: 18% 70%;
}

/* Real product cans: Behr Dynasty graphite, Sayerlack silver tin */
.paint-can-art .can-label { pointer-events: none; }
.paint-can-art.is-dynasty .can-body { fill: #26231f; }
.paint-can-art.is-dynasty .can-lid { fill: #c9c6c0; }
.paint-can-art.is-sayerlack .can-body { fill: #d9dad6; }
.paint-can-art.is-sayerlack .can-lid { fill: #c9c6c0; }

.paint-pour {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 245px;
  width: min(250px, 76%);
  transform: translateX(-50%);
  fill: var(--selected-color);
  opacity: 0.92;
  clip-path: inset(0 0 0 0);
  pointer-events: none;
}

.color-swatch-fan {
  position: relative;
  z-index: 2;
  min-height: 160px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  align-items: end;
}

.color-swatch {
  min-height: 136px;
  padding: 12px 8px;
  border: 1px solid rgba(22,18,12,0.16);
  border-radius: var(--radius);
  background: var(--swatch);
  color: var(--ink);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  box-shadow: inset 0 0 0 1px rgba(248,245,239,0.32);
}

.color-swatch.dark {
  color: var(--cream);
  border-color: rgba(248,245,239,0.2);
}

.color-swatch span {
  font-size: clamp(0.62rem, 0.84vw, 0.74rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.08em;
  font-variant-caps: all-small-caps;
  font-feature-settings: "smcp" 1, "c2sc" 1;
  text-transform: uppercase;
}

.color-swatch:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.color-swatch.is-selected {
  border-color: var(--ink);
  box-shadow: inset 0 0 0 2px rgba(22,18,12,0.62), 0 12px 24px rgba(22,18,12,0.12);
}

.color-choice {
  position: relative;
  z-index: 2;
  min-height: 96px;
  padding-top: 14px;
  border-top: 1px solid rgba(22,18,12,0.14);
}

.color-choice-name {
  display: block;
  min-height: 38px;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.4vw, 2.15rem);
  line-height: 1.05;
  color: var(--ink);
}

.color-choice-cta {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-top: 10px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  font-variant-caps: all-small-caps;
  font-feature-settings: "smcp" 1, "c2sc" 1;
  text-transform: uppercase;
  color: var(--gold-ink);
  visibility: hidden;
  opacity: 0;
}

.color-choice.is-selected .color-choice-cta {
  visibility: visible;
  opacity: 1;
}

@media (prefers-reduced-motion: no-preference) {
  .colors-interactive .paint-can,
  .colors-interactive .paint-can-art .can-lid,
  .colors-interactive .paint-pour,
  .colors-interactive .color-swatch,
  .colors-interactive .color-choice-cta {
    transition: transform 700ms cubic-bezier(0.16, 1.28, 0.3, 1), opacity 700ms ease, clip-path 700ms cubic-bezier(0.16, 1.28, 0.3, 1);
    will-change: transform, opacity, clip-path;
  }

  .colors-interactive .paint-can {
    transform: translateX(var(--can-x, 0px)) rotate(var(--can-rotate, 0deg));
  }

  .colors-interactive .color-can-card:not(.is-open) .paint-pour {
    opacity: 0;
    clip-path: inset(0 100% 0 0);
    transform: translateX(-50%) translateY(-16px) scale(0.86);
  }

  .colors-interactive .color-can-card:not(.is-open) .color-swatch {
    opacity: 0;
    clip-path: circle(28% at 50% 60%);
    transform: translateY(18px) scale(0.92);
  }

  .colors-interactive .color-can-card.is-open .paint-can {
    transform: translateX(0) rotate(-5deg);
  }

  .colors-interactive .color-can-card.is-open .paint-can-art .can-lid {
    opacity: 0.88;
    transform: translate(-12px, -16px) rotate(-22deg);
  }

  .colors-interactive .color-can-card.is-open .color-swatch:nth-child(1) { transform: translateY(8px) rotate(-8deg); transition-delay: 40ms; }
  .colors-interactive .color-can-card.is-open .color-swatch:nth-child(2) { transform: translateY(-8px) rotate(-4deg); transition-delay: 90ms; }
  .colors-interactive .color-can-card.is-open .color-swatch:nth-child(3) { transform: translateY(-16px); transition-delay: 140ms; }
  .colors-interactive .color-can-card.is-open .color-swatch:nth-child(4) { transform: translateY(-8px) rotate(4deg); transition-delay: 190ms; }
  .colors-interactive .color-can-card.is-open .color-swatch:nth-child(5) { transform: translateY(8px) rotate(8deg); transition-delay: 240ms; }
}

@media (max-width: 1000px) {
  .color-can-grid { grid-template-columns: 1fr; }
  .color-can-card {
    min-height: 560px;
    grid-template-rows: auto 170px 150px 100px;
  }
  .paint-pour { top: 220px; }
}

@media (max-width: 560px) {
  .color-can-card {
    min-height: 620px;
    padding: 22px;
    grid-template-rows: auto 160px 220px 104px;
  }
  .color-swatch-fan {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: 214px;
  }
  .color-swatch {
    min-height: 76px;
  }
  .colors-interactive .color-can-card.is-open .color-swatch:nth-child(n) {
    transform: none;
  }
}

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

/* Before / After component (side-by-side, legacy) */
.ba-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--ink);
}
.ba-pair .ba-side { position: relative; aspect-ratio: 4/3; }
.ba-pair .ba-side img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.ba-pair .ba-tag {
  position: absolute;
  top: 16px; left: 16px;
  background: rgba(14,17,22,0.9);
  color: var(--cream);
  padding: 6px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: var(--radius);
}
.ba-pair .ba-tag.after {
  background: var(--gold);
  color: var(--ink);
}

/* Before / After SLIDER — drag-to-reveal premium component */
.ba-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--ink);
  box-shadow: var(--shadow);
  cursor: ew-resize;
  user-select: none;
  -webkit-user-select: none;
}

.ba-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.ba-slider .ba-picture {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.ba-slider[data-parallax] img {
  top: -6%;
  height: 112%;
  transform: translateY(var(--parallax-y, 0%)) scale(var(--image-zoom, 1));
  transition: transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.service-card:hover .ba-slider[data-parallax] {
  --image-zoom: 1.04;
}

.ba-slider .ba-after-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  clip-path: polygon(0 0, var(--ba-pos, 50%) 0, var(--ba-pos, 50%) 100%, 0 100%);
  transition: clip-path 80ms ease-out;
}

.ba-slider.dragging .ba-after-wrap {
  transition: none;
}

.ba-slider .ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--ba-pos, 50%);
  width: 3px;
  background: var(--cream);
  transform: translateX(-50%);
  box-shadow: 0 0 0 1px rgba(14,17,22,0.15), 0 4px 20px rgba(14,17,22,0.4);
  pointer-events: none;
  z-index: 2;
}

.ba-slider .ba-handle-knob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px -8px rgba(14,17,22,0.5);
  transition: transform 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

.ba-slider:hover .ba-handle-knob {
  transform: translate(-50%, -50%) scale(1.08);
}

.ba-slider .ba-handle-knob::before,
.ba-slider .ba-handle-knob::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 8px;
  height: 12px;
  border-radius: 2px;
  background: var(--ink);
  transform: translateY(-50%);
}
.ba-slider .ba-handle-knob::before {
  left: 12px;
  clip-path: polygon(100% 0, 0 50%, 100% 100%);
}
.ba-slider .ba-handle-knob::after {
  right: 12px;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.ba-slider .ba-tag {
  position: absolute;
  top: 18px;
  padding: 8px 14px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: var(--radius);
  z-index: 3;
  transition: opacity 200ms ease;
}
.ba-slider .ba-tag.before {
  left: 18px;
  background: rgba(14,17,22,0.85);
  color: var(--cream);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.ba-slider .ba-tag.after {
  right: 18px;
  background: var(--gold);
  color: var(--ink);
}

.ba-slider .ba-meta {
  position: absolute;
  bottom: 18px;
  left: 18px;
  right: 80px;
  z-index: 3;
  background: rgba(14,17,22,0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 12px 16px;
  border-radius: var(--radius);
  color: var(--cream);
  pointer-events: none;
}
.ba-slider .ba-meta-title {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 500;
  margin-bottom: 2px;
}
.ba-slider .ba-meta-sub {
  font-size: 0.8125rem;
  color: rgba(248,245,239,0.75);
}

.ba-slider .ba-hint {
  position: absolute;
  bottom: 18px;
  right: 18px;
  z-index: 3;
  background: rgba(14,17,22,0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--cream);
  padding: 8px 12px;
  border-radius: var(--radius);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  pointer-events: none;
  opacity: 0.85;
  animation: ba-pulse 2.4s ease-in-out infinite;
}
@keyframes ba-pulse {
  0%, 100% { opacity: 0.5; transform: translateX(0); }
  50% { opacity: 1; transform: translateX(-4px); }
}

.ba-slider.has-interacted .ba-hint {
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms;
}

@media (max-width: 700px) {
  .ba-slider { aspect-ratio: 4/3; }
  .ba-slider .ba-handle-knob { width: 48px; height: 48px; }
  .ba-slider .ba-meta { right: 18px; bottom: 12px; padding: 10px 12px; }
  .ba-slider .ba-meta-title { font-size: 0.9375rem; }
  .ba-slider .ba-hint { display: none; }
  .ba-slider.ba-spread { aspect-ratio: 4 / 3; }
}

/* Story / pull quote */
.pull-quote {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--ink);
  max-width: 24ch;
}
.section-dark .pull-quote { color: var(--cream); }

.pull-quote em {
  font-style: italic;
  color: var(--gold);
}

.story-pull {
  border-top: 1px solid rgba(58,51,42,0.45);
  border-bottom: 1px solid rgba(58,51,42,0.45);
  padding: var(--space-md) 0;
}

.story-pull h2 {
  color: var(--cream);
  font-size: clamp(3rem, 6.4vw, 6.25rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  max-width: 9ch;
}

.story-pull h2 em {
  color: var(--gold-soft);
  font-style: italic;
}

.editorial-marquee {
  overflow: hidden;
  background: var(--cream-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  white-space: nowrap;
}

.editorial-marquee-track {
  display: flex;
  width: max-content;
  gap: 48px;
  animation: editorialMarquee 38s linear infinite;
}

.editorial-marquee:hover .editorial-marquee-track {
  animation-play-state: paused;
}

.editorial-marquee span {
  color: var(--ink-soft);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  font-variant-caps: all-small-caps;
  font-feature-settings: "smcp" 1, "c2sc" 1;
  text-transform: uppercase;
}

@keyframes editorialMarquee {
  to { transform: translateX(-33.333%); }
}

.photo-spread {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(40px, 6vw, 88px) 0;
  overflow: hidden;
}

.photo-spread-inner {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 0 clamp(20px, 4vw, 48px);
}

.ba-slider.ba-spread {
  aspect-ratio: 16 / 9;
  max-height: min(82vh, 780px);
  border-radius: 0;
  box-shadow: none;
}

.caption {
  max-width: var(--container);
  margin: 14px auto 0;
  padding: 0 32px;
  font-family: var(--font-display);
  font-size: 13px;
  font-style: italic;
  line-height: 1.4;
  color: rgba(248,245,239,0.72);
}

/* Two-column layout */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}
.two-col-asym {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: var(--space-lg);
  align-items: center;
}
.two-col-asym.flipped {
  grid-template-columns: 7fr 5fr;
}

.col-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.col-image img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 900px) {
  .two-col, .two-col-asym, .two-col-asym.flipped { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .section-head-split {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }
  .section-head-split .lead {
    max-width: 56ch;
  }
  .photo-spread-inner {
    padding: 0 20px;
  }
}

@media (max-width: 640px) {
  .section-kicker {
    gap: 10px;
  }
  .section-rule {
    min-width: 36px;
  }
  .process-index .step {
    grid-template-columns: 72px 1fr;
    column-gap: 18px;
  }
  .editorial-marquee span {
    font-size: 0.68rem;
    letter-spacing: 0.22em;
  }
}

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}
.review {
  position: relative;
  background: transparent;
  padding: clamp(28px, 4vw, 44px) 0 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
}
.review-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: var(--space-sm);
}
.review-text {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.1vw, 1.75rem);
  line-height: 1.24;
  color: var(--ink);
  margin-bottom: 18px;
  max-width: 18ch;
}
.review-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink);
}
.review-loc {
  font-size: 0.8125rem;
  color: rgba(14,17,22,0.6);
}

.quote-mark {
  position: absolute;
  top: -10px;
  left: -4px;
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 8vw, 7rem);
  line-height: 1;
  color: rgba(58,51,42,0.22);
  pointer-events: none;
}

.review-byline {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  font-variant-caps: all-small-caps;
  font-feature-settings: "smcp" 1, "c2sc" 1;
  text-transform: uppercase;
  color: rgba(22,18,12,0.62);
}

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

/* Process steps */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}
.step {
  position: relative;
  padding-top: 32px;
}
.step-num {
  position: absolute;
  top: -8px;
  left: 0;
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 400;
  color: var(--gold);
  opacity: 0.4;
  line-height: 1;
}
.step h4 { margin-bottom: 8px; padding-top: 16px; }
.step p { font-size: 0.9375rem; color: rgba(14,17,22,0.7); }
.section-dark .step p { color: rgba(248,245,239,0.7); }

.process.process-index {
  display: block;
  border-top: 1px solid var(--line);
}

.process-index .step {
  display: grid;
  grid-template-columns: minmax(88px, 0.22fr) minmax(0, 1fr);
  column-gap: clamp(24px, 5vw, 72px);
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.process-index .step-num {
  position: static;
  font-size: clamp(3rem, 6vw, 6.5rem);
  font-weight: 300;
  color: var(--gold);
  opacity: 0.38;
  align-self: start;
}

.process-index .step h4 {
  padding-top: 0;
  margin-bottom: 10px;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
}

.process-index .step p {
  max-width: 56ch;
}

@media (max-width: 900px) {
  .process { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .process { grid-template-columns: 1fr; }
}

/* CTA section */
.cta-band {
  position: relative;
  background: var(--ink);
  color: var(--cream);
  text-align: center;
  padding: var(--space-2xl) 32px;
}
.cta-band .pull-quote { color: var(--cream); margin: 0 auto var(--space-md); }

.cta-gold-rule {
  position: relative;
  display: block;
  width: min(280px, 58vw);
  height: 1px;
  margin: 4px auto var(--space-md);
  background: linear-gradient(90deg, rgba(58,51,42,0), var(--gold-soft), rgba(58,51,42,0));
}

.cta-drip {
  position: absolute;
  left: 50%;
  top: 0;
  width: 8px;
  height: 54px;
  margin-left: -4px;
  border-radius: 999px;
  background: var(--gold-soft);
  opacity: 0;
  transform-origin: top;
  clip-path: inset(0 0 100% 0);
  pointer-events: none;
}

@media (prefers-reduced-motion: no-preference) {
  .cta-band.drip-in .cta-drip {
    animation: ctaDrip 1400ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
  }
  @keyframes ctaDrip {
    0% { opacity: 0; transform: translateY(0) scaleY(0.24); clip-path: inset(0 0 100% 0); }
    28% { opacity: 1; transform: translateY(0) scaleY(1); clip-path: inset(0 0 0 0); }
    100% { opacity: 0; transform: translateY(48px) scaleY(0.82); clip-path: inset(0 0 0 0); }
  }
}

/* Video showcase */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}
.video-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--ink);
  box-shadow: var(--shadow);
}
.video-card video {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 9/16;
  object-fit: cover;
  background: var(--ink);
}
.video-card-caption {
  padding: 16px 18px;
  background: var(--ink);
  color: var(--cream);
}
.video-card-caption .label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-soft);
  display: block;
  margin-bottom: 4px;
}
.video-card-caption h4 {
  color: var(--cream);
  font-size: 1.125rem;
}
@media (max-width: 900px) {
  .video-grid { grid-template-columns: 1fr; }
  .video-card { max-width: 420px; margin: 0 auto; }
  .video-card video { aspect-ratio: 9/16; }
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  max-width: 1100px;
  margin: 0 auto;
}
.gallery-item {
  border-radius: var(--radius-lg);
  overflow: visible;
}

.filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: var(--space-lg);
}
.filter-btn {
  background: transparent;
  border: 1px solid var(--line);
  padding: 10px 22px;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 100px;
  cursor: pointer;
  transition: all 200ms ease;
}
.filter-btn:hover { border-color: var(--ink); }
.filter-btn.active {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}

/* About page hero */
.about-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 70vh;
}
.about-hero-copy {
  background: var(--ink);
  color: var(--cream);
  padding: var(--space-2xl) var(--space-lg);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-hero-image { position: relative; overflow: hidden; }
.about-hero-image img {
  width: 100%; height: 100%;
  object-fit: cover;
}
@media (max-width: 900px) {
  .about-hero { grid-template-columns: 1fr; }
  .about-hero-image { aspect-ratio: 4/3; }
}

/* Footer */
.footer {
  background: var(--ink);
  color: var(--cream);
  padding: var(--space-xl) 0 var(--space-md);
}

.statement-footer {
  position: relative;
  overflow: hidden;
  padding-top: clamp(48px, 6vw, 86px);
}

.footer-watermark {
  position: absolute;
  right: clamp(18px, 6vw, 92px);
  top: clamp(48px, 8vw, 110px);
  width: min(300px, 48vw);
  opacity: 0.1;
  filter: sepia(1) saturate(1.35) hue-rotate(348deg);
  pointer-events: none;
}

.footer-wordmark {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-bottom: var(--space-md);
  border-top: 1px solid rgba(58,51,42,0.2);
  border-bottom: 1px solid rgba(58,51,42,0.22);
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 10vw, 9rem);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: 0;
  color: rgba(58,51,42,0.16);
}

.footer-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.footer-phone {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--cream);
  font-weight: 700;
}

.footer-phone:hover {
  color: var(--gold-soft);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}
.footer h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  font-variant-caps: all-small-caps;
  font-feature-settings: "smcp" 1, "c2sc" 1;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: var(--space-sm);
}
.footer .footer-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 12px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.footer ul { list-style: none; }
.footer li { padding: 6px 0; font-size: 0.9375rem; }
.footer li a {
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.footer a { color: rgba(248,245,239,0.7); }
.footer a:hover { color: var(--gold); }
.footer p { font-size: 0.9375rem; color: rgba(248,245,239,0.7); }
.footer-bottom {
  border-top: 1px solid var(--ink-line);
  padding-top: var(--space-md);
  display: flex;
  justify-content: space-between;
  font-size: 0.8125rem;
  color: rgba(248,245,239,0.5);
}
@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}

/* Utility */
.text-center { text-align: center; }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }

/* Smooth reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* ===== Warranty highlight (added 2026-05-18) ===== */
.warranty-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold, #c9a961) 0%, var(--gold-soft, #e6c97e) 100%);
  color: var(--ink, #1a1a1a);
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 0.92em;
  letter-spacing: 0.01em;
  box-shadow: 0 2px 6px rgba(201, 169, 97, 0.25);
  border: 1px solid rgba(201, 169, 97, 0.4);
}
.warranty-highlight {
  background: linear-gradient(180deg, transparent 60%, rgba(201, 169, 97, 0.45) 60%);
  padding: 0 2px;
  font-weight: 700;
}

/* ===== Inline before/after slider inside service cards ===== */
.ba-slider.ba-inline {
  margin-top: 18px;
  border-radius: 10px;
  aspect-ratio: 4 / 3;
  max-height: 320px;
}
.ba-slider.ba-inline .ba-tag {
  font-size: 0.75em;
  padding: 4px 10px;
}
.ba-slider.ba-inline .ba-handle-knob {
  width: 28px;
  height: 28px;
}

/* Single-card row inside services grid (interior alone) */
.services-grid.services-grid-single {
  grid-template-columns: 1fr;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

/* Inline before/after slider — spaced between feature tag (above) and h3 (below) */
.service-card .ba-slider.ba-inline {
  margin: 16px 0 22px 0;
  border-radius: 12px;
  aspect-ratio: 4 / 3;
  width: 100%;
  max-height: 320px;
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal,
  .line-reveal .line-inner,
  .ba-slider[data-parallax] img {
    opacity: 1 !important;
    transform: none !important;
  }

  .editorial-marquee-track {
    animation: none !important;
  }
}

/* ============ WHITE MAIN pass (Sir 7-06): light replaces black as the dominant ground; cta-band stays the single dark anchor ============ */
.section-dark {
  background: var(--cream-soft);
  color: var(--ink);
}
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: var(--ink); }
.section-dark a { color: var(--gold-dark); }
.section-dark .section-head .lead { color: rgba(22,18,12,0.72); }
.section-dark .pull-quote { color: var(--ink); }
.section-dark .step p { color: rgba(22,18,12,0.7); }

.footer {
  background: #FFFFFF;
  color: var(--ink);
  border-top: 1px solid rgba(58,51,42,0.28);
}
.footer-wordmark {
  color: rgba(58,51,42,0.26);
  border-top-color: rgba(58,51,42,0.24);
  border-bottom-color: rgba(58,51,42,0.26);
}
.footer-watermark { opacity: 0.08; }
.footer h4 { color: var(--gold-ink); }
.footer .footer-brand, .footer-brand-text, .footer-phone { color: var(--ink); }
.footer-phone:hover { color: var(--gold-ink); }
.footer a { color: rgba(22,18,12,0.72); }
.footer a:hover { color: var(--gold-ink); }
.footer p { color: rgba(22,18,12,0.72); }
.footer-bottom { border-top-color: rgba(22,18,12,0.14); color: rgba(22,18,12,0.55); }

.section-dark .eyebrow.on-dark,
.section-dark .section-kicker.on-dark .folio {
  color: var(--gold-ink);
}
.section-dark .section-kicker.on-dark .section-rule {
  background: linear-gradient(90deg, var(--gold-dark), rgba(161,118,36,0));
}
.promo-bar {
  background: var(--cream-soft);
  color: var(--ink);
  border-bottom: 1px solid rgba(58,51,42,0.24);
}
.promo-bar strong { color: var(--gold-dark); }
.trust-strip {
  background: var(--cream-soft);
  border-top-color: rgba(58,51,42,0.24);
  border-bottom-color: rgba(58,51,42,0.24);
}
.trust-stat .num { color: var(--gold-dark); }
.trust-stat .label { color: rgba(22,18,12,0.62); }
.photo-spread {
  background: var(--cream-soft);
  color: var(--ink);
}
.video-card { background: var(--cream-soft); }
.video-card-caption {
  background: #FFFFFF;
  color: var(--ink);
}
.video-card-caption .label { color: var(--gold-ink); }
.video-card-caption h4 { color: var(--ink); }

/* ============ MASTHEAD: faded gold on black (Sir 7-06). The one dark premium moment; rest of site stays white-main ============ */
.bronco-masthead {
  background: linear-gradient(180deg, #14100a 0%, var(--ink) 100%);
  border-top: 1px solid rgba(58,51,42,0.25);
  border-bottom: 1px solid rgba(58,51,42,0.25);
}
.bronco-masthead-word { color: rgba(58,51,42,0.2); }
.bronco-masthead-kicker { color: var(--gold-soft); }
.bronco-masthead-watermark { opacity: 0.11; }

/* ============ MASTHEAD = MAIN HEADER (Sir 7-06): word to the edge, horse popping out 3D, hamburger nav ============ */
.bronco-masthead { overflow: visible; position: relative; z-index: 20; }
.bronco-masthead-inner {
  display: block;
  text-align: left;
  position: relative;
  max-width: none;
  padding: clamp(74px, 9vw, 130px) clamp(20px, 4.5vw, 64px) clamp(30px, 4vw, 64px);
}
.bronco-masthead-word {
  font-size: clamp(5.2rem, 17vw, 16rem);
  line-height: 0.78;
  width: 100%;
  justify-self: start;
}
.bronco-masthead-kicker { margin-top: clamp(10px, 1.3vw, 20px); width: 100%; justify-self: start; text-align: left; }
.bronco-masthead-horse {
  position: absolute;
  right: clamp(8px, 0.8vw, 24px);
  top: 50%;
  width: clamp(220px, 31vw, 490px);
  z-index: 4;
  transform: translateY(-52%) rotate(-2.5deg);
  filter: grayscale(1) drop-shadow(0 26px 46px rgba(0,0,0,0.4));
  opacity: 0.5;
  pointer-events: none;
}
.bronco-masthead-horse img { width: 100%; height: auto; display: block; }

/* Nav: hamburger at every width, no logo */
.nav .nav-brand-text { display: inline; }
.nav-toggle { display: inline-flex; }
.nav-links {
  position: fixed;
  left: 0; right: 0; top: 120px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  background: var(--cream);
  padding: 32px;
  gap: 24px;
  min-width: 0;
  border-bottom: 1px solid var(--line);
  transform: translateY(-150%);
  transition: transform 350ms cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}
.nav-links.open { transform: translateY(0); }
.nav-links a { min-width: 44px; min-height: 44px; display: inline-flex; align-items: center; }
@media (max-width: 900px) { .nav-links { top: 88px; } }

/* Overlay mode on pages with the masthead: transparent over the dark band, solid after scroll */
.nav.nav-overlay {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: transparent;
  border-bottom: 0;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.nav.nav-overlay .nav-inner { height: 88px; }
.nav.nav-overlay .nav-toggle { color: var(--gold-soft); }
.nav.nav-overlay .nav-brand-text { display: none; }
.nav.nav-overlay .nav-links { top: 88px; }
.nav.nav-overlay.nav-scrolled {
  background: rgba(248, 245, 239, 0.94);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--line);
}
.nav.nav-overlay.nav-scrolled .nav-toggle { color: var(--ink); }
.nav.nav-overlay.nav-scrolled .nav-brand-text { display: inline; color: var(--ink); }

@media (max-width: 720px) {
  .bronco-masthead-inner { padding: 64px 18px 26px; }
  .bronco-masthead-word { font-size: 19vw; }
  .bronco-masthead-horse {
    width: clamp(170px, 54vw, 280px);
    right: 4vw;
    transform: translateY(-50%) rotate(-2deg);
  }
}

/* ============ REAL PRODUCT CANS (Sir 7-06): official Behr Dynasty packshots + Sayerlack tin ============ */
.paint-can-photo {
  display: block;
  width: min(190px, 62%);
  margin: 0 auto;
  pointer-events: none;
}
.paint-can-photo img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 22px 34px rgba(22,18,12,0.28));
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}
.paint-can-photo.is-sayerlack { width: min(205px, 68%); }
.paint-can-photo.is-sayerlack img { mix-blend-mode: multiply; }
.color-can-card.is-open .paint-can-photo img { transform: translateY(-8px) rotate(-3deg); }

/* === v6 DEV-A logo system + hero overlay + nav/footer editorial (masthead redo reverted per Sir 2026-07-07) === */

.footer-mark-ornament {
  display: inline-flex;
  align-items: center;
  opacity: 0.55;
}
.footer-mark-ornament img {
  display: block;
  width: 20px;
  height: 20px;
  object-fit: contain;
  filter: grayscale(1);
}

.cinematic-eyebrow {
  transition: color 200ms ease;
}
.cinematic-proof span {
  font-size: 11px;
  letter-spacing: 0.08em;
}
.cinematic-overlay a { pointer-events: auto; }

.nav.nav-editorial .nav-links a {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  font-variant-caps: all-small-caps;
  font-feature-settings: "smcp" 1, "c2sc" 1;
  text-transform: uppercase;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.nav-divider {
  width: 1px;
  height: 20px;
  background: var(--line);
  align-self: center;
  padding: 0 !important;
  min-width: 1px !important;
  min-height: 20px !important;
}
.nav.nav-overlay .nav-divider { background: rgba(248,245,239,0.28); }
.nav-links a:focus-visible,
.nav-cta:focus-visible,
.nav-phone:focus-visible,
.nav-toggle:focus-visible {
  outline: 2px solid var(--gold-ink);
  outline-offset: 3px;
}
.nav.nav-overlay .nav-links a:focus-visible,
.nav.nav-overlay .nav-cta:focus-visible,
.nav.nav-overlay .nav-phone:focus-visible,
.nav.nav-overlay .nav-toggle:focus-visible {
  outline-color: var(--gold-soft);
}
.nav-links a.active {
  color: var(--gold-ink);
}
.nav.nav-overlay .nav-links a.active {
  color: var(--gold-soft);
}

.footer-dateline {
  position: relative;
  z-index: 1;
  margin: -10px 0 var(--space-md);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  font-variant-caps: all-small-caps;
  font-feature-settings: "smcp" 1, "c2sc" 1;
  text-transform: uppercase;
  color: var(--gold-ink);
}
.footer li a:focus-visible,
.footer-phone:focus-visible,
.footer-brand:focus-visible,
.footer .btn:focus-visible {
  outline: 2px solid var(--gold-ink);
  outline-offset: 3px;
}
.footer-bottom {
  align-items: center;
}

/* === v6 DEV-B The Transformations (flagship BA editorial) === */
.tx-section {
  padding: var(--space-2xl) 0;
  background: var(--cream);
}

.tx-case {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: var(--space-lg);
  align-items: center;
}
.tx-case + .tx-case {
  margin-top: var(--space-2xl);
}
.tx-case-02 {
  grid-template-columns: 5fr 7fr;
}
.tx-case-02 .tx-case-story { grid-column: 1; grid-row: 1; }
.tx-case-02 .tx-case-media { grid-column: 2; grid-row: 1; }

.tx-case-media {
  position: relative;
}
.tx-case-media .ba-slider.tx-slider {
  aspect-ratio: 1376 / 768;
  box-shadow: var(--shadow-lift);
}
.tx-caption {
  max-width: none;
  margin: 14px 0 0;
  padding: 0;
  color: rgba(22,18,12,0.6);
}

.tx-case-story {
  position: relative;
  padding-left: clamp(0px, 2vw, 8px);
}
.tx-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.75rem);
  font-weight: 300;
  line-height: 1;
  color: var(--gold);
  opacity: 0.4;
  margin-bottom: var(--space-sm);
}
.tx-case-story h3 {
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  margin-bottom: var(--space-sm);
  max-width: 12ch;
}
.tx-case-story p {
  font-size: 1.0625rem;
  line-height: 1.6;
  color: rgba(22,18,12,0.72);
  margin-bottom: var(--space-sm);
}
.tx-case-story p:last-of-type {
  margin-bottom: var(--space-md);
}

.tx-cta {
  display: inline-block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--gold-ink);
  border-bottom: 1px solid var(--gold-ink);
  padding-bottom: 2px;
  min-height: 44px;
  line-height: 44px;
  transition: color 200ms ease, border-color 200ms ease;
}
.tx-cta:hover {
  color: var(--gold-dark);
  border-color: var(--gold-dark);
}
.tx-cta:focus-visible {
  outline: 2px solid var(--gold-soft);
  outline-offset: 4px;
}

.tx-slider .ba-handle {
  width: 2px;
  background: var(--gold-soft);
  box-shadow: 0 0 0 1px rgba(58,51,42,0.5), 0 4px 24px rgba(14,17,22,0.45);
}
.tx-slider .ba-handle-knob {
  width: 68px;
  height: 68px;
  background: var(--cream);
  box-shadow: 0 0 0 1px var(--gold-soft), 0 10px 34px -8px rgba(14,17,22,0.55);
  transition: transform 220ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 220ms ease;
}
.tx-slider:hover .ba-handle-knob,
.tx-slider:focus-within .ba-handle-knob {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 0 0 2px var(--gold), 0 14px 40px -8px rgba(14,17,22,0.6);
}
.tx-slider .ba-handle-knob::before,
.tx-slider .ba-handle-knob::after {
  background: var(--gold-ink);
}
.tx-slider .ba-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  font-variant-caps: all-small-caps;
  font-feature-settings: "smcp" 1, "c2sc" 1;
}
.tx-slider .ba-tag.before {
  background: rgba(14,17,22,0.82);
  color: var(--cream);
}
.tx-slider .ba-tag.after {
  background: var(--gold);
  color: var(--ink);
}

@media (max-width: 900px) {
  .tx-case,
  .tx-case-02 {
    grid-template-columns: 1fr;
  }
  .tx-case-02 .tx-case-story,
  .tx-case-02 .tx-case-media {
    grid-column: 1;
  }
  .tx-case-02 .tx-case-story { grid-row: 2; }
  .tx-case-02 .tx-case-media { grid-row: 1; }
  .tx-case + .tx-case {
    margin-top: var(--space-xl);
  }
}

@media (max-width: 700px) {
  .tx-slider .ba-handle-knob { width: 52px; height: 52px; }
}

/* === v6 DEV-C craft === */

.service-cta-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}

.service-card .service-price {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  font-variant-caps: all-small-caps;
  font-feature-settings: "smcp" 1, "c2sc" 1;
  text-transform: uppercase;
  color: var(--gold-ink);
  padding-bottom: 10px;
  margin-bottom: var(--space-sm);
  border-bottom: 1px solid var(--line);
}
.service-card .service-price span { display: none; }

.service-card ul.service-facts {
  list-style: none;
  margin-bottom: var(--space-md);
  flex-grow: 1;
}
.service-card ul.service-facts li {
  padding: 10px 0;
  font-size: 0.9375rem;
  line-height: 1.5;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.service-card ul.service-facts li::before {
  content: "";
  flex: none;
  width: 14px;
  height: 1px;
  background: var(--gold);
  margin-top: 0.72em;
}
.service-card ul.service-facts li:last-child { border-bottom: 0; }

.service-card { transition: transform 400ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 400ms ease, border-color 300ms ease; }
.service-card::before { display: none; }
.service-card::after {
  content: "";
  position: absolute;
  left: var(--space-md);
  right: var(--space-md);
  top: 0;
  height: 1px;
  background: var(--gold-soft);
  opacity: 0;
  transform: scaleX(0.7);
  transform-origin: center;
  transition: opacity 350ms ease, transform 350ms cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--gold-soft);
}
.service-card:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.story-copy { max-width: 65ch; }
.story-graf {
  font-size: 1.125rem;
  line-height: 1.65;
  color: rgba(22,18,12,0.72);
  max-width: 65ch;
}
.story-graf-lead { margin-bottom: 24px; }
.story-mark { color: var(--gold-dark); font-weight: 600; }

@supports (initial-letter: 2) or (-webkit-initial-letter: 2) {
  .story-graf-lead {
    -webkit-initial-letter: 2.4;
    initial-letter: 2.4;
    margin-right: 8px;
  }
  .story-graf-lead::first-letter {
    font-family: var(--font-display);
    font-weight: 500;
    color: var(--gold-dark);
  }
}

.editorial-marquee.editorial-marquee-refined {
  border-top-color: rgba(58,51,42,0.28);
  border-bottom-color: rgba(58,51,42,0.28);
}
.editorial-marquee.editorial-marquee-refined .editorial-marquee-track {
  animation-duration: 58s;
}
.editorial-marquee.editorial-marquee-refined span {
  letter-spacing: 0.34em;
}

.review { padding-top: clamp(32px, 4.5vw, 48px); }
.review .quote-mark {
  top: -6px;
  left: -2px;
  font-style: italic;
  color: rgba(58,51,42,0.28);
}
.review-lead .review-text {
  font-size: clamp(1.5rem, 2.6vw, 2.125rem);
  max-width: 16ch;
}
.review-lead .quote-mark {
  font-size: clamp(5.5rem, 9vw, 8.5rem);
  color: rgba(58,51,42,0.34);
}

.process-refined .step { padding: 26px 0; }
.process-refined .step h4 { line-height: 1.1; }
.process-refined .step p { line-height: 1.55; }
.process-refined .step-num { opacity: 0.3; }

.cta-band-h2 { color: var(--cream); margin-bottom: var(--space-md); }
.cta-band-em { color: var(--gold-soft); font-style: italic; }
.cta-band-lead {
  font-size: 1.25rem;
  color: rgba(248,245,239,0.7);
  max-width: 50ch;
  margin: 0 auto var(--space-lg);
}

.ba-slider:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.ba-slider .ba-handle-knob:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.ba-slider:active .ba-handle-knob {
  transform: translate(-50%, -50%) scale(0.96);
}

.color-swatch {
  min-height: 44px;
  transition: transform 200ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 200ms ease, border-color 200ms ease;
}
.color-swatch:hover {
  border-color: var(--ink);
  box-shadow: inset 0 0 0 1px rgba(248,245,239,0.32), 0 10px 20px rgba(22,18,12,0.14);
  transform: translateY(-2px);
}
.color-swatch:active {
  transform: translateY(0) scale(0.97);
}

/* === v6 integrator: shared tokens === */
:root {
  --space-2xl: clamp(112px, 11vw, 176px);
}

/* v6 integrator masthead horse crop removed: Sir keeps the original full horse pop-out (2026-07-07) */

/* === v6 critic pass (CRIT-1 visual + CRIT-2 code floor) === */

/* CRIT-2 blocker: fixed 44px line-height broke wrapped CTA text */
.tx-cta {
  line-height: 1.5;
  padding: 11px 0;
}

/* CRIT-1: services three equal cards read as template; borderless editorial asymmetry */
.services-grid {
  grid-template-columns: 5fr 7fr;
  gap: clamp(28px, 4vw, 64px);
  align-items: start;
}
.service-card {
  background: transparent;
  border: 0;
  border-radius: 0;
  border-top: 1px solid var(--line);
  padding: var(--space-md) 0 0;
  overflow: visible;
}
.service-card::after {
  left: 0;
  right: 0;
}
.service-card:hover {
  transform: none;
  box-shadow: none;
}
.service-card .ba-slider {
  border-radius: 0;
}
@media (max-width: 800px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* CRIT-1: reviews row monotony; stagger the columns */
@media (min-width: 800px) {
  .reviews-grid .review:nth-child(2) { margin-top: 56px; }
  .reviews-grid .review:nth-child(3) { margin-top: 24px; }
}

/* CRIT-1: transformations lead was an unanchored orphan paragraph */
.tx-section .section-head-split .lead {
  max-width: 32ch;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

/* CRIT-1: folio numerals read as disabled ghost text; commit to gold */
.tx-num {
  opacity: 1;
  color: var(--gold);
}

/* CRIT-1: hero city kicker reads as one gray run on string */
.cinematic-overlay .top-row {
  letter-spacing: 0.28em;
  color: rgba(248, 245, 239, 0.72);
}

/* CRIT-1: hamburger needs a considered hover; it is the only nav control */
.nav-toggle {
  transition: color 200ms ease, transform 200ms ease;
}
.nav-toggle:hover {
  color: var(--gold-ink);
  transform: scale(1.07);
}
.nav.nav-overlay .nav-toggle:hover {
  color: var(--gold-soft);
}

/* CRIT-1: CTA band buttons read co equal; primary must win */
.cta-band .btn-gold {
  padding: 18px 40px;
}
.cta-band .btn-ghost {
  border-color: rgba(248, 245, 239, 0.35);
}

/* CRIT-1: footer wordmark repeated the hero moment at full scale; quiet it */
.footer-wordmark {
  font-size: clamp(2.4rem, 6.5vw, 5.5rem);
  color: rgba(201, 150, 47, 0.18);
}

/* CRIT-2: nav divider was a horizontal artifact inside the permanent vertical menu */
.nav-links .nav-divider {
  width: 100%;
  height: 1px;
  min-height: 1px !important;
  margin: 6px 0;
  align-self: stretch;
}
.nav.nav-overlay .nav-links .nav-divider {
  background: var(--line);
}

/* === v7 MONOCHROME (Sir 2026-07-07: gold reads yellow; accent is now dark neutral, charcoal kinda) === */
:root {
  --gold: #2E2922;
  --gold-dark: #171310;
  --gold-soft: #EFE9DD;
  --gold-ink: #4C463E;
}

/* Buttons: charcoal on light sections needs cream text */
.btn-gold {
  color: var(--cream);
}
.btn-gold:hover {
  color: var(--cream);
}
.mobile-action-quote {
  color: var(--cream);
}

/* Dark sections invert the primary button to cream so it stays visible */
.cta-band .btn-gold,
.cinematic-ctas .btn-gold,
.section-dark .btn-gold,
.footer .btn-gold,
.bronco-masthead .btn-gold {
  background: var(--cream);
  border-color: var(--cream);
  color: var(--ink);
}
.cta-band .btn-gold:hover,
.cinematic-ctas .btn-gold:hover,
.section-dark .btn-gold:hover,
.footer .btn-gold:hover,
.bronco-masthead .btn-gold:hover {
  background: var(--cream-warm);
  border-color: var(--cream-warm);
  color: var(--ink);
}

/* Charcoal chips and fills need cream text */
::selection { color: var(--cream); }
.ba-slider .ba-tag.after,
.ba-pair .ba-tag.after {
  color: var(--cream);
}
.tx-slider .ba-tag.after {
  background: var(--gold);
  color: var(--cream);
}

/* Decorative paint pour: bone on cream was invisible; charcoal reads as paint */
.paint-pour {
  fill: rgba(46, 41, 34, 0.85);
}

/* Masthead sits on the dark band: its hairlines and ghost word stay soft cream, not dark on dark */
.bronco-masthead {
  border-top-color: rgba(241, 235, 224, 0.14);
  border-bottom-color: rgba(241, 235, 224, 0.14);
}
.bronco-masthead-word { color: rgba(241, 235, 224, 0.16); }
@media (max-width: 720px) {
  .bronco-masthead {
    border-top-color: rgba(241, 235, 224, 0.14);
    border-bottom-color: rgba(241, 235, 224, 0.14);
  }
}

/* Slider handle over photos: cream hairline with a dark ring, no tint */
.tx-slider .ba-handle {
  box-shadow: 0 0 0 1px rgba(22, 18, 12, 0.35), 0 4px 24px rgba(14, 17, 22, 0.45);
}

/* === v8 REAL HEADER (Sir 2026-07-07, white per his word): masthead band removed; the nav IS the header. Slim, white, follows scroll === */
.nav {
  background: rgba(251, 249, 244, 0.96);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  height: 80px;
}
@media (max-width: 700px) {
  #nav-mount { min-height: 68px; }
  .nav-inner { height: 68px; }
}
.nav-toggle {
  color: var(--ink);
}
.nav-toggle:hover {
  color: var(--ink);
}
.nav-links {
  background: #FBF9F4;
}
.nav-links a,
.nav.nav-editorial .nav-links a {
  color: var(--ink);
}
.nav-links a:hover,
.nav-links a.active {
  color: #000000;
}
.nav-phone { color: var(--ink); }
.nav-cta {
  background: var(--ink);
  color: var(--cream);
}
.nav-cta:hover {
  background: #000000;
  color: var(--cream);
}
.nav-links .nav-divider { background: var(--line); }
.nav-links a:focus-visible,
.nav-cta:focus-visible,
.nav-phone:focus-visible,
.nav-toggle:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}

/* Warranty badge: flat black and grey, no gradient (Sir marked the gradient) */
.warranty-badge {
  background: #17130F;
  color: #F6F1E8;
  box-shadow: none;
  font-weight: 600;
  border-radius: 3px;
}

/* New Sayerlack tin is a transparent png; the old white-box blend hack goes */
.paint-can-photo.is-sayerlack img {
  mix-blend-mode: normal;
}

/* === v7 brand: real logo replaces the Bronco Painting text (Sir 2026-07-07) === */
.nav-brand-logo {
  display: block;
  height: 56px;
  width: auto;
}
.nav.nav-overlay .nav-brand-logo { display: none; }
.nav.nav-overlay.nav-scrolled .nav-brand-logo { display: block; }
.footer-brand-logo {
  display: block;
  height: 92px;
  width: auto;
}


/* === Call or message chooser (Sir 2026-07-07) === */
.cta-contact { display: inline-block; text-align: center; }
.cta-contact summary { list-style: none; cursor: pointer; user-select: none; }
.cta-contact summary::-webkit-details-marker { display: none; }
.cta-contact-options { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-top: 12px; }


/* === Mobile polish wave (Sir 2026-07-07 evening) === */
/* Button rows: paired buttons keep a gap on wrap, never touch */
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

/* Service price + facts inside transformation stories (index) */
.tx-case-story .service-price { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; font-family: var(--font-body); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; font-variant-caps: all-small-caps; font-feature-settings: "smcp" 1, "c2sc" 1; text-transform: uppercase; color: var(--gold-ink); padding-bottom: 10px; margin-top: var(--space-md); margin-bottom: var(--space-sm); border-bottom: 1px solid var(--line); }
.tx-case-story .service-price span { display: none; }
.tx-case-story ul.service-facts { list-style: none; margin-bottom: var(--space-md); }
.tx-case-story ul.service-facts li { padding: 10px 0; font-size: 0.9375rem; line-height: 1.5; border-bottom: 1px solid var(--line); display: flex; align-items: flex-start; gap: 12px; }
.tx-case-story ul.service-facts li::before { content: ""; flex: none; width: 14px; height: 1px; background: var(--gold); margin-top: 0.72em; }
.tx-case-story ul.service-facts li:last-child { border-bottom: 0; }

/* Mobile menu: Free Quote pill was ink text on an ink chip, read as a blank box */
.nav-links .nav-cta,
.nav.nav-editorial .nav-links .nav-cta { color: var(--cream); }
.nav-links .nav-cta:hover,
.nav.nav-editorial .nav-links .nav-cta:hover { color: var(--cream); }

/* Footer: single column on phones so nothing runs off the page */
@media (max-width: 700px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-grid > div { min-width: 0; }
  .footer-grid ul { overflow-wrap: anywhere; }
  .footer li a { min-height: 36px; }
}

/* Footer clears the sticky action bar (copyright line was hidden behind it) */
@media (max-width: 699px) {
  .footer { padding-bottom: calc(96px + env(safe-area-inset-bottom)); }
}

/* Four-steps rows: the .step grid has 3 children but 2 columns; auto-placement
   dropped the paragraph into the 88px number column (2 words per line on phones).
   Pin the number to column 1 and the text to column 2. */
.process-index .step-num { grid-column: 1; grid-row: 1 / span 2; }
.process-index .step h4 { grid-column: 2; }
.process-index .step p { grid-column: 2; }
@media (max-width: 640px) {
  /* restores the intended tighter phone columns; the original rule at ~1603 is dead by cascade */
  .process-index .step { grid-template-columns: 72px 1fr; column-gap: 18px; }
}

/* WHITE MAIN followups: rules the 7-06 light flip missed, leaving cream-family ink on cream */
.story-pull h2 em { color: var(--gold-ink); }
.caption { color: rgba(22,18,12,0.62); }
.section-dark .btn-gold { background: var(--gold); border-color: var(--gold); color: var(--cream); }
.section-dark .btn-gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); color: var(--cream); }
/* phones: the desktop 9ch cap strangles the box at phone font sizes and the
   line-reveal splitter freezes the orphan wraps; lift the cap, size to fit */
@media (max-width: 480px) {
  .story-pull h2 { font-size: 2.25rem; max-width: none; }
}
