/* ═══════════════════════════════════════════════════
   KLINEXA CLEANING — LUXURY EDITORIAL THEME v3
   #080F1E Navy · #C8A96E Gold · #F5F2EC Cream
   ═══════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --dark:    #080F1E;
  --dark2:   #0C1628;
  --dark3:   #111E35;
  --gold:    #C8A96E;
  --gold-l:  #F0D98A;
  --gold-d:  #8B6A2A;
  --gold-shine: linear-gradient(110deg, #8B6A2A 0%, #C8A96E 30%, #F5E098 50%, #C8A96E 70%, #8B6A2A 100%);
  --white:   #FFFFFF;
  --cream:   #F5F2EC;
  --text:    #1C1C2E;
  --muted:   #6B7280;
  --serif:   'Cormorant Garamond', Georgia, serif;
  --sans:    'DM Sans', system-ui, sans-serif;
  --max:     1200px;
  --ease:    cubic-bezier(.25,.1,.25,1);
  --ease-out: cubic-bezier(0,.55,.45,1);
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--sans); color: var(--text);
  background: var(--white); line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  cursor: none;
}
body:not(.loaded) { overflow: hidden; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 40px; }

/* ── TYPOGRAPHY ───────────────────────────────────── */
h1 { font-family: var(--serif); font-size: clamp(3.5rem, 7vw, 6.5rem); font-weight: 300; line-height: 1; letter-spacing: -0.02em; }
h2 { font-family: var(--serif); font-size: clamp(2.2rem, 4vw, 3.8rem); font-weight: 300; line-height: 1.05; letter-spacing: -0.01em; }
h3 { font-family: var(--serif); font-size: clamp(1.3rem, 2vw, 1.6rem); font-weight: 400; line-height: 1.2; }
em { font-style: italic; color: var(--gold); }

.eyebrow {
  display: block; font-family: var(--sans);
  font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}
.light-eyebrow { color: var(--gold); }

/* ── CUSTOM CURSOR ────────────────────────────────── */
.cursor {
  position: fixed; width: 6px; height: 6px;
  background: var(--gold); border-radius: 50%;
  pointer-events: none; z-index: 99999;
  transform: translate(-50%,-50%);
  transition: transform .1s, width .2s, height .2s, background .2s;
}
.cursor.hover { width: 4px; height: 4px; background: var(--gold-l); }
.cursor-ring {
  position: fixed; width: 36px; height: 36px;
  border: 1px solid rgba(200,169,110,.4); border-radius: 50%;
  pointer-events: none; z-index: 99998;
  transform: translate(-50%,-50%);
  transition: width .3s, height .3s, border-color .3s;
}
.cursor-ring.hover { width: 28px; height: 28px; border-color: rgba(200,169,110,.7); }

/* ── PRELOADER ────────────────────────────────────── */
.preloader {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--dark);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .8s var(--ease), visibility .8s;
}
.preloader.done { opacity: 0; visibility: hidden; pointer-events: none; }
.pre-inner { text-align: center; }
.pre-name {
  font-family: var(--serif); font-size: 3rem; font-weight: 300;
  color: var(--white); letter-spacing: 0.5em;
  animation: fadeUp .8s var(--ease) both;
}
.pre-tag {
  font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); margin-top: 12px;
  animation: fadeUp .8s var(--ease) .2s both;
}
.pre-track {
  width: 100px; height: 1px; background: rgba(255,255,255,.08);
  margin: 28px auto 0;
  animation: fadeUp .8s var(--ease) .4s both;
}
.pre-bar {
  height: 100%; background: var(--gold);
  animation: load 1.6s var(--ease) .5s both;
}
@keyframes load { from { width: 0; } to { width: 100%; } }
@keyframes fadeUp { from { opacity:0; transform:translateY(16px); } to { opacity:1; transform:translateY(0); } }

