/* ══════════════════════════════════════════════════
   REY CAMOES PREMIUM — Light Luxury 2025
   ══════════════════════════════════════════════════ */

:root {
  --bg:       #ECEAE5;
  --bg-2:     #E4E1DB;
  --surface:  #F0EEEA;
  --gold:     #C9A84C;
  --gold-hi:  #D9B85C;
  --gold-dim: rgba(201,168,76,0.10);
  --ink:      #1A1714;
  --ink-2:    #2A1A0E;
  --muted:    #8A7B6A;
  --border:   rgba(201,168,76,0.22);
  --border-s: rgba(60,53,41,0.10);
  --serif:    'Cormorant Garamond', Georgia, serif;
  --sans:     'Montserrat', system-ui, sans-serif;
  --nav-h:    72px;
  --ease:     cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--sans); background: var(--bg); color: var(--ink); overflow-x: hidden; line-height: 1.6; }

/* ══ FONDO — Textura papel + viñeta ══ */
.bg-lines {
  position: fixed; inset: 0;
  z-index: 0; pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 35%, transparent 30%, rgba(20,14,8,0.22) 100%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.40' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23g)' opacity='0.13'/%3E%3C/svg%3E");
  background-size: cover, 180px 180px;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ══ SCROLL REVEAL ══ */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .10s; }
.reveal-delay-2 { transition-delay: .20s; }
.reveal-delay-3 { transition-delay: .30s; }
.reveal-delay-4 { transition-delay: .40s; }
.reveal-delay-5 { transition-delay: .50s; }

/* ══════════════════════════════════════════════════
   NAV
   ══════════════════════════════════════════════════ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 101;
  height: var(--nav-h);
  transition: background .4s var(--ease), border-color .4s;
  border-bottom: 1px solid transparent;
  background: transparent;
}
.nav.solid {
  background: rgba(22,14,9,0.88);
  backdrop-filter: blur(12px) saturate(1.2);
  -webkit-backdrop-filter: blur(12px) saturate(1.2);
  border-bottom-color: rgba(201,168,76,0.12);
}
.nav-inner {
  max-width: 1400px; margin: 0 auto; padding: 0 56px;
  height: 100%; display: flex; align-items: center; justify-content: space-between;
}
.nav-logo img {
  height: 56px; width: auto;
  transition: opacity .2s;
}
.nav-logo:hover img { opacity: .75; }
.nav-links { display: flex; gap: 40px; }
.nav-links a {
  font-size: 10px; font-weight: 500; letter-spacing: .20em; text-transform: uppercase;
  color: rgba(255,255,255,0.80); position: relative; transition: color .2s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--gold); transition: width .3s var(--ease);
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { width: 100%; }
/* ══ NAV DROPDOWN ══ */
.nav-dropdown-wrap {
  position: relative;
  display: flex; align-items: center;
}
.nav-dropdown-trigger {
  display: flex; align-items: center; gap: 5px;
  cursor: pointer;
}
.nav-dropdown-trigger svg {
  transition: transform .25s var(--ease);
  opacity: .7;
}
.nav-dropdown-wrap:hover .nav-dropdown-trigger svg { transform: rotate(180deg); }

/* Puente invisible que cubre el hueco entre trigger y dropdown */
.nav-dropdown-wrap::after {
  content: '';
  position: absolute;
  top: 100%; left: -10px; right: -10px;
  height: 22px;
}
.nav-dropdown {
  position: absolute; top: calc(100% + 20px); left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: rgba(18,11,6,0.97);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(201,168,76,0.18);
  min-width: 220px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
}
.nav-dropdown-wrap:hover .nav-dropdown {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown a {
  display: block;
  padding: 11px 22px;
  font-size: 10px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(245,240,232,0.60);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color .2s, background .2s, padding-left .2s;
}
.nav-dropdown a:last-child { border-bottom: none; }
.nav-dropdown a:hover {
  color: var(--gold);
  background: rgba(201,168,76,0.06);
  padding-left: 28px;
}
.nav-dropdown a::after { display: none; }

.nav-socials { display: flex; align-items: center; gap: 20px; margin-left: 32px; }
.nav-social {
  color: rgba(255,255,255,0.60);
  transition: color .2s, transform .2s;
  display: flex; align-items: center;
}
.nav-social svg { width: 20px; height: 20px; }
.nav-social:hover { color: var(--gold); transform: translateY(-2px); }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger span { display: block; width: 22px; height: 1px; background: #fff; transition: .3s var(--ease); }
.mobile-overlay {
  position: fixed; inset: var(--nav-h) 0 0 0; z-index: 99;
  background: var(--surface); display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 8px;
  opacity: 0; visibility: hidden; transition: opacity .4s, visibility .4s;
  border-top: 1px solid var(--border-s);
}
.mobile-overlay.open { opacity: 1; visibility: visible; }
.mobile-overlay a {
  font-family: var(--serif); font-size: 52px; font-weight: 300;
  color: var(--ink); padding: 8px; transition: color .2s;
}
.mobile-overlay a:hover { color: var(--gold); }

/* ══════════════════════════════════════════════════
   HERO — Imagen fondo + overlay + texto izquierda
   ══════════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero {
  position: relative;
  width: 100%; height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
}

/* Imagen de fondo — pared de botellas / bodega */
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: url('../img/hero-bg.jpg') center center / cover no-repeat;
}

/* Overlay: oscuro uniforme para tratamiento display */
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: rgba(10,6,3,0.60);
}

/* Gradiente superior para que el logo siempre quede legible */
.hero::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 160px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}

/* Contenido de texto — tratamiento display editorial */
.hero-content {
  position: relative; z-index: 2;
  width: 100%;
  padding: 0 5%;
  text-align: left;
  display: flex; flex-direction: column; align-items: flex-start;
  animation: fadeUp 0.8s ease-out both;
}

.hero-sup {
  font-family: var(--sans);
  font-size: 11px; font-weight: 400;
  letter-spacing: .35em; text-transform: uppercase;
  color: rgba(255,255,255,0.45); margin-bottom: 20px;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(42px, 6.5vw, 105px);
  font-weight: 600; line-height: 1;
  letter-spacing: .28em; text-transform: uppercase;
  color: #F0D98A; margin-bottom: 28px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.8), 0 0 60px rgba(0,0,0,0.6);
}

.hero-divider {
  width: 56px; height: 1px;
  background: var(--gold);
  margin-bottom: 24px;
  opacity: 0.8;
}

.hero-tagline {
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 300; font-style: italic;
  color: rgba(255,255,255,0.88);
  margin-bottom: 44px; line-height: 1.4;
  text-shadow: 0 1px 12px rgba(0,0,0,0.4);
}
.hero-tagline em { font-style: italic; }

.hero-eyebrow {
  font-family: var(--sans);
  font-size: 12px; font-weight: 400;
  letter-spacing: .32em; text-transform: uppercase;
  color: rgba(255,255,255,0.75); margin-bottom: 28px;
}

.hero-desc {
  font-family: var(--sans);
  font-size: 14px; line-height: 1.9;
  color: rgba(255,255,255,0.60);
  max-width: 520px; margin-bottom: 44px;
  font-weight: 300;
  text-align: left;
}

/* Socials fijos en hero, abajo izquierda */
.hero-socials {
  position: absolute; bottom: 48px; left: 6%;
  z-index: 3;
  display: flex; gap: 22px;
}
.hero-socials a {
  font-family: var(--sans);
  font-size: 11px; font-weight: 500; letter-spacing: .18em;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  transition: color .25s;
}
.hero-socials a:hover { color: var(--gold); }

@media (max-width: 768px) {
  .hero-content { padding: 0 5% 40px; }
  .hero-title { font-size: clamp(44px, 14vw, 80px); }
  .hero-socials { bottom: 32px; left: 5%; }
  .hero-overlay {
    background: rgba(10,6,3,0.65);
  }
  .hero-eyebrow { margin-bottom: 14px; }
  .hero-desc { font-size: 13px; margin-bottom: 28px; line-height: 1.7; }
}

