/* ============================================================
   WOOD FLOOR POLISHING UAE - Premium Luxury Design System
   ============================================================ */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Color Palette */
  --warm-white:   #FDFBF8;
  --ivory:        #FAF7F2;
  --cream:        #F5F0E8;
  --beige:        #EDE8DF;
  --beige-mid:    #DDD5C8;
  --champagne:    #C9A96E;
  --gold:         #B8924A;
  --gold-light:   #D4AD6B;
  --copper:       #B87333;
  --caramel:      #C48942;
  --walnut:       #5C3D2E;
  --espresso:     #2C1810;
  --espresso-mid: #3E2416;
  --oak:          #D4B896;
  --oak-light:    #E8D9C4;
  --text-dark:    #1A1208;
  --text-med:     #4A3728;
  --text-light:   #7A6858;
  --text-xlight:  #A0917E;

  /* Gradients */
  --grad-page:    linear-gradient(160deg, #FDFBF8 0%, #F5F0E8 50%, #EDE8DF 100%);
  --grad-gold:    linear-gradient(135deg, #C9A96E 0%, #B8924A 50%, #8B6914 100%);
  --grad-card:    linear-gradient(135deg, rgba(253,251,248,0.9) 0%, rgba(245,240,232,0.7) 100%);
  --grad-hero:    linear-gradient(120deg, #FDFBF8 0%, #F0E8D8 60%, #E8DCC8 100%);

  /* Glassmorphism */
  --glass-bg:     rgba(253, 251, 248, 0.72);
  --glass-border: rgba(201, 169, 110, 0.22);
  --glass-blur:   24px;
  --glass-shadow: 0 8px 48px rgba(44, 24, 16, 0.08), 0 2px 12px rgba(44, 24, 16, 0.04);

  /* Typography */
  --font-serif:   'Cormorant Garamond', 'Georgia', serif;
  --font-sans:    'Jost', 'Helvetica Neue', sans-serif;

  /* Spacing */
  --section-py:   120px;
  --container:    1280px;

  /* Transitions */
  --ease-luxury:  cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
  --dur-med:      0.6s;
  --dur-slow:     0.9s;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  background: var(--warm-white);
  background-image: var(--grad-page);
  background-attachment: fixed;
  color: var(--text-dark);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── Cursor ── */
.cursor-glow {
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,169,110,0.12) 0%, transparent 70%);
  pointer-events: none;
  position: fixed;
  top: -190px;
  left: -190px;
  z-index: 0;
  transition: transform 0.08s linear;
  will-change: transform;
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--champagne); border-radius: 4px; }

/* ── Selection ── */
::selection { background: rgba(201,169,110,0.25); color: var(--espresso); }

/* ── Container ── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 48px;
}
@media (max-width: 768px) { .container { padding: 0 24px; } }

/* ── Section ── */
.section { padding: var(--section-py) 0; position: relative; }

/* ── Image Placeholders ── */
.image-placeholder {
  background: linear-gradient(135deg, var(--beige) 0%, var(--oak-light) 100%);
  border: 1px solid var(--beige-mid);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 100%;
  min-height: 280px;
}
.image-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(201,169,110,0.06) 10px,
    rgba(201,169,110,0.06) 20px
  );
}
.image-placeholder::after {
  content: attr(data-label) '\A' attr(data-size);
  white-space: pre;
  text-align: center;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: 0.04em;
  z-index: 1;
  padding: 16px;
  line-height: 1.8;
}
.image-placeholder svg { z-index: 1; opacity: 0.35; }

