/* =========================================================
   ETTRI.AI — Brand CSS
   Colors:
     Deep Black:    #0a0805
     Rich Gold:     #c9a84c
     Warm Amber:    #e8b96a
     Cream:         #f5ede0
     Deep Brown:    #3b1f0d
     Smoke White:   #f9f5ef
   ========================================================= */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --black:      #0a0805;
  --dark:       #120e09;
  --deep-brown: #3b1f0d;
  --gold:       #c9a84c;
  --gold-light: #e8b96a;
  --gold-pale:  #f5dfa0;
  --cream:      #f5ede0;
  --smoke:      #f9f5ef;
  --text-main:  #1a110a;
  --text-muted: #7a6a55;

  --font-arabic: 'Cairo', sans-serif;
  --font-serif:  'Cormorant Garamond', serif;
  --font-display:'Playfair Display', serif;

  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  28px;
  --radius-xl:  48px;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --glow-gold:  0 0 40px rgba(201,168,76,0.35);
}

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

body {
  font-family: var(--font-arabic);
  background-color: var(--black);
  color: var(--cream);
  direction: rtl;
  text-align: right;
  overflow-x: hidden;
  line-height: 1.7;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-arabic); border: none; }
input, select, textarea { font-family: var(--font-arabic); }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- SCROLLBAR ---------- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ---------- TYPOGRAPHY ---------- */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.25;
  color: var(--cream);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.8;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--black);
  box-shadow: 0 4px 20px rgba(201,168,76,0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201,168,76,0.5);
}

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(249,245,239,0.25);
}

.btn-ghost:hover {
  background: rgba(249,245,239,0.08);
  border-color: rgba(249,245,239,0.5);
}

.btn-full { width: 100%; justify-content: center; }

/* =========================================================
   NAVIGATION
   ========================================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(10,8,5,0.92);
  backdrop-filter: blur(20px);
  padding: 14px 0;
  border-bottom: 1px solid rgba(201,168,76,0.15);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.1rem;
}

.logo-arabic {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
}

.logo-separator {
  color: rgba(201,168,76,0.4);
  font-size: 1rem;
}

.logo-latin {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.9rem;
  color: rgba(245,237,224,0.75);
  transition: var(--transition);
  position: relative;
}

.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -4px; right: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: var(--transition);
}

.nav-links a:not(.nav-cta):hover { color: var(--cream); }
.nav-links a:not(.nav-cta):hover::after { width: 100%; }

.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--black) !important;
  padding: 9px 22px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.85rem;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: var(--glow-gold);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 24px 60px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 30% 50%, rgba(201,168,76,0.08) 0%, transparent 70%),
              radial-gradient(ellipse 60% 80% at 80% 20%, rgba(59,31,13,0.5) 0%, transparent 60%),
              linear-gradient(180deg, #0a0805 0%, #120e09 100%);
}

/* Smoke effects */
.smoke {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: smokeDrift 8s ease-in-out infinite;
  opacity: 0;
}

.smoke-1 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
  top: 10%; left: 10%;
  animation-delay: 0s;
}

.smoke-2 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(232,185,106,0.08) 0%, transparent 70%);
  top: 40%; left: 50%;
  animation-delay: 2s;
}

.smoke-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(59,31,13,0.4) 0%, transparent 70%);
  bottom: 10%; right: 10%;
  animation-delay: 4s;
}

@keyframes smokeDrift {
  0%   { opacity: 0; transform: translate(0,0) scale(1); }
  30%  { opacity: 1; }
  70%  { opacity: 0.7; }
  100% { opacity: 0; transform: translate(20px,-30px) scale(1.2); }
}

.hero > .container { display: flex; }

.hero-content {
  flex: 1;
  max-width: 620px;
  position: relative;
  z-index: 2;
  padding: 0 24px;
}

.hero-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeSlideDown 0.8s ease forwards 0.2s;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeSlideUp 0.9s ease forwards 0.4s;
}

