/* ================= SWIPE HINT ================= */
.swipe-hint {
  display: none;
}
@keyframes hintPulse {
  0%,
  100% {
    opacity: 0.4;
  }
  50% {
    opacity: 0.85;
  }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 700px) {
  body {
    overflow-x: hidden;
  }
  .scroll-desktop {
    display: none;
  }
  .nav-links {
    display: none;
  }
  .intro-card {
    padding: 48px 28px;
  }
  .constellation .const-line {
    left: 10px;
  }
  .moment,
  .moment:nth-child(even) {
    width: 100%;
    margin: 0;
    padding: 0 0 60px 42px;
    text-align: left;
  }
  .moment:nth-child(odd) .node,
  .moment:nth-child(even) .node {
    left: 4px;
    right: auto;
  }
  .frames {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin: auto;
  }
  .frame:nth-child(2),
  .frame:nth-child(3) {
    margin-top: 0;
  }
  .gallery-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding: 0 20px;
    gap: 16px;
    padding: 0 20px 20px;
    -webkit-overflow-scrolling: touch;
    grid-template-columns: unset;
  }
  .gallery-grid::-webkit-scrollbar {
    display: none;
  }
  .gallery-item {
    width: 100%;
    min-width: 0;
    flex-basis: 100%;
    flex-shrink: 0;
    scroll-snap-align: center;
    transform: rotate(0deg) !important;
  }
  .gallery-item:first-child {
    grid-column: unset;
    grid-row: unset;
  }
  .gallery-item:first-child .gallery-frame {
    padding: 8px;
  }
  .gallery-item:first-child .gallery-frame img {
    aspect-ratio: 4/5;
    height: auto;
  }
  .gallery-frame {
    padding: 8px;
  }
  .gallery-frame img {
    aspect-ratio: 4/5;
    height: auto;
  }
  .swipe-hint {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    padding: 10px 0;
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--muted);
    animation: hintPulse 2s ease-in-out infinite;
  }
  .hero h1 {
    font-size: 64px;
  }
  .countdown-boxes {
    gap: 12px;
  }
  .countdown-box {
    min-width: 76px;
    padding: 18px 16px;
  }
  .countdown-box .num {
    font-size: 32px;
  }
  .cursor-glow {
    display: none;
  }
}
