/* =============================================================================
   Kelowna Roofing Repairs — site styles
   One stylesheet for every page. Same design system as premiumroofingltd.com
   (orange-on-black, black-on-white light bands, Outfit + DM Sans, seamless
   section edges) so the two sites read as one company.
   ============================================================================= */

/* ----- Brand tokens ----- */
:root {
  --black: #0a0a0a;
  --dark: #111111;
  --dark-mid: #1a1a1a;
  --mid: #2a2a2a;
  --light-mid: #999;
  --light: #e8e8e8;
  --white: #ffffff;
  --accent: #ff5d00;
  --accent-dim: #e05400;
  --accent-glow: rgba(255, 93, 0, 0.15);
  --wrap: 1180px;
  --wrap-wide: 1400px;
  --pad: 3rem;
}

@font-face {
  font-family: 'Metropolis';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/metropolis-latin-600-normal.woff2') format('woff2');
}

/* ----- Reset / base ----- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 120px; }
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { text-decoration: none; color: inherit; }
button { border: none; background: none; cursor: pointer; font-family: inherit; color: inherit; }
img, video { max-width: 100%; display: block; }
ul { list-style: none; }
strong { font-weight: 600; }
.accent { color: var(--accent); }

a:focus-visible, button:focus-visible, [role="button"]:focus-visible,
input:focus-visible, textarea:focus-visible, select:focus-visible, summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip-to-content {
  position: absolute; top: -100px; left: 1rem; z-index: 100000;
  padding: 0.75rem 1.25rem; background: var(--accent); color: #111;
  font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 0.85rem;
  border-radius: 4px; transition: top 0.2s ease;
}
.skip-to-content:focus { top: 1rem; outline: 2px solid #fff; outline-offset: 2px; }

.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;
}

/* ----- Type ----- */
.section-tag {
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.2em;
  color: var(--accent); margin-bottom: 1rem; display: block;
}
.section-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
}
.section-title.upper { text-transform: uppercase; font-weight: 900; letter-spacing: -0.02em; }
.lead {
  font-size: 1.02rem; line-height: 1.75; color: var(--light-mid);
  max-width: 64ch; margin-top: 1.3rem;
}
.lead p + p { margin-top: 1.1rem; }
.lead a, .prose a { color: var(--accent); }
.lead strong, .prose strong { color: var(--white); }
.prose { font-size: 1rem; line-height: 1.75; color: var(--light-mid); max-width: 66ch; }
.prose p + p { margin-top: 1.1rem; }
.prose h3 {
  font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1.1rem;
  color: var(--white); margin: 2rem 0 0.6rem;
}
.prose ul { padding-left: 1.1rem; list-style: disc; margin: 0.8rem 0; }
.prose li + li { margin-top: 0.4rem; }

.wrap { max-width: var(--wrap); margin: 0 auto; }
.wrap-wide { max-width: var(--wrap-wide); margin: 0 auto; }

/* ----- Buttons ----- */
.btn {
  font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 0.9rem;
  text-transform: uppercase; letter-spacing: 0.04em;
  padding: 1rem 2.25rem; border-radius: 4px;
  position: relative; overflow: hidden; transition: all 0.3s ease;
  display: inline-flex; align-items: center; gap: 0.6rem; z-index: 1;
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; flex: none; }
.btn-primary { background: var(--accent); color: var(--black); }
.btn-primary::before {
  content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: var(--white); transition: left 0.3s ease; z-index: -1;
}
.btn-primary:hover::before { left: 0; }
.btn-primary:hover { color: var(--black); transform: translateY(-2px); box-shadow: 0 20px 40px var(--accent-glow); }
.btn-secondary { background: transparent; color: var(--white); border: 1px solid rgba(255, 255, 255, 0.22); }
.btn-secondary::before {
  content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 100%;
  background: rgba(255, 255, 255, 0.06); transform: translateY(101%);
  transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1); z-index: -1;
}
.btn-secondary:hover { border-color: var(--white); }
.btn-secondary:hover::before { transform: translateY(0); }
.btn-call { background: transparent; color: var(--white); border: 1px solid rgba(255, 93, 0, 0.5); }
.btn-call svg { color: var(--accent); }
.btn-call:hover { background: var(--accent); color: var(--black); border-color: var(--accent); }
.btn-call:hover svg { color: var(--black); }
.actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ----- Reveal ----- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.stagger-reveal > * { opacity: 0; transform: translateY(30px); transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.stagger-reveal.visible > * { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal, .stagger-reveal > * { opacity: 1 !important; transform: none !important; transition: none !important; animation: none !important; }
}

/* ----- Media ----- */
.media-img { display: block; width: 100%; height: 100%; object-fit: cover; animation: media-in .35s ease backwards; }
picture:has(> .media-img) { display: contents; }
@keyframes media-in { from { opacity: 0 } }
@media (prefers-reduced-motion: reduce) { .media-img { animation: none } }

/* =============================================================================
   NAVIGATION
   ============================================================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem var(--pad);
  transition: background 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(10, 10, 10, 0.86);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border-bottom-color: rgba(255, 255, 255, 0.06);
  padding: 0.8rem var(--pad);
}

/* brand: wordmark + "powered by" lockup */
.brand { display: flex; flex-direction: column; gap: 0.3rem; line-height: 1; }
.brand-word {
  font-family: 'Outfit', sans-serif; font-weight: 900; text-transform: uppercase;
  font-size: 1.05rem; letter-spacing: 0.02em; color: var(--white); white-space: nowrap;
}
.brand-word .accent { color: var(--accent); }
.brand-by {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-family: 'Outfit', sans-serif; font-size: 0.58rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255, 255, 255, 0.5);
}
.brand-by img { height: 22px; width: auto; opacity: 0.9; }

.nav-links { display: flex; align-items: stretch; align-self: stretch; gap: 2.2rem; }
.nav-links > li { display: flex; align-items: center; }
.nav-link {
  font-family: 'Outfit', sans-serif; font-size: 0.8rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.06em; color: var(--light-mid);
  position: relative; transition: color 0.3s ease; padding: 0.4rem 0;
}
.nav-link::after {
  content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 2px;
  background: var(--accent); transition: width 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}
