/* ============================================
   AERTSEN LIVING — PREMIUM INTERIOR DESIGN
   Main Stylesheet — Editorial & Architectural
   Palette: Obsidian · Parchment · Bronze · Stone
============================================ */

:root {
  --deep-navy: #1A1612;
  --deep-navy-80: rgba(26,22,18,0.86);
  --blush: rgb(250,202,194);
  --blush-dark: #d4897a;
  --gold: rgb(255,134,113);
  --gold-light: rgb(255,165,148);
  --warm-white: #f9f7f4;
  --warm-off: #fafafa;
  --soft-grey: #EDE8DF;
  --text-dark: #1A1612;
  --text-mid: #5C5450;
  --text-light: #9A918A;
  --border: rgba(26,22,18,0.10);
  --shadow-sm: 0 4px 24px rgba(26,22,18,0.07);
  --shadow-md: 0 14px 44px rgba(26,22,18,0.11);
  --shadow-lg: 0 28px 70px rgba(26,22,18,0.16);
  --radius-sm: 3px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Outfit', 'Segoe UI', sans-serif;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: var(--warm-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ============ PAGE LOADER ============ */
#page-loader {
  position: fixed;
  inset: 0;
  background: var(--deep-navy);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#page-loader.fade-out { opacity: 0; visibility: hidden; }

.loader-inner { text-align: center; }
.loader-logo {
  height: 48px;
  filter: brightness(0) invert(1);
  margin: 0 auto 24px;
  animation: logoPulse 1.5s ease-in-out infinite;
}
@keyframes logoPulse { 0%,100%{opacity:0.5;transform:scale(0.97)} 50%{opacity:1;transform:scale(1)} }

.loader-line {
  width: 200px;
  height: 2px;
  background: rgba(255,255,255,0.15);
  border-radius: 2px;
  overflow: hidden;
  margin: 0 auto;
}
.loader-line span {
  display: block;
  height: 100%;
  width: 40%;
  background: linear-gradient(90deg, var(--blush), var(--gold));
  border-radius: 2px;
  animation: lineSlide 1.4s ease-in-out infinite;
}
@keyframes lineSlide { 0%{transform:translateX(-100%)} 100%{transform:translateX(350%)} }

/* ============ TYPOGRAPHY ============ */
h1,h2,h3 { font-family: var(--font-serif); line-height: 1.12; }
h1 { font-size: clamp(2.8rem, 5.5vw, 5rem); font-weight: 500; letter-spacing: -0.01em; }
h2 { font-size: clamp(1.9rem, 3.6vw, 3.2rem); font-weight: 500; }
h3 { font-size: clamp(1.4rem, 2.4vw, 2rem); font-weight: 500; }
h4 { font-family: var(--font-sans); font-size: 1rem; font-weight: 600; letter-spacing: 0.03em; }
p { line-height: 1.78; color: var(--text-mid); font-weight: 400; }

.label-tag {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}
.label-tag::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}

/* ============ BUTTONS ============ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 36px;
  background: var(--deep-navy);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: var(--transition);
  border: 1px solid var(--deep-navy);
}
.btn-primary:hover { background: transparent; color: var(--deep-navy); }

.btn-primary-dark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 36px;
  background: var(--blush);
  color: var(--deep-navy);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: var(--transition);
}
.btn-primary-dark:hover { background: white; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 34px;
  background: transparent;
  color: var(--deep-navy);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--deep-navy);
  border-radius: 2px;
  transition: var(--transition);
}
.btn-outline:hover { background: var(--deep-navy); color: white; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--deep-navy);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: var(--transition);
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
}
.btn-ghost .arrow { 
  display: inline-flex;
  width: 36px;
  height: 36px;
  border: 1px solid var(--deep-navy);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  font-size: 14px;
}
.btn-ghost:hover { gap: 14px; }
.btn-ghost:hover .arrow { background: var(--deep-navy); color: white; }

/* ============ LAYOUT HELPERS ============ */
.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
}
.container-fluid { max-width: 100%; padding: 0 40px; }

section { position: relative; }

.section-pad { padding: 120px 0; }
.section-pad-sm { padding: 80px 0; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 28px; }

/* ============ HERO SLIDER ============ */
/* ============ HERO VIDEO SLIDER ============ */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
}

.hero-slider {
  position: relative;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 1;
  transition: opacity 1.4s cubic-bezier(0.4,0,0.2,1);
}
.hero-slide.active { opacity: 1; z-index: 2; }
.hero-slide.prev   { opacity: 0; z-index: 1; }

