/* ===================================================
   ÁLVARO RGZ — Tarjetas y Sellos (cards.alvarorgz.com)
   Misma familia visual que el hub: crema, oro y piedra.
   =================================================== */

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }

::selection { background: var(--gold); color: var(--bg); }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

:root {
  --bg: #FAF8F4;
  --bg-2: #F5F1EA;
  --panel: #FFFFFF;
  --line: rgba(28, 18, 8, .07);
  --line-2: rgba(28, 18, 8, .13);
  --fg: #1C1814;
  --fg-2: #3D3830;
  --fg-3: #7A7068;
  --fg-4: #B5ADA4;
  --gold: #8C6020;
  --gold-2: #B07830;

  --stone-2: #E7DFD0;
  --stone-3: #D9CFBB;
  --stone-ln: rgba(28, 18, 8, .17);

  --pad: clamp(20px, 5vw, 72px);
  --max: 1180px;
  --ease: cubic-bezier(.2, .7, .2, 1);
  --ease-soft: cubic-bezier(.32, .72, 0, 1);
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Geist', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

em {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.005em;
}

.dot {
  color: var(--gold);
  font-style: normal;
  display: inline-block;
  text-shadow: 0 0 24px rgba(140, 96, 32, .35);
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  mix-blend-mode: multiply;
  opacity: .07;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='.6'/></svg>");
}

/* Moldura de dentículos — el mismo separador del hub */
.dentils {
  height: 10px;
  background: repeating-linear-gradient(90deg, var(--stone-3) 0 8px, transparent 8px 16px);
  border-top: 1px solid var(--stone-ln);
  border-bottom: 1px solid var(--stone-ln);
  opacity: .7;
}

/* ===========================
   NAV
=========================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.nav__inner {
  pointer-events: auto;
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 8px 12px 8px 18px;
  background: var(--bg);
  border: none;
  border-bottom: 1px solid var(--line);
  transition: background .3s var(--ease), border-color .3s var(--ease);
}

.brand { display: flex; align-items: center; gap: 10px; padding: 0 6px; }
.brand img { width: 80px; height: 40px; }

.nav__links {
  display: flex;
  justify-content: center;
  gap: 30px;
  font-size: 12.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--fg-2);
}
.nav__links a { position: relative; padding: 6px 0; transition: color .25s var(--ease); }
.nav__links a:hover { color: var(--fg); }
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}
.nav__links a:hover::after { transform: scaleX(1); }

@media (max-width: 880px) { .nav__links { display: none; } }

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 16px 10px 20px;
  border-radius: 999px;
  background: var(--fg);
  color: var(--bg);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .13em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 1px 0 rgba(255,255,255,.14) inset, 0 10px 30px -12px rgba(28,18,8,.55);
  transition: transform .4s var(--ease), background .4s var(--ease), box-shadow .4s var(--ease);
}
.nav__cta svg { width: 12px; height: 12px; transition: transform .4s var(--ease); }
.nav__cta:hover { background: var(--fg-2); transform: translateY(-1px); }
.nav__cta:hover svg { transform: translate(2px, -2px); }

/* Hamburger menu button */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.nav__hamburger span {
  width: 22px;
  height: 2px;
  background: var(--fg);
  border-radius: 1px;
  transition: all .3s var(--ease);
  display: block;
}
.nav__hamburger.active span:nth-child(1) { transform: rotate(45deg) translateY(11px); }
.nav__hamburger.active span:nth-child(2) { opacity: 0; }
.nav__hamburger.active span:nth-child(3) { transform: rotate(-45deg) translateY(-11px); }

@media (max-width: 880px) {
  .nav__hamburger { display: flex; grid-column: 3; }
  .nav__cta { display: none !important; }
}

/* Mobile menu — drops from top, full width */
.mobile-menu {
  position: fixed;
  top: 45px;
  left: 0;
  right: 0;
  z-index: 95;
  background: var(--bg);
  width: 100%;
  overflow: hidden;
  max-height: 0;
  transition: max-height .4s var(--ease);
  display: none;
  border-bottom: none;
}
.mobile-menu.active { max-height: 420px; border-bottom: 1px solid var(--line); }

body.menu-open::after {
  content: '';
  position: fixed;
  inset: 0;
  background: rgba(28, 18, 8, .35);
  z-index: 90;
  pointer-events: none;
  animation: menu-overlay-in .3s ease forwards;
}
@keyframes menu-overlay-in { from { opacity: 0; } to { opacity: 1; } }

.mobile-menu__inner { display: flex; flex-direction: column; gap: 0; padding: 20px; width: 100%; }

.mobile-menu__link {
  display: block;
  padding: 16px 12px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--fg-2);
  transition: color .25s var(--ease), background .25s var(--ease), opacity .4s var(--ease), transform .4s var(--ease);
  border-radius: 8px;
  opacity: 0;
  transform: translateY(-12px);
}
.mobile-menu.active .mobile-menu__link { opacity: 1; transform: translateY(0); }
.mobile-menu__link:nth-child(1) { transition-delay: .05s; }
.mobile-menu__link:nth-child(2) { transition-delay: .1s; }
.mobile-menu__link:nth-child(3) { transition-delay: .15s; }
.mobile-menu__link:nth-child(4) { transition-delay: .2s; }
.mobile-menu__link:hover { color: var(--fg); background: rgba(28, 18, 8, .05); }