.nav-link:hover, .nav-link.active { color: var(--white); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.nav-right { display: flex; align-items: center; gap: 1.1rem; }
.nav-phone {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: 'Outfit', sans-serif; font-size: 0.86rem; font-weight: 700;
  letter-spacing: 0.03em; color: var(--white); transition: color 0.3s ease;
}
.nav-phone svg { width: 15px; height: 15px; color: var(--accent); }
.nav-phone:hover { color: var(--accent); }

/* mega menu (repairs) */
.nav-item { position: static; }
.mega-menu {
  position: absolute; top: 100%; left: 0; right: 0;
  background: rgba(15, 15, 15, 0.97);
  backdrop-filter: blur(30px); -webkit-backdrop-filter: blur(30px);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 2.4rem 0;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity 0.3s cubic-bezier(0.23, 1, 0.32, 1), transform 0.3s cubic-bezier(0.23, 1, 0.32, 1), visibility 0.3s;
  pointer-events: none;
}
.nav-item:hover > .mega-menu, .nav-item:focus-within > .mega-menu {
  opacity: 1; visibility: visible; transform: translateY(0); pointer-events: all;
}
.nav-item:hover > .nav-link { color: var(--accent); }
.nav-item:hover > .nav-link::after { width: 100%; }
.mega-menu::before { content: ''; position: absolute; bottom: 100%; left: 0; right: 0; height: 1.5rem; }
.mega-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 var(--pad);
  display: grid; grid-template-columns: 300px 1px 1fr; gap: 2.5rem;
}
.mega-feature { display: block; }
.mega-feature-img {
  aspect-ratio: 16 / 10; border-radius: 3px; overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06); margin-bottom: 0.8rem;
  transition: border-color 0.3s ease;
}
.mega-feature:hover .mega-feature-img { border-color: rgba(255, 93, 0, 0.4); }
.mega-feature-label { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 0.9rem; color: var(--white); }
.mega-feature-sub { font-size: 0.8rem; color: var(--light-mid); margin-top: 0.25rem; line-height: 1.5; }
.mega-divider { background: rgba(255, 255, 255, 0.06); }
.mega-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0 2.5rem; align-content: start; }
.mega-link {
  display: flex; align-items: baseline; gap: 0.7rem;
  font-family: 'Outfit', sans-serif; font-size: 0.9rem; font-weight: 600;
  color: var(--white); padding: 0.5rem 0; transition: color 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.mega-link span { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.14em; color: var(--accent); min-width: 1.4rem; }
.mega-link:hover { color: var(--accent); }
.mega-link.more { color: var(--light-mid); font-weight: 500; border-bottom: 0; margin-top: 0.4rem; }

/* hamburger + mobile overlay */
.nav-hamburger { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 26px; height: 24px; padding: 0; }
.nav-hamburger span { display: block; width: 26px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s ease; }
.mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(30px); -webkit-backdrop-filter: blur(30px);
  flex-direction: column; padding: 6rem 1.75rem 2rem; gap: 0;
  opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
  overflow-y: auto;
}
.mobile-nav.open { opacity: 1; pointer-events: all; }
.mobile-nav-group {
  font-family: 'Outfit', sans-serif; font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent);
  margin: 1.4rem 0 0.4rem;
}
.mobile-nav a {
  font-family: 'Outfit', sans-serif; font-size: 1.15rem; font-weight: 600;
  color: var(--light); padding: 0.55rem 0; border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.mobile-nav a.big { font-size: 1.5rem; text-transform: uppercase; letter-spacing: 0.04em; }
.mobile-nav a:hover { color: var(--accent); }
.mobile-nav .mobile-call {
  margin-top: 1.6rem; border: 0; display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--accent); color: var(--black); padding: 1rem 1.4rem; border-radius: 4px;
  text-transform: uppercase; font-size: 0.95rem; letter-spacing: 0.04em; justify-content: center;
}

@media (max-width: 900px) {
  :root { --pad: 1.5rem; }
  .nav { padding: 1rem var(--pad); }
  .nav.scrolled { padding: 0.7rem var(--pad); }
  .nav-links, .nav-right, .mega-menu { display: none !important; }
  .nav-hamburger { display: flex; }
  .mobile-nav { display: flex; }
}

/* =============================================================================
   HERO (home) — full-bleed loop, one headline, small CTA
   ============================================================================= */
