/* ============================================
   MULIA GEMSTONE INDONESIA — Global Stylesheet
   ============================================ */

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

:root {
  --gold:        #c9a84c;
  --gold-light:  #e8c85a;
  --gold-pale:   #f5e6b0;
  --dark:        #0d0d1a;
  --dark-2:      #141428;
  --dark-3:      #1e1e38;
  --cream:       #faf6ef;
  --cream-2:     #f0e9d8;
  --text-light:  #ccc8bc;
  --text-muted:  #888;
  --white:       #ffffff;
  --border:      rgba(201,168,76,0.25);
  --radius:      4px;
  --transition:  0.35s ease;
  --shadow:      0 8px 40px rgba(0,0,0,0.35);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--dark);
  color: var(--text-light);
  line-height: 1.7;
  overflow-x: hidden;
}

h1,h2,h3,h4,h5 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--white);
  line-height: 1.2;
}

a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }

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

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ── PRELOADER ── */
#preloader {
  position: fixed; inset: 0;
  background: var(--dark);
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s ease;
}
#preloader.hidden { opacity: 0; pointer-events: none; }
.preloader-gem {
  width: 60px; height: 60px;
  border: 2px solid var(--border);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── TOPBAR ── */
.topbar {
  background: var(--dark-2);
  border-bottom: 1px solid var(--border);
  padding: 8px 0;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}
.topbar-inner {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 8px;
}
.topbar a { color: var(--text-muted); }
.topbar a:hover { color: var(--gold); }
.topbar-right { display: flex; gap: 20px; }

/* ── HEADER / NAV ── */
header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(13,13,26,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
header.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.5); }

nav { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; }

.logo {
  display: flex; align-items: center; gap: 12px;
  font-family: 'Cormorant Garamond', serif;
}
.logo-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  clip-path: polygon(50% 0%,100% 35%,80% 100%,20% 100%,0% 35%);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--dark);
  flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name { font-size: 1.35rem; font-weight: 600; color: var(--white); letter-spacing: 0.02em; }
.logo-tagline { font-size: 0.65rem; color: var(--gold); letter-spacing: 0.18em; text-transform: uppercase; font-family: 'DM Sans', sans-serif; font-weight: 300; }

.nav-links { display: flex; list-style: none; gap: 36px; align-items: center; }
.nav-links a {
  color: var(--text-light); font-size: 0.85rem; letter-spacing: 0.08em;
  text-transform: uppercase; font-weight: 500; position: relative; padding-bottom: 4px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }

.nav-cta {
  background: var(--gold); color: var(--dark) !important;
  padding: 10px 22px; border-radius: var(--radius);
  font-weight: 500; transition: background var(--transition), transform 0.2s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold-light) !important; transform: translateY(-1px); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--gold); transition: var(--transition); border-radius: 2px; }

/* mobile nav */
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    display: none; flex-direction: column; gap: 0;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--dark-2); border-top: 1px solid var(--border);
    padding: 16px 24px; z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links li { border-bottom: 1px solid var(--border); }
  .nav-links a { padding: 12px 0; display: block; }
  .nav-cta { margin-top: 8px; text-align: center; }
}

/* ── HERO ── */
.hero {
  position: relative; min-height: 90vh;
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--dark-2);
}
.hero-bg {
  position: absolute; inset: 0;
  background: 
    radial-gradient(ellipse at 70% 50%, rgba(201,168,76,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(100,60,200,0.08) 0%, transparent 50%),
    linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 50%, var(--dark-3) 100%);
}
.hero-particles {
  position: absolute; inset: 0;
  background-image: 
    radial-gradient(1px 1px at 20% 30%, rgba(201,168,76,0.6), transparent),
    radial-gradient(1px 1px at 70% 20%, rgba(201,168,76,0.4), transparent),
    radial-gradient(1px 1px at 50% 70%, rgba(201,168,76,0.5), transparent),
    radial-gradient(1px 1px at 85% 60%, rgba(201,168,76,0.3), transparent),
    radial-gradient(2px 2px at 10% 80%, rgba(201,168,76,0.4), transparent),
    radial-gradient(1px 1px at 90% 90%, rgba(201,168,76,0.3), transparent);
  animation: twinkle 4s ease-in-out infinite alternate;
}
@keyframes twinkle { from { opacity: 0.5; } to { opacity: 1; } }

