:root {
  --bg: #0b0e16;
  --ink: #f5f3ef;
  --muted: rgba(245, 243, 239, 0.78);
  --glass: rgba(10, 12, 18, 0.48);
  --stroke: rgba(255, 255, 255, 0.12);
  --accent: #c9a3ff;
  --accent2: #67d7ff;
  --gold: #e7d7a0;
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.55);

  --safe-top: env(safe-area-inset-top);
  --safe-bottom: env(safe-area-inset-bottom);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

body {
  overflow: hidden;
}

#app {
  height: 100%;
}

.scroller {
  height: 100svh;
  overflow-y: auto;
  scroll-snap-type: y mandatory;
  overscroll-behavior: none;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}

.section {
  position: relative;
  height: 100svh;
  width: 100%;
  scroll-snap-align: start;
  overflow: clip;
}

.bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  /* Para que NO se corte arriba/abajo en pantallas con otras proporciones */
  object-fit: contain;
  object-position: center;
  background: #000;
}

.hero .bg-video {
  filter: none;
  transform: none;
}

.details .bg-video {
  filter: none;
  transform: none;
}

.rsvp .bg-video {
  filter: none;
  transform: none;
}

.vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(80% 60% at 50% 35%, rgba(255, 255, 255, 0.06), rgba(0, 0, 0, 0.55) 60%, rgba(0, 0, 0, 0.88)),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.2) 40%, rgba(0, 0, 0, 0.75));
  pointer-events: none;
}

.vignette-soft {
  background:
    radial-gradient(75% 55% at 50% 35%, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.55) 62%, rgba(0, 0, 0, 0.86)),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.16) 40%, rgba(0, 0, 0, 0.65));
}

.sparkles {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 22%, rgba(201, 163, 255, 0.25), transparent 22%),
    radial-gradient(circle at 76% 32%, rgba(103, 215, 255, 0.18), transparent 26%),
    radial-gradient(circle at 48% 72%, rgba(231, 215, 160, 0.14), transparent 28%);
  mix-blend-mode: screen;
  opacity: 0.9;
  filter: blur(0.2px);
  animation: spark 10s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes spark {
  from {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.75;
  }
  to {
    transform: translate3d(0, -10px, 0) scale(1.02);
    opacity: 0.95;
  }
}

.top-hint {
  position: fixed;
  z-index: 50;
  top: calc(10px + var(--safe-top));
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.at-end .top-hint {
  opacity: 0;
}

.hint-pill {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 10px 14px;
  border-radius: 999px;
  backdrop-filter: blur(10px);
}

.bottom-cue {
  position: absolute;
  z-index: 7;
  left: 0;
  right: 0;
  bottom: calc(18px + var(--safe-bottom));
  display: grid;
  justify-items: center;
  gap: 10px;
  pointer-events: none;
}

.bottom-pill {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 10px 14px;
  border-radius: 999px;
  backdrop-filter: blur(10px);
}

.bottom-cue .bottom-pill {
  display: none;
}

.bottom-arrow {
  width: 14px;
  height: 14px;
  border-right: 2px solid rgba(231, 215, 160, 0.9);
  border-bottom: 2px solid rgba(231, 215, 160, 0.9);
  transform: rotate(45deg);
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.45));
  animation: arrowBob 1.6s ease-in-out infinite;
}

@keyframes arrowBob {
  0% { transform: translateY(0) rotate(45deg); opacity: 0.75; }
  50% { transform: translateY(6px) rotate(45deg); opacity: 1; }
  100% { transform: translateY(0) rotate(45deg); opacity: 0.75; }
}

.at-end .bottom-cue {
  opacity: 0;
}

.music-toggle {
  position: fixed;
  z-index: 120;
  right: 14px;
  top: calc(58px + var(--safe-top));
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(231, 215, 160, 0.35);
  background: rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.45);
  -webkit-tap-highlight-color: transparent;
}

.music-toggle i {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
}

.music-toggle.is-on {
  border-color: rgba(231, 215, 160, 0.65);
  background: rgba(231, 215, 160, 0.14);
}

.music-toggle.is-on i {
  color: rgba(231, 215, 160, 0.95);
}

.music-toggle.is-off i {
  color: rgba(255, 255, 255, 0.75);
}