.hero {
  position: relative; min-height: 100vh; min-height: 100svh;
  display: flex; align-items: flex-end; overflow: hidden;
  padding: 160px var(--pad) 12vh;
}
.hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  z-index: 0; pointer-events: none; opacity: 0.5; filter: saturate(0.85) contrast(1.05);
}
.hero-poster { position: absolute; inset: 0; z-index: 0; display: none; }
.hero-poster img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; opacity: 0.5; }
@media (prefers-reduced-motion: reduce), (max-width: 768px) {
  .hero-video { display: none; }
  .hero-poster { display: block; }
}
/* legibility scrim + the bottom dissolve into the page (no hard edge) */
.hero-scrim {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(90deg, rgba(10, 10, 10, 0.7) 0%, rgba(10, 10, 10, 0.3) 50%, rgba(10, 10, 10, 0.1) 100%),
    linear-gradient(180deg, rgba(10, 10, 10, 0.75) 0%, transparent 28%);
}
.hero::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -1px; height: 44vh; z-index: 2;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0) 0%, rgba(10, 10, 10, 0.35) 35%, rgba(10, 10, 10, 0.75) 65%, var(--black) 92%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 5; max-width: var(--wrap-wide); margin: 0 auto; width: 100%; }
.hero-kicker {
  display: inline-flex; align-items: center; gap: 0.8rem;
  font-family: 'Outfit', sans-serif; font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent);
}
.hero-kicker::before { content: ''; width: 34px; height: 1px; background: var(--accent); }
.hero-title {
  font-family: 'Outfit', sans-serif; font-weight: 900; text-transform: uppercase;
  font-size: clamp(2.6rem, 7.2vw, 6.4rem); line-height: 0.96; letter-spacing: -0.025em;
  margin-top: 1.2rem;
}
.hero-title .accent { display: block; }
.hero-sub { font-size: clamp(1rem, 1.5vw, 1.15rem); line-height: 1.7; color: var(--light); max-width: 600px; margin: 1.6rem 0 2.2rem; }
.hero-sub strong { color: var(--white); }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.hero-meta {
  margin-top: 2.2rem; display: flex; flex-wrap: wrap; gap: 0.5rem 2rem;
  font-family: 'Outfit', sans-serif; font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255, 255, 255, 0.45);
}
@media (max-width: 768px) {
  .hero { padding: 130px var(--pad) 5rem; min-height: 92svh; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}

/* =============================================================================
   EMERGENCY / CALL-FIRST STRIP
   ============================================================================= */
.emergency-strip { background: var(--black); }
.emergency-strip-inner {
  max-width: var(--wrap-wide); margin: 0 auto; padding: 0.6rem var(--pad) 1.4rem;
  display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap;
}
.emergency-dot {
  width: 10px; height: 10px; border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 12px rgba(255, 93, 0, 0.8); animation: emergencyPulse 1.8s ease-in-out infinite; flex-shrink: 0;
}
@keyframes emergencyPulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.55; transform: scale(0.8); } }
.emergency-strip p { color: var(--light-mid); font-size: 0.95rem; flex: 1; min-width: 240px; line-height: 1.5; }
.emergency-strip p strong { color: var(--white); font-family: 'Outfit', sans-serif; font-weight: 700; }
.emergency-strip-call {
  font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 0.9rem; letter-spacing: 0.04em;
  color: var(--accent); white-space: nowrap; border: 1px solid rgba(255, 93, 0, 0.4);
  padding: 0.55rem 1.2rem; border-radius: 4px; transition: background 0.25s ease, color 0.25s ease;
}
.emergency-strip-call:hover { background: var(--accent); color: var(--black); }
/* the pinned call bar does this job on phones */
@media (max-width: 900px) { .emergency-strip { display: none; } }
@media (prefers-reduced-motion: reduce) { .emergency-dot { animation: none; } }

/* =============================================================================
   SECTIONS (shared rhythm)
   ============================================================================= */
.band { padding: 6.5rem var(--pad); }
.band-tight { padding: 4rem var(--pad); }
.band-head { max-width: 760px; }
.band-head.center { margin: 0 auto; text-align: center; }
.band-head.center .lead { margin-left: auto; margin-right: auto; }

/* framed matrix — 1px gap over a wash, one outer border */
.matrix {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 6px; overflow: hidden; margin-top: 3rem;
}
.matrix.cols-2 { grid-template-columns: repeat(2, 1fr); }
.matrix.cols-4 { grid-template-columns: repeat(4, 1fr); }
.cell { background: var(--dark); padding: 2.2rem 2rem; transition: background 0.35s ease; }
.cell:hover { background: #141416; }
.cell-num { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 0.68rem; letter-spacing: 0.16em; color: var(--accent); display: block; margin-bottom: 0.9rem; }
.cell-name { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1.04rem; margin-bottom: 0.6rem; }
.cell-desc { font-size: 0.9rem; line-height: 1.68; color: var(--light-mid); }
.cell-desc a { color: var(--accent); }
@media (max-width: 980px) { .matrix, .matrix.cols-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .matrix, .matrix.cols-2, .matrix.cols-4 { grid-template-columns: 1fr; } }

/* =============================================================================
   SERVICE TILES (home grid + hub cross-links)
   ============================================================================= */
.tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 3rem; }
.tile {
  position: relative; display: block; aspect-ratio: 4 / 3; border-radius: 6px; overflow: hidden;
  background: var(--dark); isolation: isolate;
}
.tile picture, .tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.tile img { filter: brightness(0.7) saturate(0.9); transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s ease; }
.tile:hover img { transform: scale(1.04); filter: brightness(0.82) saturate(0.95); }
.tile::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0) 35%, rgba(10, 10, 10, 0.55) 70%, rgba(10, 10, 10, 0.92) 100%);
}
.tile-body { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 1.5rem 1.5rem 1.4rem; }
.tile-num { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 0.62rem; letter-spacing: 0.18em; color: var(--accent); display: block; margin-bottom: 0.5rem; }
.tile-name { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 1.25rem; text-transform: uppercase; letter-spacing: -0.01em; line-height: 1.1; }
.tile-desc { font-size: 0.86rem; line-height: 1.55; color: rgba(255, 255, 255, 0.7); margin-top: 0.5rem; max-width: 34ch; }
.tile-arrow {
  position: absolute; right: 1.2rem; top: 1.1rem; z-index: 2;
  width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, 0.25);
  display: grid; place-items: center; color: var(--white); transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
.tile:hover .tile-arrow { background: var(--accent); border-color: var(--accent); color: var(--black); }
.tile.is-wide { grid-column: span 2; aspect-ratio: auto; }
@media (max-width: 980px) { .tiles { grid-template-columns: repeat(2, 1fr); } .tile.is-wide { grid-column: span 2; aspect-ratio: 16 / 9; } }
@media (max-width: 620px) { .tiles { grid-template-columns: 1fr; } .tile.is-wide { grid-column: auto; aspect-ratio: 4 / 3; } }

/* =============================================================================
   PHOTO BAND — full-bleed photograph behind a single readable column.
   Shared vertical fade on the image AND the scrim so neither draws an edge.
   ============================================================================= */