/* ── NAVBAR ───────────────────────────────────────── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 24px 0;
  background: var(--dark2);
  transition: background .4s var(--ease), padding .4s var(--ease), backdrop-filter .4s;
}
#navbar.scrolled {
  background: rgba(8,15,30,.92);
  backdrop-filter: blur(16px) saturate(180%);
  padding: 14px 0;
  border-bottom: 1px solid rgba(200,169,110,.1);
}
.nav-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 40px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
}
.nav-logo-img {
  height: 196px; width: auto; object-fit: contain;
  transition: height .4s var(--ease);
}
#navbar.scrolled .nav-logo-img { height: 73px; }
.nav-links {
  display: flex; align-items: center; gap: 40px;
  list-style: none; flex: 1; justify-content: center;
}
.nav-links a {
  color: rgba(255,255,255,.55); text-decoration: none;
  font-size: 0.68rem; font-weight: 500; letter-spacing: 0.16em;
  text-transform: uppercase;
  position: relative; padding-bottom: 2px;
  transition: color .25s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: right;
  transition: transform .3s var(--ease);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
.btn-nav-cta {
  background: linear-gradient(105deg,
    #7A5518 0%, #B8892A 18%,
    #D4A840 35%, #E8C870 48%,
    #C8962A 62%, #D4A840 75%,
    #A87820 88%, #7A5518 100%
  );
  background-size: 220% 100%;
  color: #1A0E00;
  font-family: var(--sans); font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 11px 24px; text-decoration: none;
  white-space: nowrap; position: relative; overflow: hidden;
  border-top: 1px solid rgba(255,240,160,.4);
  border-bottom: 1px solid rgba(60,30,0,.3);
  border-left: none; border-right: none;
  box-shadow: inset 0 1px 0 rgba(255,245,180,.3), 0 3px 12px rgba(180,130,30,.4);
  text-shadow: 0 1px 0 rgba(255,245,180,.3);
  animation: goldMetal 6s ease-in-out infinite;
  transition: transform .2s, box-shadow .2s;
}
.btn-nav-cta:hover { transform: translateY(-1px); box-shadow: inset 0 1px 0 rgba(255,245,180,.4), 0 6px 20px rgba(200,160,40,.5); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: none; padding: 4px;
}
.hamburger span {
  display: block; width: 22px; height: 1px; background: var(--white);
  transition: transform .3s, opacity .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
  display: none; flex-direction: column;
  background: var(--dark); padding: 12px 40px 28px;
  border-top: 1px solid rgba(200,169,110,.08);
  gap: 0;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: rgba(255,255,255,.65); text-decoration: none;
  font-size: 0.85rem; font-weight: 400; letter-spacing: 0.08em;
  padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.05);
  transition: color .2s;
}
.mobile-menu a:hover { color: var(--gold); }

/* ── HERO ─────────────────────────────────────────── */
.hero {
  min-height: 100vh; background: var(--dark);
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 70% at 10% 80%, rgba(200,169,110,.05) 0%, transparent 65%),
    radial-gradient(ellipse 50% 50% at 90% 10%, rgba(200,169,110,.04) 0%, transparent 60%);
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(200,169,110,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,169,110,.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
}
.hero-inner {
  flex: 1; display: flex; align-items: center;
  max-width: var(--max); width: 100%; margin: 0 auto; padding: 200px 40px 80px;
  position: relative; z-index: 1;
}
.hero-left { max-width: 780px; }
.hero-tag {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 40px;
}
.tag-line { display: block; width: 40px; height: 1px; background: var(--gold); flex-shrink: 0; }
.hero-tag span { font-size: 0.62rem; font-weight: 500; letter-spacing: 0.24em; text-transform: uppercase; color: rgba(255,255,255,.4); }
.hero h1 { color: var(--white); margin-bottom: 32px; }
.hero-sub {
  font-size: 0.92rem; color: rgba(255,255,255,.45); font-weight: 300;
  line-height: 1.9; margin-bottom: 52px; max-width: 440px;
}
.hero-actions { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }

.btn-primary {
  display: inline-block;
  background: linear-gradient(105deg,
    #7A5518 0%, #B8892A 18%,
    #D4A840 35%, #E8C870 48%,
    #C8962A 62%, #D4A840 75%,
    #A87820 88%, #7A5518 100%
  );
  background-size: 220% 100%;
  background-position: 0% center;
  color: #1A0E00;
  font-family: var(--sans); font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 15px 36px; text-decoration: none;
  border-top: 1px solid rgba(255,240,160,.5);
  border-bottom: 1px solid rgba(60,30,0,.4);
  border-left: none; border-right: none;
  box-shadow:
    inset 0 1px 0 rgba(255,240,160,.2),
    inset 0 -1px 0 rgba(0,0,0,.2),
    0 3px 12px rgba(160,110,20,.25),
    0 1px 3px rgba(0,0,0,.2);
  text-shadow: 0 1px 0 rgba(255,240,160,.2);
  animation: goldMetal 6s ease-in-out infinite;
  transition: transform .2s, box-shadow .2s;
  cursor: none;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255,245,180,.5),
    inset 0 -1px 0 rgba(0,0,0,.25),
    0 8px 28px rgba(200,160,40,.6),
    0 2px 6px rgba(0,0,0,.3);
}
.btn-primary.dark {
  background: var(--dark); color: var(--white);
  box-shadow: none; border: 1px solid rgba(200,169,110,.15);
  animation: none; text-shadow: none;
}
.btn-primary.dark:hover { background: var(--dark3); transform: translateY(-1px); }

.btn-text {
  display: inline-flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,.45); font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase; text-decoration: none;
  transition: color .25s;
}
.btn-text:hover { color: var(--gold); }
.btn-text .arrow { font-size: 1rem; transition: transform .25s; }
.btn-text:hover .arrow { transform: translateY(3px); }

.hero-right {
  display: flex; flex-direction: column; align-items: flex-end;
  gap: 32px; flex-shrink: 0;
}
.hero-vert-text {
  font-size: 0.58rem; font-weight: 500; letter-spacing: 0.22em;
  text-transform: uppercase; color: rgba(255,255,255,.2);
  writing-mode: vertical-rl; transform: rotate(180deg);
}
.hero-logo-large img {
  width: 220px; height: 220px; object-fit: contain;
  opacity: .9;
  filter: drop-shadow(0 0 40px rgba(200,169,110,.15));
}

.hero-stats {
  display: flex; align-items: stretch;
  border-top: 1px solid rgba(200,169,110,.1);
  position: relative; z-index: 1;
}
.hstat { flex: 1; padding: 32px 40px; display: flex; flex-direction: column; gap: 6px; }
.hstat-n {
  font-family: var(--serif); font-size: 2.8rem; font-weight: 300;
  color: var(--gold); line-height: 1;
  display: inline;
}
.hstat-l {
  font-size: 0.62rem; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(255,255,255,.3);
}
.hstat-div { width: 1px; background: rgba(200,169,110,.1); margin: 20px 0; }

/* ── TICKER ───────────────────────────────────────── */
.ticker { background: var(--gold); overflow: hidden; padding: 14px 0; }
.ticker-inner { overflow: hidden; }
.ticker-track {
  display: flex; align-items: center; gap: 48px;
  width: max-content;
  animation: ticker 24s linear infinite;
}
.ticker-track span {
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--dark); white-space: nowrap;
}
.ticker-track i {
  width: 4px; height: 4px; background: rgba(8,15,30,.3);
  border-radius: 50%; flex-shrink: 0;
}
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── SECTION HEADERS ──────────────────────────────── */
.sec-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 64px; gap: 40px;
}
.sec-head h2 { margin-top: 10px; }
.sec-head-desc { font-size: 0.88rem; color: var(--muted); max-width: 360px; line-height: 1.8; padding-bottom: 6px; }
.sec-head.light h2 { color: var(--white); }

