:root {
  --bg: #0b0b0f;
  --ink: #f7f3ee;
  --muted: #b4aea6;
  --accent: #c7773e;
  --card: #17181f;
  --card-2: #1f2028;
  --shadow: 0 22px 44px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Work Sans", "Trebuchet MS", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at 50% 0%, #1a1a22 0%, #111116 55%, #0c0c11 100%);
  min-height: 100vh;
}

.shell {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px 80px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  margin-bottom: 20px;
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 11px;
  color: var(--muted);
  margin: 0 0 8px;
}

h1 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  margin: 0 0 8px;
}

.subtle {
  color: var(--muted);
  margin: 0;
}

.hero-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.btn,
.ghost {
  padding: 10px 16px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
}

.btn {
  background: var(--accent);
  color: #101015;
}

.ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--ink);
}

.toggle {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 13px;
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  margin-bottom: 18px;
}

.card {
  background: var(--card);
  border-radius: 18px;
  padding: 16px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.card h2 {
  margin: 0 0 12px;
}

.card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.list .item {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
}

.muted {
  color: var(--muted);
}

.row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 10px;
  margin-top: 12px;
}

input {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--card-2);
  color: var(--ink);
}

.map {
  height: 420px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.transcript,
.directions {
  min-height: 120px;
  line-height: 1.5;
  white-space: pre-wrap;
}

@media (max-width: 720px) {
  .row {
    grid-template-columns: 1fr;
  }
  .hero-actions {
    width: 100%;
    justify-content: flex-start;
  }
}
