/* =========================================================
   DELTA EXTERIOR CLEANING & PEST CONTROL: DESIGN SYSTEM
   Premium editorial identity built around the real logo: warm copper
   accent, deep charcoal darks, Fraunces display serif + Inter body.
   ========================================================= */

:root {
  --white: #FFFFFF;
  --off: #F8F6F2;
  --off2: #EAE4D9;
  --night: #0B0B0D;
  --ink: #17171A;
  --ink2: #212124;
  --sub: #6B7280;
  --sub-lt: #9CA3AF;

  --gold: #C8763A;
  --gold-dk: #A85F2B;
  --gold-lt: #F7E8D8;

  --verde: #155E56;
  --verde-lt: #E3F3F0;
  --verde-br: #3FBFAF;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --radius: 16px;
  --radius-lg: 24px;
  --nav-h: 76px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
html, body { overflow-x: hidden; width: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--white);
  color: var(--ink);
}
img { max-width: 100%; display: block; }
a { color: inherit; }

/* Reveal gate */
body:not(.js-ready) .reveal { opacity: 1 !important; transform: none !important; }
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }

.stagger-child > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}
.stagger-child.visible > *:nth-child(1) { transition-delay: 0.05s; opacity: 1; transform: none; }
.stagger-child.visible > *:nth-child(2) { transition-delay: 0.13s; opacity: 1; transform: none; }
.stagger-child.visible > *:nth-child(3) { transition-delay: 0.21s; opacity: 1; transform: none; }
.stagger-child.visible > *:nth-child(4) { transition-delay: 0.29s; opacity: 1; transform: none; }
.stagger-child.visible > *:nth-child(5) { transition-delay: 0.37s; opacity: 1; transform: none; }
.stagger-child.visible > *:nth-child(6) { transition-delay: 0.45s; opacity: 1; transform: none; }
.stagger-child.visible > *:nth-child(7) { transition-delay: 0.53s; opacity: 1; transform: none; }
.stagger-child.visible > *:nth-child(8) { transition-delay: 0.61s; opacity: 1; transform: none; }

/* Typography */
h1, h2, h3, .font-serif { font-family: 'Fraunces', Georgia, serif; }
h1 { font-size: clamp(2.6rem, 5.2vw, 4.4rem); font-weight: 600; line-height: 1.08; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); font-weight: 600; line-height: 1.12; letter-spacing: -0.01em; }
h3 { font-size: 1.3rem; font-weight: 600; line-height: 1.3; }
p { line-height: 1.65; }
em { color: var(--gold); font-style: italic; font-weight: 600; }
.eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--verde-br);
  margin-bottom: 14px;
}
.eyebrow.on-light { color: var(--verde); }

/* Layout */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .section-sm { padding: 44px 0; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.01em;
}
.btn-gold { background: var(--gold); color: var(--white); }
.btn-gold:hover { background: var(--gold-dk); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,118,58,0.35); }
.btn-ghost { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.3); }
.btn-ghost:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.6); transform: translateY(-2px); }
.btn-dark { background: var(--ink); color: var(--white); }
.btn-dark:hover { background: var(--ink2); transform: translateY(-2px); }
.btn-outline-dark { background: transparent; color: var(--ink); border: 1.5px solid rgba(22,25,34,0.25); }
.btn-outline-dark:hover { background: var(--ink); color: var(--white); transform: translateY(-2px); }
.btn-verde { background: var(--verde); color: var(--white); }
.btn-verde:hover { background: #1B5C61; transform: translateY(-2px); }
.btn-block { width: 100%; justify-content: center; }
.btn-lg { padding: 16px 32px; font-size: 0.95rem; }

/* Progress bar */
#progress-bar {
  position: fixed; top: 0; left: 0;
  height: 3px; background: var(--gold);
  width: 0%; z-index: 1000;
  transition: width 0.1s linear;
}

/* ===== NAV ===== */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 900; height: var(--nav-h);
  display: flex; align-items: center;
  background: rgba(16,16,21,0.92);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
