/* ============================================================
   CreamyCloud — Premium Ice Cream Landing Page
   CSS Design System
   ============================================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Inter:wght@300;400;500;600&family=Cormorant+Garamond:ital,wght@0,300;0,400;1,300;1,400&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  /* Color Palette */
  --clr-bg-deep:       #0a0608;
  --clr-bg-mid:        #120d10;
  --clr-bg-card:       #1a1118;
  --clr-bg-glass:      rgba(255,255,255,0.04);
  --clr-border-glass:  rgba(255,255,255,0.08);

  --clr-gold:          #d4a853;
  --clr-gold-light:    #e8c87a;
  --clr-gold-dim:      rgba(212,168,83,0.15);
  --clr-gold-glow:     rgba(212,168,83,0.35);

  --clr-cream:         #f5e6d0;
  --clr-cream-dim:     rgba(245,230,208,0.7);

  --clr-rose:          #c87c8a;
  --clr-lavender:      #9b89b4;
  --clr-mint:          #7ab4a0;
  --clr-berry:         #8b4a6b;
  --clr-caramel:       #c4924a;
  --clr-pistachio:     #7a9664;

  --clr-text-primary:  #f0e6d8;
  --clr-text-secondary:#b8a898;
  --clr-text-muted:    #706058;

  --clr-white:         #ffffff;

  /* Typography */
  --ff-display:   'Playfair Display', Georgia, serif;
  --ff-body:      'Inter', system-ui, sans-serif;
  --ff-accent:    'Cormorant Garamond', Georgia, serif;

  /* Font Sizes (fluid) */
  --fs-xs:   0.75rem;
  --fs-sm:   0.875rem;
  --fs-base: 1rem;
  --fs-md:   1.125rem;
  --fs-lg:   1.375rem;
  --fs-xl:   1.75rem;
  --fs-2xl:  2.25rem;
  --fs-3xl:  3rem;
  --fs-4xl:  3.75rem;
  --fs-5xl:  4.75rem;
  --fs-6xl:  6rem;

  /* Spacing (8px grid) */
  --sp-1:  8px;
  --sp-2:  16px;
  --sp-3:  24px;
  --sp-4:  32px;
  --sp-5:  40px;
  --sp-6:  48px;
  --sp-7:  56px;
  --sp-8:  64px;
  --sp-10: 80px;
  --sp-12: 96px;
  --sp-16: 128px;

  /* Radius */
  --r-sm:   8px;
  --r-md:   16px;
  --r-lg:   24px;
  --r-xl:   32px;
  --r-full: 9999px;

  /* Shadows */
  --shadow-gold:   0 0 40px rgba(212,168,83,0.25), 0 0 80px rgba(212,168,83,0.1);
  --shadow-card:   0 8px 32px rgba(0,0,0,0.6), 0 2px 8px rgba(0,0,0,0.4);
  --shadow-btn:    0 4px 24px rgba(212,168,83,0.4), 0 2px 8px rgba(212,168,83,0.2);

  /* Transitions */
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  --transition-slow: 0.6s cubic-bezier(0.4,0,0.2,1);
}

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

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

