/* ============================================================
   EBEC Experience — Premium Dark Spirits
   v20260605
   ============================================================ */

:root {
  --bg:           #08090d;
  --bg-2:         #0d0e14;
  --bg-card:      #101220;
  --ink:          #f0ead8;
  --ink-soft:     rgba(240,234,216,.75);
  --ink-mute:     rgba(240,234,216,.38);
  --accent:       #c9a84c;
  --accent-hover: #e0bc5a;
  --green:        #2d5c3f;
  --green-light:  #3d7a52;
  --line:         rgba(240,234,216,.09);
  --glass-border: rgba(201,168,76,.14);
  --radius:       14px;
  --nav-h:        72px;
  --ease-out:     cubic-bezier(.25,.46,.45,.94);
  --ease-in-out:  cubic-bezier(.65,0,.35,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: clip; font-size: 16px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  background: var(--bg); color: var(--ink);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}
img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

.section-kicker {
  font-family: "JetBrains Mono", monospace;
  font-size: .72rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--accent); display: block; margin-bottom: 1rem;
}

/* ── CURSOR ── */
.cursor { pointer-events: none; position: fixed; z-index: 9999; opacity: 0; transition: opacity .3s var(--ease-out); }
.cursor.is-ready { opacity: 1; }
.cursor-dot  { position: fixed; top: 0; left: 0; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); will-change: transform; }
.cursor-ring { position: fixed; top: 0; left: 0; width: 38px; height: 38px; border-radius: 50%; border: 1.5px solid rgba(201,168,76,.45); will-change: transform; transition: width .2s var(--ease-out), height .2s var(--ease-out), border-color .2s; }
.cursor-ring.is-hover { width: 64px; height: 64px; border-color: var(--accent); opacity: .65; }
@media (hover: none) { .cursor { display: none !important; } }

/* ── SPLASH ── */
.splash {
  position: fixed; inset: 0; z-index: 10000; background: var(--bg);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2.5rem;
  transition: opacity .7s var(--ease-out), clip-path .7s var(--ease-in-out);
  animation: splashSafety .01s 4.5s forwards;
}
@keyframes splashSafety { to { opacity: 0; pointer-events: none; clip-path: inset(0 0 100% 0); } }
.splash.is-out { opacity: 0; pointer-events: none; clip-path: inset(0 0 100% 0); }
.splash-logo { display: flex; gap: .2rem; }
.splash-letter {
  font-family: "Playfair Display", serif; font-size: clamp(3rem, 9vw, 5.5rem); font-weight: 900;
  color: var(--ink); opacity: 0; transform: translateY(24px);
  animation: splashLetterIn .55s var(--ease-out) forwards;
}
.splash-letter:nth-child(1) { animation-delay: .1s; }
.splash-letter:nth-child(2) { animation-delay: .22s; }
.splash-letter:nth-child(3) { animation-delay: .34s; }
.splash-letter:nth-child(4) { animation-delay: .46s; }
@keyframes splashLetterIn { to { opacity: 1; transform: none; } }
.splash-bar { width: 0; height: 1px; background: var(--accent); animation: splashBarGrow 1.8s .65s var(--ease-in-out) forwards; }
@keyframes splashBarGrow { to { width: 120px; } }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
  transition: background .4s var(--ease-out), border-color .4s;
  border-bottom: 1px solid transparent;
}
.nav.is-solid { background: rgba(8,9,13,.93); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); border-bottom-color: var(--line); }
.nav-logo { font-family: "Playfair Display", serif; font-size: 1.4rem; font-weight: 900; letter-spacing: .06em; transition: color .2s; }
.nav-logo-exp { font-size: .9rem; font-weight: 400; font-style: italic; opacity: .65; margin-left: .2rem; }
.nav-logo:hover { color: var(--accent); }
.nav-links { display: flex; gap: 1.8rem; }
.nav-link { font-size: .875rem; font-weight: 500; color: var(--ink-soft); letter-spacing: .04em; position: relative; transition: color .2s; }
.nav-link::after { content: ""; position: absolute; bottom: -4px; left: 0; right: 100%; height: 1px; background: var(--accent); transition: right .3s var(--ease-out); }
.nav-link:hover { color: var(--ink); }
.nav-link:hover::after { right: 0; }
.nav-cta { font-size: .8125rem; font-weight: 600; letter-spacing: .06em; padding: .5rem 1.4rem; border-radius: 50px; border: 1.5px solid var(--accent); color: var(--accent); transition: background .2s, color .2s; }
.nav-cta:hover { background: var(--accent); color: var(--bg); }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.nav-hamburger span { display: block; width: 22px; height: 1.5px; background: var(--ink); transition: transform .3s var(--ease-in-out), opacity .3s; }
.nav-hamburger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── MOBILE MENU ── */
.mobile-menu { position: fixed; inset: 0; z-index: 99; background: rgba(8,9,13,.98); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2.5rem; transform: translateY(-105%); transition: transform .45s var(--ease-in-out); pointer-events: none; }
.mobile-menu.is-open { transform: none; pointer-events: auto; }
.mobile-link { font-family: "Playfair Display", serif; font-size: clamp(1.8rem, 6vw, 3rem); font-weight: 900; font-style: italic; color: var(--ink-soft); transition: color .2s; }
.mobile-link:hover { color: var(--accent); }