nav.scrolled {
  background: rgba(16,16,21,0.98);
  box-shadow: 0 1px 0 rgba(0,0,0,0.2);
}
.nav-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  width: 100%; max-width: 1240px;
  margin: 0 auto; padding: 0 24px;
}
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo img { height: 34px; display: block; }
.nav-links { display: flex; align-items: center; gap: 34px; list-style: none; }
.nav-links a {
  font-size: 0.875rem; font-weight: 500;
  text-decoration: none; color: rgba(255,255,255,0.85);
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--verde-br); }
.nav-right { display: flex; align-items: center; gap: 18px; }
.nav-phone {
  display: flex; align-items: center; gap: 7px;
  font-size: 0.875rem; font-weight: 700;
  text-decoration: none; color: rgba(255,255,255,0.9);
}
.nav-phone svg { color: var(--verde-br); }
.nav-cta .btn-gold { padding: 10px 22px; font-size: 0.825rem; }
.mobile-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 40px; height: 40px; align-items: center; justify-content: center;
  color: var(--white);
}
.mobile-menu {
  position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: var(--ink); z-index: 899;
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s var(--ease);
  box-shadow: 0 12px 24px rgba(0,0,0,0.2);
}
.mobile-menu.open { max-height: 500px; }
.mobile-menu-inner { padding: 8px 24px 24px; display: flex; flex-direction: column; gap: 4px; }
.mobile-menu a {
  padding: 14px 0; text-decoration: none; color: var(--white);
  font-weight: 600; font-size: 1rem; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu .btn { margin-top: 16px; }

@media (max-width: 920px) {
  .nav-links { display: none; }
  .mobile-toggle { display: flex; }
  .nav-cta { display: none; }
}

/* Float CTA */
#float-cta {
  position: fixed; bottom: 24px; right: 24px;
  z-index: 800; opacity: 0;
  transform: translateY(16px); pointer-events: none;
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
#float-cta.show { opacity: 1; transform: none; pointer-events: auto; }
#float-cta a {
  display: flex; align-items: center; gap: 10px;
  background: var(--gold); color: var(--white);
  padding: 14px 22px; border-radius: 50px;
  font-weight: 700; font-size: 0.875rem;
  text-decoration: none;
  box-shadow: 0 8px 32px rgba(200,118,58,0.45);
  transition: all 0.25s var(--ease);
}
#float-cta a:hover { background: var(--gold-dk); transform: translateY(-2px); }
@media (max-width: 640px) { #float-cta span.hide-mobile { display: none; } }

/* ===== HERO ===== */
#hero {
  position: relative; min-height: 92vh;
  display: flex; align-items: center;
  background: var(--night); overflow: hidden;
}
#hero.hero-short { min-height: 62vh; }
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.5;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(16,16,21,0.94) 0%, rgba(16,16,21,0.72) 55%, rgba(16,16,21,0.25) 100%);
}
.hero-overlay.overlay-center {
  background: linear-gradient(180deg, rgba(16,16,21,0.55) 0%, rgba(16,16,21,0.85) 100%);
}
.hero-glow {
  position: absolute; right: -120px; top: 50%;
  transform: translateY(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(63,191,175,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 10;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center;
  padding-top: var(--nav-h); padding-bottom: 48px;
}
.hero-inner.single-col { grid-template-columns: 1fr; text-align: center; }
.hero-inner.single-col .hero-content { max-width: 760px; margin: 0 auto; }
.hero-content { max-width: 620px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(63,191,175,0.16);
  border: 1px solid rgba(63,191,175,0.4);
  color: var(--verde-br); padding: 7px 16px;
  border-radius: 50px; font-size: 0.8rem; font-weight: 600;
  margin-bottom: 24px; opacity: 0;
  animation: fadeUp 0.6s var(--ease) 0.1s forwards;
}
.hero-badge span.dot {
  width: 6px; height: 6px;
  background: var(--verde-br); border-radius: 50%;
  animation: pulse 2s infinite;
}
.hero-h1 { opacity: 0; animation: fadeUp 0.6s var(--ease) 0.25s forwards; margin-bottom: 14px; color: var(--white); }
.hero-h1 em { color: var(--gold); }
.hero-subhead {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem; font-weight: 600;
  color: var(--verde-br); letter-spacing: 0.01em;
  opacity: 0; margin-bottom: 18px;
  animation: fadeUp 0.6s var(--ease) 0.32s forwards;
}
.hero-inner.single-col .hero-subhead { text-align: center; }
.hero-sub {
  font-size: 1.05rem; color: rgba(255,255,255,0.72);
  max-width: 540px; opacity: 0;
  animation: fadeUp 0.6s var(--ease) 0.4s forwards; margin-bottom: 32px;
}
.hero-inner.single-col .hero-sub { margin-left: auto; margin-right: auto; }
.hero-ctas {
  display: flex; gap: 14px; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.6s var(--ease) 0.55s forwards; margin-bottom: 36px;
}
.hero-inner.single-col .hero-ctas { justify-content: center; }
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 20px;
  opacity: 0; animation: fadeUp 0.6s var(--ease) 0.7s forwards;
}
.hero-inner.single-col .hero-trust { justify-content: center; }
.hero-trust-item {
  display: flex; align-items: center; gap: 7px;
  font-size: 0.82rem; color: rgba(255,255,255,0.75); font-weight: 500;
}
.hero-trust-item svg { color: var(--verde-br); flex-shrink: 0; }
.hero-stats { position: relative; opacity: 0; animation: fadeUp 0.6s var(--ease) 0.9s forwards; }
.stat-panel {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg); padding: 32px;
  display: flex; flex-direction: column; gap: 22px;
  max-width: 300px; margin-left: auto;
}
.stat-item { display: flex; flex-direction: column; gap: 4px; }
.stat-num {
  font-family: 'Fraunces', serif; font-size: 2.25rem;
  font-weight: 600; color: var(--gold); line-height: 1;
}
.stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.55); font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase; }
.stat-divider { height: 1px; background: rgba(255,255,255,0.08); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: none; }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: left; }
  .stat-panel { max-width: 100%; margin-left: 0; }
}

