:root {
  color-scheme: light;
  --bg: #f3efe3;
  --panel: rgba(255, 252, 244, 0.86);
  --ink: #1e1d19;
  --muted: #5f5a4f;
  --line: rgba(30, 29, 25, 0.12);
  --accent: #0d6a64;
  --accent-ink: #f9fbf8;
  --shadow: 0 24px 60px rgba(24, 33, 31, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(13, 106, 100, 0.18), transparent 30%),
    radial-gradient(circle at bottom right, rgba(215, 127, 44, 0.2), transparent 35%),
    linear-gradient(180deg, #efe6cf 0%, var(--bg) 55%, #e7e0cf 100%);
}

.shell {
  width: min(760px, calc(100vw - 32px));
  margin: 64px auto;
  padding: 40px 32px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
}

h1 {
  margin: 0;
  font-size: clamp(36px, 7vw, 64px);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.copy {
  margin: 20px 0 0;
  max-width: 58ch;
  font-size: 18px;
  line-height: 1.6;
  color: var(--muted);
}

.copy a {
  color: var(--accent);
}

.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 16px;
}

.primary {
  background: var(--accent);
  color: var(--accent-ink);
}

.secondary {
  border: 1px solid var(--line);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.5);
}

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

.routes div {
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

dt {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

dd {
  margin: 8px 0 0;
  font-size: 18px;
}

@media (max-width: 640px) {
  .shell {
    margin: 24px auto;
    padding: 28px 20px;
  }

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