.hero-content {
  position: relative; z-index: 2;
  max-width: 620px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--border); border-radius: 100px;
  padding: 6px 16px; font-size: 0.72rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 28px;
  background: rgba(201,168,76,0.07);
}
.hero-badge::before { content: '◆'; font-size: 8px; }

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300; margin-bottom: 24px; line-height: 1.05;
}
.hero h1 em { font-style: italic; color: var(--gold); }
.hero p {
  font-size: 1.05rem; color: var(--text-light);
  max-width: 480px; margin-bottom: 40px; line-height: 1.8;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.btn-primary {
  background: var(--gold);
  color: var(--dark);
  padding: 14px 32px;
  border-radius: var(--radius);
  font-weight: 500; font-size: 0.9rem;
  letter-spacing: 0.06em; text-transform: uppercase;
  transition: all var(--transition);
  border: none; cursor: pointer; display: inline-block;
}
.btn-primary:hover {
  background: var(--gold-light);
  color: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.3);
}

.btn-outline {
  border: 1px solid var(--border);
  color: var(--white);
  padding: 14px 32px;
  border-radius: var(--radius);
  font-weight: 400; font-size: 0.9rem;
  letter-spacing: 0.06em; text-transform: uppercase;
  transition: all var(--transition);
  display: inline-block;
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.06);
}

.hero-image {
  position: absolute; right: -40px; top: 50%;
  transform: translateY(-50%);
  width: 52%; max-width: 640px; opacity: 0.85;
  filter: drop-shadow(0 0 60px rgba(201,168,76,0.18));
}
.hero-image img { border-radius: 8px; width: 100%; }

.hero-stats {
  position: absolute; bottom: 48px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 48px; z-index: 2;
  background: rgba(20,20,40,0.7); backdrop-filter: blur(12px);
  border: 1px solid var(--border); border-radius: 8px;
  padding: 20px 48px;
}
.stat-item { text-align: center; }
.stat-num { font-family: 'Cormorant Garamond', serif; font-size: 2rem; color: var(--gold); font-weight: 600; display: block; }
.stat-label { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); }

@media (max-width: 900px) {
  .hero-image { display: none; }
  .hero-stats { position: relative; bottom: auto; left: auto; transform: none; margin-top: 40px; flex-wrap: wrap; gap: 24px; padding: 16px 24px; }
}

/* ── SECTION COMMON ── */
section { padding: 100px 0; }

.section-header { text-align: center; margin-bottom: 64px; }
.section-badge {
  display: inline-block;
  font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
  position: relative;
}
.section-badge::before, .section-badge::after {
  content: '──'; margin: 0 10px; opacity: 0.5; font-size: 0.8em;
}
.section-header h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 300; margin-bottom: 16px; }
.section-header h2 em { font-style: italic; color: var(--gold); }
.section-header p { max-width: 560px; margin: 0 auto; color: var(--text-muted); line-height: 1.8; }

/* ── ABOUT STRIP ── */
.about-strip {
  background: var(--dark-3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-wrap img { border-radius: 4px; width: 100%; object-fit: cover; height: 480px; filter: brightness(0.9); }
.about-badge-float {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--gold); color: var(--dark);
  padding: 20px 24px; border-radius: 4px; text-align: center;
  font-family: 'Cormorant Garamond', serif;
}
.about-badge-float strong { display: block; font-size: 2.5rem; font-weight: 700; line-height: 1; }
.about-badge-float span { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; }

.about-content { padding: 20px 0; }
.about-content h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 300; margin-bottom: 24px; }
.about-content p { color: var(--text-muted); margin-bottom: 20px; line-height: 1.9; font-size: 0.95rem; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 32px 0; }
.feat-item { display: flex; gap: 12px; align-items: flex-start; }
.feat-icon { color: var(--gold); font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.feat-text strong { display: block; color: var(--white); font-size: 0.88rem; font-family: 'Cormorant Garamond', serif; font-size: 1rem; }
.feat-text span { font-size: 0.8rem; color: var(--text-muted); }

@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-badge-float { right: 16px; }
}

