/* ===================================================================
   MATCH PERFUMES — Royal Obsidian & Liquid Gold Design System
   =================================================================== */

/* —— Google Fonts Import —— */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=Outfit:wght@100;200;300;400;500&display=swap');

/* —— CSS Custom Properties (Design Tokens) —— */
:root {
  /* Obsidian Palette */
  --obsidian-deepest: #050507;
  --obsidian-dark: #0a0a0f;
  --obsidian-base: #0e0e14;
  --obsidian-mid: #13131c;
  --obsidian-light: #1a1a26;
  --obsidian-surface: #1f1f2e;
  --obsidian-elevated: #262638;

  /* Gold Palette */
  --gold-deep: #8B6914;
  --gold-base: #C9A84C;
  --gold-champagne: #D4AF37;
  --gold-light: #E8D48B;
  --gold-glow: #F5E6A3;
  --gold-white: #FFF8E1;
  --gold-shimmer: rgba(212, 175, 55, 0.08);

  /* Gradients */
  --gradient-gold: linear-gradient(135deg, #8B6914 0%, #C9A84C 30%, #D4AF37 50%, #E8D48B 70%, #C9A84C 100%);
  --gradient-gold-text: linear-gradient(135deg, #C9A84C 0%, #F5E6A3 40%, #D4AF37 60%, #E8D48B 100%);
  --gradient-obsidian: linear-gradient(180deg, var(--obsidian-deepest) 0%, var(--obsidian-dark) 40%, var(--obsidian-base) 100%);
  --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
  --gradient-hero-radial: radial-gradient(ellipse at 50% 80%, rgba(212,175,55,0.08) 0%, transparent 60%);
  --gradient-card-border: linear-gradient(135deg, rgba(212,175,55,0.3) 0%, rgba(212,175,55,0.05) 50%, rgba(212,175,55,0.2) 100%);

  /* Shadows */
  --shadow-gold-sm: 0 2px 8px rgba(212, 175, 55, 0.08);
  --shadow-gold-md: 0 4px 20px rgba(212, 175, 55, 0.12);
  --shadow-gold-lg: 0 8px 40px rgba(212, 175, 55, 0.18);
  --shadow-gold-glow: 0 0 60px rgba(212, 175, 55, 0.15), 0 0 120px rgba(212, 175, 55, 0.05);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-card-hover: 0 16px 48px rgba(0, 0, 0, 0.5), 0 0 40px rgba(212, 175, 55, 0.12);

  /* Typography */
  --font-display: 'Playfair Display', 'Georgia', serif;
  --font-elegant: 'Cormorant Garamond', 'Garamond', serif;
  --font-body: 'Outfit', 'Helvetica Neue', sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  /* Transitions */
  --ease-luxury: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition-fast: 0.3s var(--ease-luxury);
  --transition-smooth: 0.6s var(--ease-luxury);
  --transition-slow: 1s var(--ease-luxury);

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
}

/* —— Reset & Base —— */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--obsidian-deepest);
  color: var(--gold-light);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
}

::selection {
  background: rgba(212, 175, 55, 0.3);
  color: var(--gold-white);
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--obsidian-deepest);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--gold-deep), var(--gold-champagne));
  border-radius: 3px;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* —— Utility Classes —— */
.gold-text {
  background: var(--gradient-gold-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gold-line {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold-champagne) 50%, transparent 100%);
  border: none;
}

/* —— Ambient Background Particles / Noise —— */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.015'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

/* —— Preloader —— */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--obsidian-deepest);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: opacity 0.8s var(--ease-luxury), visibility 0.8s;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-brand {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.6em;
  text-transform: uppercase;
  background: var(--gradient-gold-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 2rem;
  animation: preloaderPulse 2s ease-in-out infinite;
}

.preloader-line {
  width: 120px;
  height: 1px;
  background: rgba(212, 175, 55, 0.2);
  position: relative;
  overflow: hidden;
  border-radius: 1px;
}

.preloader-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-gold);
  animation: preloaderSlide 1.5s var(--ease-luxury) infinite;
}

@keyframes preloaderPulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

@keyframes preloaderSlide {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* —— Navigation —— */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
  transition: background 0.5s, backdrop-filter 0.5s, padding 0.5s;
}

.nav.scrolled {
  background: rgba(5, 5, 7, 0.85);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  padding: 1rem 3rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.08);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  background: var(--gradient-gold-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  cursor: pointer;
  transition: opacity var(--transition-fast);
}

