/* ════════════════════════════════════════════
   USA PRO FLOORS — ELITE V3
   Built to beat the top 5 flooring sites
════════════════════════════════════════════ */

:root {
  --gold: #c8960c;
  --gold-l: #e0a812;
  --gold-xl: #f5c842;
  --gold-fade: rgba(200,150,12,0.12);
  --gold-border: rgba(200,150,12,0.25);
  --dark: #0a0a0a;
  --dark2: #111111;
  --dark3: #181818;
  --dark4: #222222;
  --wood: #3d1f0a;
  --wood-l: #6b3a1f;
  --cream: #faf8f4;
  --warm: #f5ede0;
  --text: #1a1a1a;
  --muted: #777;
  --light-border: #e8e0d5;
  --radius: 10px;
  --shadow: 0 20px 60px rgba(0,0,0,0.12);
  --shadow-dark: 0 20px 60px rgba(0,0,0,0.5);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; max-width: 100vw; }

body {
  font-family: 'Inter', -apple-system, sans-serif;
  color: var(--text);
  background: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ── SCROLL PROGRESS ── */
#progress-bar {
  position: fixed; top: 0; left: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-xl));
  z-index: 9999; width: 0%; transition: width 0.1s;
}

/* ── FLOATER CTA ── */
#float-cta {
  position: fixed; bottom: 100px; right: 24px; z-index: 998;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: 0; transform: translateY(20px); pointer-events: none;
  transition: all 0.4s ease;
}
#float-cta.show { opacity: 1; transform: translateY(0); pointer-events: all; }
.float-btn {
  width: 58px; height: 58px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; cursor: pointer;
  text-decoration: none; border: none;
  box-shadow: 0 8px 30px rgba(0,0,0,0.35);
  transition: transform 0.2s;
  position: relative;
}
.float-btn:hover { transform: scale(1.1); }
.float-call {
  background: var(--gold);
  animation: ring 2.5s ease-in-out infinite;
}
@keyframes ring {
  0%,100% { box-shadow: 0 0 0 0 rgba(200,150,12,0.6), 0 8px 30px rgba(0,0,0,0.35); }
  50% { box-shadow: 0 0 0 16px rgba(200,150,12,0), 0 8px 30px rgba(0,0,0,0.35); }
}
.float-label {
  background: var(--dark); color: #fff;
  font-size: 0.65rem; font-weight: 700; letter-spacing: 1px;
  padding: 3px 8px; border-radius: 10px; white-space: nowrap;
}

/* ══ NAV ══ */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: all 0.4s ease;
  padding: 0 5%;
}
#nav.scrolled {
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gold-border);
  box-shadow: 0 4px 40px rgba(0,0,0,0.6);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 80px; overflow: visible;
}
.logo { display: flex; align-items: center; text-decoration: none; position: relative; padding: 0 24px 0 0; }
.logo img { height: 240px; width: auto; display: block; position: relative; z-index: 2; }
/* Diagonal slash separator after logo */
.logo::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%; transform: translateY(-50%);
  width: 2px; height: 70px;
  background: linear-gradient(180deg, transparent, var(--gold), transparent);
  transform: translateY(-50%) skewX(-15deg);
}
.nav-menu { display: flex; align-items: center; gap: 2rem; margin-left: 2rem; }
.nav-menu a {
  color: rgba(255,255,255,0.85); font-size: 1rem; font-weight: 700;
  text-decoration: none; letter-spacing: 0.5px; position: relative;
  transition: color 0.2s; text-transform: uppercase;
}
.nav-menu a::after {
  content: ''; position: absolute; bottom: -3px; left: 0; right: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.3s ease;
}
.nav-menu a:hover { color: #fff; }
.nav-menu a:hover::after { transform: scaleX(1); transform-origin: left; }
/* ── Nav Dropdown (Blog) ── */
.nav-dropdown { position: relative; }
.nav-dropdown .dropdown-trigger { display: inline-flex; align-items: center; gap: 4px; cursor: pointer; }
.nav-dropdown .dd-arrow { font-size: 0.7rem; transition: transform 0.25s ease; opacity: 0.8; }
.nav-dropdown:hover .dd-arrow, .nav-dropdown.open .dd-arrow { transform: rotate(180deg); opacity: 1; }
.dropdown-menu {
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(-6px);
  min-width: 340px; background: rgba(18,18,20,0.98); backdrop-filter: blur(12px);
  border: 1px solid rgba(212,175,55,0.25); border-radius: 12px;
  box-shadow: 0 18px 48px rgba(0,0,0,0.55), 0 0 0 1px rgba(212,175,55,0.08) inset;
  padding: 8px; opacity: 0; pointer-events: none; visibility: hidden;
  transition: opacity 0.2s ease, transform 0.22s ease, visibility 0.22s;
  z-index: 1200;
}
.nav-dropdown:hover .dropdown-menu, .nav-dropdown.open .dropdown-menu, .nav-dropdown:focus-within .dropdown-menu {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.dropdown-menu::before {
  content: ''; position: absolute; top: -14px; left: 0; right: 0; height: 14px;
}
.dropdown-menu a {
  display: block; padding: 10px 14px; border-radius: 8px;
  color: rgba(255,255,255,0.82) !important; font-size: 0.88rem; font-weight: 600;
  letter-spacing: 0.2px; text-transform: none !important; line-height: 1.35;
  transition: background 0.18s, color 0.18s, padding-left 0.2s;
}
.dropdown-menu a::after { display: none !important; }
.dropdown-menu a:hover {
  background: rgba(212,175,55,0.1); color: var(--gold) !important;
  padding-left: 18px;
}
.dropdown-menu a.dd-featured {
  color: var(--gold) !important; font-weight: 800;
  border-bottom: 1px solid rgba(212,175,55,0.18);
  margin-bottom: 6px; padding-bottom: 12px;
}
.nav-right { display: flex; align-items: center; gap: 1rem; }
.nav-tel { color: rgba(255,255,255,0.85); font-size: 0.9rem; font-weight: 700; text-decoration: none; transition: color 0.2s; }
.nav-tel:hover { color: var(--gold); }

/* ══ HAMBURGER + MOBILE DRAWER ══ */
#hamburger {
  display: none; background: transparent; border: 1px solid rgba(255,255,255,0.2);
  width: 44px; height: 44px; border-radius: 8px; padding: 0; cursor: pointer;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px;
  transition: all 0.2s;
}
#hamburger:hover { border-color: var(--gold); }
#hamburger span {
  display: block; width: 22px; height: 2px; background: #fff;
  border-radius: 2px; transition: all 0.25s ease;
}
#hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); background: var(--gold); }
#hamburger.open span:nth-child(2) { opacity: 0; }
#hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: var(--gold); }

#mobile-drawer-overlay {
  display: none; position: fixed; inset: 0; z-index: 1099;
  background: rgba(0,0,0,0.7); backdrop-filter: blur(4px);
  opacity: 0; transition: opacity 0.3s ease;
}
#mobile-drawer-overlay.show { display: block; opacity: 1; }

