/* ============================================================
   d'art by Om Engineering — Main Stylesheet v3.0
   Theme: European Luxury Hardware — Champagne Gold & Olive
   Designed for: B2B Importers, Architects, Distributors (Europe)
   ============================================================ */

/* --- TOKENS --- */
:root {
  /* Core */
  --white:       #ffffff;
  --off-white:   #f9f8f6;
  --light-bg:    #f3f1ec;
  --charcoal:    #1e1e1e;
  --dark:        #141414;
  --near-black:  #0d0d0d;

  /* Primary accent — Champagne Gold */
  --gold:        #c9a84c;
  --gold-light:  #e4c67a;
  --gold-dark:   #9e7b2c;
  --gold-pale:   #faf5e8;
  --gold-pale2:  #f0e6c6;

  /* Secondary accent — Olive Green */
  --olive:       #6a8a3c;
  --olive-light: #82a84a;
  --olive-dark:  #4e6a2a;
  --olive-pale:  #eef3e6;

  /* Text */
  --text-muted:  #7a7a7a;
  --text-body:   #343434;
  --border:      #e4e0d8;
  --border-dark: rgba(255,255,255,0.1);

  /* Typography */
  --font-serif:   'Cormorant Garamond', Georgia, serif;
  --font-sans:    'Inter', system-ui, sans-serif;
  --font-display: 'Outfit', system-ui, sans-serif;

  /* Radii */
  --radius-sm: 4px;
  --radius:    10px;
  --radius-lg: 18px;
  --radius-xl: 28px;

  /* Shadows */
  --shadow-sm: 0 2px 12px rgba(0,0,0,.05);
  --shadow:    0 8px 32px rgba(0,0,0,.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.15);
  --shadow-gold: 0 8px 32px rgba(201,168,76,.28);

  /* Motion */
  --transition:      0.28s cubic-bezier(0.4,0,0.2,1);
  --transition-slow: 0.55s cubic-bezier(0.4,0,0.2,1);
}

/* --- RESET --- */
*, *::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-body);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
address { font-style: normal; }

/* --- UTILITIES --- */
.container { max-width: 1240px; margin: 0 auto; padding: 0 28px; }
.section { padding: 100px 0; }
.bg-light  { background: var(--light-bg); }
.bg-dark   { background: var(--near-black); }
.bg-cream  { background: var(--gold-pale); }
.center    { text-align: center; }
.mt-sm     { margin-top: 1rem; }

/* --- TYPOGRAPHY --- */
.section-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
}
.section-label.olive { color: var(--olive); }
.section-label.light { color: var(--gold-light); }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.15;
  margin-bottom: 20px;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-title.olive em { color: var(--olive); }
.section-title.light { color: var(--white); }
.section-title.light em { color: var(--gold-light); }

.section-desc {
  font-size: 1.08rem;
  color: #555555;
  max-width: 580px;
  margin: 0 auto 52px;
  line-height: 1.8;
}

.section-header.center .section-label,
.section-header.center .section-title { text-align: center; }

