/* =============================================
   ASSAM FURNITURE HOUSE — SHARED DESIGN SYSTEM
   Tier 3 | Dark Luxury Theme | Vanilla CSS
============================================= */

/* ─── CSS VARIABLES ──────────────────────── */
:root {
  /* Colors */
  --bg-dark:      #0d0d0d;
  --bg-card:      #161616;
  --bg-card2:     #1a1a1a;
  --bg-glass:     rgba(255,255,255,0.05);
  --gold:         #c9a227;
  --gold-light:   #e8c558;
  --gold-muted:   rgba(201,162,39,0.15);
  --gold-border:  rgba(201,162,39,0.3);
  --text-primary: #f5f0e8;
  --text-muted:   #9e9680;
  --border:       rgba(201,162,39,0.2);
  --whatsapp:     #25D366;
  --whatsapp-dark:#1da851;
  /* Spacing */
  --space-xs:  8px;
  --space-sm:  16px;
  --space-md:  24px;
  --space-lg:  40px;
  --space-xl:  64px;
  --space-2xl: 100px;
  /* Radii */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  /* Misc */
  --shadow-gold: 0 0 20px rgba(201,162,39,0.25);
  --transition:  all 0.3s ease;
}

/* ─── RESET ──────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.25; }
a { text-decoration: none; color: inherit; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
ul { list-style: none; }

/* ─── UTILITIES ──────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 var(--space-sm); }
.section-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-xs);
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}
.section-title span { color: var(--gold); }
.section-desc { color: var(--text-muted); max-width: 560px; font-size: 1rem; line-height: 1.75; }
.text-center { text-align: center; }
.text-center .section-desc { margin: 0 auto; }
.section { padding: var(--space-2xl) 0; }
.section-header { margin-bottom: var(--space-lg); }

/* ─── BUTTONS ────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-gold { background: var(--gold); color: #0d0d0d; }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.btn-outline { background: transparent; color: var(--text-primary); border: 1px solid var(--border); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn-whatsapp { background: var(--whatsapp); color: #fff; }
.btn-whatsapp:hover { background: var(--whatsapp-dark); transform: translateY(-2px); }

/* ─── SCROLL ANIMATIONS ──────────────────── */
[data-fade] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-fade].visible { opacity: 1; transform: translateY(0); }
[data-fade][data-delay="1"] { transition-delay: 0.1s; }
[data-fade][data-delay="2"] { transition-delay: 0.2s; }
[data-fade][data-delay="3"] { transition-delay: 0.3s; }
[data-fade][data-delay="4"] { transition-delay: 0.4s; }
[data-fade][data-delay="5"] { transition-delay: 0.5s; }

/* ─── TOP BAR ────────────────────────────── */
.top-bar {
  background: #090909;
  border-bottom: 1px solid var(--border);
  padding: 8px 0;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 6px;
}
.top-bar-left { display: flex; align-items: center; gap: var(--space-md); }
.top-bar-item { display: flex; align-items: center; gap: 6px; }
.top-bar-item svg { color: var(--gold); flex-shrink: 0; }
.top-bar-right { display: flex; align-items: center; gap: var(--space-sm); }
.top-bar-right a { color: var(--text-muted); transition: var(--transition); }
.top-bar-right a:hover { color: var(--gold); }
.top-bar-wa {
  background: var(--whatsapp);
  color: #fff !important;
  padding: 3px 10px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.75rem;
}
.top-bar-wa:hover { background: var(--whatsapp-dark); }
@media (max-width: 640px) { .top-bar-left .top-bar-item:nth-child(2) { display: none; } }