#mobile-drawer {
  position: fixed; top: 0; right: -100%; width: min(340px, 88vw); height: 100vh;
  z-index: 1100; background: linear-gradient(180deg, #0a0a0a, #1a0d03);
  border-left: 2px solid var(--gold); box-shadow: -8px 0 40px rgba(0,0,0,0.6);
  transition: right 0.32s cubic-bezier(.4,.0,.2,1);
  display: flex; flex-direction: column; overflow-y: auto;
}
#mobile-drawer.open { right: 0; }
.md-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.1rem 1.2rem; border-bottom: 1px solid rgba(200,150,12,0.2);
}
.md-close {
  background: transparent; border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.8); width: 36px; height: 36px; border-radius: 6px;
  font-size: 1.1rem; cursor: pointer; transition: all 0.2s;
}
.md-close:hover { border-color: var(--gold); color: var(--gold); }
.md-links { display: flex; flex-direction: column; padding: 0.5rem 0; flex: 1; }
.md-links a {
  padding: 0.95rem 1.4rem; color: rgba(255,255,255,0.9);
  font-size: 0.98rem; font-weight: 600; text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: all 0.15s;
}
.md-links a:hover, .md-links a:active { background: rgba(200,150,12,0.08); color: var(--gold); padding-left: 1.7rem; }
.md-cta { padding: 1rem 1.2rem; display: flex; flex-direction: column; gap: 0.6rem; border-top: 1px solid rgba(200,150,12,0.2); }
.md-cta a {
  padding: 0.85rem 1rem; border-radius: 8px; text-align: center;
  font-weight: 700; font-size: 0.95rem; text-decoration: none;
}
.md-call { background: var(--gold); color: #fff; }
.md-wa { background: #25D366; color: #fff; }
.md-quote { background: transparent; border: 1px solid rgba(255,255,255,0.2); color: #fff; }
.md-foot { padding: 1rem 1.2rem 1.4rem; text-align: center; border-top: 1px solid rgba(255,255,255,0.04); }
.md-foot p { font-size: 0.75rem; color: rgba(255,255,255,0.4); margin: 0.2rem 0; }
body.drawer-open { overflow: hidden; }
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'Inter', sans-serif; font-weight: 700; font-size: 0.88rem;
  border-radius: 5px; text-decoration: none; border: none; cursor: pointer;
  letter-spacing: 0.2px; transition: all 0.25s ease;
}
.btn-gold { background: var(--gold); color: #1a1a1a; padding: 0.65rem 1.4rem; box-shadow: 0 4px 20px rgba(200,150,12,0.35); }
.btn-gold:hover { background: var(--gold-l); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(200,150,12,0.5); }
.btn-lg { padding: 1rem 2.2rem; font-size: 1rem; box-shadow: 0 6px 25px rgba(200,150,12,0.4); }
.btn-xl { padding: 1.1rem 2.5rem; font-size: 1.05rem; }
.btn-ghost { background: transparent; color: #fff; padding: 1rem 2rem; font-size: 1rem; border: 2px solid rgba(255,255,255,0.4); }
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,0.08); transform: translateY(-2px); }
.btn-white { background: #fff; color: var(--gold); padding: 1rem 2.2rem; font-size: 1rem; font-weight: 800; box-shadow: 0 6px 25px rgba(0,0,0,0.2); }
.btn-white:hover { transform: translateY(-3px); box-shadow: 0 12px 35px rgba(0,0,0,0.25); }

/* ══ HERO ══ */
#hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
}
/* Responsive hero bg — mobile gets 480w, tablet 800w, desktop 1200w (im7) */
.hero-image {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.75) 50%, rgba(10,10,10,0.4) 100%),
    url('/images/bg/hero-living-room-1200w.webp') center/cover no-repeat;
}
@media (max-width: 820px) {
  .hero-image {
    background:
      linear-gradient(to right, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.75) 50%, rgba(10,10,10,0.4) 100%),
      url('/images/bg/hero-living-room-800w.webp') center/cover no-repeat;
  }
}
@media (max-width: 500px) {
  .hero-image {
    background:
      linear-gradient(to right, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.75) 50%, rgba(10,10,10,0.4) 100%),
      url('/images/bg/hero-living-room-480w.webp') center/cover no-repeat;
  }
}
/* JPEG fallback for legacy browsers that don't support WebP */
@supports not (background: url('x.webp')) {
  .hero-image {
    background:
      linear-gradient(to right, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.75) 50%, rgba(10,10,10,0.4) 100%),
      url('/images/bg/hero-living-room.jpg') center/cover no-repeat !important;
  }
}
.hero-image-fallback {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(135deg, #0a0a0a 0%, #2d1b0e 50%, #0a0a0a 100%);
}
.hero-particles {
  position: absolute; inset: 0; overflow: hidden; pointer-events: none;
}
.hero-particles span {
  position: absolute; width: 2px; height: 2px; border-radius: 50%;
  background: var(--gold); opacity: 0;
  animation: float-particle 8s ease-in-out infinite;
}
.hero-particles span:nth-child(1)  { left:10%; top:20%; animation-delay:0s; }
.hero-particles span:nth-child(2)  { left:30%; top:60%; animation-delay:1s; }
.hero-particles span:nth-child(3)  { left:55%; top:30%; animation-delay:2s; }
.hero-particles span:nth-child(4)  { left:70%; top:70%; animation-delay:3s; }
.hero-particles span:nth-child(5)  { left:85%; top:40%; animation-delay:4s; }
.hero-particles span:nth-child(6)  { left:20%; top:80%; animation-delay:1.5s; }
@keyframes float-particle {
  0%,100% { opacity: 0; transform: translateY(0); }
  25% { opacity: 0.6; }
  75% { opacity: 0.3; }
  50% { transform: translateY(-40px); }
}
.hero-wrap {
  position: relative; z-index: 2;
  max-width: 1280px; margin: 0 auto;
  padding: 150px 5% 100px;
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 4rem; align-items: center;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(200,150,12,0.15); border: 1px solid var(--gold-border);
  border-radius: 30px; padding: 0.4rem 1.1rem;
  color: var(--gold); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 1.5rem;
}
.hero-tag .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); animation: pulse-dot 1.5s ease infinite; }
@keyframes pulse-dot { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.4); opacity: 0.6; } }
#hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  color: #fff; line-height: 1.1; margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
}
#hero h1 .accent { color: var(--gold); font-style: italic; }
.hero-desc {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(255,255,255,0.65); line-height: 1.8;
  margin-bottom: 2.5rem; max-width: 540px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-proof {
  display: flex; align-items: center; gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
}
.proof-item { display: flex; flex-direction: column; align-items: flex-start; }
.proof-num { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 900; color: var(--gold); line-height: 1; }
.proof-text { font-size: 0.68rem; color: rgba(255,255,255,0.45); letter-spacing: 1.5px; text-transform: uppercase; margin-top: 2px; }
.proof-sep { width: 1px; height: 36px; background: rgba(255,255,255,0.12); }

/* Hero form card */
.hero-card {
  background: rgba(15,15,15,0.85);
  border: 1px solid var(--gold-border);
  border-radius: 14px; padding: 2rem;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-dark);
}
.hc-head { margin-bottom: 1.5rem; }
.hc-head span { font-size: 0.7rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); }
.hc-head h3 { font-size: 1.2rem; font-weight: 700; color: #fff; margin-top: 0.25rem; }
.hc-head p { font-size: 0.8rem; color: rgba(255,255,255,0.4); margin-top: 0.2rem; }
.hf-field { margin-bottom: 0.9rem; }
.hf-field input, .hf-field select {
  width: 100%;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  color: #fff; padding: 0.85rem 1rem; border-radius: 6px;
  font-family: 'Inter', sans-serif; font-size: 0.9rem;
  transition: all 0.2s;
}
.hf-field input::placeholder { color: rgba(255,255,255,0.3); }
.hf-field input:focus, .hf-field select:focus {
  outline: none; border-color: var(--gold);
  background: rgba(255,255,255,0.1);
  box-shadow: 0 0 0 3px rgba(200,150,12,0.12);
}
.hf-field select option { background: #1a1a1a; }
.hf-submit { width: 100%; justify-content: center; font-size: 0.95rem; padding: 0.95rem; }
.hf-note { text-align: center; font-size: 0.72rem; color: rgba(255,255,255,0.3); margin-top: 0.6rem; }
.hf-tel { text-align: center; margin-top: 0.75rem; padding-top: 0.75rem; border-top: 1px solid rgba(255,255,255,0.08); }
.hf-tel a { color: var(--gold); font-weight: 700; font-size: 0.88rem; text-decoration: none; }

/* ══ TICKER ══ */
#ticker {
  background: var(--gold);
  overflow: hidden; padding: 0.6rem 0;
  white-space: nowrap;
}
.ticker-track {
  display: inline-flex; gap: 3rem;
  animation: ticker 30s linear infinite;
}
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.ticker-item { font-size: 0.75rem; font-weight: 700; color: #1a1a1a; letter-spacing: 1.5px; text-transform: uppercase; display: flex; align-items: center; gap: 0.75rem; }
.ticker-item::before { content: '✦'; opacity: 0.7; }

/* ══ STATS ══ */
#stats {
  background: var(--dark2);
  padding: 0; border-bottom: 1px solid rgba(200,150,12,0.15);
}
.stats-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(5, 1fr);
}
.stat {
  padding: 2.5rem 1.5rem; text-align: center;
  border-right: 1px solid rgba(200,150,12,0.1);
  transition: background 0.3s;
}
.stat:last-child { border-right: none; }
.stat:hover { background: rgba(200,150,12,0.05); }
.stat-n {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem; font-weight: 900;
  color: var(--gold); line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-l { font-size: 0.72rem; color: rgba(255,255,255,0.45); letter-spacing: 1.5px; text-transform: uppercase; }

/* ══ SECTION BASE ══ */
.s { padding: 100px 5%; }
.s-inner { max-width: 1280px; margin: 0 auto; }
.eyebrow {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 0.6rem; display: block;
}
h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3.5vw, 2.9rem);
  line-height: 1.15; color: inherit;
}
.desc { color: var(--muted); font-size: 1.05rem; line-height: 1.8; max-width: 580px; margin-top: 0.75rem; }
.s-head { margin-bottom: 3.5rem; }
.s-head.c { text-align: center; }
.s-head.c .desc { margin-left: auto; margin-right: auto; }