/* Video container */
.hero-video-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* subtle zoom-in for active slide */
  transform: scale(1.06);
  transition: transform 10s ease;
}
.hero-slide.active .hero-video {
  transform: scale(1);
}
/* Fallback image if video fails */
.hero-video-fallback {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

/* Overlays */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(12,10,40,0.78) 0%,
    rgba(12,10,40,0.42) 55%,
    rgba(12,10,40,0.15) 100%
  );
  z-index: 1;
}
.hero-overlay--warm {
  background: linear-gradient(
    105deg,
    rgba(40,20,10,0.76) 0%,
    rgba(50,28,10,0.40) 55%,
    rgba(60,30,10,0.12) 100%
  );
}
.hero-overlay--cool {
  background: linear-gradient(
    105deg,
    rgba(10,20,45,0.80) 0%,
    rgba(10,20,45,0.42) 55%,
    rgba(10,20,45,0.12) 100%
  );
}

/* Side noise/vignette for cinematic feel */
.hero-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, transparent 40%, rgba(0,0,0,0.45) 100%);
  pointer-events: none;
}

/* ---- Progress bar per slide ---- */
.hero-slide-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255,255,255,0.12);
  z-index: 20;
}
.hero-slide-progress-bar {
  height: 100%;
  width: 0%;
  background: var(--blush);
  transition: width linear;
}
.hero-slide.active .hero-slide-progress-bar {
  width: 100%;
  transition: width 6s linear;
}

/* ---- Arrow Controls ---- */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.22);
  color: white;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
  padding: 0;
}
.hero-arrow:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-50%) scale(1.08);
}
.hero-arrow--prev { left: 28px; }
.hero-arrow--next { right: 28px; }

/* ---- Mute button ---- */
.hero-mute-btn {
  position: absolute;
  bottom: 72px;
  right: 100px;
  z-index: 20;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.22);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: background 0.3s;
  padding: 0;
}
.hero-mute-btn:hover { background: rgba(255,255,255,0.18); }

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  padding: 80px 0 80px;
}

.hero-text {
  max-width: 680px;
  padding-left: 80px;
}

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blush);
  margin-bottom: 20px;
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s 0.2s cubic-bezier(0.22,1,0.36,1), transform 0.8s 0.2s cubic-bezier(0.22,1,0.36,1);
}
.hero-slide.active .hero-eyebrow { opacity: 1; transform: none; }

.hero-title {
  color: white;
  font-family: var(--font-serif);
  font-size: clamp(3.2rem, 6vw, 6rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.9s 0.4s cubic-bezier(0.22,1,0.36,1), transform 0.9s 0.4s cubic-bezier(0.22,1,0.36,1);
}
.hero-slide.active .hero-title { opacity: 1; transform: none; }
.hero-title em { font-style: italic; color: var(--blush); }

/* Animated underline on em */
.hero-title em {
  position: relative;
  display: inline-block;
}
.hero-title em::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--blush);
  transition: width 1s 1.2s cubic-bezier(0.22,1,0.36,1);
}
.hero-slide.active .hero-title em::after { width: 100%; }

.hero-sub {
  color: rgba(255,255,255,0.78);
  font-size: 1.02rem;
  font-weight: 300;
  margin-bottom: 42px;
  line-height: 1.7;
  max-width: 460px;
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.9s 0.65s cubic-bezier(0.22,1,0.36,1), transform 0.9s 0.65s cubic-bezier(0.22,1,0.36,1);
}
.hero-slide.active .hero-sub { opacity: 1; transform: none; }

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s 0.9s cubic-bezier(0.22,1,0.36,1), transform 0.9s 0.9s cubic-bezier(0.22,1,0.36,1);
}
.hero-slide.active .hero-actions { opacity: 1; transform: none; }

.btn-hero-primary {
  padding: 16px 40px;
  background: var(--blush);
  color: var(--deep-navy);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: var(--transition);
  border: 1px solid var(--blush);
}
.btn-hero-primary:hover { background: white; border-color: white; }

.btn-hero-outline {
  padding: 16px 40px;
  background: transparent;
  color: white;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 2px;
  transition: var(--transition);
}
.btn-hero-outline:hover { background: rgba(255,255,255,0.12); border-color: white; }

/* Hero Slide Nav */
.hero-nav {
  position: absolute;
  bottom: 48px;
  left: 80px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 24px;
}
.hero-dots {
  display: flex;
  gap: 10px;
}
.hero-dot {
  width: 28px;
  height: 2px;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  padding: 0;
  border-radius: 2px;
}
.hero-dot.active { background: var(--blush); width: 52px; }

.hero-counter {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.5);
}
.hero-counter span { color: white; font-size: 1rem; }

