/* ELNOIRE DESIGN SYSTEM */

:root {
  /* Colors */
  --bg-primary: #080808;
  --bg-secondary: #111111;
  --bg-tertiary: #161616;
  
  --gold-primary: #D4AF37; /* Classic Gold */
  --gold-light: #E6D5B8;   /* Pale Gold/Champagne */
  --gold-dark: #A38045;    /* Antique Gold */
  --gold-glow: rgba(212, 175, 55, 0.15);
  --gold-glow-strong: rgba(212, 175, 55, 0.4);
  
  --text-primary: #F4F1EA;   /* Alabaster Cream */
  --text-secondary: #A09E9A; /* Soft Warm Gray */
  --text-muted: #6B6965;     /* Dark Muted Gray */
  
  --border-subtle: rgba(212, 175, 55, 0.12);
  --border-medium: rgba(212, 175, 55, 0.25);
  --border-gold: #D4AF37;
  
  /* Fonts */
  --font-serif-display: 'Cinzel', 'Georgia', serif;
  --font-serif-text: 'Cormorant Garamond', 'Georgia', serif;
  --font-sans: 'Montserrat', 'Inter', sans-serif;
  
  /* Layout */
  --container-max-width: 1200px;
  --transition-smooth: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-fast: all 0.2s ease;
}

/* Base resets & styling */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
  background-color: var(--bg-primary);
}

/* Hide default cursor on desktop for custom luxury cursor */
@media (pointer: fine) {
  body {
    cursor: none;
  }
  a, button, input, select, textarea, [role="button"], [role="tab"] {
    cursor: none;
  }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--gold-dark);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-primary);
}

/* Typography */
h1, h2, h3, h4, .hero-brand-name {
  font-family: var(--font-serif-display);
  letter-spacing: 0.1em;
  font-weight: 300;
}

p {
  font-family: var(--font-sans);
  color: var(--text-secondary);
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 40px;
}

/* Custom Cursor */
.custom-cursor {
  width: 6px;
  height: 6px;
  background-color: var(--gold-primary);
  border-radius: 50%;
  position: fixed;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9999;
  transition: width 0.3s, height 0.3s, background-color 0.3s;
}

.custom-cursor-follower {
  width: 32px;
  height: 32px;
  border: 1px solid var(--gold-primary);
  border-radius: 50%;
  position: fixed;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9998;
  transition: transform 0.1s ease-out, width 0.3s, height 0.3s, border-color 0.3s, background-color 0.3s;
  opacity: 0.7;
}

/* Cursor Hover states */
.custom-cursor.hovered {
  width: 12px;
  height: 12px;
  background-color: var(--gold-light);
}

.custom-cursor-follower.hovered {
  width: 50px;
  height: 50px;
  border-color: var(--gold-light);
  background-color: rgba(212, 175, 55, 0.05);
}

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(8, 8, 8, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--border-subtle);
  transition: var(--transition-smooth);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 90px;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 40px;
}

.nav {
  display: flex;
  gap: 40px;
  width: 30%;
}

.nav-left {
  justify-content: flex-end;
}

.nav-right {
  justify-content: flex-start;
}

.nav-link {
  font-family: var(--font-sans);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition-fast);
  padding: 10px 0;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background-color: var(--gold-primary);
  transition: var(--transition-smooth);
  transform: translateX(-50%);
}

.nav-link:hover {
  color: var(--text-primary);
}

.nav-link:hover::after {
  width: 100%;
}

.brand-logo {
  width: 260px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-img {
  max-width: 100%;
  max-height: 100%;
}

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  gap: 6px;
  z-index: 1010;
}

.btn-line {
  display: block;
  width: 24px;
  height: 1px;
  background-color: var(--gold-primary);
  transition: var(--transition-fast);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--bg-primary);
  z-index: 1005;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.mobile-nav.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 30px;
  text-align: center;
}

.mobile-link {
  font-family: var(--font-serif-display);
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-primary);
  text-decoration: none;
  transition: var(--transition-fast);
}

.mobile-link:hover {
  color: var(--gold-primary);
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  border-bottom: 1px solid var(--border-subtle);
}

.hero-bg-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 10;
}

.hero-logo-wrapper {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}

.hero-full-logo {
  max-width: 320px;
  height: auto;
  filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.4));
  opacity: 0.95;
  transition: var(--transition-smooth);
}

.hero-full-logo:hover {
  transform: scale(1.02);
  filter: drop-shadow(0 4px 20px rgba(212, 175, 55, 0.15));
}

.hero-heading {
  font-size: clamp(32px, 5vw, 64px);
  line-height: 1.15;
  margin-bottom: 24px;
  max-width: 850px;
  color: var(--text-primary);
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);
  font-family: var(--font-serif-text);
  font-weight: 300;
  font-style: italic;
}