body {
  font-family: var(--ff-body);
  background-color: var(--clr-bg-deep);
  color: var(--clr-text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

a { text-decoration: none; color: inherit; }

ul, ol { list-style: none; }

/* ---------- Utility Classes ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-3);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  font-family: var(--ff-body);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-gold);
  background: var(--clr-gold-dim);
  border: 1px solid rgba(212,168,83,0.25);
  padding: 6px 16px;
  border-radius: var(--r-full);
  margin-bottom: var(--sp-3);
}

.section-title {
  font-family: var(--ff-display);
  font-size: clamp(var(--fs-2xl), 4vw, var(--fs-4xl));
  font-weight: 700;
  line-height: 1.15;
  color: var(--clr-text-primary);
  margin-bottom: var(--sp-2);
}

.section-subtitle {
  font-size: var(--fs-md);
  color: var(--clr-text-secondary);
  line-height: 1.7;
  max-width: 560px;
}

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

.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  font-family: var(--ff-body);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 14px 32px;
  border-radius: var(--r-full);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--clr-gold-light), var(--clr-gold));
  color: #1a1118;
  box-shadow: var(--shadow-btn);
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--clr-white), var(--clr-gold-light));
  opacity: 0;
  transition: var(--transition);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 40px rgba(212,168,83,0.6), 0 4px 16px rgba(212,168,83,0.4);
}

.btn-primary:hover::before { opacity: 0.15; }

.btn-ghost {
  background: transparent;
  color: var(--clr-text-primary);
  border: 1px solid var(--clr-border-glass);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  border-color: var(--clr-gold);
  color: var(--clr-gold);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(212,168,83,0.2);
}

.btn-lg {
  padding: 18px 48px;
  font-size: var(--fs-base);
}

/* ---------- Glass Card ---------- */
.glass-card {
  background: var(--clr-bg-glass);
  border: 1px solid var(--clr-border-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--r-lg);
}

/* ============================================================
   NAVBAR
   ============================================================ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--sp-2) 0;
  transition: var(--transition);
}

#navbar.scrolled {
  background: rgba(10,6,8,0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--clr-border-glass);
  padding: var(--sp-1) 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-display);
  font-size: var(--fs-lg);
  font-weight: 700;
}

.nav-logo .logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--clr-gold-light), var(--clr-gold));
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #1a1118;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
}

.nav-links a {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--clr-text-secondary);
  transition: var(--transition);
  position: relative;
}

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

.nav-links a:hover { color: var(--clr-gold); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: var(--sp-1);
}

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

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,6,8,0.98);
  backdrop-filter: blur(24px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-5);
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-family: var(--ff-display);
  font-size: var(--fs-2xl);
  color: var(--clr-text-primary);
  transition: var(--transition);
}

.mobile-menu a:hover { color: var(--clr-gold); }

.mobile-close {
  position: absolute;
  top: var(--sp-3);
  right: var(--sp-3);
  background: none;
  border: none;
  color: var(--clr-text-primary);
  font-size: var(--fs-xl);
  cursor: pointer;
}

/* ============================================================
   HERO
   ============================================================ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg canvas {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Canvas preload overlay — shown while frames load */
.hero-canvas-loader {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  z-index: 1;
  background: var(--clr-bg-deep);
  transition: opacity 0.6s ease;
}

.hero-canvas-loader.fade-out {
  opacity: 0;
  pointer-events: none;
}

.hero-canvas-loader-bar {
  width: 160px;
  height: 2px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  overflow: hidden;
}

.hero-canvas-loader-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(to right, var(--clr-gold-light), var(--clr-gold));
  border-radius: 2px;
  transition: width 0.1s linear;
}

.hero-canvas-loader-text {
  font-size: var(--fs-xs);
  color: var(--clr-text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,6,8,0.92) 0%,
    rgba(18,13,16,0.80) 40%,
    rgba(10,6,8,0.65) 70%,
    rgba(10,6,8,0.85) 100%
  );
}

.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212,168,83,0.15) 0%, transparent 70%);
  border-radius: 50%;
  top: 50%;
  left: 40%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.6; transform: translate(-50%,-50%) scale(1); }
  50%       { opacity: 1;   transform: translate(-50%,-50%) scale(1.1); }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding-top: 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-gold);
  background: rgba(212,168,83,0.12);
  border: 1px solid rgba(212,168,83,0.3);
  padding: 8px 20px;
  border-radius: var(--r-full);
  margin-bottom: var(--sp-4);
  animation: fadeInDown 0.8s ease-out forwards;
}

.hero-badge i { font-size: 10px; }

.hero-headline {
  font-family: var(--ff-display);
  font-size: clamp(2.8rem, 6vw, var(--fs-6xl));
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: var(--sp-3);
  color: var(--clr-text-primary);
}

.hero-headline em {
  font-style: italic;
  background: linear-gradient(135deg, var(--clr-gold-light), var(--clr-gold), #e8b84b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.hero-sub {
  font-size: var(--fs-md);
  color: var(--clr-cream-dim);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: var(--sp-5);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  flex-wrap: wrap;
  margin-bottom: var(--sp-6);
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}

.hero-avatars {
  display: flex;
}

.hero-avatars img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--clr-bg-deep);
  margin-left: -10px;
  object-fit: cover;
}

