/* ============================================================
   DJM REMOVALS v2 — Premium Dark Edition
   Inspired by jeton.com aesthetic
   Dark luxury · Gold accents · Cinematic animations
   ============================================================ */

@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&family=Bebas+Neue&family=Anton&display=swap');

/* ─── DESIGN TOKENS ─────────────────────────────────────── */
:root {
  --night:          #07080E;
  --night-2:        #0C0F1A;
  --night-3:        #111622;
  --night-4:        #192030;
  --gold:           #C8922A;
  --gold-light:     #DCA83C;
  --gold-pale:      rgba(200, 146, 42, 0.12);
  --gold-glow:      rgba(200, 146, 42, 0.25);
  --gold-border:    rgba(200, 146, 42, 0.35);
  --cream:          #F0EAE0;
  --cream-muted:    rgba(240, 234, 224, 0.55);
  --cream-faint:    rgba(240, 234, 224, 0.07);
  --border:         rgba(240, 234, 224, 0.08);
  --white:          #FFFFFF;

  --ff-display:     'Cormorant Garamond', Georgia, serif;
  --ff-body:        'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --ff-accent:      'Bebas Neue', Impact, sans-serif;

  --fs-hero:        clamp(4rem, 10.5vw, 9.5rem);
  --fs-h1:          clamp(2.75rem, 6vw, 5.5rem);
  --fs-h2:          clamp(2rem, 4vw, 3.5rem);
  --fs-h3:          clamp(1.25rem, 2vw, 1.625rem);
  --fs-body:        1rem;
  --fs-sm:          0.875rem;
  --fs-label:       0.7rem;

  --section-gap:    clamp(80px, 12vw, 160px);
  --gutter:         clamp(20px, 5vw, 80px);
  --max-w:          1280px;

  --radius-sm:      6px;
  --radius:         14px;
  --radius-lg:      24px;
  --radius-full:    9999px;

  --ease-expo:      cubic-bezier(0.16, 1, 0.3, 1);
  --ease-quart:     cubic-bezier(0.76, 0, 0.24, 1);
  --ease-std:       cubic-bezier(0.4, 0, 0.2, 1);

  --t-fast:         180ms;
  --t-med:          360ms;
  --t-slow:         700ms;
  --t-cinematic:    1100ms;
}

/* ─── RESET ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--ff-body);
  background: var(--night);
  color: var(--cream);
  overflow-x: hidden;
  cursor: none;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: none; border: none; background: none; }

/* ─── CUSTOM CURSOR ──────────────────────────────────────── */
.cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform var(--t-fast) var(--ease-expo),
              width var(--t-fast) var(--ease-expo),
              height var(--t-fast) var(--ease-expo),
              opacity var(--t-fast);
  mix-blend-mode: normal;
}
.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 36px; height: 36px;
  border: 1px solid var(--gold-border);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.12s var(--ease-std),
              width 0.3s var(--ease-expo),
              height 0.3s var(--ease-expo),
              opacity 0.3s;
}
.cursor-dot.hovering { width: 12px; height: 12px; }
.cursor-ring.hovering { width: 56px; height: 56px; border-color: var(--gold); opacity: 0.6; }

/* ─── CONTAINER ─────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ─── SCROLL PROGRESS BAR ────────────────────────────────── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  z-index: 9997;
  width: 0%;
  transition: width 0.1s linear;
}

/* ─── TYPOGRAPHY ─────────────────────────────────────────── */
.display {
  font-family: var(--ff-display);
  font-size: var(--fs-hero);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--cream);
}
.display em { font-style: italic; color: var(--gold); }