/* ── SERVICES ─────────────────────────────────────── */
.services { padding: 120px 0; background: var(--cream); }
.svc-list { border-top: 1px solid rgba(0,0,0,.08); }
.svc-row {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  align-items: center; gap: 40px;
  padding: 36px 0;
  border-bottom: 1px solid rgba(0,0,0,.08);
  text-decoration: none; color: inherit;
  transition: background .3s var(--ease), padding-left .3s var(--ease);
  position: relative;
  cursor: none;
}
.svc-row::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 0;
  background: rgba(200,169,110,.06);
  transition: width .4s var(--ease);
}
.svc-row:hover::before { width: 100%; }
.svc-row:hover { padding-left: 20px; }
.svc-n {
  font-family: var(--serif); font-size: 0.9rem; font-weight: 300;
  color: var(--gold); opacity: .6; letter-spacing: 0.05em;
}
.svc-body { position: relative; z-index: 1; }
.svc-body h3 { color: var(--dark); margin-bottom: 8px; transition: color .2s; }
.svc-row:hover .svc-body h3 { color: var(--dark); }
.svc-body p { font-size: 0.84rem; color: var(--muted); line-height: 1.8; max-width: 600px; }
.svc-arrow {
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--gold);
  opacity: 0; transform: translateX(-12px);
  transition: opacity .3s var(--ease), transform .3s var(--ease);
  white-space: nowrap; position: relative; z-index: 1;
}
.svc-row:hover .svc-arrow { opacity: 1; transform: translateX(0); }

/* ── GALLERY ──────────────────────────────────────── */
.gallery-section { padding: 120px 0; background: var(--dark); }
.gallery-section .sec-head { flex-wrap: wrap; gap: 24px; }
.gallery-filters { display: flex; flex-wrap: wrap; gap: 6px; }
.f-btn {
  background: transparent; border: 1px solid rgba(200,169,110,.18);
  color: rgba(255,255,255,.4); font-family: var(--sans);
  font-size: 0.6rem; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; padding: 8px 18px; cursor: none;
  transition: all .22s var(--ease);
}
.f-btn:hover { border-color: rgba(200,169,110,.5); color: rgba(255,255,255,.7); }
.f-btn.active { background: var(--gold); border-color: var(--gold); color: var(--dark); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 3px;
}
.gi { position: relative; aspect-ratio: 4/3; overflow: hidden; cursor: none; }
.gi img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.gi:hover img { transform: scale(1.06); }
.gi-cap {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 28px 16px 14px;
  background: linear-gradient(transparent, rgba(8,15,30,.85));
  color: rgba(255,255,255,.85); font-size: 0.75rem;
  opacity: 0; transition: opacity .3s;
}
.gi:hover .gi-cap { opacity: 1; }

.gallery-placeholder {
  grid-column: 1/-1;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 100px 32px;
  border: 1px dashed rgba(200,169,110,.15); gap: 12px;
}
.gp-icon { font-size: 2rem; color: rgba(200,169,110,.25); margin-bottom: 4px; }
.gallery-placeholder p { font-family: var(--serif); font-size: 1.3rem; font-weight: 300; color: rgba(255,255,255,.25); }
.gallery-placeholder span { font-size: 0.75rem; color: rgba(255,255,255,.18); }
.gallery-placeholder strong { color: rgba(200,169,110,.5); }

.video-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px,1fr)); gap: 3px; }
.vi { overflow: hidden; }
.vw { position: relative; padding-top: 56.25%; background: var(--dark2); border-radius: 12px; overflow: hidden; }
.vw iframe, .vw video { position: absolute; inset: 0; width: 100%; height: 100%; border-radius: 0; }
.vc { background: rgba(255,255,255,.03); color: rgba(255,255,255,.4); font-size: 0.75rem; padding: 12px 16px; }

/* ── LIGHTBOX ─────────────────────────────────────── */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: rgba(4,8,18,.96);
  align-items: center; justify-content: center; flex-direction: column;
  padding: 48px; gap: 16px;
}
.lightbox.open { display: flex; }
.lb-close {
  position: absolute; top: 28px; right: 36px;
  background: none; border: none; cursor: none;
  color: rgba(255,255,255,.4); font-size: 2rem; line-height: 1;
  transition: color .2s;
}
.lb-close:hover { color: var(--gold); }
.lb-img { max-width: 88vw; max-height: 82vh; object-fit: contain; }
.lb-cap { font-size: 0.78rem; color: rgba(255,255,255,.35); }

