:root {
  --bg: #FCF8ED;
  --bg-alt: #F5EFE0;
  --dark: #1A1A1A;
  --dark-alt: #2A2A2A;
  --primary: #B8923C;
  --primary-light: #D4B05E;
  --primary-dark: #9A7826;
  --text: #3F4156;
  --text-light: #6B6D7F;
  --text-on-dark: #F5EFE0;
  --white: #FFFFFF;
  --border: #E2DCC8;
  --success: #5A8A4A;
  --error: #C04A3A;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-full: 9999px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
  --shadow-glow: 0 0 20px rgba(184, 146, 60, 0.3);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
h1, h2, h3, h4 { font-family: Montserrat, sans-serif; margin: 0 0 var(--space-sm); line-height: 1.2; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 var(--space-md); }
.section { padding: var(--space-2xl) 0; }
.section-label {
  font-family: Montserrat, sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  margin-bottom: var(--space-sm);
}
.section-label.light { color: var(--primary-light); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-sm);
  padding-bottom: var(--space-sm);
}
.logo-link { display: block; }
.logo-img {
  width: 130px;
  height: auto;
}
.main-nav { display: flex; align-items: center; }
.nav-list {
  display: flex;
  gap: var(--space-lg);
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}
.nav-list a { font-family: Montserrat, sans-serif; font-weight: 600; font-size: 0.95rem; color: var(--text); }
.nav-list a:hover { color: var(--primary-dark); }
.phone-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--primary);
  color: var(--dark) !important;
  padding: 0.55rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.phone-pill:hover { transform: translateY(-2px); box-shadow: var(--shadow-glow); }
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-xs);
}
.menu-toggle span { display: block; width: 25px; height: 3px; background: var(--text); border-radius: 2px; transition: 0.3s; }

/* Hero */
.hero {
  position: relative;
  background: var(--bg);
  color: var(--text);
  overflow: hidden;
}
.hero-van {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-van img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}
/* Fade: 10% visible image on left, 100% solid cream on right */
.hero-van::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(252, 248, 237, 0.70) 0%,
    rgba(252, 248, 237, 0.55) 20%,
    rgba(252, 248, 237, 0.20) 50%,
    rgba(252, 248, 237, 0.05) 75%,
    transparent 100%
  );
  z-index: 1;
}
/* Subtle top/bottom softening */
.hero-van::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 0%, transparent 70%, rgba(252,248,237,0.15) 100%);
  z-index: 2;
}
.hero-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(300px, 560px) 1fr;
  gap: var(--space-xl);
  align-items: center;
  padding: var(--space-2xl) 0;
}
.hero-text {
  max-width: 560px;
  text-align: left;
  padding-left: var(--space-md);
}
.hero h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  color: var(--primary-dark);
  margin-bottom: var(--space-md);
  line-height: 1.15;
}
.hero-tagline {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.25rem;
  color: var(--text);
  margin-bottom: var(--space-lg);
}
.hero-actions { display: flex; gap: var(--space-md); flex-wrap: wrap; margin-bottom: var(--space-lg); }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.btn-primary {
  background: var(--primary);
  color: var(--dark);
  box-shadow: 0 0 0 rgba(184,146,60,0);
  animation: pulseGlow 2.5s ease-in-out infinite;
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(184,146,60,0.35); }
  50% { box-shadow: 0 0 18px 4px rgba(184,146,60,0.25); }
}
.btn-outline {
  background: transparent;
  color: var(--primary-dark);
  border-color: var(--primary-dark);
}
.btn-outline:hover { background: var(--primary-dark); color: var(--white); transform: translateY(-2px); }
.btn-full { width: 100%; }
.hero-trust {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.hero-trust span { display: inline-flex; align-items: center; gap: 0.3rem; }
.hero-trust span::before { content: '✓'; color: var(--primary); font-weight: 700; }

/* Stats bar */
.stats-bar {
  position: relative;
  z-index: 3;
  background: var(--dark);
  border-top: 1px solid rgba(184,146,60,0.2);
  border-bottom: 1px solid rgba(184,146,60,0.2);
  padding: var(--space-lg) 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}
.stat-card {
  text-align: center;
  padding: var(--space-md);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(184,146,60,0.25);
  backdrop-filter: blur(6px);
}
.stat-number {
  display: block;
  font-family: Montserrat, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-light);
}
.stat-label { display: block; font-size: 0.85rem; color: var(--text-on-dark); margin-top: 0.25rem; }

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    padding: var(--space-lg) 0 var(--space-xl);
  }
  .hero-text {
    max-width: none;
    text-align: left;
  }
  .hero-actions { justify-content: flex-start; }
  .hero-trust { justify-content: flex-start; }
  .hero-van::before {
    background: linear-gradient(
      to bottom,
      rgba(252, 248, 237, 0.92) 0%,
      rgba(252, 248, 237, 0.60) 40%,
      rgba(252, 248, 237, 0.10) 70%,
      transparent 100%
    );
  }
  .hero-van img {
    object-position: center center;
  }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .hero-grid { padding: var(--space-md) 0; }
  .hero-text { padding-left: var(--space-sm); }
  .hero h1 { font-size: 1.85rem; }
  .hero-tagline { font-size: 1.05rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
/* About */
.about { background: var(--bg); }
.about h2 { color: var(--text); font-size: 2rem; margin-bottom: var(--space-md); }
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-xl);
  align-items: start;
}
.about-text p { margin-bottom: var(--space-md); }
.pull-quote {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.35rem;
  font-style: italic;
  color: var(--primary-dark);
  border-left: 4px solid var(--primary);
  padding-left: var(--space-md);
  margin: var(--space-lg) 0 0;
}
.about-badges { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-sm); }
.badge-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
}
.badge-card strong { display: block; font-family: Montserrat, sans-serif; color: var(--text); margin-bottom: 0.25rem; }
.badge-card span { font-size: 0.85rem; color: var(--text-light); }