.body-text { font-size: 1.02rem; color: #2e2e2e; line-height: 1.85; margin-bottom: 1.1rem; }
.body-text.light { color: rgba(255,255,255,0.82); }
.body-text strong { color: var(--charcoal); font-weight: 600; }

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: var(--transition);
  cursor: pointer;
  border: 1.5px solid transparent;
}
.btn-primary {
  background: var(--gold);
  color: var(--near-black);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.btn-gold-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-gold-outline:hover {
  background: var(--gold);
  color: var(--near-black);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.45);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--gold-light);
  color: var(--gold-light);
}
.btn-outline-dark {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}
.btn-outline-dark:hover {
  background: var(--charcoal);
  color: var(--white);
}
.btn-olive {
  background: var(--olive);
  color: var(--white);
  border-color: var(--olive);
}
.btn-olive:hover {
  background: var(--olive-dark);
  border-color: var(--olive-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(106,138,60,0.3);
}
.btn-text {
  padding: 0;
  border: none;
  background: none;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn-text:hover { color: var(--gold-dark); gap: 10px; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 22px 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border), 0 4px 24px rgba(0,0,0,0.06);
  padding: 14px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; }
.logo-img {
  height: 46px;
  width: auto;
  max-width: 170px;
  object-fit: contain;
  object-position: left center;
}
.logo-dark { display: none; }
.logo-light { display: block; }
.navbar.scrolled .logo-dark { display: block; }
.navbar.scrolled .logo-light { display: none; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav-links a {
  font-family: var(--font-display);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  transition: var(--transition);
  padding: 4px 0;
  position: relative;
}
.navbar.scrolled .nav-links a { color: var(--charcoal); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a:hover { color: var(--gold-light); }
.navbar.scrolled .nav-links a:hover { color: var(--gold); }

.nav-cta {
  background: var(--gold) !important;
  color: var(--near-black) !important;
  padding: 10px 22px !important;
  border-radius: var(--radius-sm) !important;
  font-weight: 700 !important;
}
.nav-cta:hover {
  background: var(--gold-dark) !important;
  color: var(--white) !important;
  transform: translateY(-1px) !important;
  box-shadow: var(--shadow-gold) !important;
}
.nav-cta::after { display: none !important; }

.nav-toggle { display: none; }

/* ============================================================
   HERO — SPLIT LAYOUT (Left text / Right product image)
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background: var(--near-black);
}

/* Left panel — text */
.hero-left {
  position: relative;
  z-index: 3;
  flex: 0 0 52%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 160px 64px 100px;
  background: linear-gradient(
    160deg,
    #0d0d0d 0%,
    #111111 40%,
    rgba(20,16,10,0.98) 100%
  );
}
.hero-left::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0; right: 0;
  width: 80px;
  background: linear-gradient(to right, #0d0d0d, transparent);
  z-index: 1;
  pointer-events: none;
}

/* Right panel — product photo */
.hero-right {
  position: relative;
  flex: 1;
  overflow: hidden;
}
.hero-right-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.06);
  transition: transform 9s ease;
}
.hero:hover .hero-right-img { transform: scale(1); }
.hero-right-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(13,13,13,0.5) 0%,
    rgba(13,13,13,0.15) 40%,
    rgba(13,13,13,0.0) 100%
  );
  z-index: 1;
}

/* Gold accent line */
.hero-accent-line {
  width: 48px;
  height: 1.5px;
  background: var(--gold);
  margin-bottom: 28px;
}

.hero-eyebrow {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 4.5vw, 4.8rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 28px;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  max-width: 440px;
  line-height: 1.85;
  margin-bottom: 44px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

/* Stats bar */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 32px;
}
.stat {
  display: flex;
  flex-direction: column;
  padding: 0 28px 0 0;
  margin-right: 28px;
  position: relative;
}
.stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 28px;
  background: rgba(255,255,255,0.15);
}
.stat-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1;
}
.stat-num sup { font-size: 0.9rem; color: var(--gold); vertical-align: super; }
.stat-label {
  font-family: var(--font-display);
  font-size: 9.5px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.42);
  margin-top: 5px;
}

/* Floating badge on hero right panel */
.hero-badge {
  position: absolute;
  bottom: 48px;
  left: 40px;
  z-index: 3;
  background: rgba(13,13,13,0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(201,168,76,0.35);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 220px;
}
.hero-badge-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.hero-badge-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
}
.hero-badge-text span {
  font-family: var(--font-display);
  font-size: 10px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.5px;
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  right: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 5;
}
.hero-scroll-hint span {
  font-family: var(--font-display);
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.scroll-line {
  width: 1px;
  height: 56px;
  background: rgba(255,255,255,0.15);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0; right: 0;
  height: 100%;
  background: var(--gold);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { top: -100%; }
  100% { top: 100%; }
}

/* ============================================================
   TRUST BAR (thin strip under hero)
   ============================================================ */
.trust-bar {
  background: var(--gold-pale);
  border-bottom: 1px solid var(--gold-pale2);
  padding: 18px 0;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 500;
  color: var(--charcoal);
  letter-spacing: 0.3px;
}
.trust-item svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
  flex-shrink: 0;
}
.trust-sep {
  width: 1px;
  height: 20px;
  background: var(--border);
}

