:root {
  color-scheme: dark;
  --bg: #111418;
  --paper: #1a1f24;
  --line: #343b43;
  --text: #e1e0da;
  --muted: #9da5a9;
  --accent: #aaa187;
  --accent-ink: #111418;
}

* { box-sizing: border-box; }

html { background: var(--bg); }

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a { color: inherit; }

.shell {
  width: min(100% - 2.5rem, 34rem);
  min-height: 100svh;
  margin: 0 auto;
  padding: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.name { margin: 0 0 1.1rem; color: var(--accent); font-size: 1rem; font-weight: 700; }

h1 {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.1rem, 3.2vw, 1.4rem);
  line-height: 1.25;
  letter-spacing: -0.025em;
  font-weight: 600;
}

.destinations {
  display: grid;
  gap: 0.65rem;
  margin-top: 2rem;
}

.destinations a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 3.4rem;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 0.3rem;
  background: var(--paper);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: color 160ms ease;
}

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

a:focus-visible {
  outline: 3px solid #d2c49e;
  outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
  .destinations a { transition: none; }
}

@media (max-width: 600px) {
  .shell { width: min(100% - 2rem, 34rem); }
}
