/* ═══════════════════════════════════════════════════════════
   M&K Fast Removals — Merged Site CSS
   Aesthetic: 333-style cinematic dark + brand gold/navy
   ═══════════════════════════════════════════════════════════ */

:root {
  /* ── Palette ─────────────────────────── */
  --blush:      #FAF0EB;   /* 1 lightest */
  --rose:       #D98B7A;   /* 2 dusty rose */
  --coral:      #F05A28;   /* 3 vivid accent */
  --lavender:   #9B96A8;   /* 4 muted purple-grey */
  --ink:        #1E2235;   /* 5 deep navy-charcoal */

  /* ── Semantic aliases ────────────────── */
  --navy:       #1E2235;
  --navy-mid:   #262A40;
  --navy-light: #2F3450;
  --gold:       #F05A28;       /* coral as primary accent */
  --gold-light: #F47850;
  --gold-pale:  rgba(240,90,40,0.10);
  --cream:      #FAF0EB;
  --dark:       #1E2235;
  --dark-mid:   #262A40;
  --white:      #ffffff;
  --text-light: rgba(250,240,235,0.75);
  --text-faint: rgba(250,240,235,0.42);
  --border:     rgba(250,240,235,0.1);
  --radius:     10px;
  --radius-lg:  18px;
  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
  --shadow:     0 20px 60px rgba(30,34,53,0.55);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Cabinet Grotesk', 'Outfit', sans-serif;
  background: var(--ink);
  color: var(--blush);
  line-height: 1.6;
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-thumb { background: var(--coral); border-radius: 3px; }

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  line-height: 1.15;
}

em { font-style: italic; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; }

/* ── Chapter / Section base ────────────────── */
.chapter {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.chapter-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 10;
}

.chapter-label {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: block;
}

.chapter-title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 18px;
  line-height: 1.1;
}

.chapter-title em {
  color: var(--gold);
}

.chapter-desc {
  font-size: 17px;
  color: rgba(250,240,235,0.72);
  max-width: 580px;
  margin-bottom: 56px;
  line-height: 1.75;
}

/* Parallax bg */
.section-parallax { background: var(--dark); }
.section-bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 0;
  transform: scale(1.05);
  transition: transform 0.8s ease;
}
.section-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.section-overlay.dark { background: rgba(10,10,10,0.72); }
.section-overlay.medium { background: rgba(10,10,10,0.55); }

/* ── HEADER ──────────────────────────────── */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 72px;
  background: rgba(30,34,53,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(240,90,40,0.15);
  transition: var(--transition);
}

#site-header.scrolled {
  height: 60px;
  background: rgba(30,34,53,0.99);
  box-shadow: 0 4px 40px rgba(0,0,0,0.6);
}

.logo-link { display: flex; align-items: center; }
.logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.desktop-nav {
  display: flex;
  gap: 4px;
  align-items: center;
}

.desktop-nav a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--cream);
  padding: 8px 14px;
  border-radius: 6px;
  transition: var(--transition);
  position: relative;
}

.desktop-nav a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.desktop-nav a:hover { color: var(--white); }
.desktop-nav a:hover::after { transform: scaleX(1); }

.header-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.btn-wa {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  background: #25D366;
  color: white;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  transition: var(--transition);
}
.btn-wa:hover { background: #1da851; transform: translateY(-1px); }

.btn-quote-top {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  transition: var(--transition);
}
.btn-quote-top:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 6px 24px rgba(232,168,32,0.35); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--cream); border-radius: 2px; transition: var(--transition); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,0.98);
  z-index: 999;
  display: flex;
  flex-direction: column;
  padding: 100px 40px 40px;
  gap: 6px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.mobile-menu.open { transform: translateX(0); }

.mobile-menu nav { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu nav a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 600;
  color: var(--cream);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: var(--transition);
  letter-spacing: -0.5px;
}
.mobile-menu nav a:hover { color: var(--gold); padding-left: 12px; }

.mobile-contacts {
  margin-top: 32px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.mobile-contacts a {
  padding: 12px 20px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  font-size: 14px;
  color: var(--cream);
  transition: var(--transition);
}
.mobile-contacts a:hover { border-color: var(--gold); color: var(--gold); }

.mobile-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 28px;
}

/* ── HERO ──────────────────────────────── */
.chapter--hero {
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  padding: 0;
  background: var(--dark);
}

