/* ===========================
   Mr.Parfumes — style.css
   Luxury Dark Theme
   =========================== */

:root {
  --bg: #07060e;
  --bg-2: #0e0c1a;
  --bg-3: #13102a;
  --gold: #c8a96e;
  --gold-light: #f0d090;
  --gold-muted: #8b7040;
  --text: #f0ece4;
  --text-muted: #8a8090;
  --accent: #7c3aed;
  --accent-2: #a855f7;
  --white: #ffffff;
  --border: rgba(200, 169, 110, 0.18);
  --radius: 12px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
}

/* ===========================
   CUSTOM CURSOR
   =========================== */
.cursor {
  width: 10px; height: 10px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, background 0.3s;
  mix-blend-mode: difference;
}
.cursor-trail {
  width: 36px; height: 36px;
  border: 1px solid rgba(200, 169, 110, 0.5);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: all 0.15s ease-out;
}
body:hover .cursor { opacity: 1; }

/* ===========================
   LOADER
   =========================== */
.loader {
  position: fixed; inset: 0;
  background: var(--bg);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
.loader.hidden { opacity: 0; visibility: hidden; }

.loader-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  text-align: center;
  letter-spacing: 0.05em;
}
.loader-logo span { color: var(--gold); }
.loader-bar {
  width: 200px; height: 1px;
  background: rgba(200,169,110,0.2);
  border-radius: 2px;
}
.loader-fill {
  height: 100%;
  background: var(--gold);
  width: 0;
  animation: fill 1.8s ease forwards;
}
@keyframes fill { to { width: 100%; } }

/* ===========================
   NAVIGATION
   =========================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 4rem;
  transition: all var(--transition);
}
.nav.scrolled {
  background: rgba(7, 6, 14, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 1rem 4rem;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--text);
  letter-spacing: 0.03em;
}
.nav-logo span { color: var(--gold); }
.nav-links {
  display: flex; gap: 2.5rem; list-style: none;
}
.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 0.55rem 1.5rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  border-radius: 2px;
}
.nav-cta:hover {
  background: var(--gold);
  color: var(--bg);
}

.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 22px; height: 1px;
  background: var(--gold); transition: all 0.3s;
}
.hamburger.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  position: fixed; top: 0; right: -100%; width: 75%; height: 100vh;
  background: var(--bg-2);
  border-left: 1px solid var(--border);
  z-index: 999;
  display: flex; align-items: center; justify-content: center;
  transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}
.mobile-menu.open { right: 0; }
.mobile-menu ul { list-style: none; text-align: center; }
.mobile-menu li { margin-bottom: 2rem; }
.mobile-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s;
  font-weight: 300;
}
.mobile-menu a:hover { color: var(--gold); }

/* ===========================
   REVEAL ANIMATIONS
   =========================== */
.reveal-up, .reveal-left, .reveal-right {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal-up.visible, .reveal-left.visible, .reveal-right.visible {
  opacity: 1;
  transform: none;
}

/* ===========================
   HERO
   =========================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 4rem 4rem;
  gap: 4rem;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
}
.orb-1 { width: 600px; height: 600px; background: var(--accent); top: -100px; left: -150px; animation: drift 12s ease-in-out infinite; }
.orb-2 { width: 400px; height: 400px; background: var(--gold); bottom: 0; right: 0; animation: drift 15s ease-in-out infinite reverse; }
.orb-3 { width: 300px; height: 300px; background: #1e3a8a; top: 50%; left: 40%; animation: drift 18s ease-in-out infinite 3s; }

@keyframes drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, -30px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

.grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 150px;
  opacity: 0.5;
  pointer-events: none;
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 580px;
  flex: 1;
}
.hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  font-weight: 400;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 300;
}
.hero-desc {
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 0.95rem;
  margin-bottom: 2.5rem;
  font-weight: 300;
}
.hero-actions {
  display: flex; gap: 1rem; flex-wrap: wrap;
}

/* Buttons */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--bg);
  padding: 0.8rem 2rem;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all var(--transition);
  border: 1px solid var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(200,169,110,0.25);
}
.btn-primary.full-width { width: 100%; text-align: center; }
.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--text-muted);
  padding: 0.8rem 2rem;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  border: 1px solid rgba(200,169,110,0.25);
  transition: all var(--transition);
}
.btn-ghost:hover { color: var(--gold); border-color: var(--gold); }

