/* ============================================================
   ZI FRAGRANCIA · THEME SYSTEM
   :root variables for modular luxury design
   ============================================================ */

:root {
  /* -------- BACKGROUNDS -------- */
  --bg-primary: #010100;
  --bg-section: #181617;
  --bg-glass: rgba(255, 255, 255, 0.04);
  --bg-glass-hover: rgba(255, 255, 255, 0.06);

  /* -------- GOLD PALETTE -------- */
  --gold-primary: #b88011;
  --gold-highlight: #f1cb7c;
  --gold-glow: rgba(184, 128, 17, 0.15);
  --gold-glow-soft: rgba(184, 128, 17, 0.06);
  --gold-border: rgba(184, 128, 17, 0.12);
  --gold-border-light: rgba(184, 128, 17, 0.06);

  /* -------- TEXT COLOURS -------- */
  --text-white: #ffffff;
  --text-soft: rgba(255, 255, 255, 0.75);
  --text-muted: rgba(255, 255, 255, 0.55);
  --text-faint: rgba(255, 255, 255, 0.3);
  --text-inverse: #010100;

  /* -------- GLASS EFFECTS -------- */
  --glass-bg: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.06);
  --glass-border-hover: rgba(184, 128, 17, 0.12);

  /* -------- TYPOGRAPHY -------- */
  --font-serif: 'Cormorant Garamond', 'Canela', 'Bodoni Moda', serif;
  --font-sans: 'Inter', 'Manrope', 'General Sans', sans-serif;

  --text-xs: 0.7rem;
  --text-sm: 0.8rem;
  --text-base: 0.95rem;
  --text-lg: 1.1rem;
  --text-xl: 1.3rem;
  --text-2xl: 1.8rem;
  --text-3xl: 2.5rem;
  --text-4xl: 3.5rem;
  --text-5xl: 4.5rem;

  /* -------- SPACING (8px system) -------- */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-8: 3rem;
  --space-10: 4rem;
  --space-12: 6rem;
  --space-16: 8rem;

  /* -------- LAYOUT -------- */
  --container-max: 1480px;
  --nav-height: 90px;
  --grid-gap: 2rem;
  --border-radius-sm: 12px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  --border-radius-full: 50px;

  /* -------- SHADOWS -------- */
  --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.2);
  --shadow-medium: 0 20px 60px rgba(0, 0, 0, 0.3);
  --shadow-heavy: 0 20px 60px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 8px 50px rgba(184, 128, 17, 0.2);
  --shadow-glow-heavy: 0 8px 50px rgba(184, 128, 17, 0.4);

  /* -------- ANIMATION DURATIONS -------- */
  --duration-slow: 0.8s;
  --duration-medium: 0.6s;
  --duration-fast: 0.3s;
  --duration-float: 6s;
  --duration-pulse: 4s;

  /* -------- Z-INDICES -------- */
  /* ============================================================
   Z-INDEX LAYERS
   ============================================================ */

--z-behind:         -1;
--z-base:            1;
--z-content:        10;

--z-grain:          50;

--z-nav:          1000;
--z-mobile-menu:  2000;
--z-search:       3000;
--z-cart:         4000;
--z-modal:        5000;
--z-toast:        6000;
--z-tooltip:      7000;

  /* -------- GIANT WORD -------- */
  --giant-opacity: 0.025;
  --giant-size-min: 8rem;
  --giant-size-max: 80rem;
}

/* ============================================================
   GLOBAL RESET & BASE
   ============================================================ */

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

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  background: var(--bg-primary);
  color: var(--text-soft);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--gold-primary);
  border-radius: 10px;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.section-label {
  font-size: var(--text-xs);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: var(--space-4);
  font-weight: 400;
  display: block;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--text-white);
  margin-bottom: var(--space-2);
}

.section-subtitle {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  font-weight: 400;
  color: var(--text-muted);
  margin-bottom: var(--space-6);
  font-style: italic;
}

.gold-text {
  color: var(--gold-highlight);
}

/* ============================================================
   FILM GRAIN OVERLAY
   ============================================================ */

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

/* ============================================================
   GIANT BACKGROUND WORDS
   ============================================================ */

.giant-word {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-serif);
  font-size: clamp(var(--giant-size-min), 30vw, var(--giant-size-max));
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(184, 128, 17, var(--giant-opacity));
  pointer-events: none;
  white-space: nowrap;
  user-select: none;
  width: 100%;
  text-align: center;
  z-index: var(--z-behind);
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  background: linear-gradient(135deg, var(--gold-highlight) 0%, var(--gold-primary) 100%);
  color: var(--text-inverse);
  padding: 14px 32px;
  border-radius: var(--border-radius-full);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: var(--text-sm);
  text-decoration: none;
  transition: all var(--duration-medium) cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 4px 30px var(--gold-glow);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: var(--shadow-glow-heavy);
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.25) 50%, transparent 60%);
  transform: rotate(45deg) translateX(-100%);
  transition: var(--duration-medium);
}