/* ══ BOTONES ══ */
.btn-primary {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 17px 44px;
  background: var(--gold); color: #fff;
  font-size: 10px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
  transition: background .25s var(--ease), transform .2s, box-shadow .25s;
}
.btn-primary:hover {
  background: var(--gold-hi); transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(184,137,42,.30);
}
.btn-primary svg { transition: transform .3s var(--ease); }
.btn-primary:hover svg { transform: translateX(4px); }
.btn-ghost {
  font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(255,255,255,0.80); transition: color .2s;
  text-shadow: 0 1px 8px rgba(0,0,0,0.35);
}
.btn-ghost:hover { color: #fff; }

/* ══════════════════════════════════════════════════
   PACKS DESTACADOS
   ══════════════════════════════════════════════════ */
.packs-section {
  background: var(--bg);
  padding: 100px 0 80px;
}
.packs-header {
  max-width: 1320px; margin: 0 auto;
  padding: 0 56px 56px;
  text-align: center;
}
.packs-sub {
  font-size: 15px; color: var(--muted);
  margin-top: 16px; font-weight: 300;
  line-height: 1.7;
}
.packs-grid {
  max-width: 1320px; margin: 0 auto;
  padding: 0 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.pack-card {
  display: flex; flex-direction: column;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-s);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  cursor: pointer;
}
.pack-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 56px rgba(42,26,14,.13);
}
.pack-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.pack-img img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(.85);
  transition: transform .6s var(--ease), filter .4s;
}
.pack-card:hover .pack-img img {
  transform: scale(1.06);
  filter: saturate(1);
}
.pack-badge {
  position: absolute; top: 16px; left: 16px;
  padding: 5px 12px;
  background: var(--gold); color: #fff;
  font-family: var(--sans); font-size: 9px;
  font-weight: 600; letter-spacing: .16em;
  text-transform: uppercase; border-radius: 100px;
}
.pack-badge-new { background: var(--ink-2); }
.pack-body {
  padding: 24px 26px 28px;
  display: flex; flex-direction: column; gap: 8px; flex: 1;
}
.pack-body h3 {
  font-family: var(--serif); font-size: 22px;
  font-weight: 400; color: var(--ink); line-height: 1.2;
}
.pack-body p {
  font-size: 13px; color: var(--muted);
  line-height: 1.7; font-weight: 300; flex: 1;
}
.pack-cta {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 12px;
  font-family: var(--sans); font-size: 10px;
  font-weight: 600; letter-spacing: .18em;
  text-transform: uppercase; color: var(--gold);
  transition: gap .25s var(--ease);
}
.pack-card:hover .pack-cta { gap: 12px; }

@media (max-width: 1024px) {
  .packs-grid { grid-template-columns: repeat(2, 1fr); padding: 0 40px; }
  .packs-header { padding: 0 40px 48px; }
}
@media (max-width: 600px) {
  .packs-grid { grid-template-columns: 1fr; padding: 0 24px; }
  .packs-header { padding: 0 24px 40px; }
  .packs-section { padding: 72px 0 60px; }
}

/* ══════════════════════════════════════════════════
   CATEGORÍAS — Grid de botones con imagen
   ══════════════════════════════════════════════════ */
.cats-top-sub {
  font-size: 14px; color: var(--muted); margin-top: 12px;
  font-weight: 300; line-height: 1.7;
}
.cats-bottom-cta {
  padding: 48px 56px; text-align: center;
  background: var(--surface);
}
.cats-btn-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 0 56px 0;
  background: var(--surface);
  padding-bottom: 0;
}
.cat-btn {
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  justify-content: space-between;
  padding: 28px 28px 24px;
  border-radius: 16px;
  border: 1px solid rgba(201,168,76,0);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
  min-height: 220px;
  background-size: cover; background-position: center;
}
.cat-btn::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(12,7,3,0.90) 0%,
    rgba(12,7,3,0.55) 50%,
    rgba(12,7,3,0.25) 100%
  );
  border-radius: inherit;
  transition: background .35s;
}
.cat-btn:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.30);
  border-color: rgba(201,168,76,0.60);
}
.cat-btn:hover::before {
  background: linear-gradient(
    to top,
    rgba(12,7,3,0.80) 0%,
    rgba(12,7,3,0.40) 50%,
    rgba(12,7,3,0.15) 100%
  );
}
.cat-btn-num {
  position: relative; z-index: 1;
  font-family: var(--sans); font-size: 9px; font-weight: 600;
  letter-spacing: .22em; color: rgba(201,168,76,0.65);
}
.cat-btn-body {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; gap: 5px; flex: 1;
  justify-content: flex-end; padding-top: 16px;
}
.cat-btn-name {
  font-family: var(--serif); font-size: 22px; font-weight: 400;
  line-height: 1.2; color: #fff;
}
.cat-btn-desc {
  font-size: 11px; color: rgba(245,240,232,0.52);
  letter-spacing: .04em; font-weight: 300;
}
.cat-btn-arr {
  position: relative; z-index: 1;
  font-size: 18px; color: var(--gold);
  transition: transform .25s var(--ease);
  align-self: flex-end;
}
.cat-btn:hover .cat-btn-arr { transform: translateX(6px); }

@media (max-width: 1024px) {
  .cats-btn-grid { grid-template-columns: repeat(2, 1fr); padding: 40px; }
}
@media (max-width: 540px) {
  .cats-btn-grid { grid-template-columns: 1fr; padding: 24px; }
}

/* ══════════════════════════════════════════════════
   EYEBROW & TITLES (shared)
   ══════════════════════════════════════════════════ */
.eyebrow {
  font-size: 9px; font-weight: 500; letter-spacing: .30em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 14px;
  display: flex; align-items: center; gap: 16px;
}
.eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--gold); flex-shrink: 0; }
.section-title {
  font-family: var(--serif); font-size: clamp(32px, 4vw, 56px);
  font-weight: 600; line-height: 1.1; color: var(--ink);
}
.section-title em { font-style: italic; font-weight: 300; color: var(--gold); }

/* ══════════════════════════════════════════════════
   CATEGORÍAS — Listado vertical premium
   ══════════════════════════════════════════════════ */
.categorias { background: transparent; padding: 0; }

/* Encabezado general */
.cats-top-header {
  text-align: center;
  padding: 100px 40px 64px;
  border-bottom: 1px solid rgba(201,168,76,0.18);
}
.cats-top-header .eyebrow { justify-content: center; }
.cats-top-header .eyebrow::before { display: none; }
.cats-top-header h2 {
  font-family: var(--serif); font-size: clamp(40px, 5vw, 68px);
  font-weight: 300; line-height: 1.15; color: var(--ink);
}
.cats-top-header h2 em { font-style: italic; color: var(--gold); }

/* Cada bloque de categoría */
.cat-block { min-height: 80vh; display: flex; align-items: stretch; }
.cat-block-inner {
  width: 100%; max-width: 1400px; margin: 0 auto; padding: 80px 56px;
  display: grid; grid-template-columns: 320px 1fr; gap: 64px; align-items: start;
}

/* Columna izquierda — título sticky */
.cat-label { position: sticky; top: 120px; padding-top: 4px; }
.cat-label .cat-num {
  font-family: var(--sans); font-size: 10px; font-weight: 500;
  letter-spacing: .30em; color: var(--gold); text-transform: uppercase;
  display: block; margin-bottom: 24px;
}
.cat-label .gold-rule { display: block; width: 40px; height: 1px; background: var(--gold); margin-bottom: 20px; }
.cat-label h2 {
  font-family: var(--serif); font-size: clamp(34px, 3.2vw, 52px);
  font-weight: 300; line-height: 1.2; color: var(--ink); margin-bottom: 20px;
}
.cat-label h2 em { display: block; font-style: italic; color: var(--gold); }
.cat-label .cat-desc {
  font-size: 12px; font-weight: 300; line-height: 1.8;
  color: #6B5744; max-width: 240px;
}

/* Columna derecha — grid de subcards */
.cat-cards {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; align-content: start; padding-top: 4px;
}

