/* Youth For Christ website stylesheet */
:root {
  --bg: #f8f4eb;
  --surface: #ffffff;
  --text: #1b1a18;
  --muted: #5d5c56;
  --accent: #d99927;
  --accent-2: #f28c2f;
  --border: #e7e2d8;
  --shadow: 0 18px 40px rgba(34, 28, 18, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--accent);
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 244, 235, 0.96);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  font-weight: 700;
  letter-spacing: -0.04em;
  font-size: 1.2rem;
}

.brand span {
  color: var(--accent);
}

.brand img.brand-img {
  height: 44px;
  width: auto;
  vertical-align: middle;
  margin-right: 0.6rem;
  display: inline-block;
}

.brand span.brand-text {
  vertical-align: middle;
  font-weight: 700;
}

.menu {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  align-items: center;
}

.menu a {
  color: var(--text);
  font-weight: 500;
}

.menu a:hover,
.menu a.active-link {
  color: var(--accent);
}

.menu a.button,
.menu a.button:hover,
.menu a.button.active-link {
  color: #fff;
}

.menu a.active-link {
  position: relative;
}

.menu a.button.active-link::after,
.menu a.active-link::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.35rem;
  height: 2px;
  background: var(--accent);
  border-radius: 999px;
}

.menu a.button.active-link::after {
  height: 0;
  background: transparent;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 0.75rem;
  border-radius: 0.85rem;
}

.header-actions {
  display: flex;
  gap: 0.75rem;
}

.cta-button,
.button {
  border: none;
  border-radius: 999px;
  padding: 0.95rem 1.5rem;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.cta-button:hover,
.button:hover {
  transform: translateY(-1px);
  background: var(--accent-2);
}

.hero {
  position: relative;
  min-height: 560px;
  padding: 4rem 2rem;
  border-radius: 2rem;
  overflow: hidden;
  background: #1c160f;
  display: flex;
  align-items: center;
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(18, 14, 10, 0.68), rgba(18, 14, 10, 0.42));
  z-index: 1;
}

.hero > .hero-content,
.hero > .hero-grid,
.hero > .hero-copy,
.hero > .hero-panel,
.hero > .section-title,
.hero > h1,
.hero > p,
.hero > .guide-actions,
.hero > .guide-subtitle {
  position: relative;
  z-index: 2;
}

.hero-content,
.hero-content *,
.hero-grid,
.hero-grid *,
.guide-header,
.guide-header * {
  color: #fff;
}

.hero-image,
.hero-slider .hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.hero-slider .hero-image-1 {
  animation: hero-fade-1 12s infinite;
}

.hero-slider .hero-image-2 {
  opacity: 0;
  animation: hero-fade-2 12s infinite;
}

@keyframes hero-fade-1 {
  0%, 45% { opacity: 1; }
  50%, 100% { opacity: 0; }
}

@keyframes hero-fade-2 {
  0%, 45% { opacity: 0; }
  50%, 85% { opacity: 1; }
  100% { opacity: 0; }
}

.page-home .hero .hero-copy h1,
.page-home .hero .hero-copy p,
.page-about .hero h1,
.page-programs .hero h1,
.page-contact .hero h1,
.page-donate .hero h1,
.page-events .hero h1,
.page-get-involved .hero h1,
.page-resources .hero h1,
.page-stories .hero h1,
.page-about .hero .section-title,
.page-programs .hero .section-title,
.page-contact .hero .section-title,
.page-donate .hero .section-title,
.page-events .hero .section-title,
.page-get-involved .hero .section-title,
.page-resources .hero .section-title,
.page-stories .hero .section-title {
  color: #fff;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.3);
}

@keyframes hero-slide-1 {
  0%, 45% {
    opacity: 1;
  }
  50%, 100% {
    opacity: 0;
  }
}

@keyframes hero-slide-2 {
  0%, 45% {
    opacity: 0;
  }
  50%, 85% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.page-home .hero .hero-copy h1,
.page-home .hero .hero-copy p,
.page-about .hero h1,
.page-programs .hero h1,
.page-contact .hero h1,
.page-donate .hero h1,
.page-events .hero h1,
.page-get-involved .hero h1,
.page-resources .hero h1,
.page-stories .hero h1,
.page-about .hero .section-title,
.page-programs .hero .section-title,
.page-contact .hero .section-title,
.page-donate .hero .section-title,
.page-events .hero .section-title,
.page-get-involved .hero .section-title,
.page-resources .hero .section-title,
.page-stories .hero .section-title {
  color: #fff;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.3);
}

.page-home .hero .hero-panel {
  background: rgba(22, 17, 12, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 40px rgba(18, 12, 8, 0.2);
  color: #fff;
}

.page-home .hero .hero-panel .stat-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.page-home .hero .hero-panel .stat-card p,
.page-home .hero .hero-panel .stat-card strong {
  color: #fff;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(2.8rem, 4vw, 4.4rem);
  line-height: 0.98;
}

.hero-copy p {
  margin: 1.5rem 0;
  max-width: 40rem;
  color: #fff;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-panel {
  padding: 2rem;
  border-radius: 2rem;
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,245,228,.9));
  box-shadow: var(--shadow);
}

