:root {
  --yellow: #fff200;
  --ink: #202020;
  --muted: #676767;
  --line: #e8e8e8;
  --surface: #ffffff;
  --page: #fbfaf2;
  --shadow: 0 22px 60px rgba(20, 20, 20, 0.09);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: linear-gradient(180deg, #fffbea 0, #fff 260px, var(--page) 100%);
  font-family: Montserrat, Arial, sans-serif;
  font-size: 15px;
}

a {
  color: inherit;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--yellow);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  gap: 36px;
  max-width: 1180px;
  height: 66px;
  margin: auto;
  padding: 0 28px;
  font-size: 13px;
  font-weight: 900;
}

.logo {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.16);
}

.logo img {
  width: 38px;
  height: 38px;
}

.nav a {
  text-decoration: none;
}

.nav-spacer {
  flex: 1;
}

main {
  max-width: 1080px;
  margin: 54px auto 86px;
  padding: 0 24px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  align-items: stretch;
  overflow: hidden;
  min-height: 360px;
  border-radius: 26px;
  background: #ffe900;
  box-shadow: var(--shadow);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(32px, 5vw, 64px);
}

.eyebrow {
  margin: 0 0 16px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 0.96;
  letter-spacing: -2px;
}

.lead {
  max-width: 620px;
  margin: 22px 0 0;
  color: #343434;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.65;
}

.hero-media {
  min-height: 360px;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.08), rgba(255, 255, 255, 0.2));
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.section {
  margin-top: 34px;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.06);
}

.section h2 {
  margin: 0 0 16px;
  font-size: clamp(26px, 3vw, 40px);
  letter-spacing: -0.8px;
}

.section p {
  color: var(--muted);
  font-weight: 600;
  line-height: 1.75;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.card {
  min-height: 170px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
}

.card h3 {
  margin: 0 0 12px;
  font-size: 18px;
}

.card p,
.card li {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.65;
}

.card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  background: #121212;
  color: #fff;
  font-weight: 900;
  text-decoration: none;
}

.button.secondary {
  background: #fff;
  color: #121212;
  box-shadow: inset 0 0 0 1px #d6d6d6;
}

.route-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.route-pill {
  padding: 14px 16px;
  border-radius: 16px;
  background: #111;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.notice {
  border-left: 6px solid var(--yellow);
  background: #fffde4;
}

@media (max-width: 860px) {
  .nav {
    gap: 18px;
    overflow-x: auto;
  }

  .nav a {
    white-space: nowrap;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: 240px;
  }

  .grid,
  .route-list {
    grid-template-columns: 1fr;
  }
}
