:root {
  color-scheme: light;
  --gold: #ffd700;
  --dark-gold: #d4a000;
  --ink: #111827;
  --muted: #4b5563;
  --line: #e5e7eb;
  --surface: #ffffff;
  --background: #f8fafc;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--background);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

a { color: #8a6800; }

.topbar {
  border-bottom: 1px solid rgba(17, 24, 39, 0.1);
  background: var(--gold);
}

.topbar-inner,
.content,
.footer-inner {
  width: min(940px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar-inner {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #111;
  font-size: 21px;
  font-weight: 900;
  text-decoration: none;
}

.brand img { width: 42px; height: 42px; border-radius: 10px; }
.home-link { color: #111; font-weight: 750; text-decoration: none; }

.content { padding: 54px 0 64px; }

.hero {
  margin-bottom: 20px;
  padding: clamp(24px, 5vw, 42px);
  border: 1px solid #e6c000;
  border-radius: 24px;
  background: linear-gradient(135deg, #ffd700, #f0bf00);
}

.eyebrow {
  margin: 0 0 5px;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 { margin: 0; font-size: clamp(30px, 6vw, 48px); line-height: 1.12; }
.lead { max-width: 720px; margin: 12px 0 0; font-size: 17px; }

.card {
  margin-top: 14px;
  padding: clamp(20px, 4vw, 30px);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.035);
}

h2 { margin: 0 0 8px; font-size: 21px; line-height: 1.3; }
h3 { margin: 20px 0 4px; font-size: 17px; }
p { margin: 7px 0; color: var(--muted); }
ul { margin: 8px 0 0; padding-left: 22px; color: var(--muted); }
.updated { margin-top: 22px; color: #6b7280; font-size: 13px; }

.notice {
  border-left: 4px solid var(--dark-gold);
  background: #fffbed;
}

.social-support {
  display: grid;
  grid-template-columns: 132px 1fr;
  align-items: center;
  gap: 22px;
}

.social-support img {
  width: 132px;
  height: 132px;
  border-radius: 18px;
  object-fit: cover;
}

.footer { padding: 28px 0; background: #111827; color: #d1d5db; }
.footer-inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px 24px; }
.footer a { color: var(--gold); }

@media (max-width: 560px) {
  .topbar-inner { min-height: 64px; }
  .home-link { font-size: 13px; }
  .content { padding-top: 28px; }
  .social-support { grid-template-columns: 84px 1fr; gap: 14px; }
  .social-support img { width: 84px; height: 84px; border-radius: 14px; }
}
