/* ============================================================
   Western Mass Bitcoin — Main Stylesheet
   ============================================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* ============================================================
   CSS Reset
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul, ol {
  list-style: none;
}

/* ============================================================
   CSS Variables
   ============================================================ */
:root {
  --orange: #F7931A;
  --orange-dark: #d4780f;
  --orange-light: #ffaa44;
  --bg: #0d0d0d;
  --bg2: #111111;
  --bg3: #161616;
  --bg4: #1a1a1a;
  --border: #2a2a2a;
  --text: #ffffff;
  --text-muted: #aaaaaa;
  --text-dim: #666666;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius: 8px;
  --radius-lg: 16px;
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-orange: 0 4px 24px rgba(247,147,26,0.15);
  --transition: 0.2s ease;
  --max-width: 1200px;
  --header-height: 72px;
}

/* ============================================================
   Base Styles
   ============================================================ */
body {
  font-family: var(--font);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.5rem); }

p {
  color: var(--text-muted);
  line-height: 1.7;
}

strong {
  color: var(--text);
  font-weight: 600;
}

a:hover {
  color: var(--orange);
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad {
  padding: 80px 0;
}

.section-pad-sm {
  padding: 48px 0;
}

/* ============================================================
   Header / Navigation
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(13, 13, 13, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: var(--header-height);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.nav-logo a {
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 48px;
  width: auto;
  background: #000;
  border-radius: 8px;
  padding: 4px 8px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
}

.nav-links a:hover {
  color: var(--orange);
  background: rgba(247,147,26,0.08);
}

.nav-links .btn-support {
  color: var(--orange);
  border: 1px solid var(--orange);
  padding: 8px 16px;
  border-radius: var(--radius);
  font-weight: 600;
  transition: background var(--transition), color var(--transition);
}

.nav-links .btn-support:hover {
  background: var(--orange);
  color: #000;
}

/* Hamburger Menu */
.nav-toggle {
  display: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  cursor: pointer;
  gap: 5px;
  border-radius: var(--radius);
  transition: background var(--transition);
}

.hamburger:hover {
  background: rgba(255,255,255,0.05);
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ============================================================
   Hero Section
   ============================================================ */
.hero {
  position: relative;
  background: var(--bg);
  overflow: hidden;
  padding: 100px 0 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/HO-Group3.png');
  background-size: cover;
  background-position: center;
  opacity: 0.12;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-logo {
  margin: 0 auto 32px;
  width: 620px;
  max-width: 100%;
  border-radius: 16px;
  overflow: hidden;
}

.hero h1 {
  margin-bottom: 20px;
  background: linear-gradient(135deg, #fff 60%, var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-tagline {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  text-decoration: none;
}

.btn-orange {
  background: var(--orange);
  color: #000;
}

.btn-orange:hover {
  background: var(--orange-light);
  color: #000;
  transform: translateY(-1px);
  box-shadow: var(--shadow-orange);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-1px);
}

.btn-ghost {
  background: rgba(255,255,255,0.05);
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  color: var(--text);
}

/* ============================================================
   Section Styles
   ============================================================ */
.section-dark {
  background: var(--bg);
}

.section-darker {
  background: var(--bg2);
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header h2 {
  margin-bottom: 12px;
}

.section-header p {
  max-width: 600px;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

/* ============================================================
   About Section
   ============================================================ */
.about-content {
  text-align: left;
  max-width: 680px;
  margin: 0 0 48px;
}

.about-content h2 {
  margin-bottom: 20px;
}

.about-content p {
  margin-bottom: 16px;
  color: var(--text-muted);
  font-size: 1.05rem;
}

  border: 1px solid var(--border);
}


/* ============================================================
   Events Section
   ============================================================ */
.events-section-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
}

.events-section-header img {
  height: 48px;
  width: auto;
}

.events-section-header h3 {
  font-size: 1.4rem;
  color: var(--text);
}

.events-grid {
  display: grid;
  gap: 16px;
  margin-top: 16px;
}

.event-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 24px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  color: inherit;
}

.event-card:hover {
  border-color: var(--orange);
  transform: translateY(-2px);
  box-shadow: var(--shadow-orange);
  color: inherit;
}

.event-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--orange);
  min-width: 48px;
  text-align: center;
}

