* { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #e3e3e3;
  --card: #f5f5f5;
  --card-border: #d5d5d5;
  --text: #424242;
  --text-strong: #252525;
  --muted: #5f5f5f;
  --accent: #B21F1F;
  --accent-dark: #861717;
  --accent-soft: #fff4f4;
  --accent-hover: #FFE135;
  --button-radius: 14px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: radial-gradient(circle at top, #f2f2f2 0, var(--bg) 42rem);
  color: var(--text);
  min-height: 100vh;
}

img { display: block; max-width: 100%; height: auto; }
a { color: var(--accent-dark); font-weight: 700; }

.page {
  width: min(100%, 980px);
  margin: 0 auto;
  padding: clamp(1rem, 3vw, 3.5rem) 1rem;
}

.card {
  width: 100%;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 22px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, .08);
  margin: 0 auto 1.25rem;
  padding: clamp(1.35rem, 4vw, 3.25rem);
}

.hero-card { overflow: hidden; text-align: center; }
.hero-banner {
  background: linear-gradient(135deg, rgba(178, 31, 31, .12), rgba(255, 225, 53, .24));
  border: 1px solid rgba(178, 31, 31, .18);
  border-radius: 18px;
  box-shadow: 0 16px 38px rgba(0, 0, 0, .12);
  margin: 0 auto 1.45rem;
  overflow: hidden;
}
.hero-banner img {
  aspect-ratio: 1773 / 656;
  object-fit: cover;
  width: 100%;
}
.logo { width: min(58vw, 250px); margin: 0 auto 1.25rem; }

a.back-link { display: inline-block; margin-bottom: 1.25rem; text-decoration: none; }
.eyebrow { color: var(--accent); font-size: .82rem; font-weight: 800; letter-spacing: .12em; margin-bottom: .45rem; text-transform: uppercase; }
h1, h2 { color: var(--text-strong); line-height: 1.08; }
h1 { font-size: clamp(2rem, 7vw, 4rem); margin-bottom: .7rem; }
h2 { font-size: clamp(1.55rem, 4vw, 2.35rem); margin-bottom: 1rem; }
.official-name { color: var(--accent-dark); font-size: clamp(1.15rem, 3vw, 1.7rem); font-weight: 800; letter-spacing: .04em; margin-bottom: 1rem; }
.hero-copy, .content-card p, .verification-statement { font-size: clamp(1rem, 2.1vw, 1.2rem); line-height: 1.7; }
.verification-statement { background: var(--accent-soft); border-left: 5px solid var(--accent); border-radius: 12px; margin: 1rem 0; padding: 1rem; }

.button {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  color: #fff;
  background: var(--accent);
  border: 2px solid var(--accent);
  border-radius: var(--button-radius);
  font: inherit;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .04em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  padding: .82rem 1.05rem;
  transition: background-color .25s ease, border-color .25s ease, color .25s ease, transform .25s ease;
}
.button:hover, .button:focus-visible { color: var(--accent-dark); background: var(--accent-hover); border-color: var(--accent-hover); transform: translateY(-1px); }
.button-secondary { color: var(--accent-dark); background: transparent; }
.quick-links, .contact-actions { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; margin-top: 1.4rem; }

.activity-list { display: grid; gap: .85rem; list-style: none; }
.activity-list li { background: #fff; border: 1px solid rgba(178, 31, 31, .16); border-radius: 14px; line-height: 1.55; padding: 1rem 1rem 1rem 2.6rem; position: relative; }
.activity-list li::before { content: '✓'; color: var(--accent); font-weight: 800; left: 1rem; position: absolute; }

.info-grid { display: grid; gap: .85rem; margin-top: 1.25rem; text-align: left; }
.info-grid div { background: #fff; border: 1px solid rgba(0,0,0,.08); border-radius: 14px; padding: 1rem; }
.info-grid dt { color: var(--muted); font-size: .82rem; font-weight: 800; letter-spacing: .06em; margin-bottom: .35rem; text-transform: uppercase; }
.info-grid dd { color: var(--text-strong); font-size: 1.05rem; font-weight: 700; overflow-wrap: anywhere; }

.social { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .65rem; margin-top: 1.4rem; }
.social-link { min-height: 2.55rem; font-size: .82rem; padding: .65rem; }
.site-footer { color: var(--muted); font-size: clamp(.86rem, 2vw, 1rem); line-height: 1.6; padding: 1rem .5rem 0; text-align: center; }
.smallprint { font-size: .88rem; margin-top: .5rem; }

@media (max-width: 700px) {
  .card { border-radius: 18px; }
  .quick-links, .contact-actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .social { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 430px) { .social { grid-template-columns: 1fr; } }

.content-card p + p { margin-top: 1rem; }
h3 { color: var(--text-strong); font-size: 1.15rem; line-height: 1.25; margin-bottom: .65rem; }
.project-grid { display: grid; gap: 1rem; margin-top: 1.25rem; }
.project-card { background: #fff; border: 1px solid rgba(178, 31, 31, .16); border-radius: 16px; padding: 1.1rem; }
.project-card ul { display: grid; gap: .65rem; line-height: 1.55; margin: .9rem 0 0 1.25rem; }
.project-card p { font-size: 1rem; }

@media (min-width: 760px) {
  .project-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .project-card:nth-child(4), .project-card:nth-child(5) { grid-column: span 2; }
}
