/* =========================================================
   GOLDPOST — Junk Removal Outpost
   Design System: Luxury Black & Gold
   ========================================================= */

/* ── Variables ─────────────────────────────────────────── */
:root {
  /* Colors — Midnight Navy + Gold Bar */
  --bg:          #070810;
  --bg-2:        #0C0D18;
  --bg-3:        #121420;
  --bg-card:     #0E0F1C;
  --bg-card-2:   #151722;

  --gold:        #C8862A;
  --gold-light:  #E8A845;
  --gold-dark:   #9B6420;
  --gold-ultra:  #E89030;
  --gold-dim:    rgba(200, 134, 42, 0.15);
  --gold-border: rgba(200, 134, 42, 0.25);
  --gold-glow:   rgba(200, 134, 42, 0.4);

  --white:   #FFFFFF;
  --gray-1:  #E8E8E8;
  --gray-2:  #B0B0B0;
  --gray-3:  #707070;
  --gray-4:  #3a3a3a;
  --gray-5:  #222222;

  --text:       #FFFFFF;
  --text-soft:  #D0C8B8;
  --text-muted: #888888;

  --danger:  #E53935;
  --success: #43A047;

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Gradients */
  --grad-gold:        linear-gradient(135deg, #C8862A 0%, #E89030 50%, #C8862A 100%);
  --grad-gold-v:      linear-gradient(180deg, #C8862A 0%, #9B6420 100%);
  --grad-dark:        linear-gradient(180deg, #070810 0%, #0E0F1C 100%);
  --grad-card:        linear-gradient(145deg, #121420 0%, #0C0D18 100%);
  --grad-hero:        linear-gradient(160deg, #070810 0%, #0A0C16 40%, #070810 100%);
  --grad-section-alt: linear-gradient(180deg, #0C0D18 0%, #080910 100%);

  /* Shadows */
  --shadow-sm:    0 2px 8px rgba(0,0,0,0.4);
  --shadow-md:    0 8px 32px rgba(0,0,0,0.5);
  --shadow-lg:    0 20px 60px rgba(0,0,0,0.6);
  --shadow-gold:  0 0 30px rgba(200, 134, 42, 0.2);
  --shadow-gold-strong: 0 0 60px rgba(200, 134, 42, 0.35);
  --shadow-card:  0 4px 24px rgba(0,0,0,0.45), 0 0 0 1px rgba(200,134,42,0.08);

  /* Spacing */
  --space-xs:  4px;
  --space-sm:  8px;
  --space-md:  16px;
  --space-lg:  24px;
  --space-xl:  40px;
  --space-2xl: 64px;
  --space-3xl: 96px;
  --space-4xl: 128px;

  /* Border radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 100px;

  /* Transitions */
  --t-fast:   150ms ease;
  --t-base:   250ms ease;
  --t-slow:   400ms ease;
  --t-spring: 350ms cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Layout */
  --container: 1280px;
  --nav-h:     80px;
  --nav-h-sm:  64px;
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul, ol { list-style: none; }
input, textarea, select { font: inherit; }
svg { display: block; }

/* ── Scroll Progress Bar ────────────────────────────────── */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: var(--grad-gold);
  z-index: 9999;
  transition: width 100ms linear;
  pointer-events: none;
}

/* ── Typography ─────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--white);
  font-weight: 700;
}
h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: clamp(1.1rem, 1.8vw, 1.4rem); }
h5 { font-size: 1.1rem; }
h6 { font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.12em; }

p { color: var(--text-soft); line-height: 1.75; }
.lead { font-size: 1.15rem; color: var(--gray-2); }

.gold-text { color: var(--gold); }
.gold-gradient-text {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}
.eyebrow::before, .eyebrow::after {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

/* ── Layout Utilities ───────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}
.container-narrow { max-width: 860px; margin: 0 auto; padding: 0 var(--space-xl); }
.section { padding: var(--space-3xl) 0; }
.section-lg { padding: calc(var(--space-3xl) * 1.4) 0; }
.section-alt { background: var(--bg-2); }
.section-dark { background: var(--bg); }
.section-header { text-align: center; margin-bottom: var(--space-2xl); }
.section-header h2 { margin-bottom: var(--space-md); }
.section-header p { max-width: 600px; margin: 0 auto; font-size: 1.05rem; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-xl); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-xl); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-xl); }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.gap-lg { gap: var(--space-lg); }

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all var(--t-base);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s ease, height 0.5s ease, opacity 0.5s ease;
  opacity: 0;
}
.btn:hover::after { width: 300px; height: 300px; opacity: 1; }

.btn-gold {
  background: var(--grad-gold);
  color: #0a0a0a;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(200, 134, 42, 0.3);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(200, 134, 42, 0.5);
  filter: brightness(1.08);
}
.btn-gold:active { transform: translateY(0); }

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold-border);
}
.btn-outline:hover {
  border-color: var(--gold);
  background: var(--gold-dim);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-ghost {
  background: transparent;
  color: var(--gray-1);
  border: 1.5px solid var(--gray-4);
}
.btn-ghost:hover {
  border-color: var(--gray-2);
  background: rgba(255,255,255,0.05);
}

.btn-lg { padding: 18px 44px; font-size: 1.05rem; }
.btn-sm { padding: 10px 22px; font-size: 0.85rem; }

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  align-items: center;
}

/* ── Navigation ─────────────────────────────────────────── */
#site-nav { position: relative; z-index: 1000; }

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  transition: all var(--t-slow);
  background: transparent;
}
.nav.scrolled {
  background: rgba(7, 8, 16, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  height: var(--nav-h-sm);
  border-bottom: 1px solid var(--gold-border);
  box-shadow: 0 4px 32px rgba(0,0,0,0.6);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-xl);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xl);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo-img {
  height: 48px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 1px 4px rgba(0,0,0,.4));
  flex-shrink: 0;
}
.nav-logo-img--footer {
  height: 40px;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.nav-logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  white-space: nowrap;
}
.nav-logo-sub {
  font-size: 0.58rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gray-1);
  border-radius: var(--radius-md);
  transition: color var(--t-fast), background var(--t-fast);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
  color: var(--gold);
  background: var(--gold-dim);
}
.nav-link svg { width: 12px; height: 12px; opacity: 0.7; transition: transform var(--t-base); }
.nav-item:hover .nav-link svg { transform: rotate(180deg); }

/* Mega Menu */
.nav-mega {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all var(--t-base);
  box-shadow: var(--shadow-lg), var(--shadow-gold);
  min-width: 480px;
}
/* Invisible bridge fills the 8px gap so hover doesn't drop when moving from nav link to dropdown */
.nav-mega::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  height: 8px;
}
.nav-item:hover .nav-mega {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.nav-mega-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xs);
}
.nav-mega-link {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 10px 12px;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  color: var(--gray-2);
  transition: all var(--t-fast);
}
.nav-mega-link:hover {
  background: var(--gold-dim);
  color: var(--gold-light);
  transform: translateX(4px);
}
.nav-mega-link-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.nav-mega-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0 12px;
  margin-bottom: var(--space-sm);
  grid-column: 1 / -1;
}