/* ══ SERVICES ══ */
#services { background: #fff; }
.svc-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.svc {
  background: var(--cream); border-radius: var(--radius);
  padding: 2.2rem; border: 1px solid transparent;
  position: relative; overflow: hidden;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex; flex-direction: column;
}
.svc a.svc-link:first-of-type { margin-top: auto; }
.svc::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-xl));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
}
.svc:hover {
  border-color: var(--gold-border);
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  background: #fff;
}
.svc:hover::after { transform: scaleX(1); }
.svc-n {
  font-family: 'Playfair Display', serif;
  font-size: 4rem; font-weight: 900;
  color: rgba(200,150,12,0.08); line-height: 1;
  position: absolute; top: 1rem; right: 1.5rem;
  transition: color 0.3s;
}
.svc:hover .svc-n { color: rgba(200,150,12,0.15); }
.svc-ico { font-size: 2rem; margin-bottom: 0.75rem; }
.svc h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.6rem; }
.svc p { font-size: 0.9rem; color: var(--muted); line-height: 1.7; }
.svc-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--gold); font-size: 0.82rem; font-weight: 700;
  margin-top: 1.1rem; text-decoration: none; letter-spacing: 0.5px;
  transition: gap 0.2s;
}
.svc-link:hover { gap: 10px; }

/* ══ BEFORE/AFTER SLIDER ══ */
#gallery { background: var(--dark); }
#gallery h2 { color: #fff; }
.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.gal-item {
  border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 4/3; position: relative;
  cursor: pointer;
}
.gal-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
  background: linear-gradient(135deg, #c8a882, #7a4f2a);
}
.gal-item:hover .gal-img { transform: scale(1.06); }
.gal-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 55%);
  opacity: 0; transition: opacity 0.3s;
  display: flex; flex-direction: column;
  justify-content: flex-end; padding: 1.5rem;
}
.gal-item:hover .gal-overlay { opacity: 1; }
.gal-tag { font-size: 0.68rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 0.25rem; }
.gal-caption { font-size: 0.9rem; font-weight: 700; color: #fff; }

/* Before/After Slider */
.ba-slider {
  position: relative; border-radius: var(--radius); overflow: hidden;
  grid-column: span 3; aspect-ratio: 21/9; cursor: ew-resize;
  user-select: none;
}
.ba-before, .ba-after {
  position: absolute; inset: 0; width: 100%; height: 100%;
}
.ba-before {
  background: url('/images/bg/ba-before.jpg') center/cover no-repeat;
  background-color: #3d2010;
  filter: saturate(0.3) brightness(0.6);
}
.ba-after {
  background: url('/images/bg/ba-after.jpg') center/cover no-repeat;
  background-color: #c8a882;
  clip-path: inset(0 50% 0 0);
  transition: clip-path 0s;
}
/* Multi-slider grid */
.ba-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-top: 2rem; }
.ba-mini { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; cursor: ew-resize; user-select: none; }
.ba-mini .ba-before, .ba-mini .ba-after { position: absolute; inset: 0; width: 100%; height: 100%; }
.ba-mini .ba-after { clip-path: inset(0 50% 0 0); transition: clip-path 0s; }
.ba-mini .ba-handle { position: absolute; top: 0; bottom: 0; left: 50%; width: 3px; background: #fff; transform: translateX(-50%); z-index: 3; pointer-events: none; }
.ba-mini .ba-handle-circle { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 36px; height: 36px; border-radius: 50%; background: #fff; box-shadow: 0 4px 20px rgba(0,0,0,0.4); display: flex; align-items: center; justify-content: center; font-size: 0.85rem; pointer-events: none; }
.ba-mini .ba-label-b, .ba-mini .ba-label-a { position: absolute; top: 12px; z-index: 4; background: rgba(0,0,0,0.6); color: #fff; font-size: 0.65rem; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; padding: 3px 8px; border-radius: 3px; }
.ba-mini .ba-label-b { left: 12px; }
.ba-mini .ba-label-a { right: 12px; background: rgba(200,150,12,0.8); }
@media(max-width:768px){ .ba-grid { grid-template-columns: 1fr; } }
.ba-handle {
  position: absolute; top: 0; bottom: 0; left: 50%;
  width: 3px; background: #fff; transform: translateX(-50%);
  z-index: 3; pointer-events: none;
}
.ba-handle-circle {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: #fff; box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; pointer-events: none;
}
.ba-label-b, .ba-label-a {
  position: absolute; top: 20px; z-index: 4;
  background: rgba(0,0,0,0.6); color: #fff;
  font-size: 0.7rem; font-weight: 800; letter-spacing: 2px;
  text-transform: uppercase; padding: 4px 10px; border-radius: 3px;
}
.ba-label-b { left: 20px; }
.ba-label-a { right: 20px; background: rgba(200,150,12,0.8); }
.ba-instruction {
  position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%);
  background: rgba(0,0,0,0.5); color: rgba(255,255,255,0.8);
  font-size: 0.72rem; padding: 4px 12px; border-radius: 10px; z-index: 4; pointer-events: none;
  animation: fade-hint 4s ease forwards 2s;
}
@keyframes fade-hint { to { opacity: 0; } }

/* gallery single photos */
.gal-single { aspect-ratio: 4/3; grid-column: 1; }
.gal-wide { aspect-ratio: 16/7; grid-column: span 2; }

/* ══ PROCESS ══ */
#process { background: var(--cream); }
.process-line {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
  position: relative;
}
.process-line::before {
  content: ''; position: absolute;
  top: 32px; left: 12%; right: 12%; height: 1px;
  background: repeating-linear-gradient(90deg, var(--gold) 0, var(--gold) 8px, transparent 8px, transparent 16px);
  opacity: 0.4;
}
.proc-step { text-align: center; position: relative; }
.proc-num {
  width: 64px; height: 64px; border-radius: 50%;
  background: #fff; border: 2px solid var(--gold);
  color: var(--gold); font-size: 1.2rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: 0 8px 30px rgba(200,150,12,0.2);
  transition: all 0.3s;
}
.proc-step:hover .proc-num { background: var(--gold); color: #fff; transform: scale(1.1); box-shadow: 0 12px 40px rgba(200,150,12,0.4); }
.proc-step h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--text); }
.proc-step p { font-size: 0.87rem; color: var(--muted); line-height: 1.65; }

/* ══ TESTIMONIALS ══ */
#reviews { background: #fff; }
.rev-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.rev-card {
  background: var(--cream); border-radius: var(--radius);
  padding: 2rem; border: 1px solid var(--light-border);
  position: relative; overflow: hidden;
  transition: all 0.3s ease;
}
.rev-card::before {
  content: '\201C';
  position: absolute; top: -15px; right: 18px;
  font-family: 'Playfair Display', serif;
  font-size: 9rem; color: rgba(200,150,12,0.07);
  line-height: 1; pointer-events: none;
}
.rev-card:hover { border-color: var(--gold-border); transform: translateY(-5px); box-shadow: var(--shadow); }
.rev-stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 1rem; }
.rev-text { font-size: 0.95rem; color: #444; line-height: 1.8; font-style: italic; margin-bottom: 1.5rem; }
.rev-footer { display: flex; justify-content: space-between; align-items: flex-end; }
.rev-person { display: flex; align-items: center; gap: 10px; }
.rev-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--wood));
  color: #fff; font-weight: 800; font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.rev-name { font-weight: 700; font-size: 0.88rem; color: var(--text); }