/* ── PRODUCTS GRID ── */
.products-section { background: var(--dark-2); }

.products-filter {
  display: flex; justify-content: center; gap: 10px;
  flex-wrap: wrap; margin-bottom: 48px;
}
.filter-btn {
  padding: 8px 22px; border-radius: 100px;
  border: 1px solid var(--border); background: none;
  color: var(--text-muted); font-size: 0.8rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  cursor: pointer; transition: all var(--transition);
  font-family: 'DM Sans', sans-serif;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--gold); border-color: var(--gold); color: var(--dark);
}

.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 900px) { .products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .products-grid { grid-template-columns: 1fr; } }

.product-card {
  background: var(--dark-3); border: 1px solid var(--border);
  border-radius: 6px; overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  cursor: pointer;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
  border-color: rgba(201,168,76,0.5);
}
.product-img {
  position: relative; overflow: hidden;
  aspect-ratio: 4/3; background: var(--dark);
}
.product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.product-card:hover .product-img img { transform: scale(1.06); }
.product-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--gold); color: var(--dark);
  font-size: 0.7rem; padding: 3px 10px; border-radius: 100px;
  letter-spacing: 0.08em; text-transform: uppercase; font-weight: 500;
}
.product-overlay {
  position: absolute; inset: 0;
  background: rgba(13,13,26,0.75);
  display: flex; align-items: center; justify-content: center; gap: 12px;
  opacity: 0; transition: opacity var(--transition);
}
.product-card:hover .product-overlay { opacity: 1; }
.overlay-btn {
  background: var(--gold); color: var(--dark);
  border: none; cursor: pointer; padding: 10px 20px;
  border-radius: var(--radius); font-size: 0.8rem; font-weight: 500;
  transition: background var(--transition);
}
.overlay-btn:hover { background: var(--gold-light); }

.product-info { padding: 18px; }
.product-cat {
  font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 6px;
}
.product-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem; color: var(--white); margin-bottom: 8px;
}
.product-desc { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 14px; }
.product-footer { display: flex; align-items: center; justify-content: space-between; }
.product-price { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; color: var(--gold); font-weight: 600; }
.product-origin { font-size: 0.72rem; color: var(--text-muted); display: flex; align-items: center; gap: 4px; }

/* ── WHY US ── */
.why-section { background: var(--dark); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 900px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .why-grid { grid-template-columns: 1fr; } }

.why-card {
  background: var(--dark-3); border: 1px solid var(--border);
  border-radius: 6px; padding: 32px 24px;
  text-align: center;
  transition: border-color var(--transition), transform var(--transition);
}
.why-card:hover { border-color: rgba(201,168,76,0.5); transform: translateY(-4px); }
.why-icon {
  width: 56px; height: 56px; margin: 0 auto 20px;
  background: rgba(201,168,76,0.1); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
}
.why-card h4 { font-size: 1.1rem; color: var(--white); margin-bottom: 10px; }
.why-card p { font-size: 0.83rem; color: var(--text-muted); line-height: 1.7; }

/* ── TESTIMONIALS ── */
.testimonials-section {
  background: var(--dark-3);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 768px) { .testimonials-grid { grid-template-columns: 1fr; } }

.testi-card {
  background: var(--dark-2); border: 1px solid var(--border);
  border-radius: 6px; padding: 28px;
}
.testi-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 16px; }
.testi-text { font-size: 0.9rem; color: var(--text-light); line-height: 1.8; margin-bottom: 20px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: var(--dark); font-weight: 600;
  flex-shrink: 0;
}
.testi-name { font-weight: 500; color: var(--white); font-size: 0.88rem; }
.testi-loc { font-size: 0.75rem; color: var(--text-muted); }