/* ── ABOUT ────────────────────────────────────────── */
.about { padding: 0; background: var(--white); overflow: hidden; }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; min-height: 80vh; }

.about-quote-side {
  background: var(--cream);
  padding: 100px 80px;
  display: flex; flex-direction: column; justify-content: center;
  gap: 0;
}
.about-quote-side .eyebrow { margin-bottom: 32px; }
blockquote {
  font-family: var(--serif); font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 300; font-style: italic; line-height: 1.4;
  color: var(--dark); margin-bottom: 48px;
  border-left: 2px solid var(--gold); padding-left: 28px;
}
.about-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin-bottom: 48px; }
.am-item { padding: 16px 0; border-bottom: 1px solid rgba(0,0,0,.06); }
.am-item:nth-child(odd) { padding-right: 24px; border-right: 1px solid rgba(0,0,0,.06); }
.am-item:nth-child(even) { padding-left: 24px; }
.am-item strong { display: block; font-size: 0.62rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.am-item span { font-size: 0.82rem; color: var(--muted); }

.about-image-side { padding: 100px 80px; display: flex; flex-direction: column; justify-content: center; gap: 32px; }
.about-img-frame { position: relative; flex-shrink: 0; }
.about-img-placeholder {
  width: 100%; aspect-ratio: 4/3;
  background: var(--cream);
  border: 1px solid rgba(0,0,0,.06);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem; color: var(--muted); font-style: italic;
}
.about-img-badge {
  position: absolute; bottom: -16px; left: -16px;
  background: var(--dark); padding: 20px 24px;
  border-right: 2px solid var(--gold);
}
.about-img-badge strong { display: block; color: var(--white); font-size: 0.82rem; margin-bottom: 3px; }
.about-img-badge span { color: rgba(255,255,255,.35); font-size: 0.68rem; letter-spacing: 0.1em; }
.about-body { font-size: 0.88rem; color: var(--muted); line-height: 1.85; margin-top: 24px; }
.about-checks { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.about-checks li {
  font-size: 0.82rem; color: var(--text);
  padding-left: 20px; position: relative;
}
.about-checks li::before { content: '—'; position: absolute; left: 0; color: var(--gold); }

/* ── TESTIMONIALS ─────────────────────────────────── */
.testimonials {
  padding: 140px 0; background: var(--dark);
}
.testi-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: center;
}
@media (max-width: 960px) {
  .testi-layout { grid-template-columns: 1fr; gap: 56px; }
  .testi-left { text-align: center; }
  .testi-nav { justify-content: center; }
  .testi-footer { justify-content: center; }
}
.testi-left { text-align: left; }
.testi-carousel { margin: 40px 0 40px; min-height: 200px; position: relative; }

/* Photo slideshow */
.testi-photo-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/5;
  border: 1px solid rgba(200,169,110,.15);
  box-shadow: 0 32px 80px rgba(0,0,0,.4);
}
.testi-photo-slides {
  position: relative; width: 100%; height: 100%;
  background: var(--dark3);
}
.testi-photo-slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 1.2s ease;
}
.testi-photo-slide.active { opacity: 1; }
.testi-photo-slide img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.testi-photo-placeholder {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  height: 100%; color: rgba(255,255,255,.15);
  text-align: center; gap: 12px;
}
.tpp-icon { font-size: 2rem; color: rgba(200,169,110,.2); }
.testi-photo-placeholder p { font-size: 0.8rem; font-family: var(--sans); line-height: 1.6; }
.testi-photos-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,15,30,.5) 0%, transparent 40%);
  pointer-events: none;
}
.testi-photo-dots {
  position: absolute; bottom: 16px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 6px; z-index: 2;
}
.testi-photo-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: rgba(255,255,255,.3); border: none; cursor: pointer;
  padding: 0; transition: background .3s, transform .3s;
}
.testi-photo-dot.active { background: var(--gold); transform: scale(1.4); }
.testi-slide {
  display: none; opacity: 0;
  animation: fadeSlide .5s var(--ease) forwards;
}
.testi-slide.active { display: block; opacity: 1; }
@keyframes fadeSlide { from { opacity:0; transform:translateY(12px); } to { opacity:1; transform:translateY(0); } }
.testi-stars { color: var(--gold); font-size: 0.8rem; letter-spacing: 6px; margin-bottom: 32px; }
.testi-quote {
  font-family: var(--serif); font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-weight: 300; font-style: italic; color: rgba(255,255,255,.8);
  line-height: 1.5; margin-bottom: 32px;
}
.testi-author { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,.3); }
.testi-nav { display: flex; justify-content: center; gap: 10px; margin-bottom: 56px; }
.t-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,.15); border: none; cursor: none;
  transition: background .25s, transform .25s;
}
.t-dot.active { background: var(--gold); transform: scale(1.3); }
.testi-footer {
  display: flex; align-items: center; justify-content: center; gap: 24px;
  padding-top: 40px; border-top: 1px solid rgba(200,169,110,.1);
}
.testi-footer span { font-size: 0.7rem; font-weight: 500; letter-spacing: 0.12em; color: rgba(255,255,255,.3); }
.testi-footer a { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); text-decoration: none; transition: opacity .2s; }
.testi-footer a:hover { opacity: .65; }