/* Sub-card */
.sub-card {
  background: #fff; border: 0.5px solid rgba(201,168,76,0.22);
  display: flex; flex-direction: column; overflow: hidden;
  transition: box-shadow .35s var(--ease), transform .35s var(--ease), border-color .35s;
}
.sub-card:hover {
  box-shadow: 0 12px 40px rgba(42,26,14,0.10);
  transform: translateY(-4px); border-color: var(--gold);
}
.card-img-wrap {
  width: 100%; aspect-ratio: 4/3; overflow: hidden;
  background: #F0EDE8; position: relative;
}
.card-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease);
}
.sub-card:hover .card-img-wrap img { transform: scale(1.04); }
.card-img-placeholder {
  width: 100%; height: 100%; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 10px;
}
.card-img-placeholder svg { opacity: .22; }
.card-img-placeholder span {
  font-family: var(--sans); font-size: 9px; font-weight: 400;
  letter-spacing: .20em; text-transform: uppercase; color: #6B5744; opacity: .5;
}
.card-body {
  padding: 22px 22px 20px; display: flex; flex-direction: column; flex: 1; gap: 10px;
}
.card-body h4 {
  font-family: var(--serif); font-size: 20px;
  font-weight: 400; line-height: 1.25; color: var(--ink-2);
}
.card-body p { font-size: 11px; font-weight: 300; color: #6B5744; line-height: 1.7; flex: 1; }
.card-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sans); font-size: 9px; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase; color: var(--gold);
  margin-top: 6px; transition: gap .25s var(--ease), color .25s;
}
.card-cta::after { content: '→'; font-size: 11px; transition: transform .25s var(--ease); }
.sub-card:hover .card-cta { color: #a8832c; }
.sub-card:hover .card-cta::after { transform: translateX(4px); }

/* Separador decorativo */
.cat-divider {
  display: flex; align-items: center; justify-content: center;
  padding: 0 56px; gap: 20px;
}
.cat-divider::before, .cat-divider::after {
  content: ''; flex: 1; height: 1px; background: rgba(201,168,76,0.28);
}
.cat-divider-ornament { display: flex; align-items: center; gap: 8px; color: var(--gold); }
.cat-divider-ornament span {
  display: block; width: 4px; height: 4px;
  background: var(--gold); transform: rotate(45deg);
}
.cat-divider-ornament .dot-main { width: 6px; height: 6px; }

/* Footer CTA de la sección */
.cats-footer-cta {
  text-align: center; padding: 80px 40px 100px;
  border-top: 1px solid rgba(201,168,76,0.18);
}
.cats-footer-cta p {
  font-family: var(--serif); font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 300; color: var(--ink); margin-bottom: 32px;
}
.cats-footer-cta p em { font-style: italic; color: var(--gold); }

/* ══════════════════════════════════════════════════
   CITA — Fondo cálido arena
   ══════════════════════════════════════════════════ */
.quote-band {
  padding: 100px 56px; background: var(--bg-2);
  border-top: 1px solid var(--border-s); border-bottom: 1px solid var(--border-s);
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 28px; position: relative; overflow: hidden;
}
.quote-band::before {
  content: '"'; position: absolute; left: 4%; top: -20px;
  font-family: var(--serif); font-size: 300px; font-weight: 700;
  color: rgba(184,137,42,0.08); line-height: 1; pointer-events: none;
}
.quote-text {
  font-family: var(--serif); font-size: clamp(22px, 3vw, 44px);
  font-weight: 300; font-style: italic; color: var(--ink);
  line-height: 1.4; max-width: 840px; position: relative; z-index: 1;
}
.quote-attr { font-size: 9px; letter-spacing: .26em; text-transform: uppercase; color: var(--muted); z-index: 1; }

/* ══════════════════════════════════════════════════
   HISTORIA — Fondo claro
   ══════════════════════════════════════════════════ */
.historia { display: grid; grid-template-columns: 1fr 1fr; min-height: 70vh; background: var(--surface); }
.historia-img { position: relative; overflow: hidden; }
.historia-img img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(.85); transition: transform .9s var(--ease);
}
.historia:hover .historia-img img { transform: scale(1.04); }
.historia-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, transparent 50%, var(--bg) 100%);
  pointer-events: none;
}
.historia-text { display: flex; flex-direction: column; justify-content: center; padding: 80px 7%; background: var(--bg); }
.section-body { font-size: 15px; line-height: 1.9; color: var(--ink-2); margin-bottom: 18px; }
.btn-outline {
  display: inline-flex; align-items: center; gap: 10px; margin-top: 18px;
  padding: 14px 32px; border: 1px solid var(--border);
  color: var(--gold); font-size: 10px; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase;
  transition: border-color .2s, background .2s;
}
.btn-outline:hover { border-color: var(--gold); background: var(--gold-dim); }

/* ══════════════════════════════════════════════════
   NEWSLETTER — Fondo arena suave
   ══════════════════════════════════════════════════ */
.newsletter { padding: 120px 56px; background: var(--bg-2); text-align: center; position: relative; overflow: hidden; }
.newsletter::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(184,137,42,.06) 0%, transparent 65%);
  pointer-events: none;
}
.newsletter-inner { position: relative; z-index: 1; max-width: 540px; margin: 0 auto; }
.newsletter .eyebrow { justify-content: center; }
.newsletter .eyebrow::before { display: none; }
.newsletter .section-title { margin-bottom: 8px; }
.nl-form {
  display: flex; max-width: 450px; margin: 40px auto 16px;
  border: 1px solid var(--border); background: rgba(255,255,255,0.7);
  transition: border-color .2s;
}
.nl-form:focus-within { border-color: var(--gold); }
.nl-form input {
  flex: 1; padding: 16px 20px; background: none; border: none; outline: none;
  color: var(--ink); font-size: 14px; font-family: var(--sans);
}
.nl-form input::placeholder { color: var(--muted); }
.nl-form button {
  padding: 15px 28px; background: var(--gold); color: #fff;
  font-size: 10px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  transition: background .2s;
}
.nl-form button:hover { background: var(--gold-hi); }
.nl-note { font-size: 11px; color: var(--muted); letter-spacing: .06em; }

/* ══════════════════════════════════════════════════
   FOOTER — Tono oscuro cálido (no negro puro)
   ══════════════════════════════════════════════════ */
.footer { background: #2A2218; border-top: 1px solid rgba(184,137,42,0.15); padding: 80px 0 0; }
.footer-wrap {
  max-width: 1280px; margin: 0 auto; padding: 0 56px;
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr 1.4fr;
  gap: 48px; margin-bottom: 64px;
}
.footer-logo { height: 60px; width: auto; margin-bottom: 18px; opacity: .90; }
.footer-brand p { font-family: var(--serif); font-size: 15px; color: rgba(245,240,232,0.72); line-height: 1.7; margin-bottom: 24px; }
.footer-brand p em { font-style: italic; color: var(--gold); }
.footer-socials { display: grid; grid-template-columns: repeat(4, 36px); gap: 8px; }
.footer-socials a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.10);
  display: flex; align-items: center; justify-content: center;
  color: rgba(245,240,232,0.4); transition: background .2s, color .2s, border-color .2s, transform .2s;
}
.footer-socials a:hover { background: var(--gold); border-color: var(--gold); color: #fff; transform: translateY(-3px); }
.footer-col h4 { font-size: 9px; font-weight: 700; letter-spacing: .24em; text-transform: uppercase; color: var(--gold); margin-bottom: 22px; }
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col ul li a { font-size: 13px; color: rgba(245,240,232,0.62); transition: color .2s, padding-left .2s; }
.footer-col ul li a:hover { color: rgba(245,240,232,0.92); padding-left: 4px; }
.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-contact li { font-size: 13px; color: rgba(245,240,232,0.62); }
/* Newsletter compacta en footer */
.footer-nl { display: flex; flex-direction: column; gap: 12px; min-width: 200px; }
.footer-nl p { font-size: 12px; color: rgba(245,240,232,0.62); line-height: 1.7; }
.footer-nl-form {
  display: flex; gap: 0;
  border: 1px solid rgba(201,168,76,0.30);
}
.footer-nl-form input {
  flex: 1; background: transparent; border: none; outline: none;
  padding: 10px 14px; font-family: var(--sans); font-size: 12px;
  color: rgba(245,240,232,0.80);
}
.footer-nl-form input::placeholder { color: rgba(245,240,232,0.42); }
.footer-nl-form button {
  background: var(--gold); color: var(--ink-2);
  border: none; padding: 10px 16px;
  font-size: 14px; cursor: pointer;
  transition: background .2s;
}
.footer-nl-form button:hover { background: var(--gold-hi); }
.footer-nl-note { font-size: 10px !important; color: rgba(245,240,232,0.42) !important; letter-spacing: .06em; }

/* Franja legal */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 20px 56px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  font-size: 11px; color: rgba(245,240,232,0.48); letter-spacing: .04em;
}
.footer-bottom-left a { color: rgba(245,240,232,0.48); transition: color .2s; }
.footer-bottom-left a:hover { color: var(--gold); }
.footer-bottom-seals { display: flex; gap: 24px; }
.footer-seal {
  display: flex; align-items: center; gap: 6px;
  font-size: 10px; letter-spacing: .08em; text-transform: uppercase;
  color: rgba(245,240,232,0.48);
}
@media (max-width: 768px) {
  .footer-bottom { flex-direction: column; text-align: center; padding: 20px 24px; }
  .footer-nl { min-width: 100%; }
}