.btn-primary:hover::after {
  transform: rotate(45deg) translateX(100%);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  padding: 14px 32px;
  border-radius: var(--border-radius-full);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: var(--text-sm);
  text-decoration: none;
  color: var(--text-soft);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all var(--duration-fast) ease;
  background: transparent;
}

.btn-secondary:hover {
  border-color: var(--gold-primary);
  color: var(--gold-highlight);
  transform: translateY(-2px);
}

/* ============================================================
   NAVIGATION
   ============================================================ */

/* ============================================================
   NAVIGATION
   ============================================================ */

.navbar {
    position: fixed;
    inset: 0 0 auto 0;

    width: 100%;
    height: var(--nav-height);

    padding: 0;

    z-index: var(--z-nav);

    background: transparent;
    backdrop-filter: blur(0);
    border-bottom: 1px solid transparent;

    transition:
        background var(--duration-medium) cubic-bezier(0.25, 0.46, 0.45, 0.94),
        backdrop-filter var(--duration-medium) cubic-bezier(0.25, 0.46, 0.45, 0.94),
        border-color var(--duration-medium) cubic-bezier(0.25, 0.46, 0.45, 0.94),
        box-shadow var(--duration-medium) cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.navbar.scrolled {
    background: rgba(1, 1, 0, 0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--gold-border-light);
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.5);
}

/* ============================================================
   NAV CONTAINER
   ============================================================ */

.nav-container {
    width: 100%;
    max-width: var(--container-max);
    height: 100%;

    margin: 0 auto;
    padding-inline: 1rem;

    display: flex;
    align-items: center;
    justify-content: space-between;

    box-sizing: border-box;
}

/* ============================================================
   LOGO
   ============================================================ */

.nav-logo {
    flex: 0 0 auto;
}

.nav-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-image {
    display: block;
    height: 50px;
    width: auto;
    max-width: 100%;
}

/* ============================================================
   NAVIGATION LINKS
   ============================================================ */

.nav-links {
    flex: 1;

    display: flex;
    justify-content: center;
    align-items: center;

    list-style: none;

    gap: 2.5rem;

    font-size: var(--text-sm);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.nav-links a {
    position: relative;

    color: var(--text-muted);
    text-decoration: none;

    transition: color var(--duration-fast) ease;
}

.nav-links a::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: -4px;

    width: 0;
    height: 1px;

    background: var(--gold-primary);

    transform: translateX(-50%);

    transition: width var(--duration-fast) ease;
}

.nav-links a:hover {
    color: var(--text-white);
}

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

/* ============================================================
   CTA BUTTON
   ============================================================ */

.nav-cta .btn-nav {
    padding: 8px 20px;
    font-size: var(--text-xs);
}

/* ============================================================
   RIGHT ACTIONS
   ============================================================ */

.nav-actions {
    flex: 0 0 auto;

    display: flex;
    align-items: center;

    gap: 1rem;
}

.nav-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 40px;
    height: 40px;

    color: var(--text-muted);
    text-decoration: none;

    font-size: 1.1rem;

    transition:
        color var(--duration-fast),
        transform var(--duration-fast);
}

.nav-icon:hover {
    color: var(--gold-highlight);
    transform: translateY(-2px);
}

/* ============================================================
   HAMBURGER BUTTON
   ============================================================ */

.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 10px;
  color: var(--text-white);
  font-size: 1.8rem;
  line-height: 1;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
}

.nav-hamburger i {
  font-size: inherit;
  color: var(--text-white);
  display: inline-block;
}

.nav-hamburger:hover {
  color: var(--gold-highlight);
}

.nav-hamburger:hover i {
  color: var(--gold-highlight);
}

@media (max-width: 1024px) {
  .nav-hamburger {
    display: flex !important;
  }
}

@media (min-width: 1025px) {
  .nav-hamburger {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .nav-hamburger {
    font-size: 1.5rem;
    padding: 6px 8px;
    min-width: 40px;
    min-height: 40px;
  }
}

@media (max-width: 480px) {
  .nav-hamburger {
    font-size: 1.3rem;
    padding: 4px 6px;
    min-width: 36px;
    min-height: 36px;
  }
}

/* ============================================================
   MOBILE MENU
   ============================================================ */

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: var(--z-mobile-menu);
  background: rgba(1, 1, 0, 0.98);
  backdrop-filter: blur(20px);
  padding: 100px var(--space-6) var(--space-6);
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(100%);
  transition: all 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0);
}