.nav-actions { display: flex; align-items: center; gap: var(--space-md); flex-shrink: 0; }
.nav-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gold-light);
}
.nav-phone svg { width: 14px; height: 14px; }

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--t-base);
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav Drawer */
.nav-mobile {
  position: fixed;
  top: 0; right: 0;
  width: min(380px, 90vw);
  height: 100vh;
  background: var(--bg-card);
  border-left: 1px solid var(--gold-border);
  z-index: 1001;
  transform: translateX(100%);
  transition: transform var(--t-slow);
  overflow-y: auto;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}
.nav-mobile.open { transform: translateX(0); }
.nav-mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all var(--t-base);
}
.nav-mobile-overlay.show { opacity: 1; visibility: visible; }
.nav-mobile-header { display: flex; justify-content: space-between; align-items: center; }
.nav-mobile-close {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--gold-dim);
  color: var(--gold);
  font-size: 1.2rem;
  cursor: pointer;
  transition: background var(--t-fast);
}
.nav-mobile-close:hover { background: var(--gold-border); }
.nav-mobile-links { display: flex; flex-direction: column; gap: 4px; }
.nav-mobile-link {
  display: block;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  font-weight: 500;
  color: var(--gray-1);
  transition: all var(--t-fast);
  font-size: 0.95rem;
}
.nav-mobile-link:hover { background: var(--gold-dim); color: var(--gold); }
.nav-mobile-section-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 16px 16px 4px;
}
.nav-mobile-cta { margin-top: auto; display: flex; flex-direction: column; gap: var(--space-md); }