/* ── CTA BANNER ───────────────────────────────────── */
.cta-banner { background: var(--gold); padding: 64px 0; }
.cta-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.cta-inner p {
  font-family: var(--serif); font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 300; color: var(--dark);
}
.btn-dark {
  display: inline-block;
  background: var(--dark); color: var(--white);
  font-family: var(--sans); font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 15px 36px; text-decoration: none;
  white-space: nowrap;
  transition: background .25s;
}
.btn-dark:hover { background: var(--dark3); }

/* ── CONTACT ──────────────────────────────────────── */
.contact { background: var(--dark2); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; min-height: 80vh; }
.contact-left {
  padding: 100px 80px;
  display: flex; flex-direction: column; justify-content: center;
  border-right: 1px solid rgba(200,169,110,.08);
}
.contact-left h2 { color: var(--white); margin: 10px 0 32px; }
.contact-left > p { font-size: 0.88rem; color: rgba(255,255,255,.4); line-height: 1.85; margin-bottom: 48px; }
.contact-list { display: flex; flex-direction: column; margin-bottom: 48px; }
.cl-item { padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,.05); }
.cl-label { display: block; font-size: 0.58rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.cl-item a, .cl-item span { font-size: 0.88rem; color: rgba(255,255,255,.5); text-decoration: none; transition: color .2s; }
.cl-item a:hover { color: var(--white); }
.contact-social { display: flex; gap: 20px; }
.contact-social a { font-size: 0.62rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,.25); text-decoration: none; transition: color .2s; }
.contact-social a:hover { color: var(--gold); }

.contact-right { padding: 100px 80px; display: flex; flex-direction: column; justify-content: center; }
.quote-form { display: flex; flex-direction: column; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.fg { margin-bottom: 28px; }
.fg label { display: block; font-size: 0.58rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,.25); margin-bottom: 10px; }
.fg input, .fg select, .fg textarea {
  width: 100%; background: transparent;
  border: none; border-bottom: 1px solid rgba(255,255,255,.1);
  padding: 10px 0; color: var(--white);
  font-family: var(--sans); font-size: 0.88rem;
  transition: border-color .25s; outline: none;
}
.fg input::placeholder, .fg textarea::placeholder { color: rgba(255,255,255,.18); }
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--gold); }
.fg select { appearance: none; cursor: none; }
.fg select option { background: var(--dark); }
.fg textarea { height: 90px; resize: none; }
.btn-submit {
  background: linear-gradient(105deg,
    #7A5518 0%, #B8892A 18%,
    #D4A840 35%, #E8C870 48%,
    #C8962A 62%, #D4A840 75%,
    #A87820 88%, #7A5518 100%
  );
  background-size: 220% 100%;
  color: #1A0E00;
  font-family: var(--sans); font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 16px 40px; border: none; cursor: none;
  align-self: flex-start; position: relative; overflow: hidden;
  border-top: 1px solid rgba(255,240,160,.4);
  border-bottom: 1px solid rgba(60,30,0,.3);
  box-shadow: inset 0 1px 0 rgba(255,245,180,.3), 0 4px 18px rgba(180,130,30,.4);
  text-shadow: 0 1px 0 rgba(255,245,180,.3);
  animation: goldMetal 6s ease-in-out infinite;
  transition: transform .2s, box-shadow .2s;
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: inset 0 1px 0 rgba(255,245,180,.5), 0 8px 28px rgba(200,160,40,.6); }