/* ─── NAVBAR ─────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 18px 0;
  background: rgba(13,13,13,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}
.navbar.scrolled {
  padding: 12px 0;
  border-bottom-color: var(--border);
  background: rgba(13,13,13,0.97);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
}
.nav-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-logo-mark {
  width: 42px; height: 42px;
  background: var(--gold);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700; font-size: 1.1rem;
  color: #0d0d0d;
  letter-spacing: -0.03em;
}
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav-logo-name { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 600; color: var(--text-primary); }
.nav-logo-sub { font-size: 0.65rem; color: var(--gold); letter-spacing: 0.08em; text-transform: uppercase; font-weight: 500; }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  padding: 8px 14px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--text-primary); background: var(--bg-glass); }
.nav-links a.active { color: var(--gold); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-cta .btn { padding: 9px 18px; font-size: 0.82rem; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: var(--space-sm);
  background: #111;
  border-top: 1px solid var(--border);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition);
}
.mobile-menu a:hover { color: var(--gold); background: var(--gold-muted); }
.mobile-menu .btn { margin-top: 8px; justify-content: center; }
@media (max-width: 900px) { .nav-links, .nav-cta .btn-gold { display: none; } .hamburger { display: flex; } }
@media (max-width: 480px) { .nav-cta { display: none; } }

/* ─── PAGE HERO (inner pages) ────────────── */
.page-hero {
  padding: var(--space-xl) 0 var(--space-lg);
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.18;
}
.page-hero-content { position: relative; z-index: 2; }
.breadcrumb {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.8rem; color: var(--text-muted);
  margin-bottom: var(--space-sm);
}
.breadcrumb a { color: var(--text-muted); transition: var(--transition); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); }
.page-hero h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); margin-bottom: var(--space-sm); }
.page-hero h1 span { color: var(--gold); }
.page-hero p { color: var(--text-muted); font-size: 1rem; max-width: 500px; line-height: 1.8; }

/* ─── HERO (homepage) ────────────────────── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1555041469-a586c61ea9bc?auto=format&fit=crop&w=1600&q=80');
  background-size: cover;
  background-position: center;
  will-change: transform;
  transition: transform 0.1s linear;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(13,13,13,0.92) 0%, rgba(13,13,13,0.7) 60%, rgba(13,13,13,0.5) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: var(--space-2xl) 0;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-muted);
  border: 1px solid var(--gold-border);
  padding: 6px 14px;
  border-radius: 30px;
  margin-bottom: var(--space-md);
}
.hero-eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
}
.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: var(--space-md);
}
.hero h1 span { color: var(--gold); display: block; }
.hero-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
  max-width: 520px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: var(--space-lg); }
.hero-btns .btn { padding: 15px 30px; font-size: 0.95rem; }
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  border-top: 1px solid var(--border);
  padding-top: var(--space-md);
}
.trust-badge { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; font-weight: 500; color: var(--text-muted); }
.trust-badge-icon {
  width: 32px; height: 32px;
  background: var(--gold-muted);
  border: 1px solid var(--gold-border);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.trust-badge strong { color: var(--text-primary); display: block; font-size: 0.87rem; }
.hero-chips {
  position: absolute; right: 5%; top: 50%; transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 14px; z-index: 3;
}
.hero-chip {
  background: rgba(22,22,22,0.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  min-width: 170px;
  animation: chipFloat 4s ease-in-out infinite;
}
.hero-chip:nth-child(2) { animation-delay: 2s; }
@keyframes chipFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.chip-icon { font-size: 1.4rem; margin-bottom: 4px; }
.chip-label { font-size: 0.7rem; color: var(--gold); font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; }
.chip-value { font-size: 1rem; font-weight: 700; color: var(--text-primary); font-family: 'Playfair Display', serif; }
@media (max-width: 900px) { .hero-chips { display: none; } .hero-content { max-width: 100%; } }
@media (max-width: 600px) { .hero { min-height: 100svh; } .hero-btns .btn { width: 100%; justify-content: center; } }

/* ─── CATEGORY STRIP ─────────────────────── */
.categories {
  padding: var(--space-xl) 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.categories-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--space-sm);
}
.category-card {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  padding: var(--space-md) var(--space-sm);
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  cursor: pointer; transition: var(--transition);
  text-align: center; text-decoration: none;
}
.category-card:hover {
  border-color: var(--gold);
  background: var(--gold-muted);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(201,162,39,0.15);
}
.category-icon {
  width: 52px; height: 52px;
  background: var(--gold-muted);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; transition: var(--transition);
}
.category-card:hover .category-icon { background: var(--gold); }
.category-name { font-size: 0.8rem; font-weight: 600; color: var(--text-muted); transition: var(--transition); }
.category-card:hover .category-name { color: var(--gold); }
@media (max-width: 900px) { .categories-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 500px) { .categories-grid { grid-template-columns: repeat(2, 1fr); } }