/* ── NEWSLETTER ── */
.newsletter-section {
  background: linear-gradient(135deg, var(--dark-2), var(--dark-3));
  border-top: 1px solid var(--border);
  text-align: center; padding: 80px 0;
}
.newsletter-section h2 { font-size: 2.5rem; margin-bottom: 12px; }
.newsletter-section p { color: var(--text-muted); margin-bottom: 40px; }

.newsletter-form { max-width: 500px; margin: 0 auto 20px; }
.newsletter-form-inner {
  display: flex; gap: 12px;
  background: var(--dark-3); border: 1px solid var(--border);
  border-radius: 4px; padding: 8px;
}
.newsletter-form input {
  flex: 1; background: none; border: none; outline: none;
  color: var(--white); font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem; padding: 6px 8px;
}
.newsletter-form input::placeholder { color: var(--text-muted); }
.newsletter-form button {
  background: var(--gold); color: var(--dark);
  border: none; padding: 10px 24px; border-radius: 2px;
  font-weight: 500; cursor: pointer; font-size: 0.85rem;
  transition: background var(--transition); white-space: nowrap;
  font-family: 'DM Sans', sans-serif;
}
.newsletter-form button:hover { background: var(--gold-light); }
.newsletter-consent {
  font-size: 0.78rem; color: var(--text-muted); display: flex;
  align-items: center; justify-content: center; gap: 8px; margin-bottom: 12px;
}
.newsletter-consent input[type="checkbox"] { accent-color: var(--gold); }
.unsubscribe-note {
  font-size: 0.75rem; color: var(--text-muted);
}
.unsubscribe-note a { color: var(--gold); }

/* ── CONTACT ── */
.contact-section { background: var(--dark-2); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }

.contact-info h3 { font-size: 1.8rem; margin-bottom: 20px; }
.contact-info p { color: var(--text-muted); margin-bottom: 32px; line-height: 1.8; }
.contact-items { display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.ci-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: rgba(201,168,76,0.1); border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1.1rem;
}
.ci-label { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 4px; }
.ci-value { color: var(--white); font-size: 0.92rem; }
.ci-value a { color: var(--white); }
.ci-value a:hover { color: var(--gold); }

.hours-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 8px; }
.hours-item { font-size: 0.82rem; color: var(--text-muted); }
.hours-item span { color: var(--white); }

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }

.form-field label {
  display: block; font-size: 0.75rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-muted); margin-bottom: 8px;
}
.form-field input, .form-field textarea, .form-field select {
  width: 100%; background: var(--dark-3); border: 1px solid var(--border);
  border-radius: var(--radius); color: var(--white); padding: 12px 16px;
  font-family: 'DM Sans', sans-serif; font-size: 0.9rem; outline: none;
  transition: border-color var(--transition);
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  border-color: var(--gold);
}
.form-field input::placeholder, .form-field textarea::placeholder { color: var(--text-muted); }
.form-field textarea { resize: vertical; min-height: 120px; }
.form-field select option { background: var(--dark-3); }
.form-consent {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 0.8rem; color: var(--text-muted);
}
.form-consent input { accent-color: var(--gold); margin-top: 2px; flex-shrink: 0; }
.form-consent a { color: var(--gold); }

/* ── FOOTER ── */
footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 64px 0 0;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand p { font-size: 0.85rem; color: var(--text-muted); margin: 16px 0 24px; line-height: 1.8; max-width: 280px; }
.footer-socials { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px; border: 1px solid var(--border); border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 0.85rem; transition: all var(--transition);
}
.social-btn:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,0.1); }

.footer-col h5 {
  font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 20px; font-family: 'DM Sans', sans-serif; font-weight: 500;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 0.87rem; color: var(--text-muted); }
.footer-col ul a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  font-size: 0.78rem; color: var(--text-muted);
}
.footer-bottom a { color: var(--text-muted); }
.footer-bottom a:hover { color: var(--gold); }