.photo-band {
  position: relative; isolation: isolate; background: var(--black);
  --strip-fade: linear-gradient(to bottom,
    transparent 0%, rgba(0,0,0,.05) 7%, rgba(0,0,0,.13) 13%, rgba(0,0,0,.25) 19%, rgba(0,0,0,.40) 25%,
    rgba(0,0,0,.57) 30%, rgba(0,0,0,.74) 35%, rgba(0,0,0,.89) 39%, #000 44%, #000 56%, rgba(0,0,0,.89) 61%,
    rgba(0,0,0,.74) 65%, rgba(0,0,0,.57) 70%, rgba(0,0,0,.40) 75%, rgba(0,0,0,.25) 81%, rgba(0,0,0,.13) 87%,
    rgba(0,0,0,.05) 93%, transparent 100%);
}
.photo-band-media { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.photo-band-media img {
  width: 100%; height: 100%; object-fit: cover; opacity: 0.6;
  -webkit-mask-image: var(--strip-fade); mask-image: var(--strip-fade);
}
.photo-band::after {
  content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  -webkit-mask-image: var(--strip-fade); mask-image: var(--strip-fade);
  background: linear-gradient(to right, rgba(0,0,0,.86) 0%, rgba(0,0,0,.68) 38%, rgba(0,0,0,.25) 68%, rgba(0,0,0,.1) 100%);
}
.photo-band.flip::after { background: linear-gradient(to left, rgba(0,0,0,.86) 0%, rgba(0,0,0,.68) 38%, rgba(0,0,0,.25) 68%, rgba(0,0,0,.1) 100%); }
.photo-band-inner {
  position: relative; z-index: 2; max-width: var(--wrap); margin: 0 auto;
  padding: 14rem var(--pad); display: grid; grid-template-columns: minmax(0, 620px);
}
.photo-band.flip .photo-band-inner { justify-content: end; }
.photo-band .lead { color: var(--light); }
@media (max-width: 900px) {
  .photo-band-inner { padding: 6rem var(--pad); }
  .photo-band::after, .photo-band.flip::after { background: rgba(0, 0, 0, 0.72); }
}

/* =============================================================================
   DAMAGE CASCADE — "what happens if you wait" (per-page condensed version)
   ============================================================================= */
.cascade { position: relative; margin-top: 3rem; display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.cascade::before {
  content: ''; position: absolute; left: 0; right: 0; top: 7px; height: 2px;
  background: linear-gradient(90deg, rgba(255, 93, 0, 0) 0%, var(--accent) 4%, var(--accent) 96%, rgba(255, 93, 0, 0) 100%);
  opacity: 0.55;
}
.cascade-item { position: relative; padding-top: 2rem; }
.cascade-item::before {
  content: ''; position: absolute; left: 0; top: 0; width: 16px; height: 16px; border-radius: 50%;
  background: var(--black); border: 2px solid var(--accent); box-shadow: 0 0 0 4px var(--black);
}
.cascade-item:last-child::before { background: var(--accent); box-shadow: 0 0 0 4px var(--black), 0 0 18px rgba(255, 93, 0, 0.6); }
.cascade-when { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); display: block; margin-bottom: 0.6rem; }
.cascade-name { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 1.15rem; letter-spacing: -0.01em; margin-bottom: 0.5rem; }
.cascade-desc { font-size: 0.9rem; line-height: 1.66; color: var(--light-mid); }
.cascade-cost { margin-top: 0.8rem; font-family: 'Outfit', sans-serif; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255, 255, 255, 0.5); }
.cascade-cost b { color: var(--white); font-weight: 700; }
.cascade-foot { margin-top: 2.6rem; display: flex; flex-wrap: wrap; gap: 1.2rem; align-items: center; justify-content: space-between; }
.cascade-foot p { font-size: 0.95rem; line-height: 1.65; color: var(--light-mid); max-width: 60ch; }
@media (max-width: 980px) {
  .cascade { grid-template-columns: 1fr; gap: 0; padding-left: 1.6rem; }
  .cascade::before { left: 7px; right: auto; top: 0; bottom: 0; width: 2px; height: auto; background: linear-gradient(180deg, var(--accent) 0%, var(--accent) 92%, rgba(255, 93, 0, 0) 100%); }
  .cascade-item { padding: 0 0 2.2rem 1.4rem; }
  .cascade-item::before { left: -1.6rem; top: 2px; }
}

/* =============================================================================
   STEPS / NOTE / FAQ / CTA — shared service-page layout
   ============================================================================= */
.step-list {
  margin-top: 3rem; display: grid; gap: 1px;
  background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 6px; overflow: hidden;
}
.step { background: var(--dark); padding: 2.2rem 2rem; display: grid; grid-template-columns: 92px 1fr; gap: 1.5rem; align-items: baseline; }
.step-num { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 0.75rem; letter-spacing: 0.14em; color: var(--accent); }
.step-name { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1.05rem; margin-bottom: 0.55rem; }
.step-desc { font-size: 0.92rem; line-height: 1.68; color: var(--light-mid); max-width: 720px; }
@media (max-width: 900px) { .step { grid-template-columns: 1fr; gap: 0.5rem; } }

.note-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 3rem; }
.note-box { border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 6px; background: var(--dark); padding: 2.2rem; }
.note-box h3 { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1.05rem; margin-bottom: 0.8rem; }
.note-box p { font-size: 0.93rem; line-height: 1.7; color: var(--light-mid); }
.note-box p + p { margin-top: 0.8rem; }
.note-box a { color: var(--accent); }
.note-box ul { margin-top: 0.8rem; display: flex; flex-direction: column; gap: 0.45rem; }
.note-box li { position: relative; padding-left: 1.1rem; font-size: 0.9rem; line-height: 1.55; color: var(--light-mid); }
.note-box li::before { content: ''; position: absolute; left: 0; top: 0.55em; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); }
.note-box.is-accent { border-color: rgba(255, 93, 0, 0.35); }
@media (max-width: 900px) { .note-grid { grid-template-columns: 1fr; } }