/* ── HERO ── */
.hero { position: relative; min-height: 100vh; min-height: 100svh; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero-video-wrap { position: absolute; inset: 0; z-index: 0; }
.hero-video { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-gradient { position: absolute; inset: 0; z-index: 1; background: radial-gradient(circle 900px at var(--mx,50%) var(--my,50%), rgba(201,168,76,.18) 0%, transparent 50%), radial-gradient(circle 700px at calc(var(--mx,50%) + 18%) calc(var(--my,50%) - 12%), rgba(45,92,63,.14) 0%, transparent 55%); pointer-events: none; filter: blur(20px); }
.hero-overlay { position: absolute; inset: 0; z-index: 2; background: linear-gradient(to bottom, rgba(8,9,13,.42) 0%, rgba(8,9,13,.2) 35%, rgba(8,9,13,.65) 75%, rgba(8,9,13,.96) 100%); }
.hero-grain { position: absolute; inset: 0; z-index: 3; opacity: .045; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); background-size: 200px; mix-blend-mode: overlay; pointer-events: none; }
.hero-vignette { position: absolute; inset: 0; z-index: 3; background: radial-gradient(ellipse at center, transparent 35%, rgba(8,9,13,.55) 75%, rgba(8,9,13,.88) 100%); pointer-events: none; }
.hero-content { position: relative; z-index: 4; text-align: center; padding: var(--nav-h) clamp(1rem, 6vw, 2rem) 0; max-width: 920px; }
.hero-kicker { font-family: "JetBrains Mono", monospace; font-size: .75rem; letter-spacing: .18em; text-transform: uppercase; color: var(--accent); margin-bottom: 1.75rem; opacity: 0; transform: translateY(14px); animation: heroIn .8s 2s var(--ease-out) forwards; }
.hero-title { font-family: "Playfair Display", serif; font-size: clamp(3.2rem, 8.5vw, 7.5rem); font-weight: 900; line-height: 1.0; text-wrap: balance; max-width: 18ch; margin: 0 auto 1.75rem; opacity: 0; transform: translateY(24px); animation: heroIn .9s 2.2s var(--ease-out) forwards; }
.hero-title em { font-style: italic; color: var(--accent); }
.hero-sub { font-size: clamp(1rem, 2vw, 1.2rem); color: var(--ink-soft); max-width: 52ch; margin: 0 auto 3rem; opacity: 0; animation: heroIn .8s 2.4s var(--ease-out) forwards; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; opacity: 0; animation: heroIn .8s 2.6s var(--ease-out) forwards; }
@keyframes heroIn { to { opacity: 1; transform: none; } }
.hero-scroll-hint { position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%); z-index: 4; display: flex; flex-direction: column; align-items: center; gap: .6rem; font-family: "JetBrains Mono", monospace; font-size: .65rem; letter-spacing: .22em; text-transform: uppercase; color: var(--ink-mute); opacity: 0; animation: heroIn .8s 3.1s var(--ease-out) forwards; }
.hero-scroll-line { width: 1px; height: 38px; background: linear-gradient(to bottom, var(--ink-mute), transparent); animation: scrollPulse 2.2s ease-in-out infinite; }
@keyframes scrollPulse { 0%,100% { transform: scaleY(1); opacity: .4; } 50% { transform: scaleY(1.6); opacity: 1; } }

