/* New Cell RG — Black & Gold theme */
:root {
  --bg: #050505;
  --bg-2: #0c0c0c;
  --bg-3: #141414;
  --surface: #1a1612;
  --gold: #d4af37;
  --gold-2: #f5d77a;
  --gold-3: #b8902a;
  --gold-soft: rgba(212, 175, 55, 0.15);
  --text: #f3ece0;
  --muted: #9a9285;
  --line: rgba(212, 175, 55, 0.18);
  --grad-gold: linear-gradient(135deg, #b8902a 0%, #f5d77a 45%, #d4af37 100%);
  --grad-dark: linear-gradient(180deg, #050505 0%, #0c0c0c 100%);
  --shadow-gold: 0 20px 60px -20px rgba(212, 175, 55, 0.35);
}

* { box-sizing: border-box; }

html, body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

h1, h2, h3, h4, .display, .brand-serif {
  font-family: 'Cormorant Garamond', 'Playfair Display', serif;
  letter-spacing: 0.01em;
  font-weight: 500;
}

.eyebrow {
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.72rem;
  color: var(--gold);
  font-weight: 500;
}

.text-gold { color: var(--gold) !important; }
.text-muted-2 { color: var(--muted) !important; }
.bg-dark-1 { background: var(--bg); }
.bg-dark-2 { background: var(--bg-2); }
.bg-dark-3 { background: var(--bg-3); }

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

.gold-divider {
  width: 64px;
  height: 1px;
  background: var(--grad-gold);
  margin: 1rem 0;
  display: inline-block;
}
.gold-divider.center { margin: 1rem auto; display: block; }

/* ============ NAVBAR ============ */
.navbar-custom {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: all 0.4s ease;
  background: transparent;
}
.navbar-custom.scrolled {
  background: rgba(5,5,5,0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--line);
}
.navbar-custom .brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.08em;
}
.navbar-custom .brand span { color: var(--text); }
.navbar-custom .nav-link {
  color: var(--text);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0.9rem;
  position: relative;
  transition: color 0.3s;
  font-weight: 400;
}
.navbar-custom .nav-link::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  width: 0; height: 1px; background: var(--gold);
  transition: width 0.4s ease;
}
.navbar-custom .nav-link:hover { color: var(--gold); }
.navbar-custom .nav-link:hover::after,
.navbar-custom .nav-link.active::after { width: 100%; }
.navbar-custom .nav-link.active { color: var(--gold); }

.btn-gold {
  background: var(--grad-gold);
  border: none;
  color: #0a0a0a;
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.78rem;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
  display: inline-block;
  text-decoration: none;
}
.btn-gold::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #f5d77a, #b8902a);
  opacity: 0; transition: opacity 0.4s;
}
.btn-gold span { position: relative; z-index: 1; }
.btn-gold:hover {
  color: #000;
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}
.btn-gold:hover::before { opacity: 1; }

.btn-ghost-gold {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 0.75rem 1.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.78rem;
  border-radius: 2px;
  transition: all 0.35s ease;
  display: inline-block;
  text-decoration: none;
}
.btn-ghost-gold:hover {
  background: var(--gold);
  color: #0a0a0a;
  box-shadow: var(--shadow-gold);
}