.faq-list { margin-top: 2.5rem; border-top: 1px solid rgba(255, 255, 255, 0.08); }
.faq-item { border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
.faq-q {
  width: 100%; color: var(--white); font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 1rem;
  text-align: left; padding: 1.4rem 2.5rem 1.4rem 0; position: relative; line-height: 1.4;
}
.faq-q::after { content: '+'; position: absolute; right: 0.4rem; top: 50%; transform: translateY(-50%); color: var(--accent); font-size: 1.3rem; transition: transform 0.3s ease; }
.faq-q[aria-expanded="true"]::after { transform: translateY(-50%) rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-a-inner { padding: 0 2.5rem 1.5rem 0; font-size: 0.94rem; line-height: 1.72; color: var(--light-mid); }
.faq-a-inner a { color: var(--accent); }
.faq-a-inner p + p { margin-top: 0.7rem; }

.cta { padding: 8rem var(--pad) 9rem; text-align: center; position: relative; }
.cta-title { font-family: 'Outfit', sans-serif; font-weight: 900; text-transform: uppercase; font-size: clamp(2rem, 4.6vw, 3.8rem); line-height: 1.02; letter-spacing: -0.025em; margin-bottom: 1.2rem; }
.cta-sub { font-size: 1rem; line-height: 1.7; color: var(--light-mid); max-width: 620px; margin: 0 auto 2.2rem; }
.cta .actions { justify-content: center; }
.cta-note { margin-top: 1.6rem; font-family: 'Outfit', sans-serif; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255, 255, 255, 0.38); }
@media (max-width: 768px) { .cta { padding: 5rem var(--pad) 6rem; } .cta .actions .btn { width: 100%; justify-content: center; } }

/* =============================================================================
   SERVICE HERO — photograph, dissolves at the foot
   ============================================================================= */
.svc-hero { position: relative; min-height: 78vh; display: flex; align-items: flex-end; padding: 190px var(--pad) 6rem; overflow: hidden; }
.svc-hero-media { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.svc-hero-media img { width: 100%; height: 100%; object-fit: cover; opacity: 0.45; }
.svc-hero::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -1px; height: 42vh; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, rgba(10,10,10,0) 0%, rgba(10,10,10,.30) 30%, rgba(10,10,10,.64) 56%, rgba(10,10,10,.89) 78%, var(--black) 93%, var(--black) 100%);
}
.svc-hero-scrim {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(90deg, rgba(10,10,10,.85) 0%, rgba(10,10,10,.5) 45%, rgba(10,10,10,.12) 80%), linear-gradient(180deg, var(--black) 0%, transparent 24%);
}
.svc-hero-inner { position: relative; z-index: 2; max-width: var(--wrap-wide); margin: 0 auto; width: 100%; }
.svc-hero-title { text-transform: uppercase; font-family: 'Outfit', sans-serif; font-weight: 900; font-size: clamp(2.4rem, 6vw, 5.2rem); line-height: 0.98; letter-spacing: -0.025em; margin: 1rem 0 0; }
.svc-hero-title .accent { display: block; }
.svc-hero-sub { font-size: clamp(1rem, 1.5vw, 1.15rem); line-height: 1.7; color: var(--light); max-width: 640px; margin: 1.6rem 0 2.2rem; }
@media (max-width: 900px) {
  .svc-hero { padding: 140px var(--pad) 4rem; min-height: 60vh; }
  .svc-hero-scrim { background: linear-gradient(180deg, var(--black) 0%, rgba(10,10,10,.6) 30%, rgba(10,10,10,.78) 100%); }
  .svc-hero .actions .btn { width: 100%; justify-content: center; }
}

/* breadcrumb (also carries BreadcrumbList schema) */
.crumbs { display: flex; flex-wrap: wrap; gap: 0.5rem; font-family: 'Outfit', sans-serif; font-size: 0.66rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255, 255, 255, 0.45); margin-bottom: 1.2rem; }
.crumbs a:hover { color: var(--white); }
.crumbs li + li::before { content: '/'; margin-right: 0.5rem; opacity: 0.4; }

/* symptom list (two-column checklist) */
.symptoms { margin-top: 2.6rem; display: grid; grid-template-columns: 1fr 1fr; gap: 0 3rem; border-top: 1px solid rgba(255, 255, 255, 0.08); }
.symptom { display: flex; gap: 1rem; padding: 1.3rem 0; border-bottom: 1px solid rgba(255, 255, 255, 0.07); }
.symptom svg { flex: none; width: 18px; height: 18px; margin-top: 3px; color: var(--accent); }
.symptom h3 { font-family: 'Outfit', sans-serif; font-size: 0.98rem; font-weight: 700; margin-bottom: 0.3rem; }
.symptom p { font-size: 0.88rem; line-height: 1.62; color: var(--light-mid); }
@media (max-width: 800px) { .symptoms { grid-template-columns: 1fr; } }

/* =============================================================================
   LIGHT BAND — black on white, no orange in here
   ============================================================================= */