/* ══════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════ */
@media (max-width: 1080px) {
  .cat-block-inner { grid-template-columns: 260px 1fr; gap: 44px; padding: 64px 40px; }
  .cat-cards { grid-template-columns: repeat(2, 1fr); }
  .historia { grid-template-columns: 1fr; }
  .historia-img { height: 380px; }
  .historia-img::after { background: linear-gradient(to top, var(--bg) 0%, transparent 50%); }
  .footer-wrap { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 768px) {
  .nav-inner { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-socials { display: none; }
  .hamburger { display: flex; }
  .hero-content { padding: 0 24px 32px; }
  .cat-block { min-height: auto; }
  .cat-block-inner { grid-template-columns: 1fr; gap: 32px; padding: 56px 24px; }
  .cat-label { position: static; }
  .cat-cards { grid-template-columns: 1fr; }
  .cats-top-header { padding: 72px 24px 48px; }
  .cat-divider { padding: 0 24px; }
  .cats-footer-cta { padding: 56px 24px 72px; }
  .quote-band { padding: 72px 24px; }
  .newsletter { padding: 80px 24px; }
  .nl-form { flex-direction: column; }
  .nl-form button { border-top: 1px solid var(--border); }
  .footer-wrap { grid-template-columns: 1fr; padding: 0 24px; }
  .footer-bottom { padding: 20px 24px; }
}
@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; align-items: flex-start; gap: 18px; }
  .hero-title { font-size: clamp(28px, 12vw, 44px); letter-spacing: .1em; }
}

/* ══════════════════════════════════════════════════
   HERO CTAs + SCROLL HINT
   ══════════════════════════════════════════════════ */
.hero-ctas {
  display: flex; align-items: center; gap: 28px; flex-wrap: wrap;
}
.hero-scroll-hint {
  position: absolute; bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  z-index: 3;
  font-family: var(--sans); font-size: 8px; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  animation: scrollBounce 2.4s ease-in-out infinite;
}
.hero-scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(201,168,76,0.5), transparent);
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}
@media (max-width: 768px) { .hero-scroll-hint { display: none; } }

/* ══════════════════════════════════════════════════
   TRUST STRIP
   ══════════════════════════════════════════════════ */
.trust-strip {
  display: flex; align-items: center; justify-content: center;
  gap: 0; padding: 20px 56px;
  background: var(--ink-2);
  border-bottom: 1px solid rgba(201,168,76,0.12);
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 32px;
  font-family: var(--sans); font-size: 10px;
  font-weight: 500; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(245,240,232,0.65);
}
.trust-item svg { color: var(--gold); flex-shrink: 0; }
.trust-sep {
  width: 1px; height: 28px;
  background: rgba(201,168,76,0.18); flex-shrink: 0;
}
@media (max-width: 768px) {
  .trust-strip { flex-wrap: wrap; padding: 16px 24px; gap: 4px; }
  .trust-sep { display: none; }
  .trust-item { padding: 8px 16px; font-size: 9px; }
}

/* ══════════════════════════════════════════════════
   AGE GATE
   ══════════════════════════════════════════════════ */
.age-gate {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--ink-2);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .7s var(--ease), visibility .7s;
}
.age-gate::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 40%, rgba(201,168,76,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.age-gate::after {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    0deg, transparent, transparent 60px, rgba(255,255,255,0.012) 60px, rgba(255,255,255,0.012) 61px
  );
  pointer-events: none;
}
.age-gate.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.age-gate-inner {
  text-align: center; max-width: 520px;
  padding: 56px 40px;
  position: relative; z-index: 1;
  border: 1px solid rgba(201,168,76,0.10);
  background: rgba(22,14,9,0.4);
}
.age-gate-logo {
  height: 80px; width: auto;
  margin: 0 auto 44px; display: block;
}
.age-gate-eyebrow {
  font-family: var(--sans); font-size: 9px;
  font-weight: 600; letter-spacing: .28em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 18px;
}
.age-gate-title {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 300; color: #fff; line-height: 1.1;
  margin-bottom: 20px;
}
.age-gate-title em { font-style: italic; color: var(--gold); }
.age-gate-sub {
  font-size: 13px; color: rgba(245,240,232,0.45);
  line-height: 1.75; margin-bottom: 36px; max-width: 380px; margin-left: auto; margin-right: auto;
}
.age-gate-question {
  font-family: var(--sans); font-size: 11px;
  font-weight: 500; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(245,240,232,0.65); margin-bottom: 22px;
}
.age-gate-btns {
  display: flex; gap: 14px; justify-content: center; margin-bottom: 28px;
  flex-wrap: wrap;
}
.age-gate-yes {
  padding: 16px 44px;
  background: var(--gold); color: var(--ink-2);
  font-family: var(--sans); font-size: 11px;
  font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  border: none; cursor: pointer; border-radius: 2px;
  transition: background .2s, transform .2s, box-shadow .2s;
}
.age-gate-yes:hover {
  background: var(--gold-hi); transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,.3);
}
.age-gate-no {
  padding: 16px 32px;
  background: transparent; color: rgba(245,240,232,0.35);
  font-family: var(--sans); font-size: 11px;
  font-weight: 500; letter-spacing: .14em; text-transform: uppercase;
  border: 1px solid rgba(245,240,232,0.12); cursor: pointer; border-radius: 2px;
  transition: border-color .2s, color .2s;
}
.age-gate-no:hover { border-color: rgba(245,240,232,0.28); color: rgba(245,240,232,0.55); }
.age-gate-note {
  font-size: 10px; color: rgba(245,240,232,0.22);
  line-height: 1.6; letter-spacing: .04em;
}

/* ══════════════════════════════════════════════════
   EXPERIENCIAS — Editorial Grid
   ══════════════════════════════════════════════════ */
.experiencias-section {
  padding: 100px 0 0;
  background: transparent;
}
.experiencias-header {
  max-width: 1320px; margin: 0 auto;
  padding: 0 56px 56px; text-align: center;
}
.experiencias-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 460px);
}
.experiencia-card {
  position: relative; overflow: hidden;
  display: flex; align-items: flex-end;
  cursor: pointer;
}
.experiencia-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: saturate(.65) brightness(.9);
  transition: transform .9s var(--ease), filter .7s var(--ease);
}
.experiencia-card:hover .experiencia-bg {
  transform: scale(1.07); filter: saturate(.9) brightness(.85);
}
.experiencia-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(8,4,2,0.88) 0%,
    rgba(8,4,2,0.30) 55%,
    rgba(8,4,2,0.05) 100%
  );
  transition: background .5s;
}
.experiencia-card:hover .experiencia-overlay {
  background: linear-gradient(
    to top,
    rgba(8,4,2,0.92) 0%,
    rgba(8,4,2,0.45) 55%,
    rgba(8,4,2,0.10) 100%
  );
}
.experiencia-content {
  position: relative; z-index: 2;
  padding: 40px 48px; width: 100%;
  transform: translateY(10px);
  transition: transform .5s var(--ease);
}
.experiencia-card:hover .experiencia-content { transform: translateY(0); }
.experiencia-tag {
  display: block;
  font-family: var(--sans); font-size: 9px;
  font-weight: 600; letter-spacing: .26em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}
