/* Pub Crawl Kyoto — coming soon (hero only) */

:root {
  --bg: #08090f;
  --text: #faf8f5;
  --muted: #a39e96;
  --gold: #f0b429;
  --warm: #e85d3a;
  --max-w: 40rem;
  --pad: 1.25rem;
}

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

html,
body {
  height: 100%;
  overflow: hidden;
}

body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
}

.scene {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 100% 80% at 50% 30%, rgba(8, 9, 15, 0.55) 0%, transparent 65%),
    radial-gradient(ellipse 90% 60% at 50% 0%, rgba(232, 93, 58, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse 100% 50% at 50% 100%, rgba(8, 9, 15, 0.85) 0%, transparent 60%);
}

.page {
  position: relative;
  z-index: 10;
  height: 100svh;
  overflow: hidden;
}

.hero {
  height: 100svh;
  position: relative;
}

.hero__pin {
  height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem var(--pad) 3rem;
  text-align: center;
  gap: 1.25rem;
}

.hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: var(--max-w);
  opacity: 0;
  animation: heroFadeIn 0.65s ease-out forwards;
}

@keyframes heroFadeIn {
  to { opacity: 1; }
}

.coming-soon {
  display: inline-block;
  margin-bottom: 1.25rem;
  padding: 0.4rem 0.9rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(240, 180, 41, 0.35);
  border-radius: 999px;
  background: rgba(8, 9, 15, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.05;
}

.logo__main {
  font-size: clamp(3rem, 14vw, 4.25rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #fff;
  text-transform: uppercase;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.5);
}

.logo__sub {
  font-size: clamp(0.9rem, 3.5vw, 1.15rem);
  font-weight: 600;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.35em;
  padding-left: 0.45em;
}

.hero__headline {
  font-size: clamp(1.75rem, 7vw, 2.5rem);
  font-weight: 900;
  margin: 2rem 0 0.85rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.45);
}

.hero__headline em {
  font-style: normal;
  color: var(--warm);
}

.hero__sub {
  color: var(--muted);
  font-size: clamp(1rem, 4vw, 1.15rem);
  font-weight: 500;
  max-width: 32ch;
  margin: 0 auto;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.4);
}

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