/* ── Glass Card ── */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  box-shadow: var(--glass-shadow);
}

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--grad-gold);
  color: var(--warm-white);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 36px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all var(--dur-med) var(--ease-luxury);
  box-shadow: 0 4px 24px rgba(184,146,74,0.35);
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(184,146,74,0.45); }
.btn-primary:hover::before { opacity: 1; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--walnut);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 15px 32px;
  border-radius: 50px;
  border: 1.5px solid var(--champagne);
  cursor: pointer;
  transition: all var(--dur-med) var(--ease-luxury);
}
.btn-secondary:hover { background: rgba(201,169,110,0.1); transform: translateY(-2px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text-med);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 50px;
  border: 1px solid var(--beige-mid);
  cursor: pointer;
  transition: all 0.3s;
}
.btn-ghost:hover { border-color: var(--champagne); color: var(--walnut); }

/* ── Section Header ── */
.section-header { text-align: center; margin-bottom: 72px; }
.section-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 20px;
  position: relative;
}
.section-label::before,
.section-label::after {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: currentColor;
  vertical-align: middle;
  margin: 0 10px;
  opacity: 0.45;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.12;
  color: var(--espresso);
  margin-bottom: 20px;
}
.section-title em {
  font-style: italic;
  color: var(--walnut);
}
.section-sub {
  font-size: 16px;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ── Reveal Animation ── */
[data-reveal] {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out);
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}
[data-delay="100"] { transition-delay: 0.1s; }
[data-delay="200"] { transition-delay: 0.2s; }
[data-delay="300"] { transition-delay: 0.3s; }
[data-delay="400"] { transition-delay: 0.4s; }

/* ── Magnetic Button ── */
.magnetic { will-change: transform; }

/* ============================================================
   PRELOADER
   ============================================================ */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--warm-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s var(--ease-luxury), visibility 0.8s;
}
.preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.preloader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.preloader-logo {
  opacity: 0;
  transform: translateY(16px);
  animation: preloaderFadeIn 0.7s var(--ease-out) 0.2s forwards;
}
.preloader-logo img { width: 200px; height: auto; }

@keyframes preloaderFadeIn {
  to { opacity: 1; transform: translateY(0); }
}

.preloader-line-wrap {
  width: 240px;
  height: 1px;
  background: var(--beige);
  border-radius: 2px;
  overflow: hidden;
}
.preloader-line {
  height: 100%;
  background: var(--grad-gold);
  width: 0;
  border-radius: 2px;
  animation: preloaderLine 1.8s var(--ease-luxury) 0.5s forwards;
}
@keyframes preloaderLine {
  to { width: 100%; }
}

.preloader-text {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: var(--text-xlight);
  font-style: italic;
  opacity: 0;
  animation: preloaderFadeIn 0.6s var(--ease-out) 0.8s forwards;
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 20px 0;
  transition: padding 0.5s var(--ease-luxury), background 0.5s var(--ease-luxury),
              box-shadow 0.5s var(--ease-luxury), transform 0.5s var(--ease-luxury);
}
.header.scrolled {
  padding: 12px 0;
  background: rgba(253,251,248,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 32px rgba(44,24,16,0.08);
}
.header.hidden { transform: translateY(-100%); }

.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.header-logo img { width: 150px; height: auto; display: block; }
.header-logo { flex-shrink: 0; text-decoration: none; }

.header-nav {
  display: flex;
  align-items: center;
  gap: 36px;
  flex: 1;
  justify-content: center;
}
.nav-link {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-med);
  text-decoration: none;
  position: relative;
  transition: color 0.3s;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--champagne);
  transition: width 0.3s var(--ease-luxury);
}
.nav-link:hover { color: var(--walnut); }
.nav-link:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

.btn-inspection {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--warm-white);
  text-decoration: none;
  padding: 11px 24px;
  border-radius: 50px;
  background: var(--grad-gold);
  transition: all 0.3s;
  box-shadow: 0 3px 16px rgba(184,146,74,0.3);
}
.btn-inspection:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(184,146,74,0.4); }

.btn-whatsapp-header {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--walnut);
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 50px;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  transition: all 0.3s;
}
.btn-whatsapp-header:hover { background: rgba(201,169,110,0.15); border-color: var(--champagne); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--espresso);
  border-radius: 2px;
  transition: all 0.35s var(--ease-luxury);
  transform-origin: center;
}
.hamburger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 1024px) {
  .header-nav { display: none; }
  .btn-whatsapp-header { display: none; }
  .btn-inspection { display: none; }
  .hamburger { display: flex; }
  .header-inner { padding: 0 24px; }
}

