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

:root {
  --bg: #0C0A06;
  --bg2: #130F08;
  --bg3: #1A1408;
  --gold-dark: #8B6010;
  --gold: #C9922A;
  --gold-mid: #DBA840;
  --gold-light: #F0C060;
  --gold-pale: #F7DFA0;
  --cream: #F5EDD8;
  --cream-dim: #C8B896;
  --amber-glow: rgba(201, 146, 42, 0.15);
  --amber-glow-strong: rgba(201, 146, 42, 0.35);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 60px;
  background: linear-gradient(to bottom, rgba(12,10,6,0.95) 0%, transparent 100%);
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; font-weight: 400; letter-spacing: 0.06em;
  color: var(--gold-light);
  text-decoration: none;
}
.nav-logo span { font-style: italic; }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--cream-dim); text-decoration: none;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold-light); }
.nav-cta {
  font-size: 0.75rem; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 10px 24px; border: 1px solid var(--gold);
  color: var(--gold-light); background: transparent; cursor: pointer;
  transition: all 0.3s; text-decoration: none;
}
.nav-cta:hover { background: var(--gold); color: var(--bg); }

/* ─── HERO ─── */
.hero {
  position: relative; height: 100vh; min-height: 600px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-img {
  position: absolute; inset: 0;
  background: url('hero.png');
  background-size: cover;
  background-position: center;
  filter: brightness(0.28) saturate(1);
  transform: scale(1.04);
  animation: heroZoom 15s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1.12); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background: 
    radial-gradient(ellipse 60% 50% at 50% 80%, rgba(201,146,42,0.18) 0%, transparent 70%),
    linear-gradient(to top, rgba(12,10,6,0.9) 0%, rgba(12,10,6,0.2) 50%, rgba(12,10,6,0.5) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center; padding: 0 20px;
  animation: fadeUp 1.2s ease both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow {
  font-size: 0.72rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
  animation: fadeUp 1.2s 0.2s ease both;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.2rem, 8vw, 7rem);
  font-weight: 300; line-height: 1.05;
  animation: fadeUp 1.2s 0.35s ease both;
  background: linear-gradient(90deg, var(--cream) 0%, var(--cream) 30%, var(--gold-pale) 45%, #fff8e0 50%, var(--gold-pale) 55%, var(--cream) 70%, var(--cream) 100%);
  background-size: 250% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}
.hero-title em {
  font-style: italic;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 30%, #fff4b0 50%, var(--gold-light) 70%, var(--gold) 100%);
  background-size: 250% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}
@keyframes shimmer {
  0%   { background-position: 200% center; }
  100% { background-position: -200% center; }
}
.hero-tagline {
  margin-top: 22px;
  font-size: clamp(0.85rem, 1.8vw, 1.05rem);
  font-weight: 300; letter-spacing: 0.08em;
  color: var(--cream-dim); max-width: 520px; margin-inline: auto;
  line-height: 1.7;
  animation: fadeUp 1.2s 0.5s ease both;
}
.hero-actions {
  margin-top: 40px; display: flex; gap: 16px; justify-content: center;
  animation: fadeUp 1.2s 0.65s ease both;
}
.btn-primary {
  padding: 14px 36px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--bg); font-size: 0.78rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  border: none; cursor: pointer; text-decoration: none;
  display: inline-block;
  transition: all 0.35s;
  box-shadow: 0 8px 32px rgba(201,146,42,0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 48px rgba(201,146,42,0.55);
}
.btn-outline {
  padding: 14px 36px;
  background: transparent;
  color: var(--cream); font-size: 0.78rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  border: 1px solid rgba(245,237,216,0.35); cursor: pointer;
  text-decoration: none; display: inline-block;
  transition: all 0.35s;
}
.btn-outline:hover { border-color: var(--gold-light); color: var(--gold-light); }
.hero-scroll {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--cream-dim); font-size: 0.65rem; letter-spacing: 0.2em;
  text-transform: uppercase; animation: fadeUp 1.2s 1s ease both;
}
.scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* ─── TRUST BAR ─── */
.trust-bar {
  background: var(--bg2);
  border-top: 1px solid rgba(201,146,42,0.15);
  border-bottom: 1px solid rgba(201,146,42,0.15);
  padding: 24px 60px;
  display: flex; justify-content: center; gap: 64px;
  overflow: hidden;
}
.trust-item {
  display: flex; align-items: center; gap: 12px;
  color: var(--cream-dim); font-size: 0.78rem; letter-spacing: 0.1em;
  white-space: nowrap;
}
.trust-icon { color: var(--gold); font-size: 1.1rem; }

/* ─── SECTION COMMON ─── */
section { padding: 100px 60px; }
.section-label {
  font-size: 0.68rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 300; line-height: 1.15; color: var(--cream);
}
.section-title em { font-style: italic; color: var(--gold-light); }

/* ─── ABOUT STRIP ─── */
.about {
  background: var(--bg2);
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center;
}
.about-text p {
  margin-top: 24px; font-size: 1rem; line-height: 1.85;
  color: var(--cream-dim); max-width: 480px;
}
.about-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
}
.stat-card {
  padding: 28px; border: 1px solid rgba(201,146,42,0.2);
  background: rgba(201,146,42,0.04);
}
.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem; font-weight: 300;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label {
  margin-top: 6px; font-size: 0.75rem; letter-spacing: 0.12em;
  color: var(--cream-dim); text-transform: uppercase;
}

