/* ===================================================================
   HEAVEN'S RENOVATIONS - MODERN EDITORIAL ARCHITECTURAL STYLES
   Building • Restoring • Elevating
   =================================================================== */

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

:root {
  /* Architectural Palette */
  --bg-darkest: #07090d;
  --bg-dark: #0b0e14;
  --bg-surface: #10141d;
  --bg-surface-elevated: #151b27;
  --bg-card: #141a26;
  --bg-card-hover: #1b2333;

  /* Gold Derived from Official Crest */
  --gold-primary: #c5a059;
  --gold-light: #e5ca8f;
  --gold-dark: #987739;
  --gold-glow: rgba(197, 160, 89, 0.4);
  --gold-gradient: linear-gradient(135deg, #e8cf97 0%, #c5a059 50%, #9e7939 100%);
  --gold-border: rgba(197, 160, 89, 0.28);
  --gold-border-bright: rgba(197, 160, 89, 0.65);

  /* Typography */
  --text-pure: #ffffff;
  --text-ivory: #f8f6f0;
  --text-muted: #9fa5b5;
  --text-dim: #646a7d;

  /* Glassmorphism */
  --glass-capsule-bg: rgba(11, 15, 22, 0.72);
  --glass-border: rgba(255, 255, 255, 0.08);

  /* Typography Families */
  --font-display: 'Cinzel', serif;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Elevation Shadows */
  --shadow-sm: 0 4px 16px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 12px 32px rgba(0, 0, 0, 0.55);
  --shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.75);
  --shadow-gold: 0 12px 35px rgba(197, 160, 89, 0.25);

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-pill: 9999px;

  /* Transitions */
  --tr-fast: 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  --tr-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --tr-slow: 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ===================================================================
   RESET & GLOBAL BASICS
   =================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-darkest);
  color: var(--text-ivory);
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button, input, textarea, select {
  font-family: inherit;
  color: inherit;
}

.container {
  width: 100%;
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 28px;
}

.gold-gradient-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Common Section Header Typography */
.editorial-header-center {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 60px auto;
}

.editorial-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--gold-light);
  margin-bottom: 14px;
}

.editorial-tag::before,
.editorial-tag::after {
  content: '';
  display: inline-block;
  width: 22px;
  height: 1px;
  background: var(--gold-primary);
  opacity: 0.7;
}

.editorial-heading {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 3.8vw, 3.3rem);
  font-weight: 700;
  color: var(--text-pure);
  line-height: 1.2;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}

.editorial-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Luxury Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 34px;
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--tr-smooth);
  border: none;
}

.btn-gold {
  background: var(--gold-gradient);
  color: #0b0f16;
  font-weight: 700;
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(197, 160, 89, 0.4);
  filter: brightness(1.08);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--gold-border);
  color: var(--text-ivory);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.btn-glass:hover {
  background: rgba(197, 160, 89, 0.12);
  border-color: var(--gold-primary);
  color: var(--gold-light);
  transform: translateY(-2px);
}

.btn-block {
  width: 100%;
}

/* ===================================================================
   1. FLOATING MODERN PILL NAVIGATION BAR
   =================================================================== */
.nav-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 24px;
  pointer-events: none;
  display: flex;
  justify-content: center;
}

.floating-navbar {
  pointer-events: auto;
  width: 100%;
  max-width: 1220px;
  background: var(--glass-capsule-bg);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-pill);
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.65), 0 0 20px rgba(197, 160, 89, 0.1);
  transition: all var(--tr-smooth);
}

.floating-navbar.scrolled {
  background: rgba(8, 11, 17, 0.94);
  border-color: var(--gold-border-bright);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 25px rgba(197, 160, 89, 0.18);
  padding: 8px 22px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-brand-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(197, 160, 89, 0.4));
}

.nav-brand-text {
  display: flex;
  flex-direction: column;
}

.nav-brand-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold-light);
  line-height: 1;
}

.nav-brand-sub {
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  color: var(--text-muted);
  margin-top: 2px;
  font-weight: 500;
}

.nav-links-wrap {
  display: flex;
  align-items: center;
  gap: 26px;
}

.pill-nav-link {
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-ivory);
  transition: all var(--tr-fast);
  padding: 6px 4px;
  position: relative;
}

.pill-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gold-gradient);
  transition: width var(--tr-smooth);
}

.pill-nav-link:hover {
  color: var(--gold-light);
}

.pill-nav-link:hover::after {
  width: 100%;
}

.nav-cta-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}

.btn-pill-cta {
  background: var(--gold-gradient);
  color: #0b0f16;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 14px rgba(197, 160, 89, 0.3);
  transition: all var(--tr-smooth);
}

