/* ============================================
   DMG MUEBLES — Premium Design System
   ============================================ */

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

/* ── Variables ── */
:root {
  --white:       #FFFFFF;
  --off-white:   #FAFAF8;
  --cream:       #F4EFE6;
  --black:       #0A0A0A;
  --dark:        #141414;
  --dark-2:      #1E1E1E;
  --gray:        #6B6B6B;
  --gray-light:  #E0DCDA;
  --roble:       #8B6F47;
  --roble-light: #C4A882;
  --roble-dark:  #6B4F2E;
  --gold:        #C9A840;
  --gold-light:  #E4C870;
  --gold-dark:   #9A7828;
  --wa-green:    #25D366;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --ease:        cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition:  0.4s var(--ease);

  --shadow-xs:   0 1px 4px rgba(0,0,0,0.06);
  --shadow-sm:   0 4px 16px rgba(0,0,0,0.08);
  --shadow-md:   0 12px 40px rgba(0,0,0,0.12);
  --shadow-lg:   0 32px 80px rgba(0,0,0,0.16);

  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --radius-xl:   32px;

  --container:   1200px;
  --gap:         clamp(24px, 4vw, 64px);
}

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--off-white);
  color: var(--dark);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ── Layout ── */
.container {
  width: min(var(--container), 100%);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 80px);
}
.section {
  padding-block: clamp(72px, 10vw, 120px);
}
.section-dark {
  background: var(--dark);
  color: var(--white);
}
.section-cream {
  background: var(--cream);
}

/* ── Typography ── */
.label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.label-light { color: var(--gold-light); }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.display {
  font-size: clamp(56px, 10vw, 128px);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.03em;
}
.heading-xl { font-size: clamp(36px, 5vw, 64px); }
.heading-lg { font-size: clamp(28px, 4vw, 48px); }
.heading-md { font-size: clamp(22px, 3vw, 32px); }
.heading-sm { font-size: clamp(18px, 2.5vw, 24px); }

.body-lg { font-size: clamp(16px, 1.5vw, 18px); line-height: 1.7; color: var(--gray); }
.body-md { font-size: 15px; line-height: 1.7; color: var(--gray); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-dark {
  background: var(--black);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--dark-2);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.4);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-2px);
}
.btn-outline-dark {
  background: transparent;
  color: var(--dark);
  border: 1px solid var(--gray-light);
}
.btn-outline-dark:hover {
  border-color: var(--dark);
  transform: translateY(-2px);
}
.btn-wa {
  background: var(--wa-green);
  color: var(--white);
}
.btn-wa:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.35);
}
.btn-roble {
  background: var(--roble);
  color: var(--white);
}
.btn-roble:hover {
  background: var(--roble-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-gold {
  background: var(--gold);
  color: var(--dark);
}
.btn-gold:hover {
  background: var(--gold-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,64,0.4);
}
.btn-phone {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.35);
  font-size: 13px;
  letter-spacing: 0.02em;
}
.btn-phone:hover {
  border-color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.08);
  transform: translateY(-1px);
}
.btn-lg { padding: 18px 40px; font-size: 15px; }
.btn-sm { padding: 10px 20px; font-size: 13px; }