.rev-loc { font-size: 0.78rem; color: var(--muted); }
.rev-source { font-size: 0.7rem; color: var(--muted); font-weight: 600; letter-spacing: 0.5px; }

/* featured review */
.rev-featured {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--dark) 0%, var(--wood) 100%);
  border: none; padding: 2.5rem;
}
.rev-featured::before { color: rgba(200,150,12,0.12); }
.rev-featured .rev-text { color: rgba(255,255,255,0.75); font-size: 1.05rem; }
.rev-featured .rev-name { color: #fff; }
.rev-featured .rev-loc { color: rgba(255,255,255,0.5); }
.rev-featured .rev-source { color: var(--gold); }

/* ══ WHY US ══ */
#why { background: var(--dark); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.why-img-stack { position: relative; height: 500px; }
.wi-main, .wi-accent {
  position: absolute; border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-dark);
}
.wi-main {
  width: 80%; height: 80%; top: 0; left: 0;
  background: url('/images/bg/wi-main.jpg') center/cover;
  background-color: #c8a882;
}
.wi-accent {
  width: 55%; height: 55%; bottom: 0; right: 0;
  background: url('/images/bg/wi-accent.jpg') center/cover;
  background-color: #8b5e3c;
  border: 4px solid var(--dark);
}
.wi-badge {
  position: absolute; top: 20px; right: 0;
  background: var(--gold); color: #fff;
  padding: 1rem 1.25rem; text-align: center;
  border-radius: var(--radius) 0 0 var(--radius);
  box-shadow: 0 10px 40px rgba(200,150,12,0.4);
  z-index: 2;
}
.wi-badge strong { display: block; font-size: 2rem; font-weight: 900; line-height: 1; }
.wi-badge span { font-size: 0.65rem; letter-spacing: 1px; opacity: 0.9; }
.why-content h2 { color: #fff; margin-bottom: 1rem; }
.why-content .desc { color: rgba(255,255,255,0.5); margin-bottom: 2rem; }
.why-list { display: flex; flex-direction: column; gap: 1.25rem; }
.wi {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.2rem; border-radius: var(--radius);
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.3s;
}
.wi:hover { background: rgba(200,150,12,0.08); border-color: var(--gold-border); transform: translateX(5px); }
.wi-icon {
  width: 42px; height: 42px; border-radius: 8px;
  background: var(--gold-fade); border: 1px solid var(--gold-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.wi-text h3 { font-size: 0.95rem; font-weight: 700; color: #fff; margin-bottom: 0.2rem; }
.wi-text p { font-size: 0.85rem; color: rgba(255,255,255,0.45); line-height: 1.6; }

/* ══ COMPARISON TABLE ══ */
#compare { background: var(--cream); }
.compare-table {
  width: 100%; border-collapse: separate; border-spacing: 0;
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); margin-top: 2.5rem;
}
.compare-table thead th {
  padding: 1.4rem 1.5rem; font-size: 0.9rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1.5px;
}
.compare-table thead th:first-child {
  background: var(--dark); color: rgba(255,255,255,0.6); text-align: left;
}
.compare-table thead th:nth-child(2) {
  background: var(--gold); color: #fff; text-align: center; min-width: 220px;
}
.compare-table thead th:nth-child(3) {
  background: #444; color: rgba(255,255,255,0.7); text-align: center; min-width: 220px;
}
.compare-table tbody td {
  padding: 1.1rem 1.5rem; font-size: 0.92rem; border-bottom: 1px solid #eee;
}
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table tbody td:first-child {
  background: #fff; font-weight: 700; color: var(--text);
}
.compare-table tbody td:nth-child(2) {
  background: rgba(200,150,12,0.06); text-align: center; font-weight: 700; color: var(--gold);
}
.compare-table tbody td:nth-child(3) {
  background: #fafafa; text-align: center; color: var(--muted);
}
.compare-table tbody tr:hover td { background: rgba(200,150,12,0.08); }
.compare-table tbody tr:hover td:first-child { background: rgba(200,150,12,0.08); }
.compare-verdict {
  margin-top: 2rem; text-align: center;
  font-size: 0.88rem; color: var(--muted); line-height: 1.7;
}
.compare-verdict strong { color: var(--gold); }
@media(max-width:768px) {
  .compare-table { font-size: 0.82rem; }
  .compare-table thead th, .compare-table tbody td { padding: 0.8rem 0.75rem; }
  .compare-table thead th { font-size: 0.72rem; }
}

/* ══ SERVICE AREAS ══ */
#areas {
  background: var(--cream);
}
.areas-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.area-map-placeholder {
  background: linear-gradient(135deg, #1a1a1a, #2d1b0e);
  border-radius: var(--radius); aspect-ratio: 4/3;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.4); font-size: 0.85rem; gap: 1rem;
  border: 1px solid rgba(200,150,12,0.2);
}
.area-map-placeholder span { font-size: 3rem; }
.area-tags { display: flex; flex-wrap: wrap; gap: 0.55rem; margin-top: 1.5rem; }
.atag {
  padding: 0.45rem 1rem;
  background: #fff; border: 1px solid var(--light-border);
  border-radius: 25px; font-size: 0.82rem; font-weight: 500; color: #555;
  transition: all 0.25s; cursor: default;
}
.atag:hover { background: var(--gold); color: #fff; border-color: var(--gold); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(200,150,12,0.3); }

/* ══ FAQ ══ */
#faq { background: var(--dark2); }
#faq h2 { color: #fff; }
.faq-list { max-width: 800px; }
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.4rem 0; cursor: pointer; gap: 1rem;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--gold); }
.faq-q span { font-size: 0.98rem; font-weight: 600; color: #fff; flex: 1; line-height: 1.5; transition: color 0.2s; }
.faq-q:hover span { color: var(--gold); }
.faq-icon {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); font-size: 1.1rem; flex-shrink: 0;
  transition: all 0.3s;
}
.faq-item.open .faq-icon { background: var(--gold); border-color: var(--gold); color: #fff; transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}
.faq-a p { font-size: 0.9rem; color: rgba(255,255,255,0.5); line-height: 1.8; padding-bottom: 1.25rem; }
.faq-item.open .faq-a { max-height: 300px; }

/* ══ CTA STRIP ══ */
#cta {
  background: linear-gradient(135deg, var(--wood) 0%, #1a0d03 50%, var(--wood) 100%);
  padding: 80px 5%; position: relative; overflow: hidden;
}
#cta::before {
  content: ''; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 30px, rgba(200,150,12,0.03) 30px, rgba(200,150,12,0.03) 31px);
}
.cta-inner { max-width: 900px; margin: 0 auto; text-align: center; position: relative; }
.cta-inner h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3.5vw, 2.6rem); color: #fff; margin-bottom: 0.75rem; }
.cta-inner p { color: rgba(255,255,255,0.65); font-size: 1.05rem; margin-bottom: 2rem; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.cta-tel { font-size: 0.9rem; color: rgba(255,255,255,0.5); margin-top: 1.25rem; }
.cta-tel a { color: var(--gold); font-weight: 700; text-decoration: none; }

/* ══ CONTACT FORM ══ */
#contact { background: var(--cream); }
.contact-wrap { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 4rem; align-items: start; }
.ci-card {
  background: #fff; border-radius: var(--radius); padding: 1.75rem;
  border: 1px solid var(--light-border); display: flex; gap: 1rem;
  transition: all 0.3s; margin-bottom: 1rem;
}
.ci-card:hover { border-color: var(--gold-border); transform: translateX(5px); box-shadow: 0 8px 30px rgba(0,0,0,0.08); }
.ci-icon {
  width: 48px; height: 48px; border-radius: 8px;
  background: var(--gold-fade); border: 1px solid var(--gold-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.ci-card h3 { font-size: 0.72rem; font-weight: 700; color: var(--gold); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 0.3rem; }
.ci-card p, .ci-card a { font-size: 0.95rem; color: var(--text); font-weight: 500; text-decoration: none; line-height: 1.5; }
.form-box {
  background: var(--dark); border-radius: 14px; padding: 2.5rem;
  border: 1px solid var(--gold-border);
  box-shadow: var(--shadow-dark);
}
.form-box h3 { font-size: 1.4rem; font-weight: 700; color: #fff; margin-bottom: 0.3rem; }
.form-box > p { font-size: 0.85rem; color: rgba(255,255,255,0.4); margin-bottom: 1.75rem; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.fg { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.fg.full { grid-column: 1/-1; }
.fg label { font-size: 0.72rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.fg input, .fg select, .fg textarea {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  color: #fff; padding: 0.85rem 1rem; border-radius: 6px;
  font-family: 'Inter', sans-serif; font-size: 0.92rem;
  transition: all 0.2s; width: 100%;
}
.fg input::placeholder, .fg textarea::placeholder { color: rgba(255,255,255,0.2); }
.fg input:focus, .fg select:focus, .fg textarea:focus {
  outline: none; border-color: var(--gold); background: rgba(255,255,255,0.09);
  box-shadow: 0 0 0 3px rgba(200,150,12,0.1);
}
.fg select option { background: #1a1a1a; }
.fg textarea { min-height: 110px; resize: vertical; }
.f-submit { grid-column: 1/-1; }
.f-submit .btn-gold { width: 100%; justify-content: center; padding: 1rem; font-size: 1rem; }
.f-fine { text-align: center; font-size: 0.72rem; color: rgba(255,255,255,0.25); margin-top: 0.6rem; }

/* ══ FOOTER ══ */
footer {
  background: #060606; color: rgba(255,255,255,0.62);
  padding: 70px 5% 0;
  border-top: 1px solid rgba(200,150,12,0.12);
}
footer .logo-name { color: #fff; font-weight: 700; }
footer .logo-sub { color: rgba(255,255,255,0.7); font-size: 0.85rem; }
.ft-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 3rem; padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ft-brand { }
.ft-brand .logo { margin-bottom: 1.25rem; display: inline-flex; }
.ft-brand p { font-size: 0.87rem; line-height: 1.8; max-width: 290px; margin-bottom: 1.5rem; }
.ft-badges { display: flex; flex-direction: column; gap: 0.5rem; }
.ft-badge {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.77rem; color: rgba(255,255,255,0.62);
}
.ft-badge::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; }

/* ═══ AWARDS & RECOGNITION ═══ */
#aw-strip {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 0.75rem 1.25rem; padding: 1.1rem 1.5rem;
  background: linear-gradient(180deg, rgba(200,150,12,0.05), transparent);
  border-top: 1px solid var(--gold-border); border-bottom: 1px solid var(--gold-border);
}
.aw-strip-label { font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.5); font-weight: 600; }
.aw-strip-item { font-size: 0.82rem; color: rgba(255,255,255,0.85); font-weight: 600;
  display: inline-flex; align-items: center; gap: 0.4rem; white-space: nowrap; }

#awards { padding: 5rem 1.5rem; background: #0a0a0a; }
#awards .s-inner { max-width: 1200px; margin: 0 auto; }
#awards .s-head { text-align: center; margin-bottom: 2.5rem; }
#awards .s-head h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800;
  margin-bottom: 0.75rem; letter-spacing: -0.02em; }
#awards .s-head h2 .accent { color: var(--gold); }
#awards .s-head p { font-size: 1rem; color: rgba(255,255,255,0.6); max-width: 600px; margin: 0 auto; }

.aw-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem; margin-top: 2rem; }
.aw-card {
  background: linear-gradient(135deg, rgba(200,150,12,0.08), rgba(200,150,12,0.02));
  border: 1px solid var(--gold-border); border-radius: 14px;
  padding: 1.4rem 1rem; text-align: center;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  position: relative; overflow: hidden;
}
.aw-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.aw-card:hover { transform: translateY(-4px); border-color: var(--gold);
  box-shadow: 0 12px 32px rgba(200,150,12,0.18); }
.aw-card:hover::before { opacity: 1; }
.aw-icon { font-size: 2.2rem; margin-bottom: 0.5rem; line-height: 1; }
.aw-org { font-weight: 700; color: var(--gold-xl); font-size: 0.95rem;
  letter-spacing: 0.02em; margin-bottom: 0.3rem; }
.aw-name { font-size: 0.82rem; color: rgba(255,255,255,0.75); line-height: 1.35;
  margin-bottom: 0.7rem; min-height: 2.2em; }
.aw-year { display: inline-block; padding: 0.25rem 0.7rem; background: var(--gold-fade);
  border: 1px solid var(--gold-border); border-radius: 20px; font-size: 0.72rem;
  color: var(--gold-xl); font-weight: 700; letter-spacing: 1px; }

@media (max-width: 640px) {
  .aw-grid { grid-template-columns: repeat(2, 1fr); gap: 0.7rem; }
  .aw-card { padding: 1rem 0.5rem; }
  .aw-icon { font-size: 1.8rem; }
  .aw-org { font-size: 0.82rem; }
  .aw-name { font-size: 0.72rem; min-height: 2.4em; }
  .aw-year { font-size: 0.65rem; padding: 0.2rem 0.5rem; }
  #aw-strip { gap: 0.5rem 0.8rem; padding: 0.9rem 1rem; }
  .aw-strip-item { font-size: 0.72rem; }
  .aw-strip-label { font-size: 0.65rem; width: 100%; text-align: center; }
}

footer h4 { font-size: 0.72rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.8); margin-bottom: 1.25rem; }
footer ul { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
footer ul li a {
  font-size: 0.87rem; color: rgba(255,255,255,0.62); text-decoration: none;
  transition: color 0.2s; display: flex; align-items: center; gap: 6px;
}
footer ul li a:hover { color: var(--gold); }
.ft-bar {
  max-width: 1280px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.25rem 0; font-size: 0.78rem; flex-wrap: wrap; gap: 0.5rem;
}
.ft-bar a { color: var(--gold); text-decoration: none; }

/* ══ MOBILE BAR ══ */
#m-bar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
  background: rgba(10,10,10,0.97);
  border-top: 2px solid var(--gold);
  backdrop-filter: blur(15px);
  padding: 0.8rem 1rem; gap: 0.75rem;
}
#m-bar a {
  flex: 1; text-align: center; padding: 0.8rem;
  border-radius: 6px; font-weight: 700; font-size: 0.88rem;
  text-decoration: none; transition: all 0.2s;
}
.m-call { background: var(--gold); color: #fff; }
.m-call:hover { background: var(--gold-l); }
.m-quote { border: 1px solid rgba(255,255,255,0.2); color: #fff; }
.m-quote:hover { border-color: var(--gold); color: var(--gold); }

/* ══ PROMO BAR ══ */
#promo-bar {
  background: linear-gradient(90deg, #1a0d03, var(--dark));
  border-bottom: 1px solid var(--gold-border);
  text-align: center; padding: 0.6rem 5%;
  position: relative; z-index: 1001;
}
#promo-bar p {
  font-size: 0.82rem; font-weight: 600; color: rgba(255,255,255,0.85);
  letter-spacing: 0.5px; margin: 0;
}
#promo-bar strong { color: var(--gold); font-weight: 800; }
#promo-bar a {
  color: var(--gold); font-weight: 800; text-decoration: underline;
  text-underline-offset: 3px; margin-left: 0.5rem;
}
#promo-bar .promo-close {
  position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
  background: none; border: none; color: rgba(255,255,255,0.3);
  font-size: 1.1rem; cursor: pointer; padding: 4px;
}
#promo-bar .promo-close:hover { color: #fff; }
@media(max-width:768px) {
  #promo-bar p { font-size: 0.72rem; }
  #promo-bar .promo-close { right: 8px; }
}

/* ══ EXIT INTENT POPUP ══ */
#exit-popup {
  display: none; position: fixed; inset: 0; z-index: 10000;
  background: rgba(0,0,0,0.7); backdrop-filter: blur(6px);
  align-items: center; justify-content: center;
}
#exit-popup.show { display: flex; }
.exit-card {
  background: var(--dark); border: 1px solid var(--gold-border);
  border-radius: 14px; padding: 3rem 2.5rem; max-width: 480px; width: 90%;
  text-align: center; position: relative;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  animation: exit-in 0.35s ease;
}
@keyframes exit-in { from { opacity: 0; transform: scale(0.92) translateY(20px); } to { opacity: 1; transform: none; } }
.exit-card .exit-close {
  position: absolute; top: 14px; right: 14px;
  background: none; border: none; color: rgba(255,255,255,0.3);
  font-size: 1.3rem; cursor: pointer;
}
.exit-card .exit-close:hover { color: #fff; }
.exit-badge {
  display: inline-block; background: rgba(200,150,12,0.15);
  border: 1px solid var(--gold-border); border-radius: 20px;
  padding: 0.3rem 1rem; font-size: 0.68rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.2rem;
}
.exit-card h3 {
  font-family: 'Playfair Display', serif; font-size: 1.6rem;
  color: #fff; margin-bottom: 0.6rem; line-height: 1.25;
}
.exit-card h3 span { color: var(--gold); font-style: italic; }
.exit-card p {
  color: rgba(255,255,255,0.5); font-size: 0.9rem; line-height: 1.7;
  margin-bottom: 1.5rem;
}
.exit-card .exit-items {
  text-align: left; margin: 0 auto 1.5rem; max-width: 320px;
}
.exit-card .exit-items li {
  color: rgba(255,255,255,0.7); font-size: 0.85rem; line-height: 2;
  list-style: none; padding-left: 1.5rem; position: relative;
}
.exit-card .exit-items li::before {
  content: '\2713'; position: absolute; left: 0;
  color: var(--gold); font-weight: 700;
}
.exit-card .exit-cta {
  display: flex; flex-direction: column; gap: 0.6rem; align-items: center;
}
.exit-card .exit-cta a {
  width: 100%; max-width: 320px; text-align: center;
}
.exit-card .exit-skip {
  background: none; border: none; color: rgba(255,255,255,0.3);
  font-size: 0.78rem; cursor: pointer; margin-top: 0.5rem;
}
.exit-card .exit-skip:hover { color: rgba(255,255,255,0.6); }

/* ══ ANIMATIONS ══ */
.r { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.r.in { opacity: 1; transform: none; }
.r.d1 { transition-delay: 0.1s; }
.r.d2 { transition-delay: 0.2s; }
.r.d3 { transition-delay: 0.3s; }
.r.d4 { transition-delay: 0.4s; }
.r.from-left { transform: translateX(-28px); }
.r.from-right { transform: translateX(28px); }
.r.from-left.in, .r.from-right.in { transform: none; }

/* ══ RESPONSIVE ══ */
@media (max-width: 1100px) {
  .hero-wrap { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .why-img-stack { display: none; }
  .areas-wrap { grid-template-columns: 1fr; }
  .area-map-placeholder { display: none; }
  .contact-wrap { grid-template-columns: 1fr; }
  .ft-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .s { padding: 70px 5%; }
  .svc-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .ba-slider { grid-column: span 2; aspect-ratio: 4/3; }
  .gal-wide { grid-column: span 2; }
  .rev-grid { grid-template-columns: 1fr; }
  .rev-featured { grid-column: 1; }
  .process-line { grid-template-columns: 1fr 1fr; }
  .process-line::before { display: none; }
  .f-row { grid-template-columns: 1fr; }
  .fg.full { grid-column: 1; }
  .nav-menu { display: none; }
  .nav-right .nav-tel { display: none; }
  .nav-right .btn { display: none; }
  #hamburger { display: flex; }
  #m-bar { display: flex; }
  body { padding-bottom: 72px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat { border-right: none; border-bottom: 1px solid rgba(200,150,12,0.1); }
  .ft-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero-proof { gap: 1rem; }
  .cta-btns { flex-direction: column; align-items: center; }
}

/* ════ CONTACT FLOATS (Desktop: WhatsApp right | Mobile: call hub right) ════ */
#wa-float {
  position: fixed; bottom: 202px; right: 34px;
  width: 58px; height: 58px;
  background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  z-index: 998; text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  animation: wa-pulse 3s infinite;
}
#wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37,211,102,0.8); }
@keyframes wa-pulse {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.5); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,0.7), 0 0 0 10px rgba(37,211,102,0.1); }
}
#wa-float svg { width: 32px; height: 32px; fill: #fff; }
.wa-tooltip {
  position: absolute; right: 68px; top: 50%; transform: translateY(-50%);
  background: #111; color: #fff; font-size: 0.78rem; font-weight: 600;
  padding: 0.4rem 0.85rem; border-radius: 6px; white-space: nowrap;
  opacity: 0; pointer-events: none; transition: opacity 0.2s;
}
.wa-tooltip::after {
  content: ''; position: absolute; right: -5px; top: 50%; transform: translateY(-50%);
  border: 5px solid transparent; border-right: none; border-left-color: #111;
}
#wa-float:hover .wa-tooltip { opacity: 1; }