.btn-pill-cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
  box-shadow: 0 6px 20px rgba(197, 160, 89, 0.5);
}

.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.mobile-nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--gold-light);
  transition: all var(--tr-fast);
}

/* ===================================================================
   2. CINEMATIC FULL-BLEED HERO WITH CENTERED CONTENT
   =================================================================== */
.hero-cinematic-section {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 0 80px 0;
  overflow: hidden;
}

.hero-fullbleed-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  transform: scale(1.03);
  filter: brightness(0.82) contrast(1.05);
  z-index: 0;
}

.hero-cinematic-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(11, 14, 20, 0.55) 0%, rgba(7, 9, 13, 0.92) 80%);
  z-index: 1;
}

.hero-centered-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 1060px;
}

.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(197, 160, 89, 0.12);
  border: 1px solid var(--gold-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 24px;
}

.badge-sparkle {
  color: var(--gold-light);
}

.hero-main-heading {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.2vw, 4.8rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0.03em;
  color: var(--text-pure);
  margin-bottom: 24px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.8);
}

.hero-centered-lead {
  font-size: clamp(1.05rem, 1.3vw, 1.22rem);
  line-height: 1.8;
  color: #d1d5db;
  max-width: 820px;
  margin-bottom: 40px;
  font-weight: 300;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.hero-centered-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 60px;
}

/* Centered Stats Band */
.hero-stats-band {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  background: rgba(13, 17, 24, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-pill);
  padding: 16px 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.stat-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}

.stat-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-top: 4px;
}

.stat-pill-divider {
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, 0.12);
}

/* Scroll Cue */
.scroll-cue-link {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  transition: color var(--tr-fast);
}

.scroll-cue-link:hover {
  color: var(--gold-light);
}

.mouse-icon {
  width: 22px;
  height: 34px;
  border: 1.5px solid var(--gold-border-bright);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.mouse-wheel {
  width: 3px;
  height: 6px;
  background: var(--gold-light);
  border-radius: 2px;
  animation: wheel-bounce 1.8s infinite;
}

@keyframes wheel-bounce {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(12px); opacity: 0; }
}

.scroll-text {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* ===================================================================
   3. MODERN BENTO ARCHITECTURAL GRID (Disciplines)
   =================================================================== */
.bento-disciplines-section {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--bg-darkest) 0%, var(--bg-dark) 50%, var(--bg-darkest) 100%);
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 28px;
}

.bento-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  border: 1px solid var(--glass-border);
  min-height: 440px;
  display: flex;
  align-items: flex-end;
  padding: 40px;
  box-shadow: var(--shadow-md);
  transition: all var(--tr-smooth);
}

.bento-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-border-bright);
  box-shadow: var(--shadow-lg), 0 0 35px rgba(197, 160, 89, 0.18);
}

.bento-wide {
  grid-column: span 7;
}

.bento-tall {
  grid-column: span 5;
}

.bento-grid > .bento-card:nth-child(3) {
  grid-column: span 5;
}

.bento-grid > .bento-card:nth-child(4) {
  grid-column: span 7;
}

.bento-gradient-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 9, 13, 0.1) 0%, rgba(7, 9, 13, 0.92) 80%);
  transition: opacity var(--tr-smooth);
}

.bento-card:hover .bento-gradient-scrim {
  background: linear-gradient(180deg, rgba(7, 9, 13, 0.05) 0%, rgba(7, 9, 13, 0.95) 75%);
}

.bento-content {
  position: relative;
  z-index: 2;
  max-width: 580px;
}

.bento-discipline-num {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--gold-light);
  margin-bottom: 8px;
  display: inline-block;
}

.bento-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 12px;
}

.bento-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

.bento-features-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.bento-features-tags span {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.74rem;
  color: var(--text-ivory);
}

.bento-link {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--tr-fast);
}

.bento-link:hover {
  gap: 10px;
  color: #fff;
}

/* ===================================================================
   4. INTERACTIVE HOTSPOTS SECTION
   =================================================================== */
.hotspot-section {
  padding: 120px 0;
  background: var(--bg-dark);
}

.interactive-stage-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gold-border);
  box-shadow: var(--shadow-lg);
}

.hotspot-base-img {
  width: 100%;
  max-height: 680px;
  object-fit: cover;
}

.hotspot-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 40%, rgba(7, 9, 13, 0.6) 100%);
  pointer-events: none;
}

