:root {
  color-scheme: light;
  --ink: #151922;
  --muted: #5f6673;
  --line: #f2b400;
  --line-dark: #9c6b00;
  --panel: #ffffff;
  --bg: #f7f4ea;
  --shadow: 0 16px 42px rgba(24, 32, 51, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(242, 180, 0, 0.18), rgba(255, 255, 255, 0) 42%),
    var(--bg);
}

a {
  color: inherit;
}

.home-shell {
  width: min(980px, calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0 48px;
}

.home-hero {
  max-width: 760px;
}

.home-kicker {
  margin: 0 0 14px;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--line-dark);
}

h1 {
  margin: 0;
  font-size: clamp(2.2rem, 7vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.home-hero p:not(.home-kicker) {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.home-primary-link {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  margin-top: 30px;
  padding: 0 18px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-weight: 900;
  text-decoration: none;
}

.home-region-list {
  margin-top: 70px;
}

.home-region-list h2 {
  margin: 0 0 14px;
  font-size: 1rem;
}

.region-card {
  display: grid;
  gap: 5px;
  max-width: 360px;
  padding: 18px;
  border: 1px solid rgba(21, 25, 34, 0.12);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
  text-decoration: none;
}

.region-card span {
  color: var(--line-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.region-card strong {
  font-size: 1.25rem;
}

.region-card small {
  color: var(--muted);
}

@media (max-width: 680px) {
  .home-shell {
    padding-top: 46px;
  }

  .home-primary-link {
    width: 100%;
    justify-content: center;
  }
}
