/* ═══════════════════════════════════════════════════════════════
   css/hero.css — Hero section
   ═══════════════════════════════════════════════════════════════ */

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px var(--gutter) 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Map grid background */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.4;
  pointer-events: none;
}

/* Radial fade over grid */
.hero-fade {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 60% at 50% 40%,
    rgba(245, 242, 236, 0) 0%,
    rgba(245, 242, 236, 0.65) 55%,
    var(--paper) 100%
  );
  pointer-events: none;
}

/* Content */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid currentColor;
  padding: 5px 16px;
  border-radius: 100px;
  margin-bottom: 32px;
  animation: fadeUp 0.6s 0.1s both;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(54px, 9vw, 100px);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1.0;
  margin-bottom: 12px;
  animation: fadeUp 0.6s 0.2s both;
}

.hero-title .italic {
  color: var(--accent);
}

.hero-sub {
  font-family: var(--serif);
  font-size: clamp(17px, 2.5vw, 22px);
  font-weight: 300;
  color: var(--faint);
  max-width: 560px;
  margin: 0 auto 48px;
  line-height: 1.55;
  animation: fadeUp 0.6s 0.3s both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.6s 0.4s both;
}

/* Floating destination labels */
.hero-destinations {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.dest-tag {
  position: absolute;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 13px;
  color: rgba(212, 204, 188, 0.9);
  white-space: nowrap;
  user-select: none;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  animation: fadeIn 1s 1s both;
}

.hero-scroll span {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--border);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--border), transparent);
  animation: float 2s ease-in-out infinite;
}

@media (max-width: 640px) {
  .hero { padding: 100px var(--gutter) 60px; }
  .hero-sub { font-size: 16px; }
  .dest-tag { display: none; }
}