.title-line-1 {
  display: block;
  color: var(--cream);
}

.title-line-2 {
  display: block;
  background: linear-gradient(135deg, var(--gold), var(--gold-light), var(--gold-pale));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(245,237,224,0.7);
  margin-bottom: 36px;
  line-height: 1.9;
  opacity: 0;
  animation: fadeSlideUp 0.9s ease forwards 0.6s;
}

.hero-subtitle em {
  font-style: italic;
  color: rgba(201,168,76,0.9);
  font-family: var(--font-serif);
  font-size: 1.1em;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeSlideUp 0.9s ease forwards 0.8s;
}

.hero-scroll {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 48px;
  color: var(--text-muted);
  font-size: 0.8rem;
  opacity: 0;
  animation: fadeSlideUp 0.9s ease forwards 1s;
}

.scroll-indicator {
  width: 30px; height: 50px;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 15px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.scroll-dot {
  width: 5px; height: 10px;
  background: var(--gold);
  border-radius: 3px;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50%       { transform: translateY(15px); opacity: 0.3; }
}

/* Hero Visual */
.hero-visual {
  flex: 0 0 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  opacity: 0;
  animation: fadeIn 1.2s ease forwards 0.6s;
}

.bottle-glow {
  position: absolute;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(201,168,76,0.25) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50%       { transform: scale(1.15); opacity: 1; }
}

.perfume-bottle {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: bottleFloat 4s ease-in-out infinite;
}

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

.bottle-cap {
  width: 52px; height: 28px;
  background: linear-gradient(180deg, #f0d080 0%, #b8921a 100%);
  border-radius: 8px 8px 4px 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.bottle-body {
  width: 110px; height: 180px;
  background: linear-gradient(160deg, rgba(201,168,76,0.35) 0%, rgba(59,31,13,0.6) 50%, rgba(18,14,9,0.9) 100%);
  border-radius: 16px 16px 24px 24px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.4);
  box-shadow: inset 0 0 30px rgba(0,0,0,0.5), 0 20px 60px rgba(0,0,0,0.6);
  margin-top: -2px;
}

.bottle-liquid {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60%;
  background: linear-gradient(180deg, rgba(201,168,76,0.15) 0%, rgba(201,168,76,0.35) 100%);
  animation: liquidShimmer 3s ease-in-out infinite;
}

@keyframes liquidShimmer {
  0%, 100% { opacity: 0.7; }
  50%       { opacity: 1; }
}

.bottle-shine {
  position: absolute;
  top: 15px; right: 15px;
  width: 20px; height: 60px;
  background: linear-gradient(180deg, rgba(255,255,255,0.4), transparent);
  border-radius: 10px;
  transform: rotate(15deg);
}

.bottle-label {
  position: absolute;
  bottom: 24px;
  left: 50%; transform: translateX(-50%);
  text-align: center;
  color: var(--gold-pale);
}

.bottle-label span {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
}

.bottle-label small {
  font-size: 0.5rem;
  letter-spacing: 0.2em;
  opacity: 0.7;
}

.bottle-base {
  width: 130px; height: 14px;
  background: linear-gradient(180deg, #b8921a, #8a6a10);
  border-radius: 4px 4px 8px 8px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.5);
}

/* Floating Notes */
.floating-notes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.note {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(18,14,9,0.8);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 8px 14px;
  border-radius: 100px;
  font-size: 0.8rem;
  color: var(--cream);
  backdrop-filter: blur(8px);
  animation: noteFloat 5s ease-in-out infinite;
}

.note i { color: var(--gold); font-size: 0.7rem; }

.note-1 { top: 10%; left: -30%; animation-delay: 0s; }
.note-2 { top: 50%; right: -40%; animation-delay: 1.5s; }
.note-3 { bottom: 15%; left: -35%; animation-delay: 3s; }

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

/* =========================================================
   SOUL STRIP
   ========================================================= */
.soul-strip {
  background: linear-gradient(90deg, rgba(201,168,76,0.08), rgba(201,168,76,0.15), rgba(201,168,76,0.08));
  border-top: 1px solid rgba(201,168,76,0.2);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  padding: 14px 0;
  overflow: hidden;
}

.soul-strip-inner {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: stripScroll 20s linear infinite;
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--gold);
  letter-spacing: 0.05em;
}

.soul-strip-inner .dot { color: rgba(201,168,76,0.5); }

@keyframes stripScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =========================================================
   ABOUT
   ========================================================= */
.about {
  padding: 120px 0;
  background: linear-gradient(180deg, #0a0805 0%, #0f0b07 100%);
}

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

.about-text span.section-label { margin-bottom: 20px; }

.about-lead {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: rgba(245,237,224,0.85);
  margin-bottom: 8px;
  font-style: italic;
}

.about-quote {
  border-right: 3px solid var(--gold);
  padding: 16px 24px;
  margin: 20px 0;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--gold-light);
  background: rgba(201,168,76,0.05);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  line-height: 1.6;
}

.about-body {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.9;
}

.about-stats {
  display: flex;
  gap: 32px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(201,168,76,0.15);
}

.stat { text-align: center; }

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.2;
}