/* ===== TRUST BAR ===== */
#trust-bar {
  background: var(--off); padding: 20px 0;
  border-top: 1px solid var(--off2); border-bottom: 1px solid var(--off2);
}
.trust-bar-inner {
  display: flex; align-items: center;
  justify-content: center; flex-wrap: wrap; gap: 0;
}
.trust-bar-item {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 32px; font-size: 0.85rem;
  font-weight: 600; color: var(--ink);
}
.trust-bar-item svg { color: var(--gold); flex-shrink: 0; }
.trust-bar-divider { width: 1px; height: 32px; background: var(--off2); }
@media (max-width: 768px) { .trust-bar-divider { display: none; } .trust-bar-item { padding: 8px 18px; } }

/* ===== WHY US (dark) ===== */
#why-us { background: var(--ink); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.why-photo-wrap { position: relative; border-radius: var(--radius-lg); overflow: hidden; }
.why-photo-wrap img {
  width: 100%; height: 520px; object-fit: cover; display: block;
  transition: transform 0.6s var(--ease);
}
.why-photo-wrap:hover img { transform: scale(1.04); }
.photo-tag {
  position: absolute; bottom: 20px; left: 20px;
  background: rgba(16,16,21,0.8); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12); color: var(--white);
  padding: 7px 16px; border-radius: 50px; font-size: 0.8rem; font-weight: 600;
}
.why-body { color: rgba(255,255,255,0.55); font-size: 1rem; margin-bottom: 36px; }
h2.h2-white { color: var(--white); }
.why-badges { display: flex; flex-direction: column; gap: 14px; }
.why-badge {
  display: flex; align-items: flex-start; gap: 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius); padding: 20px 22px;
  transition: background 0.25s;
}
.why-badge:hover { background: rgba(255,255,255,0.08); }
.why-badge-icon {
  width: 42px; height: 42px;
  background: rgba(200,118,58,0.18); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--gold);
}
.why-badge-text h4 { font-size: 0.925rem; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.why-badge-text p { font-size: 0.82rem; color: rgba(255,255,255,0.45); line-height: 1.5; }
@media (max-width: 900px) { .why-grid { grid-template-columns: 1fr; gap: 40px; } .why-photo-wrap img { height: 340px; } }

/* ===== PROCESS / HOW IT WORKS (light) ===== */
#how-it-works { background: var(--white); }
.how-header { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.how-header h2 { color: var(--ink); }
.how-header p { color: var(--sub); margin-top: 12px; }
.how-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; margin-bottom: 48px; }
.how-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.how-step {
  background: var(--off); border-radius: var(--radius-lg);
  padding: 26px 22px; display: flex; flex-direction: column; gap: 14px;
  transition: box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
}
.how-step:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.1); transform: translateY(-4px); }
.how-num { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; color: var(--sub); text-transform: uppercase; }
.how-icon {
  width: 46px; height: 46px; background: var(--gold-lt);
  border-radius: 12px; display: flex; align-items: center;
  justify-content: center; color: var(--gold-dk);
}
.how-step h3 { font-size: 0.98rem; font-weight: 700; color: var(--ink); }
.how-badge {
  display: inline-block; background: var(--gold); color: var(--white);
  font-size: 0.66rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; padding: 4px 10px; border-radius: 50px;
}
.how-step p { font-size: 0.83rem; color: var(--sub); line-height: 1.6; }
@media (max-width: 980px) { .how-grid, .how-grid.cols-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .how-grid, .how-grid.cols-4 { grid-template-columns: 1fr; } }