h1, .h1 {
  font-family: var(--ff-display);
  font-size: var(--fs-h1);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
h2, .h2 {
  font-family: var(--ff-display);
  font-size: var(--fs-h2);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.015em;
}
h3, .h3 {
  font-family: var(--ff-display);
  font-size: var(--fs-h3);
  font-weight: 400;
  line-height: 1.25;
}

.label {
  font-family: var(--ff-body);
  font-size: var(--fs-label);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.label--muted { color: var(--cream-muted); }

/* ─── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--ff-body);
  font-size: var(--fs-sm);
  font-weight: 500;
  letter-spacing: 0.03em;
  border-radius: var(--radius-full);
  cursor: none;
  border: 1px solid transparent;
  transition: all var(--t-fast) var(--ease-expo);
  white-space: nowrap;
}
.btn--gold {
  background: var(--gold);
  color: var(--night);
  border-color: var(--gold);
}
.btn--gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--gold-glow);
}
.btn--outline {
  background: transparent;
  color: var(--cream);
  border-color: var(--border);
}
.btn--outline:hover {
  border-color: var(--gold-border);
  color: var(--gold);
  transform: translateY(-2px);
}
.btn--lg { padding: 18px 40px; font-size: var(--fs-body); }
.btn--sm { padding: 10px 20px; font-size: 0.8rem; }
.btn svg { width: 16px; height: 16px; }

/* ─── REVEAL ANIMATIONS ──────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity var(--t-slow) var(--ease-expo),
              transform var(--t-slow) var(--ease-expo);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 80ms; }
.reveal-d2 { transition-delay: 160ms; }
.reveal-d3 { transition-delay: 240ms; }
.reveal-d4 { transition-delay: 320ms; }
.reveal-d5 { transition-delay: 400ms; }

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity var(--t-slow) var(--ease-expo),
              transform var(--t-slow) var(--ease-expo);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity var(--t-slow) var(--ease-expo),
              transform var(--t-slow) var(--ease-expo);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity var(--t-slow) var(--ease-expo),
              transform var(--t-slow) var(--ease-expo);
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* ─── NAVIGATION ─────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 var(--gutter);
  transition: background var(--t-med) var(--ease-std),
              border-color var(--t-med) var(--ease-std),
              box-shadow var(--t-med) var(--ease-std);
}
.nav.scrolled {
  background: rgba(7, 8, 14, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 40px rgba(0,0,0,0.4);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.4em;
  line-height: 1;
}
.nav__logo-djm {
  font-family: 'Anton', var(--ff-accent), sans-serif;
  font-size: 1.7rem;
  letter-spacing: 0.01em;
  color: var(--cream);
  line-height: 1;
}
.nav__logo-removals {
  font-family: var(--ff-body);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav__links a {
  font-size: var(--fs-sm);
  font-weight: 400;
  color: var(--cream-muted);
  letter-spacing: 0.04em;
  transition: color var(--t-fast);
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--t-fast) var(--ease-expo);
}
.nav__links a:hover { color: var(--cream); }
.nav__links a:hover::after { width: 100%; }
.nav__cta { margin-left: 20px; }
.nav__phone {
  font-family: var(--ff-body);
  font-size: var(--fs-sm);
  color: var(--gold);
  font-weight: 500;
  margin-right: 28px;
}
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav__burger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--cream);
  transition: all var(--t-fast) var(--ease-std);
}

/* Mobile nav */
.nav__mobile {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--night-2);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--gutter);
  transform: translateX(100%);
  transition: transform var(--t-slow) var(--ease-expo);
}
.nav__mobile.open { transform: translateX(0); }
.nav__mobile-links {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.nav__mobile-links a {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 8vw, 3.5rem);
  font-weight: 300;
  color: var(--cream);
  transition: color var(--t-fast);
}
.nav__mobile-links a:hover { color: var(--gold); }
.nav__mobile-close {
  position: absolute;
  top: 24px; right: var(--gutter);
  font-size: 2rem;
  color: var(--cream-muted);
  transition: color var(--t-fast);
}
.nav__mobile-close:hover { color: var(--cream); }
.nav__mobile-cta { margin-top: 48px; }

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-top: 96px;
  padding-bottom: clamp(60px, 8vw, 100px);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% -5%,  rgba(200,146,42,0.10) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 90% 110%, rgba(200,146,42,0.06) 0%, transparent 55%),
    linear-gradient(180deg, rgba(10,12,22,0.7) 0%, rgba(10,12,22,0.85) 100%),
    url('../images/hero-bg.jpg') center/cover no-repeat;
  z-index: 0;
}
.hero__grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(240,234,224,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(240,234,224,0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  animation: gridDrift 25s linear infinite;
}
@keyframes gridDrift {
  from { transform: translate(0, 0); }
  to   { transform: translate(72px, 72px); }
}
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
}
.hero__orb--1 {
  width: 600px; height: 600px;
  top: -200px; right: -100px;
  background: radial-gradient(circle, rgba(200,146,42,0.08) 0%, transparent 70%);
  animation: orbFloat 8s ease-in-out infinite;
}
.hero__orb--2 {
  width: 400px; height: 400px;
  bottom: 0; left: 10%;
  background: radial-gradient(circle, rgba(200,146,42,0.05) 0%, transparent 70%);
  animation: orbFloat 12s ease-in-out infinite reverse;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%       { transform: translate(20px, -30px) scale(1.05); }
}
.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}
.hero__eyebrow::before {
  content: '';
  display: block;
  width: 32px; height: 1px;
  background: var(--gold);
}
.hero__title {
  font-family: var(--ff-display);
  font-size: var(--fs-hero);
  font-weight: 300;
  line-height: 0.93;
  letter-spacing: -0.025em;
  margin-bottom: 40px;
  overflow: hidden;
}
.hero__title-line {
  display: block;
  overflow: hidden;
}
.hero__title-inner {
  display: block;
  transform: translateY(105%);
  transition: transform var(--t-cinematic) var(--ease-expo);
}
.hero__title-inner.revealed { transform: translateY(0); }
.hero__title-line:nth-child(1) .hero__title-inner { transition-delay: 0.1s; }
.hero__title-line:nth-child(2) .hero__title-inner { transition-delay: 0.25s; }
.hero__title-line:nth-child(3) .hero__title-inner { transition-delay: 0.4s; }