.hero-avatars img:first-child { margin-left: 0; }

.hero-social-text {
  font-size: var(--fs-sm);
  color: var(--clr-text-secondary);
}

.hero-social-text strong { color: var(--clr-gold); }

.hero-stars { color: var(--clr-gold); font-size: var(--fs-xs); }

/* Floating Cards */
.hero-float-card {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border-radius: var(--r-md);
  pointer-events: none;
}

.hero-float-1 {
  bottom: 15%;
  right: 8%;
  animation: floatY 3.5s ease-in-out infinite;
}

.hero-float-2 {
  top: 30%;
  right: 5%;
  animation: floatY 4s ease-in-out infinite 1.5s;
}

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

.float-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-sm);
  background: linear-gradient(135deg, var(--clr-gold-light), var(--clr-gold));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a1118;
  font-size: 20px;
  flex-shrink: 0;
}

.float-info .float-label {
  font-size: var(--fs-xs);
  color: var(--clr-text-secondary);
}

.float-info .float-value {
  font-weight: 700;
  font-size: var(--fs-sm);
  color: var(--clr-text-primary);
}

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: var(--sp-4);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-1);
  color: var(--clr-text-muted);
  font-size: var(--fs-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
}

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

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee-section {
  overflow: hidden;
  background: linear-gradient(90deg, var(--clr-bg-mid), rgba(212,168,83,0.06), var(--clr-bg-mid));
  border-top: 1px solid var(--clr-border-glass);
  border-bottom: 1px solid var(--clr-border-glass);
  padding: 18px 0;
}

.marquee-track {
  display: flex;
  gap: var(--sp-6);
  animation: marqueeScroll 28s linear infinite;
  width: max-content;
}

.marquee-section:hover .marquee-track { animation-play-state: paused; }

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

.marquee-item {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-sm);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-text-secondary);
  white-space: nowrap;
}

.marquee-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--clr-gold);
  display: inline-block;
}

/* ============================================================
   CRAFTSMANSHIP / FEATURES
   ============================================================ */
#craftsmanship {
  padding: var(--sp-16) 0;
  position: relative;
}

#craftsmanship::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--clr-gold), transparent);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--sp-3);
  margin-top: var(--sp-8);
}

.feature-card {
  padding: var(--sp-5);
  border-radius: var(--r-lg);
  background: var(--clr-bg-glass);
  border: 1px solid var(--clr-border-glass);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--clr-gold-dim), transparent);
  opacity: 0;
  transition: var(--transition);
}

.feature-card:hover {
  border-color: rgba(212,168,83,0.35);
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}

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

.feature-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: var(--r-md);
  background: var(--clr-gold-dim);
  border: 1px solid rgba(212,168,83,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--clr-gold);
  margin-bottom: var(--sp-3);
  transition: var(--transition);
  position: relative;
  z-index: 1;
}

.feature-card:hover .feature-icon-wrap {
  background: linear-gradient(135deg, var(--clr-gold-light), var(--clr-gold));
  color: #1a1118;
  box-shadow: 0 4px 20px rgba(212,168,83,0.4);
}

.feature-card h3 {
  font-family: var(--ff-display);
  font-size: var(--fs-lg);
  font-weight: 600;
  color: var(--clr-text-primary);
  margin-bottom: var(--sp-1);
  position: relative;
  z-index: 1;
}