/* ===== STATS STRIP (copper) ===== */
#stats-strip { background: var(--gold); padding: 56px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); text-align: center; }
.stat-block { padding: 16px 24px; border-right: 1px solid rgba(255,255,255,0.2); }
.stat-block:last-child { border-right: none; }
.stat-block .big-num {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.4rem, 4.2vw, 3.4rem);
  font-weight: 600; color: var(--white); line-height: 1; margin-bottom: 6px;
}
.stat-block .big-label {
  font-size: 0.8rem; font-weight: 600;
  color: rgba(255,255,255,0.85); text-transform: uppercase; letter-spacing: 0.06em;
}
@media (max-width: 768px) { .stats-grid { grid-template-columns: repeat(2, 1fr); row-gap: 24px; } .stat-block { border-right: none; } }

/* ===== SERVICES (light): home overview cards ===== */
#services { background: var(--off); }
.services-header { text-align: center; max-width: 620px; margin: 0 auto 52px; }
.services-header h2 { color: var(--ink); }
.services-header p { color: var(--sub); margin-top: 12px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 40px; }
.service-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 0 0 28px; display: flex; flex-direction: column; gap: 0;
  border: 1px solid var(--off2); text-decoration: none; color: inherit;
  transition: box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
  overflow: hidden;
}
.service-card:hover { box-shadow: 0 16px 48px rgba(0,0,0,0.1); transform: translateY(-4px); }
.service-card-img { height: 200px; overflow: hidden; }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.service-card:hover .service-card-img img { transform: scale(1.06); }
.service-card-body { padding: 26px 26px 0; display: flex; flex-direction: column; gap: 12px; }
.service-num { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-dk); }
.service-card h3 { font-size: 1.15rem; font-weight: 700; color: var(--ink); }
.service-card p { font-size: 0.875rem; color: var(--sub); line-height: 1.6; }
.service-card-link { display: flex; align-items: center; gap: 6px; font-size: 0.85rem; font-weight: 700; color: var(--ink); margin-top: 4px; }
.service-card:hover .service-card-link { color: var(--gold-dk); }
.services-ctas { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
@media (max-width: 980px) { .services-grid { grid-template-columns: 1fr; } }

/* ===== SUB-SERVICE ICON GRID (service pages) ===== */
#sub-services { background: var(--off); }
.subserv-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.subserv-card {
  background: var(--white); border: 1px solid var(--off2); border-radius: var(--radius);
  padding: 26px 22px; display: flex; flex-direction: column; gap: 12px;
  transition: box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
}
.subserv-card:hover { box-shadow: 0 12px 32px rgba(0,0,0,0.08); transform: translateY(-3px); }
.subserv-icon {
  width: 44px; height: 44px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  background: var(--gold-lt); color: var(--gold-dk);
}
.subserv-card h4 { font-size: 0.95rem; font-weight: 700; color: var(--ink); }
.subserv-card p { font-size: 0.82rem; color: var(--sub); line-height: 1.55; }
@media (max-width: 980px) { .subserv-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .subserv-grid { grid-template-columns: 1fr; } }

/* ===== SPLIT FEATURE (image + copy, reusable light/dark) ===== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }
.split-img { border-radius: var(--radius-lg); overflow: hidden; }
.split-img img { width: 100%; height: 460px; object-fit: cover; }
.split-copy p { color: var(--sub); margin: 14px 0 24px; }
.split-copy.on-dark p { color: rgba(255,255,255,0.55); }
.split-copy.on-dark h2 { color: var(--white); }
.check-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.check-item { display: flex; align-items: flex-start; gap: 12px; font-size: 0.9rem; color: var(--ink); font-weight: 500; }
.check-item svg { color: var(--verde-br); flex-shrink: 0; margin-top: 2px; }
.split-copy.on-dark .check-item { color: rgba(255,255,255,0.85); }
@media (max-width: 900px) { .split, .split.reverse { grid-template-columns: 1fr; direction: ltr; } .split-img img { height: 320px; } }

/* ===== PHOTO GALLERY (masonry-style grid) ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 160px;
  gap: 16px;
}
.gallery-item {
  position: relative; border-radius: var(--radius); overflow: hidden;
  background: var(--off2); cursor: zoom-in;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.5s var(--ease);
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 20px 16px 12px;
  background: linear-gradient(to top, rgba(16,16,21,0.85) 0%, transparent 100%);
  color: var(--white); font-size: 0.78rem; font-weight: 600;
  opacity: 0; transition: opacity 0.25s;
}
.gallery-item:hover .gallery-caption { opacity: 1; }
.gallery-item:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.gallery-expand {
  position: absolute; top: 12px; right: 12px; width: 34px; height: 34px;
  border-radius: 50%; background: rgba(11,11,13,0.55); backdrop-filter: blur(2px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: scale(0.85); transition: opacity 0.25s, transform 0.25s;
  pointer-events: none;
}
.gallery-expand svg { width: 16px; height: 16px; color: var(--white); }
.gallery-item:hover .gallery-expand, .gallery-item:focus-visible .gallery-expand { opacity: 1; transform: scale(1); }
@media (max-width: 980px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery-item.wide { grid-column: span 2; }
}
@media (max-width: 560px) {
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .gallery-item.wide, .gallery-item.tall { grid-column: span 1; grid-row: span 1; }
  .gallery-expand { opacity: 1; transform: scale(1); }
}

/* ===== GALLERY LIGHTBOX ===== */
.lightbox-overlay {
  position: fixed; inset: 0; z-index: 999; background: rgba(11,11,13,0.94);
  display: flex; align-items: center; justify-content: center; padding: 40px;
  opacity: 0; visibility: hidden; transition: opacity 0.3s var(--ease);
}
.lightbox-overlay.open { opacity: 1; visibility: visible; }
.lightbox-figure { position: relative; max-width: min(1100px, 92vw); max-height: 88vh; display: flex; flex-direction: column; align-items: center; }
.lightbox-figure img {
  max-width: 100%; max-height: 78vh; border-radius: 8px; display: block;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  opacity: 0; transform: scale(0.96); transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.lightbox-overlay.open .lightbox-figure img { opacity: 1; transform: scale(1); }
.lightbox-caption { margin-top: 16px; color: var(--white); font-size: 0.95rem; font-weight: 600; text-align: center; }
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: fixed; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.18);
  color: var(--white); border-radius: 50%; width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.18); }