/* Hero Right Stats */
.hero-stats {
  position: absolute;
  right: 60px;
  bottom: 60px;
  z-index: 10;
  display: flex;
  gap: 32px;
}
.hero-stat {
  text-align: right;
  border-right: 1px solid rgba(255,255,255,0.2);
  padding-right: 32px;
}
.hero-stat:last-child { border-right: none; padding-right: 0; }
.hero-stat-num {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 500;
  color: white;
  line-height: 1;
  display: block;
}
.hero-stat-label {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  display: block;
  margin-top: 6px;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  writing-mode: vertical-rl;
}
.hero-scroll-text {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  rotate: 180deg;
}
.hero-scroll-line {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.2);
  position: relative;
  overflow: hidden;
}
.hero-scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  right: 0;
  height: 50%;
  background: var(--blush);
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine { 0%{top:-100%} 100%{top:200%} }

/* ============ MARQUEE STRIP ============ */
.marquee-strip {
  background: var(--deep-navy);
  padding: 16px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  animation: marqueeScroll 28s linear infinite;
  width: max-content;
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 0 32px;
  white-space: nowrap;
  font-family: var(--font-serif);
  font-size: 1rem;
  font-style: italic;
  color: rgba(255,255,255,0.5);
  font-weight: 300;
}
.marquee-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--blush);
  flex-shrink: 0;
}
@keyframes marqueeScroll { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ============ SERVICES OVERVIEW ============ */
.services-section {
  background: var(--warm-white);
  padding: 120px 0;
}

.section-header {
  margin-bottom: 72px;
}
.section-header.center { text-align: center; }

.section-title-area {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
}

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

.service-card {
  background: var(--warm-white);
  padding: 48px 40px;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blush), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { background: var(--soft-grey); transform: translateY(-4px); }

.service-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  margin-bottom: 28px;
  border-radius: var(--radius-sm);
  transition: transform 0.6s ease;
  overflow: hidden;
}
.service-card:hover .service-card-img img { transform: scale(1.06); }

.service-card-num {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--blush-dark);
  font-style: italic;
  margin-bottom: 10px;
}
.service-card h4 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--deep-navy);
  margin-bottom: 12px;
}
.service-card p {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 20px;
}
.service-card-link {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--deep-navy);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s ease;
}
.service-card:hover .service-card-link { gap: 14px; color: var(--gold); }

/* ============ WHY CHOOSE US ============ */
.why-section {
  background: var(--warm-white);
  padding: 30px 0;
  overflow: hidden;
  position: relative;
}

.why-section::before {
  content: 'EXCELLENCE';
  position: absolute;
  top: -20px;
  right: -40px;
  font-family: var(--font-serif);
  font-size: clamp(80px, 15vw, 160px);
  font-weight: 700;
  color: rgba(26,22,18,0.04);
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
  line-height: 1;
  user-select: none;
}

.why-header { margin-bottom: 80px; }
.why-label { color: var(--blush); }
.why-label::before { background: var(--blush); }
.why-title { color: var(--deep-navy); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
}

.why-card {
  padding: 52px 36px;
  background: var(--deep-navy);
  transition: var(--transition);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.why-card:hover { background: rgba(255,255,255,0.04); border-top-color: var(--blush); }

.why-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-icon svg { fill: var(--blush); }

.why-num {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(255,255,255,0.12);
  line-height: 1;
  margin-bottom: 16px;
}
.why-card h4 {
  color: var(--deep-navy);
  margin-bottom: 14px;
  font-size: 1rem;
  letter-spacing: 0.05em;
}
.why-card p { color: var(--text-mid); font-size: 0.88rem; line-height: 1.7; }

/* ============ PROJECTS GALLERY ============ */
.projects-section {
  padding: 120px 0;
  background: var(--warm-off);
}

.projects-masonry {
  columns: 3;
  column-gap: 20px;
}

.project-card {
  break-inside: avoid;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: var(--radius-sm);
}

.project-card img {
  width: 100%;
  display: block;
  transition: transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.project-card:hover img { transform: scale(1.07); }

.project-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(29,27,60,0.88) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
  padding: 28px;
}
.project-card:hover .project-card-overlay { opacity: 1; }

.project-card-info h5 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: white;
  margin-bottom: 6px;
}
.project-card-info span {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blush);
}

/* ============ FACTORY STRIP ============ */
.factory-strip {
  background: var(--soft-grey);
  padding: 100px 0;
}

