/* ============================================================
   ALLSTATE WINDOW TINT & BLINDS — MAIN STYLESHEET
   Version 1.0 | Mobile-first | Target: Android 360–412px
   ============================================================ */


/* ============================================================
   1. CSS RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { overflow-x: hidden; }
html { height: -webkit-fill-available; }
body {
  overflow-x: hidden; /* Belt-and-suspenders with html — prevents nav overlay translateX bleed */
  min-height: 100vh;
  min-height: 100dvh;
  font-family: 'Inter', sans-serif;
  font-size: var(--text-base);
  line-height: 1.7;
  color: #111111;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
input, button, textarea, select { font: inherit; }
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
  word-break: break-word;
}
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}
[id] { scroll-margin-top: calc(var(--nav-h-mobile) + var(--bar-height) + 16px); }


/* ============================================================
   2. CUSTOM PROPERTIES — DESIGN TOKENS
   ============================================================ */
:root {
  /* Dynamic layout offset — set by JS on DOMContentLoaded + resize */
  --bar-height: 36px; /* safe default until JS runs */

  /* Colors */
  --red:       #CC0000;
  --black:     #111111;
  --dark-alt:  #1a1a1a;
  --dark-sec:  #222222;
  --light-bg:  #F5F5F5;
  --white:     #FFFFFF;
  --footer-bg: #0a0a0a;

  /* Fluid Type Scale */
  --text-xs:   clamp(0.75rem,  0.7rem  + 0.25vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 0.8rem  + 0.375vw, 1rem);
  --text-base: clamp(1rem,     0.95rem + 0.25vw,  1.125rem);
  --text-lg:   clamp(1.125rem, 1rem    + 0.625vw, 1.375rem);
  --text-xl:   clamp(1.25rem,  1.1rem  + 0.75vw,  1.5rem);
  --text-2xl:  clamp(1.5rem,   1.2rem  + 1.5vw,   2rem);
  --text-3xl:  clamp(1.875rem, 1.4rem  + 2.375vw, 2.5rem);
  --text-4xl:  clamp(2rem,     1.5rem  + 2.5vw,   3rem);
  /* Barlow Condensed 800 char-width factor ≈ 0.48 (very condensed uppercase).
     "STOP LETTING THE" (16 chars): 16 × 0.48 × 40px = 307px — slight overflow handled by word-wrap ✓ */
  --text-hero: clamp(2.5rem, 2rem + 2.5vw, 4.5rem);

  /* Z-Index Hierarchy */
  --z-base:      1;
  --z-sticky:    100;
  --z-dropdown:  200;
  --z-overlay:   300;
  --z-modal:     400;
  --z-toast:     500;

  /* Spacing */
  --section-pad-y:   1.75rem; /* mobile: 28px top+bottom between sections */
  --section-pad-x:   1rem;
  --nav-h-desktop:   64px;
  --nav-h-mobile:    50px;
  --container-max:   1200px;
}


/* ============================================================
   3. GLOBAL BASE STYLES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--section-pad-x);
}

section {
  padding-block: var(--section-pad-y);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.1;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol { list-style: none; }


/* ============================================================
   4. ACCESSIBILITY
   ============================================================ */

/* Skip Navigation Link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--red);
  color: #ffffff;
  padding: 0.75rem 1.25rem;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  z-index: 9999;
  border-radius: 0 0 4px 4px;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* Focus Rings */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}

/* Visually hidden (screen-reader only) */
.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;
}


/* ============================================================
   5. UTILITY CLASSES
   ============================================================ */
.eyebrow {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.6875rem; /* 11px */
  color: var(--red);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.section-subhead {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 0.6875rem; /* 11px */
  color: #888888;
  margin-top: 0.375rem;
}

/* Note: #888888 is used only for decorative subheadings, not body copy */

.text-red   { color: var(--red); }
.text-white { color: #ffffff; }
.text-black { color: var(--black); }

.bg-black   { background-color: var(--black); }
.bg-dark    { background-color: var(--dark-alt); }
.bg-white   { background-color: #ffffff; }
.bg-light   { background-color: var(--light-bg); }
.bg-red     { background-color: var(--red); }


/* ============================================================
   6. BUTTONS
   ============================================================ */

/* Base button reset */
button, .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
  border: none;
  border-radius: 3px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: var(--text-sm);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.875rem 1.75rem;
  min-height: 44px;
  min-width: 44px;
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.15s ease;
}

button:active, .btn:active {
  transform: scale(0.98);
}

/* Primary CTA — red shimmer */
.btn-primary {
  position: relative;
  overflow: hidden;
  background-color: #CC0000;
  color: #ffffff;
  border: 2px solid #CC0000;
}
.btn-primary:hover {
  background-color: #aa0000;
  border-color: #aa0000;
}
.btn-primary::after {
  content: '';
  position: absolute;
  top: -50%; left: 0;
  width: 50%; height: 200%;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.28), transparent);
  transform: translateX(-160%) skewX(-20deg);
  animation: btn-sheen 4s ease-in-out 2s infinite;
  will-change: transform;
}
@media (prefers-reduced-motion: reduce) {
  .btn-primary::after { animation: none; }
}

/* Secondary / outline */
.btn-outline {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background-color: rgba(255,255,255,0.08);
  border-color: #ffffff;
}

/* Dark button (used on red background) */
.btn-dark {
  background-color: #111111;
  color: #ffffff;
  border: 2px solid #111111;
}
.btn-dark:hover {
  background-color: #222222;
  border-color: #222222;
}

/* Full-width on mobile */
.btn-full-mobile {
  width: 100%;
}
@media (min-width: 768px) {
  .btn-full-mobile {
    width: auto;
  }
}


/* ============================================================
   7. ANIMATIONS & KEYFRAMES
   ============================================================ */

/* Button shimmer sweep — uses translateX (GPU composited, not left) */
@keyframes btn-sheen {
  0%   { transform: translateX(-160%) skewX(-20deg); opacity: 0; }
  8%   { opacity: 1; }
  45%  { transform: translateX(260%) skewX(-20deg); opacity: 1; }
  46%  { opacity: 0; }
  100% { transform: translateX(260%) skewX(-20deg); opacity: 0; }
}

/* Red accent line draw */
@keyframes line-draw {
  from { transform: scaleY(0); }
  to   { transform: scaleY(1); }
}

/* Pulsing dot (NEW badge) */
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.3; transform: scale(0.6); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children with CSS custom property */
.reveal[style*="--i"] {
  transition-delay: calc(var(--i, 0) * 100ms);
}

/* Section heading underline draw — width: fit-content keeps bar flush to text width. */
h2.animated-underline {
  width: fit-content;
  margin-bottom: 0;
}
/* Center the heading+bar only in explicitly centered-layout sections */
.services-section__header h2.animated-underline,
.section-header--center h2.animated-underline {
  margin-inline: auto;
}
h2.animated-underline::after {
  content: '';
  display: block;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s ease-out;
  margin-top: 0.5rem;
}
h2.animated-underline.is-visible::after {
  transform: scaleX(1);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  h2.animated-underline::after {
    transition: none;
    transform: scaleX(1);
  }
}


/* ============================================================
   8. ANNOUNCEMENT BAR
   ============================================================ */
.announcement-bar {
  /* FIX: position:fixed keeps bar at top on scroll so nav never floats */
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #CC0000;
  color: #ffffff;
  text-align: center;
  padding: 0.5rem 2.5rem 0.5rem 1rem;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: var(--text-xs);
  letter-spacing: 0.04em;
  z-index: calc(var(--z-sticky) + 1);
}
.announcement-bar a {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.announcement-bar a:hover {
  opacity: 0.85;
}
.announcement-bar__text--mobile {
  display: block;
}
.announcement-bar__text--desktop {
  display: none;
}
@media (min-width: 640px) {
  .announcement-bar__text--mobile  { display: none; }
  .announcement-bar__text--desktop { display: block; }
}

.announcement-bar__close {
  position: absolute;
  top: 50%;
  right: 0.5rem;
  transform: translateY(-50%);
  background-color: transparent;
  color: #ffffff;
  border: none;
  border-radius: 3px;
  width: 36px;
  height: 36px;
  min-width: 36px;
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  cursor: pointer;
  padding: 0;
  letter-spacing: 0;
  text-transform: none;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}
.announcement-bar__close:hover {
  background-color: rgba(0,0,0,0.2);
}
.announcement-bar.is-hidden {
  display: none;
}


/* ============================================================
   9. STICKY NAVIGATION
   ============================================================ */
.site-nav {
  position: fixed;
  top: var(--bar-height);
  left: 0;
  right: 0;
  height: var(--nav-h-mobile);
  background-color: #111111;
  border-bottom: 2px solid #CC0000;
  z-index: var(--z-sticky);
  display: flex;
  align-items: center;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  will-change: transform;
  transform: translateZ(0);
}
.site-nav.scrolled {
  background-color: #111111;
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

/* Nav top is driven purely by --bar-height CSS variable (set by JS on load/resize) */

.site-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Wordmark */
.nav-wordmark {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(0.8rem, 0.55rem + 1.25vw, 1.15rem);
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  text-decoration: none;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0.25em;
  line-height: 1;
}
.nav-wordmark .wordmark-script {
  font-family: 'Dancing Script', cursive;
  font-weight: 700;
  font-size: 1.3em;
  text-transform: none;
  letter-spacing: 0;
  line-height: 0.85;
}
.nav-wordmark .tint-red {
  color: #CC0000;
}

/* Desktop nav links (hidden on mobile) */
.nav-links {
  display: none;
  /* height:100% makes the ul fill the full nav height so align-items:center
     centers items against 64px nav, not against the ul's content height */
  height: 100%;
  align-items: center;
  gap: 0.125rem;
  list-style: none;
}
/* Each li must also be a flex container to properly center its child */
.nav-links > li {
  display: flex;
  align-items: center;
  height: 100%;
}
.nav-links a {
  display: inline-block;
  padding: 0.5rem 0.75rem;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: color 0.2s;
  border-radius: 3px;
  white-space: nowrap;
}
.nav-links a:hover {
  color: #ffffff;
}
.nav-links .btn-primary {
  padding: 0.625rem 1.25rem;
  font-size: 0.8125rem;
  white-space: nowrap;
}

/* Services dropdown */
.nav-dropdown {
  position: relative;
}
.nav-dropdown__toggle {
  background: none;
  border: none;
  padding: 0.5rem 0.75rem;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  white-space: nowrap;
  min-height: 44px;
  border-radius: 3px;
}
.nav-dropdown__toggle:hover {
  color: #ffffff;
  background-color: rgba(255,255,255,0.06);
}
.nav-dropdown__toggle svg {
  width: 12px;
  height: 12px;
  transition: transform 0.2s;
}
.nav-dropdown[data-open="true"] .nav-dropdown__toggle svg {
  transform: rotate(180deg);
}

.nav-dropdown__menu {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background-color: #1a1a1a;
  border: 1px solid rgba(204,0,0,0.3);
  border-radius: 4px;
  min-width: 220px;
  z-index: var(--z-dropdown);
  padding: 0.375rem 0;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.nav-dropdown[data-open="true"] .nav-dropdown__menu {
  display: block;
}
.nav-dropdown__menu a {
  display: block;
  padding: 0.625rem 1rem;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: background-color 0.15s, color 0.15s;
}
.nav-dropdown__menu a:hover {
  background-color: rgba(204,0,0,0.12);
  color: #ffffff;
}

/* Hamburger button (mobile only) */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 48px;
  height: 48px;
  background-color: transparent;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  padding: 12px 10px;
  gap: 0;
  min-width: 48px;
  min-height: 48px;
  letter-spacing: 0;
  text-transform: none;
}
.hamburger:hover {
  background-color: rgba(255,255,255,0.08);
}
.hamburger__line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Hamburger open state */
.hamburger[aria-expanded="true"] .hamburger__line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger[aria-expanded="true"] .hamburger__line:nth-child(2) {
  opacity: 0;
}
.hamburger[aria-expanded="true"] .hamburger__line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Show nav links on desktop */
@media (min-width: 1024px) {
  .site-nav {
    height: var(--nav-h-desktop);
  }
  .hamburger { display: none; }
  .nav-links  { display: flex; }
}


/* ============================================================
   10. MOBILE NAV OVERLAY
   ============================================================ */
body.nav-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background-color: #1a1a1a;
  z-index: var(--z-overlay);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100dvh;
}
@supports not (height: 100dvh) {
  .nav-overlay { height: -webkit-fill-available; }
}
.nav-overlay.is-open {
  transform: translateX(0);
}

.nav-overlay__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-overlay__phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: var(--text-lg);
  color: #ffffff;
  text-decoration: none;
  padding: 0.5rem 0;
  min-height: 44px;
}
.nav-overlay__phone:hover {
  color: #CC0000;
}

.nav-overlay__close {
  background-color: rgba(255,255,255,0.08);
  color: #ffffff;
  border: none;
  border-radius: 4px;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.375rem;
  cursor: pointer;
  padding: 0;
  letter-spacing: 0;
  text-transform: none;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}
.nav-overlay__close:hover {
  background-color: rgba(255,255,255,0.15);
}

.nav-overlay__links {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 0;
}
.nav-overlay__links a,
.nav-overlay__accordion-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem 1.5rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: var(--text-2xl);
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  text-decoration: none;
  border: none;
  background-color: transparent;
  cursor: pointer;
  min-height: 44px;
  border-radius: 0;
  letter-spacing: 0.02em;
}
.nav-overlay__links a:hover,
.nav-overlay__accordion-btn:hover {
  color: #CC0000;
  background-color: rgba(255,255,255,0.04);
}