#hero-three-container {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.hero-bg-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.8s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.22) saturate(0.7);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(ellipse at 30% 60%, rgba(240,90,40,0.10) 0%, transparent 60%),
              linear-gradient(180deg, rgba(10,10,10,0.2) 0%, rgba(10,10,10,0.6) 100%);
}

#parallax-field {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--coral);
  background: rgba(240,90,40,0.10);
  border: 1px solid rgba(240,90,40,0.22);
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
  animation: fadeInUp 0.8s ease both;
}

.hero-headline {
  font-size: clamp(50px, 8vw, 96px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.0;
  margin-bottom: 24px;
  letter-spacing: -2px;
  animation: fadeInUp 0.8s 0.1s ease both;
}
.hero-headline em {
  color: var(--coral);
  font-style: italic;
}

.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 36px;
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 300;
  animation: fadeInUp 0.8s 0.2s ease both;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 52px;
  animation: fadeInUp 0.8s 0.3s ease both;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  animation: fadeInUp 0.8s 0.4s ease both;
}

.stat { display: flex; flex-direction: column; gap: 2px; }
.stat-n {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 600;
  color: var(--coral);
  line-height: 1;
}
.stat-l { font-size: 11px; color: var(--text-faint); letter-spacing: 0.5px; text-transform: uppercase; }
.stat-div { width: 1px; height: 40px; background: rgba(255,255,255,0.15); }

.scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-faint);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 10;
  animation: fadeIn 1s 1s ease both;
}
.scroll-line {
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--coral), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.5; }
}

/* ── Buttons ──────────────────────────────── */
.cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  background: var(--coral);
  color: var(--blush);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: var(--transition);
  border: none;
}
.cta-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(240,90,40,0.45); }
.cta-primary.full-width { width: 100%; }

.cta-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 28px;
  border: 1.5px solid rgba(255,255,255,0.25);
  color: var(--white);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
}
.cta-ghost:hover { border-color: var(--coral); color: var(--coral); }

/* ── TRUST BAR ──────────────────────────────── */
.trust-bar {
  background: var(--coral);
  padding: 14px 40px;
}
.trust-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-item { font-size: 13px; font-weight: 600; color: var(--blush); }
.trust-sep { color: rgba(250,240,235,0.4); }

/* ── SERVICES ──────────────────────────────── */
.chapter--services { background: var(--ink); }
.chapter--services .chapter-title { color: var(--white); }
.chapter--services .chapter-desc { color: var(--text-light); }
.chapter--services .chapter-label { color: var(--gold); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: rgba(250,240,235,0.04);
  border: 1px solid rgba(250,240,235,0.08);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  transition: var(--transition);
  transform-style: preserve-3d;
  overflow: hidden;
  cursor: default;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(240,90,40,0.08), transparent);
  opacity: 0;
  transition: var(--transition);
}
.service-card:hover {
  border-color: rgba(240,90,40,0.35);
  transform: translateY(-8px) perspective(800px) rotateX(2deg);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}
.service-card:hover::before { opacity: 1; }

.service-icon {
  font-size: 32px;
  margin-bottom: 18px;
  width: 56px;
  height: 56px;
  background: rgba(240,90,40,0.10);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: var(--coral);
  transform: scale(1.1) rotate(-5deg);
}

.service-card h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--blush);
  margin-bottom: 10px;
}
.service-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 18px;
}
.service-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.service-card ul li {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-card ul li::before { content: '→'; color: var(--coral); flex-shrink: 0; }

.service-badge {
  position: absolute;
  top: 18px; right: 18px;
  background: var(--coral);
  color: var(--blush);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}

/* ── GALLERY ──────────────────────────────── */
.chapter--gallery {
  background: var(--ink);
  padding: 100px 0 80px;
}
.chapter--gallery .chapter-title { color: var(--white); }

.gallery-swiper {
  width: 100%;
  margin: 40px 0 60px;
  overflow: hidden;
}
.gallery-swiper .swiper-slide {
  position: relative;
  height: 60vh;
  min-height: 400px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  cursor: pointer;
  max-width: 500px;
}
.gallery-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-swiper .swiper-slide:hover img { transform: scale(1.06); }

.slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 24px;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  z-index: 2;
}
.slide-caption span {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 4px;
}
.slide-caption h3 {
  color: var(--white);
  font-size: 22px;
  font-weight: 600;
}