/* ── BUTTONS ── */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: .8rem 2.1rem; border-radius: 50px; font-size: .9375rem; font-weight: 600; letter-spacing: .03em; transition: transform .2s var(--ease-out), background .2s, color .2s, border-color .2s, box-shadow .2s; }
@media (hover: hover) { .btn:hover { transform: translateY(-2px); } }
.btn-primary  { background: var(--accent); color: var(--bg); }
.btn-primary:hover { background: var(--accent-hover); box-shadow: 0 8px 32px rgba(201,168,76,.3); }
.btn-ghost    { background: transparent; color: var(--ink); border: 1.5px solid var(--line); }
.btn-ghost:hover { border-color: rgba(240,234,216,.28); }
.btn-accent   { background: rgba(201,168,76,.1); color: var(--accent); border: 1.5px solid rgba(201,168,76,.28); }
.btn-accent:hover { background: rgba(201,168,76,.2); border-color: var(--accent); }
.btn-outline  { background: transparent; color: var(--ink-soft); border: 1.5px solid var(--line); }
.btn-outline:hover { color: var(--ink); border-color: rgba(240,234,216,.22); }
.btn-full { width: 100%; }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(44px); transition: opacity .75s var(--ease-out), transform .75s var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-split] { opacity: 1; transform: none; }

/* ── MANIFESTO ── */
.manifesto { padding: clamp(5rem, 10vh, 9rem) clamp(1.5rem, 5vw, 4rem); }
.manifesto-inner { max-width: 860px; margin: 0 auto; text-align: center; }
.manifesto-text { font-family: "Playfair Display", serif; font-size: clamp(1.3rem, 2.5vw, 1.8rem); line-height: 1.65; color: var(--ink-soft); margin-bottom: 3.5rem; }
.manifesto-stats { display: flex; flex-wrap: wrap; gap: 3rem; justify-content: center; }
.stat { text-align: center; }
.stat-num { display: block; font-family: "Playfair Display", serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; color: var(--accent); line-height: 1; margin-bottom: .3rem; }
.stat-label { font-size: .8rem; color: var(--ink-mute); letter-spacing: .06em; text-transform: uppercase; }

/* ═══════════════════════════════════
   PRODUCT SECTIONS — grid + tilt
═══════════════════════════════════ */
.ps-section {
  padding: clamp(5rem, 10vh, 8rem) 0;
}
.ps-section--gin { background: var(--bg-2); }

.ps-wrap {
  max-width: 1400px; margin: 0 auto;
  display: flex; flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
  padding: 0 clamp(1.5rem, 5vw, 4rem);
}

/* ── Fila 1: hero image + info ── */
.ps-hero-row {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.ps-hero-row--reverse {
  grid-template-columns: 1.15fr 1fr;
}

/* Hero image — muestra la imagen completa */
.ps-hero-img {
  align-self: stretch;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-card);
  min-height: 380px;
}
.ps-hero-img img {
  width: 100%; height: 100%;
  max-height: 580px;
  object-fit: contain;
  object-position: center;
}

/* Info panel */
.ps-name {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 900; line-height: 1.05;
  color: var(--ink); margin-bottom: .5rem;
}
.ps-sub {
  font-size: 1.0625rem; color: var(--ink-mute);
  font-style: italic; margin-bottom: 1.75rem;
}
.ps-price {
  display: flex; align-items: flex-end; gap: .4rem;
  margin-bottom: 1.75rem;
}
.price-amount {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem; font-weight: 900; line-height: 1;
  color: var(--accent);
}
.price-dec  { font-size: 2.2rem; }
.price-unit { font-size: .9rem; color: var(--ink-mute); margin-bottom: .5rem; }

.ps-desc { margin-bottom: 1.5rem; }
.ps-desc p { font-size: .9375rem; color: var(--ink-soft); line-height: 1.75; margin-bottom: .75rem; }
.ps-desc p:last-child { margin-bottom: 0; }

.ps-tags { display: flex; flex-direction: column; gap: .5rem; margin-bottom: 2rem; }
.ps-tags li { font-size: .875rem; color: var(--ink-soft); }

