/* =============================================================
   Pastelería Kaiser · Selector de sucursales
   Mismos tokens de marca que los sitios de cada sucursal
   (burdeo vino, rosa pastel, verde salvia, serif + sans).
   ============================================================= */

:root {
  --vino: #7a1128;
  --vino-600: #8f1a33;
  --vino-900: #5a0c1e;
  --rosa: #e89aae;
  --rosa-soft: #f4c9d5;
  --salvia: #5f7d6d;
  --crema: #f7e4da;
  --papel: #fffaf6;

  --pill: 999px;
  --r: 20px;
  --sombra: 0 20px 60px -22px rgba(20, 4, 9, .55);
  --ease: cubic-bezier(.22, .61, .36, 1);

  --ff-serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --ff-sans: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

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

a { color: inherit; text-decoration: none; }

html, body { height: 100%; }

body {
  font-family: var(--ff-sans);
  color: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.bg { position: fixed; inset: 0; z-index: -1; }
.bg img { width: 100%; height: 100%; object-fit: cover; }
.bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(90,12,30,.35), transparent 55%),
    linear-gradient(180deg, rgba(43,7,17,.88) 0%, rgba(43,7,17,.93) 55%, rgba(20,4,9,.97) 100%);
}

.stage {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3.5rem 1.5rem;
  gap: 1.6rem;
}

.mark { display: flex; flex-direction: column; align-items: center; gap: .7rem; }
.mark .sello {
  width: 78px; height: 78px; border-radius: 50%;
  object-fit: cover; background: var(--rosa-soft);
  box-shadow: var(--sombra);
}
.mark .eyebrow {
  font-size: .74rem; font-weight: 600; letter-spacing: .24em;
  text-transform: uppercase; color: var(--rosa-soft);
}

h1 {
  font-family: var(--ff-serif); font-weight: 700;
  font-size: clamp(2rem, 5.2vw, 3.4rem);
  line-height: 1.12; letter-spacing: -.01em;
}
h1 em { font-style: italic; color: var(--rosa-soft); }

.lead {
  max-width: 46ch; color: #f0dde3; font-size: clamp(1rem, 1.6vw, 1.14rem);
}

.picker {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 220px));
  gap: 1.1rem;
  margin-top: .6rem;
}
@media (max-width: 760px) {
  .picker { grid-template-columns: minmax(0, 320px); }
}

.pick-card {
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  background: rgba(255, 250, 246, .06);
  border: 1.5px solid rgba(232, 154, 174, .28);
  border-radius: var(--r);
  padding: 1.7rem 1.3rem 1.5rem;
  backdrop-filter: blur(6px);
  color: #fff;
  transition: transform .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.pick-card .pin { font-size: 1.5rem; }
.pick-card .pick-body { display: flex; flex-direction: column; gap: .15rem; }
.pick-card strong { font-family: var(--ff-serif); font-size: 1.28rem; }
.pick-card small { color: #e7c3cd; font-size: .82rem; }
.pick-card .go {
  margin-top: .5rem;
  font-size: .84rem; font-weight: 600;
  color: var(--rosa-soft);
  padding: .5rem 1.05rem;
  border-radius: var(--pill);
  border: 1.5px solid rgba(232, 154, 174, .5);
  transition: background .25s var(--ease), color .25s var(--ease);
}
.pick-card:hover {
  transform: translateY(-6px);
  background: var(--papel);
  border-color: var(--papel);
  box-shadow: var(--sombra);
}
.pick-card:hover strong { color: var(--vino); }
.pick-card:hover small { color: var(--salvia); }
.pick-card:hover .go { background: var(--vino); color: #fff; border-color: var(--vino); }

.foot-note { font-size: .82rem; color: #d9b6c0; margin-top: .3rem; }

/* Entrada suave, en cascada */
.reveal { opacity: 0; transform: translateY(18px); animation: rise .7s var(--ease) forwards; }
.mark.reveal { animation-delay: .05s; }
h1.reveal { animation-delay: .15s; }
.lead.reveal { animation-delay: .25s; }
.picker.reveal { animation-delay: .35s; }
.foot-note.reveal { animation-delay: .5s; }
@keyframes rise { to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce) {
  .reveal { animation: none; opacity: 1; transform: none; }
}