/* Services accordion */
.nav-overlay__accordion-btn svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s;
  flex-shrink: 0;
}
.nav-overlay__accordion[data-open="true"] .nav-overlay__accordion-btn svg {
  transform: rotate(180deg);
}

.nav-overlay__subnav {
  display: none;
  background-color: rgba(0,0,0,0.3);
  border-left: 3px solid #CC0000;
  margin: 0 1.5rem 0.5rem;
  border-radius: 0 4px 4px 0;
}
.nav-overlay__accordion[data-open="true"] .nav-overlay__subnav {
  display: block;
}
.nav-overlay__subnav a {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.75rem 1.25rem;
  border: none;
}
.nav-overlay__subnav a:hover {
  color: #ffffff;
}

/* CTA at bottom of overlay */
.nav-overlay__footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.nav-overlay__footer .btn-primary {
  /* FIX: override inline-flex base so button actually fills container width */
  display: flex;
  width: 100%;
  font-size: var(--text-base);
  padding: 1rem;
  justify-content: center;
}


/* ============================================================
   11. HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  background-color: #111111;
  /* Mobile: NO min-height — padding + content determines height.
     Prevents background image from bleeding below real content. */
  display: flex;
  align-items: center;
  padding-top: calc(var(--nav-h-mobile) + var(--bar-height) + 20px);
  padding-bottom: 3rem;
  overflow: hidden;
}
@media (min-width: 768px) {
  .hero {
    min-height: 75dvh;
    padding-top: calc(var(--nav-h-mobile) + var(--bar-height) + 40px);
    padding-bottom: 4rem;
  }
}
@media (min-width: 1024px) {
  .hero {
    min-height: 85dvh;
    padding-top: calc(var(--nav-h-desktop) + var(--bar-height) + 60px);
    padding-bottom: 5rem;
  }
}
@supports not (min-height: 75dvh) {
  @media (min-width: 768px) {
    .hero { min-height: calc(75 * var(--real-vh, 1vh)); }
  }
}

/* Diagonal cut — desktop only */
@media (min-width: 768px) {
  .hero {
    clip-path: polygon(0 0, 100% 0, 100% 96%, 0 100%);
    margin-bottom: -40px;
  }
}

/* Background image (placeholder — swap with real photo) */
.hero__bg {
  position: absolute;
  inset: 0;
  background-color: #111111;
  /* background-image: url('../images/hero-home.jpg'); */
  background-size: cover;
  background-position: center center;
  z-index: 0;
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(17,17,17,0.92) 0%, rgba(17,17,17,0.65) 60%, rgba(17,17,17,0.45) 100%);
}

/* Homepage hero — same premium glass effect as inner-hero */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 110% at 15% 60%, rgba(255,255,255,0.10) 0%, transparent 62%),
    radial-gradient(ellipse 55% 65% at 88% 5%, rgba(190,215,245,0.09) 0%, transparent 58%),
    radial-gradient(ellipse 18% 90% at 97% 45%, rgba(255,255,255,0.08) 0%, transparent 65%),
    radial-gradient(ellipse 35% 45% at 82% 92%, rgba(255,255,255,0.05) 0%, transparent 60%),
    linear-gradient(
      108deg,
      transparent 55%,
      rgba(255,255,255,0.000) 59%,
      rgba(255,255,255,0.018) 61%,
      rgba(255,255,255,0.038) 63%,
      rgba(255,255,255,0.018) 65%,
      rgba(255,255,255,0.000) 68%,
      transparent 72%
    ),
    linear-gradient(to left, rgba(255,255,255,0.07) 0%, rgba(255,255,255,0.02) 0.5%, transparent 2%);
  z-index: 0;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.88' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)' opacity='0.055'/%3E%3C/svg%3E"),
    repeating-linear-gradient(
      to right,
      transparent 0px,
      transparent 149px,
      rgba(255,255,255,0.048) 149px,
      rgba(255,255,255,0.048) 150px
    ),
    linear-gradient(
      to right,
      transparent 45%,
      rgba(255,255,255,0.03) 50%,
      rgba(255,255,255,0.045) 52%,
      rgba(255,255,255,0.03) 54%,
      transparent 60%
    );
  background-size: 256px 256px, auto, auto;
  background-position: 0 0, 0 0, 0 62%;
  background-repeat: repeat, repeat, no-repeat;
  z-index: 0;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: var(--z-base);
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

/* Red vertical accent line */
.hero__accent-line {
  flex-shrink: 0;
  width: 4px;
  align-self: stretch;
  min-height: 120px;
  background-color: #CC0000;
  border-radius: 2px;
  transform-origin: top center;
  animation: line-draw 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}
@media (prefers-reduced-motion: reduce) {
  .hero__accent-line { animation: none; }
}

.hero__text {
  flex: 1;
  /* FIX: overrides flex default min-width:auto which caused text to push
     the container wider than the viewport on mobile (horizontal overflow) */
  min-width: 0;
}

.hero__tagline-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-radius: 3px;
  padding: 5px 11px;
  margin-bottom: 0.9rem;
  border: 1px solid rgba(204,0,0,0.25);
  background: rgba(204,0,0,0.06);
  color: #CC0000;
}
.hero__tagline-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #CC0000;
  flex-shrink: 0;
}

.hero__services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.4rem;
  margin-top: 1.25rem;
}
@media (min-width: 768px) {
  .hero__services {
    display: flex;
    flex-wrap: nowrap;
  }
}
.hero__service-chip {
  font-family: 'Inter', sans-serif;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  color: rgba(255,255,255,0.80);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 3px;
  padding: 0.3rem 0.7rem;
  white-space: nowrap;
}

.hero__eyebrow {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.6875rem;
  color: #FF2200;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.875rem;
}

.hero__heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: var(--text-hero);
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.0;
  margin-bottom: 1.25rem;
}
/* Font math verification (mobile 325px effective):
   "STOP LETTING THE" = 16 chars × 0.72 × 28px = 322.6px ≤ 325px ✓
   "SOUTH FLORIDA"    = 13 chars × 0.72 × 28px = 261.1px ✓
   "SUN WIN."         = 8 chars  × 0.72 × 28px = 161.3px ✓  */

.hero__subhead {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: var(--text-base);
  color: rgba(255,255,255,0.80);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 560px;
}
/* Desktop: widen subhead so <br class="desktop-only"> segments (63–67 chars each)
   actually fit on a single line. 900px / (0.72 × 18px) ≈ 69.4 chars/line ≥ 67 ✓ */
@media (min-width: 1024px) {
  .hero__subhead {
    max-width: 900px;
  }
}

.hero__ctas {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  width: 100%;
}
@media (min-width: 768px) {
  .hero__ctas {
    flex-direction: row;
    width: auto;
  }
  .hero__ctas .btn {
    min-width: 200px;
  }
}
.hero-contact-btn {
  white-space: nowrap;
  font-size: var(--text-xs);
}
@media (min-width: 768px) {
  .hero-contact-btn {
    font-size: var(--text-sm);
  }
}


/* ============================================================
   11b. SERVICE THUMBNAIL MARQUEE
   Auto-scrolling strip of service photos below the hero.
   Uses CSS-only infinite scroll — no JS required.
   ============================================================ */
.service-marquee {
  background-color: #111111;
  overflow: hidden;
  padding-top: 1.25rem;
  padding-bottom: 2rem;
  position: relative;
}

/* Fade left and right edges into black */
.service-marquee::before,
.service-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}
.service-marquee::before {
  left: 0;
  background: linear-gradient(to right, #111111 0%, transparent 100%);
}
.service-marquee::after {
  right: 0;
  background: linear-gradient(to left, #111111 0%, transparent 100%);
}

.service-marquee__track {
  display: flex;
  gap: 10px;
  width: max-content;
  animation: marquee-scroll 28s linear infinite;
  will-change: transform;
}
.service-marquee__track:hover {
  animation-play-state: paused;
}

.service-marquee__track img {
  height: 120px;
  width: auto;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
}

@media (min-width: 768px) {
  .service-marquee__track img {
    height: 155px;
  }
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .service-marquee__track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: auto;
    padding-inline: 1rem;
  }
  .service-marquee__track img:nth-child(n+9) {
    display: none;
  }
}


/* ============================================================
   12. TRUST BAR
   ============================================================ */
.trust-bar {
  background-color: #1a1a1a;
  border-top: 1px solid rgba(204, 0, 0, 0.4);
  padding-block: 1.25rem;
  position: relative;
  z-index: var(--z-base);
}

.trust-bar__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.875rem 1rem;
  align-items: center;
  justify-items: center;
}

.trust-bar__item {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.80);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}

/* Red dot before each item on mobile */
.trust-bar__item::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #CC0000;
  flex-shrink: 0;
}

/* Red dot separators (desktop only) */
.trust-bar__dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #CC0000;
  flex-shrink: 0;
  display: none;
}

@media (min-width: 768px) {
  /* FIX: 7 items (4 labels + 3 dots) need flex, not a 4-col grid that wraps */
  .trust-bar__grid {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 0;
  }
  .trust-bar__dot {
    display: block;
    margin-inline: 0.875rem;
    flex-shrink: 0;
  }
  /* Hide ::before dots on desktop — the .trust-bar__dot divs handle separation */
  .trust-bar__item::before {
    display: none;
  }
}


/* ============================================================
   13. SERVICES GRID
   ============================================================ */
.services-section {
  background-color: #ffffff;
}

.services-section__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.services-section__heading {
  font-size: var(--text-3xl);
  color: var(--black);
  margin-bottom: 0.5rem;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@supports not (gap: 1rem) {
  .services-grid > * { margin-bottom: 1.25rem; }
}
@media (min-width: 768px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Service Card */
.service-card {
  display: flex;
  flex-direction: column;
  border-left: 3px solid #CC0000;
  border-radius: 0 6px 6px 0;
  overflow: hidden;
  background-color: #ffffff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
@media (prefers-reduced-motion: reduce) {
  .service-card:hover {
    transform: none;
  }
}

.service-card__image-wrap {
  position: relative;
  width: 100%;
  height: 195px;
  overflow: hidden;
  background-color: #1a1a1a;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .service-card__image-wrap { height: 200px; }
}
@media (min-width: 1024px) {
  .service-card__image-wrap { height: 240px; }
}

.service-card__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}
.service-card:hover .service-card__image-wrap img {
  transform: scale(1.05);
}
@media (prefers-reduced-motion: reduce) {
  .service-card:hover .service-card__image-wrap img {
    transform: none;
  }
}

/* Placeholder when no image */
.service-card__image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #1a1a1a;
  color: rgba(255,255,255,0.80);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.service-card__body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-card__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: var(--text-xl);
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.1;
}

.service-card__desc {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: var(--text-sm);
  color: #555555;
  line-height: 1.6;
  flex: 1;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.8125rem;
  color: #CC0000;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 0.5rem;
}

/* Flooring card extra styling */
.service-card--new {
  border-top: 2px solid #CC0000;
}

/* NEW Service Badge */
.new-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background-color: #CC0000;
  color: #ffffff;
  font-size: 0.625rem; /* 10px */
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 2px;
  display: flex;
  align-items: center;
  gap: 5px;
  z-index: 2;
}
.new-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #ffffff;
  animation: pulse-dot 1.5s ease-in-out infinite;
  flex-shrink: 0;
}
@media (prefers-reduced-motion: reduce) {
  .new-badge::before { animation: none; }
}


/* ============================================================
   14. WHY ALLSTATE — STATS SECTION
   ============================================================ */
.why-section {
  background-color: #1a1a1a;
}

.why-section__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 768px) {
  .why-section__inner {
    grid-template-columns: 1fr 1fr;
  }
}

.why-section__heading {
  font-size: var(--text-3xl);
  color: #ffffff;
}
/* Font math (mobile 325px, min font ~30px):
   "SAME STANDARDS." = 15 chars × 0.72 × 30px = 324px ≤ 325px ✓ */

.why-section__copy {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: var(--text-base);
  color: rgba(255,255,255,0.80);
  line-height: 1.7;
  margin-top: 1.25rem;
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
@media (min-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-card {
  text-align: center;
  padding: 1.5rem 1rem;
  background-color: rgba(255,255,255,0.04);
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.06);
}

.stat-card__number {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: var(--text-4xl);
  color: #CC0000;
  white-space: nowrap;
  line-height: 1;
  margin-bottom: 0.375rem;
  display: block;
}

.stat-card__label {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.80);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  line-height: 1.3;
}


/* ============================================================
   15. TESTIMONIALS
   ============================================================ */
.testimonials-section {
  background-color: #ffffff;
}

.testimonials-section__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.testimonials-section__heading {
  font-size: var(--text-3xl);
  color: var(--black);
}
/* Font math (mobile 325px, min ~30px):
   "REAL CUSTOMERS." = 15 chars × 0.72 × 30px = 324px ≤ 325px ✓ */

/* ── Scrolling Review Marquee (replaces static grid) ── */
.review-marquee {
  position: relative;
  overflow: hidden;
  padding-block: 0.5rem;
}