.stat-label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
}

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

.about-orb {
  position: relative;
  width: 220px; height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.orb-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.3);
  animation: orbSpin 12s linear infinite;
}

.orb-ring-1 { width: 100%; height: 100%; animation-duration: 10s; }
.orb-ring-2 { width: 130%; height: 130%; animation-duration: 15s; animation-direction: reverse; }
.orb-ring-3 { width: 165%; height: 165%; animation-duration: 20s; border-style: dashed; }

@keyframes orbSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.orb-center {
  background: radial-gradient(circle, rgba(201,168,76,0.15) 0%, rgba(10,8,5,0.9) 70%);
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 50%;
  width: 80%; height: 80%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--glow-gold);
  z-index: 2;
}

.orb-arabic {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
}

.orb-latin {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  margin-top: 2px;
}

.about-cards {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.about-card {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: rgba(18,14,9,0.85);
  border: 1px solid rgba(201,168,76,0.25);
  padding: 12px 18px;
  border-radius: var(--radius-md);
  font-size: 0.8rem;
  color: var(--cream);
  backdrop-filter: blur(8px);
}

.about-card i {
  font-size: 1.2rem;
  color: var(--gold);
}

.card-float-1 { top: 5%; left: -10%; animation: noteFloat 5s ease-in-out infinite; }
.card-float-2 { bottom: 5%; left: -10%; animation: noteFloat 5s ease-in-out infinite 1.5s; }
.card-float-3 { top: 20%; right: -10%; animation: noteFloat 5s ease-in-out infinite 3s; }

/* =========================================================
   HOW IT WORKS
   ========================================================= */
.how-it-works {
  padding: 120px 0;
  background: linear-gradient(180deg, #0f0b07 0%, #0a0805 100%);
  position: relative;
}

.how-it-works::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 1px; height: 100%;
  background: linear-gradient(180deg, transparent, rgba(201,168,76,0.2), transparent);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 60px;
}

.step {
  text-align: center;
  position: relative;
}

.step-number {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: rgba(201,168,76,0.12);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 16px;
}

.step-icon-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.step-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, rgba(201,168,76,0.2), rgba(201,168,76,0.05));
  border: 1px solid rgba(201,168,76,0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}

.step:hover .step-icon {
  background: linear-gradient(135deg, rgba(201,168,76,0.35), rgba(201,168,76,0.15));
  box-shadow: var(--glow-gold);
  transform: scale(1.05);
}

.step-line {
  width: 1px;
  height: 0;
  background: linear-gradient(180deg, var(--gold), transparent);
  position: absolute;
  top: 64px; left: 50%;
  display: none;
}

.step-content h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--cream);
  margin-bottom: 10px;
}

.step-content p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.8;
}

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