.nav-logo:hover {
  opacity: 0.8;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(232, 212, 139, 0.6);
  transition: color var(--transition-fast);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold-champagne);
  transition: width var(--transition-smooth);
}

.nav-links a:hover {
  color: var(--gold-champagne);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  font-family: var(--font-body) !important;
  font-size: 0.7rem !important;
  font-weight: 300 !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
  color: var(--obsidian-deepest) !important;
  background: var(--gradient-gold) !important;
  padding: 0.6rem 1.8rem !important;
  border-radius: 2px;
  transition: all var(--transition-fast) !important;
  box-shadow: var(--shadow-gold-sm);
}

.nav-cta:hover {
  box-shadow: var(--shadow-gold-md) !important;
  transform: translateY(-1px);
}

.nav-cta::after {
  display: none !important;
}

/* Mobile hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold-champagne);
  transition: all var(--transition-fast);
}

/* —— HERO SECTION —— */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0 2rem;
}

/* Ambient golden glow behind hero */
.hero::before {
  content: '';
  position: absolute;
  bottom: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 60%;
  background: radial-gradient(ellipse at center, rgba(212,175,55,0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-hero-radial);
  pointer-events: none;
  z-index: 0;
}

/* Volumetric light rays */
.hero-light-rays {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 800px;
  background: conic-gradient(
    from 180deg at 50% 0%,
    transparent 30%,
    rgba(212, 175, 55, 0.03) 38%,
    transparent 42%,
    transparent 48%,
    rgba(212, 175, 55, 0.025) 50%,
    transparent 52%,
    transparent 58%,
    rgba(212, 175, 55, 0.02) 62%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
  animation: lightRaysPulse 8s ease-in-out infinite;
}

@keyframes lightRaysPulse {
  0%, 100% { opacity: 0.6; transform: translateX(-50%) scale(1); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.05); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Floating particles */
.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--gold-champagne);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat linear infinite;
}

@keyframes particleFloat {
  0% {
    opacity: 0;
    transform: translateY(100vh) scale(0);
  }
  10% {
    opacity: 0.6;
  }
  90% {
    opacity: 0.2;
  }
  100% {
    opacity: 0;
    transform: translateY(-20vh) scale(1);
  }
}

/* Tagline above brand */
.hero-tagline-top {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.6em;
  text-transform: uppercase;
  color: rgba(232, 212, 139, 0.4);
  margin-bottom: var(--space-md);
  opacity: 0;
  margin-top: var(--space-sm);
  transform: translateY(20px);
  animation: heroFadeUp 1s var(--ease-luxury) 0.5s forwards;
}

/* Brand Name */
.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  line-height: 1.1;
  background: linear-gradient(135deg, #A08530 0%, #D4C07A 20%, #F5E6A3 40%, #D4AF37 55%, #E8D48B 70%, #C9A84C 85%, #A08530 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: heroFadeUp 1.2s var(--ease-luxury) 0.7s forwards, goldShimmer 6s ease-in-out infinite;
  opacity: 0;
  transform: translateY(30px);
  text-shadow: none;
  filter: drop-shadow(0 0 40px rgba(212, 175, 55, 0.15));
  position: relative;
}

@keyframes goldShimmer {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Hero perfume image */
.hero-image-wrapper {
  position: relative;
  width: 380px;
  height: 460px;
  margin: var(--space-lg) auto;
  opacity: 0;
  transform: translateY(40px);
  animation: heroFadeUp 1.4s var(--ease-luxury) 1s forwards;
}

.hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 20px 60px rgba(212, 175, 55, 0.15));
  animation: bottleFloat 6s ease-in-out infinite;
}

@keyframes bottleFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-16px); }
}

/* Golden reflection pool beneath bottle */
.hero-reflection {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 280px;
  height: 60px;
  background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  animation: reflectionPulse 6s ease-in-out infinite;
}

@keyframes reflectionPulse {
  0%, 100% { transform: translateX(-50%) scaleX(1); opacity: 0.7; }
  50% { transform: translateX(-50%) scaleX(1.15); opacity: 1; }
}

/* Golden ripple rings */
.hero-ripple {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 40px;
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: 50%;
  animation: rippleExpand 4s ease-out infinite;
}

.hero-ripple:nth-child(2) {
  animation-delay: 1.3s;
}

.hero-ripple:nth-child(3) {
  animation-delay: 2.6s;
}

@keyframes rippleExpand {
  0% {
    width: 100px;
    height: 20px;
    opacity: 0.6;
  }
  100% {
    width: 400px;
    height: 80px;
    opacity: 0;
  }
}