/* ── Mobile Menu ── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 950;
  background: var(--warm-white);
  transform: translateX(100%);
  transition: transform 0.6s var(--ease-out);
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 80px 40px 48px;
  gap: 40px;
}
.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 28px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--espresso);
  padding: 8px;
}
.mobile-nav { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav-link {
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 400;
  color: var(--espresso);
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid var(--beige);
  transition: color 0.3s, padding-left 0.3s;
  display: block;
}
.mobile-nav-link:hover { color: var(--walnut); padding-left: 12px; }

.mobile-menu-ctas { display: flex; flex-direction: column; gap: 12px; margin-top: auto; }
.btn-whatsapp-mobile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--walnut);
  text-decoration: none;
  padding: 16px 28px;
  border-radius: 50px;
  border: 1.5px solid var(--champagne);
  text-align: center;
  transition: all 0.3s;
}
.btn-whatsapp-mobile:hover { background: rgba(201,169,110,0.1); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  padding: 140px 0 80px;
  overflow: hidden;
}

.hero-ambient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 75% 40%, rgba(212,180,152,0.22) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 20% 70%, rgba(201,169,110,0.1) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}
.hero-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-label::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--champagne);
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(52px, 6vw, 86px);
  font-weight: 400;
  line-height: 1.05;
  color: var(--espresso);
  margin-bottom: 28px;
}
.hero-headline em {
  font-style: italic;
  color: var(--walnut);
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 480px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-med);
  background: rgba(201,169,110,0.1);
  border: 1px solid rgba(201,169,110,0.25);
  border-radius: 50px;
  padding: 6px 14px;
}
.trust-chip svg { color: var(--champagne); flex-shrink: 0; }

/* Hero Right */
.hero-right { position: relative; }
.hero-image-wrap {
  position: relative;
  border-radius: 24px;
  overflow: visible;
}
.hero-img { border-radius: 24px; min-height: 520px; }

.hero-float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 22px;
  border-radius: 14px;
  animation: floatCard 4s ease-in-out infinite;
  z-index: 2;
}
.hero-float-card { bottom: 32px; left: -40px; }
.hero-float-card--2 { bottom: auto; top: 32px; right: -32px; animation-delay: -2s; }

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.float-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--grad-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}
.float-card-title { font-family: var(--font-serif); font-size: 20px; font-weight: 500; color: var(--espresso); line-height: 1; }
.float-card-sub { font-size: 11px; color: var(--text-light); margin-top: 2px; }

/* Hero Stats */
.hero-stats {
  max-width: var(--container);
  margin: 80px auto 0;
  padding: 36px 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  box-shadow: var(--glass-shadow);
  position: relative;
  z-index: 1;
  width: calc(100% - 96px);
}

.stat-item {
  flex: 1;
  text-align: center;
  padding: 0 32px;
}
.stat-number {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 400;
  color: var(--espresso);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-xlight);
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--beige-mid);
  flex-shrink: 0;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services { background: var(--ivory); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.service-card {
  padding: 36px 32px;
  transition: transform var(--dur-med) var(--ease-luxury), box-shadow var(--dur-med) var(--ease-luxury);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--grad-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-med) var(--ease-luxury);
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(44,24,16,0.1); }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(201,169,110,0.15) 0%, rgba(212,180,152,0.1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--champagne);
  margin-bottom: 24px;
  transition: background 0.3s, color 0.3s;
}
.service-card:hover .service-icon {
  background: var(--grad-gold);
  color: white;
}