.experiencia-title {
  font-family: var(--serif); font-size: clamp(28px, 2.6vw, 44px);
  font-weight: 300; color: #fff; line-height: 1.15;
  margin-bottom: 0;
}
.experiencia-title em { font-style: italic; color: var(--gold); display: block; }
.experiencia-desc {
  font-size: 13px; color: rgba(245,240,232,0.62);
  line-height: 1.65; margin-top: 12px;
  max-width: 300px;
  opacity: 0; transform: translateY(14px);
  transition: opacity .45s var(--ease) .05s, transform .45s var(--ease) .05s;
}
.experiencia-card:hover .experiencia-desc { opacity: 1; transform: translateY(0); }
.experiencia-cta {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 18px;
  font-family: var(--sans); font-size: 10px;
  font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid rgba(201,168,76,0.35);
  padding-bottom: 4px;
  opacity: 0; transform: translateY(10px);
  transition: opacity .4s var(--ease) .12s, transform .4s var(--ease) .12s, gap .25s, border-color .2s;
}
.experiencia-card:hover .experiencia-cta { opacity: 1; transform: translateY(0); gap: 14px; border-color: var(--gold); }
@media (max-width: 900px) {
  .experiencias-grid { grid-template-columns: 1fr; grid-template-rows: none; }
  .experiencia-card { min-height: 380px; }
  .experiencia-desc, .experiencia-cta { opacity: 1; transform: translateY(0); }
}
@media (max-width: 600px) {
  .experiencias-section { padding-top: 72px; }
  .experiencias-header { padding: 0 24px 40px; }
  .experiencia-card { min-height: 300px; }
  .experiencia-content { padding: 28px 24px; }
  .experiencia-title { font-size: 28px; }
}

/* ══════════════════════════════════════════════════
   PACK BADGES (extra) & PRICE
   ══════════════════════════════════════════════════ */
.pack-badge-corp { background: #1A3A5C; }
.pack-badge-ltd  { background: #6B1A1A; }
.pack-price {
  font-family: var(--sans); font-size: 11px;
  font-weight: 600; letter-spacing: .12em;
  color: var(--gold); text-transform: uppercase;
}

/* ══════════════════════════════════════════════════
   PACKS CTA WRAP + BTN OUTLINE DARK
   ══════════════════════════════════════════════════ */
.packs-cta-wrap {
  max-width: 1320px; margin: 48px auto 0;
  padding: 0 56px; text-align: center;
}
.btn-outline-dark {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 36px;
  border: 1px solid var(--border);
  font-family: var(--sans); font-size: 10px;
  font-weight: 500; letter-spacing: .18em; text-transform: uppercase;
  color: var(--ink); transition: border-color .2s, color .2s, background .2s;
}
.btn-outline-dark:hover {
  border-color: var(--gold); color: var(--gold);
  background: rgba(201,168,76,0.05);
}
@media (max-width: 600px) { .packs-cta-wrap { padding: 0 24px; } }

/* ══════════════════════════════════════════════════
   PROTOCOLO DEL VINO
   ══════════════════════════════════════════════════ */
.protocolo-section {
  background: var(--bg-2);
  padding: 100px 0 80px;
  border-top: 1px solid var(--border-s);
}
.protocolo-intro {
  max-width: 640px; margin: 0 auto;
  padding: 0 56px 72px; text-align: center;
}
.protocolo-intro .section-body {
  margin-top: 16px; color: var(--muted); font-size: 14px; line-height: 1.8;
}
.protocolo-grid {
  max-width: 1320px; margin: 0 auto;
  padding: 0 56px;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--border-s);
  border: 1px solid var(--border-s);
  margin-bottom: 80px;
}
.protocolo-item {
  background: var(--surface);
  padding: 44px 36px 40px;
  display: flex; flex-direction: column; gap: 14px;
  transition: background .3s;
}
.protocolo-item:hover { background: #fff; }
.protocolo-num {
  font-family: var(--serif); font-size: 56px;
  font-weight: 300; color: var(--gold); line-height: 1;
  opacity: .35;
}
.protocolo-item h3 {
  font-family: var(--serif); font-size: 22px;
  font-weight: 400; color: var(--ink); line-height: 1.2;
}
.protocolo-item p {
  font-size: 13px; color: var(--muted);
  line-height: 1.75; flex: 1;
}
.protocolo-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--sans); font-size: 10px;
  font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold); margin-top: 4px;
  transition: gap .2s var(--ease);
}
.protocolo-link:hover { gap: 12px; }
.protocolo-cta-wrap {
  max-width: 1320px; margin: 0 auto; padding: 0 56px;
}
.protocolo-cta-card {
  display: grid; grid-template-columns: 1fr 1fr;
  overflow: hidden; border-radius: 16px;
  background: var(--ink-2);
}
.protocolo-cta-text {
  padding: 60px 56px;
  display: flex; flex-direction: column; gap: 18px; justify-content: center;
}
.protocolo-cta-text .eyebrow { color: var(--gold); }
.protocolo-cta-text h3 {
  font-family: var(--serif); font-size: clamp(28px, 3vw, 44px);
  font-weight: 300; color: #fff; line-height: 1.15;
}
.protocolo-cta-text h3 em { font-style: italic; color: var(--gold); }
.protocolo-cta-text > p {
  font-size: 14px; color: rgba(245,240,232,0.50); line-height: 1.75;
}
.protocolo-cta-img {
  position: relative; overflow: hidden; min-height: 400px;
}
.protocolo-cta-img img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(.75);
  transition: transform .7s var(--ease), filter .5s;
}
.protocolo-cta-card:hover .protocolo-cta-img img { transform: scale(1.05); filter: saturate(1); }
@media (max-width: 1024px) {
  .protocolo-grid { grid-template-columns: repeat(2, 1fr); padding: 0 40px; }
  .protocolo-intro { padding: 0 40px 60px; }
  .protocolo-cta-wrap { padding: 0 40px; }
}
@media (max-width: 768px) {
  .protocolo-grid { grid-template-columns: 1fr; padding: 0 24px; }
  .protocolo-intro { padding: 0 24px 48px; }
  .protocolo-cta-wrap { padding: 0 24px; }
  .protocolo-cta-card { grid-template-columns: 1fr; }
  .protocolo-cta-text { padding: 40px 28px; }
  .protocolo-cta-img { min-height: 260px; order: -1; }
  .protocolo-section { padding: 72px 0 60px; }
}

/* ══════════════════════════════════════════════════
   OCASIONES
   ══════════════════════════════════════════════════ */
.ocasiones-section {
  padding: 100px 0 80px;
  background: var(--surface);
}
.ocasiones-header {
  max-width: 1320px; margin: 0 auto;
  padding: 0 56px 56px; text-align: center;
}
.ocasiones-grid {
  max-width: 1320px; margin: 0 auto;
  padding: 0 56px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.ocasion-card {
  display: flex; flex-direction: column; align-items: flex-start;
  padding: 36px 28px 32px;
  background: #fff; border-radius: 16px;
  border: 1px solid var(--border-s);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
}
.ocasion-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(42,26,14,.10);
  border-color: var(--gold);
}
.ocasion-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: var(--gold-dim); display: flex;
  align-items: center; justify-content: center;
  color: var(--gold); margin-bottom: 20px;
}
.ocasion-card h3 {
  font-family: var(--serif); font-size: 22px;
  font-weight: 400; color: var(--ink); margin-bottom: 10px;
}
.ocasion-card p {
  font-size: 13px; color: var(--muted);
  line-height: 1.7; font-weight: 300; flex: 1;
}
.ocasion-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 20px;
  font-family: var(--sans); font-size: 10px;
  font-weight: 600; letter-spacing: .16em;
  text-transform: uppercase; color: var(--gold);
  transition: gap .25s var(--ease);
}
.ocasion-card:hover .ocasion-link { gap: 10px; }
@media (max-width: 1024px) {
  .ocasiones-grid { grid-template-columns: repeat(2, 1fr); padding: 0 40px; }
  .ocasiones-header { padding: 0 40px 48px; }
}
@media (max-width: 600px) {
  .ocasiones-grid { grid-template-columns: 1fr; padding: 0 24px; }
  .ocasiones-header { padding: 0 24px 40px; }
  .ocasiones-section { padding: 72px 0 60px; }
}