/* ─── PRODUCTS ─── */
.products {
  background: var(--bg);
  position: relative;
}
.products::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100'%3E%3Cpath d='M28 66L0 50V18L28 2l28 16v32L28 66zm0-6l22-12.7V19.7L28 7 6 19.7v27.6L28 60z' fill='%23C9922A' fill-opacity='0.045'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 0;
}
.products > * { position: relative; z-index: 1; }
.products-header {
  text-align: center; margin-bottom: 20px;
}
.products-header p {
  margin-top: 16px; color: var(--cream-dim);
  font-size: 0.95rem; line-height: 1.7;
}

/* Product grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1180px; margin: 0 auto;
}

/* ── Card shell ── */
.product-card {
  position: relative;
  background: var(--bg2);
  border: 1px solid rgba(201,146,42,0.10);
  border-radius: 2px;
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}
.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201,146,42,0.40);
  box-shadow: 0 24px 60px rgba(0,0,0,0.55), 0 0 0 1px rgba(201,146,42,0.12);
}

/* ── Image area ── */
.card-image-wrap {
  position: relative;
  width: 100%; aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg3);
}

/* Background scene — static, slightly zoomed in */
.card-bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.12);
  filter: brightness(0.72) saturate(1.15);
  transition: none;
}

/* Gradient overlay */
.card-image-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 35%, rgba(12,10,6,0.78) 100%);
  z-index: 1;
}

/* Bottle — transparent PNG, zooms on hover */
.card-bottle-img {
  position: absolute;
  bottom: -10%; left: 50%; transform: translateX(-50%) scale(1);
  height: 108%;
  width: auto;
  object-fit: contain;
  z-index: 2;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.55));
  -webkit-mask-image: radial-gradient(ellipse 78% 88% at 50% 50%, black 55%, transparent 100%);
  mask-image: radial-gradient(ellipse 78% 88% at 50% 50%, black 55%, transparent 100%);
}
.product-card:hover .card-bottle-img {
  transform: translateX(-50%) scale(1.10);
}
.card-badge {
  position: absolute; top: 14px; left: 14px;
  font-size: 0.58rem; letter-spacing: 0.22em; text-transform: uppercase;
  padding: 4px 10px;
  background: rgba(12,10,6,0.75);
  border: 1px solid var(--gold-dark);
  color: var(--gold);
  backdrop-filter: blur(4px);
  z-index: 3;
}

/* Per-card size toggle ── */
.card-size-toggle {
  position: absolute; bottom: 14px; right: 14px;
  display: flex; align-items: center;
  border: 1px solid rgba(201,146,42,0.35);
  background: rgba(12,10,6,0.72);
  backdrop-filter: blur(4px);
  overflow: hidden; border-radius: 2px;
  z-index: 3;
}
.card-size-btn {
  padding: 5px 13px;
  background: transparent;
  color: var(--cream-dim); font-family: 'DM Sans', sans-serif;
  font-size: 0.65rem; letter-spacing: 0.14em; text-transform: uppercase;
  border: none; cursor: pointer; transition: all 0.25s;
  white-space: nowrap;
}
.card-size-btn.active {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--bg); font-weight: 500;
}