.info-toggle {
  position: fixed;
  z-index: 120;
  right: 14px;
  top: calc(108px + var(--safe-top));
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(231, 215, 160, 0.35);
  background: rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.45);
  -webkit-tap-highlight-color: transparent;
}

.info-toggle i {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
}

.info-toggle:active {
  transform: translate3d(0, 1px, 0) scale(0.98);
}

.music-toggle.needs-gesture {
  animation: musicNudge 1.8s ease-in-out infinite;
}

@keyframes musicNudge {
  0% { transform: translate3d(0, 0, 0); opacity: 1; }
  70% { transform: translate3d(0, 0, 0); opacity: 1; }
  82% { transform: translate3d(0, -2px, 0); opacity: 1; }
  92% { transform: translate3d(0, 0, 0); opacity: 1; }
  100% { transform: translate3d(0, 0, 0); opacity: 1; }
}

/* Info modal */
.info-modal[hidden] { display: none; }

.info-modal {
  position: fixed;
  inset: 0;
  z-index: 210;
}

.info-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(8px);
}

.info-modal__panel {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(92vw, 420px);
  max-height: min(78svh, 640px);
  overflow: auto;
  border-radius: 22px;
  border: 1px solid rgba(231, 215, 160, 0.22);
  background: rgba(12, 10, 16, 0.78);
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.65);
}

.info-modal__header {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 14px 10px;
  background: linear-gradient(180deg, rgba(12, 10, 16, 0.95), rgba(12, 10, 16, 0.72));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.info-modal__title {
  margin: 0;
  font-family: Cinzel, Georgia, serif;
  font-size: 18px;
  letter-spacing: 0.02em;
}

.info-modal__close {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.35);
  color: rgba(255, 255, 255, 0.9);
}

.info-modal__content {
  padding: 12px 14px 16px;
  display: grid;
  gap: 12px;
}

.info-block {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  padding: 12px 12px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(0, 0, 0, 0.22);
}

.info-block__icon {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(231, 215, 160, 0.12);
  border: 1px solid rgba(231, 215, 160, 0.22);
  color: rgba(231, 215, 160, 0.92);
}

.info-block__label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 6px;
}

.info-block__text {
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  line-height: 1.45;
}

.dress-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 8px;
}

.dress-item {
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: center;
  gap: 8px;
  padding: 10px 10px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.04);
}

.dress-emoji {
  font-size: 20px;
}