.gallery-pagination { margin-top: 20px; }
.swiper-pagination-bullet { background: rgba(255,255,255,0.3); }
.swiper-pagination-bullet-active { background: var(--gold); }
.gallery-prev, .gallery-next { color: var(--gold); }
.gallery-prev::after, .gallery-next::after { font-size: 20px; }

/* Grid gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 220px);
  gap: 10px;
  margin-top: 0;
}
.gallery-item {
  overflow: hidden;
  border-radius: var(--radius);
  position: relative;
  cursor: zoom-in;
}
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25);
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover::after { opacity: 1; }

/* ── ABOUT ──────────────────────────────── */
.chapter--about { padding: 140px 0; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img-stack {
  position: relative;
  height: 520px;
}
.about-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 76%;
  height: 86%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.about-img-accent {
  position: absolute;
  bottom: 0; right: 0;
  width: 54%;
  height: 54%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 40px rgba(0,0,0,0.6);
  border: 3px solid var(--dark);
}
.about-badge {
  position: absolute;
  top: 50%; left: 52%;
  transform: translate(-50%, -50%);
  background: var(--coral);
  color: var(--blush);
  border-radius: var(--radius);
  padding: 14px 20px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(240,90,40,0.4);
  white-space: nowrap;
  z-index: 2;
}
.about-badge-n {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  font-weight: 700;
  display: block;
  line-height: 1;
}
.about-badge-l { font-size: 11px; font-weight: 600; letter-spacing: 0.5px; }

.about-p {
  font-size: 16px;
  color: rgba(255,255,255,0.72);
  line-height: 1.8;
  margin-bottom: 18px;
}

.about-stats {
  display: flex;
  gap: 32px;
  margin: 32px 0;
  padding: 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
}
.astat { text-align: center; }
.astat-n {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--coral);
  display: block;
  line-height: 1;
}
.astat-l { font-size: 11px; color: var(--text-faint); letter-spacing: 0.5px; text-transform: uppercase; }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.why-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  transition: var(--transition);
}
.why-item:hover {
  background: rgba(240,90,40,0.08);
  border-color: rgba(240,90,40,0.22);
}
.why-icon { font-size: 20px; flex-shrink: 0; }
.why-item div { display: flex; flex-direction: column; gap: 2px; }
.why-item strong { font-size: 13px; font-weight: 600; color: var(--white); }
.why-item span { font-size: 12px; color: var(--text-faint); }

/* ── REVIEWS ──────────────────────────────── */
.chapter--reviews { background: var(--navy-mid); }
.chapter--reviews .chapter-title { color: var(--white); }
.chapter--reviews .chapter-label { color: var(--gold); }
.chapter--reviews .chapter-desc { color: var(--text-light); }

.reviews-swiper-wrap { margin-top: 0; }
.reviews-swiper { padding: 20px 0 50px; }
.reviews-swiper .swiper-slide { height: auto; max-width: 400px; }
.reviews-pagination { margin-top: 10px; }

.review-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 32px;
  height: 100%;
  position: relative;
  transition: var(--transition);
}
.review-card:hover {
  border-color: rgba(240,90,40,0.28);
  transform: translateY(-4px);
}
.review-card::before {
  content: '"';
  position: absolute;
  top: 16px; right: 24px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 80px;
  color: var(--coral);
  opacity: 0.15;
  line-height: 1;
}
.stars { color: #F5C542; font-size: 16px; letter-spacing: 2px; margin-bottom: 14px; }
.review-quote {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 16px;
}
.review-av {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border: 2px solid var(--coral);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--coral);
  flex-shrink: 0;
}
.review-author strong { font-size: 14px; color: var(--white); display: block; }
.review-author span { font-size: 12px; color: var(--text-faint); }

.trustpilot-strip {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  padding: 24px 40px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  margin-top: 40px;
}
.tp-logo { font-size: 22px; font-weight: 800; color: #00B67A; font-family: 'Cormorant Garamond', serif; }
.tp-stars { color: #F5C542; font-size: 22px; letter-spacing: 3px; }
.tp-info { font-size: 14px; color: var(--text-light); }
.tp-info strong { color: var(--white); }
.tp-link { margin-left: auto; color: var(--coral); font-size: 14px; font-weight: 600; transition: var(--transition); }
.tp-link:hover { color: var(--gold-light); }


/* ── FAQ ──────────────────────────────── */
.chapter--faq { padding: 120px 0; }
.chapter--faq .chapter-title { color: var(--white); }

.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open { border-color: rgba(240,90,40,0.35); }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: rgba(255,255,255,0.03);
  border: none;
  text-align: left;
  color: var(--white);
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  gap: 16px;
  transition: var(--transition);
}
.faq-q:hover { background: rgba(255,255,255,0.05); }
.faq-item.open .faq-q { background: rgba(240,90,40,0.07); color: var(--coral); }

.faq-chevron {
  font-size: 24px;
  color: var(--coral);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  line-height: 1;
}
.faq-item.open .faq-chevron { transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1);
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  padding: 0 24px;
}
.faq-item.open .faq-a { max-height: 200px; padding: 0 24px 20px; }