/* ── Card body ── */
.card-body {
  padding: 28px 28px 32px;
  display: flex; flex-direction: column; flex: 1;
}
.card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem; font-weight: 400;
  color: var(--cream); line-height: 1.2; margin-bottom: 4px;
}
.card-subtitle {
  font-size: 0.68rem; color: var(--gold);
  letter-spacing: 0.16em; text-transform: uppercase;
  margin-bottom: 16px;
}
.card-divider {
  width: 28px; height: 1px;
  background: linear-gradient(to right, var(--gold), transparent);
  margin-bottom: 14px;
}
.card-desc {
  font-size: 0.81rem; color: var(--cream-dim); line-height: 1.72;
  flex: 1; margin-bottom: 22px;
}

/* ── Price row ── */
.card-price-row {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 18px;
}
.card-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.1rem; font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
  transition: opacity 0.2s;
}
.card-price .currency {
  font-size: 0.85rem; font-family: 'DM Sans', sans-serif;
  color: var(--cream-dim); vertical-align: super; margin-right: 1px;
}
.card-weight-label {
  font-size: 0.68rem; font-family: 'DM Sans', sans-serif;
  color: var(--cream-dim); letter-spacing: 0.08em;
  padding-bottom: 4px;
}

/* ── Add to cart / Buy Now ── */
.card-btn {
  display: block;
  width: 100%; padding: 12px 0;
  background: transparent; border: 1px solid rgba(201,146,42,0.28);
  color: var(--cream-dim); font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  cursor: pointer; transition: all 0.32s;
  position: relative; overflow: hidden;
  text-decoration: none; text-align: center;
}
.card-btn::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  opacity: 0; transition: opacity 0.32s;
}
.card-btn span { position: relative; z-index: 1; }
.card-btn:hover { border-color: transparent; color: var(--bg); }
.card-btn:hover::before { opacity: 1; }

/* ── Bottom glow line ── */
.card-glow {
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 70%; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0; transition: opacity 0.4s;
}
.product-card:hover .card-glow { opacity: 1; }

/* ─── OFFER BANNER ─── */
.offer-banner {
  background: linear-gradient(135deg, #1A1000 0%, #2A1A00 50%, #1A1000 100%);
  border-top: 1px solid rgba(201,146,42,0.25);
  border-bottom: 1px solid rgba(201,146,42,0.25);
  padding: 64px 60px;
  display: flex; align-items: center; justify-content: center;
  gap: 60px; text-align: center;
  position: relative; overflow: hidden;
}
.offer-banner::before {
  content: '';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(201,146,42,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.offer-text { position: relative; }
.offer-tag {
  font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px;
}
.offer-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 300; color: var(--cream); line-height: 1.2;
}
.offer-headline em { font-style: italic; color: var(--gold-light); }
.offer-sub {
  margin-top: 12px; font-size: 0.85rem; color: var(--cream-dim); line-height: 1.6;
}

/* ─── FOOTER ─── */
footer {
  background: var(--bg); 
  border-top: 1px solid rgba(201,146,42,0.12);
  padding: 60px 60px 40px;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr;
  gap: 60px;
}
.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem; color: var(--gold-light);
}
.footer-brand-name span { font-style: italic; }
.footer-brand-tagline {
  margin-top: 12px; font-size: 0.82rem; color: var(--cream-dim);
  line-height: 1.7; max-width: 260px;
}
.footer-col-title {
  font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.82rem; color: var(--cream-dim); text-decoration: none;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold-light); }
.footer-bottom {
  grid-column: 1 / -1;
  padding-top: 32px; border-top: 1px solid rgba(201,146,42,0.1);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.72rem; color: rgba(200,184,150,0.45); letter-spacing: 0.08em;
}

/* ─── DRIP DIVIDER ─── */
.drip-divider { line-height: 0; }
.drip-divider svg { width: 100%; display: block; }

