* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: var(--font);
  background:
    radial-gradient(circle at top right, rgba(216, 243, 220, 0.45), transparent 32%),
    linear-gradient(180deg, var(--surface-warm) 0%, var(--surface) 100%);
  color: var(--ink);
}
.wrap {
  width: min(1180px, calc(100vw - 32px));
  margin: 0 auto;
}
.site-header {
  padding: 26px 0 18px;
}
.site-header-inner,
.site-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.04em;
}
.brand span,
.footer-brand span {
  color: var(--accent);
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.site-nav a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
}
.site-nav a:hover {
  color: var(--accent-strong);
}
.site-nav-cta {
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  color: var(--accent-strong) !important;
}
.main {
  padding: 10px 0 64px;
}
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow-soft);
}
.grid {
  display: grid;
  gap: 16px;
}
.muted { color: var(--ink-soft); }
.pill {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--accent-bg);
  color: var(--accent);
  font-size: 0.9rem;
}
a { color: var(--accent); }
ul.clean {
  list-style: none;
  padding: 0;
  margin: 0;
}
li.row {
  padding: 12px 0;
  border-top: 1px solid var(--border);
}
li.row:first-child { border-top: 0; }
.hero-title {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  margin: 0;
}
.breadcrumbs {
  margin-bottom: 16px;
  color: var(--ink-soft);
  font-size: 0.92rem;
}
.status-badge {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 0.8rem;
  background: #ecf7f2;
  color: #186448;
}
.status-badge.off {
  background: #f4e6e3;
  color: #9a4638;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--accent-bg);
  color: var(--accent);
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.eyebrow-soft {
  background: #efe8da;
  color: var(--accent-strong);
}
.hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(320px, 0.9fr);
  gap: 22px;
  align-items: stretch;
}
.hero-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 30px;
  box-shadow: var(--shadow);
}
.hero-panel-main {
  padding: 34px 36px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.97), rgba(248,243,234,0.95)),
    var(--surface);
}
.hero-copy {
  max-width: 48rem;
  margin: 18px 0 0;
  font-size: 1.12rem;
  line-height: 1.75;
  color: var(--ink-soft);
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border-radius: 999px;
  background: var(--accent-strong);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.button.button-secondary {
  background: transparent;
  color: var(--accent-strong);
  border: 1px solid var(--border);
}
.hero-note {
  margin: 18px 0 0;
  font-size: 0.98rem;
  color: var(--ink-soft);
}
.hero-panel-metrics {
  padding: 24px;
  background: linear-gradient(180deg, #f8f4eb 0%, #fffdf8 100%);
}
.metrics-head p {
  margin: 10px 0 0;
  line-height: 1.6;
}
.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}
.metric-card {
  padding: 16px;
  border-radius: 18px;
  background: var(--surface);
  border: 1px solid var(--border);
}
.metric-card strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.55rem;
  letter-spacing: -0.03em;
}
.metric-card span {
  display: block;
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 0.92rem;
}
.hero-summary {
  display: grid;
  gap: 12px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.stat-pair {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.95rem;
}
.stat-pair strong {
  font-family: var(--serif);
  font-size: 1.15rem;
}
.source-strip {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.source-chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--border);
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 600;
}
.section-block {
  margin-top: 34px;
}
.section-head {
  max-width: 48rem;
  margin-bottom: 18px;
}
.section-title {
  margin: 12px 0 0;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
}
.section-copy {
  margin: 12px 0 0;
  color: var(--ink-soft);
  line-height: 1.7;
  font-size: 1rem;
}
.province-grid,
.feature-grid,
.city-grid,
.method-grid {
  display: grid;
  gap: 16px;
}
.province-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.feature-grid,
.method-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.city-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.province-card,
.city-card,
.story-card,
.method-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 20px;
  box-shadow: var(--shadow-soft);
  transition: transform .2s, border-color .2s;
}
.province-card:hover,
.city-card:hover {
  transform: translateY(-1px);
  border-color: var(--border);
  box-shadow: var(--shadow);
}
.province-card-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
}
.province-name,
.city-card strong,
.story-card h3,
.method-card h3,
h1, h2, h3 {
  font-family: var(--serif);
}
.province-name {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}
.province-badge {
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--border-soft);
  color: var(--accent-strong);
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
}
.province-copy,
.city-card p,
.story-card p,
.method-card p {
  margin: 10px 0 0;
  color: var(--ink-soft);
  line-height: 1.65;
}
.province-meta,
.city-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-top: 14px;
  color: var(--accent-strong);
  font-size: 0.9rem;
  font-weight: 600;
}
.method-step {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--accent-strong);
  color: #fff;
  font-weight: 700;
  margin-bottom: 14px;
}
.street-card-grid,
.index-card-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.street-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 18px;
  box-shadow: var(--shadow-soft);
  transition: transform .2s, box-shadow .2s;
}
.street-card:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}
.street-card-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
}
.street-card strong {
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}
.street-card p {
  margin: 10px 0 0;
  color: var(--ink-soft);
  line-height: 1.6;
}
.alpha-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}
.alpha-chip {
  display: inline-flex;
  min-width: 40px;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  color: var(--accent-strong);
  text-decoration: none;
  font-weight: 700;
}
.search-panel {
  margin-bottom: 18px;
  padding: 18px 20px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}