.feature-card p {
  font-size: var(--fs-sm);
  color: var(--clr-text-secondary);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* ============================================================
   ABOUT / STORY
   ============================================================ */
#about {
  padding: var(--sp-16) 0;
  background: linear-gradient(135deg, var(--clr-bg-mid) 0%, var(--clr-bg-deep) 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-main-img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  border-radius: var(--r-xl);
  display: block;
}

.about-accent-img {
  position: absolute;
  bottom: -var(--sp-4);
  right: -var(--sp-4);
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: var(--r-lg);
  border: 4px solid var(--clr-bg-deep);
  bottom: -24px;
  right: -24px;
}

.about-badge-float {
  position: absolute;
  top: var(--sp-4);
  left: -var(--sp-4);
  left: -24px;
  padding: 16px 20px;
  border-radius: var(--r-md);
}

.about-badge-float .badge-num {
  font-family: var(--ff-display);
  font-size: var(--fs-2xl);
  font-weight: 700;
  color: var(--clr-gold);
  line-height: 1;
}

.about-badge-float .badge-label {
  font-size: var(--fs-xs);
  color: var(--clr-text-secondary);
  margin-top: 2px;
}

.about-content { padding-left: var(--sp-2); }

.about-content .story-text {
  font-family: var(--ff-accent);
  font-size: var(--fs-lg);
  color: var(--clr-text-secondary);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: var(--sp-4);
  border-left: 2px solid var(--clr-gold);
  padding-left: var(--sp-3);
}

.about-content p {
  font-size: var(--fs-sm);
  color: var(--clr-text-secondary);
  line-height: 1.8;
  margin-bottom: var(--sp-3);
}

.about-stats {
  display: flex;
  gap: var(--sp-5);
  margin-top: var(--sp-5);
  padding-top: var(--sp-4);
  border-top: 1px solid var(--clr-border-glass);
}

.about-stat .stat-num {
  font-family: var(--ff-display);
  font-size: var(--fs-2xl);
  font-weight: 700;
  color: var(--clr-gold);
  line-height: 1;
}

.about-stat .stat-label {
  font-size: var(--fs-xs);
  color: var(--clr-text-muted);
  margin-top: 4px;
}

/* ============================================================
   FLAVORS / PRODUCTS
   ============================================================ */
#flavors {
  padding: var(--sp-16) 0;
  position: relative;
  overflow: hidden;
}

#flavors::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212,168,83,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.flavors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--sp-3);
  margin-top: var(--sp-8);
}

.flavor-card {
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border-glass);
  transition: var(--transition-slow);
  cursor: pointer;
  position: relative;
}

.flavor-card:hover {
  transform: translateY(-10px) scale(1.01);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}

.flavor-img-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.flavor-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.flavor-card:hover .flavor-img-wrap img { transform: scale(1.1); }

.flavor-badge {
  position: absolute;
  top: var(--sp-2);
  left: var(--sp-2);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--r-full);
}

.badge-new {
  background: linear-gradient(135deg, var(--clr-gold-light), var(--clr-gold));
  color: #1a1118;
}

.badge-popular {
  background: rgba(200,124,138,0.9);
  color: #fff;
}

.badge-limited {
  background: rgba(139,74,107,0.9);
  color: #fff;
}

.flavor-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,6,8,0.7) 30%, transparent);
}

.flavor-info {
  padding: var(--sp-3);
}

.flavor-name {
  font-family: var(--ff-display);
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--clr-text-primary);
  margin-bottom: 6px;
}

.flavor-desc {
  font-size: var(--fs-sm);
  color: var(--clr-text-secondary);
  line-height: 1.6;
  margin-bottom: var(--sp-2);
}

.flavor-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.flavor-price {
  font-family: var(--ff-display);
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--clr-gold);
}

.flavor-price span {
  font-size: var(--fs-xs);
  color: var(--clr-text-muted);
  font-family: var(--ff-body);
  font-weight: 400;
  margin-left: 4px;
}

.flavor-order-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--clr-gold);
  background: var(--clr-gold-dim);
  border: 1px solid rgba(212,168,83,0.25);
  padding: 8px 16px;
  border-radius: var(--r-full);
  cursor: pointer;
  transition: var(--transition);
}

.flavor-order-btn:hover {
  background: linear-gradient(135deg, var(--clr-gold-light), var(--clr-gold));
  color: #1a1118;
  border-color: transparent;
}

.flavor-color-bar {
  height: 3px;
  border-radius: 0 0 var(--r-xl) var(--r-xl);
  transition: var(--transition);
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
#why-us {
  padding: var(--sp-16) 0;
  background: linear-gradient(180deg, var(--clr-bg-mid) 0%, var(--clr-bg-deep) 100%);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
  align-items: center;
  margin-top: var(--sp-8);
}

.why-image-stack {
  position: relative;
  height: 520px;
}

.why-img-main {
  width: 70%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--r-xl);
  position: absolute;
  top: 0;
  left: 0;
}

