:root {
  color-scheme: light;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Public Sans", sans-serif;
  background-color: #f9f9f9;
  color: #1a1c1c;
}

.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
}

.btn-primary {
  background: linear-gradient(135deg, #A52A2A 0%, #840f16 100%);
}

.btn-secondary {
  background-color: #e4e2e2;
  color: #1b1c1c;
}

.nav-link {
  font-family: "Public Sans", sans-serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #1a1c1c;
  opacity: 0.8;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: #A52A2A;
  opacity: 1;
}

.nav-link--active {
  border-bottom: 2px solid #A52A2A;
  color: #A52A2A;
  opacity: 1;
  padding-bottom: 0.25rem;
}

.section-kicker {
  display: block;
  margin-bottom: 0.5rem;
  color: #A52A2A;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #A52A2A;
  font-weight: 700;
}

.section-link:hover,
.section-link:focus-visible {
  text-decoration: underline;
}

.stat-card {
  border-radius: 0.5rem;
  background: #fff;
  padding: 2rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}

.stat-card--accent {
  border-left: 4px solid #A52A2A;
}

.stat-icon {
  margin-bottom: 1rem;
  color: #A52A2A;
  font-size: 2.25rem;
}

.stat-value {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
  font-weight: 700;
}

.stat-label {
  color: #5e5e5e;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.news-badge {
  width: fit-content;
  margin-bottom: 1rem;
  border-radius: 0.125rem;
  background: #e8e8e8;
  color: #5e5e5e;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.news-badge--urgent {
  background: #006173;
  color: #92daee;
}

.document-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  border-radius: 0.375rem;
  background: #fff;
  padding: 1.5rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.document-card:hover,
.document-card:focus-visible {
  transform: translateX(0.5rem);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.document-card__main {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.document-card__icon {
  border-radius: 0.375rem;
  background: #ffdad7;
  color: #A52A2A;
  padding: 0.75rem;
}

.document-card__title {
  font-size: 1.125rem;
  font-weight: 700;
}

.document-card__meta {
  color: #5e5e5e;
  font-size: 0.875rem;
}

.document-card__action {
  color: #A52A2A;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.document-card:hover .document-card__action,
.document-card:focus-visible .document-card__action {
  opacity: 1;
}

.contact-item {
  display: flex;
  gap: 1.5rem;
}

.contact-item__icon {
  color: #A52A2A;
}

.contact-item__label {
  margin-bottom: 0.25rem;
  color: #5e5e5e;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-item__value {
  font-size: 1.125rem;
}

.contact-item__value a {
  transition: color 0.2s ease;
}

.contact-item__value a:hover,
.contact-item__value a:focus-visible {
  color: #A52A2A;
}

.map-link {
  display: flex;
  height: 12rem;
  width: 100%;
  align-items: center;
  justify-content: center;
  color: #5e5e5e;
  transition: color 0.2s ease;
}

.map-link:hover,
.map-link:focus-visible {
  color: #A52A2A;
}

.footer-link {
  color: #1a1c1c;
  font-family: "Public Sans", sans-serif;
  font-size: 0.875rem;
  letter-spacing: 0.12em;
  opacity: 0.6;
  text-transform: uppercase;
  transition: opacity 0.2s ease;
}

.footer-link:hover,
.footer-link:focus-visible {
  opacity: 1;
}