.mobile-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  max-width: 380px;
  padding: 0;
  margin: 0;
}

.mobile-links li {
  width: 100%;
  text-align: center;
}

.mobile-links a {
  color: var(--text-soft);
  text-decoration: none;
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 400;
  transition: color var(--duration-fast) ease;
  display: inline-block;
  padding: var(--space-2) var(--space-4);
}

.mobile-links a:hover {
  color: var(--gold-highlight);
}

.mobile-links .mobile-cta {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 14px 40px;
  margin-top: var(--space-2);
  width: auto;
}

.menu-open {
  overflow: hidden;
}

@media (max-width: 1024px) {
  .mobile-menu {
    padding: 80px var(--space-4) var(--space-4);
    justify-content: center;
  }

  .mobile-links a {
    font-size: 1.8rem;
    padding: 0.4rem 1rem;
  }

  .mobile-links {
    gap: 0.75rem;
    max-width: 380px;
  }

  .mobile-links .mobile-cta {
    font-size: 0.9rem;
    padding: 12px 32px;
    margin-top: 0.5rem;
  }
}

@media (max-width: 480px) {
  .mobile-menu {
    padding: 70px var(--space-3) var(--space-3);
  }

  .mobile-links {
    gap: 0.5rem;
    max-width: 320px;
  }

  .mobile-links a {
    font-size: 1.5rem;
    padding: 0.3rem 0.75rem;
  }

  .mobile-links .mobile-cta {
    font-size: 0.8rem;
    padding: 10px 28px;
    margin-top: 0.25rem;
  }
}

/* ============================================================
   SECTION DIVIDER
   ============================================================ */

.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-6);
  padding: var(--space-10) 0;
  position: relative;
}

.divider-line {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
  position: relative;
}

.divider-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--gold-highlight), transparent);
  animation: shimmer 3s ease-in-out infinite;
}

.divider-icon {
  color: var(--gold-primary);
  font-size: 0.5rem;
  animation: pulse-gold 2s ease-in-out infinite;
}

/* ============================================================
   HERO — Mobile Responsive
   ============================================================ */

.hero {
  height: 120vh;
  min-height: 800px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg-primary);
}

.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(ellipse at center, var(--gold-glow), transparent 70%);
  pointer-events: none;
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: var(--z-base);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-6);
  align-items: center;
  position: relative;
  z-index: var(--z-content);
  width: 100%;
}

.hero-content {
  max-width: 700px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--text-white);
  margin: var(--space-4) 0 var(--space-5);
}

.hero-sub {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 1.8vw, 1.8rem);
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: var(--space-4);
}

.hero-body {
  color: var(--text-muted);
  font-size: var(--text-base);
  line-height: 1.9;
  max-width: 580px;
  margin-bottom: var(--space-6);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: 2.5rem;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-faint);
}

.hero-stats .gold-text {
  font-weight: 600;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.bottle-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bottle-wrapper.small img {
  max-height: 400px;
}

.bottle-image {
  max-height: 550px;
  width: auto;
  border-radius: 0 !important;
  position: relative;
  z-index: var(--z-content);
  filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.5));
  animation: float var(--duration-float) ease-in-out infinite;
  transition: all var(--duration-slow) cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.bottle-image:hover {
  transform: scale(1.04) rotate(1deg);
  filter: drop-shadow(0 30px 80px var(--gold-glow));
}

.bottle-glow {
  position: absolute;
  width: 90%;
  height: 90%;
  background: radial-gradient(ellipse at center, var(--gold-glow), transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  animation: pulse-glow var(--duration-pulse) ease-in-out infinite;
}

.bottle-reflection {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%) scaleY(-1);
  opacity: 0.1;
  filter: blur(3px);
  width: 70%;
  height: 100px;
  background: linear-gradient(to bottom, var(--gold-glow), transparent);
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
}

.gold-ring {
  position: absolute;
  width: 120%;
  height: 120%;
  border: 1px solid var(--gold-border-light);
  border-radius: 50%;
  animation: rotate-slow 30s linear infinite;
  pointer-events: none;
}

.gold-ring::before {
  content: '';
  position: absolute;
  inset: 20%;
  border: 1px solid var(--gold-border-light);
  border-radius: 50%;
}

.scroll-indicator {
  position: absolute;
  bottom: var(--space-6);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  color: var(--text-faint);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  animation: float 3s ease-in-out infinite;
}