.hero__title em {
  font-style: italic;
  color: var(--gold);
}
.hero__body {
  max-width: 680px;
  margin-bottom: 48px;
}
.hero__body p {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--cream-muted);
  line-height: 1.65;
  font-weight: 300;
}
.hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.hero__scroll {
  position: absolute;
  bottom: 0;
  right: var(--gutter);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-body);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-muted);
  z-index: 2;
}
.hero__scroll-track {
  width: 1px;
  height: 48px;
  background: var(--border);
  position: relative;
  overflow: hidden;
}
.hero__scroll-thumb {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 50%;
  background: var(--gold);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%   { transform: translateY(-100%); }
  100% { transform: translateY(200%); }
}
.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 64px;
}
.hero__stat {
  background: var(--night-3);
  padding: 24px 28px;
  transition: background var(--t-fast);
}
.hero__stat:hover { background: var(--night-4); }
.hero__stat-num {
  font-family: var(--ff-accent);
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0.04em;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.hero__stat-label {
  font-size: 0.75rem;
  color: var(--cream-muted);
  letter-spacing: 0.06em;
}

/* ─── MARQUEE ────────────────────────────────────────────── */
.marquee-wrap {
  background: var(--gold);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  animation: marqueeScroll 20s linear infinite;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding: 0 40px;
  font-family: var(--ff-accent);
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  color: var(--night);
}
.marquee-item .dot {
  width: 4px; height: 4px;
  background: var(--night);
  border-radius: 50%;
  opacity: 0.4;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── SECTION HEADER ─────────────────────────────────────── */
.section-header {
  margin-bottom: clamp(48px, 6vw, 80px);
}
.section-header--centered { text-align: center; }
.section-header--centered .section-header__body {
  margin: 16px auto 0;
}
.section-header__body {
  max-width: 540px;
  font-size: clamp(0.95rem, 1.3vw, 1.1rem);
  color: var(--cream-muted);
  line-height: 1.7;
  margin-top: 12px;
  font-weight: 300;
}

/* ─── SERVICES SECTION ────────────────────────────────────── */
.services {
  padding: var(--section-gap) 0;
  background: var(--night);
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.service-card {
  background: var(--night-3);
  padding: clamp(28px, 4vw, 48px);
  transition: background var(--t-fast) var(--ease-std),
              transform var(--t-fast) var(--ease-expo);
  position: relative;
  overflow: hidden;
}
/* Photo background cards */
.service-card[data-photo]::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--card-photo);
  background-size: cover;
  background-position: center;
  opacity: 0.08;
  z-index: 0;
  transition: opacity var(--t-med) var(--ease-std);
}
.service-card[data-photo]:hover::after { opacity: 0.16; }
.service-card[data-photo] > * { position: relative; z-index: 1; }
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-med) var(--ease-expo);
  z-index: 2;
}
.service-card:hover { background: var(--night-4); }
.service-card:hover::before { transform: scaleX(1); }
.service-card__icon {
  width: 40px; height: 40px;
  margin-bottom: 24px;
  color: var(--gold);
}
.service-card__icon svg { width: 100%; height: 100%; }
.service-card__num {
  font-family: var(--ff-accent);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  opacity: 0.5;
  margin-bottom: 12px;
}
.service-card__title {
  font-family: var(--ff-display);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 12px;
  line-height: 1.2;
}
.service-card__body {
  font-size: var(--fs-sm);
  color: var(--cream-muted);
  line-height: 1.65;
  font-weight: 300;
}
.service-card__arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity var(--t-fast), transform var(--t-fast) var(--ease-expo);
}
.service-card:hover .service-card__arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ─── PROCESS SECTION ────────────────────────────────────── */
.process {
  padding: var(--section-gap) 0;
  background: var(--night-2);
  position: relative;
  overflow: hidden;
}
.process::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--gold-pale) 0%, transparent 70%);
  pointer-events: none;
}
.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  position: relative;
}
.process__step {
  padding: clamp(24px, 3vw, 40px);
  position: relative;
}
.process__step-num {
  font-family: var(--ff-accent);
  font-size: clamp(3rem, 6vw, 5rem);
  letter-spacing: 0.04em;
  color: transparent;
  -webkit-text-stroke: 1px var(--gold-border);
  line-height: 1;
  margin-bottom: 20px;
  transition: color var(--t-med) var(--ease-expo), -webkit-text-stroke var(--t-med);
}
.process__step:hover .process__step-num {
  color: var(--gold);
  -webkit-text-stroke: 1px var(--gold);
}
.process__step-title {
  font-family: var(--ff-display);
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 10px;
}
.process__step-body {
  font-size: var(--fs-sm);
  color: var(--cream-muted);
  line-height: 1.65;
  font-weight: 300;
}
.process__connector {
  display: none;
}

