:root {
  --accent: #c9a84c;
  --accent-rgb: 201, 168, 76;
  --accent-soft: #e0bc60;
  --accent-deep: #8a6f2a;
  --bg: #0a0a0a;
  --bg-card: #111111;
  --bg-dark: #0d0d0d;
  --white: #ffffff;
  --transition-accent: background-color 1.2s ease, color 1.2s ease, border-color 1.2s ease, box-shadow 1.2s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.5;
}

h1, h2, h3, h4 { font-family: 'Playfair Display', serif; }

body, .bg-accent, .text-accent, .border-accent {
  transition: var(--transition-accent);
}

/* ===== Background canvas ===== */
#bg-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* ===== Cursor glow ===== */
.cursor-dot, .cursor-ring {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  border-radius: 50%;
}
.cursor-dot {
  width: 8px; height: 8px;
  background: var(--accent);
  mix-blend-mode: screen;
  transition: transform 0.1s ease;
}
.cursor-ring {
  width: 40px; height: 40px;
  border: 1px solid rgba(var(--accent-rgb), 0.5);
  z-index: 9998;
  transition: width 0.2s, height 0.2s, transform 0.12s ease;
}
@media (hover: none) {
  .cursor-dot, .cursor-ring { display: none !important; }
}

/* ===== Scroll progress ===== */
.scroll-progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 3px;
  z-index: 9997;
  pointer-events: none;
}
.scroll-bar {
  height: 100%;
  background: var(--accent);
  width: 0;
  box-shadow: 0 0 10px var(--accent);
  transition: width 0.15s ease-out;
}

/* ===== Palette indicator ===== */
.palette-indicator {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 9990;
  pointer-events: none;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(10,10,10,0.8);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(var(--accent-rgb), 0.3);
  padding: 10px 16px;
  border-radius: 9999px;
}
.palette-swatch-wrap { position: relative; }
.palette-swatch {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--accent);
  transition: background-color 1s ease;
}
.palette-ping {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.4;
  animation: ping 2s cubic-bezier(0,0,0.2,1) infinite;
}
@keyframes ping {
  75%, 100% { transform: scale(2.2); opacity: 0; }
}
.palette-text { display: flex; flex-direction: column; line-height: 1.2; }
.palette-name {
  color: rgba(255,255,255,0.8);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
}
.palette-countdown {
  color: rgba(255,255,255,0.3);
  font-size: 9px;
  letter-spacing: 0.1em;
}

/* ===== Layout ===== */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 1152px; }
.section { padding: 96px 24px; position: relative; z-index: 1; }