/* ============================================================
   IMAGE ROUNDED CORNERS (All except hero bottle)
   ============================================================ */

.collection-image {
  border-radius: var(--border-radius-md);
  max-height: 400px;
  width: auto;
  display: block;
}

.signature-image {
  border-radius: var(--border-radius-lg);
  max-height: 500px;
  width: auto;
  display: block;
}

.bottle-wrapper.small img {
  border-radius: var(--border-radius-md);
  max-height: 400px;
  width: auto;
  display: block;
}

.footer-logo {
  height: 50px;
  width: auto;
  display: block;
  margin-bottom: var(--space-4);
  image-rendering: auto;
  max-width: 200px;
  object-fit: contain;
}

.footer-brand img {
  width: auto;
  height: 50px;
  object-fit: contain;
}

/* ============================================================
   ABOUT
   ============================================================ */

.about {
  position: relative;
  padding: var(--space-12) 0;
  background: var(--bg-section);
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-10);
  align-items: center;
  position: relative;
  z-index: var(--z-content);
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: var(--space-5);
  font-size: var(--text-base);
  line-height: 1.9;
}

.quote-card {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  padding: var(--space-6) 2.5rem;
  border-radius: var(--border-radius-sm);
  position: relative;
  margin: var(--space-6) 0;
}

.quote-mark {
  font-family: var(--font-serif);
  font-size: 4rem;
  color: var(--gold-primary);
  opacity: 0.2;
  position: absolute;
  top: -0.5rem;
  left: var(--space-4);
  line-height: 0.5;
}

.quote-card p {
  font-family: var(--font-serif);
  font-size: var(--text-xl);
  font-style: italic;
  color: var(--text-soft);
  margin-bottom: var(--space-2);
  padding-left: var(--space-5);
}

.quote-attribution {
  font-size: var(--text-sm);
  color: var(--text-faint);
  padding-left: var(--space-5);
}

.about-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
}

.about-illustration {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 400px;
  background: radial-gradient(ellipse at center, var(--gold-glow-soft), transparent 70%);
  border-radius: var(--border-radius-lg);
}

.floating-ingredient {
  position: absolute;
  font-size: 2.5rem;
  color: var(--gold-border);
  animation: float var(--duration-float) ease-in-out infinite;
}

.about-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  height: 70%;
  background: radial-gradient(ellipse, var(--gold-glow-soft), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}

/* ============================================================
   PHILOSOPHY
   ============================================================ */

.philosophy {
  position: relative;
  padding: var(--space-12) 0;
  background: var(--bg-primary);
  overflow: hidden;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  position: relative;
  z-index: var(--z-content);
  margin-top: var(--space-6);
}

.philosophy-card {
  background: var(--bg-glass);
  backdrop-filter: blur(10px);
  border: 1px solid var(--gold-border-light);
  padding: var(--space-8) var(--space-6);
  border-radius: var(--border-radius-md);
  transition: all var(--duration-medium) cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.philosophy-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--border-radius-md);
  padding: 1px;
  background: linear-gradient(135deg, var(--gold-primary), transparent, var(--gold-primary));
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  opacity: 0;
  transition: opacity var(--duration-medium);
}

.philosophy-card:hover::before {
  opacity: 1;
}

.philosophy-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-heavy);
  border-color: var(--gold-border);
}

.card-icon {
  font-size: 2.5rem;
  color: var(--gold-primary);
  margin-bottom: var(--space-5);
  opacity: 0.6;
}

.philosophy-card h4 {
  font-family: var(--font-serif);
  font-size: var(--text-2xl);
  color: var(--text-white);
  margin-bottom: var(--space-2);
}

.philosophy-card p {
  color: var(--text-muted);
  font-size: var(--text-base);
  line-height: 1.8;
}

/* ============================================================
   COLLECTIONS
   ============================================================ */

.collections {
  padding: var(--space-10) 0 0;
  background: var(--bg-section);
  position: relative;
}

.collection-block {
  position: relative;
  padding: var(--space-12) 0;
  overflow: hidden;
  border-top: 1px solid var(--gold-border-light);
}

.collection-block:first-of-type {
  border-top: none;
}

.collection-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-10);
  align-items: center;
  position: relative;
  z-index: var(--z-content);
}

.collection-grid.reverse {
  direction: rtl;
}
.collection-grid.reverse .collection-content {
  direction: ltr;
}
.collection-grid.reverse .collection-visual {
  direction: ltr;
}

.collection-grid.centered {
  grid-template-columns: 1fr;
  text-align: center;
  justify-items: center;
}

.collection-content.center {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.collection-tag {
  font-size: var(--text-xs);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-primary);
  font-weight: 400;
  display: block;
  margin-bottom: var(--space-2);
}