/* ─── PRODUCT CARDS ──────────────────────── */
.products-section { padding: var(--space-2xl) 0; }
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex; flex-direction: column;
}
.product-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4), 0 0 0 1px var(--gold-border);
}
.product-card.hidden { display: none; }
.product-img-wrap { position: relative; height: 220px; overflow: hidden; }
.product-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.product-card:hover .product-img-wrap img { transform: scale(1.06); }
.product-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--gold-muted); border: 1px solid var(--gold-border); color: var(--gold);
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 20px; backdrop-filter: blur(8px);
}
.product-deal {
  position: absolute; top: 12px; right: 12px;
  background: #c0392b; color: #fff;
  font-size: 0.68rem; font-weight: 700;
  padding: 4px 10px; border-radius: 20px;
}
.product-info { padding: var(--space-md); flex: 1; display: flex; flex-direction: column; gap: 8px; }
.product-rating { display: flex; align-items: center; gap: 4px; font-size: 0.78rem; color: var(--text-muted); }
.product-rating .stars { color: var(--gold); letter-spacing: -1px; }
.product-name { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 600; color: var(--text-primary); line-height: 1.3; }
.product-price { display: flex; align-items: baseline; gap: 8px; }
.product-price-main { font-size: 1.2rem; font-weight: 700; color: var(--gold); }
.product-price-mrp { font-size: 0.85rem; color: var(--text-muted); text-decoration: line-through; }
.product-emi { font-size: 0.78rem; color: var(--text-muted); }
.product-emi span { color: var(--gold-light); font-weight: 600; }
.product-actions { display: flex; gap: 8px; margin-top: auto; padding-top: 8px; }
.product-actions .btn { flex: 1; padding: 10px 12px; font-size: 0.8rem; justify-content: center; }
@media (max-width: 900px) { .products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .products-grid { grid-template-columns: 1fr; } }
.products-cta-row { text-align: center; margin-top: var(--space-lg); }

/* ─── PRODUCTS PAGE EXTRAS ───────────────── */
.products-count { font-size: 0.85rem; color: var(--text-muted); margin-bottom: var(--space-lg); }
.products-count span { color: var(--gold); font-weight: 600; }
.filter-bar {
  padding: var(--space-lg) 0;
  border-bottom: 1px solid var(--border);
  position: sticky; top: 65px; z-index: 100;
  background: rgba(13,13,13,0.95);
  backdrop-filter: blur(12px);
}
.filter-tabs { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-tab {
  padding: 8px 20px; border-radius: 30px;
  font-size: 0.85rem; font-weight: 600;
  cursor: pointer; border: 1px solid var(--border);
  background: transparent; color: var(--text-muted);
  transition: var(--transition);
}
.filter-tab:hover { border-color: var(--gold-border); color: var(--gold); }
.filter-tab.active { background: var(--gold); color: #0d0d0d; border-color: var(--gold); }
.custom-cta { padding: var(--space-2xl) 0; background: var(--bg-card); border-top: 1px solid var(--border); text-align: center; }
.custom-cta h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: var(--space-sm); }
.custom-cta h2 span { color: var(--gold); }
.custom-cta p { color: var(--text-muted); max-width: 500px; margin: 0 auto var(--space-lg); line-height: 1.8; }
.custom-cta-btns { display: flex; justify-content: center; gap: var(--space-sm); flex-wrap: wrap; }

/* ─── EMI BANNER ─────────────────────────── */
.emi-banner {
  background: linear-gradient(135deg, #1a1200 0%, #0d0d0d 50%, #1a1200 100%);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  padding: var(--space-xl) 0;
}
.emi-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  gap: var(--space-lg); flex-wrap: wrap;
}
.emi-text { flex: 1; min-width: 260px; }
.emi-text h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 8px; }
.emi-text h2 span { color: var(--gold); }
.emi-text p { color: var(--text-muted); max-width: 420px; }
.emi-highlights { display: flex; gap: var(--space-md); flex-wrap: wrap; }
.emi-highlight {
  text-align: center;
  padding: var(--space-md) var(--space-lg);
  background: var(--gold-muted);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  min-width: 120px;
}
.emi-highlight-val { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; color: var(--gold); line-height: 1; }
.emi-highlight-label { font-size: 0.75rem; color: var(--text-muted); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.08em; }
@media (max-width: 700px) { .emi-inner { flex-direction: column; text-align: center; } .emi-text p { margin: 0 auto; } }