/* ===== Nav ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: all 0.7s ease;
  background: transparent;
}
.nav.scrolled {
  background: rgba(10,10,10,0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(var(--accent-rgb), 0.2);
  box-shadow: 0 0 30px rgba(var(--accent-rgb), 0.15);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-logo-icon {
  position: relative;
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-logo-diamond {
  position: absolute;
  border: 1px solid rgba(var(--accent-rgb), 0.4);
  transform: rotate(45deg);
  transition: transform 0.7s ease;
}
.nav-logo-diamond-outer { inset: 0; }
.nav-logo-diamond-inner { inset: 6px; border-color: rgba(var(--accent-rgb), 0.2); }
.nav-logo:hover .nav-logo-diamond-outer { transform: rotate(135deg); }
.nav-logo:hover .nav-logo-diamond-inner { transform: rotate(225deg); }
.nav-logo-letter {
  color: var(--accent);
  font-weight: 700;
  font-size: 14px;
  position: relative;
  z-index: 1;
}
.nav-logo-text { display: flex; flex-direction: column; line-height: 1; text-align: left; }
.nav-logo-title {
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.3em;
  font-size: 14px;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
}
.nav-logo-sub {
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.5em;
  font-size: 10px;
  text-transform: uppercase;
  margin-top: 2px;
  font-family: 'Inter', sans-serif;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-link {
  position: relative;
  padding: 8px 16px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s ease;
}
.nav-link:hover { color: var(--white); }
.nav-link.active { color: var(--accent); }
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 1px;
  background: var(--accent);
  width: 0;
  transition: width 0.3s ease;
}
.nav-link.active::after { width: 24px; }
.nav-link:hover::after { width: 16px; }
.nav-link.active:hover::after { width: 24px; }
.mobile-toggle {
  display: none;
  color: rgba(255,255,255,0.8);
  background: none;
  border: none;
  cursor: pointer;
}
.mobile-toggle:hover { color: var(--accent); }
.mobile-menu {
  background: rgba(10,10,10,0.98);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(var(--accent-rgb), 0.2);
  animation: fadeUp 0.4s ease-out;
}
.mobile-menu.hidden { display: none; }
.mobile-menu ul { list-style: none; padding: 16px 0; }
.mobile-menu .nav-link {
  width: 100%;
  text-align: left;
  padding: 12px 24px;
}
.mobile-menu .nav-link.active { background: rgba(var(--accent-rgb), 0.1); }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-toggle { display: block; }
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  background: rgba(var(--accent-rgb), 0.1);
  filter: blur(120px);
}
.hero-orb-1 { top: 25%; left: 25%; width: 500px; height: 500px; animation: floatSlow 10s ease-in-out infinite; }
.hero-orb-2 { bottom: 25%; right: 25%; width: 400px; height: 400px; filter: blur(100px); animation: float 6s ease-in-out infinite; }
.hero-line {
  position: absolute;
  top: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(var(--accent-rgb), 0.3), transparent);
}
.hero-line-left { left: 10%; }
.hero-line-right { right: 10%; }
.hero-shape {
  position: absolute;
  border: 1px solid rgba(var(--accent-rgb), 0.2);
}
.hero-shape-1 { top: 80px; left: 80px; width: 64px; height: 64px; transform: rotate(45deg); animation: float 6s ease-in-out infinite; opacity: 0.4; }
.hero-shape-2 { bottom: 128px; left: 128px; width: 40px; height: 40px; transform: rotate(12deg); animation: floatSlow 10s ease-in-out infinite; opacity: 0.5; border-color: rgba(var(--accent-rgb), 0.3); }
.hero-shape-3 { top: 33%; right: 96px; width: 80px; height: 80px; border-radius: 50%; animation: pulseGlow 3s ease-in-out infinite; opacity: 0.3; }
.hero-shape-4 { bottom: 80px; right: 33%; width: 48px; height: 48px; transform: rotate(45deg); animation: float 6s ease-in-out infinite; opacity: 0.4; border-color: rgba(var(--accent-rgb), 0.4); }
.hero-dot {
  position: absolute;
  border-radius: 50%;
  background: rgba(var(--accent-rgb), 0.4);
}
.hero-dot-1 { top: 50%; left: 40px; width: 12px; height: 12px; animation: pulseGlow 3s ease-in-out infinite; }
.hero-dot-2 { top: 25%; right: 40px; width: 8px; height: 8px; background: rgba(var(--accent-rgb), 0.6); animation: pulse 2s ease-in-out infinite; }

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 24px;
  max-width: 1024px;
  margin: 0 auto;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 32px;
}
.hero-eyebrow svg { color: var(--accent); flex-shrink: 0; }
.hero-eyebrow span {
  color: var(--accent);
  letter-spacing: 0.4em;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
}
.hero-line-small { height: 1px; width: 48px; }
.hero-line-r { background: linear-gradient(to right, transparent, rgba(var(--accent-rgb), 0.6)); }
.hero-line-l { background: linear-gradient(to left, transparent, rgba(var(--accent-rgb), 0.6)); }
.hero-title {
  font-size: clamp(60px, 12vw, 144px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 8px;
}
.hero-title-white { color: var(--white); }
.hero-sub {
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.6em;
  text-transform: uppercase;
  font-size: 14px;
  margin-top: 24px;
  margin-bottom: 24px;
  font-family: 'Inter', sans-serif;
}
.hero-morph {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
}
.hero-morph span {
  font-size: clamp(20px, 4vw, 30px);
  font-weight: 700;
  font-family: 'Playfair Display', serif;
}
.cursor-blink { animation: blink 1s step-end infinite; }
@keyframes blink { 50% { opacity: 0; } }
.hero-desc {
  color: rgba(255,255,255,0.6);
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.6;
  max-width: 768px;
  margin: 0 auto 48px;
  font-weight: 300;
}
.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}
.hero-stats {
  margin-top: 80px;
  display: flex;
  gap: 48px;
  justify-content: center;
  text-align: center;
}
.hero-stat-value {
  font-size: 30px;
  font-weight: 700;
  color: var(--accent);
  transition: transform 0.3s ease;
  font-family: 'Playfair Display', serif;
}
.hero-stat:hover .hero-stat-value { transform: scale(1.1); }
.hero-stat-label {
  color: rgba(255,255,255,0.4);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 4px;
  font-family: 'Inter', sans-serif;
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.3);
  background: none;
  border: none;
  cursor: pointer;
  animation: bounce 2s ease-in-out infinite;
  transition: color 0.3s ease;
}
.hero-scroll:hover { color: var(--accent); }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
}

@media (min-width: 640px) {
  .hero-buttons { flex-direction: row; }
}

/* ===== Buttons ===== */
.btn {
  padding: 16px 40px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
}
.btn-primary {
  background: var(--accent);
  color: var(--bg);
}
.btn-primary:hover {
  background: var(--accent-soft);
  box-shadow: 0 0 30px rgba(var(--accent-rgb), 0.3);
  transform: scale(1.03);
}
.btn-outline {
  background: transparent;
  border: 1px solid rgba(var(--accent-rgb), 0.5);
  color: var(--accent);
}
.btn-outline:hover {
  background: rgba(var(--accent-rgb), 0.1);
  border-color: var(--accent);
}
.btn-full { width: 100%; }