.navbar-toggler {
  background: transparent; border: 1px solid var(--gold);
  padding: 0.4rem 0.6rem;
}
.navbar-toggler:focus { box-shadow: none; }
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='%23d4af37' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* ============ HERO CAROUSEL ============ */
.hero-carousel {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
}
.hero-slide {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; z-index: 2; }
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.08);
  transition: transform 8s ease;
}
.hero-slide.active .hero-bg { transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(212,175,55,0.18), transparent 55%),
    linear-gradient(180deg, rgba(5,5,5,0.55) 0%, rgba(5,5,5,0.85) 100%);
}
.hero-content {
  position: relative; z-index: 3;
  text-align: center; max-width: 900px;
  padding: 0 1.5rem;
  transform: translateY(30px); opacity: 0;
  transition: all 1.4s 0.3s ease;
}
.hero-slide.active .hero-content { transform: translateY(0); opacity: 1; }
.hero-title {
  font-size: clamp(2.6rem, 6vw, 5.5rem);
  line-height: 1.05;
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.hero-sub {
  font-size: clamp(0.95rem, 1.3vw, 1.15rem);
  color: var(--muted);
  max-width: 620px; margin: 0 auto 2.2rem;
  line-height: 1.7;
}

.hero-indicators {
  position: absolute; bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 0.6rem; z-index: 5;
}
.hero-indicator {
  width: 38px; 
  height: 8px;
  background: rgba(255,255,255,0.2);
  cursor: pointer; transition: all 0.4s;
  border: none; padding: 0;
}
.hero-indicator.active { background: var(--gold); width: 60px; }

.hero-scroll {
  position: absolute; bottom: 2rem; right: 2rem;
  color: var(--gold); font-size: 0.7rem;
  letter-spacing: 0.3em; text-transform: uppercase;
  writing-mode: vertical-rl;
  z-index: 5;
  animation: bounceY 2.2s infinite;
}
@keyframes bounceY {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ============ SECTIONS ============ */
section { padding: 7rem 0; position: relative; }
.section-title {
  font-size: clamp(2rem, 3.6vw, 3.4rem);
  margin-bottom: 0.6rem;
}
.section-lead {
  color: var(--muted);
  max-width: 640px;
  line-height: 1.7;
}

/* Forma parte */
.join-section {
  background: var(--bg-2);
  position: relative; overflow: hidden;
}
.join-section::before {
  content: ""; position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--gold-soft), transparent 70%);
  pointer-events: none;
}
.join-card {
  background: linear-gradient(160deg, rgba(212,175,55,0.06), rgba(0,0,0,0));
  border: 1px solid var(--line);
  padding: 2.2rem;
  height: 100%;
  transition: all 0.4s ease;
  position: relative; overflow: hidden;
}
.join-card::before {
  content: ""; position: absolute;
  inset: 0;
  background: var(--grad-gold);
  opacity: 0; transition: opacity 0.4s;
  z-index: -1;
}
.join-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}
.join-card .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1rem;
}
.join-card h4 { font-size: 1.4rem; margin-bottom: 0.8rem; }
.join-card p { color: var(--muted); font-size: 0.92rem; line-height: 1.6; }

/* Products */
.product-card {
  position: relative;
  background: linear-gradient(180deg, #0e0e0e 0%, #050505 100%);
  border: 1px solid rgba(255,255,255,0.04);
  overflow: visible;
  transition: transform 0.6s cubic-bezier(.2,.8,.2,1), border-color 0.5s, box-shadow 0.6s;
  height: 100%;
  isolation: isolate;
  --mx: 50%; --my: 50%;
}
.product-card > * { position: relative; z-index: 2; }
.product-card .img-wrap { z-index: 2; }
/* Aura dorada magica difuminada (gaussiano fuerte) */
.product-card::before {
  content: ""; position: absolute;
  inset: -90px; border-radius: 50%;
  background:
    radial-gradient(closest-side,
      rgba(255,240,180,0.95) 0%,
      rgba(245,215,122,0.75) 25%,
      rgba(212,175,55,0.45) 50%,
      rgba(212,175,55,0.18) 70%,
      transparent 85%);
  filter: blur(55px);
  opacity: 0; transform: scale(0.6);
  transition: opacity 0.8s ease, transform 1s cubic-bezier(.2,.8,.2,1);
  z-index: 0; pointer-events: none;
  will-change: opacity, transform;
  mix-blend-mode: screen;
}
/* Halo interno suave que sigue al cursor */
.product-card::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(420px circle at var(--mx) var(--my), rgba(255,235,170,0.35), rgba(212,175,55,0.18) 30%, transparent 60%);
  opacity: 0; transition: opacity 0.6s;
  z-index: 1; pointer-events: none; mix-blend-mode: screen;
}
/* Halo extra animado (capa adicional pulsante) */
.product-card .halo-glow {
  position: absolute; inset: -50px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(245,217,122,0.55), rgba(212,175,55,0.2) 55%, transparent 80%);
  filter: blur(40px);
  opacity: 0; z-index: 0; pointer-events: none;
  transition: opacity 0.7s ease;
  mix-blend-mode: screen;
}
.product-card:hover {
  transform: translateY(-10px) scale(1.015);
  border-color: var(--gold);
  box-shadow:
    0 30px 80px -10px rgba(212,175,55,0.55),
    0 0 60px -10px rgba(245,217,122,0.45),
    0 0 0 1px rgba(212,175,55,0.45);
}
.product-card:hover::before { opacity: 1; transform: scale(1.25); }
.product-card:hover::after { opacity: 1; }
.product-card:hover .halo-glow {
  opacity: 1;
  animation: haloPulse 2.4s ease-in-out infinite;
}
.product-card:hover .body p{
  color: #000000;
}
@keyframes haloPulse {
  0%,100% { transform: scale(1); opacity: 0.85; }
  50%     { transform: scale(1.15); opacity: 1; }
}