.light { background: var(--white); color: var(--black); padding: 7.5rem var(--pad); }
.light .section-tag { color: var(--black); }
.light .section-title { color: var(--black); }
.light .lead, .light .prose { color: #444; }
.light .lead strong, .light .prose strong { color: var(--black); }
.light-top { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr); gap: 3rem; align-items: end; margin-bottom: 3.4rem; }
.light-cols { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 3.5rem; border-top: 1px solid rgba(10, 10, 10, 0.14); }
.light-item { padding: 1.5rem 0; border-bottom: 1px solid rgba(10, 10, 10, 0.1); display: flex; gap: 1rem; }
.light-item svg { flex: none; margin-top: 3px; }
.light-item h3 { font-family: 'Outfit', sans-serif; font-size: 0.98rem; font-weight: 800; margin-bottom: 0.35rem; }
.light-item p { font-size: 0.9rem; line-height: 1.65; color: #555; }
.light-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2.5rem; border-top: 1px solid rgba(10, 10, 10, 0.14); padding-top: 2.5rem; }
.light-step-num { font-family: 'Outfit', sans-serif; font-weight: 900; font-size: 2.4rem; line-height: 1; color: transparent; -webkit-text-stroke: 1px rgba(10, 10, 10, 0.4); margin-bottom: 1rem; }
.light-step h3 { font-family: 'Outfit', sans-serif; font-size: 1rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.03em; margin-bottom: 0.5rem; }
.light-step p { font-size: 0.9rem; line-height: 1.65; color: #555; }
.light-foot { margin-top: 3.4rem; padding-top: 2.2rem; border-top: 1px solid rgba(10, 10, 10, 0.14); display: flex; flex-wrap: wrap; gap: 1.6rem; align-items: center; justify-content: space-between; }
.light-foot p { font-size: 0.95rem; line-height: 1.7; color: #444; max-width: 62ch; }
.light-btn {
  display: inline-flex; align-items: center; gap: 0.6rem; flex: none; background: var(--black); color: var(--white);
  font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 1rem 1.9rem; border-radius: 3px; transition: background 0.3s ease, transform 0.3s ease;
}
.light-btn:hover { background: #333; transform: translateY(-2px); }
.light-stats { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(10, 10, 10, 0.14); border-bottom: 1px solid rgba(10, 10, 10, 0.14); margin-top: 3rem; }
.light-stat { padding: 2rem 1.5rem 2rem 0; }
.light-stat + .light-stat { padding-left: 1.5rem; border-left: 1px solid rgba(10, 10, 10, 0.12); }
.light-stat b { display: block; font-family: 'Outfit', sans-serif; font-weight: 900; font-size: clamp(1.8rem, 3vw, 2.6rem); letter-spacing: -0.03em; line-height: 1; }
.light-stat span { display: block; margin-top: 0.5rem; font-family: 'Outfit', sans-serif; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: #666; }
@media (max-width: 980px) {
  .light { padding: 5rem var(--pad); }
  .light-top { grid-template-columns: 1fr; gap: 1.5rem; align-items: start; }
  .light-cols { grid-template-columns: 1fr; }
  .light-steps { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .light-stats { grid-template-columns: 1fr 1fr; }
  .light-stat:nth-child(3) { border-left: 0; padding-left: 0; }
}
@media (max-width: 560px) { .light-steps { grid-template-columns: 1fr; } }

/* =============================================================================
   PRESS + REVIEWS (home)
   ============================================================================= */
.press-rows { margin-top: 2.5rem; border-top: 1px solid rgba(255, 255, 255, 0.08); }
.press-row { display: grid; grid-template-columns: 180px 1fr auto; gap: 2rem; align-items: center; padding: 1.6rem 0; border-bottom: 1px solid rgba(255, 255, 255, 0.08); transition: color 0.3s ease; }
.press-row:hover .press-title { color: var(--accent); }
.press-outlet { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--white); }
.press-outlet small { display: block; font-weight: 500; letter-spacing: 0.1em; font-size: 0.62rem; color: var(--light-mid); margin-top: 0.3rem; }
.press-title { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1.1rem; transition: color 0.3s ease; }
.press-sub { font-size: 0.88rem; color: var(--light-mid); margin-top: 0.3rem; line-height: 1.55; max-width: 62ch; }
.press-link { font-family: 'Outfit', sans-serif; font-size: 0.66rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--light-mid); white-space: nowrap; }
@media (max-width: 760px) { .press-row { grid-template-columns: 1fr; gap: 0.6rem; } }

.reviews { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.06); border-radius: 6px; overflow: hidden; margin-top: 3rem; }
.review { background: var(--dark); padding: 2.2rem 2rem; display: flex; flex-direction: column; gap: 1.2rem; }
.review-stars { display: flex; gap: 3px; color: var(--accent); }
.review-stars svg { width: 14px; height: 14px; }
.review blockquote { font-size: 0.98rem; line-height: 1.7; color: var(--light); flex: 1; }
.review figcaption { font-family: 'Outfit', sans-serif; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--light-mid); }
.review figcaption b { color: var(--white); font-weight: 700; }
@media (max-width: 760px) { .reviews { grid-template-columns: 1fr; } }

/* =============================================================================
   COST OF WAITING — scroll-driven neglect timeline
   ============================================================================= */
.cow { padding: 4rem var(--pad) 6rem; }
.cow-wrap { max-width: var(--wrap-wide); margin: 0 auto; display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr); gap: 4rem; align-items: start; }
.cow-stage { position: sticky; top: 100px; }
.cow-figure { position: relative; border: 1px solid rgba(255, 255, 255, 0.07); border-radius: 8px; overflow: hidden; background: radial-gradient(120% 90% at 50% 0%, #131315 0%, #0b0b0c 62%, #0a0a0a 100%); padding: 1.2rem; }
.cow-svg { display: block; width: 100%; height: auto; }
.cow-readout { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; padding: 0.9rem 0.4rem 0.2rem; }
.cow-readout-when { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 0.66rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); }
.cow-readout-name { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 1.05rem; letter-spacing: -0.01em; }
.cow-meter { height: 3px; background: rgba(255, 255, 255, 0.08); border-radius: 2px; margin-top: 0.8rem; overflow: hidden; }
.cow-meter b { display: block; height: 100%; width: 0; background: var(--accent); transition: width 0.7s cubic-bezier(0.16, 1, 0.3, 1); }
.cow-steps { display: flex; flex-direction: column; }
.cow-step { min-height: 78vh; display: flex; flex-direction: column; justify-content: center; padding: 3rem 0; border-bottom: 1px solid rgba(255, 255, 255, 0.06); opacity: 0.38; transition: opacity 0.5s ease; }
.cow-step.is-on { opacity: 1; }
.cow-step:last-child { border-bottom: 0; }
.cow-step-when { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); display: block; margin-bottom: 0.9rem; }
.cow-step h3 { font-family: 'Outfit', sans-serif; font-weight: 900; text-transform: uppercase; font-size: clamp(1.7rem, 3vw, 2.6rem); line-height: 1; letter-spacing: -0.025em; margin-bottom: 1.1rem; }
.cow-step p { font-size: 1rem; line-height: 1.72; color: var(--light-mid); max-width: 52ch; }
.cow-step p + p { margin-top: 0.9rem; }
.cow-step-fix { margin-top: 1.4rem; padding: 1.1rem 1.3rem; border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 6px; background: var(--dark); }
.cow-step-fix span { display: block; font-family: 'Outfit', sans-serif; font-size: 0.62rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--light-mid); margin-bottom: 0.4rem; }
.cow-step-fix b { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 0.98rem; color: var(--white); }
.cow-step-fix p { font-size: 0.88rem; margin-top: 0.3rem; }