/* Hero Visual */
.hero-visual {
  position: relative; z-index: 2;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bottle-showcase {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bottle-glow {
  position: absolute;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(124,58,237,0.3) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse-glow 3s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.1); opacity: 1; }
}
.bottle-svg {
  width: 200px;
  filter: drop-shadow(0 30px 60px rgba(124,58,237,0.4));
  animation: float 4s ease-in-out infinite;
  position: relative; z-index: 2;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}
.bottle-reflection {
  position: absolute;
  bottom: -30px;
  width: 80px; height: 20px;
  background: radial-gradient(ellipse, rgba(200,169,110,0.2) 0%, transparent 70%);
  filter: blur(6px);
  animation: float 4s ease-in-out infinite;
}
.floating-tags {
  position: absolute;
  width: 100%; height: 100%;
  pointer-events: none;
}
.tag {
  position: absolute;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  color: var(--gold);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  padding: 0.35rem 0.8rem;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  white-space: nowrap;
  animation: float 4s ease-in-out infinite;
}
.tag-1 { top: 20%; left: -30px; animation-delay: 0.5s; }
.tag-2 { top: 50%; right: -20px; animation-delay: 1s; }
.tag-3 { bottom: 25%; left: -40px; animation-delay: 1.5s; }

.hero-scroll {
  position: absolute;
  bottom: 2.5rem; left: 4rem;
  display: flex; align-items: center; gap: 1rem;
  color: var(--text-muted);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.scroll-line {
  width: 50px; height: 1px;
  background: var(--gold-muted);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--gold);
  animation: slide-line 2s ease-in-out infinite;
}
@keyframes slide-line {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* ===========================
   STATS
   =========================== */
.stats {
  padding: 3rem 4rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
}
.stats-grid {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}
.stat-item {
  text-align: center;
}
.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.stat-plus {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--gold);
}
.stat-item p {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.4rem;
}
.stat-divider {
  width: 1px; height: 60px;
  background: var(--border);
}

/* ===========================
   ABOUT
   =========================== */
.about {
  padding: 7rem 4rem;
  background: var(--bg);
}
.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}
.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  margin-bottom: 1rem;
  display: block;
}
.section-label.light { color: var(--gold-light); }

.about-text h2, .contact-info h2, .story-content h2,
.collection-header h2, .test-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text);
}
.about-text h2 em, .contact-info h2 em,
.story-content h2 em, .collection-header h2 em,
.test-header h2 em {
  font-style: italic;
  color: var(--gold);
}

.about-text p {
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 1rem;
  font-size: 0.93rem;
}
.about-features {
  margin-top: 2rem;
  display: flex; flex-direction: column; gap: 1.2rem;
}
.feature {
  display: flex; align-items: flex-start; gap: 1rem;
}
.feature-icon {
  color: var(--gold);
  font-size: 1.1rem;
  margin-top: 3px;
  flex-shrink: 0;
}
.feature strong { display: block; color: var(--text); font-weight: 400; font-size: 0.9rem; margin-bottom: 0.15rem; }
.feature p { color: var(--text-muted); font-size: 0.82rem; margin: 0; }

/* About Visual Cards */
.about-visual {
  position: relative;
  height: 420px;
}
.about-bg-circle {
  position: absolute;
  width: 380px; height: 380px;
  border: 1px solid var(--border);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: rotate-slow 20s linear infinite;
}
@keyframes rotate-slow { to { transform: translate(-50%, -50%) rotate(360deg); } }

.about-card {
  position: absolute;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.2rem;
  width: 145px;
  backdrop-filter: blur(10px);
  transition: transform var(--transition), box-shadow var(--transition);
}
.about-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.about-card-1 { top: 20px; left: 50%; transform: translateX(-50%); }
.about-card-2 { bottom: 60px; left: 20px; }
.about-card-3 { bottom: 60px; right: 20px; }