.ps-actions { display: flex; flex-wrap: wrap; gap: .75rem; }

/* ── Awards ── */
.gin-awards { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 1.75rem; }
.award-badge {
  display: flex; align-items: center; gap: .75rem;
  padding: .6rem 1rem; border-radius: 50px;
  background: rgba(201,168,76,.08);
  border: 1px solid rgba(201,168,76,.2);
}
.award-icon  { font-size: 1.3rem; }
.award-text  { display: flex; flex-direction: column; }
.award-title { font-size: .8rem; font-weight: 600; color: var(--ink); letter-spacing: .02em; }
.award-sub   { font-size: .7rem; color: var(--ink-mute); font-family: "JetBrains Mono", monospace; }

/* ── Fila 2: duo (2 col iguales) ── */
.ps-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1rem, 2vw, 1.5rem);
}

/* ── Fila 3: trio (3 col iguales) ── */
.ps-trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
}

/* ── Fila 4: quad (4 col) ── */
.ps-quad {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(.75rem, 1.5vw, 1.25rem);
}

/* ── Banner ancho completo ── */
.ps-banner {
  width: 100%;
  max-height: 420px;
  overflow: hidden;
}
.ps-banner img {
  width: 100%; height: 420px;
  object-fit: cover; object-position: center 30%;
}

/* Premios banner — imagen completa */
.ps-awards-banner {
  max-width: 560px;
  margin: 0 auto;
}
.ps-awards-banner img {
  width: 100%; height: auto;
  object-fit: contain;
}

/* ═══════════════════════════════════
   TILT CARD — efecto 3D en hover
═══════════════════════════════════ */
.tilt-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  transform-style: preserve-3d;
  transform: perspective(900px) rotateX(0deg) rotateY(0deg) scale3d(1,1,1);
  transition: transform .15s var(--ease-out), box-shadow .15s, border-color .2s;
  will-change: transform;
}
@media (hover: hover) {
  .tilt-card:hover {
    border-color: rgba(201,168,76,.3);
    box-shadow: 0 28px 60px rgba(0,0,0,.5), 0 0 40px rgba(201,168,76,.07);
  }
}
/* Images fill the card naturally — full image visible */
.tilt-card img {
  width: 100%; height: auto;
  display: block;
  transition: transform .15s var(--ease-out);
  transform: translateZ(0);
}
/* Only for ps-duo and ps-trio — fixed aspect ratio so rows align */
.ps-duo  .tilt-card img,
.ps-trio .tilt-card img { aspect-ratio: 3/4; object-fit: cover; }
.ps-quad .tilt-card img { aspect-ratio: 1/1; object-fit: cover; }

/* ── TIRADOR ── */
.tirador-section { position: relative; padding: clamp(5rem, 10vh, 9rem) clamp(1.5rem, 5vw, 4rem); background: var(--bg); overflow: hidden; }
.tirador-bg-halo { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 900px; height: 900px; background: radial-gradient(ellipse at center, rgba(45,92,63,.18) 0%, transparent 68%); filter: blur(90px); pointer-events: none; z-index: 0; }
.tirador-content { position: relative; z-index: 1; max-width: 1320px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.tirador-text h2 { font-family: "Playfair Display", serif; font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 900; line-height: 1.1; color: var(--ink); margin-bottom: 1.25rem; }
.tirador-text h2 em { font-style: italic; color: var(--accent); }
.tirador-desc { font-size: 1rem; color: var(--ink-soft); line-height: 1.75; margin-bottom: 2rem; }
.tirador-features { display: flex; flex-direction: column; gap: .85rem; margin-bottom: 2.5rem; }
.tirador-features li { display: flex; align-items: flex-start; gap: 1rem; font-size: .9375rem; color: var(--ink-soft); }
.feat-icon { color: var(--green-light); flex-shrink: 0; margin-top: 3px; font-size: .7rem; }

.tirador-gallery { display: grid; grid-template-rows: auto auto; gap: 1rem; }
.tirador-img-main { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; }
.tirador-img-main img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s var(--ease-out); }
@media (hover: hover) { .tirador-img-main:hover img { transform: scale(1.04); } }
.tirador-img-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.tirador-img-row img { width: 100%; height: 200px; object-fit: cover; border-radius: var(--radius); transition: transform .55s var(--ease-out); }
@media (hover: hover) { .tirador-img-row img:hover { transform: scale(1.05); } }