.why-img-secondary {
  width: 50%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--r-lg);
  position: absolute;
  bottom: 0;
  right: 0;
  border: 4px solid var(--clr-bg-mid);
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.why-item {
  display: flex;
  gap: var(--sp-3);
  padding: var(--sp-3);
  border-radius: var(--r-md);
  background: var(--clr-bg-glass);
  border: 1px solid var(--clr-border-glass);
  transition: var(--transition);
}

.why-item:hover {
  border-color: rgba(212,168,83,0.3);
  background: var(--clr-gold-dim);
}

.why-item-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-sm);
  background: var(--clr-gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--clr-gold);
  flex-shrink: 0;
  transition: var(--transition);
}

.why-item:hover .why-item-icon {
  background: linear-gradient(135deg, var(--clr-gold-light), var(--clr-gold));
  color: #1a1118;
}

.why-item-content h4 {
  font-weight: 600;
  color: var(--clr-text-primary);
  margin-bottom: 4px;
}

.why-item-content p {
  font-size: var(--fs-sm);
  color: var(--clr-text-secondary);
  line-height: 1.6;
}

/* ============================================================
   STATS
   ============================================================ */
#stats {
  padding: var(--sp-12) 0;
  background: linear-gradient(135deg, rgba(212,168,83,0.08) 0%, transparent 50%, rgba(212,168,83,0.04) 100%);
  border-top: 1px solid var(--clr-border-glass);
  border-bottom: 1px solid var(--clr-border-glass);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-4);
}

.stat-card {
  text-align: center;
  padding: var(--sp-5);
  border-radius: var(--r-lg);
  position: relative;
}

.stat-card::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  height: 60%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--clr-border-glass), transparent);
}

.stat-card:last-child::after { display: none; }

.stat-big-num {
  font-family: var(--ff-display);
  font-size: clamp(var(--fs-2xl), 4vw, var(--fs-4xl));
  font-weight: 700;
  background: linear-gradient(135deg, var(--clr-gold-light), var(--clr-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: var(--sp-1);
}

.stat-desc {
  font-size: var(--fs-sm);
  color: var(--clr-text-secondary);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
#testimonials {
  padding: var(--sp-16) 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--sp-3);
  margin-top: var(--sp-8);
}

.testimonial-card {
  padding: var(--sp-5);
  border-radius: var(--r-xl);
  background: var(--clr-bg-glass);
  border: 1px solid var(--clr-border-glass);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: -10px;
  left: var(--sp-3);
  font-family: var(--ff-display);
  font-size: 100px;
  color: var(--clr-gold-dim);
  line-height: 1;
  pointer-events: none;
  color: rgba(212,168,83,0.12);
}

.testimonial-card:hover {
  border-color: rgba(212,168,83,0.3);
  transform: translateY(-5px);
  box-shadow: var(--shadow-card);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: var(--sp-2);
}

.testimonial-stars i { color: var(--clr-gold); font-size: 14px; }

.testimonial-text {
  font-size: var(--fs-sm);
  color: var(--clr-text-secondary);
  line-height: 1.8;
  margin-bottom: var(--sp-3);
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  padding-top: var(--sp-3);
  border-top: 1px solid var(--clr-border-glass);
}

.testimonial-author img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--clr-gold-dim);
}

.author-name {
  font-weight: 600;
  font-size: var(--fs-sm);
  color: var(--clr-text-primary);
}

.author-location {
  font-size: var(--fs-xs);
  color: var(--clr-text-muted);
}

.author-verified {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: var(--fs-xs);
  color: var(--clr-gold);
}

/* ============================================================
   FAQ
   ============================================================ */
#faq {
  padding: var(--sp-16) 0;
  background: linear-gradient(135deg, var(--clr-bg-mid) 0%, var(--clr-bg-deep) 100%);
}

.faq-container {
  max-width: 800px;
  margin: var(--sp-8) auto 0;
}

.faq-item {
  border-radius: var(--r-md);
  background: var(--clr-bg-glass);
  border: 1px solid var(--clr-border-glass);
  margin-bottom: var(--sp-2);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active {
  border-color: rgba(212,168,83,0.35);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-3) var(--sp-4);
  cursor: pointer;
  font-weight: 500;
  font-size: var(--fs-base);
  color: var(--clr-text-primary);
  gap: var(--sp-3);
  transition: var(--transition);
}