.hero-subheading {
  font-size: clamp(14px, 1.8vw, 18px);
  font-weight: 300;
  color: var(--text-secondary);
  max-width: 580px;
  margin-bottom: 45px;
  letter-spacing: 0.05em;
}

/* Luxury Buttons */
.btn-gold-luxury {
  display: inline-block;
  text-decoration: none;
  padding: 16px 42px;
  border: 1px solid var(--gold-primary);
  background: transparent;
  color: var(--gold-primary);
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.btn-gold-luxury span {
  position: relative;
  z-index: 2;
}

.btn-gold-luxury::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
  transition: 0.6s;
}

.btn-gold-luxury:hover::before {
  left: 100%;
}

.btn-gold-luxury:hover {
  color: var(--bg-primary);
  background-color: var(--gold-primary);
  box-shadow: 0 0 25px var(--gold-glow);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.scroll-text {
  font-family: var(--font-sans);
  font-size: 9px;
  letter-spacing: 0.3em;
  color: var(--text-muted);
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(180deg, var(--gold-primary) 0%, transparent 100%);
  animation: scrollDown 2s infinite ease-in-out;
}

@keyframes scrollDown {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
  51% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

/* Sections General */
section {
  padding: 140px 0;
  position: relative;
}

.section-header {
  margin-bottom: 80px;
}

.section-tag {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--gold-dark);
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  color: var(--text-primary);
  font-weight: 300;
}

.section-subtitle {
  font-family: var(--font-serif-text);
  font-size: 18px;
  font-style: italic;
  color: var(--text-secondary);
  margin-top: 10px;
}

.section-divider {
  width: 60px;
  height: 1px;
  background-color: var(--gold-primary);
  margin: 25px auto 0;
}

.section-divider.align-left {
  margin: 25px 0 0;
}

.text-center {
  text-align: center;
}

/* Signature Collection Grid Layout */
.collection-section {
  background-color: var(--bg-secondary);
  border-bottom: 1px solid var(--border-subtle);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: var(--container-max-width);
  margin: 0 auto;
}

.product-card {
  display: flex;
  flex-direction: column;
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.product-card:hover {
  border-color: var(--border-medium);
  box-shadow: 0 10px 40px rgba(0,0,0,0.6), 0 0 30px var(--gold-glow);
}

.product-image-container {
  position: relative;
  overflow: hidden;
  background-color: #070707;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 380px;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.product-card:hover .product-img {
  transform: scale(1.05);
}

.product-image-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, var(--gold-glow) 0%, transparent 60%);
  opacity: 0.6;
  pointer-events: none;
}

.product-tag-overlay {
  position: absolute;
  top: 20px;
  right: 20px;
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--gold-primary);
  border: 1px solid var(--border-subtle);
  padding: 4px 10px;
  background-color: rgba(17, 17, 17, 0.85);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.product-info-grid {
  padding: 35px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-category {
  font-family: var(--font-sans);
  font-size: 8px;
  letter-spacing: 0.25em;
  color: var(--gold-primary);
  margin-bottom: 12px;
}

.product-title-grid {
  font-family: var(--font-serif-text);
  font-size: 24px;
  margin-bottom: 15px;
  font-weight: 300;
  color: var(--text-primary);
  letter-spacing: 0.05em;
}

.product-desc-grid {
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 25px;
  font-weight: 300;
}

.product-specs-grid {
  list-style: none;
  border-top: 1px solid var(--border-subtle);
  margin-bottom: 30px;
}

.product-specs-grid li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 11px;
}