/* Fade left and right edges into white */
.review-marquee::before,
.review-marquee::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.review-marquee::before {
  left: 0;
  background: linear-gradient(to right, #ffffff 0%, transparent 100%);
}
.review-marquee::after {
  right: 0;
  background: linear-gradient(to left, #ffffff 0%, transparent 100%);
}

.review-marquee__row {
  display: flex;
  gap: 1rem;
  width: max-content;
  margin-bottom: 1rem;
  will-change: transform;
}
.review-marquee__row:last-child { margin-bottom: 0; }

.review-marquee__row--left  { animation: review-left  38s linear infinite; }
.review-marquee__row--right { animation: review-right 38s linear infinite; }
.review-marquee:hover .review-marquee__row { animation-play-state: paused; }

@keyframes review-left {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes review-right {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

@media (prefers-reduced-motion: reduce) {
  .review-marquee__row {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }
  .review-marquee__row .review-card[aria-hidden="true"] { display: none; }
}

.review-card {
  background-color: #f8f8f8;
  border: 0.5px solid #eeeeee;
  border-radius: 5px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  flex-shrink: 0;
  width: 300px;
}

.review-card__stars {
  color: #CC0000;
  font-size: var(--text-base);
  letter-spacing: 0.05em;
  line-height: 1;
}

.review-card__quote {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: var(--text-sm);
  color: #333333;
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}

.review-card__author {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.8125rem;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.testimonial-card {
  background-color: #f8f8f8;
  border: 0.5px solid #eeeeee;
  border-radius: 5px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.testimonial-card__stars {
  color: #CC0000;
  font-size: var(--text-base);
  letter-spacing: 0.05em;
  line-height: 1;
}

.testimonial-card__quote {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: var(--text-sm);
  color: #333333;
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}

.testimonial-card__author {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.8125rem;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}


/* ============================================================
   16. QUOTE FORM SECTION (Red CTA — Homepage)
   ============================================================ */
.quote-section {
  background-color: #CC0000;
}

.quote-section__header {
  text-align: center;
  margin-bottom: 2rem;
}

.quote-section__heading {
  font-size: var(--text-3xl);
  color: #ffffff;
}
/* Font math (mobile 325px, min ~30px):
   "GET YOUR FREE ESTIMATE" = 22 chars × 0.72 × 30px = 475px — WRAP needed, but heading uses <br>
   "GET YOUR FREE" = 13 chars × 0.72 × 30px = 280.8 ≤ 325px ✓
   "ESTIMATE"      = 8 chars × 0.72 × 30px = 172.8 ≤ 325px ✓ */

.quote-section__subhead {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: var(--text-base);
  color: rgba(255,255,255,0.80);
  margin-top: 0.5rem;
}

/* Form layout */
.quote-form {
  max-width: 560px;
  margin-inline: auto;
}

.quote-form__group {
  margin-bottom: 1rem;
}

.quote-form label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.9);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.375rem;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  background-color: #ffffff;
  color: #111111;
  border: none;
  border-radius: 3px;
  padding: 0.875rem 1rem;
  font-size: 1rem; /* CRITICAL: minimum 16px prevents iOS Safari auto-zoom */
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.5;
  -webkit-appearance: none;
  appearance: none;
}

.quote-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23111111' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.quote-form textarea {
  resize: vertical;
  min-height: 110px;
}

.quote-form__optional {
  font-weight: 400;
  opacity: 0.7;
  font-size: 0.75rem;
  text-transform: none;
  letter-spacing: 0;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: 3px solid rgba(255,255,255,0.6);
  outline-offset: 2px;
}

.quote-form__submit {
  width: 100%;
  background-color: #111111;
  color: #ffffff;
  border: 2px solid #111111;
  border-radius: 3px;
  padding: 1rem 2rem;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: var(--text-base);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  min-height: 52px;
  margin-top: 0.5rem;
  transition: background-color 0.2s, transform 0.15s;
}
.quote-form__submit:hover {
  background-color: #222222;
  border-color: #222222;
}
.quote-form__submit:active {
  transform: scale(0.98);
}

.quote-section__footer-note {
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.80);
  margin-top: 1.25rem;
}
.quote-section__footer-note a {
  color: #ffffff;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Form success/error states */
.form-status {
  display: none;
  padding: 1rem;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: var(--text-sm);
  text-align: center;
  margin-top: 1rem;
}
.form-status.success {
  display: block;
  background-color: rgba(255,255,255,0.2);
  color: #ffffff;
}
.form-status.error {
  display: block;
  background-color: rgba(0,0,0,0.3);
  color: #ffffff;
}


/* ============================================================
   16b. BRANDS FEATURED
   ============================================================ */
.brand-stickers {
  background-color: #0f0f0f;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 1.5rem 0;
}

.brand-stickers__label {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.625rem;
  color: rgba(255,255,255,0.80);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 0.875rem;
}

.brand-stickers__row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
}

.brand-sticker {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border-bottom: 3px solid #CC0000;
  border-radius: 4px;
  width: 130px;
  height: 78px;
  padding: 0.875rem 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.brand-sticker:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.brand-sticker img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
/* SCF logo is circular — reduce padding so it fills the box better */
.brand-sticker--logo-only {
  padding: 0.375rem;
}
/* Single-row: 3 logos stay on one line on mobile (Residential) */
.brand-stickers__row--no-wrap {
  flex-wrap: nowrap;
}
@media (max-width: 540px) {
  .brand-stickers__row--no-wrap .brand-sticker {
    flex: 1;
    width: auto;
    min-width: 0;
    padding: 0.5rem 0.375rem;
    height: 68px;
  }
  .brand-stickers__row--no-wrap .brand-sticker--logo-only {
    padding: 0.375rem;
  }
}
/* Scrolling logo marquee (Commercial, Window Treatments) */
.logo-marquee {
  overflow: hidden;
  width: 100%;
  position: relative;
}
.logo-marquee::before,
.logo-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}
.logo-marquee::before {
  left: 0;
  background: linear-gradient(to right, #0f0f0f, transparent);
}
.logo-marquee::after {
  right: 0;
  background: linear-gradient(to left, #0f0f0f, transparent);
}
.logo-marquee__track {
  display: flex;
  gap: 0.625rem;
  width: max-content;
  animation: marquee-scroll 22s linear infinite;
  will-change: transform;
}
.logo-marquee__track:hover {
  animation-play-state: paused;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.logo-marquee .brand-sticker:hover {
  transform: none;
}
/* 3-per-row grid on mobile for rows with 6+ logos (e.g. window treatments) */
/* Desktop: inherits flex + flex-wrap from .brand-stickers__row — all logos in a row */
@media (max-width: 540px) {
  .brand-stickers__row--wrap-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
  }
  .brand-stickers__row--wrap-3 .brand-sticker {
    width: auto;
    height: 60px;
    padding: 0.5rem 0.5rem;
  }
  .brand-stickers__row--wrap-3 .brand-sticker--logo-only {
    padding: 0.25rem;
  }
}


/* ============================================================
   17. FOOTER
   ============================================================ */
.site-footer {
  background-color: #0a0a0a;
  border-top: 3px solid #CC0000;
  padding-top: 3rem;
  padding-bottom: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
  }
}

.footer-wordmark {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: var(--text-xl);
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.25em;
  white-space: nowrap;
  margin-bottom: 1rem;
}
.footer-wordmark .wordmark-script {
  font-family: 'Dancing Script', cursive;
  font-weight: 700;
  font-size: 1.3em;
  text-transform: none;
  letter-spacing: 0;
  line-height: 0.85;
}
.footer-wordmark .tint-red {
  color: #CC0000;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-info p,
.footer-info address {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.80);
  line-height: 1.6;
  font-style: normal;
}

.footer-info a {
  color: rgba(255,255,255,0.80);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-info a:hover {
  color: #ffffff;
}

.footer-info__hours {
  margin-top: 0.5rem;
}

.footer-map {
  margin-top: 1.25rem;
}
.footer-map iframe {
  border-radius: 6px;
  display: block;
}
.footer-map__btns {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.625rem;
}
.footer-map__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  flex: 1;
  justify-content: center;
  padding: 0.5rem 0.75rem;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.2s;
}
.footer-map__btn:hover { opacity: 0.85; }
.footer-map__btn--gmaps {
  background: #fff;
  color: #1a1a1a;
}
.footer-map__btn--waze {
  background: #05c8f7;
  color: #1a1a1a;
}

.footer-col__title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.80);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* Mobile: Services in 2-column grid */
.footer-services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}
@media (min-width: 768px) {
  .footer-services-grid {
    display: flex;
    flex-direction: column;
  }
}

.footer-links a {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.80);
  text-decoration: none;
  transition: color 0.2s;
  min-height: 44px;
  display: flex;
  align-items: center;
}
.footer-links a:hover {
  color: #ffffff;
}

/* Footer bottom strip */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 2.5rem;
  padding: 1.25rem 0;
}

.footer-bottom__inner {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.80);
}
@media (min-width: 768px) {
  .footer-bottom__inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-bottom__legal {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-bottom__legal a {
  color: rgba(255,255,255,0.80);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-bottom__legal a:hover {
  color: rgba(255,255,255,0.8);
}


/* ============================================================
   18. SECTION HEADER SHARED STYLES
   ============================================================ */
.section-header {
  margin-bottom: 2.5rem;
}
.section-header--center {
  text-align: center;
}
.section-heading {
  font-size: var(--text-3xl);
  color: inherit;
  line-height: 1.1;
}
.section-heading--white { color: #ffffff; }
.section-heading--black { color: var(--black); }


/* ============================================================
   19. GALLERY (service pages)
   ============================================================ */
.gallery-track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 0.5rem;
}
.gallery-track::-webkit-scrollbar { display: none; }

.gallery-item {
  flex: 0 0 80vw;
  scroll-snap-align: start;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}
@media (min-width: 768px) {
  .gallery-item { flex: 0 0 45vw; }
}
@media (min-width: 1024px) {
  .gallery-item { flex: 0 0 300px; }
}

.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img {
  transform: scale(1.05);
}
@media (prefers-reduced-motion: reduce) {
  .gallery-item:hover img { transform: none; }
}


/* ============================================================
   20. MAP EMBED
   ============================================================ */
.map-embed {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: 6px;
  overflow: hidden;
}
.map-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}


/* ============================================================
   21. MOBILE-SPECIFIC BUG PREVENTION
   ============================================================ */

/* iOS Safari 100vh fix — nav-overlay only.
   Hero uses auto height; min-height is applied only at 768px+ via media queries above. */
.nav-overlay {
  height: 100dvh;
}
@supports not (height: 100dvh) {
  .nav-overlay {
    height: -webkit-fill-available;
  }
}
.hero {
  height: auto;
}

/* Samsung Internet flexbox gap fallback already handled via grid */

/* Prevent text size adjust on orientation change */
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}


/* ============================================================
   22. HOW IT WORKS SECTION — condensed Option 5
   ============================================================ */
.how-section {
  background-color: #0a0a0a;
  padding: 3rem 0;
}
.how-section .section-heading { color: #ffffff; }
.how-section .eyebrow { color: rgba(255,255,255,0.80); }

.how-steps-v2 {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .how-steps-v2 { flex-direction: row; gap: 1.5rem; }
}

.how-step-v2 {
  flex: 1;
  border-left: 3px solid var(--red);
  padding: 0.875rem 0 0.875rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
@media (min-width: 768px) {
  .how-step-v2 { border-bottom: none; }
}
.how-step-v2:last-child { border-bottom: none; }

.how-step-v2__label {
  font-family: 'Inter', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.3rem;
}
.how-step-v2__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  text-transform: uppercase;
  color: #ffffff;
  letter-spacing: 0.03em;
  margin-bottom: 0.3rem;
}
.how-step-v2__desc {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.80);
  line-height: 1.6;
}


/* ============================================================
   HOME GALLERY + SOCIAL SECTION
   ============================================================ */
.home-gallery-section {
  background-color: #ffffff;
  padding: 3.5rem 0 4rem;
}
.home-gallery-section .eyebrow--red { color: var(--red); }

/* Our Work static grid */
.home-work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 2rem;
}
.home-work-grid__item {
  overflow: hidden;
  border-radius: 6px;
}
.home-work-grid__item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  border-radius: 6px;
  transition: transform 0.35s ease;
}
.home-work-grid__item:hover img { transform: scale(1.03); }

@media (max-width: 640px) {
  .home-work-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .home-work-grid__item img { height: 160px; }
}

/* CTA below grid */
.home-gallery-cta {
  margin-top: 1.25rem;
}
.btn-outline-dark {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 0.875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 13px 22px;
  border-radius: 3px;
  text-decoration: none;
  border: 2px solid #111111;
  color: #111111;
  background: transparent;
  transition: background 0.2s ease, color 0.2s ease;
}
.btn-outline-dark:hover {
  background: #111111;
  color: #ffffff;
}

/* Social strip */
.home-social {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid #e8e8e8;
}
.home-social__label {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 1rem;
}
.home-social__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}
.home-social__icon {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.875rem;
  border: 1px solid #e0e0e0;
  border-radius: 50px;
  text-decoration: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}
.home-social__icon:hover {
  border-color: #bbb;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.home-social__icon svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.home-social__icon span {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: #333;
  white-space: nowrap;
}


/* ============================================================
   23. STICKY MOBILE CALL BUTTON
   Fixed bottom-right on mobile — appears after hero scrolls away
   ============================================================ */
.sticky-call {
  display: none;
}

@media (max-width: 767px) {
  .sticky-call {
    display: flex;
    align-items: center;
    position: fixed;
    bottom: 1.25rem;
    right: 1.25rem;
    background-color: var(--red);
    border-radius: 50px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
    z-index: var(--z-modal);
    overflow: hidden;
    opacity: 0;
    transform: translateY(16px);
    pointer-events: none;
    transition: opacity 0.35s ease, transform 0.35s ease;
  }
  .sticky-call.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    animation: sticky-pulse 2.5s ease-in-out infinite;
  }
  .sticky-call__btn {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.75rem 1.1rem;
    color: #ffffff;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.03em;
    white-space: nowrap;
  }
  .sticky-call__divider {
    width: 1px;
    height: 20px;
    background: rgba(255,255,255,0.35);
    flex-shrink: 0;
  }
}