.factory-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.factory-img-wrap {
  position: relative;
  height: 520px;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.factory-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.factory-img-badge {
  position: absolute;
  bottom: 28px;
  left: 28px;
  background: var(--deep-navy);
  color: white;
  padding: 16px 22px;
  border-radius: var(--radius-sm);
}
.factory-img-badge strong {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 400;
  display: block;
  color: var(--blush);
}
.factory-img-badge span {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

.factory-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 48px;
}
.factory-feat {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.factory-feat-icon {
  width: 40px;
  height: 40px;
  background: var(--blush);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.factory-feat-icon svg { fill: var(--deep-navy); }
.factory-feat h5 { font-size: 0.9rem; font-weight: 600; color: var(--deep-navy); margin-bottom: 4px; }
.factory-feat p { font-size: 0.82rem; line-height: 1.6; }

/* ============ COUNTER SECTION ============ */
.counter-section {
  background: var(--deep-navy);
  padding: 20px 0;
}

.counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.counter-item {
  text-align: center;
  padding: 48px 24px;
  border-right: 1px solid rgba(255,255,255,0.07);
  transition: var(--transition);
}
.counter-item:last-child { border-right: none; }
.counter-item:hover { background: rgba(255,255,255,0.03); }

.counter-num {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 300;
  color: white;
  line-height: 1;
  display: block;
  letter-spacing: -0.02em;
}
.counter-suffix {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--blush);
  font-style: italic;
}
.counter-label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  display: block;
  margin-top: 12px;
}

/* ============ PROCESS SECTION ============ */
.process-section {
  padding: 120px 0;
  background: var(--warm-white);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  gap: 0;
  margin-top: 72px;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 42px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: var(--border);
  z-index: 0;
}

.process-step {
  text-align: center;
  padding: 0 28px;
  position: relative;
  z-index: 1;
}

.step-circle {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--warm-white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--deep-navy);
  transition: var(--transition);
}
.process-step:hover .step-circle {
  background: var(--deep-navy);
  color: white;
  border-color: var(--deep-navy);
  box-shadow: 0 12px 30px rgba(29,27,60,0.25);
}

.process-step h4 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--deep-navy);
  margin-bottom: 12px;
}
.process-step p { font-size: 0.85rem; line-height: 1.65; }

/* ============ TESTIMONIALS ============ */
.testimonials-section {
  background: var(--soft-grey);
  padding: 120px 0;
  overflow: hidden;
}

.testimonials-slider {
  display: flex;
  gap: 28px;
  margin-top: 64px;
  overflow-x: auto;
  overflow-y: hidden;
  position: relative;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 4px;
}
.testimonials-slider::-webkit-scrollbar { display: none; }

.testimonials-track {
  display: flex;
  gap: 28px;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
  min-width: 100%;
}

.testimonial-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 44px;
  min-width: min(420px, 85vw);
  max-width: 420px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  flex-shrink: 0;
  scroll-snap-align: start;
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }

.testimonial-quote {
  font-family: var(--font-serif);
  font-size: 4rem;
  color: var(--blush);
  line-height: 0.5;
  margin-bottom: 24px;
  display: block;
}
.testimonial-text {
  font-family: var(--font-serif);
  font-size: 1.08rem;
  font-style: italic;
  line-height: 1.75;
  color: var(--text-dark);
  margin-bottom: 32px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--blush);
}
.testimonial-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--deep-navy);
  display: block;
}
.testimonial-loc {
  font-size: 0.75rem;
  color: var(--text-light);
  letter-spacing: 0.08em;
}
.testimonial-stars {
  color: var(--gold);
  font-size: 0.9rem;
  margin-top: 4px;
  display: block;
}

.testimonial-controls {
  display: flex;
  gap: 12px;
  margin-top: 48px;
}
.t-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--deep-navy);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: 18px;
  color: var(--deep-navy);
}
.t-btn:hover { background: var(--deep-navy); color: white; }

/* ============ FINAL CTA SECTION ============ */
.final-cta {
  position: relative;
  overflow: hidden;
  background: var(--deep-navy);
  padding: 140px 0;
  text-align: center;
}
.final-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(249,201,196,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.final-cta .label-tag { color: var(--blush); justify-content: center; }
.final-cta .label-tag::before { background: var(--blush); }
.final-cta h2 { color: white; margin-bottom: 24px; }
.final-cta p { color: rgba(255,255,255,0.6); max-width: 520px; margin: 0 auto 48px; font-size: 1.05rem; }
.final-cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============ AI DESIGN TEASER ============ */
.ai-teaser {
  padding: 120px 0;
  background: white;
  overflow: hidden;
}

.ai-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.ai-visual {
  position: relative;
  height: 560px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--deep-navy), #2d2a5e);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ai-visual-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1616486338812-3dadae4b4ace?w=800&q=80');
  background-size: cover;
  background-position: center;
  opacity: 0.3;
}

.ai-chip {
  position: absolute;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  animation: aiFloat 3s ease-in-out infinite;
}
.ai-chip-1 { top: 60px; left: 40px; }
.ai-chip-2 { bottom: 80px; right: 40px; animation-delay: 1.5s; }
.ai-chip-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blush);
  display: block;
  margin-bottom: 6px;
}
.ai-chip-val {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: white;
  font-weight: 300;
}
@keyframes aiFloat {
  0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)}
}