/* ── FOOTER ───────────────────────────────────────── */
.footer { background: #040912; padding: 80px 0 0; }
.footer-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 48px; padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,.04);
  flex-wrap: wrap;
}
.footer-brand img { height: 64px; width: auto; margin-bottom: 16px; display: block; }
.footer-brand p { font-size: 0.75rem; color: rgba(255,255,255,.2); font-style: italic; line-height: 1.7; }
.footer-cols { display: flex; gap: 64px; flex-wrap: wrap; }
.fcol { display: flex; flex-direction: column; gap: 12px; }
.fcol strong { font-size: 0.58rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,.2); margin-bottom: 4px; }
.fcol a { font-size: 0.8rem; color: rgba(255,255,255,.38); text-decoration: none; transition: color .2s; }
.fcol a:hover { color: var(--gold); }
.footer-bottom {
  padding: 24px 40px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 8px;
}
.footer-bottom p { font-size: 0.65rem; color: rgba(255,255,255,.15); letter-spacing: 0.06em; }

/* ── FLOATING BUTTONS ─────────────────────────────── */
.fab-quote {
  position: fixed; bottom: 36px; left: 36px; z-index: 900;
  background: linear-gradient(105deg,
    #7A5518 0%, #B8892A 18%,
    #D4A840 35%, #E8C870 48%,
    #C8962A 62%, #D4A840 75%,
    #A87820 88%, #7A5518 100%
  );
  background-size: 220% 100%;
  color: #1A0E00;
  font-family: var(--sans); font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 14px 28px; text-decoration: none; position: fixed;
  border-top: 1px solid rgba(255,240,160,.4);
  border-bottom: 1px solid rgba(60,30,0,.3);
  border-left: none; border-right: none;
  box-shadow: inset 0 1px 0 rgba(255,245,180,.3), 0 6px 24px rgba(180,130,30,.5);
  text-shadow: 0 1px 0 rgba(255,245,180,.3);
  opacity: 0; transform: translateY(8px);
  transition: opacity .4s, transform .4s, box-shadow .2s;
  cursor: none;
  animation: goldMetal 6s ease-in-out infinite;
  animation-play-state: paused;
}
.fab-quote.visible { opacity: 1; transform: translateY(0); animation-play-state: running; }
.fab-quote:hover { box-shadow: inset 0 1px 0 rgba(255,245,180,.5), 0 10px 32px rgba(200,160,40,.7); }

.fab-call {
  position: fixed; bottom: 36px; right: 36px; z-index: 900;
  width: 52px; height: 52px;
  background: #25D366;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; text-decoration: none;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(37,211,102,.4), 0 2px 8px rgba(0,0,0,.3);
  transition: transform .2s, box-shadow .2s;
  cursor: none;
  animation: waPulse 2.5s ease-in-out infinite;
}
.fab-call:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,.6), 0 2px 8px rgba(0,0,0,.3); }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,.4), 0 2px 8px rgba(0,0,0,.3); }
  50%       { box-shadow: 0 4px 32px rgba(37,211,102,.7), 0 0 0 8px rgba(37,211,102,.1), 0 2px 8px rgba(0,0,0,.3); }
}