/* Vegetacion botanica decorativa (PNG sobre las esquinas) */
.product-card .leaf {
  position: absolute;
  width: var(--leaf-size, 230px);
  height: var(--leaf-size, 230px);
  pointer-events: none;
  z-index: 4;
  opacity: 0;
  background-image: var(--leaf-img);
  background-repeat: no-repeat;
  background-size: contain;
  transform: var(--leaf-rest, scale(0.7));
  transform-origin: var(--leaf-origin, center);
  transition: opacity 0.7s ease, transform 0.9s cubic-bezier(.2,.8,.2,1);
  filter: drop-shadow(0 6px 14px rgba(0,0,0,0.55))
          drop-shadow(0 0 14px rgba(212,175,55,0.4));
}
/* Corner anchors — leaves hug the corner of the card */
.product-card .leaf.corner-tl { 
  top: -20px; 
  left: -20px;  
  background-position: top left;     
  --leaf-origin: top left; 
}

.product-card .leaf.corner-tr { 
  top: -20px; 
  right: -20px; 
  background-position: top right;    
  --leaf-origin: top right; 
}

.product-card .leaf.corner-bl { 
  bottom: -20px; 
  left: -20px;  
  background-position: bottom left;  
  --leaf-origin: bottom left; 
}

.product-card .leaf.corner-br { 
  bottom: -80px; 
  right: -60px; 
  z-index: 100;
  background-position: bottom right; 
  --leaf-origin: bottom right; 
}
/* Top/Bottom center banner (leaf-2) */
.product-card .leaf.edge-top,
.product-card .leaf.edge-bottom {
  /* left: 50%; */
  width: 100%;
  height: 130px;
  background-position: center;
  --leaf-origin: center;
}
.product-card .leaf.edge-top    { top: -55px; }
.product-card .leaf.edge-bottom { bottom: -85px; }

.product-card .leaf {
  transform: translate(0,0) var(--leaf-flip, none) scale(0.7);
}
.product-card:hover .leaf {
  opacity: 1;
  transform: translate(0,0) var(--leaf-flip, none) scale(1);
  animation: leafSway 5.4s ease-in-out infinite;
}
.product-card .leaf.edge-top {
  transform: translateX(-50%) var(--leaf-flip, none) scale(0.9);
}
.product-card:hover .leaf.edge-top {
  transform: translateX(-50%) var(--leaf-flip, none) scale(1);
}
.product-card .leaf.edge-bottom {
  transform: translateX(-50%) scaleY(-1) var(--leaf-flip, none) scale(0.9);
}
.product-card:hover .leaf.edge-bottom {
  transform: translateX(-50%) scaleY(-1) var(--leaf-flip, none) scale(1);
}

@keyframes leafSway {
  0%,100% { filter: drop-shadow(0 6px 14px rgba(0,0,0,0.55)) drop-shadow(0 0 14px rgba(212,175,55,0.4)); }
  50%     { filter: drop-shadow(0 8px 18px rgba(0,0,0,0.6))  drop-shadow(0 0 22px rgba(245,217,122,0.7)); }
}
.product-card .img-wrap {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: #000;
}
.product-card .img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s ease;
}
.product-card:hover .img-wrap img { transform: scale(1.08); }
.product-card .img-wrap::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.6));
}
.product-card .body { padding: 1.6rem; }
.product-card .tag {
  font-size: 0.7rem; letter-spacing: 0.3em;
  color: var(--gold); text-transform: uppercase;
}
.product-card h4 {
  font-size: 1.6rem; margin: 0.4rem 0 0.6rem;
}
.product-card p { color: var(--muted); font-size: 0.9rem; line-height: 1.6; }
.product-card .more {
  margin-top: 1rem; font-size: 0.78rem;
  color: var(--gold); text-decoration: none;
  letter-spacing: 0.22em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 0.5rem;
  transition: gap 0.3s;
}
.product-card .more:hover { gap: 0.9rem; }