.lightbox-close { top: 24px; right: 24px; }
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-prev:hover, .lightbox-next:hover { transform: translateY(-50%) scale(1.08); }
.lightbox-counter { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,0.6); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.04em; }
@media (max-width: 640px) {
  .lightbox-prev, .lightbox-next { width: 40px; height: 40px; }
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
  .lightbox-close { top: 14px; right: 14px; width: 40px; height: 40px; }
}

/* ===== EMOTIONAL FEATURE (full-bleed photo + overlay copy) ===== */
.emotion-feature {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  min-height: 460px; display: flex; align-items: flex-end;
}
.emotion-feature img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.emotion-feature-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(16,16,21,0.88) 0%, rgba(16,16,21,0.35) 55%, transparent 100%);
}
.emotion-feature-content {
  position: relative; z-index: 2; padding: 48px; max-width: 640px;
}
.emotion-feature-content .eyebrow { color: var(--verde-br); }
.emotion-feature-content h2 { color: var(--white); margin-bottom: 14px; }
.emotion-feature-content p { color: rgba(255,255,255,0.8); font-size: 1rem; margin-bottom: 24px; }
@media (max-width: 768px) {
  .emotion-feature { min-height: 380px; }
  .emotion-feature-content { padding: 28px; }
}

/* ===== BEFORE / AFTER SLIDER ===== */
#before-after { background: var(--white); }
.ba-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.ba-card { display: flex; flex-direction: column; gap: 12px; }
.ba-slider {
  position: relative; width: 100%; aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg); overflow: hidden;
  cursor: ew-resize; user-select: none; touch-action: pan-y;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}