/* Hero subtitle */
.hero-subtitle {
  font-family: var(--font-elegant);
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.15em;
  color: rgba(232, 212, 139, 0.5);
  margin-top: var(--space-sm);
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 1s var(--ease-luxury) 1.3s forwards;
}

/* Hero CTA */
.hero-cta-group {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 1s var(--ease-luxury) 1.6s forwards;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--obsidian-deepest);
  background: var(--gradient-gold);
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-gold-md);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.6s;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  box-shadow: var(--shadow-gold-lg);
  transform: translateY(-2px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-champagne);
  background: transparent;
  padding: 1rem 2rem;
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 2px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-ghost:hover {
  border-color: var(--gold-champagne);
  background: rgba(212, 175, 55, 0.05);
  box-shadow: var(--shadow-gold-sm);
  transform: translateY(-2px);
}

.btn-arrow {
  display: inline-block;
  transition: transform var(--transition-fast);
}

.btn-primary:hover .btn-arrow,
.btn-ghost:hover .btn-arrow {
  transform: translateX(4px);
}

/* Hero scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  opacity: 0;
  animation: heroFadeUp 1s var(--ease-luxury) 2s forwards;
  z-index: 2;
}

.hero-scroll-indicator span {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(232, 212, 139, 0.3);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(212, 175, 55, 0.15);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--gold-champagne);
  animation: scrollLineDown 2s ease-in-out infinite;
}

@keyframes scrollLineDown {
  0% { top: -50%; }
  100% { top: 100%; }
}

@keyframes heroFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* —— DIVIDER SECTION —— */
.section-divider {
  position: relative;
  padding: var(--space-xl) 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-divider .gold-line {
  width: 200px;
}

.divider-diamond {
  width: 8px;
  height: 8px;
  background: var(--gold-champagne);
  transform: rotate(45deg);
  margin: 0 1.5rem;
  opacity: 0.5;
}

/* —— SIGNATURE COLLECTION SECTION —— */
.collection {
  position: relative;
  padding: var(--space-3xl) 2rem;
  overflow: hidden;
}

.collection::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 100%;
  background: radial-gradient(ellipse at 50% 0%, rgba(212,175,55,0.03) 0%, transparent 50%);
  pointer-events: none;
}

.collection-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
  position: relative;
  z-index: 1;
}

.collection-label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.6em;
  text-transform: uppercase;
  color: rgba(232, 212, 139, 0.35);
  margin-bottom: var(--space-sm);
  display: block;
}

.collection-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--gradient-gold-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-md);
}

.collection-desc {
  font-family: var(--font-elegant);
  font-size: 1.1rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(232, 212, 139, 0.4);
  max-width: 500px;
  margin: 0 auto;
  letter-spacing: 0.05em;
}

/* —— PRODUCT CARDS GRID —— */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Glassmorphism Product Card */
.product-card {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-smooth);
  overflow: hidden;
  /* Glassmorphism */
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.04) 0%,
    rgba(255, 255, 255, 0.01) 100%
  );
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border: 1px solid rgba(212, 175, 55, 0.1);
  box-shadow: var(--shadow-card);
}

/* Card border glow gradient overlay */
.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: var(--gradient-card-border);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.5;
  transition: opacity var(--transition-smooth);
}

/* Internal golden glow */
.product-card::after {
  content: '';
  position: absolute;
  bottom: -60%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.06) 0%, transparent 70%);
  pointer-events: none;
  transition: all var(--transition-smooth);
}

.product-card:hover {
  transform: translateY(-12px);
  border-color: rgba(212, 175, 55, 0.25);
  box-shadow: var(--shadow-card-hover);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.07) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
}

.product-card:hover::before {
  opacity: 1;
}

.product-card:hover::after {
  bottom: -40%;
  opacity: 1.5;
}

/* Card number */
.card-number {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 200;
  letter-spacing: 0.2em;
  color: rgba(212, 175, 55, 0.2);
}

/* Product Image */
.product-image-wrapper {
  width: 200px;
  height: 260px;
  position: relative;
  margin-bottom: var(--space-md);
  transition: transform var(--transition-smooth);
}

.product-card:hover .product-image-wrapper {
  transform: translateY(-8px) scale(1.03);
}

.product-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 30px rgba(212, 175, 55, 0.1));
  transition: filter var(--transition-smooth);
}

.product-card:hover .product-image-wrapper img {
  filter: drop-shadow(0 12px 40px rgba(212, 175, 55, 0.2));
}