/* ══════════════════════════════════════════════════
   EDU SECTION
   ══════════════════════════════════════════════════ */
.edu-section {
  background: var(--bg);
  padding: 100px 0;
  border-top: 1px solid var(--border-s);
}
.edu-inner {
  max-width: 1320px; margin: 0 auto; padding: 0 56px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.edu-text .section-title { margin-bottom: 20px; }
.edu-text .section-body { margin-bottom: 32px; }
.edu-links { display: flex; flex-direction: column; gap: 14px; }
.edu-link {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans); font-size: 12px;
  font-weight: 500; letter-spacing: .10em;
  color: var(--ink); padding: 14px 0;
  border-bottom: 1px solid var(--border-s);
  transition: color .2s, gap .2s;
}
.edu-link:last-child { border-bottom: none; }
.edu-link svg { color: var(--gold); flex-shrink: 0; }
.edu-link:hover { color: var(--gold); gap: 14px; }
.edu-img {
  position: relative; border-radius: 16px;
  overflow: hidden; aspect-ratio: 4/5;
}
.edu-img img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(.85);
  transition: transform .6s var(--ease), filter .4s;
}
.edu-img:hover img { transform: scale(1.04); filter: saturate(1); }
.edu-img-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 24px 28px;
  background: linear-gradient(to top, rgba(26,23,20,0.82) 0%, transparent 100%);
}
.edu-img-caption p {
  font-family: var(--serif); font-size: 14px;
  font-style: italic; color: rgba(245,240,232,0.85);
  line-height: 1.5; margin-bottom: 6px;
}
.edu-img-caption span {
  font-family: var(--sans); font-size: 9px;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold);
}
@media (max-width: 1024px) {
  .edu-inner { gap: 48px; padding: 0 40px; }
}
@media (max-width: 768px) {
  .edu-inner { grid-template-columns: 1fr; padding: 0 24px; }
  .edu-img { aspect-ratio: 16/9; order: -1; }
  .edu-section { padding: 72px 0; }
}

/* ══════════════════════════════════════════════════
   NEWSLETTER DESC
   ══════════════════════════════════════════════════ */
.nl-desc {
  font-size: 14px; color: var(--muted);
  line-height: 1.7; font-weight: 300;
  margin-bottom: 8px; margin-top: 16px;
}

/* ══════════════════════════════════════════════════
   WHATSAPP FLOTANTE
   ══════════════════════════════════════════════════ */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 200;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 28px rgba(37,211,102,.35);
  transition: transform .25s var(--ease), box-shadow .25s;
}
.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 14px 36px rgba(37,211,102,.45);
}
@media (max-width: 480px) {
  .whatsapp-float { bottom: 20px; right: 20px; width: 50px; height: 50px; }
}

/* ══════════════════════════════════════════════════
   CATS RESPONSIVE (updated)
   ══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .cats-btn-grid { grid-template-columns: repeat(2, 1fr); padding: 0 40px; }
  .cats-bottom-cta { padding: 40px; }
}
@media (max-width: 540px) {
  .cats-btn-grid { grid-template-columns: 1fr; padding: 0 24px; }
  .cats-bottom-cta { padding: 32px 24px; }
}

/* ══════════════════════════════════════════════════
   PROTO TEASER (homepage)
   ══════════════════════════════════════════════════ */
.proto-teaser {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 560px; background: transparent;
  border-top: 1px solid var(--border-s);
}
.proto-teaser-img { position: relative; overflow: hidden; }
.proto-teaser-img img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(.80); transition: transform .8s var(--ease), filter .5s;
}
.proto-teaser:hover .proto-teaser-img img { transform: scale(1.04); filter: saturate(1); }
.proto-teaser-text {
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 72px; gap: 20px;
}
.proto-teaser-text .section-body { color: var(--muted); }
.proto-teaser-items { display: flex; flex-direction: column; gap: 0; }
.proto-teaser-item {
  display: flex; align-items: center; gap: 16px;
  padding: 14px 0; border-bottom: 1px solid var(--border-s);
  font-family: var(--sans); font-size: 12px;
  font-weight: 500; letter-spacing: .06em; color: var(--ink);
}
.proto-teaser-item:last-child { border-bottom: none; }
.proto-teaser-num {
  font-family: var(--serif); font-size: 24px;
  font-weight: 300; color: var(--gold); opacity: .5;
  flex-shrink: 0; width: 32px;
}
@media (max-width: 900px) {
  .proto-teaser { grid-template-columns: 1fr; }
  .proto-teaser-img { min-height: 340px; }
  .proto-teaser-text { padding: 56px 40px; }
}
@media (max-width: 600px) { .proto-teaser-text { padding: 40px 24px; } }

/* ══════════════════════════════════════════════════
   PAGE HERO (interior pages)
   ══════════════════════════════════════════════════ */
.page-hero {
  position: relative; height: 50vh; min-height: 340px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: saturate(.70) brightness(.8);
  transition: transform .9s var(--ease);
}
.page-hero:hover .page-hero-bg { transform: scale(1.03); }
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(8,4,2,0.65) 0%, rgba(8,4,2,0.45) 50%, rgba(8,4,2,0.75) 100%);
}
.page-hero-content {
  position: relative; z-index: 2;
  text-align: center; padding: 0 48px;
}
.page-eyebrow {
  font-family: var(--sans); font-size: 9px; font-weight: 600;
  letter-spacing: .28em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
  display: flex; align-items: center; justify-content: center; gap: 14px;
}
.page-eyebrow::before, .page-eyebrow::after {
  content: ''; width: 28px; height: 1px; background: var(--gold); opacity: .5; flex-shrink: 0;
}
.page-hero-title {
  font-family: var(--serif); font-size: clamp(44px, 6vw, 88px);
  font-weight: 300; color: #fff; line-height: 1.05;
  margin-bottom: 20px; letter-spacing: -.01em;
}
.page-hero-title em { font-style: italic; color: var(--gold); }
.page-hero-desc {
  font-size: 15px; color: rgba(245,240,232,0.65);
  font-weight: 300; line-height: 1.7; max-width: 480px; margin: 0 auto;
}
.page-hero-anchors {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 3;
  display: flex; align-items: center; justify-content: center;
  background: rgba(12,7,3,0.55); backdrop-filter: blur(8px);
  border-top: 1px solid rgba(201,168,76,0.15); flex-wrap: wrap;
}
.page-hero-anchors a {
  padding: 14px 24px;
  font-family: var(--sans); font-size: 9px; font-weight: 600;
  letter-spacing: .20em; text-transform: uppercase;
  color: rgba(245,240,232,0.60);
  border-right: 1px solid rgba(255,255,255,0.08);
  transition: color .2s, background .2s;
}
.page-hero-anchors a:last-child { border-right: none; }
.page-hero-anchors a:hover { color: var(--gold); background: rgba(201,168,76,0.06); }
@media (max-width: 768px) {
  .page-hero { height: 60vh; }
  .page-hero-content { padding: 0 24px; }
  .page-hero-title { font-size: clamp(36px, 8vw, 60px); }
  .page-hero-anchors a { padding: 12px 14px; font-size: 8px; }
}

/* ══════════════════════════════════════════════════
   PROTOCOLO PAGE SECTIONS
   ══════════════════════════════════════════════════ */