/* ── Hero ───────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--grad-hero);
  overflow: hidden;
}
.hero-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
}
.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  pointer-events: none;
  z-index: 4;
}

/* Hero slideshow background — rotating before/after pairs */
.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.4s ease-in-out;
}
.hero-slide.active { opacity: 1; }
.slide-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.slide-before { z-index: 1; }
.slide-after {
  z-index: 2;
  opacity: 0;
  transition: opacity 2s ease-in-out;
}
.hero-slide.show-after .slide-after { opacity: 1; }
.slide-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(
    180deg,
    rgba(7,8,16,0.72) 0%,
    rgba(7,8,16,0.52) 50%,
    rgba(7,8,16,0.78) 100%
  );
}
.slide-caption {
  position: absolute;
  bottom: 90px;
  right: 48px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  pointer-events: none;
}
.slide-ba-pill {
  position: relative;
  height: 22px;
  min-width: 52px;
}
.sba-before, .sba-after {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200, 134, 42, 0.22);
  border: 1px solid rgba(200, 134, 42, 0.5);
  border-radius: 100px;
  padding: 0 10px;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  white-space: nowrap;
  transition: opacity 0.9s ease;
}
.sba-after { opacity: 0; }
.hero-slide.show-after .sba-before { opacity: 0; }
.hero-slide.show-after .sba-after  { opacity: 1; }
.slide-job-text {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.42);
  white-space: nowrap;
}

/* Gold corner rays — subtle ambient light effect */
.hero-rays {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 65% 75% at 0% 0%,    rgba(200,134,42,0.32) 0%, transparent 65%),
    radial-gradient(ellipse 50% 60% at 100% 0%,  rgba(200,134,42,0.22) 0%, transparent 65%),
    radial-gradient(ellipse 55% 45% at 100% 100%, rgba(200,134,42,0.18) 0%, transparent 65%),
    radial-gradient(ellipse 90% 30% at 50% 100%, rgba(200,134,42,0.14) 0%, transparent 65%);
  animation: rayPulse 10s ease-in-out infinite alternate;
}
@keyframes rayPulse {
  0%   { opacity: 0.5; }
  100% { opacity: 1.0; }
}

/* ── Site Border Glow — fixed frame on every page ──────────
   Injected as .site-border-glow div by components.js.
   Soft gold border + inner vignette. Pulses on 9s cycle.  */
.site-border-glow {
  position: fixed;
  inset: 0;
  z-index: 9990;
  pointer-events: none;
  border: 1px solid rgba(200, 134, 42, 0.35);
  box-shadow:
    inset 0 0  80px rgba(200, 134, 42, 0.10),
    inset 0 0 180px rgba(200, 134, 42, 0.05);
  animation: borderGlowPulse 9s ease-in-out infinite alternate;
}
@keyframes borderGlowPulse {
  0% {
    border-color: rgba(200, 134, 42, 0.22);
    box-shadow: inset 0 0  80px rgba(200,134,42,0.055),
                inset 0 0 180px rgba(200,134,42,0.022);
  }
  100% {
    border-color: rgba(200, 134, 42, 0.55);
    box-shadow: inset 0 0  80px rgba(200,134,42,0.16),
                inset 0 0 180px rgba(200,134,42,0.075);
  }
}

/* Slightly darker overlay for page-hero sections (shorter, denser content) */
.page-hero .slide-overlay {
  background: linear-gradient(
    180deg,
    rgba(7,8,16,0.78) 0%,
    rgba(7,8,16,0.60) 50%,
    rgba(7,8,16,0.82) 100%
  );
}

.hero-inner {
  position: relative;
  z-index: 5;
  width: 100%;
  /* Subtle dark panel + gold border glow makes text pop against any photo */
  background: radial-gradient(ellipse 80% 100% at 50% 50%, rgba(7,8,16,0.42) 0%, transparent 75%);
  border-radius: var(--radius-lg);
  max-width: var(--container);
  margin: 0 auto;
  padding: calc(var(--nav-h) + 60px) var(--space-xl) 80px;
  text-align: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-xl);
}
.hero-badge .dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; animation: pulse 2s infinite; }
.hero h1 {
  max-width: 860px;
  margin: 0 auto var(--space-lg);
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  filter: drop-shadow(0 2px 16px rgba(0,0,0,0.9)) drop-shadow(0 1px 4px rgba(0,0,0,1));
}
.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--gray-2);
  max-width: 680px;
  margin: 0 auto var(--space-xl);
  line-height: 1.7;
  text-shadow: 0 1px 8px rgba(0,0,0,0.8);
}
.hero-actions { margin-bottom: var(--space-2xl); justify-content: center; }
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
}
.hero-scroll svg { width: 20px; height: 20px; }