.ai-badge {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blush);
  color: var(--deep-navy);
  padding: 12px 28px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(249,201,196,0.4);
}

.ai-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 36px 0 44px;
}
.ai-feature {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.9rem;
  color: var(--text-mid);
}
.ai-feature-check {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--blush);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 13px;
  color: var(--deep-navy);
  font-weight: 700;
}

/* ============ FOOTER ============ */
#site-footer { background: #fff; }

.footer-cta-strip {
  background: var(--deep-navy);
  padding: 64px 0;
}
.footer-cta-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.footer-cta-text .cta-strip-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blush);
  margin-bottom: 10px;
}
.footer-cta-text h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 300;
  color: white;
}
.footer-cta-action {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}
.btn-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: rgba(255,255,255,0.1);
  color: white;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  border-radius: 2px;
  transition: var(--transition);
}
.btn-call:hover { background: rgba(255,255,255,0.18); }

.footer-main {
  max-width: 1320px;
  margin: 0 auto;
  padding: 72px 40px 0;
}

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

.footer-logo { height: 40px; margin-bottom: 20px; }
.footer-brand p { font-size: 0.88rem; line-height: 1.75; margin-bottom: 24px; }

.footer-socials {
  display: flex;
  gap: 12px;
}
.footer-socials a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: var(--text-mid);
}
.footer-socials a:hover {
  background: var(--deep-navy);
  border-color: var(--deep-navy);
  color: white;
}
.footer-socials a svg { fill: currentColor; }

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--deep-navy);
  margin-bottom: 24px;
}
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { font-size: 0.88rem; color: var(--text-mid); transition: var(--transition); }
.footer-col ul li a:hover { color: var(--deep-navy); padding-left: 4px; }

.footer-contact address { font-style: normal; }
.contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 14px;
  font-size: 0.85rem;
  color: var(--text-mid);
}
.contact-item svg { fill: var(--blush-dark); flex-shrink: 0; margin-top: 2px; }
.contact-item a { color: var(--text-mid); transition: var(--transition); }
.contact-item a:hover { color: var(--deep-navy); }

.wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: #25D366;
  color: white;
  font-size: 0.82rem;
  font-weight: 600;
  border-radius: 4px;
  margin-top: 12px;
  transition: var(--transition);
}
.wa-btn:hover { background: #1da851; }
.wa-btn svg { fill: white; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.8rem; color: var(--text-light); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 0.78rem; color: var(--text-light); transition: var(--transition); }
.footer-legal a:hover { color: var(--deep-navy); }

/* ============ MODAL ============ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(29,27,60,0.7);
  backdrop-filter: blur(6px);
  z-index: 9000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.open { opacity: 1; visibility: visible; }

.modal-box {
  background: white;
  border-radius: var(--radius-lg);
  max-width: 860px;
  width: 100%;
  overflow: hidden;
  transform: translateY(30px);
  transition: transform 0.4s ease;
  position: relative;
}
.modal-overlay.open .modal-box { transform: none; }

.modal-close {
  position: absolute;
  top: 18px;
  right: 22px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: white;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: var(--transition);
}
.modal-close:hover { background: var(--deep-navy); color: white; border-color: var(--deep-navy); }

.modal-content { display: grid; grid-template-columns: 1fr 1.2fr; }
.modal-left { position: relative; min-height: 480px; }
.modal-left img { width: 100%; height: 100%; object-fit: cover; }
.modal-left-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(29,27,60,0.9));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
}
.modal-left-overlay h3 { font-family: var(--font-serif); font-size: 1.6rem; color: white; font-weight: 400; }
.modal-left-overlay p { color: var(--blush); font-size: 0.82rem; letter-spacing: 0.1em; margin-top: 6px; }

.modal-right { padding: 44px 40px; }
.modal-right h2 { font-family: var(--font-serif); font-size: 1.9rem; color: var(--deep-navy); margin-bottom: 8px; }
.modal-sub { font-size: 0.88rem; color: var(--text-mid); margin-bottom: 32px; }

.form-group { margin-bottom: 16px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--warm-white);
  transition: border-color 0.3s ease;
  outline: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus { border-color: var(--deep-navy); background: white; }

.btn-submit-modal {
  width: 100%;
  padding: 15px;
  background: var(--deep-navy);
  color: white;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  margin-top: 8px;
}
.btn-submit-modal:hover { background: #2d2a5e; }

.form-note { font-size: 0.75rem; color: var(--text-light); text-align: center; margin-top: 12px; }

/* ============ WHATSAPP FLOAT ============ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 28px rgba(37,211,102,0.4);
  z-index: 8000;
  transition: var(--transition);
  animation: waPulse 3s ease-in-out infinite;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 10px 40px rgba(37,211,102,0.5); }
@keyframes waPulse {
  0%,100%{box-shadow:0 6px 28px rgba(37,211,102,0.4)}
  50%{box-shadow:0 6px 40px rgba(37,211,102,0.6)}
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .container { padding: 0 24px; }
  .grid-4, .why-grid, .counter-grid, .process-steps { grid-template-columns: repeat(2,1fr); }
  .services-grid, .projects-masonry { columns: 2; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { display: none; }
  .hero-arrow { width: 40px; height: 40px; }
  .hero-arrow--prev { left: 12px; }
  .hero-arrow--next { right: 12px; }
  .hero-mute-btn { bottom: 60px; right: 60px; }
  .hero-text { padding-left: 40px; }
}

@media (max-width: 768px) {
  .section-pad { padding: 80px 0; }
  .grid-2, .factory-inner, .ai-inner, .modal-content { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .projects-masonry { columns: 1; }
  .hero-text { padding-left: 24px; padding-right: 24px; max-width: 100%; }
  .counter-grid { grid-template-columns: repeat(2,1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-cta-inner { flex-direction: column; align-items: flex-start; }
  .hero-nav { left: 24px; bottom: 32px; }
  .modal-left { display: none; }
  .hero-scroll { display: none; }
}

/* ============ AOS OVERRIDES ============ */
[data-aos] { pointer-events: none; }
[data-aos].aos-animate { pointer-events: auto; }

/* ============ SCROLL STORY SCENES ============ */
.scroll-story {
  background: var(--warm-white);
}

.story-scene {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

/* Alternating bg tints */
#scene-living  { background: #faf8f5; }
#scene-kitchen { background: #f5f8fc; }
#scene-bedroom { background: #f8f5fc; }

/* Subtle divider line between scenes */
.story-scene + .story-scene::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: var(--border);
}

.story-scene-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.story-scene-inner--reverse {
  direction: rtl;
}
.story-scene-inner--reverse > * {
  direction: ltr;
}

/* ---- Text panel ---- */
.story-text {
  max-width: 480px;
}

.story-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.story-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 300;
  line-height: 1.12;
  color: var(--deep-navy);
  margin-bottom: 20px;
}
.story-title em {
  font-style: italic;
  color: var(--blush-dark);
  position: relative;
  display: inline-block;
}
.story-title em::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 0;
  width: 0; height: 2px;
  background: var(--blush-dark);
  transition: width 0.9s 0.3s cubic-bezier(0.22,1,0.36,1);
}
.story-scene.is-visible .story-title em::after { width: 100%; }

.story-body {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-mid);
  margin-bottom: 28px;
  max-width: 400px;
}
.story-body em { color: var(--deep-navy); font-style: normal; font-weight: 500; }

.story-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}
.story-tag {
  font-family: var(--font-sans);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--deep-navy);
  background: rgba(29,27,60,0.07);
  border: 1px solid rgba(29,27,60,0.12);
  border-radius: 3px;
  padding: 6px 14px;
  transition: background 0.3s, border-color 0.3s;
}
.story-tag:hover { background: rgba(29,27,60,0.12); }

.story-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--deep-navy);
  border-bottom: 2px solid var(--blush-dark);
  padding-bottom: 4px;
  transition: gap 0.3s, border-color 0.3s, color 0.3s;
}
.story-cta:hover {
  gap: 16px;
  color: var(--gold);
  border-color: var(--gold);
}
.story-cta span { transition: transform 0.3s; }
.story-cta:hover span { transform: translateX(4px); }

/* ---- Illustration panel ---- */
.story-illustration {
  position: relative;
}
.story-svg {
  width: 100%;
  max-width: 560px;
  filter: drop-shadow(0 20px 50px rgba(29,27,60,0.10));
  border-radius: 16px;
  overflow: visible;
}

/* ---- Per-item animation ---- */
.si-room {
  opacity: 0;
  transition: opacity 0.5s ease;
}
.story-scene.is-visible .si-room {
  opacity: 1;
}

.si-item {
  opacity: 0;
  transform-origin: bottom center;
  transform: translateY(18px) scale(0.96);
  transition:
    opacity 0.55s calc(var(--si-delay, 0s)) cubic-bezier(0.22,1,0.36,1),
    transform 0.55s calc(var(--si-delay, 0s)) cubic-bezier(0.22,1,0.36,1);
}
.story-scene.is-visible .si-item {
  opacity: 1;
  transform: none;
}