.mobile-menu__cta {
  margin-top: 20px;
  width: 100%;
  justify-content: center;
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity .4s var(--ease), transform .4s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease), color .25s var(--ease);
  transition-delay: .25s, .25s, 0s, 0s, 0s;
  background: var(--fg);
  color: var(--bg);
}
.mobile-menu.active .mobile-menu__cta:hover { background: var(--fg-2); transform: translateY(-2px); }
.mobile-menu.active .mobile-menu__cta { opacity: 1; transform: translateY(0); }

@media (max-width: 880px) { .mobile-menu { display: block; } }

/* ===========================
   BOTONES
=========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 15px 26px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform .4s var(--ease), background .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.btn svg { width: 14px; height: 14px; transition: transform .4s var(--ease); }

.btn--dark {
  background: var(--fg);
  color: var(--bg);
  box-shadow: 0 1px 0 rgba(255,255,255,.14) inset, 0 14px 38px -16px rgba(28,18,8,.6);
}
.btn--dark:hover { background: var(--fg-2); transform: translateY(-2px); }
.btn--dark:hover svg { transform: translate(3px, -3px); }

.btn--ghost {
  color: var(--fg-2);
  border: 1px solid var(--line-2);
  background: transparent;
}
.btn--ghost:hover { border-color: var(--fg-3); color: var(--fg); transform: translateY(-2px); }

.btn--lg { padding: 18px 32px; }

/* ===========================
   TIPOGRAFÍA DE SECCIÓN
=========================== */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 20px;
  font-size: 10.5px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--fg-3);
}
.eyebrow__bar {
  width: 30px;
  height: 1px;
  background: var(--gold);
  box-shadow: 0 0 10px rgba(140, 96, 32, .45);
}

.section__title {
  font-size: clamp(28px, 4.2vw, 48px);
  line-height: 1.07;
  letter-spacing: -0.032em;
  font-weight: 400;
  margin: 0;
}

.sec-head {
  width: min(100%, var(--max));
  margin: 0 auto clamp(40px, 5vw, 68px);
  padding: 0 var(--pad);
}

/* ===========================
   HERO
=========================== */
.hero {
  position: relative;
  isolation: isolate;
  min-height: 92svh;
  padding: clamp(100px, 13vw, 160px) var(--pad) clamp(64px, 8vw, 96px);
  text-align: center;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__bg { position: absolute; inset: 0; z-index: -2; }

.hero__glow {
  position: absolute;
  left: 50%; top: 42%;
  width: min(980px, 130vw);
  height: min(980px, 130vw);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(140, 96, 32, .17) 0%, rgba(140, 96, 32, .05) 34%, transparent 64%);
  filter: blur(90px);
  animation: heroGlowFloat 22s ease-in-out infinite alternate;
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(28, 18, 8, .055) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(28, 18, 8, .055) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 72%);
}

@keyframes heroGlowFloat {
  0%   { transform: translate(-50%, -50%) scale(1); }
  100% { transform: translate(-52%, -46%) scale(1.08); }
}

/* Marcas de registro de imprenta, en las 4 esquinas */
.hero__marks { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.mark {
  position: absolute;
  width: 26px; height: 26px;
  color: var(--fg-4);
  opacity: .55;
}
.mark--tl { top: clamp(70px, 10vw, 110px); left: clamp(16px, 3.5vw, 56px); }
.mark--tr { top: clamp(70px, 10vw, 110px); right: clamp(16px, 3.5vw, 56px); }
.mark--bl { bottom: clamp(40px, 6vw, 72px); left: clamp(16px, 3.5vw, 56px); }
.mark--br { bottom: clamp(40px, 6vw, 72px); right: clamp(16px, 3.5vw, 56px); }
@media (max-width: 700px) { .mark--bl, .mark--br { display: none; } }

/* Fotos de producto flotando a los lados del titular */
.hero__float {
  position: absolute;
  width: 178px;
  border-radius: 4px;
  overflow: hidden;
  background: var(--panel);
  padding: 8px 8px 22px;
  box-shadow: 0 0 0 1px var(--stone-ln), 0 30px 50px -22px rgba(28, 18, 8, .45);
  z-index: 1;
  animation: heroFloatBob 7s ease-in-out infinite;
}
.hero__float img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 2px; display: block; }
.hero__float--card { top: 17%; left: clamp(2%, 6vw, 9%); transform: rotate(-9deg); animation-delay: 0s; }
.hero__float--stamp { width: 142px; bottom: 14%; right: clamp(3%, 7vw, 11%); transform: rotate(8deg); animation-delay: -3.5s; }