/* ─── WEDDING TEASER ─────────────────────── */
.wedding { padding: var(--space-2xl) 0; background: var(--bg-card2); }
.wedding-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--space-xl); align-items: center;
}
.wedding-img { border-radius: var(--radius-lg); overflow: hidden; height: 420px; position: relative; }
.wedding-img img { width: 100%; height: 100%; object-fit: cover; }
.wedding-img-badge {
  position: absolute; bottom: 20px; left: 20px;
  background: rgba(13,13,13,0.85); backdrop-filter: blur(10px);
  border: 1px solid var(--gold-border); border-radius: var(--radius-md);
  padding: 12px 18px; color: var(--text-primary); font-size: 0.9rem; font-weight: 600;
}
.wedding-img-badge span { color: var(--gold); font-family: 'Playfair Display', serif; font-size: 1.2rem; display: block; }
.wedding-text { display: flex; flex-direction: column; gap: var(--space-md); }
.wedding-text h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
.wedding-text h2 span { color: var(--gold); }
.wedding-text p { color: var(--text-muted); line-height: 1.8; }
.wedding-perks { display: flex; flex-direction: column; gap: 10px; }
.wedding-perk { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: var(--text-muted); }
.wedding-perk::before {
  content: '✓';
  width: 22px; height: 22px;
  background: var(--gold-muted); border: 1px solid var(--gold-border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-weight: 700; font-size: 0.75rem; flex-shrink: 0;
}
@media (max-width: 800px) { .wedding-inner { grid-template-columns: 1fr; } .wedding-img { height: 280px; } }

/* ─── WHY CHOOSE US ──────────────────────── */
.why-us { padding: var(--space-2xl) 0; }
.why-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md); margin-top: var(--space-lg);
}
.why-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: var(--space-lg) var(--space-md);
  text-align: center; transition: var(--transition);
}
.why-card:hover { border-color: var(--gold-border); transform: translateY(-4px); box-shadow: var(--shadow-gold); }
.why-icon { font-size: 2rem; margin-bottom: var(--space-sm); display: block; }
.why-title { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 600; color: var(--text-primary); margin-bottom: 8px; }
.why-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; }
@media (max-width: 900px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .why-grid { grid-template-columns: 1fr; } }

/* ─── STATS ROW ──────────────────────────── */
.stats {
  padding: var(--space-xl) 0;
  background: var(--gold-muted);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
}
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: var(--space-md); text-align: center; }
.stat-val { font-family: 'Playfair Display', serif; font-size: clamp(2.2rem,4vw,3.2rem); font-weight: 700; color: var(--gold); line-height: 1; }
.stat-label { font-size: 0.85rem; color: var(--text-muted); margin-top: 6px; font-weight: 500; }
@media (max-width: 700px) { .stats-grid { grid-template-columns: repeat(2,1fr); } }