/* Product Info */
.product-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--gold-light);
  margin-bottom: 0.4rem;
  transition: color var(--transition-fast);
}

.product-card:hover .product-name {
  color: var(--gold-glow);
}

.product-type {
  font-family: var(--font-elegant);
  font-size: 0.85rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(232, 212, 139, 0.35);
  letter-spacing: 0.1em;
  margin-bottom: var(--space-sm);
}

.product-notes {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 200;
  letter-spacing: 0.12em;
  color: rgba(232, 212, 139, 0.3);
  text-transform: uppercase;
  margin-bottom: var(--space-md);
  line-height: 1.8;
}

.product-divider {
  width: 40px;
  margin: 0 auto var(--space-sm);
}

.product-price {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  background: var(--gradient-gold-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-md);
}

.product-btn {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-champagne);
  background: transparent;
  border: 1px solid rgba(212, 175, 55, 0.2);
  padding: 0.7rem 2rem;
  border-radius: 2px;
  cursor: pointer;
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.product-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-gold);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.product-btn span {
  position: relative;
  z-index: 1;
}

.product-btn:hover {
  border-color: var(--gold-champagne);
  color: var(--obsidian-deepest);
}

.product-btn:hover::before {
  opacity: 1;
}

/* —— BRAND STORY / EXPERIENCE SECTION —— */
.experience {
  position: relative;
  padding: var(--space-3xl) 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.experience-inner {
  max-width: 700px;
  text-align: center;
}

.experience-label {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 300;
  letter-spacing: 0.6em;
  text-transform: uppercase;
  color: rgba(232, 212, 139, 0.3);
  margin-bottom: var(--space-md);
  display: block;
}

.experience-quote {
  font-family: var(--font-elegant);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(232, 212, 139, 0.55);
  line-height: 1.8;
  letter-spacing: 0.03em;
}

.experience-quote em {
  background: var(--gradient-gold-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
}

.experience-attribution {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(212, 175, 55, 0.25);
  margin-top: var(--space-lg);
}

/* —— FOOTER —— */
.footer {
  position: relative;
  padding: var(--space-2xl) 3rem var(--space-lg);
  border-top: 1px solid rgba(212, 175, 55, 0.06);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: var(--space-2xl);
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  background: var(--gradient-gold-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-sm);
}

.footer-brand-desc {
  font-family: var(--font-elegant);
  font-size: 0.9rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(232, 212, 139, 0.3);
  line-height: 1.8;
  max-width: 280px;
}

.footer-col-title {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(232, 212, 139, 0.5);
  margin-bottom: var(--space-md);
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.6rem;
}

.footer-col ul li a {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 200;
  color: rgba(232, 212, 139, 0.3);
  transition: color var(--transition-fast);
  letter-spacing: 0.04em;
}

.footer-col ul li a:hover {
  color: var(--gold-champagne);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(212, 175, 55, 0.06);
  max-width: 1200px;
  margin: 0 auto;
}

.footer-copy {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 200;
  color: rgba(232, 212, 139, 0.2);
  letter-spacing: 0.1em;
}

.footer-socials {
  display: flex;
  gap: 1.5rem;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: 50%;
  color: rgba(232, 212, 139, 0.3);
  font-size: 0.8rem;
  transition: all var(--transition-fast);
}

.footer-socials a:hover {
  border-color: var(--gold-champagne);
  color: var(--gold-champagne);
  box-shadow: var(--shadow-gold-sm);
  transform: translateY(-2px);
}

/* —— SCROLL REVEAL ANIMATION —— */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-luxury), transform 0.8s var(--ease-luxury);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* —— RESPONSIVE DESIGN —— */

/* ══════════════ TABLET (1024px) ══════════════ */
@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 700px;
  }
  
  .products-grid .product-card:last-child {
    grid-column: 1 / -1;
    max-width: 340px;
    margin: 0 auto;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .hero-image-wrapper {
    width: 320px;
    height: 400px;
  }
}