.contact-social { display: flex; gap: 14px; flex-wrap: wrap; }
.contact-social a {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(200,169,110,.2);
  color: rgba(255,255,255,.4); font-size: 0.9rem;
  text-decoration: none;
  transition: all .25s;
}
.contact-social a:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

/* ── GOLD SHINE ───────────────────────────────────── */
@keyframes goldSweep {
  0%   { background-position: 200% center; }
  100% { background-position: -200% center; }
}
@keyframes goldMetal {
  0%   { background-position: 0% center; }
  50%  { background-position: 100% center; }
  100% { background-position: 0% center; }
}
@keyframes btnShineSubtle {
  0%      { left: -120%; opacity: .6; }
  40%, 100% { left: 160%; opacity: .6; }
}
@keyframes goldPulse {
  0%, 100% { box-shadow: 0 4px 24px rgba(200,169,110,.2); }
  50%       { box-shadow: 0 4px 40px rgba(240,217,138,.5), 0 0 80px rgba(200,169,110,.15); }
}

.btn-primary,
.btn-nav-cta,
.btn-submit,
.fab-quote,
.cta-banner,
.ticker {
  position: relative; overflow: hidden;
}
/* Gold metal sweep on hover */
.btn-primary::after,
.btn-nav-cta::after,
.btn-submit::after,
.fab-quote::after {
  content: '';
  position: absolute; top: 0; left: -120%;
  width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,220,.18), transparent);
  transform: skewX(-18deg);
  transition: none;
  animation: btnShine 2.5s ease-in-out infinite;
}
@keyframes btnShine {
  0%      { left: -120%; }
  45%, 100% { left: 160%; }
}

.ticker {
  background: var(--gold-shine);
  background-size: 300% 100%;
  animation: tickerGold 4s linear infinite;
}
@keyframes tickerGold {
  0%   { background-position: 0% center; }
  100% { background-position: 300% center; }
}

.hstat-n,
.svc-n,
blockquote em,
.testi-stars {
  background: var(--gold-shine);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: goldSweep 4s linear infinite;
}

.fab-quote {
  background: var(--gold-shine);
  background-size: 300% 100%;
  animation: goldSweep 3s linear infinite;
  animation-play-state: paused;
}
.fab-quote.visible { animation-play-state: running; }
.fab-quote:hover { animation-play-state: running; }

.about-img-badge { animation: goldPulse 3s ease-in-out infinite; }

/* ── SCROLL REVEAL ────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
.reveal.revealed { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ───────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-logo-large img { width: 160px; height: 160px; }
  .about-quote-side, .about-image-side { padding: 80px 48px; }
  .contact-left, .contact-right { padding: 80px 48px; }
}
@media (max-width: 860px) {
  .nav-links, .btn-nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-right { display: none; }
  .hero-inner { padding: 160px 40px 60px; }
  .hero-stats { flex-wrap: wrap; }
  .hstat { min-width: 50%; }
  .hstat-div { display: none; }
  .svc-row { grid-template-columns: 48px 1fr; }
  .svc-arrow { display: none; }
  .about-inner { grid-template-columns: 1fr; }
  .about-quote-side, .about-image-side { padding: 60px 32px; }
  blockquote { font-size: 1.4rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-left, .contact-right { padding: 60px 32px; }
  .contact-left { border-right: none; border-bottom: 1px solid rgba(200,169,110,.08); }
  .footer-top { flex-direction: column; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .sec-head { flex-direction: column; align-items: flex-start; }
  .cta-inner { flex-direction: column; }
}
@media (max-width: 600px) {
  .container { padding: 0 24px; }
  .nav-inner { padding: 0 24px; }
  .hero-inner { padding: 140px 24px 40px; }
  h1 { font-size: 3rem; }
  .f-row { grid-template-columns: 1fr; }
  .footer-cols { gap: 32px; }
  .fab-quote { left: 20px; bottom: 20px; }
  .fab-call { right: 20px; bottom: 20px; }
  .about-meta { grid-template-columns: 1fr; }
}
