:root {
  --text-faint: #6b7580;
}

/* style.css locks html/body to a fixed-height flex row for the map layout;
   this page is a normal scrolling document. */
html, body {
  height: auto;
  overflow: auto;
  display: block;
}

.page {
  max-width: 720px;
  margin: 0 auto;
  padding: 56px 24px 64px;
}

a { color: inherit; }

/* --- nav --- */

.top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 40px;
}

.back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dim);
  text-decoration: none;
}

.back svg { flex-shrink: 0; }
.back:hover { color: var(--accent); }

/* --- hero --- */

.hero h1 {
  font-size: 34px;
  line-height: 1.15;
  font-weight: 700;
  margin: 0 0 4px;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

.hero .citytag { margin: 8px 0 20px; font-size: 11px; }

.lede {
  font-size: 17px;
  line-height: 1.55;
  color: var(--text-dim);
  margin: 0;
}

.lede b { color: var(--text); font-weight: 600; }

/* --- section rhythm --- */

section { margin-top: 52px; }

.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin: 0 0 14px;
}

/* --- stat grid --- */

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}

.stat {
  background: var(--panel-2);
  padding: 18px 16px;
  text-align: center;
}

.stat .n {
  font-size: 26px;
  font-weight: 700;
  font-variant-numeric: proportional-nums;
  letter-spacing: -0.01em;
}

.stat .u {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dim);
  margin-left: 2px;
}

.stat .l {
  font-size: 12px;
  color: var(--text-faint);
  margin-top: 4px;
  line-height: 1.4;
}

/* --- benefits --- */

.benefits {
  display: grid;
  gap: 14px;
}

.benefit {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  padding: 16px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 10px;
}

.benefit svg {
  margin-top: 2px;
  color: var(--accent);
  flex-shrink: 0;
}

.benefit h3 {
  font-size: 14.5px;
  font-weight: 600;
  margin: 0 0 4px;
}

.benefit p {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--text-dim);
  margin: 0;
}

/* --- maker card --- */

.maker-card {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  padding: 20px;
  background: var(--panel-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  align-items: start;
}

.maker-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(155deg, var(--accent), #c47f22);
  color: #1a1200;
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.maker-name {
  font-size: 15px;
  font-weight: 700;
  margin: 2px 0 6px;
}

.maker-bio {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-dim);
  margin: 0 0 14px;
  max-width: 46ch;
}

.maker-contact {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-dim);
  margin: 0;
}

.maker-contact a {
  color: var(--text);
  font-weight: 600;
  text-decoration: underline dotted;
  text-underline-offset: 2px;
}

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

/* --- footer --- */

footer {
  margin-top: 56px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--text-faint);
}

.cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent);
  color: #1a1200;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  padding: 9px 16px;
  border-radius: 6px;
}