.card-label {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}
.card-content { text-align: center; }
.mini-bottle {
  width: 32px; height: 60px;
  margin: 0 auto 0.7rem;
  background: linear-gradient(to bottom, var(--c1), var(--c2));
  border-radius: 4px 4px 8px 8px;
  position: relative;
}
.mini-bottle::before {
  content: '';
  position: absolute;
  top: -8px; left: 50%; transform: translateX(-50%);
  width: 12px; height: 10px;
  background: rgba(200,169,110,0.8);
  border-radius: 2px;
}
.card-content p { font-size: 0.78rem; color: var(--text); margin-bottom: 0.2rem; }
.card-content span { font-size: 0.72rem; color: var(--gold); }

/* ===========================
   COLLECTION
   =========================== */
.collection {
  padding: 7rem 4rem;
  background: var(--bg-2);
}
.collection-header {
  text-align: center; margin-bottom: 2rem;
}
.collection-filter {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.filter-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 0.45rem 1.2rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 20px;
  transition: all 0.3s;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto 2.5rem;
}
.product-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
  position: relative;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(0,0,0,0.5);
  border-color: rgba(200,169,110,0.4);
}
.product-card.hidden { display: none; }
.product-img {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.product-img-bg {
  position: absolute; inset: 0;
  opacity: 0.3;
  transition: opacity 0.4s;
}
.product-card:hover .product-img-bg { opacity: 0.5; }
.product-bottle {
  width: 55px; height: 105px;
  border-radius: 6px 6px 14px 14px;
  position: relative; z-index: 2;
  transition: transform 0.4s;
}
.product-card:hover .product-bottle { transform: scale(1.08) translateY(-4px); }
.product-bottle::before {
  content: '';
  position: absolute;
  top: -10px; left: 50%; transform: translateX(-50%);
  width: 18px; height: 12px;
  background: rgba(200,169,110,0.9);
  border-radius: 3px;
}
.product-badge {
  position: absolute; top: 12px; right: 12px;
  background: var(--gold);
  color: var(--bg);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 10px;
}
.product-info { padding: 1.2rem; }
.product-brand {
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-muted);
  margin-bottom: 0.3rem;
}
.product-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 0.25rem;
}
.product-type {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
}
.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.product-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  color: var(--gold);
}
.product-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 0.3rem 0.8rem;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: 'Jost', sans-serif;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s;
}
.product-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.collection-cta { text-align: center; }

/* ===========================
   STORY
   =========================== */
.story {
  padding: 7rem 4rem;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.story-bg { position: absolute; inset: 0; z-index: 0; }
.orb-gold-1 {
  width: 400px; height: 400px;
  background: var(--gold-muted);
  top: -100px; right: -100px;
  filter: blur(100px);
  opacity: 0.06;
  animation: drift 14s ease-in-out infinite;
  border-radius: 50%;
  position: absolute;
}
.orb-gold-2 {
  width: 300px; height: 300px;
  background: var(--accent);
  bottom: 0; left: 0;
  filter: blur(100px);
  opacity: 0.08;
  animation: drift 17s ease-in-out infinite reverse;
  border-radius: 50%;
  position: absolute;
}
.story-container {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}
.story-content h2 { margin-bottom: 1.5rem; }
.story-content p { color: var(--text-muted); line-height: 1.9; font-size: 0.93rem; margin-bottom: 1rem; }
.story-timeline { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1rem; }
.timeline-item {
  display: flex; align-items: flex-start; gap: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.timeline-item:last-child { border-bottom: none; }
.tl-year {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--gold);
  flex-shrink: 0;
  min-width: 50px;
}
.timeline-item p { color: var(--text-muted); font-size: 0.85rem; line-height: 1.6; }

.story-quote {
  padding: 3rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  position: relative;
  background: rgba(255,255,255,0.02);
}
.story-quote::before {
  content: '"';
  position: absolute;
  top: -20px; left: 24px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 6rem;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
}
blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-style: italic;
  font-weight: 300;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
cite {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-muted);
  font-style: normal;
}

/* ===========================
   TESTIMONIALS
   =========================== */