/* =========================================================
   EXPERIENCE (AI CHAT)
   ========================================================= */
.experience {
  padding: 120px 0;
  background: #0a0805;
  position: relative;
  overflow: hidden;
}

.experience-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.exp-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.6;
}

.exp-glow-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  top: -100px; right: -100px;
}

.exp-glow-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(59,31,13,0.4) 0%, transparent 70%);
  bottom: -50px; left: -50px;
}

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

/* Chat Window */
.chat-window {
  background: rgba(18,14,9,0.9);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), var(--glow-gold);
}

.chat-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: rgba(201,168,76,0.08);
  border-bottom: 1px solid rgba(201,168,76,0.15);
}

.chat-avatar {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  font-size: 1.1rem;
}

.chat-info { flex: 1; }

.chat-name {
  display: block;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--cream);
}

.chat-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: #4ade80;
}

.chat-status::before {
  content: '';
  width: 7px; height: 7px;
  background: #4ade80;
  border-radius: 50%;
  display: inline-block;
  animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}

.chat-messages {
  padding: 20px;
  min-height: 180px;
  max-height: 260px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.msg { max-width: 85%; }

.msg-bot {
  align-self: flex-start;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.2);
  padding: 12px 16px;
  border-radius: 4px 16px 16px 16px;
}

.msg-user {
  align-self: flex-end;
  background: linear-gradient(135deg, rgba(201,168,76,0.2), rgba(201,168,76,0.1));
  border: 1px solid rgba(201,168,76,0.3);
  padding: 12px 16px;
  border-radius: 16px 4px 16px 16px;
}

.msg p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(245,237,224,0.9);
}

.chat-options {
  padding: 16px 20px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  border-top: 1px solid rgba(201,168,76,0.1);
}

.chat-btn {
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.25);
  color: var(--cream);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  text-align: center;
  transition: var(--transition);
}

.chat-btn:hover {
  background: rgba(201,168,76,0.18);
  border-color: rgba(201,168,76,0.5);
  transform: translateY(-1px);
}

/* Experience Text */
.exp-text .section-label { margin-bottom: 20px; }

.exp-body {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 28px;
}

.exp-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.exp-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  color: rgba(245,237,224,0.85);
}

.exp-features li i {
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}

/* =========================================================
   COLLECTIONS
   ========================================================= */
.collections {
  padding: 120px 0;
  background: linear-gradient(180deg, #0a0805 0%, #0f0b07 100%);
}

.collections-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.collection-card {
  background: rgba(18,14,9,0.8);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}

.collection-card:hover {
  border-color: rgba(201,168,76,0.4);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4), var(--glow-gold);
}

.collection-card.featured {
  border-color: rgba(201,168,76,0.4);
  background: rgba(201,168,76,0.06);
}

.card-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--black);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
}

.card-glow {
  position: absolute;
  top: 0; right: 0;
  width: 120px; height: 120px;
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0.4;
  transition: var(--transition);
}

.collection-card:hover .card-glow { opacity: 0.7; }

.glow-gold  { background: radial-gradient(circle, rgba(201,168,76,0.6) 0%, transparent 70%); }
.glow-amber { background: radial-gradient(circle, rgba(232,185,106,0.6) 0%, transparent 70%); }
.glow-rose  { background: radial-gradient(circle, rgba(255,150,150,0.4) 0%, transparent 70%); }
.glow-green { background: radial-gradient(circle, rgba(100,200,100,0.3) 0%, transparent 70%); }

.card-icon {
  width: 52px; height: 52px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 20px;
}

.collection-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--cream);
  margin-bottom: 8px;
}

.card-notes {
  font-size: 0.78rem;
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-bottom: 12px;
  font-family: var(--font-serif);
}

.card-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}

.card-tags span {
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.2);
  color: var(--gold-pale);
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 0.72rem;
}