/* ─── TESTIMONIALS ───────────────────────── */
.testimonials { padding: var(--space-2xl) 0; }
.testimonials-wrap { position: relative; overflow: hidden; }
.testimonials-track { display: flex; transition: transform 0.5s cubic-bezier(.4,0,.2,1); }
.testimonial-slide { min-width: 100%; padding: 0 var(--space-xs); }
.testimonial-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: var(--space-lg);
  max-width: 700px; margin: 0 auto; position: relative;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute; top: 16px; left: 24px;
  font-family: 'Playfair Display', serif; font-size: 5rem;
  color: var(--gold-muted); line-height: 1;
}
.testimonial-text { font-size: 1rem; color: var(--text-primary); line-height: 1.85; margin-bottom: var(--space-md); font-style: italic; padding-top: 24px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 46px; height: 46px; background: var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 1.1rem; color: #0d0d0d; font-weight: 700; flex-shrink: 0;
}
.author-name { font-weight: 600; color: var(--text-primary); font-size: 0.95rem; }
.author-info { font-size: 0.8rem; color: var(--text-muted); }
.testimonial-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 4px; }
.carousel-dots { display: flex; justify-content: center; gap: 8px; margin-top: var(--space-md); }
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--border); cursor: pointer;
  transition: var(--transition); border: none; padding: 0;
}
.dot.active { background: var(--gold); transform: scale(1.3); }

/* ─── CTA BANNER ─────────────────────────── */
.cta-banner {
  padding: var(--space-2xl) 0;
  background: linear-gradient(135deg, #1a1200 0%, #111 60%, #1a1200 100%);
  border-top: 1px solid var(--gold-border);
  text-align: center;
}
.cta-banner h2 { font-size: clamp(1.8rem, 4vw, 3rem); margin-bottom: var(--space-sm); }
.cta-banner h2 span { color: var(--gold); }
.cta-banner p { color: var(--text-muted); max-width: 500px; margin: 0 auto var(--space-lg); line-height: 1.8; }
.cta-banner-btns { display: flex; justify-content: center; gap: var(--space-sm); flex-wrap: wrap; }

/* ─── ABOUT PAGE ─────────────────────────── */
.story { padding: var(--space-2xl) 0; }
.story-inner { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-xl); align-items: center; }
.story-img { border-radius: var(--radius-lg); overflow: hidden; height: 420px; position: relative; }
.story-img img { width: 100%; height: 100%; object-fit: cover; }
.story-img-badge {
  position: absolute; bottom: 20px; left: 20px;
  background: rgba(13,13,13,0.88); backdrop-filter: blur(10px);
  border: 1px solid var(--gold-border); border-radius: var(--radius-md); padding: 12px 18px;
}
.story-img-badge span { display: block; font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; color: var(--gold); }
.story-img-badge small { font-size: 0.75rem; color: var(--text-muted); }
.story-text { display: flex; flex-direction: column; gap: var(--space-md); }
.story-text h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
.story-text h2 span { color: var(--gold); }
.story-text p { color: var(--text-muted); line-height: 1.85; font-size: 0.97rem; }
@media (max-width: 800px) { .story-inner { grid-template-columns: 1fr; } .story-img { height: 280px; } }

.timeline-section { padding: var(--space-2xl) 0; background: var(--bg-card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.timeline { position: relative; max-width: 700px; margin: var(--space-lg) auto 0; padding-left: var(--space-lg); }
.timeline::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 2px; background: linear-gradient(to bottom, var(--gold), var(--gold-border), transparent);
}
.timeline-item { position: relative; margin-bottom: var(--space-lg); padding-left: var(--space-md); }
.timeline-item::before {
  content: ''; position: absolute; left: calc(-1 * var(--space-lg) - 5px); top: 6px;
  width: 12px; height: 12px; background: var(--gold); border-radius: 50%;
  border: 3px solid var(--bg-card); box-shadow: 0 0 0 2px var(--gold);
}
.timeline-year { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; color: var(--gold); text-transform: uppercase; margin-bottom: 4px; }
.timeline-title { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 600; color: var(--text-primary); margin-bottom: 6px; }
.timeline-desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }

.values-section { padding: var(--space-2xl) 0; }
.values-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md); margin-top: var(--space-lg);
}
.value-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: var(--space-lg);
  text-align: center; transition: var(--transition);
}
.value-card:hover { border-color: var(--gold-border); transform: translateY(-4px); box-shadow: var(--shadow-gold); }
.value-icon { font-size: 2.2rem; margin-bottom: 12px; display: block; }
.value-title { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--text-primary); margin-bottom: 10px; }
.value-desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.75; }
@media (max-width: 900px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .values-grid { grid-template-columns: 1fr; } }

.workshop-section { padding: var(--space-2xl) 0; background: var(--bg-card); border-bottom: 1px solid var(--border); }
.workshop-inner { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-xl); align-items: center; }
.workshop-img { border-radius: var(--radius-lg); overflow: hidden; height: 400px; }
.workshop-img img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 800px) { .workshop-inner { grid-template-columns: 1fr; } .workshop-img { height: 280px; } }

/* ─── CONTACT PAGE ───────────────────────── */
.contact-section { padding: var(--space-2xl) 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-xl); }
.info-cards { display: flex; flex-direction: column; gap: var(--space-sm); }
.info-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: var(--space-md);
  display: flex; align-items: flex-start; gap: var(--space-sm);
  transition: var(--transition);
}
.info-card:hover { border-color: var(--gold-border); box-shadow: var(--shadow-gold); }
.info-card-icon {
  width: 46px; height: 46px;
  background: var(--gold-muted); border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 1.2rem;
}
.info-card-label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.info-card-val { font-size: 0.95rem; color: var(--text-primary); font-weight: 500; line-height: 1.5; }
.info-card-val a { color: var(--text-primary); transition: var(--transition); }
.info-card-val a:hover { color: var(--gold); }
.info-card-sub { font-size: 0.8rem; color: var(--text-muted); margin-top: 3px; }
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; height: 420px; border: 1px solid var(--border); }
.map-wrap iframe { width: 100%; height: 100%; border: none; filter: grayscale(40%) invert(90%) hue-rotate(175deg); }
@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; } .map-wrap { height: 280px; } }

.enquiry-section { padding: var(--space-2xl) 0; background: var(--bg-card); border-top: 1px solid var(--border); }
.enquiry-inner { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-xl); align-items: center; }
@media (max-width: 800px) { .enquiry-inner { grid-template-columns: 1fr; } }
.enquiry-form {
  background: var(--bg-card2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: var(--space-lg);
}
.enquiry-form h3 { font-size: 1.3rem; margin-bottom: var(--space-md); }
.form-group { margin-bottom: var(--space-sm); }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--text-muted); margin-bottom: 6px; letter-spacing: 0.04em; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; background: #111;
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-family: 'Inter', sans-serif; font-size: 0.9rem; color: var(--text-primary);
  transition: var(--transition); resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-muted); }
.form-group select option { background: #161616; }
.form-submit { width: 100%; margin-top: var(--space-sm); }
.form-note { font-size: 0.75rem; color: var(--text-muted); margin-top: 10px; text-align: center; }

.opening-hours { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: var(--space-md); margin-top: var(--space-md); }
.opening-hours h4 { font-size: 1rem; margin-bottom: var(--space-sm); }
.hours-row {
  display: flex; justify-content: space-between;
  padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.05); font-size: 0.88rem;
}
.hours-row:last-child { border: none; }
.hours-row .day { color: var(--text-muted); }
.hours-row .time { color: var(--text-primary); font-weight: 500; }
.hours-row.today .day,
.hours-row.today .time { color: var(--gold); }

