/* Base */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  background: #ffffff;
  color: #111827;
}

a {
  color: inherit;
}

/* Components */
.section-kicker::before {
  content: "";
  display: block;
  width: 96px;
  height: 4px;
  border-radius: 4px;
  margin-bottom: 12px;
  background: linear-gradient(90deg, #469970, #5F5693, #ae1f27);
}

.section {
  padding: 64px 0;
}

.section-muted {
  background: #f9fafb;
}

.container {
  max-width: 64rem;
  margin: 0 auto;
  padding: 0 16px;
}

.events-grid {
  display: grid;
  gap: 32px;
}

.events-text .body-text {
  font-size: 14px;
  color: #374151;
  line-height: 1.6;
}

.events-embed .iframe-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
}

.h2 {
  font-size: 1.875rem;
  margin: 0 0 4px 0;
  font-weight: 600;
}

.eyebrow {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6b7280;
}

.link {
  color: #ae1f27;
  font-weight: 600;
  text-decoration: none;
}

.link:hover {
  text-decoration: underline;
}

.stack > * + * {
  margin-top: 24px;
}

.stack.tight > * + * {
  margin-top: 12px;
}

.cards-grid {
  display: grid;
  gap: 24px;
}

.card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}

.h3 {
  margin: 0 0 12px 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: #111827;
}

.h4 {
  margin: 0 0 8px 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
}

.text-purple {
  color: #5f5693;
}

.text-green {
  color: #469970;
}

.text-red {
  color: #ae1f27;
}

.list {
  padding-left: 20px;
  margin: 0;
}

.list > li + li {
  margin-top: 8px;
}

.list.tight > li + li {
  margin-top: 6px;
}

.two-cols {
  display: grid;
  gap: 24px;
}

.v-center {
  display: flex;
  align-items: center;
}

.hidden {
  display: none !important;
}

.archive-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  font-size: 14px;
  color: #6b7280;
}

.archive-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.archive-controls label {
  font-size: 14px;
  color: #4b5563;
}

.archive-controls select {
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 14px;
  color: #1f2937;
  background: #ffffff;
  outline: none;
}

.archive-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.archive-card {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  border: 1px solid #f3f4f6;
  border-radius: 12px;
  padding: 12px 14px;
  transition: background-color 0.2s ease, border-color 0.2s ease;
  text-decoration: none;
}

.archive-card:hover {
  background: #f9fafb;
  border-color: #e5e7eb;
}

.archive-card .date {
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #6b7280;
  margin: 0 0 2px 0;
}

.archive-card .title {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: #ae1f27;
}

.archive-card .year {
  font-size: 12px;
  color: #9ca3af;
}

.archive-empty {
  font-size: 14px;
  color: #6b7280;
  margin: 0;
}

.newsletter-note {
  margin-top: 16px;
  padding: 12px 14px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
}

/* Footer */
.site-footer {
  background: #ffffff;
}

.footer-gradient {
  height: 1px;
  max-width: 1200px;
  margin: 0 auto 24px auto;
  background-image: linear-gradient(to right, #469970, #5f5693, #ae1f27);
}

.footer-inner {
  max-width: 64rem;
  margin: 0 auto;
  padding: 0 16px 40px 16px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}

.footer-social-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #4b5563;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-social-item:hover {
  color: #111827;
}

.icon-sm {
  width: 20px;
  height: 20px;
}

.footer-address {
  text-align: center;
  font-size: 14px;
  color: #374151;
  line-height: 1.6;
}

.footer-title {
  margin: 0 0 4px 0;
  font-weight: 600;
  color: #111827;
}

.footer-logo {
  padding-bottom: 16px;
}

.logo-footer {
  height: 32px;
}

@media (min-width: 640px) {
  .footer-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (min-width: 640px) {
  .events-grid {
    grid-template-columns: 3fr 9fr;
    align-items: start;
  }

  .cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .two-cols {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
  }
}

/* Header + nav */
.site-header {
  border-bottom: 1px solid #e5e7eb;
  background: #ffffff;
}

.header-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: #111827;
}

.brand-logo {
  width: 48px;
  height: 48px;
}

.brand-kicker {
  margin: 0;
  font-size: 14px;
  color: #4b5563;
}

.brand-title {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #111827;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 8px 4px;
  display: flex;
  gap: 12px;
  overflow-x: auto;
  white-space: nowrap;
}

.nav-link {
  display: block;
  padding: 10px 18px;
  border-radius: 999px;
  background: #f3f4f6;
  color: #1f2937;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.nav-link:hover {
  background: #d1d5db;
  color: #0f172a;
}

@media (min-width: 640px) {
  .header-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .nav-list {
    overflow: visible;
    flex-wrap: wrap;
    padding: 0;
  }
}