.card-link {
  font-size: 0.85rem;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.card-link:hover { color: var(--gold-light); gap: 10px; }

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonials {
  padding: 120px 0;
  background: #0a0805;
  overflow: hidden;
}

.testimonials-track {
  position: relative;
  overflow: hidden;
}

.testimonial-slide {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-slide.active { display: grid; }

.testimonial-card {
  background: rgba(18,14,9,0.9);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: var(--transition);
}

.testimonial-card:hover {
  border-color: rgba(201,168,76,0.35);
  transform: translateY(-4px);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 0.8rem;
  margin-bottom: 16px;
  display: flex;
  gap: 4px;
}

.testimonial-card blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(245,237,224,0.85);
  line-height: 1.9;
  margin-bottom: 20px;
  position: relative;
  padding-right: 16px;
}

.testimonial-card blockquote::before {
  content: '"';
  position: absolute;
  right: -4px; top: -8px;
  font-family: var(--font-display);
  font-size: 3rem;
  color: rgba(201,168,76,0.2);
  line-height: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(201,168,76,0.1);
}

.author-avatar {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, rgba(201,168,76,0.3), rgba(201,168,76,0.1));
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}

.author-name {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--cream);
}

.author-city {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.testimonials-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.t-nav-btn {
  width: 44px; height: 44px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 50%;
  color: var(--gold);
  font-size: 0.9rem;
  transition: var(--transition);
}

.t-nav-btn:hover {
  background: rgba(201,168,76,0.2);
  border-color: var(--gold);
}

.t-dots { display: flex; gap: 8px; }

.t-dot {
  width: 8px; height: 8px;
  background: rgba(201,168,76,0.3);
  border-radius: 50%;
  transition: var(--transition);
  cursor: pointer;
}

.t-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

/* =========================================================
   GIFTING
   ========================================================= */
.gifting {
  padding: 120px 0;
  background: linear-gradient(180deg, #0a0805 0%, #120e09 100%);
}

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

.gifting-text .section-label { margin-bottom: 20px; }

.gifting-body {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 28px;
}

.gifting-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}

.gifting-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  color: rgba(245,237,224,0.85);
}

.gifting-list li i {
  color: var(--gold);
  width: 20px;
  flex-shrink: 0;
}

/* Gift Box */
.gifting-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.gift-box {
  position: relative;
  animation: bottleFloat 5s ease-in-out infinite;
}

.gift-lid {
  width: 160px; height: 50px;
  background: linear-gradient(180deg, #1a1208, #2a1d0e);
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  position: relative;
  margin-left: -8px;
  width: 176px;
  border: 1px solid rgba(201,168,76,0.3);
  border-bottom: none;
}

.gift-body {
  width: 160px; height: 140px;
  background: linear-gradient(160deg, rgba(201,168,76,0.12) 0%, rgba(18,14,9,0.95) 100%);
  border: 1px solid rgba(201,168,76,0.35);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5), var(--glow-gold);
}

.gift-shine {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), transparent);
}

.gift-logo {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.gift-logo span {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
}

.gift-logo small {
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  margin-top: 4px;
}

.ribbon {
  position: absolute;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}

.ribbon-h { top: 50%; left: 0; right: 0; height: 2px; transform: translateY(-50%); }
.ribbon-v { top: 0; bottom: 0; left: 50%; width: 2px; transform: translateX(-50%); }

.ribbon-bow {
  position: absolute;
  top: -22px; left: 50%;
  transform: translateX(-50%);
}

.bow-loop {
  width: 28px; height: 18px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  position: absolute;
  background: rgba(201,168,76,0.15);
}

.bow-loop-l { right: 4px; transform: rotate(-30deg); }
.bow-loop-r { left: 4px; transform: rotate(30deg); }

.gift-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--gold);
  letter-spacing: 0.05em;
}

/* =========================================================
   CTA SECTION
   ========================================================= */