@keyframes sticky-pulse {
  0%, 100% { box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35); }
  50%       { box-shadow: 0 6px 28px rgba(0, 0, 0, 0.55); }
}

@media (prefers-reduced-motion: reduce) {
  .sticky-call.is-visible {
    animation: none;
  }
}


/* ============================================================
   24. ANIMATION B — HERO CTA BUTTON BREATHING PULSE
   Draws the eye to the primary CTA without being distracting
   ============================================================ */
.hero__ctas .btn-primary {
  animation: hero-cta-pulse 3s ease-in-out infinite;
}

@keyframes hero-cta-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(204, 0, 0, 0); }
  50%       { box-shadow: 0 0 0 7px rgba(204, 0, 0, 0.22); }
}

@media (prefers-reduced-motion: reduce) {
  .hero__ctas .btn-primary {
    animation: none;
  }
}


/* ============================================================
   25. ANIMATION C — SERVICE CARD ENHANCED HOVER + ACTIVE
   :hover for desktop mouse, :active for mobile touch
   ============================================================ */
.service-card:hover,
.service-card:active {
  transform: translateY(-6px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.16), 0 0 0 1px rgba(204, 0, 0, 0.15);
}

.service-card:hover .service-card__image-wrap img,
.service-card:active .service-card__image-wrap img {
  transform: scale(1.07);
}

@media (prefers-reduced-motion: reduce) {
  .service-card:hover,
  .service-card:active {
    transform: none;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  }
  .service-card:hover .service-card__image-wrap img,
  .service-card:active .service-card__image-wrap img {
    transform: none;
  }
}


/* ============================================================
   26. PAGE-SPECIFIC BODY CLASSES
   ============================================================ */

/* Offset main content for fixed nav + optional announcement bar */
.main-content-offset {
  padding-top: var(--nav-h-mobile);
}
@media (min-width: 1024px) {
  .main-content-offset {
    padding-top: var(--nav-h-desktop);
  }
}


/* ============================================================
   23. RESPONSIVE BREAKPOINT ENHANCEMENTS
   ============================================================ */

@media (min-width: 540px) {
  :root {
    --section-pad-x: 1.25rem;
  }
}

@media (min-width: 768px) {
  :root {
    --section-pad-x: 1.5rem;
    --section-pad-y: 3.5rem; /* tablet: tightened from 5rem */
  }
  .container {
    padding-inline: 2rem;
  }
}

@media (min-width: 1024px) {
  :root {
    --section-pad-x: 2rem;
    --section-pad-y: 5rem; /* desktop: tightened from 6rem */
  }
  .container {
    padding-inline: 2rem;
  }
}

@media (min-width: 1280px) {
  .container {
    padding-inline: 1.5rem;
  }
}


/* ============================================================
   24. DESKTOP-ONLY LINE BREAK HELPER
   Used on hero subheading to guarantee 3 lines on desktop.
   display:none suppresses the <br> line-break on mobile.
   ============================================================ */
br.desktop-only { display: none; }
@media (min-width: 1024px) {
  br.desktop-only { display: inline; }
}


/* ============================================================
   25. NAV OVERLAY — CONTACT META (fills empty space at bottom)
   ============================================================ */
.nav-overlay__meta {
  margin-top: auto; /* anchors to bottom of flex space above footer */
  padding: 1.25rem 1.5rem 1rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.nav-overlay__meta-label {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.625rem;
  color: rgba(255,255,255,0.80);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.75rem;
  display: block;
}
.nav-overlay__meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.80);
  padding: 0.3rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.nav-overlay__meta-row:last-of-type {
  border-bottom: none;
}
.nav-overlay__meta-address {
  font-family: 'Inter', sans-serif;
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.80);
  margin-top: 0.75rem;
}


/* ============================================================
   26. INNER PAGE HERO
   Compact dark hero used on contact, about, service pages
   ============================================================ */
.inner-hero {
  background-color: #111111;
  padding-top: calc(var(--nav-h-mobile) + var(--bar-height) + 2rem);
  padding-bottom: 2.5rem;
  overflow: hidden;
  position: relative;
}

/* Backlit glow + raking light — premium glass effect */
.inner-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 110% at 15% 60%, rgba(255,255,255,0.10) 0%, transparent 62%),
    radial-gradient(ellipse 55% 65% at 88% 5%, rgba(190,215,245,0.09) 0%, transparent 58%),
    radial-gradient(ellipse 18% 90% at 97% 45%, rgba(255,255,255,0.08) 0%, transparent 65%),
    radial-gradient(ellipse 35% 45% at 82% 92%, rgba(255,255,255,0.05) 0%, transparent 60%),
    linear-gradient(
      108deg,
      transparent 55%,
      rgba(255,255,255,0.000) 59%,
      rgba(255,255,255,0.018) 61%,
      rgba(255,255,255,0.038) 63%,
      rgba(255,255,255,0.018) 65%,
      rgba(255,255,255,0.000) 68%,
      transparent 72%
    ),
    linear-gradient(to left, rgba(255,255,255,0.07) 0%, rgba(255,255,255,0.02) 0.5%, transparent 2%);
  z-index: 0;
  pointer-events: none;
}

/* Film grain + vertical glass panel dividers + horizontal rule */
.inner-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.88' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)' opacity='0.055'/%3E%3C/svg%3E"),
    repeating-linear-gradient(
      to right,
      transparent 0px,
      transparent 149px,
      rgba(255,255,255,0.048) 149px,
      rgba(255,255,255,0.048) 150px
    ),
    linear-gradient(
      to right,
      transparent 45%,
      rgba(255,255,255,0.03) 50%,
      rgba(255,255,255,0.045) 52%,
      rgba(255,255,255,0.03) 54%,
      transparent 60%
    );
  background-size: 256px 256px, auto, auto;
  background-position: 0 0, 0 0, 0 62%;
  background-repeat: repeat, repeat, no-repeat;
  z-index: 0;
  pointer-events: none;
}
@media (min-width: 1024px) {
  .inner-hero {
    padding-top: calc(var(--nav-h-desktop) + var(--bar-height) + 2.5rem);
    padding-bottom: 3rem;
  }
}

.inner-hero__content {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  position: relative;
  z-index: 1;
}

.inner-hero__accent-line {
  flex-shrink: 0;
  width: 4px;
  align-self: stretch;
  min-height: 80px;
  background-color: #CC0000;
  border-radius: 2px;
}

.inner-hero__text {
  flex: 1;
  min-width: 0;
}

.inner-hero__heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(2.75rem, 2rem + 3vw, 4.5rem);
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.0;
  margin-bottom: 0.875rem;
  margin-top: 0.375rem;
  /* Suppress Windows ClearType subpixel color fringing on bold white text */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: geometricPrecision;
}
@media (max-width: 639px) {
  .inner-hero__heading {
    font-size: clamp(2.25rem, 1.5rem + 4vw, 3.75rem); /* 36px at 360px — 3 lines OK per client */
  }
  .section-heading {
    font-size: clamp(1.5rem, 1.25rem + 2vw, 1.875rem);
  }
  .sp-overview__heading {
    font-size: clamp(1.375rem, 1.1rem + 1.75vw, 1.75rem);
  }
  .cta-banner__heading {
    font-size: clamp(1.625rem, 1.3rem + 2vw, 2.25rem);
  }
  .brand-stickers__label {
    text-align: center;
  }
  .brand-stickers__row {
    justify-content: center;
  }
}

.inner-hero__subhead {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.80);
  line-height: 1.6;
  max-width: 520px;
}


/* ============================================================
   27. CONTACT PAGE
   ============================================================ */
.contact-section {
  background-color: #0a0a0a;
}

/* Two-column layout: info left, form right */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 768px) {
  .contact-layout {
    grid-template-columns: 1fr 1.4fr;
    gap: 4rem;
    align-items: start;
  }
}

/* Section heading inside contact info */
.contact-info__heading,
.contact-form-wrap__heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: var(--text-2xl);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
}
/* Info heading sits on dark section bg */
.contact-info__heading {
  color: #ffffff;
}
/* Form heading sits on white card */
.contact-form-wrap__heading {
  color: var(--black);
}

/* Contact cards */
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background-color: var(--dark-alt);
  border-left: 3px solid #CC0000;
  border-radius: 0 6px 6px 0;
  padding: 1.125rem 1.25rem;
  margin-bottom: 0.875rem;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.contact-card:last-child {
  margin-bottom: 0;
}
a.contact-card:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.contact-directions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.contact-card__icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  background-color: rgba(204,0,0,0.12);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #CC0000;
  margin-top: 0.125rem;
}

.contact-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.contact-card__label {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.6875rem;
  color: #CC0000;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.contact-card__value {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: var(--text-base);
  color: #ffffff;
  line-height: 1.4;
}

.contact-card__value--muted {
  font-weight: 400;
  color: rgba(255,255,255,0.80);
  font-size: var(--text-sm);
}

.contact-card__value--note {
  font-weight: 400;
  color: rgba(255,255,255,0.80);
  font-size: 0.75rem;
  margin-top: 0.25rem;
}

/* Form wrapper — white background, subtle border */
.contact-form-wrap {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 2rem 1.75rem;
  box-shadow: 0 8px 40px rgba(0,0,0,0.35);
}
@media (min-width: 768px) {
  .contact-form-wrap {
    padding: 2.5rem 2rem;
  }
}

/* Override quote-form labels — form sits on white card, not dark bg */
.contact-form label {
  color: #111111;
}

/* Override inputs — add visible border on white card */
.contact-form input,
.contact-form select,
.contact-form textarea {
  border: 1.5px solid #d4d4d4;
  background-color: #fafafa;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(204,0,0,0.35);
  outline-offset: 2px;
  border-color: #CC0000;
}

/* Override quote-form submit to match page context */
.contact-form__submit {
  background-color: #CC0000 !important;
  border-color: #CC0000 !important;
  color: #ffffff !important;
}
.contact-form__submit:hover {
  background-color: #aa0000 !important;
  border-color: #aa0000 !important;
}


/* ============================================================
   28. MAP SECTION
   ============================================================ */
.map-section {
  line-height: 0; /* removes gap below iframe */
}

.map-section__inner {
  width: 100%;
  overflow: hidden;
}

.map-section__inner iframe {
  display: block;
  width: 100%;
  height: 320px;
  border: 0;
}
@media (min-width: 768px) {
  .map-section__inner iframe {
    height: 420px;
  }
}


/* ============================================================
   29. ABOUT PAGE
   ============================================================ */

/* Story section — photo + copy two-column */
.about-story {
  background-color: #ffffff;
}

.about-story__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 768px) {
  .about-story__layout {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
  }
}

.about-story__photo {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  border-left: 4px solid #CC0000;
}

.about-story__img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  object-position: center;
  display: block;
}
@media (min-width: 768px) {
  .about-story__img { height: 480px; }
}

/* Temp placeholder note — hidden in production */
.about-story__photo-note {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.65);
  color: rgba(255,255,255,0.80);
  font-size: 0.75rem;
  font-family: 'Inter', sans-serif;
  padding: 0.5rem 0.75rem;
  text-align: center;
}

.about-story__heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(1.875rem, 1.4rem + 2.375vw, 2.75rem);
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  margin-top: 0.375rem;
}

.about-story__text {
  font-family: 'Inter', sans-serif;
  font-size: var(--text-base);
  color: #444444;
  line-height: 1.75;
  margin-bottom: 1rem;
}
.about-story__text:last-of-type {
  margin-bottom: 0;
}

.about-story__cta {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin-top: 2rem;
}
.about-story__cta .btn-outline-dark {
  width: 100%;
  font-size: var(--text-base);
  text-align: center;
}
@media (min-width: 540px) {
  .about-story__cta {
    flex-direction: row;
    align-items: stretch;
  }
  .about-story__cta .btn-outline-dark {
    width: auto;
    font-size: var(--text-sm);
    align-self: stretch;
  }
}


/* Values section */
.values-section {
  background-color: var(--light-bg);
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
@media (min-width: 768px) {
  .values-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.value-card {
  background-color: #ffffff;
  border-left: 3px solid #CC0000;
  border-radius: 0 8px 8px 0;
  padding: 1.75rem 1.5rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.value-card__number {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 3rem;
  color: #CC0000;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.value-card__title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: var(--text-lg);
  color: var(--black);
  margin-bottom: 0.625rem;
}

.value-card__desc {
  font-family: 'Inter', sans-serif;
  font-size: var(--text-sm);
  color: #555555;
  line-height: 1.7;
}


/* Stats section — centered variant for about page */
.why-section--centered {
  text-align: center;
}
.stats-grid--centered {
  justify-content: center;
  margin-top: 2.5rem;
}


/* CTA Banner */
.cta-banner {
  background-color: var(--dark-alt);
  border-top: 3px solid #CC0000;
}

.cta-banner__inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .cta-banner__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
  }
}

.cta-banner__heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 1.5rem + 2.5vw, 3rem);
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.05;
  margin-bottom: 0.5rem;
}

.cta-banner__sub {
  font-family: 'Inter', sans-serif;
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.80);
}

.cta-banner__actions {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  flex-shrink: 0;
}
@media (min-width: 540px) {
  .cta-banner__actions {
    flex-direction: row;
  }
}

.btn-outline-white {
  border: 2px solid rgba(255,255,255,0.5);
  color: #ffffff;
  background: transparent;
  border-radius: 3px;
  padding: 0.75rem 1.5rem;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: var(--text-sm);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  transition: border-color 0.2s, color 0.2s;
}
.btn-outline-white:hover {
  border-color: #ffffff;
  color: #ffffff;
}