/* ── SERVICIOS ── */
.servicios { padding: clamp(4rem, 8vh, 7rem) clamp(1.5rem, 5vw, 4rem); max-width: 1400px; margin: 0 auto; }
.servicios-header { text-align: center; margin-bottom: clamp(3rem, 6vh, 5rem); }
.servicios-header h2 { font-family: "Playfair Display", serif; font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 900; line-height: 1.1; color: var(--ink); }
.servicios-header h2 em { font-style: italic; color: var(--accent); }
.servicios-intro { font-size: 1.0625rem; color: var(--ink-soft); max-width: 55ch; margin: 1rem auto 0; }
.servicios-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 270px), 1fr)); gap: 1.5rem; }
.servicio-card { padding: 2.5rem 2rem; background: var(--bg-card); border: 1px solid var(--glass-border); border-radius: var(--radius); transition: transform .35s var(--ease-out), border-color .3s, box-shadow .3s; }
@media (hover: hover) { .servicio-card:hover { transform: translateY(-5px); border-color: rgba(201,168,76,.28); box-shadow: 0 14px 44px rgba(0,0,0,.35); } }
.servicio-icon { font-size: 2.2rem; margin-bottom: 1.25rem; }
.servicio-card h3 { font-family: "Playfair Display", serif; font-size: 1.3rem; font-weight: 700; color: var(--ink); margin-bottom: .75rem; }
.servicio-card p { font-size: .9375rem; color: var(--ink-soft); line-height: 1.7; }

/* ── TIENDA ── */
.tienda { position: relative; padding: clamp(5rem, 10vh, 9rem) clamp(1.5rem, 5vw, 4rem); overflow: hidden; text-align: center; background: var(--bg-2); }
.tienda-bg-mesh { position: absolute; inset: 0; z-index: 0; background: radial-gradient(ellipse 55% 60% at 15% 50%, rgba(201,168,76,.08) 0%, transparent 60%), radial-gradient(ellipse 50% 55% at 85% 50%, rgba(45,92,63,.07) 0%, transparent 60%); filter: blur(60px); pointer-events: none; }
.tienda-content { position: relative; z-index: 1; max-width: 860px; margin: 0 auto; }
.tienda-content h2 { font-family: "Playfair Display", serif; font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 900; line-height: 1.1; color: var(--ink); margin-bottom: 1rem; }
.tienda-content h2 em { font-style: italic; color: var(--accent); }
.tienda-desc { font-size: 1.0625rem; color: var(--ink-soft); max-width: 55ch; margin: 0 auto 3.5rem; }
.tienda-opciones { display: flex; flex-wrap: wrap; gap: 1.5rem; justify-content: center; margin-bottom: 2.25rem; }
.tienda-opcion { padding: 2.5rem 3rem; border-radius: var(--radius); background: var(--bg-card); border: 1px solid var(--glass-border); min-width: 240px; transition: transform .32s var(--ease-out), box-shadow .32s; }
@media (hover: hover) { .tienda-opcion:hover { transform: translateY(-4px); box-shadow: 0 14px 44px rgba(0,0,0,.35); } }
.tienda-opcion-featured { border-color: rgba(201,168,76,.45); background: linear-gradient(145deg, rgba(201,168,76,.08), rgba(8,9,13,.95)); }
.tienda-opcion-tag { font-family: "JetBrains Mono", monospace; font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); margin-bottom: .5rem; }
.tienda-opcion-name { font-family: "Playfair Display", serif; font-size: 1.5rem; font-weight: 700; font-style: italic; color: var(--ink); margin-bottom: .4rem; }
.tienda-opcion-formato { font-size: .8125rem; color: var(--ink-mute); letter-spacing: .05em; margin-bottom: .75rem; }
.tienda-opcion-precio { font-family: "Playfair Display", serif; font-size: 2rem; font-weight: 900; color: var(--accent); margin-bottom: 1.5rem; }
.tienda-opcion-precio-sub { font-size: .85rem; font-weight: 400; color: var(--ink-mute); }
.tienda-note { font-size: .9375rem; color: var(--ink-mute); }
.tienda-wa { color: var(--accent); border-bottom: 1px solid rgba(201,168,76,.3); transition: border-color .2s; }
.tienda-wa:hover { border-color: var(--accent); }