.hero-panel h2 {
  margin-top: 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.stat-card {
  padding: 1.25rem;
  border-radius: 1.5rem;
  background: #fff;
  border: 1px solid #f1ece4;
  min-width: 0;
}

.stat-card strong {
  display: block;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  line-height: 1.2;
  color: var(--accent);
  word-break: break-word;
}

.stat-card p {
  margin: 0.6rem 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.section {
  padding: 4rem 0;
}

.section h2,
.section h3 {
  margin: 0;
}

.section-title {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.section-title span {
  color: var(--accent);
  font-weight: 700;
}

.card-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.flyer-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.flyer-gallery img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 1rem;
  box-shadow: var(--shadow);
}

.story-intro {
  margin: 0 0 2rem;
  max-width: 68rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.story-list {
  display: grid;
  gap: 1rem;
}

.story-item {
  background: #fff;
  border: 1px solid #eee7dd;
  border-radius: 1.5rem;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.story-trigger,
.story-section-toggle {
  width: 100%;
  border: 0;
  background: none;
  color: var(--text);
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  font: inherit;
  list-style: none;
}

.story-trigger {
  padding: 1.3rem 1.4rem;
  background: linear-gradient(135deg, #fffaf0 0%, #f8f3e8 100%);
  font-weight: 700;
}

.story-trigger::-webkit-details-marker,
.story-section-toggle::-webkit-details-marker {
  display: none;
}

.story-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  background: rgba(217, 153, 39, 0.14);
  color: var(--accent);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.story-title {
  flex: 1;
  font-size: clamp(1rem, 2vw, 1.3rem);
  line-height: 1.4;
}

.story-chevron,
.story-section-icon {
  font-size: 1.8rem;
  line-height: 1;
  color: var(--accent);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.story-item[open] .story-chevron,
.story-section[open] .story-section-icon {
  transform: rotate(45deg);
}

.story-panel {
  padding: 0;
  animation: slideDown 0.35s ease;
}

.story-section {
  border-top: 1px solid #f2ece2;
  overflow: hidden;
}

.story-section-toggle {
  padding: 1rem 1.4rem 0.9rem;
  background: rgba(248, 244, 235, 0.5);
  font-weight: 700;
}

.story-copy {
  padding: 0 1.4rem;
  animation: slideDown 0.35s ease;
}

.story-copy p {
  margin: 0;
  padding: 0 0 1.2rem;
  color: var(--muted);
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.card {
  background: #fff;
  border-radius: 1.75rem;
  box-shadow: var(--shadow);
  border: 1px solid #eee7dd;
  overflow: hidden;
}

.card-visual {
  min-height: 180px;
  background: linear-gradient(135deg, #f7e7d0 0%, #f8f3e8 100%);
  display: grid;
  place-items: center;
  color: var(--text);
  font-weight: 700;
  text-align: center;
  padding: 1rem;
}

.card-content {
  padding: 1.5rem;
}

.card-content h3 {
  margin-top: 0;
}

.card-content p {
  color: var(--muted);
}

.card-content .button {
  margin-top: 1rem;
}

.card-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.card-actions .button {
  margin-top: 0;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.button-secondary {
  background: var(--text);
}

.button-secondary:hover {
  background: var(--muted);
}

.text-link {
  font-weight: 700;
  color: var(--text);
}

.text-link:hover {
  color: var(--accent);
}

.guide-page {
  display: grid;
  gap: 2rem;
  padding-bottom: 4rem;
}

.guide-header {
  min-height: 360px;
  padding: clamp(2rem, 6vw, 4rem);
  align-items: center;
  justify-content: center;
  text-align: center;
}

.guide-header > * {
  width: min(100%, 850px);
}

.guide-header .section-title {
  margin-bottom: 1rem;
}

.guide-header h1 {
  max-width: 52rem;
  margin: 0 auto 0.75rem;
}

.guide-subtitle {
  max-width: 48rem;
  margin: 0.75rem auto;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
}

.guide-header blockquote {
  max-width: 42rem;
  margin: 1.5rem auto;
  padding: 1rem 1.5rem;
  border-left: 4px solid var(--accent-2);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
}

.guide-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.guide-content {
  width: min(100%, 980px);
  margin: 0 auto;
  padding: clamp(1.25rem, 4vw, 3rem);
  background: var(--surface);
  border: 1px solid #eee7dd;
  border-radius: 1.75rem;
  box-shadow: var(--shadow);
  line-height: 1.75;
}

.guide-content h2 {
  margin: 2.75rem 0 0.85rem;
  padding-bottom: 0.45rem;
  border-bottom: 2px solid #f0e5d4;
  line-height: 1.2;
}

.guide-content h2:first-child {
  margin-top: 0;
}

.guide-content h3 {
  margin: 1.75rem 0 0.5rem;
  color: var(--accent);
}

.guide-content strong {
  color: var(--text);
}

.guide-content p {
  margin: 0.65rem 0;
}

.guide-content ul,
.guide-content ol {
  padding-left: 1.4rem;
}

.guide-content li {
  margin: 0.55rem 0;
}

.guide-content blockquote {
  margin: 1.25rem 0;
  padding: 1rem 1.25rem;
  border-left: 4px solid var(--accent);
  background: #fff9ef;
  color: var(--muted);
  font-weight: 700;
}

.guide-table-wrap {
  overflow-x: auto;
  margin: 1rem 0 1.5rem;
}

.guide-content table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
}

.guide-content th,
.guide-content td {
  padding: 0.8rem;
  border: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
}

.guide-content th {
  background: #fff5e4;
}

@media (max-width: 650px) {
  .guide-header {
    min-height: 0;
    padding: 2rem 1.25rem;
  }

  .guide-content {
    border-radius: 1rem;
    padding: 1.25rem;
  }

  .guide-content h2 {
    font-size: 1.45rem;
  }
}

.contact-card {
  display: grid;
  gap: 1.25rem;
}

.contact-card h3 {
  margin: 0;
  color: var(--accent);
}

.contact-card p {
  margin: 0;
  color: var(--muted);
}

.contact-card a {
  color: var(--text);
}

.contact-card a:hover {
  color: var(--accent);
}

.social-links {
  display: grid;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.15rem;
  border-radius: 1.5rem;
  background: #fff;
  border: 1px solid #eee7dd;
  box-shadow: var(--shadow);
  color: var(--text);
}

.social-link:hover {
  background: #fdf6ec;
}

.social-icon {
  width: 1.5rem;
  min-width: 1.5rem;
  height: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.reminder-list {
  margin-top: 1.75rem;
  padding: 1.5rem 1.25rem;
  background: #fff;
  border: 1px solid #f1ebe2;
  border-radius: 1.5rem;
  box-shadow: var(--shadow);
}

.reminder-list p {
  margin: 0 0 0.85rem;
  color: var(--muted);
}

.reminder-list p:last-child {
  margin-bottom: 0;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links a svg {
  width: 1rem;
  height: 1rem;
  color: #e7e2d8;
}

.footer-links a:hover svg {
  color: var(--accent);
}

.quote-block {
  padding: 2rem;
  background: #fff;
  border-radius: 2rem;
  border: 1px solid #f1ebe2;
  box-shadow: var(--shadow);
}

.quote-block p {
  margin: 0;
  font-size: 1.05rem;
}

.quote-strong {
  margin-top: 1rem;
  font-weight: 700;
}

.map-placeholder {
  min-height: 260px;
  border-radius: 2rem;
}

.stack-spacing {
  margin-top: 1.5rem;
}

.quote-strong {
  margin-top: 1rem;
  font-weight: 700;
}

.events-list {
  display: grid;
  gap: 1.5rem;
}

.event-card {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.25fr);
  gap: 1.25rem;
  padding: clamp(1.1rem, 2vw, 1.5rem);
  border-radius: 1.75rem;
  background: #fff;
  border: 1px solid #ede5d9;
  box-shadow: var(--shadow);
  align-items: start;
}

.event-card > div:last-child {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  min-width: 0;
}

.event-meta {
  display: grid;
  gap: 0.7rem;
  align-content: start;
  min-width: 0;
}

.event-meta time {
  display: inline-flex;
  width: fit-content;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: #f7e9cd;
  color: var(--accent);
  font-weight: 700;
  line-height: 1.2;
}

.event-meta strong {
  display: block;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.3;
}

.event-meta span {
  color: var(--muted);
  line-height: 1.5;
}

.event-card h3 {
  margin: 0;
}

.event-card p,
.team-card p,
.resource-card p {
  color: var(--muted);
  margin: 0;
}

.event-card .button {
  align-self: flex-start;
}

.section-split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: start;
}

.form-grid {
  display: grid;
  gap: 1rem;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid #e4ddd2;
  border-radius: 1rem;
  padding: 0.95rem 1rem;
  background: #fff;
}

textarea {
  min-height: 160px;
  resize: vertical;
}

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.footer {
  padding: 3rem 0 2rem;
  background: linear-gradient(135deg, #fcf8ef 0%, #f8f4eb 55%, rgba(217, 153, 39, 0.16) 100%);
  color: var(--text);
  border-top: 3px solid var(--accent);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(242, 140, 47, 0.16), transparent 40%);
  pointer-events: none;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2rem;
  align-items: start;
}

.footer-column,
.footer-nav,
.footer-links {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(217, 153, 39, 0.2);
  border-radius: 1rem;
  padding: 1rem 1.1rem;
  box-shadow: 0 8px 24px rgba(34, 28, 18, 0.04);
}

.footer-nav,
.footer-links {
  display: grid;
  gap: 0.8rem;
  align-content: start;
}

.footer-nav h4,
.footer-links h4 {
  color: var(--text);
  font-weight: 700;
  margin: 0 0 0.2rem;
}

.footer a {
  color: var(--text);
  transition: color 0.2s ease;
  font-weight: 600;
  text-decoration: none;
}

.footer a:hover {
  color: var(--accent);
}

.footer-column {
  display: grid;
  gap: 0.75rem;
}

.footer-column h3,
.footer-column h4 {
  color: var(--text);
  font-weight: 700;
  margin: 0;
}

.footer-column p {
  margin: 0;
  color: var(--text);
  line-height: 1.6;
}

.footer-column strong {
  color: var(--accent);
  font-weight: 700;
}

.footer-column a {
  color: var(--text);
  font-weight: 700;
  display: inline-block;
  padding: 0.15rem 0;
}

.footer-column a:hover {
  color: var(--accent);
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.2rem 0;
  min-height: 1.7rem;
}

.social-link .footer-icon {
  transition: transform 0.2s ease;
  background: none;
  border: none;
  box-shadow: none;
}

.social-link:hover .footer-icon {
  transform: scale(1.08);
}

.tiktok-link .footer-icon {
  color: #000000;
}

.instagram-link .footer-icon {
  color: #E4405F;
}

.facebook-link .footer-icon {
  color: #1877F2;
}

.youtube-link .footer-icon {
  color: #FF0000;
}

.whatsapp-link .footer-icon {
  color: #25D366;
}

.email-link .footer-icon {
  color: var(--accent);
}

.footer-icon {
  width: 1.25rem;
  height: 1.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 0;
  background: transparent;
}

.footer-icon svg {
  width: 100%;
  height: 100%;
  stroke-width: 1.8;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  color: var(--muted);
  font-size: 0.95rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.footer-copyright {
  text-align: center;
}

.floating-whatsapp {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 60;
  border-radius: 2.5rem;
  background: #25d366;
  color: white;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  box-shadow: 0 18px 45px rgba(37, 211, 102, 0.2);
  text-decoration: none;
}

.floating-whatsapp svg {
  width: 1.3rem;
  height: 1.3rem;
}

.floating-email {
  position: fixed;
  right: 1.25rem;
  bottom: 5.5rem;
  z-index: 60;
  border-radius: 2.5rem;
  background: var(--accent);
  color: white;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  box-shadow: 0 18px 45px rgba(217, 153, 39, 0.2);
  text-decoration: none;
}

.floating-email:hover {
  background: var(--accent-2);
  color: white;
}

.floating-email svg {
  width: 1.3rem;
  height: 1.3rem;
}

@media (max-width: 900px) {
  .hero-grid,
  .event-card,
  .section-split,
  .flyer-gallery {
    grid-template-columns: 1fr;
  }

  .stats-grid,
  .hero-panel .stats-grid {
    grid-template-columns: 1fr !important;
  }

  .menu {
    display: none;
    width: 100%;
    flex-direction: column;
    background: rgba(255,255,255,.98);
    padding: 1rem 1rem 1.25rem;
    border-radius: 1.5rem;
    position: absolute;
    top: 100%;
    right: 0;
    box-shadow: var(--shadow);
  }

  .menu.active {
    display: flex;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .header-actions {
    display: none;
  }
}

@media (max-width: 650px) {
  .hero {
    padding: 2.5rem 0 1rem;
  }

  .section {
    padding: 2.5rem 0;
  }

  .hero-copy h1 {
    font-size: 2.4rem;
  }

  .hero-panel {
    padding: 1.25rem;
  }

  .stats-grid,
  .hero-panel .stats-grid {
    grid-template-columns: 1fr !important;
    gap: 0.85rem;
  }

  .stat-card {
    padding: 1rem;
  }

  .event-card {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1rem;
    border-radius: 1.25rem;
  }

  .event-meta time {
    width: auto;
  }

  .event-card .button {
    width: 100%;
    text-align: center;
    justify-self: stretch;
    align-self: stretch;
  }

  .card-content {
    padding: 1.25rem;
  }

  .footer-top {
    gap: 1rem;
  }

  .footer-column,
  .footer-nav,
  .footer-links {
    padding: 1rem;
  }

  .footer-nav,
  .footer-links {
    gap: 0.7rem;
  }
}