.service-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--espresso);
  margin-bottom: 12px;
}
.service-desc {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 20px;
}
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 24px;
}
.service-tags span {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--champagne);
  background: rgba(201,169,110,0.1);
  border: 1px solid rgba(201,169,110,0.2);
  padding: 4px 10px;
  border-radius: 4px;
}
.service-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--walnut);
  text-decoration: none;
  transition: gap 0.3s, color 0.3s;
}
.service-cta:hover { color: var(--gold); gap: 10px; }
.service-cta::after { content: '→'; }

/* ============================================================
   BEFORE & AFTER
   ============================================================ */
.before-after { background: var(--cream); }

.ba-wrap {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.ba-slider {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  user-select: none;
  cursor: col-resize;
  box-shadow: 0 24px 80px rgba(44,24,16,0.14);
}

.ba-before,
.ba-after {
  position: relative;
  width: 100%;
}
.ba-before { z-index: 1; }
.ba-after {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 50%;
  overflow: hidden;
  transition: none;
}
.ba-img { border-radius: 0; min-height: 500px; }

.ba-label {
  position: absolute;
  bottom: 20px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(253,251,248,0.9);
  color: var(--espresso);
  padding: 6px 14px;
  border-radius: 50px;
  backdrop-filter: blur(8px);
}
.ba-label--before { right: 16px; }
.ba-label--after { left: 16px; }

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: 3;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  cursor: col-resize;
}
.ba-handle-line {
  flex: 1;
  width: 2px;
  background: rgba(255,255,255,0.8);
}
.ba-handle-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--warm-white);
  border: 2px solid var(--champagne);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--walnut);
  box-shadow: 0 4px 20px rgba(44,24,16,0.2);
  flex-shrink: 0;
}

.ba-instruction {
  text-align: center;
  margin-top: 20px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-xlight);
}

/* ============================================================
   BENEFITS
   ============================================================ */
.benefits { background: var(--warm-white); }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 48px;
}

.benefit-card {
  padding: 8px 0;
  position: relative;
}
.benefit-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 2px;
  background: var(--grad-gold);
  transition: width var(--dur-slow) var(--ease-luxury);
}
.benefit-card.revealed::before { width: 48px; }

.benefit-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  border: 1px solid rgba(201,169,110,0.25);
  background: linear-gradient(135deg, rgba(201,169,110,0.08) 0%, rgba(212,180,152,0.05) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--champagne);
  margin-bottom: 24px;
  transition: all 0.4s;
}
.benefit-card:hover .benefit-icon-wrap {
  background: rgba(201,169,110,0.15);
  transform: scale(1.05);
}

.benefit-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--espresso);
  margin-bottom: 12px;
}
.benefit-desc {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.8;
}

/* ============================================================
   PROCESS
   ============================================================ */
.process { background: var(--ivory); }

.process-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  align-items: start;
  gap: 0;
  margin-top: 16px;
}
.process-connector {
  height: 2px;
  background: linear-gradient(90deg, var(--champagne), var(--oak));
  align-self: center;
  margin-top: -60px;
  opacity: 0.3;
}

.process-step {
  text-align: center;
  padding: 0 8px;
}
.step-number {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 300;
  color: rgba(201,169,110,0.2);
  line-height: 1;
  margin-bottom: 12px;
}
.step-title {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 500;
  color: var(--espresso);
  margin-bottom: 10px;
}
.step-desc {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.7;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery { background: var(--warm-white); }

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 48px;
}
.filter-btn {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  background: transparent;
  border: 1px solid var(--beige-mid);
  padding: 9px 22px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s;
}
.filter-btn:hover,
.filter-btn.active {
  color: var(--warm-white);
  background: var(--grad-gold);
  border-color: transparent;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 20px;
}
.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
}
.gallery-item--wide { grid-column: span 2; }
.gallery-item--tall { grid-row: span 2; }

.gallery-item .image-placeholder {
  min-height: 100%;
  border-radius: 0;
  transition: transform 0.7s var(--ease-luxury);
}
.gallery-item:hover .image-placeholder { transform: scale(1.04); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44,24,16,0.72) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
  display: flex;
  align-items: flex-end;
  padding: 24px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-cat {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 4px;
}
.gallery-title {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--warm-white);
}