.testimonials {
  padding: 7rem 0;
  background: var(--bg-2);
  overflow: hidden;
}
.test-header {
  text-align: center;
  padding: 0 4rem;
  margin-bottom: 3rem;
}
.test-track-wrapper { overflow: hidden; }
.test-track {
  display: flex;
  gap: 1.5rem;
  padding: 0 4rem;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.test-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  flex: 0 0 340px;
}
.test-stars { color: var(--gold); margin-bottom: 1rem; font-size: 0.9rem; letter-spacing: 2px; }
.test-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.test-author { display: flex; align-items: center; gap: 0.8rem; }
.test-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--gold-muted));
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  color: white;
  font-family: 'Cormorant Garamond', serif;
}
.test-name { font-size: 0.82rem; color: var(--text); font-weight: 400; }
.test-role { font-size: 0.7rem; color: var(--text-muted); }
.test-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 2rem;
}
.dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: all 0.3s;
}
.dot.active { background: var(--gold); width: 20px; border-radius: 3px; }

/* ===========================
   CONTACT
   =========================== */
.contact {
  padding: 7rem 4rem;
  background: var(--bg);
}
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}
.contact-info h2 { margin-bottom: 2rem; }
.contact-details { display: flex; flex-direction: column; gap: 1.3rem; margin-bottom: 2.5rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.ci-icon { font-size: 1.1rem; margin-top: 2px; flex-shrink: 0; }
.contact-item strong { display: block; font-size: 0.82rem; font-weight: 400; color: var(--text); margin-bottom: 0.15rem; }
.contact-item p { font-size: 0.82rem; color: var(--text-muted); }
.social-links { display: flex; gap: 0.7rem; flex-wrap: wrap; }
.social-btn {
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 0.4rem 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.3s;
  font-weight: 300;
}
.social-btn:hover { border-color: var(--gold); color: var(--gold); }

/* Contact Form */
.contact-form-wrap {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
}
.contact-form h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--text);
  margin-bottom: 1.8rem;
}
.form-group { margin-bottom: 1.3rem; }
.form-group label { display: block; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.5rem; }
.form-group input, .form-group textarea {
  width: 100%;
  background: var(--bg-3);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.85rem 1rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.88rem;
  font-weight: 300;
  border-radius: 6px;
  outline: none;
  transition: border-color 0.3s;
}
.form-group textarea { min-height: 110px; resize: vertical; }
.form-group input:focus, .form-group textarea:focus { border-color: var(--gold); }

/* ===========================
   FOOTER
   =========================== */
.footer {
  padding: 3.5rem 4rem;
  border-top: 1px solid var(--border);
  background: var(--bg-2);
}
.footer-inner { text-align: center; }
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 300;
  margin-bottom: 0.4rem;
}
.footer-logo span { color: var(--gold); }
.footer-tagline {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.8rem;
}
.footer-nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.footer-nav a {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-nav a:hover { color: var(--gold); }
.footer-copy { font-size: 0.72rem; color: rgba(138,128,144,0.5); }

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
  .hero { padding: 5rem 2.5rem 4rem; gap: 2rem; }
  .nav { padding: 1.2rem 2.5rem; }
  .nav.scrolled { padding: 0.9rem 2.5rem; }
  .about-container, .story-container, .contact-container { gap: 3rem; }
  .about, .story, .contact, .collection { padding: 5rem 2.5rem; }
}
@media (max-width: 900px) {
  .hero { flex-direction: column; text-align: center; padding-top: 7rem; }
  .hero-actions { justify-content: center; }
  .hero-scroll { display: none; }
  .about-container, .story-container, .contact-container { grid-template-columns: 1fr; }
  .about-visual { height: 320px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-divider { display: none; }
  .bottle-svg { width: 150px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
}
@media (max-width: 600px) {
  .nav { padding: 1rem 1.5rem; }
  .hero { padding: 5.5rem 1.5rem 3rem; }
  .stats { padding: 2.5rem 1.5rem; }
  .about, .story, .contact, .collection, .testimonials { padding: 4rem 1.5rem; }
  .footer { padding: 2.5rem 1.5rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .test-card { flex: 0 0 280px; }
  .story-quote { padding: 2rem; }
  blockquote { font-size: 1.15rem; }
  .products-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
}