.collection-content h3 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3vw, 3.2rem);
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: var(--space-4);
}

.collection-content p {
  color: var(--text-muted);
  font-size: var(--text-base);
  line-height: 1.8;
  max-width: 450px;
}

.collection-grid.centered .collection-content p {
  max-width: 600px;
  margin: 0 auto var(--space-5);
}

.note-pills {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin: var(--space-5) 0;
}

.note-pills span {
  padding: 0.4rem 1rem;
  border: 1px solid var(--gold-border-light);
  border-radius: var(--border-radius-full);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-faint);
}

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

.collection-visual.center-bottle {
  justify-content: center;
}

/* ============================================================
   SIGNATURE
   ============================================================ */

.signature {
  padding: var(--space-12) 0 0;
  background: var(--bg-primary);
  position: relative;
}

.signature-panels {
  margin-top: var(--space-6);
}

.signature-panel {
  padding: var(--space-10) 0;
  border-bottom: 1px solid var(--gold-border-light);
}

.signature-panel:last-child {
  border-bottom: none;
}

.signature-panel.alt {
  background: rgba(255, 255, 255, 0.01);
}

.panel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-10);
  align-items: center;
}

.panel-grid.reverse {
  direction: rtl;
}
.panel-grid.reverse .panel-content {
  direction: ltr;
}
.panel-grid.reverse .panel-image {
  direction: ltr;
}

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

.panel-content .product-name {
  font-family: var(--font-serif);
  font-size: var(--text-2xl);
  font-weight: 600;
  color: var(--text-white);
  display: block;
  margin-bottom: var(--space-2);
}

.panel-content .product-category {
  font-size: var(--text-sm);
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: var(--space-4);
}

.panel-content p {
  color: var(--text-muted);
  font-size: var(--text-base);
  line-height: 1.8;
  max-width: 450px;
}

.product-price {
  font-family: var(--font-serif);
  font-size: var(--text-3xl);
  color: var(--gold-highlight);
  margin: var(--space-5) 0;
}

/* ============================================================
   FRAGRANCE JOURNEY
   ============================================================ */

.journey {
  padding: var(--space-12) 0;
  background: var(--bg-section);
  position: relative;
  overflow: hidden;
}

.journey-flow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  position: relative;
  z-index: var(--z-content);
  padding: var(--space-6) 0;
}

.journey-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.journey-orb {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 30% 30%, rgba(241, 203, 124, 0.06), rgba(184, 128, 17, 0.02));
  border: 1px solid var(--gold-border);
  box-shadow: 0 0 60px var(--gold-glow-soft), inset 0 0 60px var(--gold-glow-soft);
  position: relative;
  animation: pulse-orb var(--duration-pulse) ease-in-out infinite;
}

.journey-orb::before {
  content: '';
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  border: 1px solid var(--gold-border-light);
  animation: expand-orb var(--duration-float) ease-in-out infinite;
}

.orb-glow {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, var(--gold-glow-soft), transparent 70%);
  animation: pulse-glow var(--duration-pulse) ease-in-out infinite;
}

.orb-label {
  font-family: var(--font-serif);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--gold-highlight);
  position: relative;
  z-index: var(--z-content);
}

.orb-desc {
  font-size: var(--text-sm);
  color: var(--text-faint);
  text-align: center;
  max-width: 140px;
  margin-top: var(--space-2);
  position: relative;
  z-index: var(--z-content);
  line-height: 1.4;
}

.flow-line {
  width: 2px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold-border), var(--gold-border-light));
  position: relative;
}

.flow-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(241, 203, 124, 0.4), transparent);
  animation: flow-down 3s ease-in-out infinite;
}

/* ============================================================
   WHY CHOOSE
   ============================================================ */

.why-choose {
  padding: var(--space-12) 0;
  background: var(--bg-primary);
  position: relative;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  position: relative;
  z-index: var(--z-content);
  margin-top: var(--space-6);
}

.value-card {
  background: var(--bg-glass);
  backdrop-filter: blur(10px);
  border: 1px solid var(--gold-border-light);
  padding: 2.5rem var(--space-6);
  border-radius: var(--border-radius-md);
  text-align: center;
  transition: all var(--duration-medium) cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: var(--shadow-soft);
}

.value-card:nth-child(1) { transform: translateY(0); }
.value-card:nth-child(2) { transform: translateY(15px); }
.value-card:nth-child(3) { transform: translateY(-10px); }
.value-card:nth-child(4) { transform: translateY(20px); }
.value-card:nth-child(5) { transform: translateY(-15px); }
.value-card:nth-child(6) { transform: translateY(8px); }