/* ============================================================
   FLOOR FINDER
   ============================================================ */
.finder { background: var(--cream); }

.finder-inner {
  padding: 72px 80px;
  text-align: center;
}
.finder-inner .section-header { margin-bottom: 48px; }

.finder-widget { max-width: 680px; margin: 0 auto; }

.finder-progress-bar {
  height: 2px;
  background: var(--beige);
  border-radius: 2px;
  margin-bottom: 48px;
  overflow: hidden;
}
.finder-progress-fill {
  height: 100%;
  background: var(--grad-gold);
  border-radius: 2px;
  transition: width 0.5s var(--ease-luxury);
  width: 0%;
}

.finder-step { display: none; }
.finder-step.active { display: block; }

.finder-question {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--espresso);
  margin-bottom: 32px;
  line-height: 1.3;
}

.finder-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.finder-opt {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-med);
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--beige-mid);
  border-radius: 12px;
  padding: 18px 20px;
  cursor: pointer;
  transition: all 0.3s;
  text-align: left;
}
.finder-opt:hover,
.finder-opt.selected {
  background: rgba(201,169,110,0.12);
  border-color: var(--champagne);
  color: var(--walnut);
  transform: translateY(-2px);
}

.finder-result {
  display: none;
  text-align: center;
  padding: 16px 0;
}
.finder-result.visible { display: block; animation: fadeInUp 0.5s var(--ease-out); }
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.result-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: var(--grad-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin: 0 auto 24px;
}
.result-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 12px;
}
.result-title {
  font-family: var(--font-serif);
  font-size: 32px;
  color: var(--espresso);
  margin-bottom: 16px;
}
.result-desc {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.75;
  max-width: 480px;
  margin: 0 auto 32px;
}
.result-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--grad-gold);
  color: white;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-decoration: none;
  padding: 18px 36px;
  border-radius: 50px;
  margin-bottom: 20px;
  transition: all 0.3s;
  box-shadow: 0 6px 24px rgba(184,146,74,0.35);
}
.result-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(184,146,74,0.45); }

.result-restart {
  display: block;
  margin: 0 auto;
  background: none;
  border: 1px solid var(--beige-mid);
  color: var(--text-light);
  font-family: var(--font-sans);
  font-size: 13px;
  padding: 10px 24px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s;
}
.result-restart:hover { border-color: var(--champagne); color: var(--walnut); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { background: var(--ivory); overflow: hidden; }

.testimonials-track {
  overflow: hidden;
  margin: 0 -48px;
  padding: 0 48px;
}
.testimonials-slider {
  display: flex;
  gap: 28px;
  transition: transform 0.7s var(--ease-luxury);
  align-items: stretch;
}

.testimonial-card {
  min-width: 400px;
  flex-shrink: 0;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  color: var(--champagne);
}
.testimonial-text {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 300;
  color: var(--text-med);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--oak) 0%, var(--champagne) 100%);
  flex-shrink: 0;
}
.author-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--espresso);
}
.author-type {
  font-size: 12px;
  color: var(--text-xlight);
  margin-top: 2px;
}

.testimonials-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}
.testimonial-prev,
.testimonial-next {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--beige-mid);
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  color: var(--walnut);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.testimonial-prev:hover,
.testimonial-next:hover {
  border-color: var(--champagne);
  background: rgba(201,169,110,0.1);
}
.testimonial-dots { display: flex; gap: 8px; }
.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--beige-mid);
  transition: all 0.3s;
  cursor: pointer;
}
.dot.active { background: var(--champagne); width: 20px; border-radius: 3px; }

/* ============================================================
   AREAS
   ============================================================ */
.areas { background: var(--cream); }

