:root {
  --black: #0E0C0A;
  --panel: #17140F;
  --gold: #D4AF37;
  --gold-light: #E8C468;
  --copper: #A8672B;
  --ivory: #F3ECDD;
  --muted: #C9BEA6;
  --muted-2: #8f8879;
  --muted-3: #7A7266;
  --line: rgba(212, 175, 55, 0.18);
  --line-strong: rgba(212, 175, 55, 0.35);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--black);
  color: var(--ivory);
  font-family: 'Jost', 'Century Gothic', sans-serif;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Cormorant Garamond', 'Times New Roman', serif;
  font-weight: 500;
  color: var(--ivory);
  margin: 0;
}

p { margin: 0; }

a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-light); }

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 30px;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid var(--gold);
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold);
  color: var(--black);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--black);
}
.btn-ghost {
  background: transparent;
  color: var(--ivory);
  border-color: var(--line-strong);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}
.btn-lg { padding: 17px 40px; font-size: 14px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(14, 12, 10, 0.9);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}
.site-header.scrolled { border-bottom-color: var(--line); }

.header-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-top: 18px;
  padding-bottom: 18px;
}

.brand-mark {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
}
.brand-word {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  letter-spacing: 0.14em;
  padding-left: 0.14em;
  color: var(--ivory);
}
.brand-mark:hover .brand-word { color: var(--ivory); }
.brand-mark.small .brand-word { font-size: 15px; }

.main-nav {
  display: flex;
  gap: 32px;
}
.main-nav a {
  font-size: 12.5px;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-transform: uppercase;
}
.main-nav a:hover { color: var(--gold); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 30px;
  height: 30px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  height: 1px;
  background: var(--gold);
  width: 100%;
}

/* ---------- Hero ---------- */
.hero {
  padding: 64px 20px 88px;
  display: flex;
  justify-content: center;
}
.hero-frame {
  position: relative;
  max-width: 640px;
  width: 100%;
  border: 1px solid var(--gold);
  padding: 64px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 22px;
}
.dot {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}
.dot-tl { top: -4px; left: -4px; }
.dot-tr { top: -4px; right: -4px; }
.dot-bl { bottom: -4px; left: -4px; }
.dot-br { bottom: -4px; right: -4px; }

.kicker {
  font-size: 12px;
  letter-spacing: 0.35em;
  padding-left: 0.35em;
  color: var(--gold);
  text-transform: uppercase;
}

.wordmark {
  font-size: clamp(40px, 8vw, 62px);
  letter-spacing: 0.12em;
  padding-left: 0.12em;
  line-height: 1;
}

.rule-line {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  letter-spacing: 0.32em;
  padding-left: 0.32em;
  color: var(--gold);
}
.rule { width: 34px; height: 1px; background: var(--gold); }

.hero-copy {
  max-width: 420px;
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--muted-3);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 8px;
}