/* ===== Section headers ===== */
.section-header { text-align: center; margin-bottom: 64px; }
.section-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
}
.section-eyebrow-left { justify-content: flex-start; }
.section-eyebrow span {
  color: var(--accent);
  letter-spacing: 0.4em;
  font-size: 12px;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
}
.section-line { height: 1px; width: 64px; }
.section-line-r { background: linear-gradient(to right, transparent, rgba(var(--accent-rgb), 0.6)); }
.section-line-l { background: linear-gradient(to left, transparent, rgba(var(--accent-rgb), 0.6)); }
.section-title {
  font-size: clamp(36px, 5vw, 48px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}
.section-desc {
  color: rgba(255,255,255,0.5);
  max-width: 576px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ===== Marquee ===== */
.marquee {
  position: relative;
  z-index: 1;
  padding: 20px 0;
  overflow: hidden;
  border-top: 1px solid rgba(var(--accent-rgb), 0.2);
  border-bottom: 1px solid rgba(var(--accent-rgb), 0.2);
  background: rgba(13,13,13,0.6);
  backdrop-filter: blur(8px);
}
.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 32px;
  flex-shrink: 0;
}
.marquee-item svg { color: var(--accent); flex-shrink: 0; }
.marquee-item span {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-33.333%); }
}

/* ===== Products ===== */
.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.product-card {
  position: relative;
  background: rgba(17,17,17,0.8);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.05);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.5s ease;
  animation: fadeUp 0.8s ease-out forwards;
  opacity: 0;
}
.product-card:hover {
  border-color: rgba(var(--accent-rgb), 0.4);
  box-shadow: 0 0 50px rgba(var(--accent-rgb), 0.25);
  transform: translateY(-4px);
}
.product-corner {
  position: absolute;
  width: 24px; height: 24px;
  border-color: rgba(var(--accent-rgb), 0.4);
  opacity: 0;
  transition: opacity 0.5s ease;
}
.product-card:hover .product-corner { opacity: 1; }
.product-corner-tl { top: 0; left: 0; border-top: 1px solid; border-left: 1px solid; }
.product-corner-tr { top: 0; right: 0; border-top: 1px solid; border-right: 1px solid; }
.product-corner-bl { bottom: 0; left: 0; border-bottom: 1px solid; border-left: 1px solid; }
.product-corner-br { bottom: 0; right: 0; border-bottom: 1px solid; border-right: 1px solid; }
.product-tag {
  position: absolute;
  top: 12px; left: 12px;
  z-index: 10;
  padding: 4px 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
}
.product-image-wrap {
  position: relative;
  height: 224px;
  overflow: hidden;
  background: var(--bg-dark);
}
.product-image {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.product-card:hover .product-image { transform: scale(1.1); }
.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.product-card:hover .product-overlay { opacity: 1; }
.product-overlay-btn {
  padding: 12px;
  background: var(--accent);
  color: var(--bg);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.product-overlay-btn:hover { background: var(--accent-soft); transform: scale(1.1); }
.product-overlay-btn-alt {
  padding: 12px;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.product-overlay-btn-alt:hover { background: var(--accent); color: var(--bg); transform: scale(1.1); }
.product-body { padding: 20px; }
.product-name { color: var(--white); font-weight: 700; font-size: 18px; line-height: 1.2; font-family: 'Playfair Display', serif; }
.product-subtitle {
  color: rgba(255,255,255,0.4);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 4px;
  margin-bottom: 12px;
  font-family: 'Inter', sans-serif;
}
.product-sizes { display: flex; flex-wrap: wrap; gap: 8px; }
.product-size { display: flex; align-items: center; gap: 4px; }
.product-size-label { color: rgba(255,255,255,0.4); font-size: 12px; font-family: 'Inter', sans-serif; }
.product-size-price { color: var(--accent); font-weight: 700; font-size: 14px; font-family: 'Inter', sans-serif; }
.product-details-btn {
  margin-top: 16px;
  width: 100%;
  padding: 10px;
  border: 1px solid rgba(var(--accent-rgb), 0.3);
  background: none;
  color: var(--accent);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
}
.product-details-btn:hover {
  background: rgba(var(--accent-rgb), 0.1);
  border-color: var(--accent);
}

@media (min-width: 640px) { .products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .products-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1280px) { .products-grid { grid-template-columns: repeat(4, 1fr); } }

/* ===== Scents ===== */
.scent-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.scent-tab {
  padding: 12px 24px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  border: 1px solid rgba(255,255,255,0.1);
  background: none;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
}
.scent-tab:hover { color: var(--white); border-color: rgba(var(--accent-rgb), 0.4); }
.scent-tab.active {
  background: var(--accent);
  color: var(--bg);
  box-shadow: 0 0 30px rgba(var(--accent-rgb), 0.15);
}
.scents-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.scent-card {
  background: rgba(17,17,17,0.8);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.05);
  padding: 16px;
  transition: all 0.3s ease;
  animation: scaleIn 0.5s ease-out forwards;
  opacity: 0;
}
.scent-card:hover {
  border-color: rgba(var(--accent-rgb), 0.4);
  background: rgba(var(--accent-rgb), 0.1);
}
.scent-card-inner { display: flex; align-items: flex-start; gap: 12px; }
.scent-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 8px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.scent-card:hover .scent-dot { transform: scale(1.5); }
.scent-name { color: var(--white); font-weight: 600; font-size: 14px; line-height: 1.2; font-family: 'Inter', sans-serif; }
.scent-inspiration { color: rgba(255,255,255,0.4); font-size: 12px; margin-top: 4px; line-height: 1.2; font-family: 'Inter', sans-serif; }
.scents-quote {
  margin-top: 40px;
  text-align: center;
  color: rgba(255,255,255,0.3);
  font-size: 14px;
  font-style: italic;
  font-family: 'Inter', sans-serif;
}

@media (min-width: 640px) { .scents-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px) { .scents-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .scents-grid { grid-template-columns: repeat(4, 1fr); } }

/* ===== Videos ===== */
.videos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
.video-card {
  background: rgba(17,17,17,0.8);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.05);
  overflow: hidden;
  transition: all 0.5s ease;
  animation: fadeUp 0.8s ease-out forwards;
  opacity: 0;
}
.video-card:hover {
  border-color: rgba(var(--accent-rgb), 0.4);
  box-shadow: 0 0 50px rgba(var(--accent-rgb), 0.25);
  transform: translateY(-4px);
}
.video-thumb {
  position: relative;
  height: 288px;
  overflow: hidden;
  background: var(--bg-dark);
}
.video-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.7;
  transition: transform 0.7s ease;
}
.video-card:hover .video-thumb img { transform: scale(1.05); }
.video-play-wrap {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-play-bg {
  position: absolute;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(var(--accent-rgb), 0.3);
  animation: ping 2s cubic-bezier(0,0,0.2,1) infinite;
}
.video-play-btn {
  position: relative;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--bg);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 0 50px rgba(var(--accent-rgb), 0.25);
}
.video-card:hover .video-play-btn { background: var(--accent-soft); transform: scale(1.1); }
.video-duration {
  position: absolute;
  bottom: 12px; right: 12px;
  background: rgba(0,0,0,0.7);
  color: rgba(255,255,255,0.8);
  font-size: 12px;
  padding: 4px 8px;
  font-family: 'Inter', sans-serif;
}
.video-corner {
  position: absolute;
  width: 20px; height: 20px;
  border-color: rgba(var(--accent-rgb), 0.5);
}
.video-corner-tl { top: 8px; left: 8px; border-top: 1px solid; border-left: 1px solid; }
.video-corner-br { bottom: 8px; right: 8px; border-bottom: 1px solid; border-right: 1px solid; }
.video-body { padding: 24px; }
.video-title { color: var(--white); font-weight: 700; font-size: 18px; line-height: 1.2; margin-bottom: 8px; font-family: 'Playfair Display', serif; }
.video-desc { color: rgba(255,255,255,0.5); font-size: 14px; line-height: 1.6; font-family: 'Inter', sans-serif; }
.video-watch {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
}
.videos-note {
  text-align: center;
  color: rgba(255,255,255,0.25);
  font-size: 12px;
  margin-top: 32px;
  letter-spacing: 0.05em;
  font-family: 'Inter', sans-serif;
}