.ba-after, .ba-before { position: absolute; inset: 0; width: 100%; height: 100%; }
.ba-after img, .ba-before img { width: 100%; height: 100%; object-fit: cover; display: block; pointer-events: none; }
.ba-before { clip-path: inset(0 50% 0 0); }
.ba-tag {
  position: absolute; top: 14px; z-index: 3;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 50px; color: var(--white);
  background: rgba(16,16,21,0.6); backdrop-filter: blur(4px);
}
.ba-tag.tag-before { left: 14px; }
.ba-tag.tag-after { right: 14px; }
.ba-handle {
  position: absolute; top: 0; bottom: 0; left: 50%;
  width: 3px; background: var(--white); transform: translateX(-50%);
  z-index: 4; box-shadow: 0 0 0 1px rgba(0,0,0,0.15);
}
.ba-handle::after {
  content: '';
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23161922' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='7 8 3 12 7 16'/%3E%3Cpolyline points='17 8 21 12 17 16'/%3E%3C/svg%3E") center/20px no-repeat;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  cursor: ew-resize;
}
.ba-range {
  position: absolute; inset: 0; width: 100%; height: 100%;
  opacity: 0; cursor: ew-resize; margin: 0; z-index: 5;
  -webkit-appearance: none; appearance: none;
}
.ba-caption { font-size: 0.85rem; color: var(--sub); text-align: center; font-weight: 500; }
@media (max-width: 980px) { .ba-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; } }

/* ===== PRICING / QUOTE NOTE BANNER ===== */
.quote-banner {
  background: var(--verde); border-radius: var(--radius-lg);
  padding: 44px 48px; display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap; color: var(--white);
}
.quote-banner h3 { color: var(--white); font-size: 1.4rem; margin-bottom: 8px; }
.quote-banner p { color: rgba(255,255,255,0.75); font-size: 0.9rem; max-width: 460px; }

/* ===== TESTIMONIALS (dark) ===== */
#testimonials { background: var(--ink); }
.testi-header { text-align: center; max-width: 580px; margin: 0 auto 52px; }
.testi-header h2 { color: var(--white); }
.testi-header p { color: rgba(255,255,255,0.55); margin-top: 12px; }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px; padding: 34px;
  display: flex; flex-direction: column; gap: 18px;
  transition: background 0.25s;
}
.testi-card:hover { background: rgba(255,255,255,0.07); }
.stars { display: flex; gap: 4px; }
.star { color: var(--gold); font-size: 1rem; }
.testi-quote { font-size: 0.925rem; color: rgba(255,255,255,0.8); line-height: 1.7; flex: 1; }
.testi-author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.testi-avatar {
  width: 42px; height: 42px; background: var(--gold-lt);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-weight: 700; font-size: 0.875rem;
  color: var(--gold-dk); flex-shrink: 0;
}
.testi-name { font-weight: 700; font-size: 0.875rem; color: var(--white); }
.testi-detail { font-size: 0.78rem; color: rgba(255,255,255,0.35); margin-top: 2px; }
.testi-grid-2 { grid-template-columns: repeat(2, 1fr); max-width: 800px; margin: 0 auto; }
.testi-grid-1 { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
@media (max-width: 980px) { .testi-grid { grid-template-columns: 1fr; } }

/* ===== SERVICE AREA ===== */
#service-area { background: var(--off); }
.area-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.area-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.area-chip {
  background: var(--white); border: 1px solid var(--off2); border-radius: 50px;
  padding: 10px 20px; font-size: 0.85rem; font-weight: 600; color: var(--ink);
  display: flex; align-items: center; gap: 8px;
}
.area-chip svg { color: var(--gold); }
@media (max-width: 900px) { .area-grid { grid-template-columns: 1fr; gap: 32px; } }

/* ===== FAQ (light) ===== */
#faq { background: var(--white); }
.faq-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 64px; align-items: start; }
.faq-intro h2 { color: var(--ink); }
.faq-intro p { color: var(--sub); margin-top: 12px; margin-bottom: 28px; font-size: 0.95rem; }
.related-service {
  margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--off2);
  font-size: 0.85rem; color: var(--sub); line-height: 1.6;
}
.related-service a { color: var(--gold-dk); font-weight: 600; text-decoration: underline; }
.related-service a:hover { color: var(--gold); }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--off2); overflow: hidden; }
.faq-item:first-child { border-top: 1px solid var(--off2); }
.faq-toggle {
  width: 100%; display: flex; align-items: center;
  justify-content: space-between; gap: 16px; padding: 20px 0;
  background: none; border: none; cursor: pointer; text-align: left;
  font-size: 0.925rem; font-weight: 600; color: var(--ink);
  font-family: 'Inter', sans-serif;
}
.faq-toggle:hover { color: var(--gold-dk); }
.faq-icon {
  width: 28px; height: 28px; background: var(--off2);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
  transition: background 0.2s, transform 0.3s var(--ease); color: var(--ink);
}
.faq-item.open .faq-icon { background: var(--gold); color: var(--white); transform: rotate(45deg); }
.faq-answer {
  font-size: 0.875rem; color: var(--sub); line-height: 1.7;
  max-height: 0; overflow: hidden;
  transition: max-height 0.45s var(--ease), padding 0.3s;
  padding-bottom: 0;
}
.faq-item.open .faq-answer { max-height: 320px; padding-bottom: 20px; }
@media (max-width: 900px) { .faq-grid { grid-template-columns: 1fr; gap: 32px; } }