.cta-section {
  padding: 120px 0;
  background: linear-gradient(180deg, #120e09 0%, #1a1208 50%, #120e09 100%);
  position: relative;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta-smoke {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
}

.cta-smoke-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
  top: -100px; left: -100px;
  animation: smokeDrift 10s ease-in-out infinite;
}

.cta-smoke-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  bottom: -80px; right: -80px;
  animation: smokeDrift 12s ease-in-out infinite 3s;
}

.cta-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.3;
  color: var(--cream);
  margin-bottom: 16px;
}

.cta-highlight {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  line-height: 1.8;
}

/* Waitlist Form */
.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-md);
  color: var(--cream);
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
  appearance: none;
}

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

.form-group input:focus,
.form-group select:focus {
  border-color: rgba(201,168,76,0.5);
  background: rgba(201,168,76,0.05);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.08);
}

.form-group select option { background: #1a1208; color: var(--cream); }

.waitlist-success {
  text-align: center;
  padding: 40px 20px;
}

.success-icon {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 16px;
}

.waitlist-success h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--cream);
  margin-bottom: 10px;
}

.waitlist-success p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: linear-gradient(180deg, #0a0805 0%, #060402 100%);
  padding: 80px 0 32px;
  border-top: 1px solid rgba(201,168,76,0.1);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(201,168,76,0.08);
  margin-bottom: 32px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.footer-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--gold);
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.footer-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 40px; height: 40px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.95rem;
  transition: var(--transition);
}

.social-links a:hover {
  background: rgba(201,168,76,0.18);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.footer-links-group h4,
.footer-contact h4 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--cream);
  margin-bottom: 16px;
  font-weight: 600;
}

.footer-links-group ul,
.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-group a,
.footer-contact a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.footer-links-group a:hover,
.footer-contact a:hover { color: var(--gold); }

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-contact li i { color: var(--gold); width: 16px; }

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

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(122,106,85,0.6);
  margin-bottom: 4px;
}

.footer-en {
  font-family: var(--font-serif);
  letter-spacing: 0.05em;
}

/* =========================================================
   SCROLL TO TOP
   ========================================================= */
.scroll-top {
  position: fixed;
  bottom: 32px;
  left: 32px;
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  font-size: 0.9rem;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(201,168,76,0.4);
  z-index: 999;
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: all;
}

.scroll-top:hover { transform: translateY(-3px); }

/* =========================================================
   ANIMATIONS
   ========================================================= */
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeSlideDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* AOS-like scroll animations */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-aos="fade-left"] {
  transform: translateX(-30px);
}

[data-aos="fade-right"] {
  transform: translateX(30px);
}

[data-aos="fade-down"] {
  transform: translateY(-20px);
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translate(0, 0);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1100px) {
  .steps-grid,
  .collections-grid { grid-template-columns: repeat(2, 1fr); }

  .hero-visual { flex: 0 0 300px; }
  .about-grid,
  .exp-grid,
  .gifting-grid { gap: 48px; }
}

@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .about-grid,
  .exp-grid,
  .gifting-grid { grid-template-columns: 1fr; }

  .hero {
    flex-direction: column;
    text-align: center;
    padding-top: 100px;
  }

  .hero-content { max-width: 100%; padding: 0; }
  .hero-actions { justify-content: center; }
  .hero-scroll { justify-content: center; }
  .hero-visual { flex: none; margin-top: 48px; }

  .about-quote { text-align: right; }
  .about-stats { justify-content: center; }

  .exp-grid { flex-direction: column; }
  .testimonial-slide { grid-template-columns: 1fr; }
  .gifting-visual { order: -1; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    right: 0; left: 0;
    background: rgba(10,8,5,0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid rgba(201,168,76,0.15);
  }

  .nav-links.open { display: flex; }
  .hamburger { display: flex; }

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

@media (max-width: 480px) {
  .steps-grid,
  .collections-grid { grid-template-columns: 1fr; }

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

  .note-1, .note-2, .note-3 { display: none; }
  .card-float-1, .card-float-2, .card-float-3 { display: none; }
}