@media (min-width: 768px) { .videos-grid { grid-template-columns: repeat(2, 1fr); } }

/* ===== About ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: center;
}
.about-title {
  font-size: clamp(36px, 5vw, 48px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.2;
}
.about-text {
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin-bottom: 24px;
  font-family: 'Inter', sans-serif;
}
.about-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
}
.about-divider-line { height: 1px; flex: 1; background: rgba(255,255,255,0.1); }
.about-quote {
  color: rgba(255,255,255,0.3);
  font-size: 12px;
  font-style: italic;
  letter-spacing: 0.1em;
  font-family: 'Inter', sans-serif;
}
.about-features { display: grid; grid-template-columns: 1fr; gap: 16px; }
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  background: rgba(17,17,17,0.8);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.05);
  transition: all 0.3s ease;
  animation: fadeUp 0.8s ease-out forwards;
  opacity: 0;
}
.about-feature:hover { border-color: rgba(var(--accent-rgb), 0.4); }
.about-feature-icon {
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(var(--accent-rgb), 0.1);
  color: var(--accent);
  flex-shrink: 0;
  transition: background 0.3s ease;
}
.about-feature:hover .about-feature-icon { background: rgba(var(--accent-rgb), 0.2); }
.about-feature-title { color: var(--white); font-weight: 600; font-size: 14px; margin-bottom: 4px; font-family: 'Inter', sans-serif; }
.about-feature-desc { color: rgba(255,255,255,0.45); font-size: 12px; line-height: 1.6; font-family: 'Inter', sans-serif; }

@media (min-width: 1024px) { .about-grid { grid-template-columns: repeat(2, 1fr); } }

/* ===== Contact ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
.contact-info { display: grid; gap: 24px; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: rgba(17,17,17,0.8);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.05);
  transition: all 0.3s ease;
  animation: fadeUp 0.8s ease-out forwards;
  opacity: 0;
  text-decoration: none;
}
.contact-item:hover { border-color: rgba(var(--accent-rgb), 0.4); }
.contact-item-icon {
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(var(--accent-rgb), 0.1);
  color: var(--accent);
  flex-shrink: 0;
  transition: background 0.3s ease;
}
.contact-item:hover .contact-item-icon { background: rgba(var(--accent-rgb), 0.2); }
.contact-item-label { color: rgba(255,255,255,0.4); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 4px; font-family: 'Inter', sans-serif; }
.contact-item-value { color: var(--white); font-weight: 600; font-family: 'Inter', sans-serif; }
.contact-why {
  padding: 24px;
  background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.1), transparent);
  border: 1px solid rgba(var(--accent-rgb), 0.2);
  animation: fadeUp 0.8s ease-out forwards;
  opacity: 0;
}
.contact-why h4 {
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 12px;
  font-family: 'Inter', sans-serif;
}
.contact-why ul { list-style: none; display: grid; gap: 8px; }
.contact-why li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  font-family: 'Inter', sans-serif;
}
.contact-why li svg { color: var(--accent); flex-shrink: 0; }

.contact-form-wrap {
  background: rgba(17,17,17,0.8);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.05);
  padding: 32px;
}
.contact-form { display: grid; gap: 20px; }
.form-field label {
  display: block;
  color: rgba(255,255,255,0.4);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-family: 'Inter', sans-serif;
}
.form-field input, .form-field textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 12px 16px;
  color: var(--white);
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.3s ease;
  resize: none;
}
.form-field input:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.contact-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 0;
  animation: scaleIn 0.5s ease-out forwards;
}
.contact-success svg { color: var(--accent); margin-bottom: 16px; }
.contact-success h3 { color: var(--white); font-size: 20px; font-weight: 700; margin-bottom: 8px; font-family: 'Playfair Display', serif; }
.contact-success p { color: rgba(255,255,255,0.5); font-size: 14px; font-family: 'Inter', sans-serif; }

@media (min-width: 1024px) { .contact-grid { grid-template-columns: repeat(2, 1fr); } }

/* ===== Footer ===== */
.footer {
  background: rgba(5,5,5,0.9);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(var(--accent-rgb), 0.2);
  padding: 48px 24px;
  position: relative;
  z-index: 1;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 40px;
}
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-about { color: rgba(255,255,255,0.4); font-size: 14px; line-height: 1.6; font-family: 'Inter', sans-serif; }
.footer-heading {
  color: rgba(255,255,255,0.7);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-family: 'Inter', sans-serif;
}
.footer-links { list-style: none; display: grid; gap: 8px; }
.footer-links button {
  color: rgba(255,255,255,0.4);
  font-size: 14px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: color 0.3s ease;
  font-family: 'Inter', sans-serif;
}
.footer-links button:hover { color: var(--accent); }
.footer-contact { display: grid; gap: 12px; }
.footer-contact a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.4);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.3s ease;
  font-family: 'Inter', sans-serif;
}
.footer-contact a:hover { color: var(--accent); }