/* ─── AREAS SECTION ──────────────────────────────────────── */
.areas {
  padding: var(--section-gap) 0;
  background: var(--night);
  position: relative;
}
.areas::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 380px;
  background:
    linear-gradient(180deg, rgba(7,12,20,0.55) 0%, rgba(7,12,20,0.98) 100%),
    url('../images/hertfordshire-landscape.jpg') center 40%/cover no-repeat;
  z-index: 0;
  pointer-events: none;
}
.areas > .container { position: relative; z-index: 1; }
.areas__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.area-tile {
  background: var(--night-3);
  padding: 28px 32px;
  transition: background var(--t-fast), color var(--t-fast);
  position: relative;
  overflow: hidden;
}
.area-tile::after {
  content: '→';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%) translateX(20px);
  font-size: 1.2rem;
  color: var(--gold);
  opacity: 0;
  transition: all var(--t-fast) var(--ease-expo);
}
.area-tile:hover { background: var(--night-4); }
.area-tile:hover::after { opacity: 1; transform: translateY(-50%) translateX(0); }
.area-tile__name {
  font-family: var(--ff-display);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 4px;
}
.area-tile__county {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream-muted);
}
.areas__cta {
  text-align: center;
  margin-top: 40px;
}

/* ─── TESTIMONIALS ───────────────────────────────────────── */
.testimonials {
  padding: var(--section-gap) 0;
  background: var(--night-2);
  position: relative;
  overflow: hidden;
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.testimonial-card {
  background: var(--night-3);
  padding: clamp(28px, 4vw, 48px);
  transition: background var(--t-fast);
}
.testimonial-card:hover { background: var(--night-4); }
.testimonial-card__quote {
  font-family: var(--ff-display);
  font-size: 3.5rem;
  color: var(--gold);
  opacity: 0.4;
  line-height: 0.8;
  margin-bottom: 16px;
}
.testimonial-card__stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}
.testimonial-card__stars span {
  color: var(--gold);
  font-size: 0.9rem;
}
.testimonial-card__body {
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  color: var(--cream-muted);
  line-height: 1.7;
  font-weight: 300;
  font-family: var(--ff-display);
  font-style: italic;
  margin-bottom: 24px;
}
.testimonial-card__author {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.testimonial-card__name {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--cream);
}
.testimonial-card__location {
  font-size: 0.75rem;
  color: var(--cream-muted);
  letter-spacing: 0.08em;
}

