:root {
  --bg: #f6f5f2;
  --surface: #ffffff;
  --border: #ded8cf;
  --border-soft: #ebe5dc;
  --text: #151515;
  --muted: #69645d;
  --accent: #b86b2a;
  --accent-soft: #fff3df;
  --gold: #d6a640;
  --gold-soft: #fff8e8;
  --shadow: 0 10px 28px rgba(44, 37, 29, 0.06);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}

a {
  color: var(--accent);
}

.container {
  width: min(980px, 100% - 2rem);
  margin: 0 auto;
}

.site-header {
  border-bottom: 1px solid var(--border-soft);
  background: rgba(255, 255, 255, 0.92);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
}

.brand {
  color: var(--text);
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.site-nav a {
  text-decoration: none;
  color: var(--text);
  font-size: 0.95rem;
  padding: 0.45rem 0.7rem;
  border-radius: 8px;
  transition:
    background 150ms ease,
    color 150ms ease;
}

.site-nav a:hover {
  background: var(--gold-soft);
  color: #6f4518;
}

.site-nav a[aria-current="page"] {
  background: var(--accent-soft);
  color: #744417;
}

.page {
  padding: 1.7rem 0 3.5rem;
}

.panel {
  margin-top: 1.15rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.15rem;
  box-shadow: var(--shadow);
  transition:
    border-color 150ms ease,
    box-shadow 150ms ease,
    transform 150ms ease;
}

.panel:hover {
  border-color: #d9c5a7;
  box-shadow: 0 14px 34px rgba(44, 37, 29, 0.08);
}

.hero-panel {
  position: relative;
  padding: 1.45rem;
  border-left: 4px solid var(--accent);
}

.panel.hero-panel h1 {
  max-width: 720px;
  font-size: clamp(1.8rem, 3vw, 2.45rem);
  font-weight: 750;
  line-height: 1.12;
  margin-bottom: 0.7rem;
}

.panel.hero-panel p {
  max-width: 720px;
  font-size: 1.03rem;
}

.accent-panel {
  border-top: 3px solid var(--gold);
}

.panel h1,
.panel h2 {
  margin: 0 0 0.75rem;
}

.panel h1 {
  font-size: 1.45rem;
}

.panel h2 {
  font-size: 1.1rem;
}

.panel p,
.panel li {
  line-height: 1.55;
}

.panel ul {
  margin: 0;
  padding-left: 1.1rem;
}

.panel .badge + h2 {
  margin-top: 0.75rem;
}

.status,
.muted {
  color: var(--muted);
  font-size: 0.9rem;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.4rem 0 1rem;
}

.badge {
  display: inline-block;
  border: 1px solid #ddc28b;
  border-radius: 999px;
  background: var(--gold-soft);
  color: #744417;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.24rem 0.55rem;
  text-transform: uppercase;
}

.construction-banner {
  border-color: #ddc28b;
  border-left: 4px solid var(--gold);
  background: var(--gold-soft);
}

.construction-banner h1 {
  margin-top: 0.6rem;
}

.construction-banner p {
  max-width: 680px;
}

.status-pill {
  display: inline-block;
  border: 1px solid #ddc28b;
  border-radius: 999px;
  background: #fff3cf;
  color: #744417;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.25rem 0.55rem;
  text-transform: uppercase;
}

.feature-list {
  margin-bottom: 0.9rem;
}

.donate-widget {
  display: flex;
  justify-content: center;
  margin: 1.45rem 0 0.65rem;
  padding: 1rem;
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  background: #fffaf2;
}

.site-footer {
  border-top: 1px solid var(--border-soft);
  background: #fbfaf8;
}

.site-footer .container {
  padding: 1.05rem 0;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  color: #744417;
  border: 1px solid #ddc28b;
  border-radius: 999px;
  background: var(--gold-soft);
  transition:
    background 150ms ease,
    border-color 150ms ease,
    color 150ms ease;
}

.footer-social:hover {
  color: #151515;
  border-color: var(--gold);
  background: var(--accent-soft);
}

.footer-social svg {
  width: 1.1rem;
  height: 1.1rem;
  fill: currentColor;
}

.footer-note {
  color: var(--muted);
  font-size: 0.88rem;
}

@media (max-width: 700px) {
  .nav-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-panel {
    padding: 1.2rem;
  }
}