/* ---------- Sections ---------- */
.section { padding: 88px 0; border-top: 1px solid var(--line); }
.section-alt { background: #100D0A; }

.section-head { max-width: 620px; margin-bottom: 44px; }
.eyebrow {
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-head h2 {
  font-size: clamp(28px, 4vw, 36px);
  margin-bottom: 16px;
  line-height: 1.2;
}
.lede {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--muted-2);
}

/* ---------- Pillars ---------- */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.pillar-card {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pillar-card h3 { font-size: 19px; }
.pillar-card p { font-size: 13.5px; line-height: 1.6; color: var(--muted-2); }

/* ---------- Products ---------- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}
.product-card {
  background: var(--black);
  border: 1px solid var(--line);
  padding: 28px 20px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  transition: border-color 0.2s ease;
}
.product-card:hover { border-color: var(--line-strong); }
.product-card h3 { font-size: 21px; }
.product-card p { font-size: 13px; line-height: 1.6; color: var(--muted-2); }
.product-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-3);
}
.cocktail-photo-wrap {
  width: 100%;
  aspect-ratio: 5 / 7;
  overflow: hidden;
  border: 1px solid var(--line);
  margin: 2px 0 6px;
}
.cocktail-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.04);
  transition: transform 0.5s ease;
}
.product-card:hover .cocktail-photo { transform: scale(1.04); }
.cocktail-name { font-size: 19px; }
.cocktail-desc { font-style: italic; margin-bottom: 2px; }

/* ---------- Recipe toggle (per product) ---------- */
.recipe-toggle {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: none;
  border: none;
  padding: 6px 2px;
  margin-top: 2px;
  cursor: pointer;
  font-family: 'Jost', sans-serif;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.recipe-toggle:hover { color: var(--gold-light); }
.recipe-toggle .chevron { transition: transform 0.25s ease; }
.recipe-toggle[aria-expanded="true"] .chevron { transform: rotate(180deg); }

.recipe-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
  width: 100%;
}
.product-card.is-open .recipe-panel { grid-template-rows: 1fr; }
.recipe-panel-inner { overflow: hidden; min-height: 0; }

.recipe-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.recipe-steps.compact {
  gap: 14px;
  text-align: left;
  padding-top: 18px;
  margin-top: 4px;
  border-top: 1px solid var(--line);
}
.recipe-step {
  display: grid;
  grid-template-columns: 24px 34px 1fr;
  align-items: start;
  gap: 16px;
}
.recipe-steps.compact .recipe-step {
  grid-template-columns: 16px 22px 1fr;
  gap: 10px;
}
.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--gold);
  line-height: 1.3;
}
.recipe-steps.compact .step-num { font-size: 16px; }
.step-icon { margin-top: 2px; }
.recipe-step p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  padding-top: 3px;
}
.recipe-steps.compact .recipe-step p { font-size: 12.5px; padding-top: 1px; }

.badges-row {
  margin-top: 64px;
  padding-top: 44px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  text-align: center;
}
.badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.badge span {
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted-3);
  line-height: 1.5;
}

/* ---------- Presentaciones (packs) ---------- */
.pack-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.pack-card {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 30px 24px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  transition: border-color 0.2s ease;
}
.pack-card:hover { border-color: var(--line-strong); }
.pack-art-wrap {
  width: 100%;
  max-width: 220px;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid var(--line);
  margin-bottom: 4px;
}
.pack-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.04);
  transition: transform 0.5s ease;
}
.pack-card:hover .pack-photo { transform: scale(1.04); }
.pack-title { font-size: 22px; }
.pack-desc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted-2);
  min-height: 42px;
}
.pack-buy { margin-top: 10px; width: 100%; }
.pack-whatsapp {
  font-size: 11.5px;
  letter-spacing: 0.06em;
  color: var(--muted-3);
  margin-top: 2px;
}
.pack-whatsapp:hover { color: var(--gold); }

/* ---------- CTA ---------- */
.cta-section { text-align: center; }
.cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 560px;
}
.cta-section h2 { font-size: clamp(26px, 4vw, 34px); }
.cta-meta {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--muted-3);
  margin-top: 4px;
}

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 40px 0;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.footer-note {
  font-size: 12px;
  color: var(--muted-3);
}

/* ---------- Floating WhatsApp button ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.4);
  z-index: 60;
  transition: transform 0.2s ease, background 0.2s ease;
}
.whatsapp-float:hover {
  background: var(--gold-light);
  transform: scale(1.06);
}

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .products-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .products-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .badges-row { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 32px; }
  .pack-grid { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; }
}

@media (max-width: 900px) and (min-width: 641px) {
  .pack-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
  .pack-card { padding: 22px 14px 22px; }
}

@media (max-width: 720px) {
  .main-nav { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  .header-inner.open ~ .mobile-nav,
  .mobile-nav.open {
    display: flex;
  }
}

@media (max-width: 560px) {
  .pillars { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .hero-frame { padding: 48px 24px; }
  .badges-row { grid-template-columns: 1fr; }
}

/* ---------- Mobile nav panel ---------- */
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 2px;
  border-top: 1px solid var(--line);
  background: var(--black);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 16px 28px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
}
.mobile-nav a:last-child { border-bottom: none; }