/* Plan de crecimiento */
.plan-section {
  background:
    radial-gradient(ellipse at 80% 20%, rgba(212,175,55,0.08), transparent 50%),
    var(--bg);
}
.plan-step {
  position: relative;
  padding: 2rem 1.5rem;
  border-left: 1px solid var(--line);
  margin-bottom: 0;
  transition: all 0.5s cubic-bezier(.2,.8,.2,1);
  isolation: isolate;
  --mx: 50%; --my: 50%;
}
.plan-step::before {
  content: ""; position: absolute;
  left: -6px; top: 2.3rem;
  width: 11px; height: 11px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(212,175,55,0.15), 0 0 0 0 rgba(212,175,55,0.6);
  transition: all 0.4s;
  z-index: 3;
}
/* Halo dorado que aparece detras */
.plan-step::after {
  content: ""; position: absolute;
  inset: 0;
  background:
    radial-gradient(300px circle at var(--mx) var(--my), rgba(212,175,55,0.22), transparent 60%),
    linear-gradient(90deg, rgba(212,175,55,0.12), transparent 70%);
  opacity: 0; transform: translateX(-12px);
  transition: opacity 0.5s, transform 0.6s cubic-bezier(.2,.8,.2,1);
  z-index: -1; pointer-events: none;
}
.plan-step:hover {
  background: rgba(212,175,55,0.04);
  border-left-color: var(--gold);
  transform: translateX(8px);
  box-shadow: inset 0 0 0 1px rgba(212,175,55,0.25);
}
.plan-step:hover::before {
  transform: scale(1.6);
  box-shadow: 0 0 0 6px rgba(212,175,55,0.2), 0 0 24px 4px rgba(245,217,122,0.85);
  animation: dotPulse 1.4s ease-in-out infinite;
}
.plan-step:hover::after { opacity: 1; transform: translateX(0); }
.plan-step .halo-glow {
  position: absolute; inset: -30px -20px;
  background: radial-gradient(closest-side, rgba(245,217,122,0.55), rgba(212,175,55,0.18) 55%, transparent 80%);
  filter: blur(40px);
  opacity: 0; z-index: -1; pointer-events: none;
  transition: opacity 0.7s ease;
  mix-blend-mode: screen;
}
.plan-step:hover .halo-glow { opacity: 1; animation: haloPulse 2.6s ease-in-out infinite; }
@keyframes dotPulse {
  0%,100% { box-shadow: 0 0 0 6px rgba(212,175,55,0.18), 0 0 24px 4px rgba(245,217,122,0.7); }
  50%     { box-shadow: 0 0 0 10px rgba(212,175,55,0.05), 0 0 36px 8px rgba(245,217,122,1); }
}
.plan-step .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; color: var(--gold);
  letter-spacing: 0.3em;
  transition: text-shadow 0.4s, letter-spacing 0.4s;
}
.plan-step:hover .num { text-shadow: 0 0 18px rgba(245,217,122,0.9); letter-spacing: 0.4em; }
.plan-step h5 { font-size: 1.3rem; margin: 0.4rem 0 0.6rem; transition: color 0.4s; }
.plan-step:hover h5 { color: #fff3c4; }
.plan-step p { color: var(--muted); font-size: 0.92rem; line-height: 1.6; margin: 0; }

/* ===== Sparkles (chispas doradas) ===== */
.sparkle {
  position: absolute;
  width: 6px; height: 6px;
  pointer-events: none;
  background: radial-gradient(circle, #fff5d1 0%, #f5d97a 35%, rgba(212,175,55,0) 70%);
  border-radius: 50%;
  z-index: 50;
  animation: sparkleFly 900ms ease-out forwards;
  filter: drop-shadow(0 0 6px #f5d97a);
}
.sparkle::before, .sparkle::after {
  content: ""; position: absolute; inset: -4px;
  background: inherit; border-radius: inherit; opacity: 0.6;
  transform: scale(0.4);
}
@keyframes sparkleFly {
  0%   { opacity: 0; transform: translate(0,0) scale(0.2); }
  20%  { opacity: 1; }
  100% { opacity: 0; transform: translate(var(--dx), var(--dy)) scale(1.2); }
}

/* Video section */
.video-section {
  background: var(--bg-2);
  position: relative;
}
.video-wrap {
  position: relative;
  aspect-ratio: 16/9;
  max-width: 980px; margin: 0 auto;
  background: #000;
  overflow: hidden;
  border: 1px solid var(--line);
  cursor: pointer;
}
.video-wrap::before {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(212,175,55,0.1), transparent),
    url('../images/video_background.jpg') center/cover;
  transition: transform 1.2s, filter 0.4s;
}
.video-wrap:hover::before { transform: scale(1.05); filter: brightness(0.8); }
.play-btn {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 88px; height: 88px;
  border-radius: 50%;
  background: var(--grad-gold);
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
  transition: all 0.4s;
  box-shadow: 0 0 0 0 rgba(212,175,55,0.5);
  animation: pulseGold 2.4s infinite;
}
.video-wrap:hover .play-btn { transform: translate(-50%,-50%) scale(1.1); }
.play-btn svg { color: #000; width: 28px; height: 28px; margin-left: 4px; }
@keyframes pulseGold {
  0% { box-shadow: 0 0 0 0 rgba(212,175,55,0.5); }
  70% { box-shadow: 0 0 0 30px rgba(212,175,55,0); }
  100% { box-shadow: 0 0 0 0 rgba(212,175,55,0); }
}

/* Testimonials */
.testimonial-card {
  background: var(--bg-3);
  border: 1px solid var(--line);
  padding: 2.5rem 2rem;
  position: relative;
  height: 100%;
  transition: all 0.4s;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
}
.testimonial-card .quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem; line-height: 0.6;
  color: var(--gold); opacity: 0.4;
  position: absolute; top: 1.2rem; right: 1.5rem;
}
.testimonial-card p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem; line-height: 1.6;
  font-style: italic; color: var(--text);
  margin-bottom: 1.5rem;
}
.testimonial-card .person {
  display: flex; align-items: center; gap: 0.9rem;
}
.testimonial-card .avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--grad-gold);
  display: flex; align-items: center; justify-content: center;
  color: #000; font-weight: 700;
}
.testimonial-card .meta strong { display: block; color: var(--text); font-size: 0.95rem; }
.testimonial-card .meta span { color: var(--muted); font-size: 0.8rem; }
.testimonial-card .stars { color: var(--gold); margin-bottom: 0.8rem; letter-spacing: 0.2em; }