.swatches {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.swatch {
  width: 22px;
  height: 22px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 0 0 2px rgba(0,0,0,0.18);
}

.swatch.s1 { background: #001f54; }
.swatch.s2 { background: #0b4aa2; }
.swatch.s3 { background: #1c76d2; }
.swatch.s4 { background: #4fa3ff; }
.swatch.s5 { background: #a8d4ff; }

.swatches--champagne .swatch { border-color: rgba(231, 215, 160, 0.28); }
.swatch.c1 { background: #f7edd1; }
.swatch.c2 { background: #efe1b8; }
.swatch.c3 { background: #e7d2a0; }
.swatch.c4 { background: #d9bf86; }
.swatch.c5 { background: #caa66a; }

.info-block--alert {
  border-color: rgba(255, 120, 150, 0.25);
  background: rgba(120, 20, 40, 0.12);
}

.music-toggle:active {
  transform: translate3d(0, 1px, 0) scale(0.98);
}

.details-content,
.rsvp-content {
  position: relative;
  z-index: 5;
  height: 100%;
  padding: calc(34px + var(--safe-top)) 18px calc(28px + var(--safe-bottom));
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
}

.rsvp-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  position: relative;
  padding-top: calc(22px + var(--safe-top));
  padding-bottom: calc(22px + var(--safe-bottom));
}

.rsvp .actions {
  position: absolute;
  left: 50%;
  bottom: calc(3svh + var(--safe-bottom));
  transform: translateX(-50%);
  width: min(340px, 92vw);
  margin: 0;
  padding: 0;
  align-self: auto;
}

.colonial-btn--small {
  width: min(340px, 92vw);
  padding: 10px 14px;
  font-size: 12px;
  letter-spacing: 0.1em;
}

.rsvp #info-open-rsvp {
  position: absolute;
  top: calc(12px + var(--safe-top));
  left: 18px;
  right: 18px;
  width: auto;
  max-width: 340px;
  margin-left: auto;
  margin-right: auto;
  z-index: 6;
}

.details-cta {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: grid;
  place-items: center;
  pointer-events: none;
  transform: translateY(61px);
}

.play-cta {
  pointer-events: auto;
  width: 110px;
  height: 110px;
  border-radius: 999px;
  border: 0;
  padding: 0;
  background: transparent;
  position: relative;
  -webkit-tap-highlight-color: transparent;
}

.play-cta__ring {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  border: 3px solid rgba(231, 215, 160, 0.95);
  background:
    radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.55)),
    conic-gradient(from 110deg, rgba(231, 215, 160, 0.92), rgba(201, 163, 255, 0.65), rgba(103, 215, 255, 0.62), rgba(231, 215, 160, 0.92));
  box-shadow:
    0 18px 60px rgba(0, 0, 0, 0.55),
    inset 0 0 0 2px rgba(255, 255, 255, 0.14),
    inset 0 0 28px rgba(231, 215, 160, 0.18);
  filter: saturate(1.05);
  animation: ctaPulse 1.8s ease-in-out infinite;
}

.play-cta__icon {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.play-cta__icon::before {
  content: "";
  width: 0;
  height: 0;
  border-top: 18px solid transparent;
  border-bottom: 18px solid transparent;
  border-left: 30px solid rgba(255, 255, 255, 0.92);
  transform: translateX(3px);
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.45));
}

.play-cta:active .play-cta__ring {
  transform: scale(0.98);
}

@keyframes ctaPulse {
  0% { transform: scale(1); opacity: 0.95; }
  50% { transform: scale(1.03); opacity: 1; }
  100% { transform: scale(1); opacity: 0.95; }
}

/* Modal */
.video-modal[hidden] { display: none; }

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
}

.video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
}

.video-modal__panel {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(92vw, 420px);
  aspect-ratio: 9 / 16;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.65);
  background: rgba(0, 0, 0, 0.35);
}

.video-modal__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: black;
}

.video-modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.45);
  color: rgba(255, 255, 255, 0.95);
  font-size: 22px;
  line-height: 1;
}

.primary-btn,
.secondary-btn {
  -webkit-tap-highlight-color: transparent;
  border: 0;
  border-radius: 16px;
  padding: 14px 16px;
  width: min(330px, 92vw);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: var(--shadow);
}

.primary-btn {
  color: #0b0e16;
  background: linear-gradient(135deg, #e7d7a0, #c9a3ff 55%, #67d7ff);
}

.secondary-btn {
  color: rgba(255, 255, 255, 0.92);
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
}

.primary-btn:active,
.secondary-btn:active {
  transform: translate3d(0, 1px, 0) scale(0.99);
}

.section-title {
  margin: 0 0 10px;
  font-family: Cinzel, Georgia, serif;
  font-weight: 700;
  font-size: 34px;
  letter-spacing: 0.01em;
}

.tagline {
  margin: 0 0 18px;
  max-width: 30ch;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  line-height: 1.55;
}

.info-card {
  width: min(380px, 92vw);
  background: var(--glass);
  border: 1px solid var(--stroke);
  border-radius: 22px;
  padding: 14px 14px;
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.info-card .row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
  padding: 12px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.info-card .row:last-child {
  border-bottom: 0;
}

.label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.7);
}

.value {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.92);
}

.scroll-cue {
  margin-top: 16px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.72);
  opacity: 0.95;
}