.areas-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.area-card {
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.4s var(--ease-luxury);
}
.area-card:hover { transform: translateY(-6px); }
.area-number {
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 300;
  color: rgba(201,169,110,0.3);
  line-height: 1;
  margin-bottom: 12px;
}
.area-name {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--espresso);
  margin-bottom: 12px;
}
.area-desc { font-size: 13px; color: var(--text-light); line-height: 1.7; margin-bottom: 16px; }
.area-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--warm-white); }

.faq-list { max-width: 820px; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid var(--beige);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--espresso);
  text-align: left;
  background: none;
  border: none;
  padding: 28px 0;
  cursor: pointer;
  transition: color 0.3s;
}
.faq-question:hover { color: var(--walnut); }
.faq-icon {
  flex-shrink: 0;
  transition: transform 0.4s var(--ease-luxury);
  color: var(--champagne);
}
.faq-item.open .faq-icon { transform: rotate(180deg); }

.faq-answer { overflow: hidden; max-height: 0; transition: max-height 0.5s var(--ease-luxury); }
.faq-answer-inner {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.8;
  padding-bottom: 28px;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--ivory); }

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: start;
}

/* Form steps indicator */
.form-steps-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 40px;
}
.form-step-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--beige-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-xlight);
  transition: all 0.4s;
  cursor: default;
  position: relative;
  z-index: 1;
  background: var(--warm-white);
}
.form-step-dot::after { content: attr(data-step); }
.form-step-dot.active { border-color: var(--champagne); color: var(--champagne); }
.form-step-dot.done { border-color: var(--champagne); background: var(--grad-gold); color: white; }
.form-step-line {
  flex: 1;
  height: 2px;
  background: var(--beige);
  max-width: 120px;
}

.contact-form-wrap { padding: 52px 48px; }

.form-step { display: none; }
.form-step.active { display: block; }
.form-step-title {
  font-family: var(--font-serif);
  font-size: 24px;
  color: var(--espresso);
  margin-bottom: 28px;
}

.field-group { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }

.field-wrap {
  position: relative;
  margin-bottom: 20px;
}
.field-wrap:last-child { margin-bottom: 0; }

.field-wrap input,
.field-wrap select,
.field-wrap textarea {
  width: 100%;
  background: rgba(253,251,248,0.8);
  border: 1px solid var(--beige-mid);
  border-radius: 12px;
  padding: 20px 18px 8px;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--espresso);
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
  -webkit-appearance: none;
  appearance: none;
}
.field-wrap select { padding-top: 18px; cursor: pointer; }
.field-wrap textarea { resize: none; padding-top: 20px; }

.field-wrap input:focus,
.field-wrap select:focus,
.field-wrap textarea:focus {
  border-color: var(--champagne);
  box-shadow: 0 0 0 3px rgba(201,169,110,0.12);
}

.floating-label {
  position: absolute;
  top: 50%;
  left: 18px;
  transform: translateY(-50%);
  font-size: 14px;
  color: var(--text-xlight);
  pointer-events: none;
  transition: all 0.3s var(--ease-luxury);
  transform-origin: left center;
}
.field-wrap--textarea .floating-label { top: 18px; transform: none; }
.floating-label--select { top: 50%; transform: translateY(-50%); }

.field-wrap input:focus + .floating-label,
.field-wrap input:not(:placeholder-shown) + .floating-label,
.field-wrap select:focus + .floating-label,
.field-wrap select:valid + .floating-label,
.field-wrap textarea:focus + .floating-label,
.field-wrap textarea:not(:placeholder-shown) + .floating-label {
  top: 10px;
  transform: none;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--champagne);
}
.field-wrap input::placeholder,
.field-wrap textarea::placeholder { color: transparent; }

.form-step-nav { display: flex; gap: 12px; margin-top: 28px; align-items: center; }
.form-next,
.form-prev { cursor: pointer; }

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.form-success.visible { display: block; animation: fadeInUp 0.5s var(--ease-out); }
.form-success svg { color: var(--champagne); margin-bottom: 20px; }
.form-success h3 { font-family: var(--font-serif); font-size: 28px; color: var(--espresso); margin-bottom: 12px; }
.form-success p { font-size: 15px; color: var(--text-light); line-height: 1.7; }