.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social .social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.3s ease;
}
.footer-social .social-icon:hover {
  background: var(--accent, #c9a84c);
  color: #0a0a0a;
  border-color: var(--accent, #c9a84c);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(201,168,76,0.3);
}
.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.footer-bottom p { color: rgba(255,255,255,0.3); font-size: 12px; letter-spacing: 0.05em; font-family: 'Inter', sans-serif; }
.footer-tagline { font-style: italic; letter-spacing: 0.1em; }

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-bottom { flex-direction: row; }
}

/* ===== Modal ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(12px);
}
.modal-overlay.hidden { display: none; }
.modal {
  position: relative;
  background: var(--bg-card);
  border: 1px solid rgba(var(--accent-rgb), 0.3);
  max-width: 896px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  animation: scaleIn 0.5s ease-out forwards;
  box-shadow: 0 0 50px rgba(var(--accent-rgb), 0.25);
}
.modal-corner {
  position: absolute;
  width: 32px; height: 32px;
  border-color: var(--accent);
  pointer-events: none;
}
.modal-corner-tl { top: 0; left: 0; border-top: 1px solid; border-left: 1px solid; }
.modal-corner-tr { top: 0; right: 0; border-top: 1px solid; border-right: 1px solid; }
.modal-corner-bl { bottom: 0; left: 0; border-bottom: 1px solid; border-left: 1px solid; }
.modal-corner-br { bottom: 0; right: 0; border-bottom: 1px solid; border-right: 1px solid; }
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  z-index: 10;
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.5);
  color: rgba(255,255,255,0.7);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.modal-close:hover { color: var(--accent); background: rgba(0,0,0,0.7); }
.modal-grid { display: grid; grid-template-columns: 1fr; }
.modal-image-wrap {
  position: relative;
  height: 256px;
  background: var(--bg-dark);
  min-height: 300px;
}
.modal-image { width: 100%; height: 100%; object-fit: cover; }
.modal-tag {
  position: absolute;
  top: 16px; left: 16px;
  padding: 6px 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--accent);
  color: var(--bg);
  font-family: 'Inter', sans-serif;
}
.modal-body { padding: 32px; }
.modal-subtitle { color: var(--accent); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 8px; font-family: 'Inter', sans-serif; }
.modal-title { font-size: 30px; font-weight: 700; color: var(--white); margin-bottom: 16px; font-family: 'Playfair Display', serif; }
.modal-desc { color: rgba(255,255,255,0.6); font-size: 14px; line-height: 1.6; margin-bottom: 24px; font-family: 'Inter', sans-serif; }
.modal-section-label { color: rgba(255,255,255,0.4); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 12px; font-family: 'Inter', sans-serif; }
.modal-sizes { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 24px; }
.modal-size {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 20px;
  background: var(--bg);
  border: 1px solid rgba(255,255,255,0.1);
  min-width: 90px;
  transition: border-color 0.3s ease;
}
.modal-size:hover { border-color: rgba(var(--accent-rgb), 0.5); }
.modal-size-label { color: rgba(255,255,255,0.5); font-size: 12px; font-family: 'Inter', sans-serif; }
.modal-size-price { color: var(--accent); font-weight: 700; font-size: 18px; margin-top: 4px; font-family: 'Inter', sans-serif; }
.modal-features { list-style: none; display: grid; gap: 8px; margin-bottom: 24px; }
.modal-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  font-family: 'Inter', sans-serif;
}
.modal-features li svg { color: var(--accent); flex-shrink: 0; }
.modal-occasions { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.modal-occasion {
  padding: 6px 12px;
  background: var(--bg);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.6);
  font-size: 12px;
  font-family: 'Inter', sans-serif;
}

@media (min-width: 768px) {
  .modal-grid { grid-template-columns: repeat(2, 1fr); }
  .modal-image-wrap { height: 100%; }
}

/* ===== Utility ===== */
.text-gradient-accent {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-soft) 50%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hidden { display: none !important; }

/* ===== YouTube Modal ===== */
.youtube-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(0,0,0,0.9);
  backdrop-filter: blur(12px);
}
.youtube-overlay.hidden { display: none; }
.youtube-close {
  position: absolute;
  top: 16px; right: 16px;
  z-index: 10;
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8);
  border: none;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.youtube-close:hover { background: rgba(255,255,255,0.2); color: #fff; }
.youtube-wrap {
  width: 100%;
  max-width: 900px;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border: 1px solid rgba(var(--accent-rgb), 0.3);
  box-shadow: 0 0 50px rgba(var(--accent-rgb), 0.25);
}
.youtube-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.youtube-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ===== Keyframes ===== */
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(2deg); }
}
@keyframes floatSlow {
  0%, 100% { transform: translateY(0) translateX(0); }
  33% { transform: translateY(-15px) translateX(10px); }
  66% { transform: translateY(10px) translateX(-10px); }
}
@keyframes pulseGlow {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.1); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}
.fade-up { animation: fadeUp 0.8s ease-out forwards; opacity: 0; }