/* ── Trust Strip ────────────────────────────────────────── */
.trust-strip {
  background: var(--bg-card);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  padding: var(--space-xl) 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-lg);
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  text-align: center;
  padding: var(--space-md);
  border-radius: var(--radius-md);
  transition: background var(--t-fast);
}
.trust-item:hover { background: var(--gold-dim); }
.trust-icon {
  width: 48px;
  height: 48px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  transition: all var(--t-base);
}
.trust-item:hover .trust-icon {
  background: var(--gold-border);
  box-shadow: var(--shadow-gold);
  transform: scale(1.05);
}
.trust-value {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.trust-label {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── Services Grid ──────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-lg);
}
.service-card {
  background: var(--grad-card);
  border: 1px solid rgba(200,134,42,0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: all var(--t-slow);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-gold);
  opacity: 0;
  transition: opacity var(--t-slow);
  z-index: 0;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad-gold);
  transform: scaleX(0);
  transition: transform var(--t-slow);
  transform-origin: left;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-glow);
  box-shadow: var(--shadow-lg), var(--shadow-gold-strong);
}
.service-card:hover::after { transform: scaleX(1); }
.service-card > * { position: relative; z-index: 1; }
.service-icon {
  width: 56px;
  height: 56px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: all var(--t-base);
  flex-shrink: 0;
}
.service-card:hover .service-icon {
  background: rgba(200,134,42,0.25);
  box-shadow: var(--shadow-gold);
  transform: scale(1.05);
}
.service-card h3 {
  font-size: 1.05rem;
  color: var(--white);
  transition: color var(--t-fast);
}
.service-card:hover h3 { color: var(--gold-light); }
.service-card p { font-size: 0.87rem; color: var(--text-muted); line-height: 1.6; flex: 1; }
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.04em;
  transition: gap var(--t-fast);
  margin-top: auto;
}
.service-card:hover .service-card-link { gap: 10px; }
.service-card-link svg { width: 14px; height: 14px; }

/* ── Difference / White Glove Section ───────────────────── */
.difference-section { background: var(--bg-2); }
.difference-content { max-width: 640px; }
.difference-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.difference-card {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-gold);
  max-width: 420px;
  width: 100%;
}
.difference-list { display: flex; flex-direction: column; gap: var(--space-lg); }
.difference-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}
.difference-check {
  width: 32px;
  height: 32px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 0.9rem;
  margin-top: 2px;
}
.difference-item-text h4 { font-size: 0.95rem; margin-bottom: 2px; }
.difference-item-text p { font-size: 0.83rem; color: var(--text-muted); }

/* ── Gallery Section ────────────────────────────────────── */
.gallery-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

/* Simple photo card — used when BA slider is not active */
.gallery-photo {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  aspect-ratio: 4 / 3;
}
.gallery-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform var(--t-slow);
}
.gallery-item:hover .gallery-photo img { transform: scale(1.04); }