@keyframes heroFloatBob {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -12px; }
}

@media (max-width: 1080px) { .hero__float { display: none; } }
@media (prefers-reduced-motion: reduce) {
  .hero__glow, .hero__float { animation: none; }
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: min(100%, 780px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Badge */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px 7px 12px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  background: rgba(255, 255, 255, .65);
  font-size: 10.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--fg-2);
  margin: 0 0 24px;
}
.hero__badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px rgba(140, 96, 32, .5);
  flex-shrink: 0;
  animation: heroDotPulse 1.8s ease-in-out infinite;
}
@keyframes heroDotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(.8); }
}

.hero__title {
  font-size: clamp(42px, 8.4vw, 96px);
  line-height: .96;
  letter-spacing: -0.04em;
  font-weight: 400;
  margin: 0 0 24px;
}
.hero__title .line { display: block; overflow: hidden; }
.hero__title .line > span { display: block; }

.hero__sub {
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.62;
  color: var(--fg-2);
  max-width: 54ch;
  margin: 0 0 38px;
}

.hero__cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero__cue {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 10.5px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--fg-4);
  z-index: 2;
  animation: heroCueBob 2.6s ease-in-out infinite;
}
@keyframes heroCueBob {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 6px); }
}
@media (max-width: 780px) { .hero__cue { display: none; } }

/* ===========================
   PRODUCTOS
=========================== */
.products {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: clamp(60px, 8vw, 110px) var(--pad);
  display: flex;
  flex-direction: column;
  gap: clamp(64px, 8vw, 120px);
}

.product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
}
.product--flip .product__media { order: 2; }

.product__media {
  position: relative;
  border-radius: 3px;
  overflow: hidden;
  background: var(--bg-2);
  box-shadow:
    0 0 0 1px var(--stone-ln),
    0 26px 46px -28px rgba(28, 18, 8, .45);
  transition: box-shadow .6s var(--ease);
}
/* Filete interior — el margen de una prueba de imprenta */
.product__media::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(250, 248, 244, .28);
  border-radius: 1px;
  pointer-events: none;
  z-index: 1;
}
.product__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 1.4s var(--ease-soft);
}
.product:hover .product__media img { transform: scale(1.035); }
.product:hover .product__media {
  box-shadow:
    0 0 0 1px var(--stone-ln),
    0 34px 58px -28px rgba(28, 18, 8, .55);
}

.product__no {
  display: block;
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 15px;
  letter-spacing: .1em;
  color: var(--gold);
  margin-bottom: 12px;
}

.product__title {
  font-size: clamp(25px, 3.2vw, 36px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 400;
  margin: 0 0 12px;
}

.product__lead {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-size: clamp(17px, 1.8vw, 21px);
  line-height: 1.4;
  color: var(--fg);
  margin: 0 0 16px;
}

.product__body p {
  font-size: 15px;
  line-height: 1.68;
  color: var(--fg-2);
  margin: 0 0 22px;
}

.chips {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.chips li {
  font-size: 12px;
  letter-spacing: .02em;
  color: var(--fg-2);
  padding: 7px 13px;
  border-radius: 999px;
  background: var(--bg-2);
  box-shadow: 0 0 0 1px var(--line);
  transition: color .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease);
}
.chips li:hover {
  color: var(--fg);
  background: var(--bg);
  box-shadow: 0 0 0 1px var(--line-2);
}

@media (max-width: 820px) {
  .product { grid-template-columns: 1fr; gap: 26px; }
  .product--flip .product__media { order: 0; }
}

/* ===========================
   POR QUÉ FUNCIONA
=========================== */
.why {
  padding: clamp(60px, 8vw, 110px) 0;
  background: var(--bg-2);
}

.why__grid {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 44px);
}

.why__item {
  padding: 32px 30px;
  background: var(--bg);
  border-radius: 4px;
  box-shadow: 0 0 0 1px var(--line), 0 18px 38px -30px rgba(28,18,8,.4);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.why__item:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 0 1px var(--line-2), 0 26px 50px -30px rgba(28,18,8,.5);
}
.why__mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--bg-2);
  box-shadow: 0 0 0 1px var(--line);
  color: var(--gold);
  margin-bottom: 20px;
}
.why__mark svg { width: 20px; height: 20px; }
.why__item h3 {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.015em;
  margin: 0 0 9px;
}
.why__item p {
  font-size: 14.5px;
  line-height: 1.62;
  color: var(--fg-3);
  margin: 0;
}