.bg-clean {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(70% 45% at 50% 20%, rgba(201, 163, 255, 0.18), transparent 55%),
    radial-gradient(60% 40% at 80% 72%, rgba(103, 215, 255, 0.12), transparent 58%),
    linear-gradient(180deg, #0b0e16, #0d1221 45%, #0b0e16);
}

.colonial-btn {
  -webkit-tap-highlight-color: transparent;
  border-radius: 14px;
  padding: clamp(11px, 2.1vh, 14px) 16px;
  width: min(340px, 92vw);
  font-weight: 700;
  font-size: clamp(12px, 1.8vh, 14px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 1px solid rgba(231, 215, 160, 0.55);
  color: rgba(20, 14, 10, 0.92);
  background:
    linear-gradient(180deg, rgba(250, 242, 214, 0.96), rgba(231, 215, 160, 0.92));
  box-shadow:
    0 16px 55px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
  animation: colonialHint 1.9s ease-in-out infinite;
}

/* En pantallas muy bajitas, compacta más los botones */
@media (max-height: 740px) {
  .rsvp .actions { width: min(320px, 92vw); }
}

@media (max-height: 680px) {
  .rsvp-content { padding-bottom: calc(clamp(14px, 7vh, 84px) + var(--safe-bottom)); }
  .rsvp .actions { gap: 10px; }
  .colonial-btn { letter-spacing: 0.06em; }
}

.colonial-btn::before {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: 10px;
  border: 1px solid rgba(90, 58, 22, 0.22);
  pointer-events: none;
}

.colonial-btn::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  top: 9px;
  height: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  opacity: 0.5;
  pointer-events: none;
}

.colonial-btn--ghost {
  color: rgba(255, 255, 255, 0.92);
  background: rgba(0, 0, 0, 0.28);
  border-color: rgba(231, 215, 160, 0.35);
  backdrop-filter: blur(10px);
}

.colonial-btn--ghost::before {
  border-color: rgba(231, 215, 160, 0.18);
}

.colonial-btn--ghost {
  animation-delay: 0.35s;
}

.colonial-btn:active {
  transform: translate3d(0, 1px, 0) scale(0.99);
}

@keyframes colonialHint {
  0% { transform: translate3d(0, 0, 0); }
  72% { transform: translate3d(0, 0, 0); }
  82% { transform: translate3d(0, -2px, 0); }
  92% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(0, 0, 0); }
}

.actions {
  width: min(380px, 92vw);
  display: grid;
  gap: 12px;
  margin-top: 10px;
}

.rsvp .colonial-btn {
  width: 100%;
}

.fineprint {
  margin: 18px 0 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.72);
  max-width: 34ch;
  line-height: 1.5;
}

/* Rabbit hole transition overlay */
.rabbit-hole {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.92);
}

.portal-ring {
  position: absolute;
  width: min(84vw, 380px);
  aspect-ratio: 1 / 1;
  border-radius: 999px;
  border: 1px solid rgba(231, 215, 160, 0.45);
  box-shadow: 0 0 60px rgba(201, 163, 255, 0.28), inset 0 0 50px rgba(103, 215, 255, 0.14);
  background:
    radial-gradient(circle at 30% 30%, rgba(103, 215, 255, 0.22), transparent 50%),
    radial-gradient(circle at 60% 70%, rgba(201, 163, 255, 0.22), transparent 55%);
  filter: blur(0.2px);
  animation: ringFloat 3.2s ease-in-out infinite alternate;
}

.portal-ring.ring2 {
  width: min(92vw, 430px);
  opacity: 0.55;
  transform: rotate(12deg);
  animation-duration: 4.6s;
}

.clock-face {
  position: absolute;
  width: min(50vw, 220px);
  aspect-ratio: 1 / 1;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.75)),
    conic-gradient(from 180deg, rgba(231, 215, 160, 0.2), rgba(103, 215, 255, 0.14), rgba(201, 163, 255, 0.2), rgba(231, 215, 160, 0.2));
  box-shadow: 0 0 45px rgba(231, 215, 160, 0.18);
  animation: tick 1.4s linear infinite;
}

@keyframes ringFloat {
  from {
    transform: translate3d(0, 10px, 0) rotate(-6deg);
  }
  to {
    transform: translate3d(0, -10px, 0) rotate(6deg);
  }
}

