/* ═══════════════════════════════════════════
   Landing Page Styles
   ═══════════════════════════════════════════ */

html.landing-page,
html.landing-page body {
  overflow-x: hidden;
}

html.landing-page .wrapper {
  width: 100% !important;
  max-width: 100vw !important;
  padding-top: 0 !important;
  margin: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  overflow-x: hidden;
}

html.landing-page section {
  padding: 0;
  margin: 0;
  max-width: 100%;
}

html.landing-page footer {
  text-align: center;
  padding: 24px 20px 32px;
}

/* ── Hero ── */
.landing-hero {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 24px;
  position: relative;
  overflow: hidden;
}

.hero-geo-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.landing-slogan,
.landing-subtitle,
.landing-scroll-hint {
  position: relative;
  z-index: 1;
}

.landing-slogan {
  font-family: "Fraunces", serif;
  font-weight: 650;
  font-size: clamp(52px, 10vw, 96px);
  color: var(--ink, #111);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0;
  opacity: 0;
  transform: translateY(20px);
  animation: landing-fade-up 0.9s ease forwards;
}

.landing-subtitle {
  font-family: "Manrope", sans-serif;
  font-size: clamp(14px, 2vw, 18px);
  font-weight: 500;
  color: #555;
  margin: 12px 0 0;
  letter-spacing: 0.04em;
  opacity: 0;
  transform: translateY(14px);
  animation: landing-fade-up 0.9s ease 0.25s forwards;
}

.landing-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0;
  animation: landing-fade-up 0.8s ease 0.6s forwards;
}

.landing-scroll-hint span {
  font-size: 11px;
  font-weight: 600;
  color: #999;
  letter-spacing: 0.08em;
}

.landing-scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid #bbb;
  border-bottom: 2px solid #bbb;
  transform: rotate(45deg);
  animation: landing-bounce 2s ease-in-out infinite;
}

@keyframes landing-bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(6px); }
}

@keyframes landing-fade-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Cards Section ── */
.landing-cards-section {
  padding: 60px 24px 80px;
  max-width: 900px;
  margin: 0 auto;
}

.landing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.landing-card {
  border: 1px solid #dfe1db;
  border-radius: 14px;
  padding: 28px 22px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(6px);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.landing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(32, 42, 59, 0.10);
}

.landing-card-illust {
  width: 100%;
  height: 120px;
  object-fit: contain;
  margin-bottom: 2px;
  border-radius: 8px;
}

.landing-card-title {
  font-family: "Fraunces", serif;
  font-weight: 650;
  font-size: 20px;
  color: var(--ink, #111);
  margin: 0;
}

.landing-card-desc {
  font-size: 13px;
  line-height: 1.5;
  color: #555;
  margin: 0;
}

/* ── Responsive ── */
@media (max-width: 680px) {
  .landing-cards {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 0 auto;
  }

  .landing-card {
    padding: 22px 18px;
  }

  .landing-hero {
    min-height: 85dvh;
  }
}

@media (min-width: 681px) and (max-width: 900px) {
  .landing-cards {
    grid-template-columns: 1fr 1fr;
  }

  .landing-cards .landing-card:last-child {
    grid-column: 1 / -1;
    max-width: 50%;
    justify-self: center;
  }
}