.hotspot-node {
  position: absolute;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.node-pulse-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: #0b0f16;
  font-size: 0.95rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  box-shadow: 0 0 25px rgba(197, 160, 89, 0.7);
  transition: transform var(--tr-fast);
  position: relative;
}

.node-pulse-btn::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1.5px solid var(--gold-primary);
  animation: pulse-ring 2.5s infinite;
}

.hotspot-node:hover .node-pulse-btn,
.hotspot-node.active .node-pulse-btn {
  transform: scale(1.15);
}

.node-tooltip {
  position: absolute;
  width: 290px;
  background: rgba(11, 15, 23, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--gold-border-bright);
  border-radius: var(--radius-md);
  padding: 18px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transition: all var(--tr-smooth);
  pointer-events: none;
  z-index: 20;
}

.node-tooltip.top {
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
}

.node-tooltip.bottom {
  top: 50px;
  left: 50%;
  transform: translateX(-50%) translateY(-12px);
}

.hotspot-node:hover .node-tooltip,
.hotspot-node.active .node-tooltip {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.tooltip-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold-light);
  display: block;
  margin-bottom: 4px;
}

.node-tooltip h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 6px;
}

.node-tooltip p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ===================================================================
   5. BEFORE / AFTER SPLIT SLIDER
   =================================================================== */
.transformation-section {
  padding: 120px 0;
  background: var(--bg-darkest);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.modern-split-slider {
  position: relative;
  width: 100%;
  max-width: 1080px;
  height: 560px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gold-border);
  box-shadow: var(--shadow-lg);
  user-select: none;
}

.slide-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.slide-layer.layer-before {
  width: 50%;
  z-index: 2;
  border-right: 2px solid var(--gold-light);
}

.split-photo {
  position: absolute;
  top: 0;
  left: 0;
  width: 1080px;
  height: 100%;
  object-fit: cover;
  max-width: none;
}

.layer-pill {
  position: absolute;
  bottom: 24px;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  z-index: 5;
}

.layer-pill.before-pill {
  left: 24px;
  background: rgba(10, 14, 20, 0.85);
  color: var(--text-muted);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.layer-pill.after-pill {
  right: 24px;
  background: var(--gold-gradient);
  color: #0b0f16;
  box-shadow: 0 4px 15px rgba(197, 160, 89, 0.4);
}

.slider-drag-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 44px;
  margin-left: -22px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: ew-resize;
}

.drag-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: #0b0f16;
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.9), 0 0 15px rgba(197, 160, 89, 0.6);
}

/* ===================================================================
   6. INTERACTIVE RENOVATION SCOPE ESTIMATOR
   =================================================================== */
.estimator-section {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--bg-darkest) 0%, var(--bg-dark) 100%);
}

.estimator-glass-card {
  background: var(--bg-surface);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 50px;
  box-shadow: var(--shadow-lg);
  max-width: 1080px;
  margin: 0 auto;
}

.estimator-layout-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
}

.estimator-controls {
  display: flex;
  flex-direction: column;
  gap: 34px;
}

.est-label {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 12px;
  display: block;
}

.room-selector-pills {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.pill-room-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  cursor: pointer;
  transition: all var(--tr-fast);
  color: var(--text-ivory);
  text-align: left;
}

.pill-room-btn:hover {
  background: rgba(197, 160, 89, 0.08);
  border-color: var(--gold-border);
}

.pill-room-btn.active {
  background: rgba(197, 160, 89, 0.16);
  border-color: var(--gold-primary);
  color: var(--gold-light);
}

.room-icon {
  font-size: 1.2rem;
}

.room-title {
  font-size: 0.88rem;
  font-weight: 600;
}

/* Tier Segmented Control */
.tier-segmented-control {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.tier-choice-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  padding: 12px 10px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--tr-fast);
}

.tier-choice-btn.active {
  background: rgba(197, 160, 89, 0.16);
  border-color: var(--gold-primary);
  color: var(--gold-light);
}

/* Slider */
.slider-meta-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.slider-sqm-badge {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold-light);
}

.modern-range-slider {
  width: 100%;
  accent-color: var(--gold-primary);
  height: 6px;
  background: #1f2737;
  border-radius: 3px;
  cursor: pointer;
}

/* Receipt Card */
.estimator-receipt-card {
  background: linear-gradient(150deg, #161e2b 0%, #0d121b 100%);
  border: 1px solid var(--gold-border-bright);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-md);
}

.receipt-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--gold-light);
}

.receipt-title {
  font-family: var(--font-display);
  font-size: 1.22rem;
  color: #fff;
  margin: 6px 0 4px 0;
}

.receipt-subtitle {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.receipt-price-box {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 0;
  margin: 20px 0;
}

.receipt-price-label {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-light);
}