/* ── QUOTE ──────────────────────────────── */
.chapter--quote { padding: 140px 0; }

.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}

.quote-form-wrap .chapter-title { color: var(--white); margin-bottom: 8px; }

.quote-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.55); letter-spacing: 0.8px; text-transform: uppercase; }

.field input, .field select, .field textarea {
  padding: 12px 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  font-size: 14px;
  color: var(--white);
  font-family: 'Cabinet Grotesk', sans-serif;
  transition: var(--transition);
  resize: vertical;
}
.field select option { background: #111; color: white; }
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,0.25); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255,255,255,0.09);
  box-shadow: 0 0 0 3px rgba(232,168,32,0.1);
}

.form-success {
  text-align: center;
  padding: 48px 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(232,168,32,0.2);
  border-radius: var(--radius-lg);
}
.success-icon { font-size: 56px; margin-bottom: 16px; }
.form-success h3 { font-size: 24px; color: var(--white); margin-bottom: 8px; }
.form-success p { color: var(--text-light); }

/* Quote info */
.estimate-card {
  background: rgba(240,90,40,0.08);
  border: 1px solid rgba(240,90,40,0.22);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 24px;
}
.estimate-label { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--coral); margin-bottom: 8px; }
.estimate-range {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}
.estimate-note { font-size: 12px; color: var(--text-faint); }

.contact-ways { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.contact-way {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  transition: var(--transition);
  color: var(--cream);
}
.contact-way:hover { background: rgba(240,90,40,0.08); border-color: rgba(240,90,40,0.22); transform: translateX(4px); }
.cw-icon { font-size: 22px; }
.cw-label { font-size: 11px; color: var(--text-faint); display: block; letter-spacing: 0.5px; text-transform: uppercase; }
.cw-val { font-size: 15px; font-weight: 600; color: var(--white); }

.price-guide {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 24px;
}
.pg-title { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--coral); margin-bottom: 14px; }
.pg-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.6);
}
.pg-row:last-child { border-bottom: none; }
.pg-row span:last-child { color: var(--coral); font-weight: 600; }

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 220px;
  border: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 16px;
}
.map-wrap iframe { width: 100%; height: 100%; border: none; }

.area-tags-wrap { display: flex; flex-direction: column; gap: 12px; }
.area-group strong { font-size: 12px; letter-spacing: 0.5px; color: rgba(255,255,255,0.6); display: block; margin-bottom: 8px; }
.area-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.area-tags span {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  padding: 4px 10px;
  font-size: 11px;
  color: rgba(255,255,255,0.6);
}

/* ── CTA STRIP ──────────────────────────────── */
.cta-strip {
  background: linear-gradient(135deg, var(--coral), var(--gold-light));
  padding: 60px 0;
}
.cta-strip-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-strip-inner h2 { font-size: 36px; font-weight: 700; color: var(--blush); }
.cta-strip-inner p { font-size: 16px; color: rgba(250,240,235,0.78); margin-top: 4px; }
.cta-strip-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.cta-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--ink);
  color: var(--blush);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  transition: var(--transition);
}
.cta-dark:hover { background: var(--navy-light); transform: translateY(-2px); }
.cta-green {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: #25D366;
  color: white;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  transition: var(--transition);
}
.cta-green:hover { background: #1da851; transform: translateY(-2px); }

/* ── FOOTER ──────────────────────────────── */
#site-footer {
  background: #131623;
  padding: 72px 0 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.75; max-width: 280px; margin-top: 16px; }
.footer-logo { height: 48px; width: auto; object-fit: contain; filter: brightness(0) invert(0.7); }
.footer-socials { display: flex; gap: 10px; margin-top: 20px; }
.footer-socials a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: var(--transition);
}
.footer-socials a:hover { background: var(--coral); }