/* ── CONTACTO ── */
.contacto { padding: clamp(5rem, 10vh, 9rem) clamp(1.5rem, 5vw, 4rem); }
.contacto-inner { max-width: 1160px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.contacto-text h2 { font-family: "Playfair Display", serif; font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 900; line-height: 1.1; color: var(--ink); margin-bottom: 1.25rem; }
.contacto-text h2 em { font-style: italic; color: var(--accent); }
.contacto-desc { font-size: 1rem; color: var(--ink-soft); line-height: 1.75; margin-bottom: 2.5rem; }
.contacto-info { display: flex; flex-direction: column; gap: 1.25rem; }
.info-item { display: flex; flex-direction: column; gap: .2rem; }
.info-label { font-family: "JetBrains Mono", monospace; font-size: .68rem; letter-spacing: .15em; text-transform: uppercase; color: var(--ink-mute); }
.info-value { font-size: .9375rem; color: var(--ink-soft); transition: color .2s; }
a.info-value:hover { color: var(--accent); }

/* ── FORM ── */
.contacto-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: .5rem; }
.form-group label { font-size: .8125rem; color: var(--ink-mute); letter-spacing: .04em; }
.form-group input, .form-group select, .form-group textarea { background: var(--bg-card); border: 1px solid var(--line); border-radius: 9px; padding: .9rem 1.1rem; color: var(--ink); font-family: "Inter", sans-serif; font-size: .9375rem; transition: border-color .2s, box-shadow .2s; resize: vertical; -webkit-appearance: none; appearance: none; }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--ink-mute); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(201,168,76,.14); }
.form-group select option { background: var(--bg-2); }
.contacto-form .btn-sending, .contacto-form .btn-sent { display: none; }
.contacto-form.is-sending .btn-text { display: none; }
.contacto-form.is-sending .btn-sending { display: inline; }
.contacto-form.is-sending button[type="submit"] { opacity: .7; pointer-events: none; }
.contacto-form.is-sent .btn-text, .contacto-form.is-sent .btn-sending { display: none; }
.contacto-form.is-sent .btn-sent { display: inline; }
.contacto-form.is-sent button[type="submit"] { background: var(--green-light); pointer-events: none; }
.form-legal { font-size: .75rem; color: var(--ink-mute); text-align: center; margin-top: -.25rem; }
.form-legal strong { color: var(--ink-soft); }

/* ── Social links ── */
.info-social { display: flex; flex-direction: column; gap: .55rem; margin-top: .15rem; }
.social-link {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: .9375rem; color: var(--ink-soft);
  transition: color .2s, transform .2s;
}
.social-link:hover { color: var(--accent); transform: translateX(3px); }
.social-icon { width: 18px; height: 18px; flex-shrink: 0; color: inherit; }

/* ── FOOTER ── */
.footer { border-top: 1px solid var(--line); padding: 4.5rem clamp(1.5rem, 5vw, 4rem) 2.5rem; background: var(--bg-2); }
.footer-inner { max-width: 1400px; margin: 0 auto; display: flex; flex-wrap: wrap; gap: 3rem 5rem; align-items: flex-start; margin-bottom: 3rem; }
.footer-logo { font-family: "Playfair Display", serif; font-size: 2rem; font-weight: 900; color: var(--ink); margin-bottom: .4rem; }
.footer-logo-exp { font-size: 1.1rem; font-weight: 400; font-style: italic; opacity: .6; }
.footer-tagline { font-size: .875rem; color: var(--ink-mute); }
.footer-links { display: flex; flex-direction: column; gap: .55rem; }
.footer-links a { font-size: .875rem; color: var(--ink-soft); transition: color .2s; }
.footer-links a:hover { color: var(--accent); }
.footer-prod-label { font-family: "JetBrains Mono", monospace; font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: .5rem; }
.footer-contact { display: flex; flex-direction: column; gap: .4rem; }
.footer-contact-link { font-size: .875rem; color: var(--ink-soft); transition: color .2s; }
.footer-contact-link:hover { color: var(--accent); }
.footer-prod-names { font-family: "Playfair Display", serif; font-style: italic; font-size: 1.1rem; color: var(--ink-soft); }
.footer-bottom { max-width: 1400px; margin: 0 auto; border-top: 1px solid var(--line); padding-top: 1.5rem; }
.footer-bottom p { font-size: .75rem; color: var(--ink-mute); line-height: 1.6; }