/* Blog cards */
.post-card {
  background: var(--bg-3);
  border: 1px solid rgba(255,255,255,0.04);
  overflow: hidden;
  height: 100%;
  transition: all 0.5s;
  display: flex; flex-direction: column;
}
.post-card:hover {
  transform: translateY(-6px);
  border-color: var(--line);
  box-shadow: 0 20px 50px -20px rgba(0,0,0,0.6);
}
.post-card .thumb {
  aspect-ratio: 16/10;
  background-size: cover; background-position: center;
  position: relative;
  overflow: hidden;
}
.post-card .thumb::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.5));
}
.post-card .body { padding: 1.6rem; flex: 1; display: flex; flex-direction: column; }
.post-card .meta { font-size: 0.72rem; color: var(--gold); letter-spacing: 0.28em; text-transform: uppercase; margin-bottom: 0.6rem; }
.post-card h5 { font-size: 1.3rem; line-height: 1.3; margin-bottom: 0.8rem; }
.post-card p { color: var(--muted); font-size: 0.9rem; line-height: 1.6; flex: 1; }
.post-card .read {
  margin-top: 1rem; font-size: 0.78rem;
  color: var(--gold); text-decoration: none;
  letter-spacing: 0.22em; text-transform: uppercase;
}

/* Footer */
.footer {
  background: #030303;
  padding: 5rem 0 2rem;
  border-top: 1px solid var(--line);
  position: relative;
}
.footer h6 {
  font-size: 0.78rem; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.3rem;
}
.footer a {
  color: var(--muted); text-decoration: none;
  display: block; margin-bottom: 0.6rem;
  font-size: 0.92rem; transition: color 0.3s, padding 0.3s;
}
.footer a:hover { color: var(--gold); padding-left: 4px; }
.footer .brand-line {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; color: var(--gold); letter-spacing: 0.08em;
}
.footer .brand-line span { color: var(--text); }
.footer .bottom {
  margin-top: 3.5rem; padding-top: 1.8rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
  color: var(--muted); font-size: 0.8rem;
}
.social-row { display: flex; gap: 0.6rem; }
.social-row a {
  width: 38px; height: 38px;
  border: 1px solid var(--line);
  display: inline-flex; align-items: center; justify-content: center;
  margin: 0; padding: 0;
  transition: all 0.35s;
}
.social-row a:hover {
  background: var(--gold); color: #000; border-color: var(--gold);
  padding-left: 0; transform: translateY(-3px);
}
.social-row svg { width: 16px; height: 16px; }

/* ============ Reveal on scroll ============ */
.reveal { opacity: 0; transform: translateY(40px); transition: all 1s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }
.reveal.delay-4 { transition-delay: 0.4s; }