/* ─── ABOUT STRIP ────────────────────────────────────────── */
.about-strip {
  padding: var(--section-gap) 0;
  background: var(--night);
}
.about-strip__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 8vw, 120px);
  align-items: center;
}
.about-strip__values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}
.value-item {
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--t-fast), background var(--t-fast);
}
.value-item:hover {
  border-color: var(--gold-border);
  background: var(--gold-pale);
}
.value-item__title {
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 6px;
}
.value-item__body {
  font-size: 0.8rem;
  color: var(--cream-muted);
  line-height: 1.55;
}
.about-strip__visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.about-strip__visual-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(10,12,22,0.4) 0%, rgba(10,12,22,0.6) 100%),
    url('../images/about-team.jpg') center/cover no-repeat;
}
.about-strip__visual-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
  background: linear-gradient(to top, rgba(7,8,14,0.9) 0%, transparent 60%);
}
.about-strip__quote {
  font-family: var(--ff-display);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 16px;
}
.about-strip__quote em { color: var(--gold); font-style: normal; }

/* ─── CTA SECTION ────────────────────────────────────────── */
.cta-section {
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--night-2);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(200,146,42,0.08) 0%, transparent 70%);
}
.cta-section__inner { position: relative; z-index: 1; }
.cta-section__title {
  font-family: var(--ff-display);
  font-size: var(--fs-h1);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 24px;
}
.cta-section__title em { font-style: italic; color: var(--gold); }
.cta-section__sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--cream-muted);
  max-width: 500px;
  margin: 0 auto 48px;
  line-height: 1.65;
  font-weight: 300;
}
.cta-section__phone {
  display: block;
  font-family: var(--ff-accent);
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 32px;
  transition: color var(--t-fast);
}
.cta-section__phone:hover { color: var(--gold-light); }
.cta-section__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ─── FOOTER ─────────────────────────────────────────────── */
.footer {
  background: var(--night);
  border-top: 1px solid var(--border);
  padding: clamp(48px, 6vw, 80px) 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}
.footer__brand .nav__logo-djm { font-size: 2.2rem; }
.footer__brand .nav__logo-removals { font-size: 0.9rem; }
.footer__brand p {
  margin-top: 16px;
  font-size: var(--fs-sm);
  color: var(--cream-muted);
  line-height: 1.7;
  font-weight: 300;
  max-width: 260px;
}
.footer__contact {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer__contact a {
  font-size: var(--fs-sm);
  color: var(--gold);
  font-weight: 500;
  transition: color var(--t-fast);
}
.footer__contact a:hover { color: var(--gold-light); }
.footer__col h4 {
  font-family: var(--ff-body);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-muted);
  margin-bottom: 20px;
}
.footer__col ul li + li { margin-top: 12px; }
.footer__col ul a {
  font-size: var(--fs-sm);
  color: var(--cream-muted);
  font-weight: 300;
  transition: color var(--t-fast);
}
.footer__col ul a:hover { color: var(--cream); }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer__copy {
  font-size: 0.75rem;
  color: var(--cream-muted);
  font-weight: 300;
}
.footer__legal {
  display: flex;
  gap: 24px;
}
.footer__legal a {
  font-size: 0.75rem;
  color: var(--cream-muted);
  transition: color var(--t-fast);
}
.footer__legal a:hover { color: var(--cream); }