/* Before/After Container */
.ba-container {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: ew-resize;
  user-select: none;
}
.ba-after {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.ba-before {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  clip-path: inset(0 50% 0 0);
  transition: clip-path 0.05s linear;
}
.ba-slider {
  position: absolute;
  top: 0;
  left: 50%;
  width: 3px;
  height: 100%;
  background: var(--grad-gold);
  transform: translateX(-50%);
  z-index: 3;
  cursor: ew-resize;
}
.ba-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  background: var(--grad-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0a0a0a;
  font-weight: 900;
  font-size: 0.9rem;
  box-shadow: var(--shadow-md);
}
.ba-label {
  position: absolute;
  bottom: 12px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  background: rgba(0,0,0,0.7);
  border-radius: var(--radius-pill);
  color: var(--gold-light);
  z-index: 4;
  pointer-events: none;
}
.ba-label-before { left: 12px; }
.ba-label-after { right: 12px; }

/* Auto-fading before/after — homepage gallery preview */
.ba-auto {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  border: 1px solid var(--gold-border);
  box-shadow: var(--shadow-card);
}
.baa-before, .baa-after {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: opacity 1.8s ease-in-out;
}
.baa-before { z-index: 1; opacity: 1; }
.baa-after  { z-index: 2; opacity: 0; }
.ba-auto.show-after .baa-after { opacity: 1; }
.baa-label {
  position: absolute;
  top: 12px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 11px;
  border-radius: var(--radius-pill);
  z-index: 3;
  pointer-events: none;
  transition: opacity 0.8s ease;
}
.baa-label-before {
  left: 12px;
  background: rgba(0,0,0,0.55);
  color: rgba(255,255,255,0.75);
  opacity: 1;
}
.baa-label-after {
  right: 12px;
  background: rgba(200,134,42,0.28);
  border: 1px solid rgba(200,134,42,0.55);
  color: var(--gold-light);
  opacity: 0;
}
.ba-auto.show-after .baa-label-before { opacity: 0; }
.ba-auto.show-after .baa-label-after  { opacity: 1; }

/* ── Reviews Section ────────────────────────────────────── */
.reviews-section { background: var(--bg-2); }
.reviews-aggregate {
  display: flex;
  align-items: center;
  gap: var(--space-2xl);
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  margin-bottom: var(--space-2xl);
  box-shadow: var(--shadow-gold);
}
.reviews-score { text-align: center; flex-shrink: 0; }
.reviews-big-score {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.reviews-stars { color: var(--gold); font-size: 1.3rem; letter-spacing: 2px; margin: 6px 0; }
.reviews-count { font-size: 0.8rem; color: var(--text-muted); }
.reviews-divider { width: 1px; height: 80px; background: var(--gold-border); flex-shrink: 0; }
.reviews-stats { flex: 1; display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-lg); }
.review-stat { text-align: center; }
.review-stat-num {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
}
.review-stat-label { font-size: 0.78rem; color: var(--text-muted); margin-top: 2px; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}
.review-card {
  background: var(--bg-card);
  border: 1px solid rgba(200,134,42,0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: all var(--t-slow);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.review-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card), var(--shadow-gold);
}
.review-header { display: flex; justify-content: space-between; align-items: flex-start; }
.reviewer-info { display: flex; align-items: center; gap: var(--space-md); }
.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--grad-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: #0a0a0a;
  flex-shrink: 0;
}
.reviewer-name { font-weight: 600; font-size: 0.9rem; color: var(--white); }
.reviewer-date { font-size: 0.75rem; color: var(--text-muted); margin-top: 2px; }
.review-stars { color: var(--gold); font-size: 0.85rem; }
.review-text { font-size: 0.875rem; color: var(--gray-2); line-height: 1.65; flex: 1; }
.review-source {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  color: var(--text-muted);
  padding-top: var(--space-sm);
  border-top: 1px solid var(--gray-5);
}
.google-g {
  width: 16px;
  height: 16px;
  background: #4285F4;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 700;
  color: white;
}

/* ── FAQ Accordion ──────────────────────────────────────── */
.faq-section { background: var(--bg); }
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: var(--space-md); }
.faq-item {
  background: var(--bg-card);
  border: 1px solid rgba(200,134,42,0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--t-fast);
}
.faq-item.open { border-color: var(--gold-border); }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg) var(--space-xl);
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  transition: color var(--t-fast);
  user-select: none;
}
.faq-item.open .faq-question { color: var(--gold-light); }
.faq-icon {
  width: 28px;
  height: 28px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
  transition: transform var(--t-base), background var(--t-base);
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: rgba(200,134,42,0.25); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-slow), padding var(--t-slow);
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer-inner {
  padding: 0 var(--space-xl) var(--space-lg);
  font-size: 0.9rem;
  color: var(--gray-2);
  line-height: 1.7;
  border-top: 1px solid var(--gray-5);
  padding-top: var(--space-md);
}