/* ===== FINAL CTA (dark) ===== */
#final-cta { background: var(--night); position: relative; overflow: hidden; text-align: center; }
.cta-glow {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(200,118,58,0.14) 0%, transparent 70%);
  pointer-events: none;
}
.final-cta-inner { position: relative; z-index: 5; max-width: 640px; margin: 0 auto; }
.final-cta-inner h2 { color: var(--white); }
.final-cta-inner p { color: rgba(255,255,255,0.55); font-size: 1rem; margin: 16px 0 36px; line-height: 1.7; }
.cta-form { display: flex; gap: 12px; margin-bottom: 14px; flex-wrap: wrap; justify-content: center; }
.cta-phone-input {
  flex: 1; min-width: 220px; padding: 14px 20px;
  border-radius: 50px; border: 1.5px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06); color: var(--white);
  font-size: 0.9rem; font-family: 'Inter', sans-serif;
  outline: none; transition: border-color 0.2s;
}
.cta-phone-input::placeholder { color: rgba(255,255,255,0.35); }
.cta-phone-input:focus { border-color: var(--gold); }
.cta-disclaimer { font-size: 0.78rem; color: rgba(255,255,255,0.3); margin-bottom: 32px; }
.cta-disclaimer a { color: var(--verde-br); text-decoration: none; }
.cta-trust-row { display: flex; justify-content: center; flex-wrap: wrap; gap: 20px; margin-top: 36px; }
.cta-trust-item { display: flex; align-items: center; gap: 7px; font-size: 0.8rem; color: rgba(255,255,255,0.45); font-weight: 500; }
.cta-trust-item svg { color: var(--verde-br); }

/* ===== FOOTER ===== */
footer { background: var(--night); padding: 64px 0 0; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
.footer-brand img { height: 32px; display: block; margin-bottom: 14px; }
.footer-tagline { font-size: 0.85rem; color: rgba(255,255,255,0.4); line-height: 1.6; max-width: 260px; margin-top: 14px; }
.footer-col h5 { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.35); margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 0.875rem; color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--verde-br); }
.footer-col .contact-line { display: flex; align-items: flex-start; gap: 10px; font-size: 0.875rem; color: rgba(255,255,255,0.5); margin-bottom: 12px; }
.footer-col .contact-line svg { color: var(--verde-br); flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05); padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.3); }
.footer-certs { display: flex; gap: 12px; flex-wrap: wrap; }
.footer-cert-chip {
  font-size: 0.72rem; font-weight: 600; color: rgba(255,255,255,0.4);
  border: 1px solid rgba(255,255,255,0.1); border-radius: 50px; padding: 5px 12px;
}
@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 560px) { .footer-top { grid-template-columns: 1fr; } .footer-bottom { flex-direction: column; align-items: flex-start; } }