/* ============ Page header (subpages) ============ */
.page-header {
  position: relative;
  padding: 12rem 0 6rem;
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(212,175,55,0.18), transparent 60%),
    var(--bg);
  overflow: hidden;
}
.page-header::after {
  content: ""; position: absolute; left: 50%; bottom: 0;
  transform: translateX(-50%);
  width: 80px; height: 1px;
  background: var(--grad-gold);
}
.page-header h1 {
  font-size: clamp(2.6rem, 5vw, 4.5rem);
}
.breadcrumb-line {
  font-size: 0.75rem; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--muted);
}
.breadcrumb-line a { color: var(--gold); text-decoration: none; }

/* About */
.value-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--bg-3);
  border: 1px solid var(--line);
  transition: all 0.4s;
  height: 100%;
}
.value-card:hover { transform: translateY(-6px); border-color: var(--gold); }
.value-card .icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--grad-gold);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
  color: #000;
}
.value-card h4 { font-size: 1.4rem; margin-bottom: 0.6rem; }
.value-card p { color: var(--muted); font-size: 0.92rem; }

.history-img {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 4/5;
}
.history-img::before {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(212,175,55,0.15), transparent),
    url('https://images.unsplash.com/photo-1559757148-5c350d0d3c56?q=80&w=1200') center/cover;
}