@keyframes tick {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

body.is-transitioning .rabbit-hole {
  opacity: 1;
}

body.is-transitioning .bg-video {
  filter: saturate(1.1) contrast(1.15) blur(1px);
  transition: filter 450ms ease;
}

body.do-rabbithole .rabbit-hole {
  animation: rabbithole 820ms cubic-bezier(0.2, 0.9, 0.2, 1) forwards;
}

@keyframes rabbithole {
  0% {
    opacity: 0;
    transform: scale(0.75);
    filter: blur(6px);
  }
  45% {
    opacity: 1;
    transform: scale(1.05);
    filter: blur(1px);
  }
  100% {
    opacity: 0;
    transform: scale(2.2);
    filter: blur(10px);
  }
}

/* Invisible full-screen tap target for the intro section */
.tap-entrar {
  position: absolute;
  inset: 0;
  z-index: 6;
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  -webkit-tap-highlight-color: transparent;
}

/* Floating parallax props (pure CSS shapes) */
.parallax-layer {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.float {
  position: absolute;
  will-change: transform;
  opacity: 0.95;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.35));
}

.float.img {
  width: auto;
  height: auto;
  max-width: 60vw;
  max-height: 44svh;
  object-fit: contain;
  opacity: 0.9;
}

.hero .float.img {
  opacity: 0.55;
  filter: drop-shadow(0 14px 22px rgba(0, 0, 0, 0.28));
}

.hero .conejo { left: -6vw; top: 56svh; width: 36vw; max-height: 36svh; transform: rotate(-6deg); }
.hero .carta { right: -10vw; top: 18svh; width: 44vw; max-height: 46svh; transform: rotate(10deg); }
.hero .reloj { left: 62vw; top: 56svh; width: 22vw; max-height: 22svh; transform: rotate(8deg); }
.hero .hongo { left: 52vw; top: 2svh; width: 34vw; max-height: 30svh; transform: rotate(-8deg); }

.card {
  width: 74px;
  height: 98px;
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(0, 0, 0, 0.1)),
    radial-gradient(circle at 35% 30%, rgba(201, 163, 255, 0.25), transparent 55%),
    radial-gradient(circle at 75% 70%, rgba(103, 215, 255, 0.18), transparent 60%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
  transform: rotate(-10deg);
}

.card::after {
  content: "♠";
  position: absolute;
  inset: 10px auto auto 10px;
  font-size: 18px;
  color: rgba(231, 215, 160, 0.85);
}

.key {
  width: 120px;
  height: 38px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(231, 215, 160, 0.95), rgba(201, 163, 255, 0.7));
  opacity: 0.8;
  transform: rotate(12deg);
}

.key::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 50%;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 6px solid rgba(231, 215, 160, 0.9);
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.2);
}

.clock {
  width: 72px;
  height: 72px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.75)),
    conic-gradient(from 270deg, rgba(231, 215, 160, 0.18), rgba(103, 215, 255, 0.12), rgba(201, 163, 255, 0.18));
  opacity: 0.75;
}

.smoke {
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.14), transparent 60%);
  filter: blur(10px);
  opacity: 0.45;
}

.butterfly {
  width: 60px;
  height: 42px;
  background:
    radial-gradient(circle at 30% 50%, rgba(201, 163, 255, 0.5), transparent 55%),
    radial-gradient(circle at 70% 50%, rgba(103, 215, 255, 0.45), transparent 55%);
  filter: blur(0.4px);
  opacity: 0.8;
  transform: rotate(-8deg);
  border-radius: 18px;
}


.rose {
  width: 84px;
  height: 84px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 35% 35%, rgba(255, 120, 150, 0.35), transparent 55%),
    radial-gradient(circle at 65% 65%, rgba(231, 215, 160, 0.18), transparent 60%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  opacity: 0.6;
}

.c1 { left: 8%; top: 18%; }
.c2 { right: 6%; top: 62%; transform: rotate(14deg); }
.k1 { left: -10px; top: 70%; opacity: 0.65; }
.cl1 { right: 10%; top: 14%; }

.c3 { left: 6%; top: 58%; transform: rotate(-18deg); }
.c4 { right: 10%; top: 22%; transform: rotate(10deg); }
.s1 { left: -40px; top: 20%; }
.b1 { right: 2%; top: 70%; }

.c5 { right: 6%; top: 18%; transform: rotate(-6deg); }
.k2 { right: -40px; top: 62%; opacity: 0.55; }
.r1 { left: 10%; top: 18%; }

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .scroller { scroll-behavior: auto; }
  .sparkles, .portal-ring, .clock-face { animation: none !important; }
  body.do-rabbithole .rabbit-hole { animation: none !important; opacity: 0; }
}