/* ============================================================
   BRAND INTRO
   ============================================================ */
.brand-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: start;
}
.brand-intro-text { padding-right: 20px; }
.brand-intro-text .section-title { margin-bottom: 28px; }

.brand-intro-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.intro-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.intro-card:hover {
  background: var(--white);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
  border-color: var(--gold-pale2);
}
.intro-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.intro-card-icon svg { width: 20px; height: 20px; color: var(--gold-dark); }
.intro-card h3 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.intro-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; }

/* ============================================================
   PRODUCT CATEGORIES
   ============================================================ */
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.category-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  text-decoration: none;
}
.category-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.cat-img-wrap {
  height: 260px;
  overflow: hidden;
  background: var(--off-white);
}
.cat-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: var(--transition-slow);
}
.category-card:hover .cat-img-wrap img { transform: scale(1.07); }
.cat-info {
  padding: 26px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.cat-info h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.cat-info p { font-size: 0.95rem; color: #444; line-height: 1.7; margin-bottom: 16px; flex: 1; }
.cat-link {
  font-family: var(--font-display);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.category-card:hover .cat-link { gap: 10px; color: var(--gold-dark); }

.cat-custom {
  background: linear-gradient(145deg, #131313 0%, #1a1410 100%);
  border: 1px solid rgba(201,168,76,0.2);
  display: flex;
  align-items: center;
}
.cat-custom-inner { padding: 44px 32px; }
.cat-custom-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--gold-light);
  margin-bottom: 20px;
}
.cat-custom h3 {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  color: var(--white);
  margin-bottom: 12px;
}
.cat-custom p { color: rgba(255,255,255,0.58); font-size: 0.92rem; margin-bottom: 22px; line-height: 1.7; }
.cat-custom .cat-link { color: var(--gold-light); }

/* ============================================================
   MATERIALS BANNER
   ============================================================ */
.materials-list {
  display: flex;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
  margin-top: 52px;
}
.material-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  color: var(--charcoal);
  letter-spacing: 0.3px;
}
.material-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  border: 2px solid rgba(255,255,255,0.7);
}
.material-dot.brass     { background: linear-gradient(135deg, #c8962a, #e8b84b); }
.material-dot.zinc      { background: linear-gradient(135deg, #8a9ba8, #b0c0cc); }
.material-dot.aluminium { background: linear-gradient(135deg, #c0c0c0, #e8e8e8); }
.material-dot.iron      { background: linear-gradient(135deg, #5a5a5a, #7a7a7a); }
.material-dot.mongery   { background: linear-gradient(135deg, #3a3a3a, #555555); }

/* ============================================================
   FINISHES STRIP
   ============================================================ */
.finishes-strip-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: center;
}
.finishes-swatch-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.swatch {
  aspect-ratio: 1;
  border-radius: 50%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 8px;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.swatch:hover { transform: scale(1.15); box-shadow: 0 10px 28px rgba(0,0,0,0.5); }
.swatch span {
  font-family: var(--font-display);
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.9);
  text-shadow: 0 1px 4px rgba(0,0,0,0.7);
}
.swatch.pb, .finish-swatch-lg.pb     { background: radial-gradient(circle at 35% 35%, #ffd94a 0%, #dbac18 55%, #825e00 100%); }
.swatch.bp, .finish-swatch-lg.bp     { background: radial-gradient(circle at 35% 35%, #d4a337 0%, #ac7c18 55%, #593e00 100%); }
.swatch.rg, .finish-swatch-lg.rg     { background: radial-gradient(circle at 35% 35%, #f1a391 0%, #cc725d 55%, #7e3828 100%); }
.swatch.scp, .finish-swatch-lg.scp   { background: radial-gradient(circle at 35% 35%, #e1e7ec 0%, #a4b3c1 55%, #5a6673 100%); }
.swatch.pcp, .finish-swatch-lg.pcp   { background: radial-gradient(circle at 35% 35%, #ffffff 0%, #cfdae5 55%, #7b8c9d 100%); }
.swatch.ss, .finish-swatch-lg.ss     { background: radial-gradient(circle at 35% 35%, #f0f0f0 0%, #b8b8b8 55%, #666666 100%); }
.swatch.bn, .finish-swatch-lg.bn     { background: radial-gradient(circle at 35% 35%, #dfdace 0%, #a39c90 55%, #58534b 100%); }
.swatch.ant, .finish-swatch-lg.ant   { background: radial-gradient(circle at 35% 35%, #e1be57 0%, #a07d1f 55%, #543d00 100%); }
.swatch.ma, .finish-swatch-lg.ma     { background: radial-gradient(circle at 35% 35%, #b28a5b 0%, #7c5831 55%, #3c250f 100%); }
.swatch.ibma, .finish-swatch-lg.ibma { background: radial-gradient(circle at 35% 35%, #5e5e5e 0%, #2f2f2f 55%, #0f0f0f 100%); }
.swatch.bb, .finish-swatch-lg.bb     { background: radial-gradient(circle at 35% 35%, #4a423f 0%, #221c1a 55%, #070505 100%); }
.swatch.chr, .finish-swatch-lg.chr   { background: radial-gradient(circle at 35% 35%, #f4f9fd 0%, #c4d7e7 55%, #6e90ad 100%); }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.why-card {
  padding: 38px 30px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2.5px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}
.why-card:hover::before { transform: scaleX(1); }
.why-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-5px);
  border-color: var(--gold-pale2);
}
.why-num {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--gold-pale2);
  line-height: 1;
  margin-bottom: 16px;
  transition: var(--transition);
}
.why-card:hover .why-num { color: rgba(201,168,76,0.15); }
.why-card h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 12px;
}
.why-card p { font-size: 0.95rem; color: #444; line-height: 1.8; }

/* ============================================================
   FEATURED PRODUCTS (homepage)
   ============================================================ */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.featured-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  transition: var(--transition);
  cursor: pointer;
}
.featured-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.featured-img-wrap {
  height: 220px;
  overflow: hidden;
  background: var(--off-white);
}
.featured-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: var(--transition-slow);
}
.featured-card:hover .featured-img-wrap img { transform: scale(1.08); }
.featured-info { padding: 18px 20px; }
.featured-code {
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 5px;
}
.featured-info h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 6px;
}
.featured-info p { font-size: 0.92rem; color: #444; line-height: 1.65; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: linear-gradient(135deg, var(--near-black) 0%, #1a1208 100%);
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(201,168,76,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
  position: relative;
}
.cta-band-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 3vw, 2.8rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 10px;
}
.cta-band-text h2 em { font-style: italic; color: var(--gold-light); }
.cta-band-text p { color: rgba(255,255,255,0.55); font-size: 1rem; }
.cta-band-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #080808;
  color: rgba(255,255,255,0.65);
  padding-top: 80px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.5fr;
  gap: 52px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-logo {
  height: auto;
  width: 140px;
  margin-bottom: 18px;
  opacity: 0.92;
}
.footer-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--gold);
  font-size: 0.93rem;
  margin-bottom: 8px;
}
.footer-sub {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.38);
  line-height: 1.65;
}
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 22px;
}
.footer-col ul li { margin-bottom: 11px; }
.footer-col ul li a {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--gold-light); padding-left: 4px; }
.footer-col address p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
}
.footer-col address strong { color: rgba(255,255,255,0.88); font-size: 0.92rem; }
.footer-col address a { color: rgba(255,255,255,0.48); transition: var(--transition); }
.footer-col address a:hover { color: var(--gold-light); }
.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.24);
  flex-wrap: wrap;
  gap: 12px;
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: var(--near-black);
  padding: 148px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(201,168,76,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.4), transparent);
}
.page-hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.page-hero-label {
  font-family: var(--font-display);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 22px;
}
.page-hero-label::before,
.page-hero-label::after {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}
.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.12;
  max-width: 800px;
  margin: 0 auto;
}
.page-hero h1 em { font-style: italic; color: var(--gold-light); }
.page-hero p {
  color: rgba(255,255,255,0.58);
  font-size: 1.05rem;
  margin-top: 22px;
  max-width: 680px;
  line-height: 1.8;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: start;
}
.about-quote {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-style: italic;
  color: var(--gold-dark);
  border-left: 3px solid var(--gold);
  padding-left: 24px;
  margin: 32px 0;
  line-height: 1.55;
}
.about-numbers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 16px;
}
.about-num-card {
  background: var(--near-black);
  border-radius: var(--radius);
  padding: 32px 22px;
  text-align: center;
  border: 1px solid rgba(201,168,76,0.15);
}
.about-num-card .big-num {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--gold-light);
  display: block;
  margin-bottom: 4px;
}
.about-num-card span:last-child {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
}

.factories-section { margin-top: 88px; }
.factories-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}
.factory-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 38px 32px;
  transition: var(--transition);
}
.factory-card:hover { box-shadow: var(--shadow); border-color: var(--gold); }
.factory-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-pale);
  color: var(--gold-dark);
  border-radius: 100px;
  padding: 6px 16px;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
  border: 1px solid var(--gold-pale2);
}
.factory-card h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--charcoal);
  margin-bottom: 12px;
}
.factory-card p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.75; }

.who-we-work-section { margin-top: 88px; }
.ww-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 40px;
}
.ww-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 18px;
  text-align: center;
  transition: var(--transition);
}
.ww-card:hover { background: var(--gold-pale); border-color: var(--gold); box-shadow: var(--shadow-sm); }
.ww-card-icon { font-size: 1.7rem; margin-bottom: 12px; }
.ww-card h4 {
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--charcoal);
}

/* ============================================================
   PRODUCTS PAGE
   ============================================================ */
.product-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.product-section-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--charcoal);
}
.product-section-header h2 em { color: var(--gold); font-style: italic; }
.product-section-header span { font-size: 0.88rem; color: var(--text-muted); }

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  transition: var(--transition);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.product-img-wrap {
  height: 280px;
  overflow: hidden;
  background: var(--off-white);
}
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: var(--transition-slow);
}
.product-card:hover .product-img-wrap img { transform: scale(1.07); }
.product-info { padding: 24px; }
.product-code {
  font-family: var(--font-display);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.product-info h3 {
  font-family: var(--font-serif);
  font-size: 1.28rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.product-info p { font-size: 0.95rem; color: #444; line-height: 1.7; }
.product-finishes { margin-top: 14px; display: flex; gap: 6px; flex-wrap: wrap; }
.finish-tag {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 3px 11px;
  font-size: 10px;
  color: var(--text-muted);
  font-family: var(--font-display);
}

/* Products nav strip */
.products-nav-strip {
  position: sticky;
  top: 73px;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.products-nav-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  padding: 14px 0;
}
.products-nav-inner .finish-tag {
  padding: 7px 18px;
  font-size: 11px;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.products-nav-inner .finish-tag:hover {
  background: var(--gold-pale);
  border-color: var(--gold);
  color: var(--gold-dark);
}

/* ============================================================
   FINISHES PAGE
   ============================================================ */
.finishes-full-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.finish-card {
  text-align: center;
  padding: 28px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.finish-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--gold);
}
.finish-swatch-lg {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin: 0 auto 20px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 12px;
}
.finish-swatch-lg span {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--white);
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
  pointer-events: none;
}
.finish-card:hover .finish-swatch-lg { transform: scale(1.1); }
.finish-code {
  font-family: var(--font-display);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.finish-card h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.finish-card p { font-size: 0.84rem; color: var(--text-muted); line-height: 1.65; }

/* ============================================================
   CUSTOM ORDERS PAGE
   ============================================================ */
.custom-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.custom-steps { margin-top: 48px; }
.custom-step {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
}
.step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--near-black);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.step-body h4 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 6px;
}
.step-body p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }

.custom-form-wrap {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px;
}
.custom-form-wrap h3 {
  font-family: var(--font-serif);
  font-size: 1.9rem;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.custom-form-wrap > p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 32px; }

/* ============================================================
   CONTACT / FORM
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.contact-info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
}
.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--gold-pale);
  border: 1px solid var(--gold-pale2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-info-item h4 {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 6px;
}
.contact-info-item p, .contact-info-item a {
  font-size: 0.93rem;
  color: var(--text-body);
  line-height: 1.7;
}
.contact-info-item a:hover { color: var(--gold); }

/* ============================================================
   FORM STYLES
   ============================================================ */
.form { width: 100%; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.93rem;
  color: var(--text-body);
  background: var(--white);
  transition: var(--transition);
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-group select { cursor: pointer; }
.form-note { font-size: 0.78rem; color: var(--text-muted); margin-top: 4px; }

/* ============================================================
   WHY INDIA PAGE
   ============================================================ */
.india-advantages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.india-card {
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.india-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); border-color: var(--gold); }
.india-card-icon { font-size: 2rem; margin-bottom: 16px; }
.india-card h3 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 10px;
}
.india-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.75; }