/* ===== Scrollbar ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent-soft); }

/* ============================================================
   RESPONSIVE — Android phones, iPhones, tablets
   ============================================================ */

/* ----- Safe area insets for iPhone notch / home bar ----- */
:root {
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-left: env(safe-area-inset-left, 0px);
  --safe-right: env(safe-area-inset-right, 0px);
}

/* ----- Large phones (up to 430px) ----- */
@media (max-width: 430px) {
  .hero-content { padding: 0 16px; }
  .hero-title { font-size: clamp(44px, 14vw, 80px); }
  .hero-sub { font-size: 11px; letter-spacing: 0.4em; }
  .hero-eyebrow span { font-size: 10px; letter-spacing: 0.25em; }
  .hero-eyebrow { gap: 8px; margin-bottom: 20px; }
  .hero-line-small { width: 28px; }
  .hero-desc { font-size: 14px; margin-bottom: 32px; }
  .hero-stats { gap: 20px; margin-top: 48px; flex-wrap: wrap; }
  .hero-stat-value { font-size: 24px; }
  .hero-stat-label { font-size: 10px; }
  .hero-scroll { bottom: 20px; }

  .btn { padding: 14px 28px; font-size: 12px; }

  .section-header { margin-bottom: 40px; }
  .section-title { font-size: clamp(28px, 8vw, 36px); }
  .section-desc { font-size: 14px; }
  .section-eyebrow span { font-size: 10px; letter-spacing: 0.25em; }
  .section-line { width: 40px; }

  .product-image-wrap { height: 180px; }
  .product-body { padding: 16px; }
  .product-name { font-size: 16px; }
  .product-size-price { font-size: 13px; }

  .video-thumb { height: 200px; }
  .video-body { padding: 16px; }
  .video-title { font-size: 16px; }
  .video-desc { font-size: 13px; }
  .video-play-bg, .video-play-btn { width: 52px; height: 52px; }

  .scent-tab { padding: 10px 16px; font-size: 11px; }
  .scent-name { font-size: 13px; }
  .scent-inspiration { font-size: 11px; }

  .about-title { font-size: clamp(28px, 8vw, 36px); }
  .about-text { font-size: 14px; }

  .contact-item-value { font-size: 13px; }
  .contact-item-label { font-size: 11px; }

  .footer-grid { gap: 32px; }
  .footer-about { font-size: 13px; }
  .footer-heading { font-size: 12px; }
  .footer-bottom { font-size: 11px; flex-direction: column; gap: 8px; text-align: center; }

  .modal { max-height: 92vh; }
  .modal-grid { grid-template-columns: 1fr; }
  .modal-image-wrap { height: 240px; }
  .modal-body { padding: 20px; }
  .modal-title { font-size: 24px; }
  .modal-desc { font-size: 14px; }
  .modal-section-label { font-size: 12px; }

  .nav-logo-title { font-size: 14px; }
  .nav-logo-sub { font-size: 9px; }

  .palette-indicator { top: calc(8px + var(--safe-top)); right: 12px; transform: scale(0.85); transform-origin: top right; }

  .marquee-item span { font-size: 12px; }
  .marquee-item { margin: 0 20px; gap: 8px; }
}