/* ---- Text stagger animations ---- */
.story-anim {
  opacity: 0;
  transform: translateX(-28px);
  transition:
    opacity 0.7s cubic-bezier(0.22,1,0.36,1),
    transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
.story-text--right .story-anim {
  transform: translateX(28px);
}
.story-scene.is-visible .story-anim {
  opacity: 1;
  transform: none;
}

/* Stagger via data-delay */
.story-scene.is-visible .story-anim[data-delay="0"]   { transition-delay: 0.15s; }
.story-scene.is-visible .story-anim[data-delay="80"]  { transition-delay: 0.30s; }
.story-scene.is-visible .story-anim[data-delay="180"] { transition-delay: 0.46s; }
.story-scene.is-visible .story-anim[data-delay="280"] { transition-delay: 0.60s; }
.story-scene.is-visible .story-anim[data-delay="360"] { transition-delay: 0.74s; }

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .story-scene-inner {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 0 24px;
  }
  .story-scene-inner--reverse { direction: ltr; }
  .story-text { max-width: 100%; }
  .story-scene { padding: 60px 0; min-height: auto; }
  .story-svg { max-width: 100%; }
}

/* ============================================================
   EDITORIAL REFINEMENTS — Playfair Display + Outfit upgrade
   Applied on top of variable changes for precision tuning
============================================================ */

/* Serif headings — Playfair Display needs slightly tighter leading */
h1 em, h2 em, h3 em { color: var(--blush); font-style: italic; }

/* Label tags — thinner line, bronze colour */
.label-tag {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--gold);
}
.label-tag::before { background: var(--gold); width: 24px; }

/* Section header eyebrow labels */
.why-label { color: var(--blush) !important; }
.why-label::before { background: var(--blush) !important; }

/* Hero title — bolder weight for Playfair Display */
.hero-title {
  font-weight: 600;
  font-size: clamp(3rem, 5.2vw, 5rem);
  letter-spacing: -0.01em;
}

/* Hero eyebrow refined */
.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.26em;
  font-weight: 400;
  color: var(--blush);
}