/* ── CTA Sections ───────────────────────────────────────── */
.cta-section {
  background: var(--bg-card);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  text-align: center;
  padding: var(--space-3xl) 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse at center, rgba(200,134,42,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 { margin-bottom: var(--space-md); }
.cta-section p { font-size: 1.05rem; color: var(--gray-2); max-width: 560px; margin: 0 auto var(--space-xl); }

/* ── Service Areas Grid ─────────────────────────────────── */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}
.area-card {
  background: var(--bg-card);
  border: 1px solid rgba(200,134,42,0.1);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  text-align: center;
  transition: all var(--t-base);
  cursor: pointer;
}
.area-card:hover {
  border-color: var(--gold-border);
  background: var(--gold-dim);
  transform: translateY(-3px);
}
.area-card h4 { font-size: 0.95rem; color: var(--white); margin-bottom: 4px; }
.area-card p { font-size: 0.78rem; color: var(--text-muted); }
.area-card svg { width: 20px; height: 20px; color: var(--gold); margin: 0 auto var(--space-sm); }

/* ── Process Section ────────────────────────────────────── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-border), transparent);
}
.process-step { text-align: center; }
.process-num {
  width: 56px;
  height: 56px;
  background: var(--grad-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  color: #0a0a0a;
  margin: 0 auto var(--space-md);
  position: relative;
  z-index: 1;
}
.process-step h4 { font-size: 0.95rem; margin-bottom: var(--space-sm); }
.process-step p { font-size: 0.83rem; color: var(--text-muted); }

/* ── Page Hero (inner pages) ────────────────────────────── */
.page-hero {
  background: var(--grad-hero);
  padding: calc(var(--nav-h) + 60px) 0 60px;
  text-align: center;
  border-bottom: 1px solid var(--gold-border);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 350px;
  background: radial-gradient(ellipse, rgba(200,134,42,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 5; }
.page-hero h1 {
  margin-bottom: var(--space-md);
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  filter: drop-shadow(0 2px 16px rgba(0,0,0,0.9)) drop-shadow(0 1px 4px rgba(0,0,0,1));
}
.page-hero p { font-size: 1.1rem; color: var(--gray-2); max-width: 620px; margin: 0 auto var(--space-xl); text-shadow: 0 1px 8px rgba(0,0,0,0.8); }

/* ── Breadcrumbs ────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: var(--space-lg);
  justify-content: center;
}
.breadcrumb a { color: var(--gold); transition: color var(--t-fast); }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb span { color: var(--gray-4); }

/* ── Service Page Layouts ───────────────────────────────── */
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}
.items-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}
.item-tag {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 10px 14px;
  background: var(--bg-card);
  border: 1px solid rgba(200,134,42,0.1);
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  color: var(--gray-1);
  transition: all var(--t-fast);
}
.item-tag:hover { border-color: var(--gold-border); background: var(--gold-dim); }
.item-tag svg { width: 14px; height: 14px; color: var(--gold); flex-shrink: 0; }

/* ── Location Page ──────────────────────────────────────── */
.location-hero-bg {
  background: var(--grad-hero);
  position: relative;
}
.location-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}
.location-fact {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
}
.location-fact .num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
}
.location-fact p { font-size: 0.82rem; color: var(--text-muted); margin-top: 4px; }

/* ── Contact Form ───────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: var(--space-3xl);
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: var(--space-xl); }
.contact-info-item { display: flex; align-items: flex-start; gap: var(--space-md); }
.contact-info-icon {
  width: 44px;
  height: 44px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-info-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 2px; }
.contact-info-value { font-size: 0.95rem; color: var(--white); font-weight: 500; }
.contact-info-value a { color: var(--gold); }
.contact-info-value a:hover { color: var(--gold-light); }
.form-card {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-gold);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}
.form-input, .form-select, .form-textarea {
  background: var(--bg-3);
  border: 1px solid var(--gray-4);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  color: var(--white);
  font-size: 0.92rem;
  transition: all var(--t-fast);
  width: 100%;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-dim);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--gray-3); }
.form-select { appearance: none; cursor: pointer; }
.form-textarea { resize: vertical; min-height: 120px; }
.form-success {
  display: none;
  text-align: center;
  padding: var(--space-2xl);
  background: rgba(67, 160, 71, 0.1);
  border: 1px solid rgba(67, 160, 71, 0.3);
  border-radius: var(--radius-lg);
  gap: var(--space-md);
}
.form-success.show { display: flex; flex-direction: column; align-items: center; }
.form-success-icon { font-size: 2.5rem; }

/* ── Gallery Page ───────────────────────────────────────── */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
  margin-bottom: var(--space-2xl);
}
.filter-btn {
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-2);
  background: var(--bg-card);
  border: 1px solid var(--gray-4);
  cursor: pointer;
  transition: all var(--t-fast);
}
.filter-btn:hover, .filter-btn.active {
  color: #0a0a0a;
  background: var(--grad-gold);
  border-color: transparent;
}
.gallery-masonry {
  columns: 3;
  column-gap: var(--space-md);
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: var(--space-md);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-item img {
  width: 100%;
  display: block;
  transition: transform var(--t-slow);
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--t-base);
  display: flex;
  align-items: flex-end;
  padding: var(--space-md);
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-label { font-size: 0.82rem; font-weight: 600; color: var(--gold-light); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-xl);
  opacity: 0;
  visibility: hidden;
  transition: all var(--t-base);
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: min(1200px, 90vw);
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}
.lightbox-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 44px; height: 44px;
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
  transition: all var(--t-fast);
}
.lightbox-close:hover { background: var(--gold-dim); color: var(--gold); }