/* ============================================================
   30. SERVICE PAGE — SHARED COMPONENTS
   Used across all 6 service pages
   ============================================================ */

/* Inner hero CTAs */
.inner-hero__ctas {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin-top: 1.5rem;
}
@media (min-width: 540px) {
  .inner-hero__ctas { flex-direction: row; }
}

/* ── Breadcrumb ── */
.breadcrumb {
  background-color: #0a0a0a;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding-block: 0.625rem;
}
.breadcrumb__list {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  flex-wrap: wrap;
}
.breadcrumb__list li {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.80);
}
.breadcrumb__list a {
  color: rgba(255,255,255,0.80);
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb__list a:hover { color: #CC0000; }
.breadcrumb__list [aria-current="page"] {
  color: #CC0000;
  font-weight: 700;
}


/* ── Service Overview ── */
.sp-overview {
  background-color: #ffffff;
}
.sp-overview__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .sp-overview__layout {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
  }
}
.sp-overview__photo {
  border-radius: 6px;
  overflow: hidden;
  border-left: 4px solid #CC0000;
}
.sp-overview__photo img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}
@media (min-width: 768px) {
  .sp-overview__photo img { height: 420px; }
}
.sp-overview__heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(1.75rem, 1.3rem + 2.25vw, 2.5rem);
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.05;
  margin-bottom: 1.25rem;
  margin-top: 0.375rem;
}
.sp-overview__text {
  font-size: var(--text-base);
  color: #444444;
  line-height: 1.75;
  margin-bottom: 1rem;
}
.sp-overview__benefits {
  list-style: none;
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.sp-overview__benefits li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: var(--text-sm);
  color: #333333;
  line-height: 1.5;
}
.sp-overview__benefits li::before {
  content: '';
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #CC0000;
  margin-top: 0.35em;
}
.sp-note {
  font-size: 0.75rem;
  color: #888888;
  margin-top: 1.25rem;
  font-style: italic;
}


/* ── Brand Logo Marquee ── */
.brand-marquee {
  background-color: var(--light-bg);
  border-top: 1px solid rgba(0,0,0,0.07);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  padding-block: 1.25rem;
  overflow: hidden;
}
.brand-marquee .container {
  margin-bottom: 0.875rem;
}
.brand-marquee__label {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.6875rem;
  color: #888888;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  text-align: center;
}
.brand-marquee__track-wrap {
  position: relative;
  overflow: hidden;
}
.brand-marquee__track-wrap::before,
.brand-marquee__track-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}
.brand-marquee__track-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--light-bg), transparent);
}
.brand-marquee__track-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--light-bg), transparent);
}
.brand-marquee__track {
  display: flex;
  gap: 1rem;
  width: max-content;
  /* 4 sets of chips — translate -25% = exactly 1 set width — seamless on any screen */
  animation: brand-marquee-scroll 40s linear infinite;
}
.brand-marquee__track:hover {
  animation-play-state: paused;
}
@keyframes brand-marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-25%); }
}
@media (prefers-reduced-motion: reduce) {
  .brand-marquee__track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: auto;
    padding-inline: 1rem;
  }
  /* Show only first set (6 chips) in reduced-motion mode */
  .brand-marquee__track .brand-chip:nth-child(n+7) { display: none; }
}
.brand-chip {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 1.5rem;
  background-color: #ffffff;
  border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: 4px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.125rem;
  color: var(--black);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.brand-chip--featured {
  border-color: #CC0000;
  color: #CC0000;
}


/* ── Infographic / Tint Visualizer ── */
.sp-infographic {
  background-color: #ffffff;
}
/* ── SHADE VISUALIZER ── */
.shade-viz { max-width: 700px; margin: 2rem auto 0; }

.shade-viz__strips {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  height: 260px;
  border-radius: 8px;
  overflow: hidden;
  background: linear-gradient(
    to bottom,
    #cde8f8 0%,
    #90c8e8 30%,
    #a8b8c8 58%,
    #88908a 80%,
    #6a706a 100%
  );
  margin-bottom: 0.75rem;
  box-shadow: 0 6px 28px rgba(0,0,0,0.35);
}

.shade-viz__strip {
  display: block;
  flex: 1;
  min-width: 0;
  position: relative;
  border: none;
  border-right: 1px solid rgba(255,255,255,0.12);
  cursor: pointer;
  padding: 0;
  background: transparent;
  outline: none;
  transition: flex 0.35s cubic-bezier(0.4,0,0.2,1);
}
.shade-viz__strip:last-child { border-right: none; }
.shade-viz__strip.is-active { flex: 1.8; }
.shade-viz__strip.is-active .shade-viz__overlay {
  box-shadow: inset 0 0 0 3px #CC0000;
}
@media (hover: hover) {
  .shade-viz__strip:hover { flex: 1.4; }
  .shade-viz__strip.is-active:hover { flex: 1.8; }
}

.shade-viz__overlay {
  position: absolute;
  inset: 0;
  display: block;
  pointer-events: none;
  transition: box-shadow 0.2s;
}

.shade-viz__content {
  position: absolute;
  bottom: 1rem;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  z-index: 1;
}

.shade-viz__pct {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(0.95rem, 2.2vw, 1.5rem);
  color: #ffffff;
  line-height: 1;
  text-shadow: 0 1px 6px rgba(0,0,0,0.6);
}

.shade-viz__name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.58rem;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

.shade-viz__badge {
  position: absolute;
  top: 0.6rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 2px 5px;
  border-radius: 2px;
  white-space: nowrap;
  z-index: 1;
}
.shade-viz__badge--legal  { background: #2E7D32; color: #fff; }
.shade-viz__badge--illegal { background: #CC0000; color: #fff; }

.shade-viz__note {
  font-size: 0.72rem;
  color: #888;
  text-align: center;
  font-style: italic;
  max-width: 520px;
  margin-inline: auto;
  display: block;
}

@media (max-width: 480px) {
  .shade-viz__strips { height: 190px; }
  .shade-viz__badge { display: none; }
  .shade-viz__name { display: none; }
}

/* Stat cards row */
.sp-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}
@media (min-width: 768px) {
  .sp-stats { grid-template-columns: repeat(4, 1fr); }
}
.sp-stat {
  background-color: var(--light-bg);
  border-left: 3px solid #CC0000;
  border-radius: 0 6px 6px 0;
  padding: 1.25rem 1rem;
  text-align: center;
}
.sp-stat__number {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(1.75rem, 1.2rem + 2.75vw, 2.5rem);
  color: #CC0000;
  line-height: 1;
  margin-bottom: 0.375rem;
}
.sp-stat__label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.6875rem;
  color: #555555;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.4;
}


/* ── FILM PERFORMANCE COMPARISON (Residential) ── */
.sp-film-compare {
  background: #0A0A0A;
  padding: var(--section-pad-y) 0;
}
.sp-film-compare .section-heading { color: #fff; }
.sp-film-compare .eyebrow { color: #CC0000; }
.sp-film-compare .animated-underline::after { background: #CC0000; }

.film-compare {
  max-width: 680px;
  margin: 2rem auto 0;
}
.film-compare__legend {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.75rem;
  justify-content: center;
  flex-wrap: wrap;
}
.film-compare__legend-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.80);
}
.film-compare__legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 2px;
  flex-shrink: 0;
}
.film-compare__legend-dot--base    { background: #444; }
.film-compare__legend-dot--ceramic { background: #CC0000; }

.film-compare__rows {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.film-compare__row {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.film-compare__label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.80);
}
.film-compare__bars {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.film-compare__bar-wrap {
  background: rgba(255,255,255,0.06);
  border-radius: 3px;
  height: 36px;
  position: relative;
  overflow: hidden;
}
.film-compare__bar {
  height: 100%;
  width: 0;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 0.6rem;
  transition: width 1.1s cubic-bezier(0.4,0,0.2,1);
  position: relative;
}
.film-compare__bar--base    { background: #3a3a3a; }
.film-compare__bar--ceramic { background: #CC0000; }
.film-compare__bar-pct {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  color: #fff;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s ease 0.8s;
}
.film-compare__bar.is-animated .film-compare__bar-pct { opacity: 1; }

/* 0% bar still shows label on the left */
.film-compare__bar--base[data-target="0"] .film-compare__bar-pct {
  position: absolute;
  left: 0.6rem;
  color: rgba(255,255,255,0.80);
}

.film-compare__note {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.80);
  text-align: center;
  margin-top: 2rem;
  font-style: italic;
  line-height: 1.6;
}

/* Stat cards on dark bg */
.sp-film-compare .sp-stats { margin-top: 3rem; }
.sp-film-compare .sp-stat {
  background: #1a1a1a;
  border-left-color: #CC0000;
}
.sp-film-compare .sp-stat__label { color: rgba(255,255,255,0.80); }

@media (prefers-reduced-motion: reduce) {
  .film-compare__bar { transition: none; }
}

/* ── BUILDING TYPE SELECTOR (Commercial) ── */
.sp-btype {
  background: #f5f5f5;
  padding: var(--section-pad-y) 0;
}
.btype { max-width: 860px; margin: 2rem auto 0; }

.btype__tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-bottom: 0;
}
.btype__tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 0.85rem 0.5rem;
  background: #fff;
  border: 2px solid #e0e0e0;
  border-bottom: none;
  border-radius: 6px 6px 0 0;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  font-family: 'Barlow Condensed', sans-serif;
}
.btype__tab-icon { font-size: 1.4rem; line-height: 1; }
.btype__tab-label {
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #666;
  transition: color 0.2s;
}
.btype__tab.is-active {
  background: #0A0A0A;
  border-color: #0A0A0A;
}
.btype__tab.is-active .btype__tab-label { color: #fff; }
@media (hover: hover) {
  .btype__tab:not(.is-active):hover { border-color: #CC0000; }
  .btype__tab:not(.is-active):hover .btype__tab-label { color: #CC0000; }
}

.btype__panels {
  background: #0A0A0A;
  border-radius: 0 0 6px 6px;
  overflow: hidden;
}
.btype__panel { display: none; }
.btype__panel.is-active { display: block; }

.btype__panel-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem 1.75rem;
}
@media (min-width: 768px) {
  .btype__panel-content {
    flex-direction: row;
    align-items: flex-start;
    gap: 3rem;
  }
}
.btype__panel-copy { flex: 1; min-width: 0; }
.btype__panel-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(1.4rem, 1rem + 2vw, 1.9rem);
  line-height: 1.1;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0.85rem;
}
.btype__panel-text {
  font-family: 'Barlow', sans-serif;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.80);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.btype__panel-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.btype__panel-list li {
  font-family: 'Barlow', sans-serif;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.80);
  padding-left: 1.1rem;
  position: relative;
  line-height: 1.5;
}
.btype__panel-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #CC0000;
}
.btype__panel-stat {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(204,0,0,0.1);
  border: 1px solid rgba(204,0,0,0.25);
  border-radius: 6px;
  padding: 1.5rem 2rem;
  text-align: center;
  min-width: 140px;
}
.btype__panel-stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(2.5rem, 2rem + 2vw, 3.5rem);
  color: #CC0000;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.btype__panel-stat-label {
  font-family: 'Barlow', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.80);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  line-height: 1.5;
}