/* ─── ANIMATIONS ─── */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Floating Bee */
.floating-bee {
  position: fixed;
  top: 22vh; right: -60px;
  width: 44px; height: 44px;
  z-index: 50; pointer-events: none;
  animation: beeFly 22s ease-in-out infinite;
  filter: drop-shadow(0 2px 8px rgba(201,146,42,0.5));
}
@keyframes beeFly {
  0%   { transform: translate(0,0) rotate(-8deg); right: -60px; opacity: 0; }
  5%   { opacity: 1; }
  20%  { transform: translate(-180px, 60px) rotate(5deg); }
  40%  { transform: translate(-320px, -30px) rotate(-6deg); }
  60%  { transform: translate(-200px, 80px) rotate(8deg); }
  80%  { transform: translate(-80px, 20px) rotate(-4deg); }
  92%  { opacity: 1; }
  100% { transform: translate(0,0) rotate(-8deg); right: -60px; opacity: 0; }
}

/* WhatsApp Button */
.wa-btn {
  position: fixed; bottom: 28px; right: 28px; z-index: 200;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 28px rgba(37,211,102,0.45);
  text-decoration: none; cursor: pointer;
  animation: waPop 0.5s 1.5s cubic-bezier(0.34,1.56,0.64,1) both;
  transition: transform 0.25s, box-shadow 0.25s;
}
.wa-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 36px rgba(37,211,102,0.6);
}
.wa-btn svg { width: 30px; height: 30px; fill: white; }
@keyframes waPop {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.wa-tooltip {
  position: fixed; bottom: 38px; right: 96px; z-index: 200;
  background: #1a1a1a; color: #fff; font-size: 0.75rem;
  padding: 8px 14px; border-radius: 6px; white-space: nowrap;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
  letter-spacing: 0.04em;
}
.wa-btn:hover ~ .wa-tooltip { opacity: 1; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  nav { padding: 20px 24px; }
  .nav-links, .nav-cta { display: none; }
  section { padding: 72px 24px; }
  .about { grid-template-columns: 1fr; gap: 48px; }
  .product-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .trust-bar { gap: 28px; flex-wrap: wrap; padding: 20px 24px; }
  footer { grid-template-columns: 1fr; gap: 36px; padding: 48px 24px 32px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .offer-banner { flex-direction: column; gap: 28px; padding: 48px 24px; }
}
@media (max-width: 600px) {
  .product-grid { grid-template-columns: 1fr; }
}

/* ─── PER-CARD BOTTLE ADJUSTMENTS ───
   Tune each card independently:
   · height    → how big the bottle is
   · bottom    → vertical position (more negative = lower / more cropped)
   · left      → horizontal position (default 50%)
   · --scale   → hover zoom multiplier (default 1.10)
   Use transform: translateX(-50%) scale(var(--bottle-scale, 1)) on base
   and translateX(-50%) scale(var(--bottle-hover-scale, 1.10)) on hover
─────────────────────────────────────── */

.product-card[data-index="0"] .card-bottle-img {
  height: 108%; bottom: -10%; left: 50%;
}
.product-card[data-index="0"]:hover .card-bottle-img {
  transform: translateX(-50%) scale(1.10);
}

.product-card[data-index="1"] .card-bottle-img {
  height: 108%; bottom: -10%; left: 50%;
}
.product-card[data-index="1"]:hover .card-bottle-img {
  transform: translateX(-50%) scale(1.10);
}

.product-card[data-index="2"] .card-bottle-img {
  height: 108%; bottom: -10%; left: 50%;
}
.product-card[data-index="2"]:hover .card-bottle-img {
  transform: translateX(-50%) scale(1.10);
}

.product-card[data-index="3"] .card-bottle-img {
  height: 108%; bottom: -10%; left: 50%;
}
.product-card[data-index="3"]:hover .card-bottle-img {
  transform: translateX(-50%) scale(1.10);
}

.product-card[data-index="4"] .card-bottle-img {
  height: 108%; bottom: -10%; left: 50%;
}
.product-card[data-index="4"]:hover .card-bottle-img {
  transform: translateX(-50%) scale(1.10);
}

.product-card[data-index="5"] .card-bottle-img {
  height: 108%; bottom: -10%; left: 50%;
}
.product-card[data-index="5"]:hover .card-bottle-img {
  transform: translateX(-50%) scale(1.10);
}