.product-specs-grid li span {
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.product-specs-grid li span + span {
  color: var(--text-primary);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}

.product-action-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.product-action-grid .price {
  font-family: var(--font-serif-display);
  font-size: 18px;
  color: var(--gold-light);
}

/* Button Gold Outline */
.btn-gold-outline {
  background: transparent;
  border: 1px solid var(--gold-primary);
  color: var(--gold-primary);
  padding: 12px 28px;
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: var(--transition-smooth);
}

.btn-gold-outline.hover-fill:hover {
  background-color: var(--gold-primary);
  color: var(--bg-primary);
  box-shadow: 0 0 15px var(--gold-glow);
}

/* Philosophy Section */
.philosophy-section {
  background-color: var(--bg-primary);
  border-bottom: 1px solid var(--border-subtle);
}

.philosophy-container {
  position: relative;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.philosophy-text-col {
  padding-right: 40px;
}

.philosophy-heading {
  font-size: clamp(26px, 3.5vw, 40px);
  line-height: 1.3;
  margin-top: 10px;
  font-family: var(--font-serif-text);
  font-weight: 300;
  font-style: italic;
}

.philosophy-body {
  margin-top: 30px;
  font-size: 15px;
  line-height: 1.8;
  font-weight: 300;
}

.philosophy-image-col {
  display: flex;
  justify-content: center;
}

.luxury-frame {
  position: relative;
  padding: 15px;
  width: 100%;
  max-width: 450px;
}

.philosophy-img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid var(--border-subtle);
  filter: grayscale(15%);
  transition: var(--transition-smooth);
}

.luxury-frame:hover .philosophy-img {
  filter: grayscale(0%);
}

.frame-border-top-left, .frame-border-bottom-right {
  position: absolute;
  width: 30px;
  height: 30px;
  border-color: var(--gold-primary);
  border-style: solid;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.frame-border-top-left {
  top: 0;
  left: 0;
  border-width: 1px 0 0 1px;
}

.frame-border-bottom-right {
  bottom: 0;
  right: 0;
  border-width: 0 1px 1px 0;
}

.luxury-frame:hover .frame-border-top-left {
  top: -8px;
  left: -8px;
  width: 45px;
  height: 45px;
}

.luxury-frame:hover .frame-border-bottom-right {
  bottom: -8px;
  right: -8px;
  width: 45px;
  height: 45px;
}

/* Therapeutic Alchemy */
.alchemy-section {
  background-color: var(--bg-primary);
  border-bottom: 1px solid var(--border-subtle);
}

.alchemy-tabs-container {
  max-width: 950px;
  margin: 50px auto 0;
}

.alchemy-nav {
  display: flex;
  justify-content: center;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 60px;
  gap: 20px;
}

.alchemy-tab-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  padding: 20px 30px;
  font-family: var(--font-serif-display);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  transition: var(--transition-smooth);
  position: relative;
}

.alchemy-tab-btn::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--gold-primary);
  transition: var(--transition-smooth);
  transform: translateX(-50%);
}

.alchemy-tab-btn.active {
  color: var(--text-primary);
  text-shadow: 0 0 10px var(--gold-glow-strong);
}

.alchemy-tab-btn.active::after {
  width: 100%;
}

.alchemy-content-wrapper {
  position: relative;
  min-height: 400px;
}

.alchemy-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease, transform 0.5s ease;
  transform: translateY(15px);
}

.alchemy-panel.active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.alchemy-panel-layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: center;
}

.alchemy-benefit-title {
  font-family: var(--font-serif-text);
  font-size: 28px;
  margin-bottom: 24px;
  color: var(--text-primary);
  font-weight: 300;
  font-style: italic;
}

.alchemy-benefit-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
  font-weight: 300;
}

.alchemy-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-top: 30px;
}

.feature-item {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  padding: 20px;
  transition: var(--transition-smooth);
}

.feature-item:hover {
  border-color: var(--border-medium);
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.feature-title {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--gold-primary);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.feature-desc {
  font-size: 11px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.alchemy-panel-illustration {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Gold Atom/Molecule Art */
.gold-atom-art {
  width: 220px;
  height: 220px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.atom-ring {
  position: absolute;
  border: 1px solid var(--gold-primary);
  border-radius: 50%;
  opacity: 0.35;
}

.ring-1 {
  width: 100%;
  height: 100%;
  animation: spinAtom 12s infinite linear;
  border-style: dashed;
}

.ring-2 {
  width: 80%;
  height: 80%;
  transform: rotate(45deg);
  animation: spinAtomReverse 16s infinite linear;
}

.ring-3 {
  width: 60%;
  height: 60%;
  transform: rotate(-45deg);
  animation: spinAtom 20s infinite linear;
  border-style: dotted;
}

.atom-nucleus {
  width: 14px;
  height: 14px;
  background-color: var(--gold-primary);
  border-radius: 50%;
  box-shadow: 0 0 20px var(--gold-primary);
}

.atom-label {
  position: absolute;
  bottom: -30px;
  font-family: var(--font-sans);
  font-size: 9px;
  letter-spacing: 0.3em;
  color: var(--text-muted);
  text-transform: uppercase;
}

@keyframes spinAtom {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes spinAtomReverse {
  0% { transform: rotate(360deg); }
  100% { transform: rotate(0deg); }
}

/* Brewing Ritual Section */
.ritual-section {
  background-color: var(--bg-secondary);
  border-bottom: 1px solid var(--border-subtle);
}

.ritual-tabs-container {
  max-width: 900px;
  margin: 50px auto 0;
}

.ritual-nav {
  display: flex;
  justify-content: center;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 60px;
}

.ritual-tab-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  padding: 20px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: var(--transition-smooth);
  position: relative;
}

.ritual-tab-btn::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--gold-primary);
  transition: var(--transition-smooth);
  transform: translateX(-50%);
}

.ritual-tab-btn.active {
  color: var(--text-primary);
}

.ritual-tab-btn.active::after {
  width: 100%;
}

.step-num {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--gold-primary);
  opacity: 0.6;
  transition: var(--transition-smooth);
}

.ritual-tab-btn.active .step-num {
  opacity: 1;
  text-shadow: 0 0 10px var(--gold-glow-strong);
}

.step-title {
  font-family: var(--font-serif-display);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.ritual-content-wrapper {
  position: relative;
  min-height: 350px;
}

.ritual-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease, transform 0.5s ease;
  transform: translateY(15px);
}

.ritual-panel.active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.ritual-panel-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 50px;
  align-items: center;
}