/* Services */
.services { background: var(--bg-alt); }
.services h2 { color: var(--text); font-size: 2rem; margin-bottom: var(--space-lg); }
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}
.service-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  min-height: 280px;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 30%, rgba(0,0,0,0.36) 100%);
  z-index: 0;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow), var(--shadow-lg);
  border: 1px solid rgba(184,146,60,0.4);
}
.service-card-inner {
  position: relative;
  z-index: 1;
  padding: var(--space-md);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.service-icon { color: var(--primary-light); margin-bottom: var(--space-sm); }
.service-card h3 { color: var(--white); font-size: 1.25rem; margin-bottom: 0.5rem; }
.service-card p { color: rgba(255,255,255,0.85); font-size: 0.95rem; line-height: 1.5; margin: 0; }

/* Dark stats section */
.stats-section { background: var(--dark); color: var(--text-on-dark); }
.stats-section h2 { color: var(--white); }
.stat-grid-wide {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
}
.stat-card-wide {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(184,146,60,0.3);
  border-radius: var(--radius-md);
  padding: var(--space-lg) var(--space-md);
  text-align: center;
  backdrop-filter: blur(10px);
}
.stat-card-wide .stat-number { font-size: 2.25rem; }
.stat-card-wide .stat-label { margin-top: var(--space-sm); font-size: 0.95rem; }

/* Gallery */
.gallery { background: var(--bg); }
.gallery h2 { color: var(--text); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}
.gallery-card {
  aspect-ratio: 4/3;
  border: none;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-glow), var(--shadow-lg); }
.gallery-card svg { opacity: 0.85; }
.gallery-card span { font-family: Montserrat, sans-serif; font-weight: 600; font-size: 0.9rem; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 300;
  padding: var(--space-md);
}
.lightbox[hidden] { display: none !important; }
.lightbox-close {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
}
.lightbox-content {
  background: var(--white);
  color: var(--text);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  max-width: 600px;
  text-align: center;
}

/* Reviews */
.reviews { background: var(--bg-alt); }
.reviews h2 { color: var(--text); }
.reviews-subtitle { color: var(--text-light); margin-bottom: var(--space-lg); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}
.review-card {
  background: var(--white);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-md);
  margin: 0;
}
.review-card .stars { color: var(--primary); font-size: 1.1rem; margin-bottom: var(--space-sm); }
.review-card p {
  font-family: 'Libre Baskerville', serif;
  font-size: 1rem;
  line-height: 1.5;
  margin: 0 0 var(--space-sm);
}
.review-card footer { color: var(--text-light); font-size: 0.9rem; }
.review-date { display: inline-block; margin-left: 0.5rem; }

/* Contact */
.contact { background: var(--bg); }
.contact h2 { color: var(--text); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-xl);
  align-items: start;
}
.contact-lead { font-size: 1.05rem; margin-bottom: var(--space-md); }
.contact-list { list-style: none; padding: 0; margin: 0; }
.contact-list li { margin-bottom: var(--space-sm); }
.contact-list a { color: var(--text); border-bottom: 1px solid var(--primary); }
.contact-list a:hover { color: var(--primary-dark); }

.contact-form { background: var(--white); padding: var(--space-md); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); position: relative; }
.form-group { margin-bottom: var(--space-md); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-md); }
label {
  display: block;
  font-family: Montserrat, sans-serif;
  font-size: 0.875rem;
  color: var(--text-light);
  margin-bottom: 0.35rem;
}
input, select, textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-alt);
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(184,146,60,0.2);
}
select option { background: var(--dark); color: var(--text-on-dark); }
.honeypot { position: absolute; left: -9999px; }
.form-error { color: var(--error); font-size: 0.9rem; margin-bottom: var(--space-sm); }