/* ── TRUSTED BY CLIENT WALL (Commercial) ── */
.sp-clients {
  background: #0A0A0A;
  padding: var(--section-pad-y) 0;
}
.sp-clients .section-heading { color: #fff; }
.sp-clients .eyebrow { color: #CC0000; }
.sp-clients .animated-underline::after { background: #CC0000; }

.client-wall {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin: 2rem auto 0;
  max-width: 860px;
}
.client-chip {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: #1a1a1a;
  border: 1px solid #333;
  border-left: 3px solid #CC0000;
  padding: 0.65rem 1.1rem;
  border-radius: 3px;
  transition: border-color 0.2s, background 0.2s;
}
@media (hover: hover) {
  .client-chip:hover {
    background: #222;
    border-color: #CC0000;
    border-left-color: #CC0000;
  }
}
.client-wall__note {
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.80);
  margin-top: 1.5rem;
  font-style: italic;
}

/* ── COMMERCIAL QUOTE FORM ── */
.sp-com-quote {
  background: #111;
  padding: var(--section-pad-y) 0;
}
.sp-com-quote .section-heading { color: #fff; }
.sp-com-quote .eyebrow { color: #CC0000; }
.sp-com-quote .animated-underline::after { background: #CC0000; }
.sp-com-quote .section-subhead {
  font-family: 'Barlow', sans-serif;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.80);
  margin-top: 0.5rem;
  text-align: center;
}
.com-quote-form {
  max-width: 740px;
  margin: 2rem auto 0;
  background: #0A0A0A;
  border-top: 3px solid #CC0000;
  border-radius: 0 0 6px 6px;
  padding: 2rem 1.75rem;
}
.com-quote-form__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 600px) {
  .com-quote-form__grid { grid-template-columns: 1fr 1fr; }
  .form-field--full { grid-column: 1 / -1; }
}

/* Form field — label + input stack */
.form-field { display: flex; flex-direction: column; gap: 0.35rem; }
.form-field label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.80);
}
.form-field label span[aria-hidden] { color: #CC0000; margin-left: 2px; }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  background: #1a1a1a;
  color: #fff;
  border: 1.5px solid #333;
  border-radius: 3px;
  padding: 0.85rem 1rem;
  font-size: 1rem;
  font-family: 'Barlow', sans-serif;
  font-weight: 400;
  line-height: 1.5;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color 0.2s;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(255,255,255,0.25); }
.form-field select { color: rgba(255,255,255,0.80); }
.form-field select option { background: #1a1a1a; color: #fff; }
.form-field select:valid { color: #fff; }
.form-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23ffffff' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.form-field textarea { resize: vertical; min-height: 110px; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: #CC0000;
}

.com-quote-form__footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.com-quote-form__submit { align-self: flex-start; }
.com-quote-form__privacy {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.80);
  font-style: italic;
}
.form-success {
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  border-radius: 4px;
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  color: #2e7d32;
  margin-top: 1rem;
}
.form-error {
  background: #ffebee;
  border: 1px solid #ef9a9a;
  border-radius: 4px;
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  color: #c62828;
  margin-top: 1rem;
}

/* ── FAQ ── */
.sp-faq {
  background-color: var(--light-bg);
}
.faq-list {
  max-width: 760px;
  margin-inline: auto;
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.1);
}
.faq-item:first-child {
  border-top: 1px solid rgba(0,0,0,0.1);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.125rem 0;
  background: transparent;
  border: none;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: var(--text-base);
  color: var(--black);
  text-align: left;
  cursor: pointer;
  min-height: 44px;
}
.faq-question svg {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: #CC0000;
}
.faq-item.is-open .faq-question svg {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-item.is-open .faq-answer {
  max-height: 400px; /* large enough for any answer */
}
.faq-answer p {
  padding-bottom: 1.125rem;
}
.faq-answer p {
  font-size: var(--text-sm);
  color: #555555;
  line-height: 1.75;
}


/* ── Lightbox Gallery ── */
.sp-gallery {
  background-color: #ffffff;
}
.lightbox-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .lightbox-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
}
@media (min-width: 1024px) {
  .lightbox-grid { grid-template-columns: repeat(4, 1fr); }
}
.lightbox-item {
  position: relative;
  overflow: hidden;
  -webkit-tap-highlight-color: transparent;
  border-radius: 6px;
  border: none;
  padding: 0;
  cursor: pointer;
  display: block;
  aspect-ratio: 4 / 3;
  background-color: #1a1a1a;
}
.lightbox-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.lightbox-item:hover img,
.lightbox-item:focus img {
  transform: scale(1.06);
}
.lightbox-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}
.lightbox-item:hover .lightbox-item__overlay,
.lightbox-item:focus .lightbox-item__overlay {
  background: rgba(0,0,0,0.4);
}
.lightbox-item__overlay svg {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.lightbox-item:hover .lightbox-item__overlay svg,
.lightbox-item:focus .lightbox-item__overlay svg {
  opacity: 1;
  transform: scale(1);
}
@media (prefers-reduced-motion: reduce) {
  .lightbox-item img { transition: none; }
  .lightbox-item__overlay { transition: none; }
}

/* Lightbox modal */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: var(--z-modal);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 1;
  transition: opacity 0.25s ease;
}
.lightbox-modal[hidden] {
  display: none;
}
.lightbox-modal.is-opening {
  animation: lightbox-fade-in 0.25s ease forwards;
}
@keyframes lightbox-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.lightbox-modal__img-wrap {
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-modal__img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
  display: block;
}
.lightbox-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255,255,255,0.12);
  color: #ffffff;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.lightbox-modal__close:hover { background: rgba(255,255,255,0.22); }
.lightbox-modal__prev,
.lightbox-modal__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.12);
  color: #ffffff;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 1.75rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  line-height: 1;
}
.lightbox-modal__prev { left: 0.75rem; }
.lightbox-modal__next { right: 0.75rem; }
.lightbox-modal__prev:hover,
.lightbox-modal__next:hover { background: rgba(255,255,255,0.22); }
.lightbox-modal__counter {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.80);
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
}


/* ── Related Services ── */
.sp-related {
  background-color: var(--light-bg);
}
.related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .related-grid { grid-template-columns: repeat(3, 1fr); }
}


/* ── Service Area ── */
.sp-service-area {
  background-color: #ffffff;
}
.service-area-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  justify-content: center;
  margin-top: 2rem;
}
.area-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.1rem;
  background-color: var(--light-bg);
  border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--black);
  white-space: nowrap;
  transition: border-color 0.2s, color 0.2s;
}
@media (hover: hover) {
  .area-pill:hover {
    border-color: #CC0000;
    color: #CC0000;
  }
}

/* Brand chip hover */
.brand-chip {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
@media (hover: hover) {
  .brand-chip:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }
}


/* ── CTA Banner trust list ── */
.cta-banner__trust {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  margin-top: 0.875rem;
}
.cta-banner__trust li {
  font-family: 'Inter', sans-serif;
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.80);
}


/* ============================================================
   31. FLOORING — NEW SERVICE BANNER
   ============================================================ */

.new-service-banner {
  background: #fff8f0;
  border-bottom: 2px solid #CC0000;
  padding: 0.75rem 0;
}

.new-service-banner__inner {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.new-service-banner__badge {
  flex-shrink: 0;
  background: #CC0000;
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.65rem;
  border-radius: 3px;
  text-transform: uppercase;
}

.new-service-banner__text {
  font-size: var(--text-sm);
  color: #333;
  line-height: 1.5;
  margin: 0;
}

.new-service-banner__text a {
  color: var(--red);
  font-weight: 600;
  text-decoration: none;
}
.new-service-banner__text a:hover { text-decoration: underline; }


/* ============================================================
   32. FLOORING — PROCESS TIMELINE (Option D)
   ============================================================ */

.sp-process {
  padding: var(--section-pad-y) 0;
  background: #111;
}

.sp-process .section-heading--white { color: #fff; }

.process-intro {
  color: rgba(255,255,255,0.80);
  font-size: var(--text-base);
  margin-top: 0.5rem;
  text-align: center;
}

/* Timeline row */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 3rem;
  position: relative;
}

@media (max-width: 768px) {
  .process-timeline {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* Individual step */
.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1rem;
  position: relative;
}

@media (max-width: 768px) {
  .process-step {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 0 0 2.5rem 0;
  }
}

/* Step number (large behind icon) */
.process-step__num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 4.5rem;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  user-select: none;
}

@media (max-width: 768px) {
  .process-step__num {
    display: none;
  }
}

/* Connector line between steps (desktop only) */
.process-step__connector {
  position: absolute;
  top: 28px;
  left: calc(50% + 28px);
  right: calc(-50% + 28px);
  height: 2px;
  background: linear-gradient(90deg, #CC0000, rgba(204,0,0,0.2));
}

.process-step__connector--last,
.process-step:last-child .process-step__connector {
  display: none;
}

@media (max-width: 768px) {
  .process-step__connector {
    display: none;
  }
  /* Vertical connector on mobile */
  .process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 27px;
    top: 56px;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #CC0000, rgba(204,0,0,0.15));
  }
}

/* Icon circle */
.process-step__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #1e1e1e;
  border: 2px solid rgba(204,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.8);
  flex-shrink: 0;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .process-step__icon {
    margin-bottom: 0;
  }
}

/* Step text */
.process-step__content {
  flex: 1;
}

.process-step__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.process-step__text {
  color: rgba(255,255,255,0.80);
  font-size: 0.85rem;
  line-height: 1.6;
}


/* ============================================================
   33. FLOORING — COMPARISON MATRIX (Option B)
   ============================================================ */

.sp-floor-compare {
  padding: var(--section-pad-y) 0;
  background: #f5f5f5;
}

.floor-compare__intro {
  color: #555;
  font-size: var(--text-base);
  margin-top: 0.5rem;
  text-align: center;
}

.floor-compare-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
  align-items: start;
}

@media (max-width: 768px) {
  .floor-compare-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Floor card */
.floor-card {
  background: #fff;
  border-radius: 10px;
  border: 2px solid #e8e8e8;
  padding: 1.75rem 1.5rem;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}

.floor-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}

.floor-card--featured {
  border-color: var(--red);
  box-shadow: 0 4px 20px rgba(204,0,0,0.12);
}

.floor-card--epoxy {
  border-color: #333;
}

/* Most Popular badge */
.floor-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.85rem;
  border-radius: 20px;
  white-space: nowrap;
}

.floor-card__header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.5rem;
}

.floor-card__icon {
  flex-shrink: 0;
}

.floor-card__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  color: #111;
  line-height: 1.15;
}

.floor-card__tagline {
  font-size: 0.82rem;
  color: #777;
  margin-bottom: 1.25rem;
  font-style: italic;
}

/* Spec rows */
.floor-card__specs {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid #eee;
}

.floor-card__specs li {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0.5rem;
}

.floor-card__spec-label {
  font-size: 0.75rem;
  color: #888;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.floor-card__dots {
  display: flex;
  gap: 4px;
}

.floor-card__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ddd;
}

.floor-card__dot.is-filled {
  background: var(--red);
}

.floor-card__spec-val {
  font-size: 0.78rem;
  font-weight: 600;
  color: #333;
  text-align: right;
}

/* Best For footer */
.floor-card__best-for {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-top: 1rem;
  border-top: 1px solid #eee;
}

.floor-card__best-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #aaa;
}

.floor-card__best-val {
  font-size: 0.82rem;
  color: #444;
  line-height: 1.45;
}

/* CTA note below grid */
.floor-compare__cta-note {
  text-align: center;
  margin-top: 2rem;
  color: #555;
  font-size: var(--text-base);
}

.floor-compare__cta-note a {
  color: var(--red);
  font-weight: 600;
  text-decoration: none;
}
.floor-compare__cta-note a:hover { text-decoration: underline; }


/* ============================================================
   34. FLOORING — GARAGE BEFORE / AFTER (Option F)
   ============================================================ */

.sp-garage-reveal {
  padding: var(--section-pad-y) 0;
  background: #0a0a0a;
}

.sp-garage-reveal .section-heading--white { color: #fff; }

.garage-reveal__intro {
  color: rgba(255,255,255,0.80);
  font-size: var(--text-base);
  margin-top: 0.5rem;
  text-align: center;
}

/* Main before/after container */
.garage-ba {
  position: relative;
  height: 320px;
  border-radius: 10px;
  overflow: hidden;
  cursor: ew-resize;
  margin-top: 2.5rem;
  user-select: none;
  -webkit-user-select: none;
}

@media (max-width: 640px) {
  .garage-ba { height: 240px; }
}

/* BEFORE — cracked concrete */
.garage-ba__before {
  position: absolute;
  inset: 0;
  background-color: #888;
  background-image:
    /* concrete texture grid lines */
    repeating-linear-gradient(0deg, rgba(0,0,0,0.06) 0px, rgba(0,0,0,0.06) 1px, transparent 1px, transparent 48px),
    repeating-linear-gradient(90deg, rgba(0,0,0,0.06) 0px, rgba(0,0,0,0.06) 1px, transparent 1px, transparent 48px),
    /* surface variation */
    radial-gradient(ellipse at 20% 70%, rgba(0,0,0,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 30%, rgba(255,255,255,0.08) 0%, transparent 50%);
}

/* Crack overlays */
.garage-ba__crack {
  position: absolute;
  background: rgba(40,40,40,0.5);
}

.garage-ba__crack--1 {
  width: 2px;
  height: 55%;
  top: 15%;
  left: 28%;
  transform: rotate(12deg);
}

.garage-ba__crack--2 {
  width: 1px;
  height: 35%;
  top: 40%;
  left: 55%;
  transform: rotate(-8deg);
}

.garage-ba__crack--3 {
  width: 1px;
  height: 25%;
  top: 20%;
  left: 70%;
  transform: rotate(22deg);
}

/* Oil stain */
.garage-ba__oil {
  position: absolute;
  width: 80px;
  height: 50px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(40,20,0,0.35) 0%, transparent 70%);
  bottom: 30%;
  left: 40%;
}

/* AFTER — glossy epoxy with flakes */
.garage-ba__after {
  position: absolute;
  inset: 0;
  background-color: #1a1a1a;
  background-image:
    /* gloss highlight sweep */
    linear-gradient(115deg, transparent 25%, rgba(255,255,255,0.06) 45%, transparent 65%),
    /* red metallic flakes */
    radial-gradient(circle, rgba(204,0,0,0.7) 1px, transparent 1px) 0 0 / 22px 22px,
    /* silver flakes */
    radial-gradient(circle, rgba(200,200,200,0.45) 1px, transparent 1px) 11px 11px / 18px 18px,
    /* white crystal flakes */
    radial-gradient(circle, rgba(255,255,255,0.35) 1px, transparent 1px) 5px 16px / 26px 26px,
    /* dark base coat */
    linear-gradient(180deg, #1c1c1c 0%, #141414 100%);
  clip-path: inset(0 0 0 50%);
  transition: clip-path 0s; /* instant — JS drives this */
}

/* Shine line across epoxy */
.garage-ba__gloss {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    transparent 20%,
    rgba(255,255,255,0.04) 40%,
    rgba(255,255,255,0.09) 50%,
    rgba(255,255,255,0.04) 60%,
    transparent 80%
  );
  pointer-events: none;
}

.garage-ba__flakes { display: none; } /* decorative — handled by background on __after */

/* Labels */
.garage-ba__label {
  position: absolute;
  top: 1rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 3px;
  z-index: 2;
}

.garage-ba__label--before {
  left: 1rem;
  background: rgba(0,0,0,0.45);
  color: #fff;
}

.garage-ba__label--after {
  right: 1rem;
  background: rgba(204,0,0,0.85);
  color: #fff;
}

/* Divider line */
.garage-ba__divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: #fff;
  transform: translateX(-50%);
  z-index: 3;
  pointer-events: none;
}

.garage-ba__handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111;
  box-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

/* Range input — invisible but covers the whole container for dragging */
.garage-ba__slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 4;
  -webkit-appearance: none;
  appearance: none;
}

/* Supporting facts below the visual */
.garage-reveal__facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