@media (max-width: 880px) { .why__grid { grid-template-columns: 1fr; } }

/* ===========================
   PROCESO
=========================== */
.process { padding: clamp(60px, 8vw, 110px) 0; }

.steps {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 0 var(--pad);
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 2.6vw, 38px);
}

.step { position: relative; padding-top: 26px; }
.step::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--line-2);
}
/* Acento dorado que marca el arranque de cada paso */
.step::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 26px;
  height: 1px;
  background: var(--gold);
  box-shadow: 0 0 10px rgba(140, 96, 32, .45);
}
.step__no {
  display: block;
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 15px;
  letter-spacing: .1em;
  color: var(--gold);
  margin-bottom: 12px;
}
.step h3 {
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.015em;
  margin: 0 0 8px;
}
.step p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--fg-3);
  margin: 0;
}

@media (max-width: 880px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }

/* ===========================
   FAQ
=========================== */
.faq { padding: clamp(60px, 8vw, 110px) 0; }

.faq__list {
  width: min(100%, 840px);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.faq__list details {
  border-bottom: 1px solid var(--line-2);
}
.faq__list summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 34px 22px 0;
  position: relative;
  font-size: clamp(15.5px, 1.6vw, 18px);
  letter-spacing: -0.012em;
  color: var(--fg);
  transition: color .3s var(--ease);
}
.faq__list summary::-webkit-details-marker { display: none; }
.faq__list summary:hover { color: var(--gold); }

.faq__list summary::after {
  content: "";
  position: absolute;
  right: 4px; top: 50%;
  width: 11px; height: 11px;
  margin-top: -5px;
  border-right: 1.5px solid var(--fg-3);
  border-bottom: 1.5px solid var(--fg-3);
  transform: rotate(45deg);
  transition: transform .35s var(--ease);
}
.faq__list details[open] summary::after {
  transform: rotate(-135deg);
  border-color: var(--gold);
}
.faq__list details[open] summary { color: var(--gold); }

.faq__list details p {
  margin: 0 0 24px;
  padding-right: 34px;
  font-size: 15px;
  line-height: 1.68;
  color: var(--fg-3);
}
.faq__list details[open] p { animation: faqReveal .45s var(--ease-soft) both; }

@keyframes faqReveal {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .faq__list details[open] p { animation: none; }
}

/* ===========================
   CIERRE
=========================== */
.closing {
  position: relative;
  isolation: isolate;
  padding: clamp(70px, 9vw, 120px) var(--pad);
  text-align: center;
  background: var(--bg-2);
  overflow: hidden;
}
/* Eco del resplandor del hero — la página abre y cierra igual */
.closing::before {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: min(760px, 120vw);
  height: min(760px, 120vw);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(circle, rgba(140, 96, 32, .13) 0%, rgba(140, 96, 32, .03) 38%, transparent 66%);
  filter: blur(80px);
}
.closing__inner {
  width: min(100%, 620px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.closing__title {
  font-size: clamp(30px, 4.6vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.032em;
  font-weight: 400;
  margin: 0 0 14px;
}
.closing__sub {
  font-size: 16px;
  line-height: 1.6;
  color: var(--fg-2);
  margin: 0 0 32px;
  max-width: 46ch;
}

/* ===========================
   FOOTER
=========================== */
.footer {
  padding: 56px 0 32px;
}

.footer__top {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.footer__big {
  display: block;
  width: 100%;
}

.footer__big img {
  width: 100%;
  max-width: 620px;
  height: auto;
  display: block;
  margin: 0 auto;
  opacity: .92;
  transition: opacity .3s var(--ease);
}

.footer__big:hover img { opacity: 1; }

.footer__cols {
  max-width: var(--max);
  margin: 48px auto 0;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
}

@media (max-width: 760px) {
  .footer__cols {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

.footer__eye {
  display: block;
  font-size: 11px;
  color: var(--fg-3);
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer__cols p {
  color: var(--fg-3);
  font-size: 14px;
  line-height: 1.6;
  max-width: 32ch;
}

.footer__cols ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__cols ul a {
  color: var(--fg-2);
  font-size: 14px;
  transition: color .25s var(--ease);
}

.footer__cols ul a:hover { color: var(--gold); }

.footer__rule {
  height: 1px;
  background: var(--line);
  margin: 48px 0 24px;
}

.footer__base {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 12px;
  color: var(--fg-3);
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  flex-wrap: wrap;
}

.footer__avail-row {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* ===========================
   REVELADO
=========================== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s var(--ease-soft), transform 1s var(--ease-soft);
}
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .product:hover .product__media img { transform: none; }
}