/* ----- Small phones (up to 360px — older / compact Android) ----- */
@media (max-width: 360px) {
  .hero-title { font-size: clamp(36px, 14vw, 60px); }
  .hero-stats { gap: 12px; }
  .hero-stat-value { font-size: 20px; }
  .hero-stat-label { font-size: 9px; }
  .hero-desc { font-size: 13px; }
  .btn { padding: 12px 20px; font-size: 11px; }
  .product-image-wrap { height: 160px; }
  .video-thumb { height: 180px; }
  .section-title { font-size: 24px; }
  .nav-logo-title { font-size: 12px; }
  .nav-logo-sub { font-size: 8px; }
  .palette-indicator { display: none; }
}

/* ----- Tablets (portrait 768px and up) ----- */
@media (min-width: 768px) and (max-width: 1023px) {
  .hero-title { font-size: clamp(72px, 10vw, 100px); }
  .hero-stats { gap: 64px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .product-image-wrap { height: 260px; }
  .video-thumb { height: 320px; }
  .about-grid { gap: 48px; }
  .contact-grid { grid-template-columns: 1fr; }
  .modal { max-width: 700px; }
}

/* ----- Tablets (landscape 1024px and up) ----- */
@media (min-width: 1024px) and (max-width: 1279px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .product-image-wrap { height: 240px; }
}

/* ----- iPhone landscape (short height) ----- */
@media (max-height: 500px) and (orientation: landscape) {
  .hero { min-height: 100vh; }
  .hero-content { padding-top: 60px; }
  .hero-title { font-size: clamp(40px, 8vw, 60px); }
  .hero-stats { margin-top: 24px; gap: 24px; }
  .hero-stat-value { font-size: 20px; }
  .hero-scroll { display: none; }
}

/* ----- Touch device adjustments (no hover) ----- */
@media (hover: none) {
  .product-overlay { display: none; }
  .product-card { cursor: default; }
  .product-card:hover { transform: none; box-shadow: none; }
  .product-card:hover .product-image { transform: none; }
  .video-card:hover { transform: none; box-shadow: none; }
  .video-card:hover .video-thumb img { transform: none; }
  .video-card:hover .video-play-btn { background: var(--accent); transform: none; }
  .btn:hover { transform: none; }
  .btn-primary:hover { box-shadow: none; }
  .product-details-btn { display: block; }
}

/* ----- Prevent text size adjustment on iOS rotation ----- */
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }

/* ----- Prevent iOS input zoom (font-size >= 16px) ----- */
input, textarea, select { font-size: 16px; }
@media (min-width: 640px) {
  input, textarea, select { font-size: 14px; }
}

/* ----- Tap target minimum 44px for iOS ----- */
.nav-link, .scent-tab, .btn, .video-play-btn, .product-details-btn, .modal-close, .youtube-close {
  min-height: 44px;
}

/* ----- Smooth scrolling on iOS ----- */
* { -webkit-tap-highlight-color: transparent; }

/* ----- Prevent horizontal overflow on any device ----- */
body { overflow-x: hidden; max-width: 100vw; }
img, video, canvas { max-width: 100%; }

/* ============================================================
   SPLASH SCREEN — perfume bottle fill intro (6 seconds)
   ============================================================ */
.splash {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #050505;
  overflow: hidden;
}
.splash-canvas {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
}
.splash.hidden { pointer-events: none; }
.splash.hidden .splash-content { opacity: 0; transform: scale(1.06); transition: opacity 0.6s ease, transform 0.6s ease; }
.splash.hidden .splash-shutter-top { transform: translateY(-100%); }
.splash.hidden .splash-shutter-bottom { transform: translateY(100%); }
.splash.hidden { background: transparent; transition: background 0.6s ease 0.5s; }

/* ----- Vignette + mist ----- */
.splash-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(0,0,0,0.7) 100%);
  z-index: 3;
}
.splash-mist {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}
.splash-mist-puff {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,165,116,0.1), transparent 70%);
  animation: splashMistDrift 6s ease-in-out infinite;
  filter: blur(8px);
}
@keyframes splashMistDrift {
  0% { opacity: 0; transform: translate(0, 0) scale(0.8); }
  30% { opacity: 1; }
  100% { opacity: 0; transform: translate(var(--mx, 40px), var(--my, -60px)) scale(2); }
}

