.button {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  border: 1px solid transparent;
  border-radius: .55rem;
  padding: .65rem 1rem;
  background: var(--brand);
  color: var(--bg);
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
}
.button:hover { background: var(--brand-strong); }
.button-secondary { border-color: var(--border); background: var(--surface); color: var(--brand-strong); }
.button-secondary:hover { background: var(--brand-soft); }
.button-ghost { border-color: transparent; background: transparent; color: var(--brand); }
.button-danger { border-color: color-mix(in srgb, var(--danger) 35%, transparent); background: transparent; color: var(--danger); }
.button-small { min-height: 2.25rem; padding: .45rem .7rem; font-size: .9rem; }
.icon-button {
  display: inline-grid;
  width: 2.7rem;
  height: 2.7rem;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--surface);
  color: var(--brand-strong);
  font-size: 1.15rem;
  text-decoration: none;
}
.icon-button:hover { border-color: var(--brand); background: var(--brand-soft); }
.tag {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand-strong);
  padding: .2rem .65rem;
  font-size: .8rem;
  font-weight: 750;
}
.count-badge {
  display: inline-grid;
  min-width: 1.4rem;
  height: 1.4rem;
  place-items: center;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--text);
  padding-inline: .25rem;
  font-size: .75rem;
  font-weight: 800;
}
.card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}
.park-card { display: flex; min-width: 0; flex-direction: column; overflow: hidden; }
.park-card-media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: var(--brand-soft); }
.park-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.park-card:hover .park-card-media img { transform: scale(1.025); }
.image-fallback {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  background:
    linear-gradient(140deg, transparent 58%, color-mix(in srgb, var(--brand) 18%, transparent) 58%),
    var(--brand-soft);
  color: var(--brand);
  font-family: var(--font-display);
  font-size: 1.1rem;
}
.favorite-button { position: absolute; top: .7rem; right: .7rem; box-shadow: var(--shadow-sm); }
.favorite-button[aria-pressed="true"] { border-color: var(--accent); background: var(--accent-soft); color: var(--accent); }
.park-card-body { display: flex; flex: 1; flex-direction: column; gap: .75rem; padding: 1.15rem; }
.park-card-body h3 { font-size: 1.35rem; }
.park-card-body p { color: var(--text-muted); }
.park-card-actions { display: flex; align-items: center; justify-content: space-between; gap: .75rem; margin-top: auto; padding-top: .25rem; }
.state-line { color: var(--text-muted); font-size: .9rem; font-weight: 650; }
.form-field { display: grid; gap: .35rem; }
.form-error { color: var(--danger); font-weight: 700; }
.filter-panel { padding: var(--space-4); }
.filter-grid { display: grid; gap: var(--space-4); }
.filter-actions { display: flex; flex-wrap: wrap; align-items: end; gap: .65rem; }
.status-panel {
  display: grid;
  min-height: 14rem;
  place-items: center;
  border: 1px dashed var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  background: var(--surface);
  text-align: center;
}
.status-panel > div { display: grid; justify-items: center; gap: .7rem; }
.status-icon { color: var(--accent); font-size: 2.3rem; line-height: 1; }
.skeleton {
  min-height: 22rem;
  overflow: hidden;
  background: linear-gradient(100deg, var(--surface) 25%, var(--bg-soft) 43%, var(--surface) 62%);
  background-size: 400% 100%;
  animation: shimmer 1.45s infinite;
}
.notice {
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-sm);
  background: var(--accent-soft);
  padding: 1rem;
}
.notice-danger { border-color: var(--danger); background: color-mix(in srgb, var(--danger) 10%, var(--surface)); }
.definition-list { display: grid; gap: 1rem; }
.definition-list > div { display: grid; gap: .2rem; }
.definition-list dt { color: var(--text-muted); font-size: .82rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.definition-list dd { font-weight: 650; }
.chip-list { display: flex; flex-wrap: wrap; gap: .5rem; list-style: none; }
.details-list { display: grid; gap: .75rem; }
.details-list details { border-bottom: 1px solid var(--border); padding-bottom: .75rem; }
.details-list summary { color: var(--brand-strong); font-weight: 800; cursor: pointer; }
.details-list details p { margin-top: .55rem; color: var(--text-muted); }
.weather-current { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 1rem; }
.weather-icon { font-size: 2.6rem; }
.weather-temp { font-family: var(--font-display); font-size: 2.5rem; line-height: 1; }
.forecast-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(6rem, 1fr)); gap: .6rem; margin-top: 1rem; list-style: none; }
.forecast-list li { border-radius: var(--radius-sm); background: var(--bg-soft); padding: .75rem .5rem; text-align: center; }
.map { height: min(28rem, 60vh); min-height: 20rem; border-radius: var(--radius-md); background: var(--brand-soft); }
.checklist { display: grid; gap: .5rem; margin-block: .75rem; list-style: none; }
.checklist-item { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: .6rem; }
.checklist-item input { width: 1.15rem; height: 1.15rem; }
.checklist-item.is-complete span { color: var(--text-muted); text-decoration: line-through; }
.architecture { display: grid; gap: .65rem; margin-top: 1.5rem; }
.architecture-box { border: 1px solid var(--border); border-radius: var(--radius-sm); background: var(--surface); padding: .85rem; text-align: center; }
.architecture-arrow { color: var(--accent); font-size: 1.3rem; font-weight: 800; text-align: center; }
@keyframes shimmer { to { background-position: -100% 0; } }