.search-input {
  width: 100%;
  margin-top: 8px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: #fff;
  font: inherit;
  color: var(--ink);
}
.search-help {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.6;
}
.search-empty {
  margin: 10px 0 0;
  color: #9a4638;
  font-weight: 600;
}
.alpha-section-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
}
.alpha-section-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.alpha-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px 14px;
  border-bottom: 1px solid var(--border);
}
.alpha-section-head span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--accent-bg);
  color: var(--accent);
  font-weight: 700;
}
.alpha-section-head strong {
  font-size: 1rem;
  letter-spacing: -0.02em;
}
.compact-street-list {
  list-style: none;
  margin: 0;
  padding: 8px 20px 16px;
  columns: 1;
}
.compact-street-list li {
  padding: 10px 0;
  border-top: 1px solid var(--border);
  break-inside: avoid;
  line-height: 1.45;
}
.compact-street-list li:first-child {
  border-top: 0;
}
.compact-street-list a {
  display: inline-block;
  font-weight: 700;
  text-decoration: none;
  margin-right: 6px;
}
.compact-meta {
  display: inline-block;
  color: var(--ink-soft);
  font-size: 0.92rem;
  margin-right: 8px;
}
.details-index {
  display: grid;
  gap: 14px;
}
.index-group {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.index-group summary {
  list-style: none;
}
.index-group summary::-webkit-details-marker {
  display: none;
}
.index-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  cursor: pointer;
  font-size: 1rem;
}
.index-summary span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--accent-bg);
  color: var(--accent);
  font-weight: 700;
}
.index-summary strong {
  font-size: 1rem;
  letter-spacing: -0.02em;
}
.index-list {
  list-style: none;
  margin: 0;
  padding: 0 22px 18px;
}
.index-list li {
  padding: 12px 0;
  border-top: 1px solid var(--border);
  line-height: 1.65;
}
.index-list a {
  font-weight: 700;
  text-decoration: none;
}
.site-footer {
  padding: 28px 0 42px;
  border-top: 1px solid rgba(203, 191, 170, 0.55);
}
.footer-brand {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.footer-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: var(--ink-soft);
  text-align: right;
}
@media (max-width: 900px) {
  .site-header-inner,
  .site-footer-inner,
  .hero-shell {
    display: grid;
    grid-template-columns: 1fr;
  }
  .site-nav {
    gap: 12px;
  }
  .metric-grid {
    grid-template-columns: 1fr 1fr;
  }
  .street-card-grid,
  .index-card-grid,
  .alpha-section-grid {
    grid-template-columns: 1fr;
  }
  .footer-meta {
    text-align: left;
  }
}
@media (max-width: 720px) {
  .brand {
    font-size: 1.7rem;
  }
  .site-nav {
    display: none;
  }
  .hero-panel-main,
  .hero-panel-metrics,
  .card {
    padding: 20px;
  }
  .hero-title {
    font-size: clamp(2.3rem, 12vw, 3.6rem);
  }
  .metric-grid {
    grid-template-columns: 1fr;
  }
}