.proto-quick-nav {
  display: flex; align-items: center; justify-content: center;
  padding: 18px 56px; background: var(--surface);
  border-bottom: 1px solid var(--border-s); flex-wrap: wrap;
}
.proto-quick-nav a {
  font-family: var(--sans); font-size: 9px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted); padding: 8px 20px; transition: color .2s;
}
.proto-quick-nav a:hover { color: var(--gold); }
.proto-qn-sep { width: 1px; height: 16px; background: var(--border-s); flex-shrink: 0; }
.proto-section { border-top: 1px solid var(--border-s); background: var(--bg); }
.proto-section-alt { background: var(--surface); }
.proto-section-inner {
  max-width: 1280px; margin: 0 auto; padding: 100px 56px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
}
.proto-section-num {
  font-family: var(--serif); font-size: 100px;
  font-weight: 300; color: var(--gold); line-height: 1;
  opacity: .18; margin-bottom: -20px;
}
.proto-section-title {
  font-family: var(--serif); font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 300; color: var(--ink); line-height: 1.15; margin-bottom: 20px;
}
.proto-section-body { font-size: 15px; color: var(--muted); line-height: 1.85; margin-bottom: 32px; }
.proto-temp-table { display: flex; flex-direction: column; }
.proto-temp-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 0; border-bottom: 1px solid var(--border-s); font-size: 13px;
}
.proto-temp-row:last-child { border-bottom: none; }
.proto-temp-type { color: var(--ink); }
.proto-temp-val { font-family: var(--serif); font-size: 16px; color: var(--gold); }
.proto-rec-card {
  background: var(--ink-2); border-radius: 16px;
  padding: 44px 40px; position: sticky; top: 100px;
}
.proto-rec-card .eyebrow { color: var(--gold); margin-bottom: 12px; }
.proto-rec-card h3 {
  font-family: var(--serif); font-size: 26px;
  font-weight: 400; color: #fff; line-height: 1.2; margin-bottom: 14px;
}
.proto-rec-card > p { font-size: 13px; color: rgba(245,240,232,0.55); line-height: 1.7; margin-bottom: 24px; }
.proto-rec-links { display: flex; flex-direction: column; }
.proto-rec-link {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--sans); font-size: 11px; font-weight: 500; letter-spacing: .10em;
  color: rgba(245,240,232,0.65); padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color .2s, gap .2s;
}
.proto-rec-link:last-child { border-bottom: none; }
.proto-rec-link svg { color: var(--gold); flex-shrink: 0; }
.proto-rec-link:hover { color: var(--gold); gap: 14px; }
.proto-rules { display: flex; flex-direction: column; }
.proto-rule {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 16px 0; border-bottom: 1px solid var(--border-s);
}
.proto-rule:last-child { border-bottom: none; }
.proto-rule-icon {
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--gold-dim); display: flex;
  align-items: center; justify-content: center; color: var(--gold); flex-shrink: 0;
}
.proto-rule strong { display: block; font-size: 14px; color: var(--ink); margin-bottom: 4px; }
.proto-rule span { font-size: 12px; color: var(--muted); line-height: 1.5; }
.proto-steps { display: flex; flex-direction: column; }
.proto-step {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 16px 0; border-bottom: 1px solid var(--border-s);
}
.proto-step:last-child { border-bottom: none; }
.proto-step-n {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--gold); color: var(--ink-2);
  font-family: var(--sans); font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.proto-step p { font-size: 14px; color: var(--muted); line-height: 1.7; }