.value-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 60px var(--gold-glow-soft);
  border-color: var(--gold-border);
}

.value-card i {
  font-size: 2.2rem;
  color: var(--gold-primary);
  margin-bottom: var(--space-4);
  display: block;
  transition: transform var(--duration-medium);
}

.value-card:hover i {
  transform: rotate(-5deg) scale(1.1);
}

.value-card h4 {
  font-family: var(--font-serif);
  font-size: var(--text-xl);
  color: var(--text-white);
  margin-bottom: var(--space-2);
}

.value-card p {
  font-size: var(--text-sm);
  color: var(--text-faint);
  line-height: 1.5;
}

/* ============================================================
   LUXURY BANNER
   ============================================================ */

.luxury-banner {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--bg-primary);
  overflow: hidden;
  padding: var(--space-10) 0;
}

.luxury-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, var(--gold-glow-soft), transparent 70%);
  animation: pulse-glow 8s ease-in-out infinite;
}

.banner-overlay {
  position: relative;
  z-index: var(--z-content);
  width: 100%;
}

.banner-content {
  max-width: 700px;
  margin: 0 auto;
}

.banner-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  color: var(--text-white);
  margin-bottom: var(--space-5);
}

.banner-content p {
  color: var(--text-muted);
  font-size: var(--text-lg);
  line-height: 1.9;
  margin-bottom: var(--space-6);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */

.testimonials {
  padding: var(--space-12) 0;
  background: var(--bg-section);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-6);
}

.testimonial-card {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  padding: 2.5rem var(--space-6);
  border-radius: var(--border-radius-md);
  position: relative;
  transition: all var(--duration-fast) ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: var(--glass-border-hover);
  box-shadow: var(--shadow-medium);
}

.testimonial-card .quote-mark {
  font-size: 3rem;
  color: var(--gold-primary);
  opacity: 0.15;
  position: absolute;
  top: var(--space-2);
  left: 1.2rem;
  line-height: 0.5;
}

.testimonial-card p {
  font-family: var(--font-serif);
  font-size: var(--text-lg);
  line-height: 1.7;
  color: var(--text-soft);
  margin-bottom: var(--space-4);
  padding-top: var(--space-5);
}

.testimonial-author {
  font-size: var(--text-sm);
  color: var(--text-faint);
  display: block;
}

/* ============================================================
   FAQ
   ============================================================ */

.faq {
  padding: var(--space-12) 0;
  background: var(--bg-primary);
}

.faq-list {
  max-width: 800px;
  margin: var(--space-6) auto 0;
}

.faq-item {
  border-bottom: 1px solid var(--gold-border-light);
  padding: var(--space-5) 0;
  cursor: pointer;
  transition: all var(--duration-fast) ease;
}

.faq-item:hover {
  border-color: var(--gold-border);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-serif);
  font-size: var(--text-xl);
  color: var(--text-white);
  padding: var(--space-2) 0;
}

.faq-toggle {
  width: 32px;
  height: 32px;
  border: 1px solid var(--gold-border-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--duration-fast) ease;
  color: var(--gold-primary);
  font-size: var(--text-base);
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  background: var(--gold-glow-soft);
  border-color: var(--gold-primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all var(--duration-medium) cubic-bezier(0.25, 0.46, 0.45, 0.94);
  color: var(--text-faint);
  line-height: 1.8;
  font-size: var(--text-base);
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-top: var(--space-4);
}

/* ============================================================
   NEWSLETTER
   ============================================================ */

.newsletter {
  padding: var(--space-12) 0;
  background: var(--bg-section);
  position: relative;
  overflow: hidden;
}

.newsletter-panel {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  padding: var(--space-10);
  border-radius: var(--border-radius-lg);
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: var(--z-content);
  text-align: center;
  overflow: hidden;
}

.newsletter-panel::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: var(--border-radius-lg);
  padding: 2px;
  background: linear-gradient(135deg, var(--gold-primary), transparent 40%, transparent 60%, var(--gold-primary));
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  animation: rotate-border 8s linear infinite;
}

.newsletter-orb {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(241, 203, 124, 0.15), rgba(184, 128, 17, 0.05));
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-5);
  font-size: var(--text-2xl);
  color: var(--gold-primary);
  animation: pulse-glow 3s ease-in-out infinite;
}

.newsletter-panel h2 {
  font-family: var(--font-serif);
  font-size: var(--text-3xl);
  color: var(--text-white);
  margin-bottom: var(--space-2);
}

.newsletter-panel p {
  color: var(--text-faint);
  margin-bottom: var(--space-6);
  font-size: var(--text-base);
}