/* ─── STUDIO PAGE ────────────────────────── */
.emi-section { padding: var(--space-2xl) 0; }
.emi-wrap { display: grid; grid-template-columns: 1.1fr 1fr; gap: var(--space-xl); align-items: start; }
@media (max-width: 900px) { .emi-wrap { grid-template-columns: 1fr; } }
.emi-calc {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: var(--space-lg);
}
.emi-calc h2 { font-size: 1.5rem; margin-bottom: var(--space-md); }
.slider-group { margin-bottom: var(--space-md); }
.slider-label { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.slider-label span { font-size: 0.85rem; color: var(--text-muted); font-weight: 500; }
.slider-label strong { font-size: 1rem; color: var(--gold); font-family: 'Playfair Display', serif; }
.slider-range { display: flex; justify-content: space-between; font-size: 0.72rem; color: var(--text-muted); margin-top: 4px; }
input[type=range] { -webkit-appearance: none; width: 100%; height: 4px; background: var(--border); border-radius: 2px; outline: none; }
input[type=range]::-webkit-slider-thumb { -webkit-appearance: none; width: 18px; height: 18px; background: var(--gold); border-radius: 50%; cursor: pointer; box-shadow: 0 0 0 3px var(--gold-muted); }
input[type=range]::-moz-range-thumb { width: 18px; height: 18px; background: var(--gold); border-radius: 50%; cursor: pointer; border: none; }
.emi-result {
  background: linear-gradient(135deg, #1a1200, #111);
  border: 1px solid var(--gold-border); border-radius: var(--radius-md);
  padding: var(--space-md); margin-top: var(--space-md); text-align: center;
}
.emi-main { font-family: 'Playfair Display', serif; font-size: 2.8rem; font-weight: 700; color: var(--gold); line-height: 1; }
.emi-sub { font-size: 0.8rem; color: var(--text-muted); margin-top: 6px; }
.emi-breakdown { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--space-sm); margin-top: var(--space-md); text-align: center; }
.eb-val { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--text-primary); }
.eb-lbl { font-size: 0.72rem; color: var(--text-muted); margin-top: 3px; }
.emi-cta { margin-top: var(--space-md); display: flex; gap: var(--space-sm); flex-wrap: wrap; }
.emi-cta .btn { flex: 1; justify-content: center; }
.emi-info-cards { display: flex; flex-direction: column; gap: var(--space-md); }
.emi-info-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-md); padding: var(--space-md); }
.emi-info-card h4 { font-size: 1rem; margin-bottom: 8px; }
.emi-info-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.75; }
.emi-steps { display: flex; flex-direction: column; gap: var(--space-sm); }
.emi-step { display: flex; align-items: flex-start; gap: var(--space-sm); }
.emi-step-num {
  width: 30px; height: 30px; background: var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.8rem; color: #0d0d0d; flex-shrink: 0; margin-top: 2px;
}
.emi-step-txt strong { display: block; font-size: 0.9rem; color: var(--text-primary); margin-bottom: 3px; }
.emi-step-txt span { font-size: 0.82rem; color: var(--text-muted); }

.wood-section { padding: var(--space-2xl) 0; background: var(--bg-card); border-top: 1px solid var(--border); }
.wood-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md); margin-top: var(--space-lg);
}
@media (max-width: 900px) { .wood-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .wood-grid { grid-template-columns: 1fr; } }
.wood-card {
  background: var(--bg-card2); border: 2px solid var(--border);
  border-radius: var(--radius-lg); padding: var(--space-md);
  cursor: pointer; transition: var(--transition);
}
.wood-card:hover { border-color: var(--gold-border); transform: translateY(-4px); }
.wood-card.selected { border-color: var(--gold); box-shadow: var(--shadow-gold); }
.wood-img-wrap { height: 160px; border-radius: var(--radius-md); overflow: hidden; margin-bottom: var(--space-sm); }
.wood-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.wood-name { font-size: 1.1rem; margin-bottom: 6px; }
.wood-desc { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 10px; }
.wood-meta { display: flex; justify-content: space-between; font-size: 0.8rem; }
.wood-grade { color: var(--gold); font-weight: 600; }
.wood-price { color: var(--text-muted); }
.wood-selection { text-align: center; margin-top: var(--space-md); font-size: 0.9rem; color: var(--text-muted); }