/* ----- Content wrapper ----- */
.splash-content {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

/* ----- Perfume bottle SVG ----- */
.splash-bottle-wrap {
  position: relative;
  width: 100px;
  height: 160px;
  display: flex;
  justify-content: center;
}
.splash-bottle {
  width: 100px;
  height: 160px;
  filter: drop-shadow(0 0 20px rgba(212,165,116,0.25));
  animation: splashBottleFloat 3s ease-in-out infinite alternate, splashBottleGlow 4s ease-in-out infinite alternate;
}
@keyframes splashBottleFloat {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-8px) rotate(1deg); }
}
@keyframes splashBottleGlow {
  0% { filter: drop-shadow(0 0 15px rgba(212,165,116,0.2)); }
  100% { filter: drop-shadow(0 0 35px rgba(212,165,116,0.5)); }
}
.splash-bottle-liquid {
  transform-box: fill-box;
  transform-origin: bottom;
  transform: scaleY(0);
  animation: splashLiquidFill 6s ease-out 0.5s forwards;
}
@keyframes splashLiquidFill {
  0% { transform: scaleY(0); }
  100% { transform: scaleY(1); }
}
.splash-bottle-cap {
  animation: splashCapGlow 2s ease-in-out infinite alternate;
}
@keyframes splashCapGlow {
  0% { stroke-opacity: 0.5; }
  100% { stroke-opacity: 1; }
}
.splash-bottle-shine {
  animation: splashShineSweep 3s ease-in-out infinite;
}
@keyframes splashShineSweep {
  0%, 100% { stroke-opacity: 0.05; }
  50% { stroke-opacity: 0.3; }
}

/* ----- Drip from bottle ----- */
.splash-drip {
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 3px;
  height: 0;
  background: linear-gradient(to bottom, #d4a574, transparent);
  border-radius: 0 0 3px 3px;
  transform: translateX(-50%);
  animation: splashDripFall 2.5s ease-in 2s infinite;
}
@keyframes splashDripFall {
  0% { height: 0; opacity: 0; }
  20% { height: 20px; opacity: 1; }
  60% { height: 40px; opacity: 0.5; }
  100% { height: 60px; opacity: 0; }
}

/* ----- Brand name with per-letter reveal ----- */
.splash-brand { text-align: center; }
.splash-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 7vw, 44px);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.01em;
  display: flex;
  justify-content: center;
}
.splash-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(24px) rotateX(80deg);
  animation: splashCharReveal 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  animation-delay: var(--d);
}
.splash-char.splash-space { width: 0.3em; }
@keyframes splashCharReveal {
  0% { opacity: 0; transform: translateY(24px) rotateX(80deg); }
  100% { opacity: 1; transform: translateY(0) rotateX(0); }
}

/* ----- Subtitle with deco lines ----- */
.splash-brand-sub {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 10px;
  opacity: 0;
  animation: splashFadeIn 0.8s ease-out 1.2s forwards;
}
.splash-line-deco {
  display: block;
  width: 30px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #d4a574, transparent);
}
.splash-sub-text {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: #d4a574;
}
@keyframes splashFadeIn {
  0% { opacity: 0; transform: translateY(10px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ----- Circular progress ring ----- */
.splash-progress {
  position: relative;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 4px;
  opacity: 0;
  animation: splashFadeIn 0.6s ease-out 1.5s forwards;
  filter: drop-shadow(0 0 8px rgba(212,165,116,0.3));
}
.splash-progress-ring { position: absolute; inset: 0; width: 48px; height: 48px; }
.splash-ring-fill {
  stroke-dasharray: 138.23;
  stroke-dashoffset: 138.23;
  animation: splashRingProgress 7s ease-out 0.5s forwards;
}
@keyframes splashRingProgress {
  0% { stroke-dashoffset: 138.23; }
  100% { stroke-dashoffset: 0; }
}
.splash-progress-num {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.05em;
}

/* ----- Shutter exit (top + bottom panels slide away) ----- */
.splash-shutter {
  position: absolute;
  left: 0;
  right: 0;
  height: 50.5%;
  background: #050505;
  z-index: 1;
  transition: transform 0.9s cubic-bezier(0.76, 0, 0.24, 1) 0.2s;
}
.splash-shutter-top { top: 0; }
.splash-shutter-bottom { bottom: 0; }

/* ----- Responsive ----- */
@media (max-width: 430px) {
  .splash-bottle-wrap, .splash-bottle { width: 80px; height: 128px; }
  .splash-brand-name { font-size: 26px; }
  .splash-sub-text { font-size: 9px; letter-spacing: 0.35em; }
  .splash-line-deco { width: 20px; }
}
@media (max-width: 360px) {
  .splash-bottle-wrap, .splash-bottle { width: 70px; height: 112px; }
  .splash-brand-name { font-size: 22px; }
}

/* ----- Contact form states ----- */
.contact-form.sending { opacity: 0.5; pointer-events: none; }
.contact-form-error {
  margin-top: 16px;
  padding: 12px 16px;
  background: rgba(212, 92, 92, 0.1);
  border: 1px solid rgba(212, 92, 92, 0.3);
  color: #e88080;
  font-size: 13px;
  font-family: 'Inter', sans-serif;
  display: none;
}
.contact-form-error.show { display: block; animation: fadeUp 0.4s ease-out; }