.aligarh-fact {
  background: linear-gradient(135deg, var(--near-black) 0%, #16100a 100%);
  border-radius: var(--radius-xl);
  padding: 80px;
  margin: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.15);
}
.aligarh-fact::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.aligarh-fact h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
}
.aligarh-fact h2 em { color: var(--gold-light); }
.aligarh-fact p {
  color: rgba(255,255,255,0.58);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.85;
  position: relative;
}

/* ============================================================
   FAQ PAGE
   ============================================================ */
.faq-group { margin-bottom: 56px; }
.faq-group-title {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--gold-pale2);
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  color: var(--charcoal);
  cursor: pointer;
  text-align: left;
  transition: var(--transition);
}
.faq-question:hover { color: var(--gold); }
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 300;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: var(--transition);
  line-height: 1;
}
.faq-question[aria-expanded="true"] .faq-icon {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--near-black);
  transform: rotate(45deg);
}
.faq-question[aria-expanded="true"] { color: var(--gold); }
.faq-answer {
  display: none;
  padding: 0 0 20px 0;
  font-size: 0.93rem;
  color: var(--text-body);
  line-height: 1.85;
}
.faq-answer.open { display: block; animation: fadeDown 0.25s ease; }
.faq-answer a { color: var(--gold); text-decoration: underline; }
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   WHATSAPP FLOATING BUTTON
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: var(--white);
  border-radius: 50px;
  padding: 14px 20px 14px 16px;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  transition: var(--transition);
  text-decoration: none;
}
.whatsapp-float:hover {
  background: #1da851;
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(37,211,102,0.5);
}
.whatsapp-float svg { width: 24px; height: 24px; flex-shrink: 0; }
.wa-label {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}
@keyframes waPulse {
  0%   { transform: scale(1); box-shadow: 0 6px 24px rgba(37,211,102,0.4); }
  40%  { transform: scale(1.12); box-shadow: 0 10px 36px rgba(37,211,102,0.6); }
  70%  { transform: scale(0.96); box-shadow: 0 6px 20px rgba(37,211,102,0.3); }
  100% { transform: scale(1); box-shadow: 0 6px 24px rgba(37,211,102,0.4); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
  .hero-left { padding: 140px 48px 80px; flex: 0 0 55%; }
  .featured-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
  .brand-intro-grid,
  .finishes-strip-inner,
  .about-story,
  .custom-content,
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .category-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .ww-grid { grid-template-columns: 1fr 1fr; }
  .india-advantages { grid-template-columns: 1fr 1fr; }
  .finishes-full-grid { grid-template-columns: repeat(3, 1fr); }
  .brand-intro-text { padding-right: 0; }
}

@media (max-width: 900px) {
  /* Stack hero vertically on tablet */
  .hero {
    flex-direction: column;
    min-height: auto;
  }
  .hero-left {
    flex: none;
    padding: 120px 32px 60px;
  }
  .hero-left::after { display: none; }
  .hero-right {
    height: 50vw;
    min-height: 300px;
    flex: none;
  }
  .hero-badge { display: none; }
  .hero-scroll-hint { display: none; }
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }
  /* MOBILE: Much larger, high-contrast text */
  .section-title { font-size: 2rem !important; }
  .section-desc { font-size: 1rem !important; color: #444 !important; }
  .body-text { font-size: 1rem !important; color: #2e2e2e !important; }
  .cat-info h3 { font-size: 1.25rem !important; }
  .cat-info p { font-size: 0.95rem !important; color: #444 !important; }
  .product-info h3 { font-size: 1.2rem !important; }
  .product-info p { font-size: 0.95rem !important; color: #444 !important; }
  .why-card h3 { font-size: 1.05rem !important; }
  .why-card p { font-size: 0.95rem !important; color: #444 !important; }
  .intro-card h3 { font-size: 1rem !important; }
  .intro-card p { font-size: 0.95rem !important; color: #444 !important; }
  .featured-info h3 { font-size: 1.1rem !important; }
  .featured-info p { font-size: 0.92rem !important; }
  .trust-item { font-size: 0.9rem !important; font-weight: 600 !important; }
  .footer-col ul li a { font-size: 1rem !important; color: rgba(255,255,255,0.75) !important; }
  .footer-col address p { font-size: 0.95rem !important; color: rgba(255,255,255,0.7) !important; }
  .hero-sub { font-size: 1.05rem !important; color: rgba(255,255,255,0.82) !important; }
  .hero-title { font-size: 2.6rem !important; }
  .page-hero h1 { font-size: 2.2rem !important; }
  .page-hero p { font-size: 1rem !important; color: rgba(255,255,255,0.75) !important; }
  .stat-num { font-size: 1.8rem !important; }
  .stat-label { font-size: 10px !important; letter-spacing: 1px !important; }
  .nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
  }
  .nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
    border-radius: 2px;
  }
  .navbar.scrolled .nav-toggle span { background: var(--charcoal); }
  .nav-links {
    position: fixed;
    inset: 0;
    background: var(--near-black);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    transform: translateX(100%);
    transition: var(--transition);
    z-index: 1000;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { color: var(--white) !important; font-size: 17px; }
  .hero-left { padding: 100px 24px 48px; }
  .hero-stats { flex-wrap: wrap; gap: 20px; border-top-color: rgba(255,255,255,0.08); }
  .stat::after { display: none; }
  .stat { padding: 0; margin: 0; }
  .category-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .cta-band-inner { flex-direction: column; text-align: center; }
  .cta-band-actions { justify-content: center; }
  .brand-intro-cards { grid-template-columns: 1fr; }
  .factories-grid { grid-template-columns: 1fr; }
  .about-numbers { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .finishes-full-grid { grid-template-columns: repeat(2, 1fr); }
  .india-advantages { grid-template-columns: 1fr; }
  .ww-grid { grid-template-columns: 1fr 1fr; }
  .custom-form-wrap { padding: 28px 20px; }
  .aligarh-fact { padding: 48px 24px; }
  .product-section-header { flex-direction: column; align-items: flex-start; gap: 8px; }
  .featured-grid { grid-template-columns: 1fr 1fr; }
  .trust-bar-inner { gap: 20px; }
  .trust-sep { display: none; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .about-numbers { grid-template-columns: 1fr; }
  .ww-grid { grid-template-columns: 1fr; }
  .finishes-full-grid { grid-template-columns: 1fr 1fr; }
  .materials-list { gap: 24px; }
  .featured-grid { grid-template-columns: 1fr; }
  .whatsapp-float { padding: 14px; border-radius: 50%; }
  .wa-label { display: none; }
}

/* Why India inline grids */
@media (max-width: 1024px) {
  .why-india-intro,
  .europe-section { grid-template-columns: 1fr !important; }
}