.faq-question:hover { color: var(--clr-gold); }

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--clr-gold-dim);
  border: 1px solid rgba(212,168,83,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--clr-gold);
  flex-shrink: 0;
  transition: var(--transition);
}

.faq-item.active .faq-icon {
  background: linear-gradient(135deg, var(--clr-gold-light), var(--clr-gold));
  color: #1a1118;
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), padding 0.3s;
}

.faq-answer-inner {
  padding: 0 var(--sp-4) var(--sp-3);
  font-size: var(--fs-sm);
  color: var(--clr-text-secondary);
  line-height: 1.8;
}

.faq-item.active .faq-answer { max-height: 500px; }

/* ============================================================
   CTA BANNER
   ============================================================ */
#cta-banner {
  padding: var(--sp-16) 0;
  position: relative;
  overflow: hidden;
}

.cta-banner-wrap {
  background: linear-gradient(135deg, rgba(212,168,83,0.12) 0%, rgba(200,124,138,0.08) 50%, rgba(212,168,83,0.12) 100%);
  border: 1px solid rgba(212,168,83,0.25);
  border-radius: var(--r-xl);
  padding: var(--sp-10);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212,168,83,0.05) 0%, transparent 100%);
}

.cta-glow-top {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(212,168,83,0.2) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-urgency {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(200,124,138,0.7);
  border: 1px solid rgba(200,124,138,0.5);
  padding: 6px 16px;
  border-radius: var(--r-full);
  margin-bottom: var(--sp-4);
  position: relative;
  z-index: 1;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff9999;
  animation: pulseDot 1.5s ease-in-out infinite;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.5); }
}

.cta-banner-title {
  font-family: var(--ff-display);
  font-size: clamp(var(--fs-2xl), 4vw, var(--fs-4xl));
  font-weight: 700;
  color: var(--clr-text-primary);
  margin-bottom: var(--sp-2);
  position: relative;
  z-index: 1;
}

.cta-banner-sub {
  font-size: var(--fs-md);
  color: var(--clr-text-secondary);
  max-width: 560px;
  margin: 0 auto var(--sp-5);
  position: relative;
  z-index: 1;
}

.cta-timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  margin-bottom: var(--sp-5);
  position: relative;
  z-index: 1;
}

.timer-block {
  text-align: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--clr-border-glass);
  border-radius: var(--r-sm);
  padding: 10px 16px;
  min-width: 70px;
}

.timer-num {
  font-family: var(--ff-display);
  font-size: var(--fs-2xl);
  font-weight: 700;
  color: var(--clr-gold);
  line-height: 1;
}

.timer-label {
  font-size: 10px;
  color: var(--clr-text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 4px;
}

.timer-sep {
  font-family: var(--ff-display);
  font-size: var(--fs-xl);
  color: var(--clr-gold);
  animation: timerBlink 1s step-end infinite;
}

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

.cta-btn-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
}

.cta-guarantee {
  font-size: var(--fs-xs);
  color: var(--clr-text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.cta-guarantee i { color: var(--clr-gold); }

/* ============================================================
   NEWSLETTER
   ============================================================ */
#newsletter {
  padding: var(--sp-16) 0;
}

.newsletter-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
  align-items: center;
  padding: var(--sp-8);
  border-radius: var(--r-xl);
  background: var(--clr-bg-glass);
  border: 1px solid var(--clr-border-glass);
  background: linear-gradient(135deg, var(--clr-bg-card), var(--clr-bg-mid));
}

.newsletter-content .section-subtitle { max-width: 100%; }

.newsletter-perk {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  font-size: var(--fs-sm);
  color: var(--clr-text-secondary);
  margin-top: var(--sp-3);
}

.newsletter-perk i { color: var(--clr-gold); }

.newsletter-form { display: flex; flex-direction: column; gap: var(--sp-2); }

.newsletter-input-wrap {
  display: flex;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--clr-border-glass);
  border-radius: var(--r-full);
  overflow: hidden;
  transition: var(--transition);
}