/* Hero buttons — sharper, more architectural */
.btn-hero-primary {
  background: var(--blush);
  color: #1A1612;
  border-color: var(--blush);
  border-radius: 2px;
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: 0.14em;
}
.btn-hero-primary:hover { background: #f9f7f4; border-color: #f9f7f4; color: #1A1612; }

.btn-hero-outline {
  border-radius: 2px;
  font-family: var(--font-sans);
  font-weight: 400;
  letter-spacing: 0.14em;
}

/* Marquee strip — warmer tone */
.marquee-strip { background: #1A1612; }

/* Service card numbers — Playfair italic looks better smaller */
.service-card-num {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  color: var(--blush);
  font-style: italic;
}
.service-card h4 { font-family: var(--font-serif); font-size: 1.25rem; font-weight: 600; }

/* Why section dark background — warm obsidian instead of purple */
.why-section { background: var(--warm-white); }
.why-section::before { color: rgba(26,22,18,0.04); }
.why-num { color: rgba(26,22,18,0.08); }
.why-card { background: #fff; border-top-color: rgba(26,22,18,0.08); }
.why-card:hover { background: rgba(250,202,194,0.08); border-top-color: var(--blush); }
.why-icon svg { stroke: var(--blush); fill: none; }

/* Counter section */
.counter-section { background: #1A1612; }
.counter-suffix { color: var(--blush); }

/* Process section — transparent background */
.process-section { background: transparent !important; }
.process-header h2 { color: var(--deep-navy); }
.process-header h2 em { color: var(--blush); }
.process-intro { color: var(--text-mid); }

/* Testimonials */
.testimonial-quote { color: var(--blush); }
.testimonial-text { font-family: var(--font-serif); font-size: 1rem; font-style: italic; line-height: 1.8; }
.testimonial-name { font-family: var(--font-sans); font-weight: 600; }
.testimonial-avatar { border-color: var(--blush); }
.review-stars { color: var(--gold) !important; }

/* Project overlay — warmer gradient */
.project-card-overlay {
  background: linear-gradient(180deg, transparent 35%, rgba(26,22,18,0.90) 100%);
}
.project-card-info span { color: var(--blush); }

/* Final CTA */
.final-cta { background: #0F0C09; }
.final-cta::before {
  background: radial-gradient(circle, rgba(184,147,90,0.14) 0%, transparent 70%);
}

/* Footer cta strip */
.footer-cta-strip { background: #1A1612; }

/* Modal */
.modal-overlay { background: rgba(26,22,18,0.75); }
.modal-left-overlay { background: linear-gradient(180deg, transparent 40%, rgba(26,22,18,0.92)); }
.modal-left-overlay p { color: var(--blush); }
.btn-submit-modal { background: #1A1612; border-radius: 3px; }
.btn-submit-modal:hover { background: #2A2520; }

/* Story scenes — parchment tones */
#scene-living  { background: #f9f7f4; }
#scene-kitchen { background: #F5F1EA; }
#scene-bedroom { background: #fafafa; }
.story-title em { color: var(--blush-dark); }
.story-title em::after { background: var(--blush-dark); }
.story-cta { border-bottom-color: var(--blush-dark); }
.story-cta:hover { color: var(--gold); border-color: var(--gold); }
.story-tag { background: rgba(26,22,18,0.06); border-color: rgba(26,22,18,0.11); }

/* Header scrolled border */
#site-header.scrolled { box-shadow: 0 1px 0 rgba(26,22,18,0.08), 0 8px 32px rgba(26,22,18,0.06); }

/* Mega dropdown border accent */
.mega-dropdown { border-top: 2px solid var(--blush); }

/* Mobile menu accent */
.mobile-cta { background: #1A1612 !important; }
.mobile-close:hover { background: #1A1612; border-color: #1A1612; }

/* Factory badge */
.factory-img-badge { background: #1A1612; }
.factory-img-badge strong { color: var(--blush); }

/* Skeleton cards */
.reviews-skeleton .sk-line,
.reviews-skeleton .sk-avatar,
.skeleton-card { background: rgba(26,22,18,0.06) !important; }

/* Review section header bg */
.testimonials-section { background: var(--soft-grey); }

/* GMB buttons */
.gmb-write-btn { border-color: rgba(26,22,18,0.18); color: rgba(26,22,18,0.65); background: rgba(26,22,18,0.03); }
.gmb-write-btn:hover { background: rgba(26,22,18,0.08); color: #1A1612; }
.gmb-all-btn { color: var(--blush) !important; }

/* WhatsApp float pulse */
@keyframes waPulse {
  0%,100%{box-shadow:0 6px 28px rgba(37,211,102,0.38)}
  50%{box-shadow:0 6px 40px rgba(37,211,102,0.56)}
}

/* Process section tab active colours */
.process-tab.active .tab-num,
.process-tab.done .tab-num { background: var(--blush); border-color: var(--blush); color: #1A1612; }
.process-tab.active .tab-chevron { color: var(--blush); }
.tab-fill { background: var(--blush); }

/* Process panel badge */
.panel-badge { background: rgba(26,22,18,0.82); border-color: rgba(201,168,124,0.2); }
.panel-badge span { color: var(--blush); }

/* Scroll indicator line */
.hero-scroll-line::after { background: var(--blush); }

/* Hero dots */
.hero-dot.active { background: var(--blush); }
.hero-slide-progress-bar { background: var(--blush); }

/* Hero stats */
.hero-stat { border-color: rgba(255,255,255,0.18); }

/* Footer socials hover */
.footer-socials a:hover { background: #1A1612; border-color: #1A1612; }
.contact-item svg { fill: var(--blush); }
.footer-col h4 { color: #1A1612; }
.footer-col ul li a:hover { color: #1A1612; }
.footer-legal a:hover { color: #1A1612; }

/* T-btn controls */
.t-btn { border-color: #1A1612; color: #1A1612; }
.t-btn:hover { background: #1A1612; }

/* Btn-ghost */
.btn-ghost .arrow { border-color: #1A1612; }
.btn-ghost:hover .arrow { background: #1A1612; }

/* AOS pointer events */
[data-aos] { pointer-events: none; }
[data-aos].aos-animate { pointer-events: auto; }

/* ── GHOST BACKGROUND WORDS ─────────────────────── */
.ghost-word {
  position: absolute;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(80px, 14vw, 160px);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  line-height: 1;
  color: rgba(26,22,18,0.035);
  letter-spacing: -0.02em;
}
/* Dark section variant */
.ghost-word-light { color: rgba(255,255,255,0.03); }

/* Per-section positions */
.gw-top-left    { top: -20px;   left: -20px;  }
.gw-top-right   { top: -20px;   right: -40px; }
.gw-top-center  { top: -20px;   left: 50%;    transform: translateX(-50%); }
.gw-mid-left    { top: 50%;     left: -30px;  transform: translateY(-50%); }
.gw-mid-right   { top: 50%;     right: -40px; transform: translateY(-50%); }
.gw-mid-center  { top: 50%;     left: 50%;    transform: translate(-50%,-50%); }
.gw-bot-left    { bottom: -20px; left: -20px; }
.gw-bot-right   { bottom: -20px; right: -40px; }
.gw-bot-center  { bottom: -20px; left: 50%;   transform: translateX(-50%); }

/* Ensure sections are position:relative */
.services-section,
.counter-section,
.pw-section,
.process-section,
.factory-section,
.testimonials-section,
.reviews-section,
.faq-section,
.footer-cta-section, .final-cta {
  position: relative;
  overflow: hidden;
}