/* ── SCROLL REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s 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; }

/* ── DIVIDER ── */
.gold-divider {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 20px auto;
}

/* ── BREADCRUMB / PAGE HERO ── */
.page-hero {
  background: var(--dark-3);
  border-bottom: 1px solid var(--border);
  padding: 64px 0;
  text-align: center;
}
.page-hero h1 { font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 12px; }
.breadcrumb {
  display: flex; justify-content: center; gap: 8px;
  font-size: 0.8rem; color: var(--text-muted);
  list-style: none;
}
.breadcrumb li + li::before { content: '/'; margin-right: 8px; }
.breadcrumb a { color: var(--gold); }

/* ── UTILITY ── */
.text-gold { color: var(--gold); }
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-32 { margin-top: 32px; }
.mb-40 { margin-bottom: 40px; }

/* ── MODAL (Product Quick View) ── */
.modal-backdrop {
  display: none; position: fixed; inset: 0; z-index: 9000;
  background: rgba(0,0,0,0.8); backdrop-filter: blur(4px);
  align-items: center; justify-content: center; padding: 24px;
}
.modal-backdrop.open { display: flex; }
.modal-box {
  background: var(--dark-2); border: 1px solid var(--border);
  border-radius: 8px; max-width: 700px; width: 100%;
  max-height: 90vh; overflow-y: auto; padding: 40px;
  position: relative;
}
.modal-close {
  position: absolute; top: 16px; right: 16px;
  background: none; border: none; color: var(--text-muted);
  font-size: 1.4rem; cursor: pointer; transition: color var(--transition);
}
.modal-close:hover { color: var(--gold); }

/* ── STICKY WA BUTTON ── */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 500;
  background: #25d366; color: #fff;
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform var(--transition), box-shadow var(--transition);
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 8px 28px rgba(37,211,102,0.5); color: #fff; }

/* ── ABOUT PAGE ── */
.timeline { position: relative; padding-left: 32px; }
.timeline::before {
  content: ''; position: absolute; left: 8px; top: 0; bottom: 0;
  width: 1px; background: var(--border);
}
.timeline-item { position: relative; margin-bottom: 40px; }
.timeline-dot {
  position: absolute; left: -28px; top: 4px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--gold); border: 3px solid var(--dark-2);
}
.timeline-year { font-size: 0.75rem; color: var(--gold); letter-spacing: 0.1em; margin-bottom: 6px; }
.timeline-item h4 { color: var(--white); font-size: 1rem; margin-bottom: 6px; }
.timeline-item p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; }

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px; }
@media (max-width: 768px) { .team-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .team-grid { grid-template-columns: 1fr; } }
.team-card {
  background: var(--dark-3); border: 1px solid var(--border);
  border-radius: 6px; overflow: hidden; text-align: center;
  transition: border-color var(--transition), transform var(--transition);
}
.team-card:hover { border-color: rgba(201,168,76,0.5); transform: translateY(-4px); }
.team-avatar { height: 200px; overflow: hidden; }
.team-avatar img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(20%); }
.team-info { padding: 20px; }
.team-info h4 { color: var(--white); font-size: 1.1rem; margin-bottom: 4px; }
.team-info span { font-size: 0.78rem; color: var(--gold); letter-spacing: 0.08em; }
.team-info p { font-size: 0.8rem; color: var(--text-muted); margin-top: 10px; }

/* ── POLICY PAGES ── */
.policy-content {
  max-width: 820px; margin: 0 auto;
  padding: 80px 24px;
}
.policy-content h2 { font-size: 1.8rem; margin: 40px 0 12px; color: var(--gold); }
.policy-content h3 { font-size: 1.2rem; margin: 28px 0 10px; }
.policy-content p, .policy-content li { font-size: 0.9rem; color: var(--text-muted); line-height: 1.9; margin-bottom: 12px; }
.policy-content ul { padding-left: 20px; }
.policy-content a { color: var(--gold); }