/* ── Header ── */
.header {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 1000;
  transition: var(--transition);
}
.header.scrolled {
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 20px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo img {
  height: 40px;
  width: auto;
}
.logo-text {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.02em;
}
.nav {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-link {
  font-size: 11px;
  font-weight: 400;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-link:hover { color: var(--white); }
.nav-cta { margin-left: 8px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: var(--transition);
}
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
.mobile-nav.open { display: flex; }
.mobile-nav-link {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 400;
  color: var(--white);
  opacity: 0.8;
  transition: opacity 0.2s;
}
.mobile-nav-link:hover { opacity: 1; }
.mobile-nav-close {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 32px;
  color: var(--white);
  padding: 8px;
}

/* ── Hero ── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
  transform: scale(1.05);
  transition: transform 8s ease-out;
}
.hero-bg.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.42) 45%, rgba(0,0,0,0.12) 100%),
    linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.0) 55%);
}
.hero-content {
  position: relative;
  width: 100%;
  padding-bottom: clamp(60px, 8vw, 100px);
}
.hero-content .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.hero-title {
  color: var(--white);
  max-width: 800px;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-subtitle {
  font-size: clamp(14px, 1.4vw, 16px);
  color: rgba(255,255,255,0.6);
  max-width: 420px;
  letter-spacing: 0.02em;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  white-space: nowrap;
}
.hero-scroll-mouse {
  width: 22px;
  height: 34px;
  border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: 11px;
  position: relative;
  overflow: hidden;
}
.hero-scroll-mouse::after {
  content: '';
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 7px;
  background: rgba(255,255,255,0.7);
  border-radius: 1px;
  animation: scrollDot 2s ease-in-out infinite;
}
@keyframes scrollDot {
  0%   { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(12px); }
}

/* ── Benefits ── */
.benefits {
  background: var(--dark);
  padding-block: clamp(40px, 5vw, 64px);
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: clamp(24px, 3vw, 48px);
}
.benefit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}
.benefit-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
}
.benefit-icon svg {
  width: 28px;
  height: 28px;
  stroke-width: 1.5;
}
.benefit-label {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}
.benefit-label strong {
  display: block;
  font-size: 14px;
  color: var(--white);
  font-weight: 500;
  margin-bottom: 2px;
}

/* ── Catalog ── */
.catalog-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(40px, 5vw, 64px);
  flex-wrap: wrap;
}
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-xs);
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.product-card-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.product-card:hover .product-card-img img {
  transform: scale(1.06);
}
.product-card-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--white);
  color: var(--dark);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 5px 12px;
  border-radius: 100px;
}
.product-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.product-card-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2;
}
.product-card-desc {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
}
.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--gray-light);
  flex-wrap: wrap;
  gap: 12px;
}
.product-price {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--dark);
}
.product-price span {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  color: var(--gray);
  letter-spacing: 0.04em;
}
.price-note {
  display: block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  color: var(--gold-dark);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 2px;
}
.hero-promo {
  margin-bottom: 28px;
  margin-top: -4px;
}
.hero-promo-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(201,168,64,0.12);
  border: 1px solid rgba(201,168,64,0.35);
  color: var(--gold-light);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 6px 14px;
  border-radius: 40px;
}

/* Featured card (spans 2 columns) */
.product-card-featured {
  grid-column: span 2;
}
.product-card-featured .product-card-img {
  aspect-ratio: 16/9;
}

/* ── Process ── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--gray-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: clamp(40px, 5vw, 64px);
}
.process-step {
  background: var(--white);
  padding: clamp(28px, 3vw, 48px) clamp(20px, 2.5vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.process-number {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 300;
  color: var(--gray-light);
  line-height: 1;
}
.process-step-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
}
.process-step-text {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
}
.process-icon {
  width: 40px;
  height: 40px;
  color: var(--roble);
}

/* ── Gallery ── */
.gallery-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(32px, 4vw, 56px);
  flex-wrap: wrap;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 12px;
}
.gallery-item {
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: zoom-in;
  position: relative;
}
.gallery-item:nth-child(1) { grid-column: span 2; }
.gallery-item:nth-child(4) { grid-column: span 2; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1;
  transition: transform 0.6s var(--ease);
}
.gallery-item:nth-child(1) img,
.gallery-item:nth-child(4) img {
  aspect-ratio: 16/9;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
.gallery-item:hover .gallery-item-overlay {
  background: rgba(0,0,0,0.25);
}
.gallery-zoom-icon {
  opacity: 0;
  color: white;
  transform: scale(0.8);
  transition: all 0.3s;
}
.gallery-item:hover .gallery-zoom-icon {
  opacity: 1;
  transform: scale(1);
}

/* ── Testimonials ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: clamp(40px, 5vw, 64px);
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: var(--shadow-xs);
  transition: var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.stars {
  display: flex;
  gap: 4px;
  color: #F59E0B;
}
.testimonial-text {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--dark);
  font-style: italic;
  flex: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-light);
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--gold-dark);
}
.testimonial-name {
  font-size: 14px;
  font-weight: 500;
}
.testimonial-location {
  font-size: 12px;
  color: var(--gray);
}

/* ── Stats ── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: clamp(40px, 5vw, 64px);
}
.stat-item {
  background: var(--dark-2);
  padding: clamp(28px, 3vw, 48px) clamp(20px, 2.5vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 300;
  color: var(--white);
  line-height: 1;
}
.stat-number sup {
  font-size: 0.5em;
  vertical-align: super;
}
.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.4;
}

/* ── Colors Section ── */
.colors-intro {
  max-width: 560px;
  margin-bottom: clamp(40px, 5vw, 64px);
}
.colors-grid {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.color-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: default;
}
.color-swatch {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s;
}
.color-chip:hover .color-swatch { transform: scale(1.08); }
.color-name {
  font-size: 11px;
  color: var(--gray);
  text-align: center;
  line-height: 1.3;
}

/* ── Final CTA ── */
.cta-final {
  position: relative;
  padding-block: clamp(80px, 12vw, 140px);
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  filter: brightness(0.25);
}
.cta-content {
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.cta-title {
  color: var(--white);
  max-width: 680px;
}
.cta-subtitle {
  font-size: clamp(15px, 1.5vw, 17px);
  color: rgba(255,255,255,0.65);
  max-width: 480px;
  line-height: 1.7;
}
.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}

/* ── Footer ── */
.footer {
  background: var(--black);
  color: var(--white);
  padding-block: clamp(48px, 6vw, 80px) 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(32px, 4vw, 64px);
  padding-bottom: clamp(40px, 5vw, 64px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-logo img { height: 36px; }
.footer-logo-text {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--white);
}
.footer-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  max-width: 280px;
}
.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}
.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.social-link:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
  transform: translateY(-2px);
}
.footer-col-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-link {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer-link:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}
.footer-legal {
  display: flex;
  gap: 20px;
}
.footer-legal a {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  transition: color 0.2s;
}
.footer-legal a:hover { color: rgba(255,255,255,0.6); }