/* the drawing: structure quiet, damage loud, driven by data-stage on .cow-figure */
.cow-struct { fill: #141416; stroke: rgba(255, 255, 255, 0.16); stroke-width: 1.4; }
.cow-hair { fill: none; stroke: rgba(255, 255, 255, 0.11); stroke-width: 1; }
.cow-note { font-family: 'Outfit', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 0.18em; fill: rgba(255, 255, 255, 0.3); }
.cow-ins { fill: #1c1a17; stroke: rgba(255, 255, 255, 0.08); }
.cow-drywall { fill: #1a1a1c; stroke: rgba(255, 255, 255, 0.14); }
.cow-rafter { fill: #1d1b18; stroke: rgba(255, 255, 255, 0.14); }
.cow-deck { fill: #1a1917; stroke: rgba(255, 255, 255, 0.14); }
.cow-shingle { fill: #17171a; stroke: rgba(255, 255, 255, 0.16); }
.cow-boot { fill: #141416; stroke: rgba(255, 255, 255, 0.2); stroke-width: 1.4; }
.cow-water { fill: none; stroke: var(--accent); stroke-width: 3.5; stroke-linecap: round; stroke-linejoin: round; filter: drop-shadow(0 0 6px rgba(255, 93, 0, 0.45)); stroke-dasharray: 1000; stroke-dashoffset: 1000; transition: stroke-dashoffset 1.6s cubic-bezier(0.55, 0, 0.35, 1); }
.cow-wet { opacity: 0; transition: opacity 0.9s ease; fill: rgba(255, 93, 0, 0.22); }
.cow-stain { opacity: 0; transition: opacity 0.9s ease; }
.cow-rot { opacity: 0; transition: opacity 0.9s ease; fill: rgba(255, 93, 0, 0.42); }
.cow-mold { opacity: 0; transition: opacity 0.9s ease; fill: rgba(255, 93, 0, 0.55); }
.cow-sag { transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1); transform-box: fill-box; transform-origin: center top; }
.cow-crack { opacity: 0; transition: opacity 0.9s ease; stroke: var(--accent); stroke-width: 2.2; fill: none; stroke-linecap: round; }
.cow-drip { opacity: 0; transition: opacity 0.6s ease; fill: var(--accent); }
.cow-pip { opacity: 0; transition: opacity 0.4s ease; }

.cow-figure[data-stage="1"] .cow-water, .cow-figure[data-stage="2"] .cow-water, .cow-figure[data-stage="3"] .cow-water, .cow-figure[data-stage="4"] .cow-water, .cow-figure[data-stage="5"] .cow-water { stroke-dashoffset: 0; }
.cow-figure[data-stage="1"] .cow-drip, .cow-figure[data-stage="2"] .cow-drip, .cow-figure[data-stage="3"] .cow-drip, .cow-figure[data-stage="4"] .cow-drip, .cow-figure[data-stage="5"] .cow-drip { opacity: 1; }
.cow-figure[data-stage="1"] .cow-pip-1 { opacity: 1; }
.cow-figure[data-stage="2"] .cow-wet, .cow-figure[data-stage="3"] .cow-wet, .cow-figure[data-stage="4"] .cow-wet, .cow-figure[data-stage="5"] .cow-wet { opacity: 1; }
.cow-figure[data-stage="2"] .cow-stain, .cow-figure[data-stage="3"] .cow-stain, .cow-figure[data-stage="4"] .cow-stain, .cow-figure[data-stage="5"] .cow-stain { opacity: 1; }
.cow-figure[data-stage="2"] .cow-pip-2 { opacity: 1; }
.cow-figure[data-stage="3"] .cow-mold, .cow-figure[data-stage="4"] .cow-mold, .cow-figure[data-stage="5"] .cow-mold { opacity: 1; }
.cow-figure[data-stage="3"] .cow-sag, .cow-figure[data-stage="4"] .cow-sag, .cow-figure[data-stage="5"] .cow-sag { transform: translateY(14px) scaleY(0.82); }
.cow-figure[data-stage="3"] .cow-pip-3 { opacity: 1; }
.cow-figure[data-stage="4"] .cow-rot, .cow-figure[data-stage="5"] .cow-rot { opacity: 1; }
.cow-figure[data-stage="4"] .cow-crack, .cow-figure[data-stage="5"] .cow-crack { opacity: 1; }
.cow-figure[data-stage="4"] .cow-pip-4 { opacity: 1; }
.cow-figure[data-stage="5"] .cow-pip-5 { opacity: 1; }
.cow-figure[data-stage="5"] .cow-shingle { fill: #2a1a12; }

@media (max-width: 980px) {
  .cow { padding: 2rem var(--pad) 4rem; }
  .cow-wrap { grid-template-columns: 1fr; gap: 1.5rem; }
  .cow-stage { top: 64px; z-index: 5; background: var(--black); padding-bottom: 0.5rem; }
  .cow-figure { padding: 0.6rem; }
  .cow-step { min-height: 0; padding: 2.4rem 0; opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .cow-water, .cow-wet, .cow-stain, .cow-rot, .cow-mold, .cow-sag, .cow-crack, .cow-drip, .cow-pip { transition: none; }
}

/* home teaser for the timeline */
.cow-teaser { margin-top: 3rem; display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.06); border-radius: 6px; overflow: hidden; }
.cow-teaser-item { background: var(--dark); padding: 1.8rem 1.5rem; position: relative; }
.cow-teaser-item::before { content: ''; position: absolute; left: 0; right: 0; top: 0; height: 3px; background: var(--accent); opacity: calc(0.2 + var(--i, 0) * 0.2); }
.cow-teaser-when { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); display: block; margin-bottom: 0.6rem; }
.cow-teaser-item h3 { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 1.05rem; line-height: 1.15; margin-bottom: 0.5rem; }
.cow-teaser-item p { font-size: 0.86rem; line-height: 1.6; color: var(--light-mid); }
@media (max-width: 980px) { .cow-teaser { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .cow-teaser { grid-template-columns: 1fr; } }

/* =============================================================================
   REPAIR VS REPLACE — the two columns
   ============================================================================= */
.rvr { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.06); border-radius: 6px; overflow: hidden; margin-top: 3rem; }
.rvr-col { background: var(--dark); padding: 2.6rem 2.4rem; }
.rvr-col h3 { font-family: 'Outfit', sans-serif; font-weight: 900; text-transform: uppercase; font-size: 1.6rem; letter-spacing: -0.02em; margin-bottom: 0.4rem; }
.rvr-col .sub { font-size: 0.92rem; color: var(--light-mid); margin-bottom: 1.6rem; line-height: 1.6; }
.rvr-col ul { display: flex; flex-direction: column; gap: 0.8rem; }
.rvr-col li { position: relative; padding-left: 1.5rem; font-size: 0.94rem; line-height: 1.6; color: var(--light); }
.rvr-col li::before { content: ''; position: absolute; left: 0; top: 0.6em; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
.rvr-col.is-replace li::before { background: transparent; border: 2px solid var(--accent); width: 6px; height: 6px; }
@media (max-width: 800px) { .rvr { grid-template-columns: 1fr; } }

/* =============================================================================
   CONTACT
   ============================================================================= */
.contact-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); gap: 4rem; margin-top: 3rem; align-items: start; }
.contact-card { border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 6px; background: var(--dark); padding: 2.4rem; }
.contact-card h3 { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); margin-bottom: 1rem; }
.contact-card + .contact-card { margin-top: 1.5rem; }
.contact-big { font-family: 'Outfit', sans-serif; font-weight: 900; font-size: clamp(1.8rem, 3.6vw, 2.8rem); letter-spacing: -0.02em; line-height: 1; color: var(--white); }
.contact-big:hover { color: var(--accent); }
.contact-card p, .contact-card address { font-style: normal; font-size: 0.95rem; line-height: 1.7; color: var(--light-mid); margin-top: 0.7rem; }
.contact-card address strong { color: var(--white); }
.contact-card a:not(.contact-big):not(.btn) { color: var(--white); }
.contact-card a:not(.contact-big):not(.btn):hover { color: var(--accent); }
.area-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem 1.5rem; margin-top: 1rem; }
.area-list li { font-size: 0.92rem; color: var(--light); padding-left: 1rem; position: relative; }
.area-list li::before { content: ''; position: absolute; left: 0; top: 0.6em; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); }
.area-list li small { display: block; color: var(--light-mid); font-size: 0.78rem; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 2rem; } }

/* =============================================================================
   FOOTER — co-branded
   ============================================================================= */
.footer { background: var(--black); color: var(--light-mid); padding: 5rem var(--pad) 2rem; font-size: 0.92rem; line-height: 1.7; }
.footer-grid { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255, 255, 255, 0.06); }
.footer-brand .brand-word { font-size: 1.25rem; }
.footer-tagline { color: var(--light-mid); font-size: 0.92rem; line-height: 1.7; max-width: 340px; margin-top: 1.2rem; }
.footer-by { margin-top: 1.6rem; display: flex; align-items: center; gap: 0.9rem; }
.footer-by img { height: 34px; width: auto; opacity: 0.9; }
.footer-by span { font-family: 'Outfit', sans-serif; font-size: 0.64rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255, 255, 255, 0.5); line-height: 1.5; }
.footer-by a { color: var(--white); }
.footer-by a:hover { color: var(--accent); }
.footer-col h4 { font-family: 'Outfit', sans-serif; font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--white); margin-bottom: 1.1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col a, .footer-contact a { color: var(--light-mid); transition: color 0.2s ease; }
.footer-col a:hover, .footer-contact a:hover { color: var(--accent); }
.footer-contact { display: flex; flex-direction: column; gap: 0.35rem; font-style: normal; }
.footer-contact strong { color: var(--white); font-weight: 700; font-family: 'Outfit', sans-serif; font-size: 1.05rem; }
.footer-bottom { max-width: 1280px; margin: 0 auto; padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; font-size: 0.82rem; }
.footer-badges { display: flex; gap: 0.8rem; align-items: center; flex-wrap: wrap; }
.footer-badge { font-family: 'Outfit', sans-serif; font-size: 0.66rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255, 255, 255, 0.45); padding: 0.35rem 0.7rem; border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 3px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.25rem; } .footer-brand { grid-column: 1 / -1; } }
@media (max-width: 540px) { .footer { padding: 3.5rem var(--pad) 1.5rem; } .footer-grid { grid-template-columns: 1fr; gap: 2rem; } .footer-bottom { flex-direction: column; align-items: flex-start; } }

/* =============================================================================
   404
   ============================================================================= */
.nf { min-height: 80vh; display: flex; align-items: center; padding: 160px var(--pad) 6rem; }
.nf-num { font-family: 'Outfit', sans-serif; font-weight: 900; font-size: clamp(5rem, 16vw, 12rem); line-height: 0.9; letter-spacing: -0.05em; color: transparent; -webkit-text-stroke: 1px rgba(255, 255, 255, 0.25); }

/* ----- late fixes ----- */
.crumbs { list-style: none; padding: 0; }
.svc-hero-media picture, .photo-band-media picture, .hero-poster picture, .tile picture, .mega-feature-img picture { display: block; width: 100%; height: 100%; }