.proto-img-block { position: relative; border-radius: 16px; overflow: hidden; aspect-ratio: 4/5; }
.proto-img-block img {
  width: 100%; height: 100%; object-fit: cover; filter: saturate(.80);
  transition: transform .7s var(--ease), filter .5s;
}
.proto-img-block:hover img { transform: scale(1.04); filter: saturate(1); }
.proto-img-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 24px 28px;
  background: linear-gradient(to top, rgba(12,7,3,0.80) 0%, transparent 100%);
}
.proto-img-caption p {
  font-family: var(--serif); font-size: 15px; font-style: italic;
  color: rgba(245,240,232,0.80); line-height: 1.5;
}
.proto-copa-grid { display: flex; gap: 16px; margin: 20px 0; }
.proto-copa-item {
  flex: 1; text-align: center; padding: 20px 12px;
  background: rgba(255,255,255,0.05); border-radius: 10px;
  border: 1px solid rgba(201,168,76,0.12);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.proto-copa-icon { color: var(--gold); }
.proto-copa-item span { font-size: 12px; font-weight: 600; color: #fff; }
.proto-copa-item small { font-size: 10px; color: rgba(245,240,232,0.45); }
.proto-orden-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border-s); border: 1px solid var(--border-s); margin-top: 32px;
}
.proto-orden-item {
  background: var(--surface); padding: 28px 24px;
  display: flex; flex-direction: column; gap: 8px; transition: background .2s;
}
.proto-orden-item:hover { background: #fff; }
.proto-orden-momento {
  font-family: var(--sans); font-size: 9px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase; color: var(--gold);
}
.proto-orden-vino {
  font-family: var(--serif); font-size: 16px; font-weight: 300; color: var(--ink); line-height: 1.4;
}
.proto-final-cta { background: var(--bg-2); border-top: 1px solid var(--border-s); padding: 100px 0; }
.proto-final-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 56px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.proto-final-img { position: relative; border-radius: 16px; overflow: hidden; aspect-ratio: 4/3; }
.proto-final-img img {
  width: 100%; height: 100%; object-fit: cover; filter: saturate(.80);
  transition: transform .7s var(--ease), filter .5s;
}
.proto-final-img:hover img { transform: scale(1.04); filter: saturate(1); }
@media (max-width: 1024px) {
  .proto-section-inner { padding: 72px 40px; gap: 48px; }
  .proto-orden-grid { grid-template-columns: repeat(2, 1fr); }
  .proto-final-inner { padding: 0 40px; gap: 48px; }
}
@media (max-width: 768px) {
  .proto-section-inner { grid-template-columns: 1fr; padding: 56px 24px; gap: 40px; }
  .proto-rec-card { position: static; }
  .proto-orden-grid { grid-template-columns: 1fr; }
  .proto-copa-grid { flex-direction: column; }
  .proto-quick-nav { padding: 14px 24px; }
  .proto-final-inner { grid-template-columns: 1fr; padding: 0 24px; }
  .proto-final-img { aspect-ratio: 16/9; order: -1; }
}

/* ══════════════════════════════════════════════════
   EXPERIENCIAS PAGE SECTIONS
   ══════════════════════════════════════════════════ */
.exp-section { border-top: 1px solid var(--border-s); background: var(--bg); }
.exp-section-alt { background: var(--surface); }
.exp-section-inner {
  max-width: 1280px; margin: 0 auto; padding: 100px 56px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.exp-section-img { position: relative; border-radius: 16px; overflow: hidden; aspect-ratio: 4/5; }
.exp-section-img img {
  width: 100%; height: 100%; object-fit: cover; filter: saturate(.80);
  transition: transform .8s var(--ease), filter .5s;
}
.exp-section-img:hover img { transform: scale(1.04); filter: saturate(1); }
.exp-img-overlay { position: absolute; bottom: 20px; left: 20px; }
.exp-img-tag {
  font-family: var(--sans); font-size: 9px; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: #fff; background: var(--gold); padding: 6px 14px; border-radius: 100px;
}
.exp-section-text .section-title { margin: 8px 0 16px; }
.exp-section-text .section-body { margin-bottom: 28px; }
.exp-protocol-tips { display: flex; flex-direction: column; margin-bottom: 28px; }
.exp-tip {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 0; border-bottom: 1px solid var(--border-s);
}
.exp-tip:last-child { border-bottom: none; }
.exp-tip-icon {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--gold-dim); display: flex;
  align-items: center; justify-content: center; color: var(--gold); flex-shrink: 0;
}
.exp-tip p { font-size: 13px; color: var(--muted); line-height: 1.65; }
.exp-tip strong { color: var(--ink); font-weight: 600; }
.exp-product-links { display: flex; flex-direction: column; gap: 10px; margin-top: 8px; }
.exp-product-label {
  font-family: var(--sans); font-size: 9px; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px;
}
.exp-product-btn {
  display: inline-flex; align-items: center; width: fit-content;
  padding: 12px 24px; border: 1px solid var(--border-s);
  font-family: var(--sans); font-size: 10px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; color: var(--ink);
  transition: border-color .2s, color .2s, background .2s;
}
.exp-product-btn:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-dim); }
.exp-product-btn-gold { background: var(--gold); color: var(--ink-2) !important; border-color: var(--gold) !important; }
.exp-product-btn-gold:hover { background: var(--gold-hi) !important; }
.exp-gift-options { display: flex; flex-direction: column; margin-bottom: 28px; }
.exp-gift-option {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 16px 0; border-bottom: 1px solid var(--border-s);
}
.exp-gift-option:last-child { border-bottom: none; }
.exp-gift-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--gold-dim); display: flex;
  align-items: center; justify-content: center; color: var(--gold); flex-shrink: 0;
}
.exp-gift-option strong { display: block; font-size: 14px; color: var(--ink); margin-bottom: 4px; }
.exp-gift-option span { font-size: 12px; color: var(--muted); }
.exp-corp-features { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.exp-corp-item { display: flex; align-items: center; gap: 14px; font-size: 14px; color: var(--ink); }
.exp-corp-item svg { color: var(--gold); flex-shrink: 0; }
.temporada-section { background: var(--ink-2); border-top: 1px solid rgba(201,168,76,0.12); padding: 80px 0; }
.temporada-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 56px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.temporada-text { display: flex; flex-direction: column; gap: 16px; }
.temporada-text .section-title { color: #fff; }
.temporada-text .section-title em { color: var(--gold); }
.temporada-text .section-body { color: rgba(245,240,232,0.55); }
.temporada-visual { border-radius: 16px; overflow: hidden; aspect-ratio: 4/3; }
.temporada-visual img {
  width: 100%; height: 100%; object-fit: cover; filter: saturate(.80);
  transition: transform .7s var(--ease);
}
.temporada-inner:hover .temporada-visual img { transform: scale(1.04); }
@media (max-width: 1024px) {
  .exp-section-inner { padding: 72px 40px; gap: 48px; }
  .temporada-inner { padding: 0 40px; gap: 48px; }
}
@media (max-width: 768px) {
  .exp-section-inner { grid-template-columns: 1fr; padding: 56px 24px; gap: 40px; }
  .exp-section-img { aspect-ratio: 3/2; }
  .temporada-inner { grid-template-columns: 1fr; padding: 0 24px; }
  .temporada-visual { aspect-ratio: 3/2; order: -1; }
}

/* ══════════════════════════════════════════════════
   MEJORAS VISUALES — Rey Camoes Premium
   ══════════════════════════════════════════════════ */

/* ── 1. Ken Burns en hero-bg ── */
@keyframes kenBurns {
  0%   { transform: scale(1.06) translate(0, 0); }
  50%  { transform: scale(1.13) translate(-1.2%, 0.5%); }
  100% { transform: scale(1.06) translate(0.5%, -0.3%); }
}
.hero-bg { animation: kenBurns 26s ease-in-out infinite alternate; }

/* ── 2. Título hero: revelación cinematográfica ── */
@keyframes titleReveal {
  from { opacity: 0; letter-spacing: .55em; filter: blur(8px); }
  to   { opacity: 1; letter-spacing: .28em; filter: blur(0); }
}
.hero-title {
  animation: titleReveal 1.6s cubic-bezier(0.16, 1, 0.3, 1) 0.55s both;
}

/* ── 3. Elementos hero escalonados ── */
@keyframes fadeUpSoft {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-sup     { animation: fadeUpSoft 0.9s var(--ease) 0.10s both; }
.hero-divider { animation: fadeUpSoft 0.7s var(--ease) 1.05s both; }
.hero-tagline { animation: fadeUpSoft 0.9s var(--ease) 1.20s both; }
.hero-ctas    { animation: fadeUpSoft 0.9s var(--ease) 1.45s both; }

/* ── 4. Marquee strip ── */
.marquee-strip {
  overflow: hidden;
  background: var(--ink-2);
  padding: 15px 0;
  border-bottom: 1px solid rgba(201,168,76,0.12);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 42s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-content {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.marquee-content > span {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.52);
  padding: 0 30px;
  white-space: nowrap;
}
.marquee-sep {
  display: inline-block;
  width: 4px; height: 4px;
  background: rgba(201,168,76,0.28);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* ── 5. Custom cursor — solo desktop ── */
.cursor-dot,
.cursor-ring { display: none; }

@media (pointer: fine) {
  .has-custom-cursor,
  .has-custom-cursor a,
  .has-custom-cursor button { cursor: none; }

  .cursor-dot {
    display: block;
    position: fixed;
    top: 0; left: 0;
    width: 7px; height: 7px;
    background: var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10001;
    transform: translate(-50%, -50%);
    transition: opacity .25s;
    will-change: left, top;
  }
  .cursor-ring {
    display: block;
    position: fixed;
    top: 0; left: 0;
    width: 36px; height: 36px;
    border: 1px solid rgba(201,168,76,0.45);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: width .35s var(--ease), height .35s var(--ease),
                border-color .3s, opacity .25s;
    will-change: left, top;
  }
  .cursor-ring.is-hovering {
    width: 54px; height: 54px;
    border-color: var(--gold);
  }
  .cursor-dot.is-hidden,
  .cursor-ring.is-hidden { opacity: 0; }
}

/* ── 6. Grid editorial asimétrico — La Colección ── */
.cats-btn-grid {
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  grid-template-rows: 320px 260px 180px;
  gap: 12px;
  min-height: 0;
}
.cat-btn:nth-child(1) { grid-column: 1; grid-row: 1 / 3; }
.cat-btn:nth-child(2) { grid-column: 2; grid-row: 1; }
.cat-btn:nth-child(3) { grid-column: 3; grid-row: 1; }
.cat-btn:nth-child(4) { grid-column: 4; grid-row: 1; }
.cat-btn:nth-child(5) { grid-column: 2; grid-row: 2; }
.cat-btn:nth-child(6) { grid-column: 3; grid-row: 2; }
.cat-btn:nth-child(7) { grid-column: 4; grid-row: 2; }
.cat-btn:nth-child(8) {
  grid-column: 1 / 5; grid-row: 3;
  min-height: 180px;
  flex-direction: row;
  align-items: flex-end;
  padding: 28px 48px;
  justify-content: space-between;
}
.cat-btn:nth-child(8) .cat-btn-body {
  flex-direction: row;
  align-items: baseline;
  gap: 24px;
  padding-top: 0;
  flex: 1;
}
.cat-btn:nth-child(8) .cat-btn-arr { align-self: flex-end; }

@media (max-width: 1024px) {
  .cats-btn-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: none;
    gap: 16px;
  }
  .cat-btn:nth-child(n) { grid-column: auto; grid-row: auto; }
  .cat-btn:nth-child(8) {
    flex-direction: column;
    align-items: stretch;
    padding: 28px 28px 24px;
    justify-content: space-between;
    min-height: 220px;
  }
  .cat-btn:nth-child(8) .cat-btn-body {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    padding-top: 16px;
    flex: 1;
  }
}

/* ── 7. Experiencias: borde dorado en hover ── */
.experiencia-card::after {
  content: '';
  position: absolute; inset: 0;
  border: 1.5px solid rgba(201,168,76,0);
  z-index: 3;
  pointer-events: none;
  transition: border-color .55s var(--ease);
}
.experiencia-card:hover::after { border-color: rgba(201,168,76,0.45); }

/* ── 8. Reveal con clip-path: entrada más dramática ── */
.reveal {
  clip-path: inset(0 0 18px 0);
  transition: opacity .9s var(--ease), transform .9s var(--ease), clip-path .95s var(--ease);
}
.reveal.revealed { clip-path: inset(0 0 0 0); }