/* ════ SPRING PROMO BANNER ════ */
#promo-banner {
  background: linear-gradient(90deg, var(--gold), #d4a017, var(--gold-l));
  padding: 0.6rem 1rem;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 600;
  color: #fff;
  position: relative;
  z-index: 1001;
  letter-spacing: 0.3px;
  line-height: 1.5;
}
#promo-banner a {
  color: #fff;
  text-decoration: underline;
  font-weight: 800;
}
#promo-banner a:hover { text-decoration: none; }
#promo-banner .promo-close {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.2);
  border: none;
  color: #fff;
  width: 22px; height: 22px;
  border-radius: 50%;
  font-size: 0.75rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
#promo-banner .promo-close:hover { background: rgba(0,0,0,0.4); }
@media (max-width: 768px) {
  #promo-banner { font-size: 0.78rem; padding: 0.5rem 2rem 0.5rem 0.75rem; }
}

/* ════ SOCIAL PROOF COUNTER BAR ════ */
#social-proof-bar {
  background: var(--dark2);
  border-bottom: 1px solid rgba(200,150,12,0.15);
  padding: 1.25rem 5%;
}
.proof-bar-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.proof-bar-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 600;
  white-space: nowrap;
}
.proof-bar-icon {
  font-size: 1.3rem;
  line-height: 1;
}
.proof-bar-sep {
  width: 1px;
  height: 28px;
  background: rgba(200,150,12,0.25);
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .proof-bar-inner { gap: 1rem 2rem; justify-content: center; }
  .proof-bar-item { font-size: 0.82rem; }
  .proof-bar-sep { display: none; }
}