.receipt-price-number {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 800;
  color: #ffffff;
  margin: 6px 0;
}

.receipt-timeline-text {
  font-size: 0.84rem;
  color: var(--text-muted);
}

.inclusions-heading {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-ivory);
  display: block;
  margin-bottom: 10px;
}

.receipt-inclusions-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 26px;
}

/* ===================================================================
   7. MASTER ARCHITECTURAL PORTFOLIO & LIGHTBOX
   =================================================================== */
.portfolio-section {
  padding: 120px 0;
  background: var(--bg-dark);
}

.portfolio-filter-capsule {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 50px;
}

.filter-capsule-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all var(--tr-fast);
}

.filter-capsule-btn:hover {
  border-color: var(--gold-border);
  color: var(--text-ivory);
}

.filter-capsule-btn.active {
  background: var(--gold-gradient);
  color: #0b0f16;
  border-color: transparent;
  font-weight: 700;
  box-shadow: var(--shadow-gold);
}

.portfolio-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.portfolio-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  cursor: pointer;
  transition: all var(--tr-smooth);
}

.portfolio-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-border-bright);
  box-shadow: var(--shadow-lg), 0 0 30px rgba(197, 160, 89, 0.2);
}

.card-media {
  position: relative;
  width: 100%;
  height: 380px;
  overflow: hidden;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--tr-slow);
}

.portfolio-card:hover .card-media img {
  transform: scale(1.08);
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(7, 9, 13, 0.95) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}

.card-cat-badge {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold-light);
  margin-bottom: 4px;
}

.card-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 6px;
  line-height: 1.25;
}

.card-meta-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.card-action-btn {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold-light);
}

/* Modal Lightbox */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(5, 7, 11, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--tr-smooth);
}

.modal-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.modal-window {
  background: var(--bg-surface);
  border: 1px solid var(--gold-border-bright);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 1100px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  position: relative;
  transform: translateY(20px);
  transition: all var(--tr-smooth);
}

.modal-backdrop.open .modal-window {
  transform: translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(13, 17, 25, 0.8);
  border: 1px solid var(--gold-border);
  color: #fff;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all var(--tr-fast);
}

.modal-close-btn:hover {
  background: var(--gold-gradient);
  color: #0b0f16;
}

.modal-content-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
}

.modal-gallery-view {
  min-height: 480px;
  background: #000;
}

.modal-main-img {
  width: 100%;
  height: 100%;
  max-height: 620px;
  object-fit: cover;
}

.modal-details {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.modal-cat-tag {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold-light);
}

.modal-title {
  font-family: var(--font-display);
  font-size: 1.85rem;
  color: #fff;
  margin: 6px 0 16px 0;
  line-height: 1.25;
}

.modal-desc {
  font-size: 0.94rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.modal-specs-table {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
  margin-bottom: 28px;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
}

.spec-name {
  color: var(--text-muted);
}

.spec-val {
  color: var(--gold-light);
  font-weight: 600;
}

/* ===================================================================
   8. PROCESS & TESTIMONIALS
   =================================================================== */
.process-section {
  padding: 120px 0;
  background: var(--bg-darkest);
}

.process-timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.process-timeline-card {
  background: var(--bg-surface);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  transition: all var(--tr-smooth);
}

.process-timeline-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-border-bright);
}

.timeline-step {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 800;
  color: rgba(197, 160, 89, 0.2);
  line-height: 1;
  margin-bottom: 18px;
  display: block;
}

.process-timeline-card:hover .timeline-step {
  color: var(--gold-light);
}

.process-timeline-card h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 10px;
}

.process-timeline-card p {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Reviews */
.reviews-section {
  padding: 120px 0;
  background: var(--bg-dark);
}

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

.review-quote-card {
  background: var(--bg-surface);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 38px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--tr-smooth);
}

.review-quote-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-5px);
}

.review-stars {
  color: #f59e0b;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.review-text {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--text-ivory);
  margin-bottom: 24px;
}

.reviewer-footer {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 18px;
}

.reviewer-initials {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: #0b0f16;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reviewer-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
}

.reviewer-project {
  font-size: 0.76rem;
  color: var(--gold-light);
}

/* ===================================================================
   9. CONSULTATION SECTION & CONTACT
   =================================================================== */
.consultation-section {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--bg-darkest) 0%, #06080b 100%);
}

.consultation-split-wrapper {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: flex-start;
}

.consult-lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 40px;
}

.concierge-direct-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.concierge-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.concierge-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  background: rgba(197, 160, 89, 0.12);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.concierge-label {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  display: block;
  margin-bottom: 2px;
}