/* Contact Info */
.contact-info { padding-top: 8px; }

.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid var(--beige);
}
.contact-detail:first-child { padding-top: 0; }

.contact-detail-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(201,169,110,0.1);
  border: 1px solid rgba(201,169,110,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--champagne);
  flex-shrink: 0;
}
.contact-detail-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-xlight);
  margin-bottom: 4px;
}
.contact-detail-value {
  font-size: 15px;
  color: var(--espresso);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}
a.contact-detail-value:hover { color: var(--walnut); }

.contact-map-placeholder { margin-top: 28px; }
.map-img { min-height: 220px; border-radius: 16px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--cream);
  color: var(--text-med);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--beige-mid);
}
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--champagne), transparent);
  opacity: 0.5;
}

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

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  padding: 80px 0 60px;
  border-bottom: 1px solid var(--beige-mid);
}

.footer-logo img { filter: none; }
.footer-desc {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.8;
  margin: 20px 0 28px;
}

.footer-social { display: flex; gap: 12px; }
.social-link {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid var(--beige-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  text-decoration: none;
  transition: all 0.3s;
}
.social-link:hover { border-color: var(--champagne); color: var(--champagne); }

.footer-col-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 24px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 14px;
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s;
  line-height: 1.5;
}
.footer-links a:hover { color: var(--walnut); }

.footer-newsletter-desc {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 16px;
}
.footer-newsletter { display: flex; gap: 0; }
.newsletter-input {
  flex: 1;
  background: rgba(253,251,248,0.9);
  border: 1px solid var(--beige-mid);
  border-right: none;
  border-radius: 8px 0 0 8px;
  padding: 12px 16px;
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--espresso);
  outline: none;
  transition: border-color 0.3s;
}
.newsletter-input::placeholder { color: var(--text-xlight); }
.newsletter-input:focus { border-color: var(--champagne); }
.newsletter-btn {
  background: var(--grad-gold);
  border: none;
  border-radius: 0 8px 8px 0;
  padding: 12px 16px;
  color: white;
  cursor: pointer;
  transition: opacity 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.newsletter-btn:hover { opacity: 0.85; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 13px;
  color: var(--text-xlight);
}
.footer-bottom-right { display: flex; gap: 28px; }
.footer-bottom-right a { color: var(--text-xlight); text-decoration: none; transition: color 0.3s; }
.footer-bottom-right a:hover { color: var(--walnut); }

/* ============================================================
   FLOATING ELEMENTS
   ============================================================ */

/* WhatsApp Button */
.float-whatsapp {
  position: fixed;
  right: 28px;
  bottom: 100px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  z-index: 800;
  text-decoration: none;
  transition: transform 0.3s var(--ease-luxury), box-shadow 0.3s;
  animation: waPulse 3s ease-in-out infinite;
}
.float-whatsapp:hover { transform: scale(1.1); box-shadow: 0 10px 32px rgba(37,211,102,0.5); }

@keyframes waPulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 6px 32px rgba(37,211,102,0.6), 0 0 0 8px rgba(37,211,102,0.1); }
}

/* Back to Top */
.back-to-top {
  position: fixed;
  right: 28px;
  bottom: 168px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  color: var(--walnut);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s var(--ease-luxury);
  z-index: 800;
  box-shadow: var(--glass-shadow);
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: rgba(201,169,110,0.15); border-color: var(--champagne); }