/* ══════════════ MOBILE (768px) ══════════════ */
@media (max-width: 768px) {

  /* —— Navigation —— */
  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .nav {
    padding: 1rem 1.25rem;
    background: rgba(5, 5, 7, 0.6);
    backdrop-filter: blur(16px) saturate(1.2);
    -webkit-backdrop-filter: blur(16px) saturate(1.2);
  }

  .nav.scrolled {
    padding: 0.8rem 1.25rem;
  }

  .nav-logo {
    font-size: 0.95rem;
    letter-spacing: 0.35em;
  }

  /* —— Hero Section — Complete Mobile Overhaul —— */
  .hero {
    min-height: 100svh;
    padding: 0 1.25rem;
    padding-top: 4.5rem;
    justify-content: flex-start;
    padding-bottom: 3rem;
  }

  .hero-content {
    padding-top: 1.5rem;
  }

  .hero-tagline-top {
    font-size: 0.5rem;
    letter-spacing: 0.45em;
    margin-bottom: var(--space-sm);
  }

  .hero-brand {
    font-size: clamp(2.4rem, 12vw, 3.8rem);
    letter-spacing: 0.12em;
    line-height: 1.15;
    filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.2));
  }

  .hero-image-wrapper {
    width: 260px;
    height: 320px;
    margin: var(--space-md) auto;
  }

  .hero-image-wrapper img {
    filter: drop-shadow(0 15px 50px rgba(212, 175, 55, 0.2));
  }

  /* Enhanced golden glow on mobile for drama */
  .hero-reflection {
    width: 220px;
    height: 50px;
    bottom: -20px;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.18) 0%, transparent 70%);
  }

  .hero-ripple {
    bottom: -15px;
  }

  /* Adjust volumetric light rays for mobile */
  .hero-light-rays {
    width: 350px;
    height: 500px;
    top: -10%;
    background: conic-gradient(
      from 180deg at 50% 0%,
      transparent 25%,
      rgba(212, 175, 55, 0.05) 38%,
      transparent 42%,
      transparent 48%,
      rgba(212, 175, 55, 0.04) 50%,
      transparent 52%,
      transparent 58%,
      rgba(212, 175, 55, 0.035) 62%,
      transparent 75%
    );
  }

  /* Stronger ambient glow on mobile */
  .hero::before {
    width: 120%;
    height: 50%;
    bottom: -10%;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.08) 0%, transparent 65%);
  }

  .hero-subtitle {
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    margin-top: 0.5rem;
    padding: 0 0.5rem;
  }

  /* CTA Buttons Mobile */
  .hero-cta-group {
    flex-direction: column;
    gap: 0.8rem;
    margin-top: var(--space-lg);
    width: 100%;
    max-width: 280px;
  }

  .btn-primary,
  .btn-ghost {
    width: 100%;
    justify-content: center;
    padding: 0.9rem 2rem;
    font-size: 0.65rem;
  }

  .btn-primary {
    box-shadow: var(--shadow-gold-md), 0 0 30px rgba(212, 175, 55, 0.1);
  }

  /* Scroll indicator */
  .hero-scroll-indicator {
    bottom: 1.2rem;
  }

  .scroll-line {
    height: 28px;
  }

  .hero-scroll-indicator span {
    font-size: 0.5rem;
  }

  /* —— Dividers —— */
  .section-divider {
    padding: var(--space-lg) 0;
  }

  .section-divider .gold-line {
    width: 80px;
  }

  .divider-diamond {
    width: 6px;
    height: 6px;
    margin: 0 1rem;
  }

  /* —— Collection Section —— */
  .collection {
    padding: var(--space-2xl) 1.25rem;
  }

  .collection-header {
    margin-bottom: var(--space-2xl);
  }

  .collection-label {
    font-size: 0.55rem;
    letter-spacing: 0.5em;
  }

  .collection-title {
    font-size: clamp(1.6rem, 7vw, 2.4rem);
    letter-spacing: 0.1em;
  }

  .collection-desc {
    font-size: 0.95rem;
    padding: 0 0.5rem;
  }

  .products-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    gap: 1.5rem;
  }
  
  .products-grid .product-card:last-child {
    max-width: none;
  }

  /* Premium mobile card style */
  .product-card {
    padding: 2rem 1.5rem 1.8rem;
    border-radius: var(--radius-md);
  }

  .product-image-wrapper {
    width: 180px;
    height: 230px;
  }

  .product-name {
    font-size: 1.15rem;
  }

  .product-type {
    font-size: 0.8rem;
  }

  .product-notes {
    font-size: 0.65rem;
  }

  .product-price {
    font-size: 1rem;
  }

  .product-btn {
    padding: 0.65rem 1.8rem;
    font-size: 0.55rem;
  }

  /* —— Experience Section —— */
  .experience {
    padding: var(--space-2xl) 1.25rem;
  }

  .experience-label {
    font-size: 0.55rem;
    letter-spacing: 0.5em;
  }

  .experience-quote {
    font-size: 1.15rem;
    line-height: 1.9;
    padding: 0 0.25rem;
  }

  .experience-attribution {
    font-size: 0.6rem;
    margin-top: var(--space-md);
  }

  /* —— Footer —— */
  .footer {
    padding: var(--space-xl) 1.25rem var(--space-md);
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: var(--space-xl);
    text-align: center;
  }

  .footer-brand-desc {
    max-width: 100%;
  }

  .footer-col ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0 1.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1.2rem;
    text-align: center;
  }
}