/* ─── DIVIDER LINE ───────────────────────────────────────── */
.divider {
  height: 1px;
  background: var(--border);
}
.divider--gold { background: linear-gradient(90deg, transparent, var(--gold-border), transparent); }

/* ─── PAGE TRANSITION OVERLAY ────────────────────────────── */
.page-overlay {
  position: fixed;
  inset: 0;
  background: var(--night);
  z-index: 9990;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s var(--ease-std);
}
.page-overlay.active { opacity: 1; pointer-events: all; }

/* ─── RESPONSIVE ─────────────────────────────────────────── */
/* ─── AREA PAGE LOCAL CONTENT ────────────────────────────── */
.local-content__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}

@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .process__steps { grid-template-columns: repeat(2, 1fr); }
  .areas__grid { grid-template-columns: repeat(3, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .about-strip__layout { grid-template-columns: 1fr; }
  .about-strip__visual { aspect-ratio: 16/7; }
}
@media (max-width: 768px) {
  .nav__links, .nav__phone, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .services__grid { grid-template-columns: 1fr; }
  .process__steps { grid-template-columns: 1fr; }
  .areas__grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid { grid-template-columns: 1fr; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr; }
  .about-strip__values { grid-template-columns: 1fr; }
  .local-content__grid { grid-template-columns: 1fr; }
  .cursor-dot, .cursor-ring { display: none; }
  body { cursor: auto; }
  button, a { cursor: pointer; }
}
@media (max-width: 480px) {
  .areas__grid { grid-template-columns: 1fr; }
  .hero__stats { grid-template-columns: 1fr 1fr; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
}

/* ─── COMMERCIAL CALLOUT ─────────────────────────────────── */
.commercial-callout {
  padding: var(--section-gap) 0;
  background: var(--night-2);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
}
.commercial-callout__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.commercial-callout__text h2 {
  font-family: var(--ff-display);
  font-size: var(--fs-h2);
  font-weight: 300;
  color: var(--cream);
  margin: 0 0 24px;
  line-height: 1.15;
}
.commercial-callout__text p {
  color: var(--cream-muted);
  font-size: var(--fs-body);
  line-height: 1.75;
  margin-bottom: 32px;
}
.commercial-callout__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
  border: 1px solid var(--border);
  padding: 40px 32px;
}
.stat-num {
  display: block;
  font-family: var(--ff-display);
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 6px;
  font-weight: 300;
}
.stat-label {
  display: block;
  font-size: 0.7rem;
  color: var(--cream-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
@media (max-width: 768px) {
  .commercial-callout__inner { grid-template-columns: 1fr; }
  .commercial-callout__stats { grid-template-columns: repeat(3, 1fr); padding: 28px 20px; }
}

/* WhatsApp floating button */
.whatsapp-fab {
  position: fixed;
  right: calc(env(safe-area-inset-right, 0px) + 32px);
  bottom: calc(env(safe-area-inset-bottom, 0px) + 32px);
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35), 0 0 0 rgba(200, 146, 42, 0.4);
  z-index: 900;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.whatsapp-fab:hover {
  background: var(--gold-light);
  transform: scale(1.08);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.4), 0 0 0 8px var(--gold-glow);
}
.whatsapp-fab svg {
  width: 30px;
  height: 30px;
  fill: var(--night);
}
@media (max-width: 1024px) {
  .whatsapp-fab {
    right: calc(env(safe-area-inset-right, 0px) + 24px);
    bottom: calc(env(safe-area-inset-bottom, 0px) + 24px);
  }
}
@media (max-width: 768px) {
  .whatsapp-fab {
    width: 52px;
    height: 52px;
    right: calc(env(safe-area-inset-right, 0px) + 18px);
    bottom: calc(env(safe-area-inset-bottom, 0px) + 18px);
  }
  .whatsapp-fab svg {
    width: 26px;
    height: 26px;
  }
}