.newsletter-input-wrap:focus-within {
  border-color: var(--clr-gold);
  box-shadow: 0 0 0 3px rgba(212,168,83,0.1);
}

.newsletter-input-wrap input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 14px 24px;
  font-size: var(--fs-sm);
  color: var(--clr-text-primary);
  font-family: var(--ff-body);
}

.newsletter-input-wrap input::placeholder { color: var(--clr-text-muted); }

.newsletter-input-wrap button {
  border: none;
  padding: 0 28px;
  background: linear-gradient(135deg, var(--clr-gold-light), var(--clr-gold));
  color: #1a1118;
  font-weight: 600;
  font-size: var(--fs-sm);
  cursor: pointer;
  font-family: var(--ff-body);
  transition: var(--transition);
  white-space: nowrap;
}

.newsletter-input-wrap button:hover {
  background: linear-gradient(135deg, var(--clr-white), var(--clr-gold-light));
}

.newsletter-disclaimer {
  font-size: var(--fs-xs);
  color: var(--clr-text-muted);
}

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  background: var(--clr-bg-deep);
  border-top: 1px solid var(--clr-border-glass);
  padding: var(--sp-10) 0 var(--sp-4);
}

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

.footer-brand .nav-logo { margin-bottom: var(--sp-3); }

.footer-brand p {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: var(--sp-3);
}

.footer-social {
  display: flex;
  gap: var(--sp-1);
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: var(--r-sm);
  background: var(--clr-bg-glass);
  border: 1px solid var(--clr-border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-text-secondary);
  font-size: 16px;
  transition: var(--transition);
  cursor: pointer;
}

.social-btn:hover {
  background: var(--clr-gold-dim);
  border-color: var(--clr-gold);
  color: var(--clr-gold);
  transform: translateY(-3px);
}

.footer-col h5 {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--clr-text-primary);
  margin-bottom: var(--sp-3);
  letter-spacing: 0.05em;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }

.footer-col ul li a {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-col ul li a:hover { color: var(--clr-gold); padding-left: 4px; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--sp-4);
  flex-wrap: wrap;
  gap: var(--sp-2);
}

.footer-copy {
  font-size: var(--fs-xs);
  color: var(--clr-text-muted);
}

.footer-copy span { color: var(--clr-gold); }

.footer-bottom-links {
  display: flex;
  gap: var(--sp-3);
}

.footer-bottom-links a {
  font-size: var(--fs-xs);
  color: var(--clr-text-muted);
  transition: var(--transition);
}

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

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.hidden {
  opacity: 0;
  transform: translateY(40px);
}

.reveal-left.hidden { transform: translateX(-40px); }
.reveal-right.hidden { transform: translateX(40px); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .about-grid,
  .why-grid { grid-template-columns: 1fr; }

  .about-image-wrap { max-width: 560px; margin: 0 auto; }
  .why-image-stack { max-width: 480px; margin: 0 auto; }

  .newsletter-wrap { grid-template-columns: 1fr; }

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

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-card::after { display: none; }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-cta .btn:not(.btn-ghost) { display: none; }

  .nav-cta .btn-ghost { display: none; }

  .nav-hamburger { display: flex; }

  .hero-float-card { display: none; }

  .hero-headline { font-size: clamp(2.2rem, 8vw, 3.2rem); }

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

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

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

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

  .footer-brand { margin-bottom: var(--sp-4); }

  .about-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }

  .about-content { padding-left: 0; }

  .cta-banner-wrap { padding: var(--sp-6) var(--sp-3); }

  .cta-timer { gap: var(--sp-1); }

  .newsletter-wrap { padding: var(--sp-5); }

  .hero-actions { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .about-stats { flex-wrap: wrap; gap: var(--sp-3); }

  .hero-social-proof { flex-direction: column; align-items: flex-start; }
}

/* ---------- Animations ---------- */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

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

/* Glow Pulse behind buttons */
.btn-primary:focus-visible {
  outline: 2px solid var(--clr-gold);
  outline-offset: 3px;
}

/* Smooth scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--clr-bg-deep); }
::-webkit-scrollbar-thumb { background: var(--clr-gold-dim); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--clr-gold); }