@media (max-width: 640px) {
  .garage-reveal__facts {
    grid-template-columns: repeat(2, 1fr);
  }
}

.garage-reveal__fact {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  text-align: center;
  padding: 1.25rem 0.75rem;
  background: #151515;
  border-radius: 8px;
  border: 1px solid #222;
}

.garage-reveal__fact-val {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  color: var(--red);
  line-height: 1;
}

.garage-reveal__fact-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.80);
  line-height: 1.4;
}


/* ============================================================
   35. MARINE — YACHT HOTSPOT MAP (Option A)
   ============================================================ */

.sp-hotspot {
  padding: var(--section-pad-y) 0;
  background: #0d1a2e;
}

.sp-hotspot .section-heading--white {
  color: #fff;
}

.hotspot-intro {
  color: rgba(255,255,255,0.80);
  font-size: var(--text-base);
  margin-top: 0.5rem;
  text-align: center;
}

/* Yacht scene */
.yacht-map__scene {
  width: 100%;
}

.yacht-map__svg {
  width: 100%;
  height: auto;
  display: block;
}

/* Hotspot pins (SVG <g> elements) */
.hotspot-pin {
  cursor: pointer;
  outline: none;
  pointer-events: all;
}

.hotspot-pin__pulse {
  fill: rgba(204,0,0,0.25);
  animation: pinPulse 2s ease-out infinite;
}

.hotspot-pin.is-active .hotspot-pin__pulse {
  fill: rgba(204,0,0,0.35);
}

.hotspot-pin.is-active .hotspot-pin__bg {
  fill: #CC0000 !important;
}

@keyframes pinPulse {
  0%   { r: 14; opacity: 0.5; }
  100% { r: 24; opacity: 0; }
}

/* Stop pulse on inactive pins */
.hotspot-pin:not(.is-active) .hotspot-pin__pulse {
  animation: none;
  fill: rgba(255,255,255,0.1);
}

/* Hotspot panels */
.hotspot-panels {
  margin-top: 1.5rem;
  min-height: 160px;
}

.hotspot-panel {
  display: none;
  background: #132030;
  border: 1px solid rgba(204,0,0,0.3);
  border-radius: 10px;
  padding: 1.5rem 2rem;
  animation: panelFade 0.25s ease;
}

.hotspot-panel.is-active {
  display: block;
}

@keyframes panelFade {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hotspot-panel__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.hotspot-panel__num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: var(--red);
  line-height: 1;
  min-width: 2.5rem;
}

.hotspot-panel__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  color: #fff;
  line-height: 1;
}

.hotspot-panel__text {
  color: rgba(255,255,255,0.80);
  font-size: var(--text-base);
  line-height: 1.65;
  margin-bottom: 1.25rem;
  max-width: 70ch;
}

.hotspot-panel__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.hotspot-panel__stat {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.hotspot-panel__stat-val {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--red);
  line-height: 1;
}

.hotspot-panel__stat-label {
  font-size: 0.75rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.80);
}

/* Overview stat cards (marine page) */
.sp-overview__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #eee;
}

@media (max-width: 640px) {
  .sp-overview__stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

.sp-overview__stat {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.sp-overview__stat-val {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  color: var(--red);
  line-height: 1;
}

.sp-overview__stat-label {
  font-size: 0.72rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #666;
  line-height: 1.3;
}


/* ============================================================
   32. MARINE — INSTRUMENT PANEL GAUGES (Option C)
   ============================================================ */

.sp-gauges {
  padding: var(--section-pad-y) 0;
  background: #080e18;
}

.sp-gauges .section-heading--white {
  color: #fff;
}

.gauge-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .gauge-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 400px) {
  .gauge-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

.gauge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}

/* Dial container — holds SVG + centered text overlay */
.gauge__dial-wrap {
  position: relative;
  width: 130px;
  height: 130px;
  flex-shrink: 0;
}

@media (max-width: 400px) {
  .gauge__dial-wrap { width: 110px; height: 110px; }
}

.gauge__svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg); /* start fill from top */
}

/* Decorative track ring */
.gauge__track {
  fill: none;
  stroke: #1a2535;
  stroke-width: 10;
}

/* Animated fill arc */
.gauge__fill {
  fill: none;
  stroke: var(--red);
  stroke-width: 10;
  stroke-linecap: round;
  transition: stroke-dasharray 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Instrument-style tick marks using pseudo */
.gauge__dial-wrap::before {
  content: '';
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.04);
}

/* Center label overlay */
.gauge__center {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.gauge__value {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(1.3rem, 3vw, 1.6rem);
  color: #fff;
  line-height: 1;
}

.gauge__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fff;
  line-height: 1.2;
}

.gauge__sub {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.80);
  line-height: 1.4;
  max-width: 14ch;
}


/* ============================================================
   33. WINDOW TREATMENTS — LIGHT CONTROL SELECTOR (Option E)
   ============================================================ */

.sp-light-sel {
  padding: var(--section-pad-y) 0;
  background: #ffffff;
}

.light-sel__intro {
  color: #555;
  font-size: var(--text-base);
  margin-top: 0.5rem;
  max-width: 52ch;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* Card row */
.light-sel__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 640px) {
  .light-sel__cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Individual card */
.light-sel__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 0.5rem 0.75rem;
  background: #f7f7f7;
  border: 2px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
  text-align: center;
}

.light-sel__card:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
}

.light-sel__card.is-active {
  border-color: var(--red);
  background: #fff;
}

/* Mini window preview inside each card */
.light-sel__card-preview {
  width: 56px;
  height: 44px;
  border: 2px solid #ccc;
  border-radius: 3px;
  position: relative;
  overflow: hidden;
  background: #ddeeff;
}

/* Shade fills based on intent */
.light-sel__card-shade {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  border-radius: 2px 2px 0 0;
}

/* Block — full shade, dark */
.light-sel__card-preview--block .light-sel__card-shade {
  height: 100%;
  background: #222;
}

/* Breathe — partial shade, light fabric look */
.light-sel__card-preview--breathe .light-sel__card-shade {
  height: 60%;
  background: rgba(200, 180, 140, 0.6);
}

/* Private — shutter slats (pseudo) */
.light-sel__card-preview--private {
  background: #c8e0f5;
}
.light-sel__card-preview--private .light-sel__card-shade {
  height: 100%;
  background: repeating-linear-gradient(
    180deg,
    rgba(255,255,255,0.8) 0px,
    rgba(255,255,255,0.8) 5px,
    rgba(80,80,80,0.25) 5px,
    rgba(80,80,80,0.25) 7px
  );
}

/* Smart — partial shade with gradient (motorized feel) */
.light-sel__card-preview--smart {
  background: linear-gradient(180deg, #c8e0f5 50%, #fff 100%);
}
.light-sel__card-preview--smart .light-sel__card-shade {
  height: 45%;
  background: #333;
}

.light-sel__card-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #111;
  line-height: 1.2;
}

.light-sel__card-sub {
  font-size: 0.72rem;
  color: #777;
  line-height: 1.2;
}

/* Panel wrap */
.light-sel__panel-wrap {
  position: relative;
  min-height: 240px;
}

.light-sel__panel {
  display: none;
}

.light-sel__panel.is-active {
  display: block;
}

/* Panel inner — two columns */
.light-sel__panel-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  background: #111;
  border-radius: 10px;
  padding: 2rem 2.5rem;
}

@media (max-width: 640px) {
  .light-sel__panel-inner {
    grid-template-columns: 1fr;
    padding: 1.5rem 1.25rem;
  }
}

.light-sel__panel-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  color: #fff;
  line-height: 1.1;
  margin-bottom: 0.75rem;
}

.light-sel__panel-text {
  color: rgba(255,255,255,0.80);
  font-size: var(--text-base);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

/* Product chips */
.light-sel__products {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.light-sel__product {
  padding: 0.3rem 0.85rem;
  border: 1px solid var(--red);
  border-radius: 20px;
  font-size: 0.78rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
}

/* ---- CSS Window Visuals (lsv__) ---- */
.light-sel__panel-visual {
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .light-sel__panel-visual {
    display: none;
  }
}

.lsv__room {
  width: 130px;
  height: 160px;
  background: #1e2a38;
  border-radius: 6px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.lsv__room--light {
  background: #2a3545;
}

.lsv__window {
  width: 80px;
  height: 110px;
  border: 3px solid #4a5568;
  border-radius: 3px;
  position: relative;
  overflow: hidden;
  background: #7ab8e8;
}

/* Blackout shade — fills entire window */
.lsv__shade--down {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #1a1a1a 0%, #2d2d2d 100%);
}

/* Light filtering shade — partial, translucent */
.lsv__shade--filter {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 65%;
  background: rgba(210, 185, 140, 0.55);
  backdrop-filter: blur(1px);
}

/* Motorized shade — halfway down */
.lsv__shade--motorized {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 50%;
  background: linear-gradient(180deg, #333 0%, #444 100%);
  animation: shadeMotor 3s ease-in-out infinite;
}

@keyframes shadeMotor {
  0%   { height: 10%; }
  40%  { height: 55%; }
  60%  { height: 55%; }
  100% { height: 10%; }
}

/* Light rays behind filter shade */
.lsv__rays {
  position: absolute;
  top: 65%;
  left: 0; right: 0; bottom: 0;
  background: repeating-linear-gradient(
    100deg,
    rgba(255,220,100,0.18) 0px,
    rgba(255,220,100,0.08) 8px,
    transparent 8px,
    transparent 18px
  );
}

/* Shutters */
.lsv__shutters {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 2px;
}

.lsv__slat {
  flex: 1;
  background: rgba(255,255,255,0.75);
  border-radius: 1px;
}

/* Label under window */
.lsv__label {
  font-size: 0.65rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.80);
  margin-top: 0.5rem;
  text-align: center;
}


/* ============================================================
   32. WINDOW TREATMENTS — SMART HOME ANIMATION (Option D)
   ============================================================ */

.sp-smart-home {
  padding: var(--section-pad-y) 0;
  background: #0a0a0a;
  overflow: hidden;
}

.smart-home {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 768px) {
  .smart-home {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* Copy side */
.smart-home__heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3rem);
  color: #fff;
  line-height: 1.05;
  margin-bottom: 1rem;
}

.smart-home__text {
  color: rgba(255,255,255,0.80);
  font-size: var(--text-base);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 50ch;
}

.smart-home__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.smart-home__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  line-height: 1.5;
}

.smart-home__feature-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

.smart-home__features strong {
  color: #fff;
}

/* Animation side */
.smart-home__animation {
  display: flex;
  gap: 2rem;
  align-items: flex-end;
  justify-content: center;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .smart-home__animation {
    justify-content: center;
  }
}

/* Phone */
.sha__phone {
  width: 70px;
  height: 130px;
  background: #1c1c1c;
  border-radius: 12px;
  border: 2px solid #333;
  padding: 10px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: phonePulse 3s ease-in-out infinite;
}

@keyframes phonePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(204,0,0,0); }
  50% { box-shadow: 0 0 0 6px rgba(204,0,0,0.2); }
}

.sha__phone-screen {
  width: 100%;
  height: 100%;
  background: #0d0d0d;
  border-radius: 7px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.sha__phone-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--red);
  position: relative;
  cursor: pointer;
  animation: btnGlow 3s ease-in-out infinite;
}

@keyframes btnGlow {
  0%, 100% { background: var(--red); box-shadow: none; }
  40%, 60% { background: #ff1a1a; box-shadow: 0 0 10px rgba(204,0,0,0.6); }
}

/* Signal rings */
.sha__signal {
  position: relative;
  width: 36px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sha__signal-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid var(--red);
  opacity: 0;
  animation: signalExpand 3s ease-out infinite;
}

.sha__signal-ring--1 { width: 12px; height: 12px; animation-delay: 0.5s; }
.sha__signal-ring--2 { width: 22px; height: 22px; animation-delay: 0.75s; }
.sha__signal-ring--3 { width: 32px; height: 32px; animation-delay: 1s; }

@keyframes signalExpand {
  0%   { opacity: 0; transform: scale(0.6); }
  30%  { opacity: 0.8; }
  100% { opacity: 0; transform: scale(1.2); }
}

/* Window with shade */
.sha__window-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.sha__window-frame {
  width: 100px;
  height: 140px;
  border: 3px solid #444;
  border-radius: 4px;
  background: #3a6a9a;
  position: relative;
  overflow: hidden;
}

/* The animated shade */
.sha__shade {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, #2a2a2a 0%, #3d3d3d 100%);
  animation: shadeRaise 3s ease-in-out infinite;
  border-bottom: 2px solid #555;
}

@keyframes shadeRaise {
  0%   { height: 90%; }
  45%  { height: 15%; }
  65%  { height: 15%; }
  100% { height: 90%; }
}

/* Light rays that appear when shade raises */
.sha__light-rays {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.sha__ray {
  position: absolute;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, rgba(255,220,100,0.6) 0%, transparent 100%);
  transform-origin: bottom center;
  animation: rayAppear 3s ease-in-out infinite;
}

.sha__ray--1 { left: 25%; height: 60%; transform: rotate(-8deg); animation-delay: 0.1s; }
.sha__ray--2 { left: 50%; height: 75%; transform: rotate(0deg);  animation-delay: 0.15s; }
.sha__ray--3 { left: 72%; height: 55%; transform: rotate(7deg);  animation-delay: 0.2s; }

@keyframes rayAppear {
  0%, 35% { opacity: 0; }
  55%, 75% { opacity: 1; }
  100%     { opacity: 0; }
}

.sha__window-label {
  font-size: 0.65rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.80);
}


/* ============================================================
   36. AUTO — SUNTEK FILM TIER COMPARISON
   ============================================================ */