/* ════ STICKY MOBILE CTA BAR ════ */
#mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1001;
  background: rgba(15,15,15,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.6rem 0.75rem;
  gap: 0.6rem;
  align-items: center;
  border-top: 1px solid rgba(200,150,12,0.2);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.5);
}
#mobile-sticky-cta a {
  flex: 1;
  text-align: center;
  padding: 0.75rem 0.5rem;
  border-radius: 8px;
  font-weight: 800;
  font-size: 0.88rem;
  text-decoration: none;
  transition: all 0.2s;
  letter-spacing: 0.3px;
}
#mobile-sticky-cta .sticky-call {
  background: #25D366;
  color: #0a0a0a;
}
#mobile-sticky-cta .sticky-call:hover { background: #1ebe5b; }
#mobile-sticky-cta .sticky-estimate {
  background: #2563eb;
  color: #fff;
}
#mobile-sticky-cta .sticky-estimate:hover { background: #1d4ed8; }
#mobile-sticky-cta .sticky-dismiss {
  position: absolute;
  top: -12px;
  right: 8px;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(30,30,30,0.95);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.6);
  font-size: 0.7rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
#mobile-sticky-cta .sticky-dismiss:hover { background: #333; color: #fff; }
@media (max-width: 768px) {
  #mobile-sticky-cta { display: flex; }
}