.ritual-step-name {
  font-family: var(--font-serif-text);
  font-size: 26px;
  margin-bottom: 20px;
  color: var(--text-primary);
  font-weight: 300;
}

.ritual-step-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 25px;
}

.ritual-step-points {
  list-style: none;
}

.ritual-step-points li {
  font-size: 13px;
  color: var(--text-muted);
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
}

.ritual-step-points li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--gold-primary);
}

.ritual-panel-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.ritual-icon-wrapper {
  width: 180px;
  height: 180px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ritual-svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.1));
  animation: pulseGold 4s infinite ease-in-out;
}

@keyframes pulseGold {
  0%, 100% {
    transform: scale(1);
    opacity: 0.9;
  }
  50% {
    transform: scale(1.03);
    opacity: 1;
    filter: drop-shadow(0 0 20px var(--gold-glow-strong));
  }
}

/* Footer */
.footer {
  background-color: var(--bg-primary);
  padding: 100px 0 40px;
  border-top: 1px solid var(--border-subtle);
  position: relative;
  overflow: hidden;
}

.footer-glow {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 250px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 1fr 1.5fr;
  gap: 50px;
  margin-bottom: 80px;
}

.footer-logo {
  width: 180px;
  margin-bottom: 20px;
}

.footer-tagline {
  font-family: var(--font-serif-text);
  font-size: 13px;
  font-style: italic;
  color: var(--text-muted);
  max-width: 250px;
}

.footer-header {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold-primary);
  margin-bottom: 25px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  font-size: 12px;
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--text-primary);
  padding-left: 4px;
}

.footer-text {
  font-size: 12px;
  color: var(--text-secondary);
}

.footer-newsletter-desc {
  font-size: 13px;
  margin-bottom: 20px;
  color: var(--text-secondary);
}

.footer-form {
  display: flex;
  border-bottom: 1px solid var(--border-medium);
  padding-bottom: 8px;
}

.footer-input {
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 12px;
  flex-grow: 1;
  padding: 5px 0;
  outline: none;
}

.footer-input::placeholder {
  color: var(--text-muted);
}

.footer-submit-btn {
  background: none;
  border: none;
  color: var(--gold-primary);
  font-size: 16px;
  transition: var(--transition-fast);
  padding: 0 5px;
}

.footer-submit-btn:hover {
  transform: translateX(3px);
  color: var(--text-primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-size: 11px;
  color: var(--text-muted);
}

.footer-socials {
  display: flex;
  gap: 30px;
}

.social-link {
  font-size: 11px;
  color: var(--text-secondary);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  transition: var(--transition-fast);
}

.social-link:hover {
  color: var(--gold-primary);
}

/* Animations on Scroll */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s cubic-bezier(0.25, 1, 0.5, 1), transform 1s cubic-bezier(0.25, 1, 0.5, 1);
}

.fade-in.appear {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
  section {
    padding: 100px 0;
  }
  
  .header-container {
    height: 80px;
  }
  
  .nav {
    display: none;
  }
  
  .mobile-menu-btn {
    display: flex;
  }
  
  .product-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .product-image-container {
    height: 360px;
  }
  
  .philosophy-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .philosophy-text-col {
    padding-right: 0;
  }
  
  .alchemy-panel-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .alchemy-panel-illustration {
    order: -1;
    margin-bottom: 10px;
  }
  
  .alchemy-nav {
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
  }
  
  .alchemy-tab-btn {
    padding: 10px 15px;
    font-size: 11px;
  }
  
  .ritual-panel-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .ritual-panel-visual {
    order: -1;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 575px) {
  .container {
    padding: 0 24px;
  }
  
  .header-container {
    padding: 0 24px;
  }
  
  section {
    padding: 80px 0;
  }
  
  .product-info-grid {
    padding: 30px 20px;
  }
  
  .product-action-grid {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
    text-align: center;
  }
  
  .alchemy-features {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .ritual-tab-btn {
    padding: 15px 10px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}