.newsletter-form {
  display: flex;
  gap: var(--space-3);
}

.newsletter-form input {
  flex: 1;
  background: var(--bg-glass);
  border: 1px solid var(--gold-border-light);
  color: var(--text-white);
  padding: 0.9rem 1.5rem;
  border-radius: var(--border-radius-full);
  font-size: var(--text-base);
  transition: all var(--duration-fast) ease;
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--gold-primary);
  background: var(--bg-glass-hover);
  box-shadow: 0 0 30px var(--gold-glow-soft);
}

.newsletter-form input::placeholder {
  color: var(--text-faint);
}

.newsletter-form .btn-primary {
  white-space: nowrap;
}

/* ============================================================
   CONTACT
   ============================================================ */

.contact {
  padding: var(--space-12) 0;
  background: var(--bg-primary);
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-10);
  align-items: start;
  position: relative;
  z-index: var(--z-content);
}

.contact-text p {
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: var(--space-6);
  max-width: 500px;
}

.contact-details {
  margin: var(--space-6) 0;
}

.contact-details p {
  margin-bottom: var(--space-3);
  font-size: var(--text-base);
  color: var(--text-faint);
}

.contact-details i {
  width: 1.5rem;
}

.social-icons {
  display: flex;
  gap: var(--space-4);
  margin-top: var(--space-6);
}

.social-icons a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-faint);
  text-decoration: none;
  transition: all var(--duration-fast) ease;
}

.social-icons a:hover {
  border-color: var(--gold-primary);
  color: var(--gold-highlight);
  transform: translateY(-3px);
}

.contact-card {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-lg);
  padding: 2.5rem;
  overflow: hidden;
}

.map-placeholder {
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--border-radius-sm);
  padding: var(--space-8) var(--space-6);
  text-align: center;
  border: 1px solid var(--glass-border);
  margin-bottom: var(--space-5);
}

.map-placeholder i {
  font-size: 2.5rem;
  color: var(--gold-primary);
  opacity: 0.3;
  display: block;
  margin-bottom: var(--space-2);
}

.map-placeholder span {
  color: var(--text-faint);
  font-size: var(--text-base);
}

.contact-card-details p {
  padding: var(--space-2) 0;
  color: var(--text-faint);
  font-size: var(--text-sm);
}

.contact-card-details i {
  color: var(--gold-primary);
  width: 1.5rem;
  opacity: 0.5;
}

/* ============================================================
   FINAL CTA
   ============================================================ */

.final-cta {
  padding: var(--space-12) 0;
  background: var(--bg-section);
  text-align: center;
  border-top: 1px solid var(--gold-border-light);
  border-bottom: 1px solid var(--gold-border-light);
}

.final-cta h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 4vw, 4rem);
  color: var(--text-white);
  margin-bottom: var(--space-4);
}

.final-cta p {
  color: var(--text-faint);
  max-width: 600px;
  margin: 0 auto var(--space-6);
  font-size: var(--text-base);
  line-height: 1.8;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  justify-content: center;
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  background: var(--bg-primary);
  padding: var(--space-10) 0 var(--space-6);
  border-top: 1px solid var(--gold-border-light);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-8);
  padding-bottom: var(--space-8);
  border-bottom: 1px solid var(--glass-border);
}

.footer-brand p {
  color: var(--text-faint);
  font-size: var(--text-sm);
  max-width: 250px;
}

.footer-social {
  display: flex;
  gap: var(--space-4);
  margin-top: var(--space-5);
}

.footer-social a {
  color: var(--text-faint);
  text-decoration: none;
  transition: color var(--duration-fast) ease;
  font-size: 1.2rem;
}

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

.footer-links h4 {
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-faint);
  margin-bottom: var(--space-4);
}

.footer-links a {
  display: block;
  color: var(--text-faint);
  text-decoration: none;
  font-size: var(--text-sm);
  padding: var(--space-2) 0;
  transition: color var(--duration-fast) ease;
}

.footer-links a:hover {
  color: var(--gold-highlight);
}

.footer-bottom {
  padding-top: var(--space-6);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
}

.footer-bottom .divider-line {
  width: 40px;
}

.footer-bottom p {
  color: var(--text-faint);
  font-size: var(--text-xs);
  letter-spacing: 0.05em;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.05); }
}

@keyframes pulse-gold {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.2); }
}

@keyframes pulse-orb {
  0%, 100% { transform: scale(1); box-shadow: 0 0 60px var(--gold-glow-soft); }
  50% { transform: scale(1.02); box-shadow: 0 0 80px var(--gold-glow); }
}

@keyframes expand-orb {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.1); opacity: 0.1; }
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