.event-number span {
  display: block;
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.event-info {
  flex: 1;
}

.event-date {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}

.event-location {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.event-arrow {
  color: var(--orange);
  font-size: 1.2rem;
  opacity: 0;
  transition: opacity var(--transition), transform var(--transition);
}

.event-card:hover .event-arrow {
  opacity: 1;
  transform: translateX(4px);
}

.event-card.past-event {
  opacity: 0.75;
}

.event-card.past-event:hover {
  opacity: 1;
}

.past-events-wrapper {
  margin-top: 64px;
}

/* ============================================================
   Event Badge
   ============================================================ */
.badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
}

.badge-upcoming {
  background: rgba(247,147,26,0.15);
  color: var(--orange);
  border: 1px solid rgba(247,147,26,0.3);
}

.badge-past {
  background: rgba(255,255,255,0.06);
  color: var(--text-muted);
  border: 1px solid var(--border);
}

/* ============================================================
   Individual Event Page
   ============================================================ */
.page-hero {
  background: var(--bg2);
  padding: 72px 0 56px;
  border-bottom: 1px solid var(--border);
}

.page-hero .badge {
  margin-bottom: 16px;
}

.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 16px;
}

.event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
}

.event-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.event-meta-item .icon {
  color: var(--orange);
  font-size: 1rem;
}

.event-content {
  padding: 64px 0;
}

.event-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: start;
}

.event-main h2 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  margin-top: 40px;
  color: var(--orange);
}

.event-main h2:first-child {
  margin-top: 0;
}

.event-main p {
  margin-bottom: 16px;
}

.event-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 24px);
}

.event-sidebar-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.event-sidebar-card h3 {
  font-size: 1rem;
  margin-bottom: 20px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
}

.sidebar-detail {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.sidebar-detail .icon {
  color: var(--orange);
  margin-top: 2px;
  flex-shrink: 0;
}

.sidebar-detail-text strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text);
  margin-bottom: 2px;
}

.sidebar-detail-text span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.rsvp-btn {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 24px;
}

.rsvp-btn img {
  height: 48px;
  width: auto;
  margin: 0 auto;
  transition: transform var(--transition), filter var(--transition);
}

.rsvp-btn:hover img {
  transform: scale(1.04);
  filter: brightness(1.1);
}

.slides-btn {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 12px;
}

.slides-btn img {
  height: 48px;
  width: auto;
  margin: 0 auto;
  transition: transform var(--transition), filter var(--transition);
}

.slides-btn:hover img {
  transform: scale(1.04);
  filter: brightness(1.1);
}

.passed-notice {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-top: 16px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 32px;
  transition: color var(--transition);
}

.back-link:hover {
  color: var(--orange);
}

/* ============================================================
   Resources Page
   ============================================================ */
.resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.resource-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  transition: border-color var(--transition), transform var(--transition);
  display: flex;
  align-items: center;
  gap: 12px;
}

.resource-card:hover {
  border-color: var(--orange);
  transform: translateY(-2px);
  color: inherit;
}

.resource-card .resource-icon {
  width: 36px;
  height: 36px;
  background: rgba(247,147,26,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}

.resource-card .resource-text strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 2px;
}

.resource-card .resource-text span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.office-hours-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}

/* Past Meetups List */
.past-meetups-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 32px;
}

.past-meetups-list li a {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 12px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg2);
  color: var(--text);
  font-size: 0.95rem;
  transition: border-color var(--transition), background var(--transition);
}

.past-meetups-list li a:hover {
  border-color: var(--orange);
  background: var(--bg3);
  color: var(--orange);
}

.meetup-num {
  font-weight: 700;
  color: var(--orange);
  min-width: 36px;
  flex-shrink: 0;
}

.past-meetups-list li a:hover .meetup-num {
  color: var(--orange-light);
}