.footer-col h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li, .footer-col ul a {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  transition: var(--transition);
  cursor: pointer;
}
.footer-col ul a:hover { color: var(--coral); padding-left: 4px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}
.footer-bottom a { color: #00B67A; font-weight: 600; }

/* ── FLOATING BUTTONS ──────────────────────────────── */
.fab-dock {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fab {
  width: 54px; height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
  transition: var(--transition);
}
.fab:hover { transform: scale(1.12); }
.fab-green { background: #25D366; }
.fab-gold { background: var(--coral); }

/* ── LIGHTBOX ──────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.96);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.3s ease;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 40px 100px rgba(0,0,0,0.9);
}
.lb-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.lb-close:hover { background: var(--coral); color: var(--blush); }

/* ── PARALLAX FLOATING OBJECTS ──── */
.parallax-box {
  position: absolute;
  pointer-events: none;
  animation: boxFloat linear infinite;
  will-change: transform;
}
.parallax-box svg { filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4)); }

@keyframes boxFloat {
  0%   { opacity:0; transform: translateY(0) rotate(0deg) scale(0.85); }
  5%   { opacity:1; }
  95%  { opacity:0.6; }
  100% { opacity:0; transform: translateY(-110vh) rotate(340deg) scale(1.1); }
}

/* ── REVEAL ANIMATIONS ──────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--delay, 0s);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── KEYFRAMES ──────────────────────── */
@keyframes fadeInUp {
  from { opacity:0; transform: translateY(24px); }
  to   { opacity:1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity:0; }
  to   { opacity:1; }
}

/* ── RESPONSIVE ──────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-img-stack { height: 360px; }
  .quote-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-item.tall { grid-row: span 1; }
}

@media (max-width: 768px) {
  .desktop-nav, .header-actions { display: none; }
  .hamburger { display: flex; }
  .chapter { padding: 80px 0; }
  .chapter-inner { padding: 0 20px; }
  .hero-content { padding: 0 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero-stats { gap: 16px; flex-wrap: wrap; }
  .trust-inner { gap: 12px; }
  .trust-sep { display: none; }
  .cta-strip-inner { flex-direction: column; text-align: center; }
  #site-header { padding: 0 20px; }
  .footer-grid { padding: 0 20px; }
  .footer-bottom { padding: 16px 20px; }
  .about-img-stack { height: 280px; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .gallery-item.wide { grid-column: span 1; }
  .gallery-swiper .swiper-slide { max-width: 90%; }
  .hero-ctas { flex-direction: column; }
  .hero-headline { letter-spacing: -1px; }
}

/* ── Palette finishing touches ──────────────────────── */

/* Rose accent on nav active state */
.desktop-nav a.active { color: var(--coral); }
.desktop-nav a.active::after { transform: scaleX(1); background: var(--coral); }

/* Gallery slide caption label → coral */
.slide-caption span { color: var(--coral) !important; }

/* Chapter labels on dark sections */
.chapter--gallery .chapter-label { color: var(--coral); }

/* Swiper nav arrows coral */
.swiper-button-prev, .swiper-button-next { color: var(--coral) !important; }
.swiper-button-prev::after, .swiper-button-next::after { color: var(--coral) !important; }

/* Review stars → coral/rose blend */
.stars { color: var(--rose) !important; }

/* Trustpilot strip uses lavender border */
.trustpilot-strip { border-color: rgba(155,150,168,0.18) !important; }
.tp-logo { color: var(--coral) !important; }
.tp-stars { color: var(--rose) !important; }

/* Field focus ring → coral */
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--coral) !important;
  box-shadow: 0 0 0 3px rgba(240,90,40,0.12) !important;
}

/* Header action buttons */
.btn-quote-top { background: var(--coral); color: var(--blush); }
.btn-quote-top:hover { background: var(--gold-light); box-shadow: 0 6px 24px rgba(240,90,40,0.38); }

/* Footer bottom border */
.footer-bottom { border-top-color: rgba(155,150,168,0.1); }
.footer-bottom a { color: var(--rose); }

/* About image border */
.about-img-accent { border-color: var(--ink); }

/* About stats bg */
.about-stats { background: rgba(155,150,168,0.06); border-color: rgba(155,150,168,0.12); }

/* Chapter divider — subtle lavender */
.chapter--services::after,
.chapter--gallery::after {
  content: '';
  position: absolute;
  bottom: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(155,150,168,0.2), transparent);
}

/* Hero badge refined */
.hero-eyebrow { 
  background: rgba(240,90,40,0.12) !important;
  border-color: rgba(240,90,40,0.25) !important;
}