/* ══════════════ SMALL MOBILE (480px) ══════════════ */
@media (max-width: 480px) {
  .hero {
    padding-top: 4rem;
  }

  .hero-brand {
    font-size: clamp(2rem, 13vw, 3rem);
    letter-spacing: 0.08em;
  }

  .hero-image-wrapper {
    width: 220px;
    height: 280px;
    margin: var(--space-sm) auto;
  }

  .hero-reflection {
    width: 180px;
    height: 40px;
  }

  .hero-subtitle {
    font-size: 0.85rem;
    letter-spacing: 0.05em;
  }

  .hero-cta-group {
    max-width: 250px;
  }

  .btn-primary,
  .btn-ghost {
    padding: 0.8rem 1.5rem;
    font-size: 0.6rem;
    letter-spacing: 0.2em;
  }

  .products-grid {
    max-width: 320px;
  }

  .product-card {
    padding: 1.8rem 1.25rem 1.5rem;
  }

  .product-image-wrapper {
    width: 160px;
    height: 200px;
  }

  .product-name {
    font-size: 1.05rem;
  }

  .collection-title {
    font-size: clamp(1.4rem, 8vw, 2rem);
  }

  .experience-quote {
    font-size: 1.05rem;
  }

  .footer-col ul {
    gap: 0 1rem;
  }
}

/* ══════════════ EXTRA SMALL (360px) ══════════════ */
@media (max-width: 360px) {
  .nav {
    padding: 0.8rem 1rem;
  }

  .nav-logo {
    font-size: 0.8rem;
    letter-spacing: 0.25em;
  }

  .hero-brand {
    font-size: 2rem;
    letter-spacing: 0.06em;
  }

  .hero-tagline-top {
    font-size: 0.45rem;
    letter-spacing: 0.35em;
  }

  .hero-image-wrapper {
    width: 190px;
    height: 240px;
  }

  .hero-subtitle {
    font-size: 0.78rem;
  }

  .hero-cta-group {
    max-width: 230px;
  }

  .btn-primary,
  .btn-ghost {
    padding: 0.75rem 1.2rem;
    font-size: 0.55rem;
  }

  .products-grid {
    max-width: 290px;
    gap: 1.25rem;
  }

  .product-image-wrapper {
    width: 140px;
    height: 180px;
  }

  .product-name {
    font-size: 1rem;
    letter-spacing: 0.08em;
  }

  .collection-title {
    font-size: 1.3rem;
  }
}

/* ══════════════ TOUCH DEVICE ENHANCEMENTS ══════════════ */
@media (hover: none) and (pointer: coarse) {
  /* Remove tilt effect on touch — handled by JS too */
  .product-card:hover {
    transform: translateY(-6px);
  }

  .product-card:hover .product-image-wrapper {
    transform: translateY(-4px) scale(1.01);
  }

  /* Improve tap targets */
  .product-btn {
    padding: 0.8rem 2rem;
    min-height: 44px;
  }

  .btn-primary,
  .btn-ghost {
    min-height: 48px;
  }

  .nav-hamburger {
    padding: 8px;
    margin: -8px;
  }

  .footer-col ul li {
    margin-bottom: 0.8rem;
  }

  .footer-col ul li a {
    padding: 4px 0;
  }

  .footer-socials a {
    width: 44px;
    height: 44px;
  }
}

/* ══════════════ LANDSCAPE MOBILE ══════════════ */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    min-height: auto;
    padding: 5rem 2rem 2rem;
  }

  .hero-image-wrapper {
    width: 160px;
    height: 200px;
    margin: var(--space-xs) auto;
  }

  .hero-brand {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 0.8rem;
    margin-top: 0.3rem;
  }

  .hero-cta-group {
    flex-direction: row;
    margin-top: var(--space-sm);
  }

  .hero-scroll-indicator {
    display: none;
  }

  .hero-reflection {
    width: 140px;
    height: 30px;
    bottom: -10px;
  }
}