@keyframes flow-down {
  0% { transform: translateY(-100%); opacity: 1; }
  100% { transform: translateY(100%); opacity: 0; }
}

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

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

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */

/* Tablet & Mobile — show hamburger, hide desktop nav */
@media (max-width: 1024px) {
  .nav-links {
    display: none !important;
  }

  .nav-hamburger {
    display: flex !important;
  }

  .hero-grid,
  .about-grid,
  .panel-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .hero-content {
    max-width: 100%;
    order: 2;
  }

  .hero-visual {
    order: 1;
  }

  .hero-body {
    max-width: 100%;
  }

  .panel-grid.reverse {
    direction: ltr;
  }
  .panel-grid.reverse .panel-image {
    order: -1;
  }

  .collection-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
  .collection-grid.reverse {
    direction: ltr;
  }
  .collection-grid.reverse .collection-visual {
    order: -1;
  }

  .value-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .philosophy-grid {
    grid-template-columns: 1fr 1fr;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-5);
  }
}

/* Desktop — force hide mobile menu and hamburger */
@media (min-width: 1025px) {
  .mobile-menu,
  .mobile-menu.active {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: translateX(100%) !important;
  }

  .nav-hamburger {
    display: none !important;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .hero {
    height: auto;
    min-height: 100vh;
    padding: calc(var(--nav-height) + var(--space-6)) 0 var(--space-10);
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
    text-align: center;
  }

  .hero-content {
    padding: 0 var(--space-4);
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 2.8rem);
    margin: var(--space-3) 0 var(--space-4);
  }

  .hero-sub {
    font-size: clamp(1rem, 4vw, 1.4rem);
  }

  .hero-body {
    font-size: var(--text-sm);
    padding: 0 var(--space-2);
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: var(--space-3);
    width: 100%;
  }

  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
  }

  .hero-stats {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-4);
    font-size: var(--text-xs);
  }

  .hero-visual {
    order: -1;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .bottle-image {
    max-height: 280px;
    width: auto;
  }

  .bottle-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .bottle-wrapper.small img {
    max-height: 250px;
  }

  .gold-ring {
    width: 100%;
    height: 100%;
  }

  .scroll-indicator {
    bottom: var(--space-4);
  }

  .philosophy-grid {
    grid-template-columns: 1fr;
  }

  .value-grid {
    grid-template-columns: 1fr;
  }

  .value-card {
    transform: none !important;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .newsletter-panel {
    padding: var(--space-6);
  }

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

  .quote-card {
    text-align: left;
  }

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

  .contact-details {
    text-align: left;
    max-width: 300px;
    margin: var(--space-6) auto;
  }

  .social-icons {
    justify-content: center;
  }

  .collection-content p {
    max-width: 100%;
  }

  .panel-content p {
    max-width: 100%;
  }

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

  .panel-content .btn-primary {
    margin: 0 auto;
  }

  .journey-orb {
    width: 150px;
    height: 150px;
  }

  .orb-label {
    font-size: var(--text-lg);
  }

  .orb-desc {
    font-size: var(--text-xs);
  }

  .section-divider {
    padding: var(--space-6) 0;
  }

  .divider-line {
    width: 30px;
  }

  .navbar {
    padding: 0 var(--space-4);
  }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================================
   FIX: Mobile Nav Actions — Ensure icons are visible
   ============================================================ */

@media (max-width: 768px) {
    .nav-container {
        padding: 0 0.75rem;
    }

    .logo-image {
        height: 35px; /* Smaller logo on mobile */
        max-width: 120px;
    }

    .nav-actions {
        gap: 0.5rem; /* Reduce gap between icons */
        flex-shrink: 0; /* Prevent icons from shrinking */
    }

    .nav-icon {
        font-size: 0.9rem;
        padding: 0.25rem;
    }

    .nav-hamburger {
        font-size: 1.2rem !important;
        padding: 4px 6px !important;
        min-width: 32px !important;
        min-height: 32px !important;
    }
}

@media (max-width: 480px) {
    .logo-image {
        height: 30px;
        max-width: 100px;
    }

    .nav-actions {
        gap: 0.35rem;
    }

    .nav-icon {
        font-size: 0.8rem;
        padding: 0.2rem;
    }

    .nav-hamburger {
        font-size: 1rem !important;
        padding: 3px 4px !important;
        min-width: 28px !important;
        min-height: 28px !important;
    }

    .nav-container {
        padding: 0 0.5rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        height: 65px;
        padding: 0 0.75rem;
    }
}

@media (max-width: 480px) {
    .navbar {
        height: 55px;
        padding: 0 0.5rem;
    }
}