/* ════ EXIT-INTENT POPUP ════ */
#exit-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
#exit-overlay.show { display: flex; }
#exit-modal {
  background: #fff;
  border-radius: 16px;
  max-width: 460px;
  width: 100%;
  padding: 2.5rem 2rem;
  position: relative;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  animation: exit-pop 0.35s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes exit-pop { from { transform: scale(0.85) translateY(20px); opacity: 0; } to { transform: scale(1) translateY(0); opacity: 1; } }
#exit-modal .exit-close {
  position: absolute;
  top: 12px; right: 12px;
  background: #f0f0f0;
  border: none;
  width: 32px; height: 32px;
  border-radius: 50%;
  font-size: 1rem;
  color: #666;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
#exit-modal .exit-close:hover { background: #ddd; color: #333; }
#exit-modal .exit-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold-fade);
  border: 1px solid var(--gold-border);
  border-radius: 20px;
  padding: 0.3rem 0.85rem;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
#exit-modal h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--text);
  margin-bottom: 0.4rem;
  line-height: 1.2;
}
#exit-modal .exit-sub {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}
#exit-form .exit-field {
  margin-bottom: 0.85rem;
}
#exit-form .exit-field input,
#exit-form .exit-field select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid #e0d8cc;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  color: var(--text);
  transition: all 0.2s;
  background: #faf8f4;
}
#exit-form .exit-field input::placeholder { color: #aaa; }
#exit-form .exit-field input:focus,
#exit-form .exit-field select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,150,12,0.12);
}
#exit-form .exit-field select option { background: #fff; }
#exit-form .exit-submit {
  width: 100%;
  background: var(--gold);
  color: #fff;
  border: none;
  padding: 1rem;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.25s;
  box-shadow: 0 4px 20px rgba(200,150,12,0.35);
  letter-spacing: 0.3px;
}
#exit-form .exit-submit:hover {
  background: var(--gold-l);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200,150,12,0.5);
}
#exit-modal .exit-note {
  text-align: center;
  font-size: 0.72rem;
  color: #aaa;
  margin-top: 0.75rem;
}
#exit-modal .exit-tel {
  text-align: center;
  margin-top: 0.85rem;
  padding-top: 0.85rem;
  border-top: 1px solid #eee;
  font-size: 0.85rem;
  color: #777;
}
#exit-modal .exit-tel a {
  color: var(--gold);
  font-weight: 700;
  text-decoration: none;
}