/* ── Footer ─────────────────────────────────────────────── */
#site-footer { background: var(--bg-2); }
.footer {
  border-top: 1px solid var(--gold-border);
  padding: var(--space-3xl) 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: var(--space-3xl);
  padding-bottom: var(--space-2xl);
  border-bottom: 1px solid var(--gray-5);
}
.footer-brand p {
  font-size: 0.87rem;
  color: var(--text-muted);
  margin: var(--space-md) 0 var(--space-lg);
  max-width: 300px;
}
.footer-social { display: flex; gap: var(--space-md); }
.social-icon {
  width: 38px; height: 38px;
  background: var(--bg-card);
  border: 1px solid var(--gray-4);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-2);
  transition: all var(--t-fast);
}
.social-icon svg { width: 18px; height: 18px; flex-shrink: 0; }
.social-icon:hover { border-color: var(--gold-border); background: var(--gold-dim); color: var(--gold); transform: translateY(-2px); }
.footer-heading {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-lg);
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-link {
  font-size: 0.87rem;
  color: var(--text-muted);
  transition: color var(--t-fast);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-link:hover { color: var(--gold-light); }
.footer-link::before { content: '›'; color: var(--gold); opacity: 0.6; }
.footer-contact { display: flex; flex-direction: column; gap: var(--space-md); }
.footer-contact-item { display: flex; align-items: flex-start; gap: var(--space-sm); }
.footer-contact-item svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-contact-text { font-size: 0.85rem; color: var(--text-muted); }
.footer-contact-text a { color: var(--gold-light); }
.footer-contact-text a:hover { color: var(--gold); }
.footer-bottom {
  padding: var(--space-lg) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  flex-wrap: wrap;
}
.footer-bottom-text { font-size: 0.78rem; color: var(--text-muted); }
.footer-bottom-links { display: flex; gap: var(--space-lg); }
.footer-bottom-links a { font-size: 0.78rem; color: var(--text-muted); transition: color var(--t-fast); }
.footer-bottom-links a:hover { color: var(--gold); }
.footer-review-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: var(--bg-card);
  border: 1px solid rgba(200,134,42,0.2);
  border-radius: var(--radius-pill);
  padding: 6px 16px;
  font-size: 0.78rem;
  color: var(--gold-light);
  transition: all var(--t-fast);
}
.footer-review-badge:hover { border-color: var(--gold); background: var(--gold-dim); }

/* ── Floating Mobile CTA ────────────────────────────────── */
.float-cta {
  display: none;
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  flex-direction: column;
  gap: var(--space-sm);
  align-items: flex-end;
}
.float-cta-btn {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 14px 20px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: var(--shadow-lg);
  transition: all var(--t-base);
}
.float-cta-phone {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  color: var(--gold-light);
}
.float-cta-phone:hover { background: var(--gold-dim); }
.float-cta-quote {
  background: var(--grad-gold);
  color: #0a0a0a;
}
.float-cta-quote:hover { box-shadow: 0 8px 32px rgba(200,134,42,0.5); transform: translateY(-2px); }

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 1200px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-2xl); }
  .trust-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1024px) {
  .nav-links, .nav-phone { display: none; }
  .nav-toggle { display: flex; }
  .nav-actions .btn { display: none; }
  .float-cta { display: flex; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-preview-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .difference-section .grid-2 { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
  .areas-grid { grid-template-columns: repeat(3, 1fr); }
  .reviews-aggregate { flex-direction: column; text-align: center; }
  .reviews-divider { width: 80px; height: 1px; }
  .reviews-stats { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .container { padding: 0 var(--space-md); }
  .section { padding: var(--space-2xl) 0; }
  .section-lg { padding: var(--space-2xl) 0; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .gallery-preview-grid { grid-template-columns: 1fr; }
  .gallery-masonry { columns: 2; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: var(--space-xl); }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-grid { grid-template-columns: 1fr; }
  .items-list { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn-lg { padding: 14px 32px; }
  .reviews-stats { grid-template-columns: 1fr; }
  .location-facts { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .trust-grid { grid-template-columns: 1fr; }
  .gallery-masonry { columns: 1; }
  .areas-grid { grid-template-columns: 1fr; }
  h1 { font-size: 2.1rem; }
}

/* ── Section Subtitle ───────────────────────────────────── */
.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-2);
  max-width: 600px;
  margin: 0 auto var(--space-lg);
  line-height: 1.7;
}

/* ── Gold Decorative Line ───────────────────────────────── */
.gold-line {
  width: 60px;
  height: 3px;
  background: var(--grad-gold);
  border-radius: 2px;
  margin: var(--space-md) auto var(--space-xl);
}
.gold-line-left { margin-left: 0; }

/* ── Checklist ──────────────────────────────────────────── */
.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--gray-1);
  line-height: 1.5;
}
.checklist li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── Checklist Grid (location pages) ───────────────────── */
.checklist-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

/* ── Hero Trust Strip (inline in page-hero) ─────────────── */
.page-hero .trust-strip {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-md);
  background: transparent;
  border: none;
  padding: 0;
}
.page-hero .trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--gray-1);
  flex-direction: row;
}
.page-hero .trust-icon {
  width: auto;
  height: auto;
  background: none;
  border: none;
  font-size: 1rem;
}