.finish-section { padding: var(--space-2xl) 0; }
.finish-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md); margin-top: var(--space-lg);
}
@media (max-width: 900px) { .finish-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .finish-grid { grid-template-columns: 1fr; } }
.finish-card {
  background: var(--bg-card); border: 2px solid var(--border);
  border-radius: var(--radius-md); padding: var(--space-md);
  text-align: center; cursor: pointer; transition: var(--transition);
}
.finish-card:hover { border-color: var(--gold-border); transform: translateY(-3px); }
.finish-card.selected { border-color: var(--gold); box-shadow: var(--shadow-gold); }
.finish-swatch {
  width: 60px; height: 60px; border-radius: 50%;
  margin: 0 auto var(--space-sm);
  border: 2px solid var(--border);
}
.finish-name { font-weight: 600; font-size: 0.9rem; margin-bottom: 4px; }
.finish-desc { font-size: 0.78rem; color: var(--text-muted); }
.finish-selection { text-align: center; margin-top: var(--space-md); font-size: 0.9rem; color: var(--text-muted); }

.send-plan-section {
  padding: var(--space-2xl) 0;
  background: linear-gradient(135deg, #1a1200, #111, #1a1200);
  border-top: 1px solid var(--border);
  text-align: center;
}

/* ─── FOOTER ─────────────────────────────── */
.footer {
  background: #080808;
  border-top: 1px solid var(--border);
  padding: var(--space-2xl) 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: var(--space-xl);
  padding-bottom: var(--space-xl);
}
.footer-brand { display: flex; flex-direction: column; gap: var(--space-sm); }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 4px; }
.footer-logo-mark {
  width: 38px; height: 38px; background: var(--gold); border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1rem; color: #0d0d0d;
}
.footer-logo-name { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 600; color: var(--text-primary); }
.footer-brand p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.75; }
.footer-social { display: flex; gap: 10px; margin-top: 4px; }
.footer-social a {
  width: 34px; height: 34px; background: var(--bg-glass);
  border: 1px solid var(--border); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; transition: var(--transition);
}
.footer-social a:hover { background: var(--gold-muted); border-color: var(--gold); }
.footer-col h4 { font-family: 'Playfair Display', serif; font-size: 0.95rem; color: var(--text-primary); margin-bottom: var(--space-sm); }
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul a { font-size: 0.84rem; color: var(--text-muted); transition: var(--transition); }
.footer-col ul a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 8px; font-size: 0.84rem; color: var(--text-muted); margin-bottom: 10px; }
.footer-contact-item svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: var(--text-muted); transition: var(--transition); }
.footer-contact-item a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: var(--space-md) 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 8px; font-size: 0.8rem; color: var(--text-muted);
}
.footer-bottom a { color: var(--gold); }
@media (max-width: 1000px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 550px) { .footer-grid { grid-template-columns: 1fr; } .footer-bottom { flex-direction: column; text-align: center; } }

/* ─── FLOATING WHATSAPP ──────────────────── */
.wa-float {
  position: fixed; bottom: 28px; right: 28px;
  z-index: 9999; opacity: 0; pointer-events: none;
  transition: opacity 0.4s ease;
}
.wa-float.visible { opacity: 1; pointer-events: all; }
.wa-float a {
  display: flex; align-items: center; gap: 8px;
  background: var(--whatsapp); color: #fff;
  padding: 13px 20px; border-radius: 50px;
  font-weight: 600; font-size: 0.9rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  text-decoration: none;
  animation: waPulse 2.5s ease-in-out infinite;
}
@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50%       { box-shadow: 0 4px 32px rgba(37,211,102,0.7); }
}
.wa-float a:hover { background: var(--whatsapp-dark); animation: none; transform: scale(1.05); }
@media (max-width: 480px) { .wa-float { bottom: 16px; right: 16px; } .wa-float a span { display: none; } }