/* Marquee */
.marquee {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1.6rem 0;
  overflow: hidden;
  position: relative;
}
.marquee-track {
  display: flex; gap: 4rem;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.marquee-item {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  display: inline-flex; align-items: center; gap: 4rem;
}
.marquee-item::after {
  content: "✦"; color: var(--gold-3); font-size: 1rem;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* Product details modal-like card */
.product-feat li {
  color: var(--muted);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex; align-items: center; gap: 0.8rem;
}
.product-feat li::before {
  content: "✦"; color: var(--gold); font-size: 0.7rem;
}

/* Newsletter / CTA strip */
.cta-strip {
  background:
    linear-gradient(135deg, rgba(212,175,55,0.08), transparent 60%),
    var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 4rem 0;
}

/* Cursor accents */
@media (min-width: 992px) {
  .floating-dot {
    position: absolute;
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--gold);
    opacity: 0.4;
    animation: floatDot 6s ease-in-out infinite;
  }
}
@keyframes floatDot {
  0%,100% { transform: translateY(0); opacity: 0.3; }
  50% { transform: translateY(-25px); opacity: 0.7; }
}

/* Loader */
.page-loader {
  position: fixed; inset: 0;
  background: var(--bg);
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.8s, visibility 0.8s;
}
.page-loader.hidden { opacity: 0; visibility: hidden; }
.loader-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem; color: var(--gold);
  letter-spacing: 0.1em;
  animation: pulse 1.6s ease infinite;
}
@keyframes pulse {
  0%,100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* Responsive */
@media (max-width: 991px) {
  .navbar-collapse {
    background: rgba(5,5,5,0.97);
    padding: 1.5rem;
    margin-top: 1rem;
    border: 1px solid var(--line);
  }
  .navbar-custom .nav-link { margin: 0.5rem 0; }
  section { padding: 5rem 0; }
  .page-header { padding: 9rem 0 4rem; }
}

/* ===== Contact section ===== */
.contact-section {
  background:
    radial-gradient(60% 60% at 20% 20%, rgba(212,175,55,0.07), transparent 70%),
    radial-gradient(50% 50% at 90% 80%, rgba(212,175,55,0.05), transparent 70%),
    var(--bg);
  border-top: 1px solid var(--line);
}
.contact-card {
  background: linear-gradient(160deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 2.5rem;
  backdrop-filter: blur(10px);
}
.contact-card .form-label {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.contact-card .form-control {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  color: var(--text);
  border-radius: 10px;
  padding: 0.8rem 1rem;
  font-size: 0.95rem;
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
}
.contact-card .form-control:focus {
  background: rgba(255,255,255,0.05);
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.15);
  color: var(--text);
  outline: none;
}
.contact-card .form-control::placeholder { color: rgba(255,255,255,0.35); }
.contact-card textarea.form-control { min-height: 140px; resize: vertical; }
.contact-info-list { list-style: none; padding: 0; margin: 0; }
.contact-info-list li {
  display: flex; gap: 0.9rem; align-items: flex-start;
  padding: 1rem 0; border-bottom: 1px solid var(--line);
  color: var(--muted); font-size: 0.95rem;
}
.contact-info-list li:last-child { border-bottom: none; }
.contact-info-list .ic {
  width: 38px; height: 38px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(212,175,55,0.1); color: var(--gold); flex-shrink: 0;
}
.contact-info-list strong { display:block; color: var(--text); margin-bottom: 0.15rem; font-weight: 500; }

/* Floating contact button */
.floating-contact {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 950;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #b8941f);
  color: #0a0a0a;
  display: inline-flex; align-items: center; justify-content: center;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(212,175,55,0.35), 0 0 0 0 rgba(212,175,55,0.45);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: floatPulse 2.4s ease-in-out infinite;
}
.floating-contact:hover {
  transform: translateY(-4px) scale(1.06);
  color: #0a0a0a;
  box-shadow: 0 14px 40px rgba(212,175,55,0.55);
}
.floating-contact svg { width: 26px; height: 26px; }
@keyframes floatPulse {
  0%, 100% { box-shadow: 0 10px 30px rgba(212,175,55,0.35), 0 0 0 0 rgba(212,175,55,0.45); }
  50%      { box-shadow: 0 10px 30px rgba(212,175,55,0.35), 0 0 0 14px rgba(212,175,55,0); }
}
html { scroll-behavior: smooth; }


/* ===== Legal pages ===== */
.legal-content h3{
  font-family:'Cormorant Garamond',serif;
  font-size:1.5rem;
  color:#d4af37;
  margin:1.8rem 0 .6rem;
  letter-spacing:.3px;
}
.legal-content p,
.legal-content li{
  color:rgba(255,255,255,.78);
  line-height:1.75;
  font-size:.96rem;
}
.legal-content ul{ padding-left:1.2rem; margin:.4rem 0 1rem; }
.legal-content a{ color:#e8c878; text-decoration:underline; }
.legal-content a:hover{ color:#fff; }

/* Footer legal links */
.footer .bottom .legal-links a{
  color:rgba(255,255,255,.7);
  text-decoration:none;
  transition:color .25s ease;
}
.footer .bottom .legal-links a:hover{ color:#d4af37; }
.footer .bottom .legal-links .sep{
  color:rgba(255,255,255,.35);
  margin:0 .5rem;
}

/* ===== Product Detail Page ===== */
.product-banner{
  position:relative;
  margin:1.5rem 0 3rem;
  padding:5rem 2rem;
  border:1px solid rgba(212,175,55,.25);
  border-radius:18px;
  background:
    radial-gradient(ellipse at center, rgba(212,175,55,.08), transparent 70%),
    linear-gradient(180deg, rgba(20,20,20,.6), rgba(10,10,10,.85));
  text-align:center;
  overflow:hidden;
}
.product-banner h1{
  font-family:'Cormorant Garamond', serif;
  font-weight:500;
  font-size:clamp(2.4rem, 5vw, 3.6rem);
  margin:0 0 .6rem;
}
.product-banner .tagline{
  color:rgba(255,255,255,.7);
  font-size:1.05rem;
  letter-spacing:1px;
  margin:0;
}

.pd-gallery{
  display:flex;
  flex-direction:column;
  gap:1rem;
}
.pd-main-img{
  position:relative;
  aspect-ratio:1/1;
  border:1px solid rgba(212,175,55,.2);
  border-radius:14px;
  background:linear-gradient(160deg, rgba(30,30,30,.6), rgba(10,10,10,.9));
  display:flex; align-items:center; justify-content:center;
  overflow:hidden;
  padding:1.5rem;
}
.pd-main-img img{
  max-width:100%; max-height:100%;
  object-fit:contain;
  transition:transform .5s ease;
}
.pd-main-img:hover img{ transform:scale(1.04); }
.pd-thumbs{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:.7rem;
}
.pd-thumb{
  aspect-ratio:1/1;
  border:1px solid rgba(212,175,55,.2);
  border-radius:10px;
  background:linear-gradient(160deg, rgba(30,30,30,.5), rgba(10,10,10,.8));
  display:flex; align-items:center; justify-content:center;
  padding:.5rem;
  cursor:pointer;
  transition:all .3s ease;
}
.pd-thumb:hover, .pd-thumb.active{
  border-color:#d4af37;
  box-shadow:0 4px 18px rgba(212,175,55,.2);
}
.pd-thumb img{ max-width:100%; max-height:100%; object-fit:contain; }

.pd-info h2{
  font-family:'Cormorant Garamond', serif;
  font-weight:500;
  font-size:clamp(2rem,4vw,2.8rem);
  margin:0 0 1rem;
}
.pd-info .pd-desc{
  color:rgba(255,255,255,.78);
  line-height:1.8;
  font-size:.98rem;
  margin-bottom:1.8rem;
}
.pd-price{
  font-family:'Cormorant Garamond', serif;
  font-size:2.6rem;
  color:#d4af37;
  margin:1rem 0 1.5rem;
  font-weight:500;
}
.pd-qty{
  display:flex; align-items:center; gap:1rem;
  margin-bottom:1.5rem;
}
.pd-qty button{
  width:42px; height:42px;
  border-radius:50%;
  border:1px solid rgba(212,175,55,.4);
  background:transparent;
  color:#d4af37;
  font-size:1.2rem;
  cursor:pointer;
  transition:all .25s ease;
  display:flex; align-items:center; justify-content:center;
}
.pd-qty button:hover{ background:rgba(212,175,55,.15); border-color:#d4af37; }
.pd-qty .qty-value{
  min-width:40px; text-align:center;
  font-size:1.2rem; color:#fff;
}
.pd-cart-btn{
  display:block; width:100%;
  padding:.95rem 1.5rem;
  border:1px solid rgba(212,175,55,.5);
  border-radius:10px;
  background:transparent;
  color:#fff;
  letter-spacing:1.5px;
  text-transform:uppercase;
  font-size:.85rem;
  cursor:pointer;
  transition:all .3s ease;
}
.pd-cart-btn:hover{
  background:linear-gradient(90deg,#d4af37,#e8c878);
  color:#111; border-color:#d4af37;
  box-shadow:0 8px 22px rgba(212,175,55,.25);
}

/* Accordion */
.pd-accordion{ margin-top:4rem; }
.pd-accordion .accordion-item{
  background:transparent;
  border:none;
  border-bottom:1px solid rgba(212,175,55,.2);
}
.pd-accordion .accordion-button{
  background:transparent;
  color:#fff;
  font-family:'Cormorant Garamond', serif;
  font-size:1.4rem;
  font-weight:500;
  padding:1.4rem 0;
  box-shadow:none;
}
.pd-accordion .accordion-button:not(.collapsed){
  background:transparent;
  color:#d4af37;
  box-shadow:none;
}
.pd-accordion .accordion-button:focus{ box-shadow:none; border:none; }
.pd-accordion .accordion-button::after{
  filter:invert(72%) sepia(45%) saturate(580%) hue-rotate(2deg) brightness(95%) contrast(88%);
}
.pd-accordion .accordion-body{
  color:rgba(255,255,255,.78);
  line-height:1.8;
  padding:.4rem 0 1.6rem;
  font-size:.96rem;
}
.pd-accordion .accordion-body ul{ padding-left:1.2rem; }
.pd-accordion .accordion-body li{ margin-bottom:.4rem; }

/* ===== Thanks page ===== */
.thanks-section{
  padding: 11rem 0 7rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 20% 20%, rgba(201,168,76,.08), transparent 55%),
    radial-gradient(circle at 80% 80%, rgba(201,168,76,.06), transparent 55%);
}
.thanks-card{
  max-width: 760px;
  padding: 3.5rem 2.5rem;
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
  border: 1px solid rgba(201,168,76,.25);
  border-radius: 18px;
  box-shadow: 0 30px 80px -30px rgba(0,0,0,.6), 0 0 0 1px rgba(201,168,76,.06) inset;
}
.thanks-icon{
  width: 96px; height: 96px;
  margin: 0 auto 1.4rem;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #c9a84c;
  background: radial-gradient(circle, rgba(201,168,76,.18), rgba(201,168,76,.02) 70%);
  border: 1px solid rgba(201,168,76,.35);
  animation: thanksPulse 2.4s ease-in-out infinite;
}
@keyframes thanksPulse{
  0%,100%{ box-shadow: 0 0 0 0 rgba(201,168,76,.35); }
  50%{ box-shadow: 0 0 0 18px rgba(201,168,76,0); }
}
.thanks-actions .btn-outline-gold{
  display: inline-block;
  padding: .8rem 1.6rem;
  border-radius: 999px;
  border: 1px solid rgba(201,168,76,.45);
  color: #e8d9a8;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: .02em;
  transition: all .3s ease;
}
.thanks-actions .btn-outline-gold:hover{
  background: rgba(201,168,76,.12);
  border-color: #c9a84c;
  color: #fff;
}