/* ── WhatsApp Float ── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(12,12,12,0.95);
  color: var(--white);
  border-radius: 100px;
  padding: 10px 20px 10px 10px;
  border: 1px solid rgba(255,255,255,0.1);
  font-family: var(--font-body);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  transition: var(--transition);
  animation: waPulse 3s ease-in-out infinite;
  white-space: nowrap;
  backdrop-filter: blur(12px);
}
.wa-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
  animation: none;
  border-color: rgba(255,255,255,0.2);
}
.wa-float-icon {
  width: 40px;
  height: 40px;
  background: var(--wa-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.wa-float-icon svg { width: 20px; height: 20px; fill: white; }
.wa-float-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.wa-float-title {
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  font-weight: 400;
}
.wa-float-sub {
  font-size: 13px;
  color: var(--white);
  font-weight: 500;
}
@keyframes waPulse {
  0%, 100% { box-shadow: 0 8px 32px rgba(0,0,0,0.4); }
  50%       { box-shadow: 0 8px 40px rgba(0,0,0,0.55), 0 0 0 8px rgba(255,255,255,0.04); }
}

/* ── Lightbox ── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.92);
  align-items: center;
  justify-content: center;
  padding: 24px;
  backdrop-filter: blur(8px);
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 32px;
  color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  cursor: pointer;
  font-family: sans-serif;
  line-height: 1;
}
.lightbox-close:hover {
  background: rgba(255,255,255,0.2);
  color: white;
}

/* ── Hero Badges ── */
.hero-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 4px;
}
.hero-badge {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.9);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 5px 12px;
  border-radius: 100px;
  backdrop-filter: blur(4px);
}

/* ── Brand Story ── */
.brand-story { background: var(--off-white); }
.brand-story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.brand-story-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: visible;
}
.brand-story-image img {
  width: 100%;
  border-radius: var(--radius-xl);
  aspect-ratio: 4/5;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}
.brand-story-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--dark);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.brand-story-badge-number {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 400;
  line-height: 1;
  color: var(--gold-light);
}
.brand-story-badge-text {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  line-height: 1.4;
}

/* ── Product Details Tags ── */
.product-details {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 8px 0 4px;
}
.product-detail {
  font-size: 11px;
  color: var(--gray);
  background: var(--off-white);
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid var(--gray-light);
  white-space: nowrap;
}

/* ── Why DMG Grid ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow-xs);
  transition: var(--transition);
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.why-icon {
  font-size: 32px;
  line-height: 1;
}
.why-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
}
.why-text {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.65;
}

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

/* ── Responsive ── */
/* ── Responsive ── */
@media (max-width: 1024px) {
  .catalog-grid { grid-template-columns: repeat(2, 1fr); }
  .product-card-featured { grid-column: span 1; }
  .product-card-featured .product-card-img { aspect-ratio: 4/3; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .brand-story-inner { grid-template-columns: 1fr; }
  .brand-story-image { display: none; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .hamburger { display: flex; }
  .catalog-grid { grid-template-columns: 1fr; }
  .product-card-featured { grid-column: span 1; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(4) { grid-column: span 2; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; padding: 16px 24px; font-size: 15px; }
  .hero-scroll { display: none; }
  .catalog-header { flex-direction: column; align-items: flex-start; }
  .why-grid { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: column; align-items: stretch; }
  .cta-actions .btn { justify-content: center; }
  .hero-badges { margin-bottom: 8px; }
  .wa-float { padding: 10px; border-radius: 50%; bottom: 20px; right: 20px; }
  .wa-float-text { display: none; }
  .wa-float-icon { width: 46px; height: 46px; }
  .wa-float-icon svg { width: 22px; height: 22px; }
  .product-details { display: none; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(4) { grid-column: span 1; }
  .gallery-item img,
  .gallery-item:nth-child(1) img,
  .gallery-item:nth-child(4) img { aspect-ratio: 4/3; }
  .stats-grid { grid-template-columns: 1fr; }
  .colors-grid { gap: 12px; }
  .color-swatch { width: 64px; height: 64px; }
  .process-grid { gap: 0; }
}