/* ===== ABOUT PAGE: STORY + TEAM + CERTS ===== */
#story { background: var(--white); }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.story-grid .split-img img { height: 500px; }

#certifications { background: var(--off); }
.certs-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.cert-card {
  background: var(--white); border: 1px solid var(--off2); border-radius: var(--radius);
  padding: 24px 20px; text-align: center; display: flex; flex-direction: column; gap: 10px; align-items: center;
}
.cert-icon {
  width: 48px; height: 48px; border-radius: 50%; background: var(--gold-lt);
  color: var(--gold-dk); display: flex; align-items: center; justify-content: center;
}
.cert-card h4 { font-size: 0.85rem; font-weight: 700; color: var(--ink); }
.cert-card p { font-size: 0.75rem; color: var(--sub); }
@media (max-width: 980px) { .certs-grid { grid-template-columns: repeat(2, 1fr); } .story-grid { grid-template-columns: 1fr; gap: 32px; } }

/* ===== CONTACT PAGE ===== */
#contact-main { background: var(--off); }
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 48px; align-items: start; }
.contact-info-card {
  background: var(--ink); border-radius: var(--radius-lg); padding: 40px; color: var(--white);
}
.contact-info-card h3 { color: var(--white); margin-bottom: 20px; }
.contact-info-line { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
.contact-info-line svg { color: var(--verde-br); flex-shrink: 0; margin-top: 3px; }
.contact-info-line strong { display: block; font-size: 0.85rem; color: rgba(255,255,255,0.9); margin-bottom: 2px; }
.contact-info-line span, .contact-info-line a { font-size: 0.875rem; color: rgba(255,255,255,0.55); text-decoration: none; }
.contact-info-line a:hover { color: var(--verde-br); }
.contact-socials { display: flex; gap: 10px; margin-top: 24px; }
.contact-socials a {
  width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center;
  color: var(--white); text-decoration: none; transition: background 0.2s;
}
.contact-socials a:hover { background: var(--gold); color: var(--white); }

.contact-form-card { background: var(--white); border-radius: var(--radius-lg); padding: 40px; border: 1px solid var(--off2); }
.contact-form-card h3 { color: var(--ink); margin-bottom: 6px; }
.contact-form-card > p { color: var(--sub); font-size: 0.9rem; margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 0.8rem; font-weight: 600; color: var(--ink); }
.form-group input, .form-group select, .form-group textarea {
  padding: 13px 16px; border-radius: 10px; border: 1.5px solid var(--off2);
  font-size: 0.9rem; font-family: 'Inter', sans-serif; outline: none;
  transition: border-color 0.2s; background: var(--off);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); background: var(--white); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: 0.78rem; color: var(--sub-lt); margin-top: 10px; text-align: center; }
.form-note a { color: var(--gold-dk); text-decoration: underline; }
.map-embed { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--off2); height: 340px; margin-top: 24px; }
.map-embed iframe { width: 100%; height: 100%; border: 0; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } .form-row { grid-template-columns: 1fr; } }

/* Utility */
.text-center { text-align: center; }
.mt-32 { margin-top: 32px; }
.badge-savings {
  display: inline-flex; align-items: center; gap: 8px; background: var(--gold-lt);
  color: var(--gold-dk); font-weight: 700; font-size: 0.8rem; padding: 8px 18px;
  border-radius: 50px; margin-bottom: 20px;
}

/* ===== POLICY / DOCUMENT CONTENT ===== */
.policy-content { max-width: 760px; }
.policy-content .updated { font-size: 0.85rem; color: var(--sub); margin-bottom: 40px; }
.policy-content h2 { font-size: 1.5rem; color: var(--ink); margin: 44px 0 14px; }
.policy-content h2:first-of-type { margin-top: 0; }
.policy-content p { color: var(--sub); margin-bottom: 16px; max-width: 68ch; }
.policy-content ul { color: var(--sub); margin: 0 0 16px 20px; max-width: 68ch; }
.policy-content li { margin-bottom: 8px; }
.policy-content a { color: var(--gold-dk); font-weight: 600; }
.policy-content strong { color: var(--ink); }
