:root {
  --ink: #14110e;
  --ink-soft: #1c1814;
  --cream: #f3ead8;
  --cream-dim: #c9bba3;
  --gold: #e8a017;
  --gold-soft: #f0c56a;
  --terra: #c45c26;
  --line: rgba(243, 234, 216, 0.14);
}

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

html,
body {
  min-height: 100%;
}

body {
  font-family: Outfit, system-ui, sans-serif;
  background: var(--ink);
  color: var(--cream);
  overflow-x: hidden;
}

.grain,
.glow {
  pointer-events: none;
  position: fixed;
  inset: 0;
}

.grain {
  z-index: 2;
  opacity: 0.07;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.glow {
  z-index: 0;
  background:
    radial-gradient(ellipse 70% 50% at 80% -10%, rgba(255, 184, 0, 0.16), transparent 55%),
    radial-gradient(ellipse 50% 40% at 8% 100%, rgba(26, 92, 232, 0.18), transparent 50%);
}

.nav,
.stage,
.cities,
.foot {
  position: relative;
  z-index: 1;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 6vw 0;
}

.brand {
  display: flex;
  align-items: center;
}

.brand img {
  display: block;
  height: 42px;
  width: auto;
}

.hero-logo {
  display: block;
  height: clamp(52px, 8vw, 78px);
  width: auto;
  margin-bottom: 1.6rem;
}

.nav-place {
  color: var(--cream-dim);
  font-size: 0.82rem;
}

.stage {
  max-width: 760px;
  padding: 12vh 6vw 4rem;
}

.kicker {
  display: inline-block;
  margin-bottom: 1.1rem;
  padding: 0.35rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--gold-soft);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1 {
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(3.2rem, 9vw, 6.4rem);
  font-weight: 650;
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.lede {
  max-width: 36rem;
  margin-top: 1.4rem;
  color: var(--cream-dim);
  font-size: 1.08rem;
  line-height: 1.6;
}

.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.8rem 0 0;
  list-style: none;
}

.pills li {
  padding: 0.45rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.82rem;
  color: var(--cream);
}

.route {
  display: block;
  width: 100%;
  height: 110px;
  position: relative;
  z-index: 1;
}

.route-line {
  fill: none;
  stroke: var(--gold);
  stroke-width: 2;
  stroke-dasharray: 10 14;
  opacity: 0.55;
  animation: dash 18s linear infinite;
}

.route-dot {
  fill: var(--cream);
}

@keyframes dash {
  to {
    stroke-dashoffset: -480;
  }
}

.cities {
  padding: 0 6vw 2.5rem;
  color: var(--cream-dim);
  font-size: 0.92rem;
  letter-spacing: 0.04em;
}

.foot {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 6vw 2rem;
  color: #7c7364;
  font-size: 0.78rem;
}

@media (max-width: 640px) {
  .stage {
    padding-top: 8vh;
  }

  .brand img {
    height: 34px;
  }
}