/* ── Pack badge en fichas de producto ── */
.ps-pack-badge {
  display: inline-flex; align-items: center; gap: .8rem;
  padding: .4rem 1rem; border-radius: 50px;
  background: rgba(201,168,76,.07);
  border: 1px solid rgba(201,168,76,.2);
  margin-bottom: 1.75rem; margin-top: -.75rem;
}
.ps-pack-badge-tag {
  font-family: "JetBrains Mono", monospace;
  font-size: .65rem; letter-spacing: .13em; text-transform: uppercase;
  color: var(--ink-mute);
}
.ps-pack-badge-price {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem; font-weight: 700; color: var(--accent);
}

/* ── Pack en sección Tienda ── */
.tienda-sep {
  border: none; border-top: 1px solid var(--line);
  width: 100%; margin: 1.5rem 0;
}
.tienda-pack-kicker {
  font-family: "JetBrains Mono", monospace;
  font-size: .68rem; letter-spacing: .13em; text-transform: uppercase;
  color: var(--accent); margin-bottom: .4rem;
}
.tienda-pack-precio {
  font-family: "Playfair Display", serif;
  font-size: 1.75rem; font-weight: 900; color: var(--accent);
  margin-bottom: 1.25rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 1023px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .ps-hero-row, .ps-hero-row--reverse { grid-template-columns: 1fr; }
  .ps-hero-row--reverse .ps-hero-img { order: -1; }
  .ps-trio  { grid-template-columns: 1fr 1fr; }
  .tirador-content { grid-template-columns: 1fr; gap: 3rem; }
  .contacto-inner  { grid-template-columns: 1fr; gap: 3rem; }
}
@media (max-width: 767px) {
  .footer-inner { flex-direction: column; gap: 2rem; }
  .tienda-opciones { flex-direction: column; align-items: center; }
  .hero-title { font-size: clamp(2.8rem, 9vw, 4rem); }
  .gin-awards { flex-direction: column; }
  .ps-quad { grid-template-columns: 1fr 1fr; }
  .ps-banner img { height: 260px; }
  .ps-hero-img { min-height: 260px; }
  .ps-hero-img img { max-height: 360px; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .tirador-img-row img { height: 140px; }
  .ps-duo  { grid-template-columns: 1fr; }
  .ps-trio { grid-template-columns: 1fr; }
  .ps-quad { grid-template-columns: 1fr 1fr; }
}

/* ── AGE GATE ── */
.age-gate {
  position: fixed; inset: 0; z-index: 20000;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem;
  transition: opacity .5s var(--ease-out);
}
.age-gate.is-out { opacity: 0; pointer-events: none; }
.age-gate-card {
  max-width: 460px; width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: clamp(2rem, 5vw, 3rem);
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 1.25rem;
}
.age-gate-logo {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem; font-weight: 900; letter-spacing: .08em;
  color: var(--ink);
}
.age-gate-logo span { font-style: italic; font-weight: 400; color: var(--accent); }
.age-gate-emblem {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem; font-weight: 900;
  color: var(--accent);
  line-height: 1;
  border: 2px solid var(--accent);
  border-radius: 50%;
  width: 80px; height: 80px;
  display: flex; align-items: center; justify-content: center;
}
.age-gate-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.4rem, 4vw, 1.8rem);
  font-weight: 700; line-height: 1.25; color: var(--ink);
}
.age-gate-text {
  font-size: .95rem; color: var(--ink-soft); line-height: 1.6;
  max-width: 360px;
}
.age-gate-actions { display: flex; flex-direction: column; gap: .75rem; width: 100%; }
.age-gate-legal { font-size: .72rem; color: var(--ink-mute); line-height: 1.5; max-width: 360px; }
.age-gate-denied { color: #e06060; font-size: .9rem; font-weight: 500; }
.age-gate-denied[hidden] { display: none; }