/* Quote chapter bg-overlay */
.chapter--quote .chapter-title em { color: var(--coral); }

/* Lavender gradient accent for mobile menu */
.mobile-menu { background: linear-gradient(160deg, var(--ink) 60%, rgba(155,150,168,0.15) 100%); }

/* WhatsApp btn stay green */
.btn-wa { background: #25D366 !important; }
.btn-wa:hover { background: #1da851 !important; }

/* FAB call → coral */
.fab-gold { background: var(--coral) !important; }

/* Scroll indicator line */
.scroll-line { background: linear-gradient(180deg, var(--coral), transparent) !important; }

/* Stats separator line */
.stat-div { background: rgba(155,150,168,0.25); }

/* Blush background for light sections */
.chapter--faq .faq-q { color: var(--blush); }
.chapter--faq .faq-a { color: rgba(250,240,235,0.68); }

/* Chapter label → rose in review section */
.chapter--reviews .chapter-label { color: var(--coral) !important; }
.chapter--reviews .chapter-title { color: var(--blush) !important; }
.chapter--reviews .chapter-desc { color: rgba(250,240,235,0.68) !important; }

/* Footer h4 */
.footer-col h4 { color: var(--blush); }
.footer-brand p { color: rgba(250,240,235,0.45); }

/* Service card body text */
.service-card p { color: rgba(250,240,235,0.65); }
.service-card ul li { color: rgba(250,240,235,0.48); }

/* Review card subtle bg */
.review-card { background: rgba(155,150,168,0.05); border-color: rgba(155,150,168,0.12); }
.review-quote { color: rgba(250,240,235,0.82) !important; }
.review-author strong { color: var(--blush); }

/* Gallery dark bg */
.gallery-item::after { background: rgba(30,34,53,0.3); }

/* Price guide rows */
.pg-row { color: rgba(250,240,235,0.58); border-color: rgba(155,150,168,0.08); }

/* About text paragraph */
.about-p { color: rgba(250,240,235,0.72); }
.about-badge-n { font-style: italic; }

/* FAQ item bg */
.faq-q { background: rgba(155,150,168,0.06); }
.faq-q:hover { background: rgba(155,150,168,0.10); }
.faq-item { border-color: rgba(155,150,168,0.12); }

/* Contact way */
.contact-way { border-color: rgba(155,150,168,0.12); }
.cw-label { color: rgba(250,240,235,0.42); text-transform: uppercase; letter-spacing: 0.5px; }
.cw-val { color: var(--blush); }

/* area tags */
.area-tags span { background: rgba(155,150,168,0.08); border-color: rgba(155,150,168,0.15); color: rgba(250,240,235,0.58); }
.area-group strong { color: rgba(250,240,235,0.55); }

/* Map border */
.map-wrap { border-color: rgba(155,150,168,0.15); }

/* Why item */
.why-item { background: rgba(155,150,168,0.06); border-color: rgba(155,150,168,0.1); }
.why-item strong { color: var(--blush); }
.why-item span { color: rgba(250,240,235,0.42); }

/* ── Logo text next to icon ────────────────────────── */
.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-text-block {
  display: flex;
  flex-direction: column;
  gap: 1px;
  line-height: 1;
}

.logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--blush);
  letter-spacing: -0.3px;
  white-space: nowrap;
}

.logo-tagline {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--coral);
  white-space: nowrap;
}

/* Divider between logo and nav */
.logo-link::after {
  content: '';
  display: block;
  width: 1px;
  height: 32px;
  background: rgba(250,240,235,0.12);
  margin-left: 8px;
}

/* Footer logo with text */
.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-logo-text-block {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--blush);
  letter-spacing: -0.2px;
  line-height: 1;
}

.footer-logo-sub {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--coral);
}

/* Remove old footer-logo margin since it's now in wrap */
.footer-logo { margin-bottom: 0; }

/* Responsive: hide logo text on very small screens */
@media (max-width: 480px) {
  .logo-name { font-size: 14px; }
  .logo-tagline { display: none; }
  .logo-link::after { display: none; }
}

/* Section backgrounds now use real photos — ensure good contrast */
.chapter--services .section-bg-img,
.chapter--faq .section-bg-img,
.chapter--quote .section-bg-img {
  filter: brightness(0.45) saturate(0.8);
}

.chapter--about .section-bg-img {
  filter: brightness(0.35) saturate(0.7);
}