/* Mobile Sticky CTA */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 800;
  background: rgba(253,251,248,0.97);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--beige-mid);
  padding: 10px 16px;
  gap: 8px;
  box-shadow: 0 -4px 24px rgba(44,24,16,0.08);
}
.mobile-cta-call, .mobile-cta-wa, .mobile-cta-inspect {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-decoration: none;
  padding: 12px 8px;
  border-radius: 10px;
  transition: all 0.3s;
}
.mobile-cta-call {
  color: var(--walnut);
  border: 1px solid var(--beige-mid);
}
.mobile-cta-wa {
  color: white;
  background: #25D366;
}
.mobile-cta-inspect {
  color: white;
  background: var(--grad-gold);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
  .process-timeline {
    grid-template-columns: repeat(4, 1fr);
    row-gap: 40px;
  }
  .process-connector:nth-child(8),
  .process-connector:nth-child(9),
  .process-connector:nth-child(10) { display: none; }

  .areas-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 1024px) {
  :root { --section-py: 80px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; padding: 0 32px; }
  .hero-right { display: none; }
  .hero-headline { font-size: clamp(44px, 8vw, 64px); }
  .hero-stats { width: calc(100% - 64px); flex-wrap: wrap; }

  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-inner { grid-template-columns: 1fr; }
  .contact-info { order: -1; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item--wide { grid-column: span 1; }
  .finder-inner { padding: 48px 40px; }
}

@media (max-width: 768px) {
  :root { --section-py: 60px; }
  .container { padding: 0 20px; }
  .section-header { margin-bottom: 48px; }
  .hero { padding: 120px 0 60px; }
  .hero-inner { padding: 0 20px; }
  .hero-chips { gap: 8px; }
  .trust-chip { font-size: 11px; }
  .hero-stats { width: calc(100% - 40px); padding: 24px 20px; gap: 0; flex-wrap: wrap; }
  .stat-item { min-width: 50%; padding: 16px; }
  .stat-divider:nth-child(4) { display: none; }

  .services-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .gallery-item--tall { grid-row: span 1; }

  .process-timeline { grid-template-columns: 1fr; gap: 0; }
  .process-connector { display: none; }
  .process-step {
    text-align: left;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--beige);
  }
  .step-number { font-size: 32px; flex-shrink: 0; min-width: 48px; }

  .areas-grid { grid-template-columns: 1fr 1fr; }
  .finder-inner { padding: 40px 24px; }
  .finder-options { grid-template-columns: 1fr; }

  .testimonial-card { min-width: 300px; }
  .testimonials-track { margin: 0 -20px; padding: 0 20px; }

  .contact-form-wrap { padding: 36px 24px; }
  .field-group { grid-template-columns: 1fr; }

  .footer-top { grid-template-columns: 1fr; gap: 36px; padding: 48px 0 40px; }
  .footer-inner { padding: 0 20px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  .float-whatsapp { right: 16px; bottom: 88px; width: 50px; height: 50px; }
  .back-to-top { right: 16px; bottom: 150px; }
  .mobile-cta-bar { display: flex; }
  body { padding-bottom: 72px; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn-primary,
  .hero-ctas .btn-secondary,
  .hero-ctas .btn-ghost { width: 100%; justify-content: center; }
  .areas-grid { grid-template-columns: 1fr; }
  .ba-img { min-height: 320px; }
}

/* ── Real Images ── */
.real-img {
  display: block;
  width: 100%;
  object-fit: cover;
}

/* Hero real image */
img.hero-img {
  height: 520px;
  border-radius: 24px;
  object-position: center;
}
@media (max-width: 768px) { img.hero-img { height: 340px; } }

/* BA Slider — natural image height, no forced min-height */
.ba-before,
.ba-after {
  line-height: 0;
}
img.ba-img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
  display: block;
  border-radius: 0;
}

/* Gallery real images */
.gallery-item img.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 70%;
  border-radius: 0;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: block;
}
.gallery-item:hover img.gallery-img { transform: scale(1.04); }

/* Cursor — restore default, keep glow as ambient only */
body { cursor: auto; }

/* ── Ripple Effect ── */
.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  transform: scale(0);
  animation: rippleAnim 0.6s linear;
  pointer-events: none;
}
@keyframes rippleAnim {
  to { transform: scale(4); opacity: 0; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