.sp-suntek {
  padding: var(--section-pad-y) 0;
  background: var(--light-bg);
}

.sp-suntek .section-subhead {
  max-width: 52ch;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-size: var(--text-sm);
  color: #666;
}

.suntek-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}

@media (min-width: 560px) {
  .suntek-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .suntek-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.suntek-card {
  background: #fff;
  border-radius: 10px;
  padding: 1.5rem;
  border: 2px solid #e8e8e8;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  transition: box-shadow 0.2s;
}

.suntek-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.09);
}

.suntek-card--featured {
  border-color: var(--red);
}

.suntek-card__best-badge {
  position: absolute;
  top: -1px;
  right: 1rem;
  background: var(--red);
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.65rem;
  border-radius: 0 0 6px 6px;
}

.suntek-card__header {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.suntek-card__type {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #999;
}

.suntek-card--featured .suntek-card__type {
  color: var(--red);
}

.suntek-card__name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: var(--text-2xl);
  color: var(--black);
  line-height: 1;
}

.suntek-card__tech {
  font-size: var(--text-xs);
  color: #777;
  line-height: 1.5;
  flex-grow: 1;
}

.suntek-card__bars {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.suntek-bar__top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.25rem;
}

.suntek-bar__label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #888;
}

.suntek-bar__val {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--black);
}

.suntek-card--featured .suntek-bar__val {
  color: var(--red);
}

.suntek-bar__track {
  height: 5px;
  background: #ebebeb;
  border-radius: 3px;
  overflow: hidden;
}

.suntek-bar__fill {
  height: 100%;
  width: 0%;
  background: #888;
  border-radius: 3px;
  transition: width 1.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.suntek-card--featured .suntek-bar__fill {
  background: var(--red);
}

.suntek-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  border-top: 1px solid #f0f0f0;
  padding-top: 0.8rem;
}

.suntek-card__features li {
  font-size: var(--text-xs);
  color: #555;
  padding-left: 1.1rem;
  position: relative;
  line-height: 1.4;
}

.suntek-card__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #aaa;
  font-size: 0.65rem;
  top: 0.1em;
}

.suntek-card--featured .suntek-card__features li::before {
  color: var(--red);
}

.suntek-cta {
  text-align: center;
  margin-top: 2rem;
  font-size: var(--text-sm);
  color: #666;
}

.link-red {
  color: var(--red);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.link-red:hover {
  opacity: 0.8;
}


/* ============================================================
   37. AUTO — HEAT REDUCTION COMPARISON
   ============================================================ */

.sp-heat {
  padding: var(--section-pad-y) 0;
  background: var(--black);
}

.sp-heat .section-heading {
  color: #fff;
}

.sp-heat .eyebrow {
  color: var(--red);
}

.sp-heat .animated-underline::after {
  background: var(--red);
}

.section-subhead--light {
  color: rgba(255,255,255,0.80) !important;
}

.heat-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 12px;
  overflow: hidden;
  margin-top: 2.25rem;
  border: 1px solid rgba(255,255,255,0.07);
}

@media (max-width: 560px) {
  .heat-compare {
    grid-template-columns: 1fr;
  }
}

.heat-panel {
  padding: 2.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  position: relative;
  overflow: hidden;
}

.heat-panel--hot {
  background: linear-gradient(160deg, #2a0a0a 0%, #3d1212 60%, #1a0505 100%);
}

.heat-panel--cool {
  background: linear-gradient(160deg, #071520 0%, #0d2235 60%, #071520 100%);
  border-left: 1px solid rgba(255,255,255,0.06);
}

@media (max-width: 560px) {
  .heat-panel--cool {
    border-left: none;
    border-top: 1px solid rgba(255,255,255,0.06);
  }
}

.heat-panel__label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.80);
  z-index: 1;
}

.heat-panel__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.heat-panel--hot .heat-panel__icon {
  background: rgba(204,0,0,0.18);
  color: #ff5555;
}

.heat-panel--cool .heat-panel__icon {
  background: rgba(30,120,200,0.18);
  color: #55aaff;
}

.heat-panel__temp {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(3.5rem, 9vw, 5.5rem);
  line-height: 1;
  letter-spacing: -0.02em;
  z-index: 1;
}

.heat-panel--hot .heat-panel__temp {
  color: #ff4444;
}

.heat-panel--cool .heat-panel__temp {
  color: #44aaff;
}

.heat-panel__sub {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.80);
  line-height: 1.6;
  max-width: 22ch;
  z-index: 1;
}

.heat-panel__tag {
  background: rgba(255,255,255,0.05);
  border-radius: 20px;
  padding: 0.3rem 0.9rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 1;
}

.heat-panel--hot .heat-panel__tag {
  color: #ff7777;
  border: 1px solid rgba(204,0,0,0.3);
}

.heat-panel--cool .heat-panel__tag {
  color: #66bbff;
  border: 1px solid rgba(30,120,200,0.3);
}

/* Subtle sun-ray decoration for hot panel */
.heat-panel__rays {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.heat-panel__ray {
  position: absolute;
  top: -20%;
  left: 50%;
  width: 1.5px;
  height: 140%;
  background: linear-gradient(180deg, rgba(255,80,0,0.12) 0%, transparent 100%);
  transform-origin: top center;
}

.heat-panel__ray:nth-child(1) { transform: rotate(-35deg); }
.heat-panel__ray:nth-child(2) { transform: rotate(-17deg); }
.heat-panel__ray:nth-child(3) { transform: rotate(0deg); }
.heat-panel__ray:nth-child(4) { transform: rotate(17deg); }
.heat-panel__ray:nth-child(5) { transform: rotate(35deg); }

.heat-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.75rem;
  text-align: center;
}

@media (max-width: 560px) {
  .heat-facts {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

.heat-fact__num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: var(--text-3xl);
  color: var(--red);
  line-height: 1;
}

.heat-fact__label {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.80);
  margin-top: 0.3rem;
  line-height: 1.5;
}


/* ============================================================
   38. AUTO — FLORIDA TINT LAW QUICK REFERENCE
   ============================================================ */

.sp-fl-law {
  padding: var(--section-pad-y) 0;
  background: #fff;
}

.fl-law-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-top: 2rem;
  align-items: start;
}

@media (min-width: 768px) {
  .fl-law-layout {
    grid-template-columns: 280px 1fr;
    gap: 3.5rem;
  }
}

.fl-law__diagram {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.fl-law__svg-wrap {
  width: 100%;
  max-width: 260px;
}

.fl-law__legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.25rem;
  justify-content: center;
}

.fl-law__legend-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: var(--text-xs);
  color: #555;
}

.fl-law__legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 2px;
  flex-shrink: 0;
}

.fl-law-table {
  width: 100%;
  border-collapse: collapse;
}

.fl-law-table th {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #999;
  padding: 0.5rem 0.75rem;
  text-align: left;
  border-bottom: 2px solid #e8e8e8;
}

.fl-law-table td {
  padding: 0.9rem 0.75rem;
  font-size: var(--text-sm);
  vertical-align: top;
  border-bottom: 1px solid #f2f2f2;
  color: #444;
  line-height: 1.5;
}

.fl-law-table tr:last-child td {
  border-bottom: none;
}

.fl-law-table__window {
  font-weight: 700;
  color: var(--black);
  white-space: nowrap;
}

.fl-badge {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 4px;
  padding: 0.18rem 0.55rem;
  white-space: nowrap;
}

.fl-badge--restrict {
  background: rgba(204,0,0,0.08);
  color: var(--red);
  border: 1px solid rgba(204,0,0,0.15);
}

.fl-badge--any {
  background: rgba(22,163,74,0.08);
  color: #15803d;
  border: 1px solid rgba(22,163,74,0.2);
}

.fl-badge--strip {
  background: rgba(180,83,9,0.08);
  color: #92400e;
  border: 1px solid rgba(180,83,9,0.2);
}

.fl-law__table-wrap {
  width: 100%;
  overflow-x: auto;
}

/* Mobile: convert to compact stacked rows, hide recommendation column */
@media (max-width: 767px) {
  .fl-law-table thead { display: none; }

  .fl-law-table,
  .fl-law-table tbody { display: block; width: 100%; }

  .fl-law-table tr {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f2f2f2;
  }

  .fl-law-table tr:last-child { border-bottom: none; }

  .fl-law-table td {
    display: block;
    padding: 0;
    border: none;
    font-size: var(--text-xs);
  }

  /* Hide recommendation column on mobile */
  .fl-law-table td:nth-child(3) { display: none; }

  .fl-law-table__window {
    flex: 1 1 auto;
    white-space: normal;
  }

  .fl-law-table td:nth-child(2) {
    flex: 0 0 auto;
  }
}

.fl-law__note {
  margin-top: 1.25rem;
  font-size: var(--text-xs);
  color: #666;
  line-height: 1.7;
  padding: 0.85rem 1rem;
  background: var(--light-bg);
  border-radius: 6px;
  border-left: 3px solid var(--red);
}


/* ============================================================
   GALLERY PAGE
   ============================================================ */

/* Section shell */
.gallery-section {
  background-color: #ffffff;
  padding: 3rem 0 4rem;
}
.gallery-section__subhead {
  font-size: 0.8rem;
  color: #888;
  margin-top: 0.5rem;
  font-family: 'Inter', sans-serif;
}

/* Masonry grid — CSS columns, no JS needed */
.masonry-grid {
  columns: 2;
  column-gap: 0.625rem;
  margin-top: 2.5rem;
}
@media (min-width: 768px) {
  .masonry-grid { columns: 3; column-gap: 0.75rem; }
}
.masonry-item {
  break-inside: avoid;
  margin-bottom: 0.625rem;
  overflow: hidden;
  border-radius: 4px;
  cursor: zoom-in;
}
@media (min-width: 768px) {
  .masonry-item { margin-bottom: 0.75rem; }
}
.masonry-img {
  width: 100%;
  display: block;
  border-radius: 4px;
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.masonry-item:hover .masonry-img {
  transform: scale(1.03);
  opacity: 0.92;
}

/* Lightbox */
.gallery-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.gallery-lightbox.is-open {
  display: flex;
}
.gallery-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.92);
  cursor: zoom-out;
}
.gallery-lightbox__stage {
  position: relative;
  z-index: 1;
  max-width: min(90vw, 1100px);
  max-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-lightbox__img {
  max-width: 100%;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 4px;
  display: block;
  box-shadow: 0 24px 64px rgba(0,0,0,0.6);
}
.gallery-lightbox__close,
.gallery-lightbox__prev,
.gallery-lightbox__next {
  position: fixed;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  cursor: pointer;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  z-index: 2;
  transition: background 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}
.gallery-lightbox__close:hover,
.gallery-lightbox__prev:hover,
.gallery-lightbox__next:hover {
  background: rgba(255,255,255,0.22);
}
.gallery-lightbox__close  { top: 1.25rem; right: 1.25rem; font-size: 1rem; }
.gallery-lightbox__prev   { left: 1rem;  top: 50%; transform: translateY(-50%); }
.gallery-lightbox__next   { right: 1rem; top: 50%; transform: translateY(-50%); }
@media (min-width: 768px) {
  .gallery-lightbox__prev { left: 2rem; }
  .gallery-lightbox__next { right: 2rem; }
}

/* ---- Social section ---- */
.social-section {
  background-color: #0a0a0a;
  padding: 3.5rem 0 4rem;
}
.social-section__inner { }
.social-section__subhead {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.80);
  margin-top: 0.5rem;
  max-width: 480px;
}
.social-section .section-heading {
  color: #ffffff;
}
.social-section .eyebrow {
  color: rgba(255,255,255,0.80);
}

.social-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-top: 2rem;
}
@media (min-width: 480px) {
  .social-links { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 900px) {
  .social-links { grid-template-columns: repeat(6, 1fr); }
}

.social-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 1.25rem 0.75rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}
.social-link:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.18);
  transform: translateY(-2px);
}
.social-link__icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  flex-shrink: 0;
}
.social-link__icon svg { width: 22px; height: 22px; }

/* Platform icon backgrounds */
.social-link__icon--google    { background: #fff; }
.social-link__icon--facebook  { background: #1877F2; color: #fff; }
.social-link__icon--instagram { background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); color: #fff; }
.social-link__icon--yelp      { background: #d32323; color: #fff; }
.social-link__icon--nextdoor  { background: #00B246; color: #fff; }
.social-link__icon--tiktok    { background: #010101; color: #fff; border: 1px solid rgba(255,255,255,0.15); }

.social-link__label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #ffffff;
}
.social-link__sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.6rem;
  color: rgba(255,255,255,0.80);
  letter-spacing: 0.04em;
  text-align: center;
}

/* ---- Gallery CTA section ---- */
.quote-cta-section {
  background-color: #CC0000;
  padding: 3rem 0;
}
.quote-cta-section__inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .quote-cta-section__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.quote-cta-section .eyebrow { color: rgba(255,255,255,0.80); }
.quote-cta-section .section-heading { color: #ffffff; margin-top: 0.25rem; }
.quote-cta-section__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex-shrink: 0;
}
@media (min-width: 480px) {
  .quote-cta-section__actions { flex-direction: row; }
}
.quote-cta-section .btn-primary {
  background: #ffffff;
  color: #CC0000;
  border-color: #ffffff;
}
.quote-cta-section .btn-primary:hover {
  background: #f0f0f0;
  border-color: #f0f0f0;
}


@media print {
  .announcement-bar,
  .site-nav,
  .nav-overlay,
  .hamburger {
    display: none !important;
  }
  body {
    color: #000000;
    background: #ffffff;
  }
}