/* ── Process Step h3 ────────────────────────────────────── */
.process-step h3 {
  font-size: 0.95rem;
  margin-bottom: var(--space-sm);
}

/* ── Contact Page ───────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
}
.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-gold);
}
.contact-form-wrap .eyebrow { margin-bottom: var(--space-sm); }
.contact-form-wrap h2 { margin-bottom: var(--space-md); }
.contact-info-wrap { display: flex; flex-direction: column; gap: 0; }
.contact-card {
  background: var(--bg-card);
  border: 1px solid rgba(200,134,42,0.12);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: border-color var(--t-fast);
}
.contact-card:hover { border-color: var(--gold-border); }
.contact-card-icon {
  font-size: 1.8rem;
  margin-bottom: var(--space-md);
  display: block;
}
.contact-card h3 { font-size: 1rem; margin-bottom: var(--space-sm); }
.contact-card p { font-size: 0.88rem; color: var(--text-muted); }

/* Quote form — raw element styling */
.quote-form { display: flex; flex-direction: column; gap: var(--space-md); }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}
.quote-form input,
.quote-form select,
.quote-form textarea {
  background: var(--bg-3);
  border: 1px solid var(--gray-4);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  color: var(--white);
  font-size: 0.92rem;
  font-family: var(--font-body);
  transition: all var(--t-fast);
  width: 100%;
}
.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-dim);
}
.quote-form input::placeholder,
.quote-form textarea::placeholder { color: var(--gray-3); }
.quote-form select { appearance: none; cursor: pointer; }
.quote-form textarea { resize: vertical; min-height: 120px; }
.quote-form select option { background: var(--bg-3); color: var(--white); }

/* ── FAQ Page Layout ────────────────────────────────────── */
.faq-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
}
.faq-category {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.faq-category-header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--gold-border);
  margin-bottom: var(--space-sm);
}
.faq-category-header h2 {
  font-size: 1.3rem;
  color: var(--white);
}
.faq-category-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}
.faq-category .faq-list {
  max-width: none;
  margin: 0;
}

/* ── Reviews Page ───────────────────────────────────────── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}
.review-card {
  background: var(--bg-card);
  border: 1px solid rgba(200,134,42,0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  transition: all var(--t-slow);
}
.review-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card), var(--shadow-gold);
}
.review-stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; }
.review-text {
  font-size: 0.875rem;
  color: var(--gray-2);
  line-height: 1.7;
  flex: 1;
  font-style: italic;
}
.review-author { margin-top: auto; padding-top: var(--space-md); border-top: 1px solid var(--gray-5); }
.review-author-name { font-weight: 600; font-size: 0.88rem; color: var(--white); }
.review-author-location { font-size: 0.78rem; color: var(--text-muted); margin-top: 2px; }

/* ── Gallery Full-Page Grid ─────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}
.gallery-item {
  background: var(--bg-card);
  border: 1px solid rgba(200,134,42,0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--t-slow);
}
.gallery-item:hover {
  border-color: var(--gold-border);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card), var(--shadow-gold);
}
.gallery-item-info {
  padding: var(--space-lg);
}
.gallery-item-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-sm);
}
.gallery-item-info h3 { font-size: 0.95rem; margin-bottom: var(--space-sm); }
.gallery-item-info p { font-size: 0.83rem; color: var(--text-muted); line-height: 1.5; }

/* Fix ba-before/ba-after for <img> elements */
.ba-before,
.ba-after img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.ba-after {
  position: absolute;
  inset: 0;
}
.ba-before {
  clip-path: inset(0 50% 0 0);
  transition: clip-path 0.05s linear;
  z-index: 2;
}

/* ── Filter Bar (gallery page) ──────────────────────────── */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
  margin-bottom: var(--space-2xl);
}

/* ── Responsive — new classes ───────────────────────────── */
@media (max-width: 1024px) {
  .contact-layout { grid-template-columns: 1fr; }
  .faq-two-col { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .checklist-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .form-row { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .checklist-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .reviews-grid { grid-template-columns: 1fr; }
  .page-hero .trust-strip { gap: var(--space-sm); }
}