.form-group input[aria-invalid="true"],
.form-group select[aria-invalid="true"],
.form-group textarea[aria-invalid="true"] {
  border-color: #e5533d;
  background: rgba(90,20,15,0.45);
}

.success-banner {
  position: fixed;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-md);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}
.success-banner--success { background: #1f8b4c; }
.success-banner--error { background: #a3241c; }
.success-banner p { margin: 0; }

/* Footer */
.site-footer { background: var(--dark); color: var(--text-on-dark); padding-top: var(--space-2xl); }
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}
.footer-col h3 {
  color: var(--primary-light);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-md);
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a:hover { color: var(--primary-light); }
.footer-social .social-links { display: flex; gap: var(--space-sm); margin-bottom: var(--space-md); }
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: var(--primary-light);
  transition: background 0.2s ease, transform 0.2s ease;
}
.footer-social a:hover { background: var(--primary); color: var(--dark); transform: translateY(-2px); }
.footer-logo-card {
  display: inline-block;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}
.footer-logo-card img { width: 170px; height: auto; }
.footer-bottom {
  border-top: 1px solid rgba(184,146,60,0.2);
  padding: var(--space-md) 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-sm);
  font-size: 0.85rem;
  color: var(--text-light);
}

/* Sticky call */
.sticky-call {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 150;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--primary);
  color: var(--dark);
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  padding: 0.9rem;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* Responsive */
@media (max-width: 1024px) {
  .hero h1 { font-size: 2rem; }
  .hero-images img { height: 180px; }
}

@media (max-width: 900px) {
  .phone-pill { font-size: 0.8rem; padding: 0.5rem 0.85rem; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-grid-wide { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .menu-toggle { display: flex; }
  .nav-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    flex-direction: column;
    gap: 0;
    padding: var(--space-sm) var(--space-md);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }
  .nav-list.open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .nav-list li { width: 100%; padding: 0.75rem 0; border-bottom: 1px solid var(--border); }
  .nav-list li:last-child { border-bottom: none; }
  .nav-phone { margin-top: var(--space-sm); }
  .phone-pill { width: 100%; justify-content: center; }

  .hero-grid { grid-template-columns: 1fr; }
  .hero-images { order: -1; }
  .hero-images img { height: 160px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  .service-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-grid-wide { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom .container { flex-direction: column; text-align: center; }

  .section { padding: var(--space-xl) 0; }
  .sticky-call { display: flex; }
  body { padding-bottom: 56px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.75rem; }
  .hero-tagline { font-size: 1rem; }
  .stats-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
}



/* Before & After Section */
.section--before-after { background: var(--bg-alt); }
.before-after-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

/* Before/after slider */
.ba-slider {
  --ba-position: 50%;
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  user-select: none;
  touch-action: pan-y;
  background: var(--dark);
}

.ba-slider__base,
.ba-slider__reveal {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.ba-slider__base img,
.ba-slider__reveal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.ba-slider__reveal {
  clip-path: inset(0 calc(100% - var(--ba-position)) 0 0);
  z-index: 2;
  will-change: clip-path;
}

.ba-slider__handle {
  position: absolute;
  top: 50%;
  left: var(--ba-position);
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--primary);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  cursor: ew-resize;
  z-index: 3;
  box-shadow: 0 0 0 4px rgba(184, 146, 60, 0.25), var(--shadow-md);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
  will-change: left;
}

.ba-slider__handle::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 2px;
  height: 100vh;
  background: var(--primary);
  transform: translate(-50%, -50%);
  z-index: -1;
}

.ba-slider__handle:hover,
.ba-slider__handle:focus-visible {
  background: var(--primary);
  color: var(--dark);
  transform: translate(-50%, -50%) scale(1.05);
}

.ba-slider__handle svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.ba-slider__label {
  position: absolute;
  bottom: 1rem;
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-full);
  font-family: Montserrat, sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  pointer-events: none;
  z-index: 4;
}

.ba-slider__label--base {
  right: 1rem;
  background: rgba(26, 26, 26, 0.85);
  color: var(--text-on-dark);
  border: 1px solid rgba(184,146,60,0.3);
}

.ba-slider__label--reveal {
  left: 1rem;
  background: var(--primary);
  color: var(--dark);
}

@media (max-width: 900px) {
  .before-after-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .ba-slider__handle { width: 48px; height: 48px; }
  .ba-slider__handle svg { width: 16px; height: 16px; }
}