.concierge-val {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gold-light);
}

.text-whatsapp {
  color: #25d366 !important;
}

/* Form */
.consultation-form-card {
  background: var(--bg-surface);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-lg);
}

.form-input-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}

.modern-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}

.modern-field label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-ivory);
}

.modern-field input,
.modern-field select,
.modern-field textarea {
  background: rgba(7, 9, 13, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  color: #fff;
  font-size: 0.9rem;
  outline: none;
  transition: all var(--tr-fast);
}

.modern-field input:focus,
.modern-field select:focus,
.modern-field textarea:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 14px rgba(197, 160, 89, 0.28);
  background: rgba(11, 14, 20, 0.95);
}

/* ===================================================================
   10. FLOATING WHATSAPP VIP CONCIERGE & TOAST
   =================================================================== */
.floating-concierge {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
}

.whatsapp-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #ffffff;
  padding: 13px 22px;
  border-radius: var(--radius-pill);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
  transition: all var(--tr-smooth);
}

.whatsapp-pill:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.65);
}

.whatsapp-pill svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.toast-notice {
  position: fixed;
  top: 30px;
  right: 30px;
  background: #10151f;
  border: 1px solid var(--gold-primary);
  color: #ffffff;
  padding: 16px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  z-index: 2100;
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateX(130%);
  transition: transform var(--tr-smooth);
}

.toast-notice.show {
  transform: translateX(0);
}

/* ===================================================================
   11. MODERN LUXURY FOOTER
   =================================================================== */
.modern-luxury-footer {
  background: #05070a;
  border-top: 1px solid rgba(197, 160, 89, 0.2);
  padding: 90px 0 36px 0;
}

.footer-primary-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 0.9fr 1.1fr;
  gap: 50px;
  margin-bottom: 60px;
}

.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.footer-logo-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.footer-brand-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold-light);
  display: block;
}

.footer-brand-subtitle {
  font-size: 0.6rem;
  letter-spacing: 0.26em;
  color: var(--text-muted);
  display: block;
}

.footer-brand-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.footer-nav-col h6 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: 0.08em;
}

.footer-nav-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav-col a {
  font-size: 0.86rem;
  color: var(--text-muted);
  transition: all var(--tr-fast);
}

.footer-nav-col a:hover {
  color: var(--gold-light);
  padding-left: 4px;
}

.footer-meta-p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.footer-consult-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-credits-row {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--text-dim);
}

/* ===================================================================
   RESPONSIVE BREAKPOINTS
   =================================================================== */
@media (max-width: 1100px) {
  .bento-wide,
  .bento-tall,
  .bento-grid > .bento-card:nth-child(3),
  .bento-grid > .bento-card:nth-child(4) {
    grid-column: span 12;
  }

  .process-timeline-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-primary-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 860px) {
  .nav-links-wrap {
    display: none;
    position: absolute;
    top: 100%;
    left: 20px;
    right: 20px;
    background: rgba(9, 12, 18, 0.98);
    border: 1px solid var(--gold-border);
    border-radius: var(--radius-lg);
    flex-direction: column;
    padding: 24px;
    gap: 18px;
    margin-top: 12px;
    box-shadow: var(--shadow-lg);
  }

  .nav-links-wrap.mobile-open {
    display: flex;
  }

  .mobile-nav-toggle {
    display: flex;
  }

  .portfolio-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .estimator-layout-grid {
    grid-template-columns: 1fr;
  }

  .consultation-split-wrapper {
    grid-template-columns: 1fr;
  }

  .modal-content-grid {
    grid-template-columns: 1fr;
  }

  .modal-gallery-view {
    min-height: 320px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats-band {
    flex-wrap: wrap;
    gap: 18px;
    padding: 16px 24px;
    border-radius: var(--radius-lg);
  }

  .stat-pill-divider {
    display: none;
  }

  .modern-split-slider {
    height: 380px;
  }
}

@media (max-width: 600px) {
  .hero-main-heading {
    font-size: 2.2rem;
  }

  .portfolio-cards-grid {
    grid-template-columns: 1fr;
  }

  .form-input-pair {
    grid-template-columns: 1fr;
  }

  .room-selector-pills {
    grid-template-columns: 1fr;
  }

  .tier-segmented-control {
    grid-template-columns: 1fr;
  }

  .process-timeline-grid {
    grid-template-columns: 1fr;
  }

  .footer-primary-grid {
    grid-template-columns: 1fr;
  }

  .floating-concierge {
    bottom: 16px;
    right: 16px;
  }
}