.nostr-apps {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.nostr-app-tag {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 4px 14px;
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: border-color var(--transition), color var(--transition);
}

.nostr-app-tag:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.s12-qrs {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.s12-qr {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.s12-qr img {
  width: 160px;
  height: 160px;
  border-radius: var(--radius);
  border: 3px solid var(--border);
}

.s12-qr-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.donation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
  align-items: start;
}

.donation-item {
  text-align: center;
}

.donation-item img {
  width: 100%;
  max-width: 200px;
  margin: 0 auto 12px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.donation-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ============================================================
   Contact Page
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.social-links {
  display: flex;
  gap: 16px;
  margin: 24px 0;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 20px;
  transition: border-color var(--transition), transform var(--transition);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
}

.social-link:hover {
  border-color: var(--orange);
  transform: translateY(-2px);
  color: var(--text);
}

.social-link img {
  height: 24px;
  width: auto;
}

.email-link {
  color: var(--orange);
  font-weight: 600;
}

.email-link:hover {
  color: var(--orange-light);
}

/* Subscribe Form */
.subscribe-form-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.subscribe-form-card h2 {
  margin-bottom: 8px;
}

.subscribe-form-card .form-subtitle {
  color: var(--text-muted);
  margin-bottom: 32px;
  font-size: 0.95rem;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-group input {
  width: 100%;
  background: var(--bg4);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: var(--text);
  font-family: var(--font);
  font-size: 0.95rem;
  transition: border-color var(--transition);
  outline: none;
}

.form-group input:focus {
  border-color: var(--orange);
}

.form-group input::placeholder {
  color: var(--text-dim);
}

.form-success {
  display: none;
  background: rgba(247,147,26,0.1);
  border: 1px solid rgba(247,147,26,0.3);
  border-radius: var(--radius);
  padding: 16px 20px;
  color: var(--orange);
  font-weight: 500;
  text-align: center;
  margin-top: 16px;
}

.form-success.show {
  display: block;
}

/* Footer Form (smaller variant) */
.footer-form .form-group {
  margin-bottom: 12px;
}

.footer-form .form-group input {
  font-size: 0.875rem;
  padding: 10px 14px;
  background: rgba(255,255,255,0.05);
}

.footer-form .btn {
  font-size: 0.875rem;
  padding: 10px 20px;
}

/* FAQ */
.faq-list {
  display: grid;
  gap: 16px;
  margin-top: 40px;
}

.faq-item {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
}

.faq-question {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}

.faq-answer {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.faq-answer a {
  color: var(--orange);
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-brand img {
  height: 48px;
  width: auto;
  margin-bottom: 20px;
  background: #000;
  border-radius: 8px;
  padding: 4px 8px;
}

.footer-tagline {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 320px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-social-link {
  display: block;
  width: 40px;
  height: 40px;
  padding: 3px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition), background var(--transition);
}

.footer-social-link:hover {
  border-color: var(--orange);
  background: rgba(247,147,26,0.08);
}

.footer-social-link img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-nav h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 20px;
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav ul li a {
  color: var(--text-muted);
  font-size: 0.875rem;
  transition: color var(--transition);
}

.footer-nav ul li a:hover {
  color: var(--orange);
}

.footer-subscribe h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 20px;
}

.footer-subscribe p {
  font-size: 0.85rem;
  margin-bottom: 16px;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-copyright {
  font-size: 0.8rem;
  color: var(--text-dim);
  text-align: center;
}

/* ============================================================
   Dividers / Decorative
   ============================================================ */
.orange-divider {
  width: 48px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
  margin: 16px 0 28px;
}

.orange-divider.center {
  margin: 16px auto 28px;
}

/* ============================================================
   Utilities
   ============================================================ */
.text-orange { color: var(--orange); }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }

/* ============================================================
   Responsive — Tablet (max-width: 900px)
   ============================================================ */
@media (max-width: 900px) {

  .resources-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .event-layout {
    grid-template-columns: 1fr;
  }

  .event-sidebar {
    position: static;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .donation-grid {
    grid-template-columns: 1fr 1fr;
  }

  .office-hours-card {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ============================================================
   Responsive — Mobile (max-width: 768px)
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --header-height: 64px;
  }

  .section-pad {
    padding: 56px 0;
  }

  /* Mobile Nav */
  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(13,13,13,0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    z-index: 999;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    font-size: 1.1rem;
    padding: 14px 24px;
    width: 80%;
    text-align: center;
  }

  .hero {
    padding: 72px 0 60px;
  }

  .hero-logo {
    width: 300px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }


  .events-section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .event-card {
    flex-wrap: wrap;
  }

  .resources-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: 1;
  }

  .donation-grid {
    grid-template-columns: 1fr;
    max-width: 280px;
    margin: 32px auto 0;
  }

  .subscribe-form-card {
    padding: 28px 20px;
  }

  .event-meta {
    gap: 16px;
  }
}