/* ═══ MOBILE CALL HUB (replaces m-bar on mobile) ═══ */
#call-hub {
  display: none; position: fixed; bottom: 24px; right: 16px;
  z-index: 998; flex-direction: column; align-items: flex-end; gap: 10px;
}
#call-options {
  display: none; flex-direction: column; gap: 8px;
  background: #111; border: 1px solid var(--gold-border);
  border-radius: 14px; padding: 10px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.6);
  animation: ai-pop 0.25s cubic-bezier(0.34,1.56,0.64,1);
}
#call-options.open { display: flex; }
.call-opt {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 16px; border-radius: 10px; cursor: pointer;
  background: #1a1a1a; border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.15s; text-decoration: none; min-width: 170px;
}
.call-opt:hover { background: #222; border-color: var(--gold-border); }
.call-opt-icon {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.call-opt-icon.phone-icon { background: var(--gold); }
.call-opt-icon.wa-icon { background: #25D366; }
.call-opt-info h5 { color: #fff; font-size: 0.82rem; font-weight: 700; margin: 0; }
.call-opt-info p { color: #888; font-size: 0.68rem; margin: 0; }
#call-toggle {
  width: 58px; height: 58px;
  background: var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; border: none;
  box-shadow: 0 4px 20px rgba(200,150,12,0.5);
  transition: transform 0.2s, box-shadow 0.2s;
  font-size: 1.5rem; color: #fff;
}
#call-toggle:hover { transform: scale(1.08); }

/* ═══ ELEVENLABS ASHLEY WIDGET — always visible, positioned left of WhatsApp ═══ */
elevenlabs-convai {
  position: fixed !important;
  bottom: 24px !important;
  right: 96px !important;
  z-index: 997 !important;
}
@media (max-width: 768px) {
  elevenlabs-convai {
    bottom: 24px !important;
    right: 80px !important;
  }
}

/* ════ BOOKING SECTION ════ */
#booking { background: var(--cream); padding: 45px 5% 60px; scroll-margin-top: 80px; }
.booking-intro { text-align: center; max-width: 620px; margin: 0 auto 1.4rem; }
.booking-intro h2 { font-family: 'Playfair Display',serif; font-size: clamp(1.8rem,3.6vw,2.4rem); margin-bottom: 0.6rem; line-height: 1.15; }
.booking-intro p { color: var(--muted); font-size: 1rem; line-height: 1.55; margin: 0 auto; max-width: 560px; }
.booking-intro .eyebrow { margin-bottom: 0.5rem; }
.booking-wrap {
  background: #fff; border-radius: 16px;
  box-shadow: var(--shadow); overflow: hidden;
  max-width: 900px; margin: 0 auto;
}
.booking-tabs-row {
  display: flex; border-bottom: 1px solid var(--light-border);
  background: var(--warm);
}
.bk-tab {
  flex: 1; padding: 1rem; text-align: center;
  font-weight: 700; font-size: 0.9rem; cursor: pointer;
  border: none; background: none; color: var(--muted);
  transition: all 0.2s; border-bottom: 3px solid transparent;
}
.bk-tab.active { color: var(--gold); border-bottom-color: var(--gold); background: #fff; }
.bk-tab-panel { display: none; }
.bk-tab-panel.active { display: block; }
.calendly-inline-widget { min-height: 660px; }
.booking-alt-panel { padding: 3rem 2rem; text-align: center; }
.booking-alt-panel h3 { font-size: 1.4rem; margin-bottom: 0.5rem; }
.booking-alt-panel p { color: var(--muted); margin-bottom: 2rem; }
.booking-alt-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.calendly-setup-note {
  background: var(--gold-fade); border: 1px solid var(--gold-border);
  border-radius: 10px; padding: 1.5rem 2rem; margin: 1.5rem;
  text-align: center; font-size: 0.88rem; color: var(--wood);
}
.calendly-setup-note strong { display: block; margin-bottom: 0.5rem; font-size: 1rem; }

/* ════ AI ASSISTANT SELECTOR ════ */
#ai-hub {
  position: fixed; bottom: 96px; left: 24px;
  display: flex; flex-direction: column; gap: 10px;
  z-index: 998; align-items: flex-start;
}
#ai-options {
  display: none; flex-direction: column; gap: 8px;
  background: #111; border: 1px solid var(--gold-border);
  border-radius: 14px; padding: 10px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.6);
  animation: ai-pop 0.25s cubic-bezier(0.34,1.56,0.64,1);
}
#ai-options.open { display: flex; }
@keyframes ai-pop { from { transform: scale(0.85) translateY(8px); opacity: 0; } to { transform: scale(1) translateY(0); opacity: 1; } }
.ai-opt {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 16px; border-radius: 10px; cursor: pointer;
  background: #1a1a1a; border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.15s; min-width: 180px;
}
.ai-opt:hover { background: #222; border-color: var(--gold-border); }
.ai-opt-icon {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.ai-opt-icon.ash-icon { background: linear-gradient(135deg,#1a1a1a,#2a2a2a); border: 1px solid var(--gold-border); }
.ai-opt-icon.ashley-icon { background: linear-gradient(135deg,var(--gold),#d4a017); }
.ai-opt-info h5 { color: #fff; font-size: 0.82rem; font-weight: 700; margin: 0; }
.ai-opt-info p { color: #888; font-size: 0.68rem; margin: 0; }

#ai-toggle {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--gold), #d4a017);
  border: 2px solid rgba(255,255,255,0.25); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 24px rgba(200,150,12,0.55), 0 0 0 0 rgba(200,150,12,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  animation: ai-pulse 2.5s ease-in-out infinite;
}
@keyframes ai-pulse {
  0%, 100% { box-shadow: 0 4px 24px rgba(200,150,12,0.55), 0 0 0 0 rgba(200,150,12,0.4); }
  50% { box-shadow: 0 4px 24px rgba(200,150,12,0.55), 0 0 0 10px rgba(200,150,12,0); }
}
#ai-toggle:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(200,150,12,0.6); animation: none; }
#ai-toggle span { font-size: 1.6rem; line-height: 1; filter: drop-shadow(0 1px 2px rgba(0,0,0,0.3)); }
#ai-label {
  background: var(--dark); color: #fff;
  font-size: 0.65rem; font-weight: 700; letter-spacing: 1px;
  padding: 3px 8px; border-radius: 10px; white-space: nowrap;
  pointer-events: none;
}
#chat-notif {
  position: absolute; top: -5px; right: -5px;
  width: 22px; height: 22px; background: #e53e3e;
  border: 2px solid #fff;
  border-radius: 50%; font-size: 0.65rem; font-weight: 800;
  color: #fff; display: flex; align-items: center; justify-content: center;
  animation: notif-pop 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes notif-pop { from { transform: scale(0); } to { transform: scale(1); } }
#chat-panel {
  position: fixed; bottom: 170px; left: 24px;
  width: 360px; max-height: 500px;
  background: #111; border: 1px solid var(--gold-border);
  border-radius: 16px; box-shadow: 0 24px 60px rgba(0,0,0,0.65);
  z-index: 1000; display: flex; flex-direction: column;
  transform: scale(0.9) translateY(16px); opacity: 0; pointer-events: none;
  transition: all 0.25s cubic-bezier(0.34,1.56,0.64,1); overflow: hidden;
}
#chat-panel.open { transform: scale(1) translateY(0); opacity: 1; pointer-events: all; }
.ch-head {
  background: linear-gradient(135deg,#0d0d0d,#1a1a1a);
  border-bottom: 1px solid var(--gold-border);
  padding: 0.9rem 1.1rem; display: flex; align-items: center; gap: 0.75rem;
}
.ch-avatar {
  width: 36px; height: 36px; background: var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.ch-info h4 { color: #fff; font-size: 0.88rem; font-weight: 700; }
.ch-info p { color: #25D366; font-size: 0.7rem; }
.ch-close {
  margin-left: auto; background: none; border: none;
  color: #555; font-size: 1.3rem; cursor: pointer; line-height: 1; padding: 0.2rem;
}
.ch-close:hover { color: #fff; }
.ch-msgs {
  flex: 1; overflow-y: auto; padding: 1rem;
  display: flex; flex-direction: column; gap: 0.7rem; scroll-behavior: smooth;
}
.ch-msgs::-webkit-scrollbar { width: 3px; }
.ch-msgs::-webkit-scrollbar-thumb { background: rgba(200,150,12,0.3); border-radius: 2px; }
.ch-msg { display: flex; max-width: 88%; }
.ch-msg.bot { align-self: flex-start; }
.ch-msg.usr { align-self: flex-end; flex-direction: row-reverse; }
.ch-bub {
  padding: 0.6rem 0.9rem; border-radius: 12px;
  font-size: 0.82rem; line-height: 1.55;
}
.ch-msg.bot .ch-bub { background: #1d1d1d; color: rgba(255,255,255,0.85); border-radius: 4px 12px 12px 12px; }
.ch-msg.usr .ch-bub { background: var(--gold); color: #fff; border-radius: 12px 4px 12px 12px; }
.ch-typing { display: none; align-self: flex-start; }
.ch-typing.show { display: flex; }
.ch-dots {
  background: #1d1d1d; padding: 0.65rem 0.9rem;
  border-radius: 4px 12px 12px 12px; display: flex; gap: 4px; align-items: center;
}
.ch-dots span {
  width: 5px; height: 5px; background: #555; border-radius: 50%;
  animation: dbounce 1.2s infinite;
}
.ch-dots span:nth-child(2) { animation-delay: 0.2s; }
.ch-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes dbounce { 0%,80%,100% { transform: scale(0.6); opacity: 0.4; } 40% { transform: scale(1); opacity: 1; } }
.ch-qr { display: flex; gap: 0.4rem; flex-wrap: wrap; padding: 0 1rem 0.5rem; }
.ch-qr-btn {
  padding: 0.35rem 0.85rem; border: 1px solid var(--gold-border);
  border-radius: 50px; background: transparent; color: var(--gold-l);
  font-size: 0.74rem; cursor: pointer; transition: all 0.15s; white-space: nowrap;
}
.ch-qr-btn:hover { background: var(--gold-fade); border-color: var(--gold); }
.ch-input-row {
  display: flex; gap: 0.5rem; padding: 0.7rem 0.9rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}
#ch-input {
  flex: 1; background: #1a1a1a; border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px; padding: 0.55rem 0.8rem; color: #fff;
  font-size: 0.82rem; outline: none; transition: border-color 0.2s;
  font-family: inherit;
}
#ch-input:focus { border-color: var(--gold-border); }
#ch-input::placeholder { color: #444; }
#ch-send {
  background: var(--gold); border: none; border-radius: 8px;
  padding: 0.55rem 0.9rem; color: #fff; cursor: pointer;
  font-size: 0.9rem; transition: background 0.15s;
}
#ch-send:hover { background: var(--gold-l); }
@media (max-width: 768px) {
  #m-bar { display: none !important; }
  #float-cta { display: none !important; }
  #call-hub { display: none !important; }
  #wa-float {
    bottom: 88px; right: 16px;
    width: 52px; height: 52px;
    transition: bottom 0.35s ease;
  }
  #wa-float svg { width: 28px; height: 28px; }
  #ai-hub {
    bottom: 88px; left: 16px;
    transition: bottom 0.35s ease;
  }
  elevenlabs-convai {
    bottom: 88px !important;
    right: 80px !important;
    transition: bottom 0.35s ease !important;
  }
  #chat-panel { left: 12px; right: 12px; width: auto; bottom: 150px; }

  /* When sticky CTA bar is dismissed, slide floaters down to bottom */
  body.sticky-cta-dismissed #wa-float,
  body.sticky-cta-dismissed #ai-hub { bottom: 16px; }
  body.sticky-cta-dismissed elevenlabs-convai { bottom: 16px !important; }
}
