/* ============================================
   Pinoy Pikolbol Club — Professional Stylesheet
   Single typeface: Inter (sans) + Playfair Display (serif headings)
   Palette derived from logo: deep navy, flag red, flag blue, sun gold, cream
   No gradients on type. Rectangular framed logo.
   ============================================ */

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

:root {
  --navy:     #0f1f3d;     /* primary text + bg accents */
  --navy-2:   #1a2f55;
  --red:      #c8102e;     /* flag red */
  --blue:     #0038a8;     /* flag blue */
  --gold:     #fcd116;     /* sun yellow */
  --ink:      #16181d;     /* body text */
  --muted:    #5b6473;
  --line:     #e3e6ec;
  --paper:    #ffffff;
  --bg:       #f6f7f9;     /* page bg */
  --bg-soft:  #eef1f6;

  --radius-sm: 4px;
  --radius:    8px;
  --radius-lg: 12px;

  --shadow-sm: 0 1px 2px rgba(15, 31, 61, 0.06), 0 1px 1px rgba(15, 31, 61, 0.04);
  --shadow:    0 4px 14px rgba(15, 31, 61, 0.08), 0 1px 2px rgba(15, 31, 61, 0.04);
  --shadow-lg: 0 16px 40px rgba(15, 31, 61, 0.12), 0 4px 12px rgba(15, 31, 61, 0.06);

  --container: 1200px;
  --gutter: 24px;

  --transition: 180ms cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--blue);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--red); }

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

/* ===== Typography ===== */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--navy);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2.25rem, 4.2vw, 3.5rem); line-height: 1.1; }
h2 { font-size: clamp(1.75rem, 2.8vw, 2.25rem); line-height: 1.2; }
h3 { font-size: 1.25rem; line-height: 1.3; }
h4 { font-size: 1rem; line-height: 1.4; font-family: 'Inter', sans-serif; font-weight: 600; letter-spacing: 0; }

p { margin: 0 0 1em; color: var(--ink); }

.eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.75rem;
}

.lead { font-size: 1.125rem; color: var(--muted); line-height: 1.7; }

/* ===== Header / Nav ===== */
.site-header {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(180%) blur(10px);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--navy);
}
.brand:hover { color: var(--navy); }

.brand-mark {
  width: 56px;
  height: 42px;
  background: var(--navy);
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}
.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text .name {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0;
}
.brand-text .tagline {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  margin-top: 2px;
}

.main-nav { position: relative; }

.nav-menu { position: relative; }
.nav-menu > summary {
  list-style: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--paper);
  background: var(--navy);
  border: 1px solid var(--navy);
  border-radius: var(--radius);
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  user-select: none;
}
.nav-menu > summary::-webkit-details-marker { display: none; }
.nav-menu > summary::marker { content: ""; }
.nav-menu > summary:hover { background: var(--navy-2); border-color: var(--navy-2); }
.nav-menu > summary:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.nav-menu > summary .chevron {
  display: inline-flex;
  width: 16px;
  height: 16px;
  transition: transform var(--transition);
}
.nav-menu[open] > summary .chevron { transform: rotate(180deg); }

.nav-menu ul {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 220px;
  list-style: none;
  margin: 0;
  padding: 8px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg, 0 12px 36px rgba(15, 31, 61, 0.18));
  display: flex;
  flex-direction: column;
  gap: 2px;
  z-index: 60;
}

.nav-menu a {
  display: block;
  padding: 10px 14px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
}
.nav-menu a:hover { background: var(--bg-soft); color: var(--navy); }
.nav-menu a.active { color: var(--navy); background: var(--bg-soft); font-weight: 600; }

/* Invisible backdrop closes the menu when clicking outside */
.nav-menu[open] > summary::before {
  content: "";
  position: fixed;
  inset: 0;
  background: transparent;
  z-index: 55;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

.btn-primary {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.btn-primary:hover {
  background: var(--navy-2);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--line);
}
.btn-outline:hover {
  border-color: var(--navy);
  background: var(--paper);
  color: var(--navy);
}

/* ===== Hero ===== */
.hero {
  background: var(--paper);
  padding: 80px 0 96px;
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}

.hero-copy h1 {
  margin-bottom: 16px;
}

.hero-copy h1 .accent {
  color: var(--navy);
  font-style: normal;
}

.hero-copy .lead {
  margin-bottom: 32px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo-frame {
  width: 100%;
  max-width: 460px;
  aspect-ratio: 4 / 3;
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.hero-logo-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.hero-meta {
  margin-top: 18px;
  display: flex;
  justify-content: center;
  gap: 24px;
  font-size: 0.82rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}
.hero-meta span { display: inline-flex; align-items: center; gap: 6px; }

/* ===== Section base ===== */
section { padding: 80px 0; }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.section-head h2 .accent { color: var(--navy); }
.section-head p { color: var(--muted); font-size: 1.05rem; }

.section-divider {
  width: 48px;
  height: 3px;
  background: var(--navy);
  margin: 0 auto 20px;
  border-radius: 2px;
}

/* ===== Quick-links / Feature Grid ===== */
.features {
  background: var(--bg);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all var(--transition);
  text-decoration: none;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.feature-card:hover {
  border-color: var(--navy);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  color: var(--ink);
}
.feature-card .icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: var(--bg-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
}
.feature-card .icon-wrap svg { width: 22px; height: 22px; stroke-width: 1.6; }
.feature-card h3 { margin: 0; font-family: 'Inter', sans-serif; font-size: 1rem; font-weight: 600; color: var(--navy); }
.feature-card p { margin: 0; color: var(--muted); font-size: 0.92rem; line-height: 1.5; }
.feature-card .arrow {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
}
.feature-card .arrow svg { width: 14px; height: 14px; transition: transform var(--transition); }
.feature-card:hover .arrow svg { transform: translateX(3px); }

/* ===== About / Two-column ===== */
.about { background: var(--paper); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-text h2 { margin-bottom: 20px; }
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.stat { text-align: left; }
.stat .num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--navy);
  font-weight: 600;
  line-height: 1;
}
.stat .label {
  display: block;
  margin-top: 6px;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

.about-frame {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 5 / 4;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ===== Sponsors ===== */
.sponsors-section { background: var(--bg); }

.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.sponsor-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px 20px 22px;
  text-align: center;
  text-decoration: none;
  color: var(--ink);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  gap: 14px;
  height: 100%;
}
.sponsor-card:hover {
  border-color: var(--navy);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
  color: var(--ink);
}
.sponsor-card .logo-box {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-soft);
  border-radius: var(--radius);
  overflow: hidden;
  padding: 0;
}
.sponsor-card .logo-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sponsor-card.dark-logo .logo-box {
  background: var(--navy);
}
.sponsor-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 0.98rem;
  font-weight: 600;
  margin: 0;
  color: var(--navy);
  min-height: 2.6em;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.3;
}
.sponsor-card .sponsor-meta {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  margin-top: -6px;
}
.sponsor-card .sponsor-contact {
  margin-top: 4px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--ink);
  line-height: 1.4;
}
.sponsor-card .sponsor-contact .row {
  display: inline-flex;
  align-items: flex-start;
  justify-content: center;
  gap: 6px;
  color: var(--ink);
}
.sponsor-card .sponsor-contact .row svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  stroke-width: 1.8;
  color: var(--muted);
  margin-top: 2px;
}
.sponsor-card .sponsor-contact .row span,
.sponsor-card .sponsor-contact .row a {
  color: var(--ink);
  font-weight: 500;
  word-break: break-word;
}
.sponsor-card .sponsor-contact .row a:hover {
  color: var(--navy);
}

/* ===== Page Header (interior pages) ===== */
.page-header {
  background: var(--paper);
  padding: 72px 0 56px;
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.page-header h1 .accent { color: var(--navy); font-style: normal; }
.page-header .lead { max-width: 640px; margin: 0 auto; }

/* ===== Members grid ===== */
.member-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.member-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.member-card:hover {
  border-color: var(--navy);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.member-card .member-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.member-card .member-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.member-card .member-body {
  padding: 20px 22px 24px;
  border-top: 1px solid var(--line);
}
.member-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  margin: 0 0 4px;
  color: var(--navy);
}
.member-card .location {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

/* ===== Merchandise / Gallery ===== */
.product-grid, .gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.gallery-grid.single {
  grid-template-columns: 1fr;
  max-width: 880px;
  margin: 0 auto;
}

.gallery-feature {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: var(--ink);
  display: block;
  transition: all var(--transition);
}
.gallery-feature:hover {
  border-color: var(--navy);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  color: var(--ink);
}
.gallery-feature .cover {
  aspect-ratio: 21 / 9;
  background: var(--bg-soft);
  overflow: hidden;
}
.gallery-feature .cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-feature:hover .cover img { transform: scale(1.03); }
.gallery-feature .body {
  padding: 26px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.gallery-feature .body .eyebrow { margin-bottom: 0; }
.gallery-feature h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  margin: 0;
  color: var(--navy);
  line-height: 1.25;
}
.gallery-feature .meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 500;
}
.gallery-feature .meta span { display: inline-flex; align-items: center; gap: 6px; }
.gallery-feature .meta svg { width: 14px; height: 14px; stroke-width: 1.8; }
.gallery-feature .view-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  margin-top: 4px;
}
.gallery-feature .view-link svg { width: 14px; height: 14px; transition: transform var(--transition); }
.gallery-feature:hover .view-link svg { transform: translateX(3px); }

.product-card, .gallery-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.product-card:hover, .gallery-card:hover {
  border-color: var(--navy);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.product-image, .gallery-image {
  aspect-ratio: 1 / 1;
  background: var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
}
.product-image svg, .gallery-image svg { width: 48px; height: 48px; stroke-width: 1.2; opacity: 0.5; }
.product-body { padding: 16px 18px 20px; }
.product-body h3 { font-family: 'Inter', sans-serif; font-size: 0.95rem; font-weight: 600; margin: 0 0 4px; color: var(--navy); }
.product-body .price { font-size: 0.88rem; color: var(--muted); }

/* ===== Events page ===== */
.events-cta {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  box-shadow: var(--shadow-sm);
}
.events-cta .icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: var(--radius);
  background: var(--bg-soft);
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.events-cta .icon-wrap svg { width: 32px; height: 32px; stroke-width: 1.5; }
.events-cta h2 { margin-bottom: 12px; }
.events-cta p { color: var(--muted); margin-bottom: 28px; }

/* ===== CTA Section ===== */
.cta-section {
  background: var(--navy);
  color: #fff;
  text-align: center;
}
.cta-section h2 { color: #fff; }
.cta-section p { color: rgba(255, 255, 255, 0.8); max-width: 560px; margin: 0 auto 32px; }
.cta-section .btn-primary {
  background: var(--paper);
  color: var(--navy);
  border-color: var(--paper);
}
.cta-section .btn-primary:hover {
  background: var(--bg-soft);
  color: var(--navy);
}
.cta-section .btn-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}
.cta-section .btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: #fff;
}

/* ===== Footer ===== */
.site-footer {
  background: var(--paper);
  border-top: 1px solid var(--line);
  padding: 56px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 12px;
  max-width: 320px;
}
.footer-col h4 {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 8px; }
.footer-col a {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 400;
}
.footer-col a:hover { color: var(--navy); }
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  transition: all var(--transition);
}
.footer-social a:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.footer-social svg { width: 18px; height: 18px; }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--muted);
}

/* ===== Responsive ===== */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero { padding: 56px 0 64px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .feature-grid, .sponsor-grid, .product-grid, .gallery-grid, .minor-sponsors { grid-template-columns: repeat(2, 1fr); }
  .member-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  section { padding: 56px 0; }
}

@media (max-width: 640px) {
  .site-header .container { padding-top: 12px; padding-bottom: 12px; }
  .brand-mark { width: 44px; height: 34px; }
  .brand-text .name { font-size: 0.95rem; }
  .brand-text .tagline { font-size: 0.62rem; }
  .nav-menu > summary { padding: 10px 12px; gap: 0; }
  .nav-menu > summary .label, .nav-menu > summary .chevron { display: none; }
  .nav-menu > summary::after {
    content: "";
    width: 18px;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
    box-shadow: 0 -6px 0 currentColor, 0 6px 0 currentColor;
    display: block;
  }
  .nav-menu[open] > summary::after {
    box-shadow: none;
    background: transparent;
    width: 18px;
    height: 18px;
    background-image: linear-gradient(45deg, transparent 45%, currentColor 45%, currentColor 55%, transparent 55%), linear-gradient(-45deg, transparent 45%, currentColor 45%, currentColor 55%, transparent 55%);
  }
  .nav-menu ul { right: 0; min-width: 200px; }
  .feature-grid, .sponsor-grid, .product-grid, .gallery-grid, .member-grid, .minor-sponsors { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr; gap: 16px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .events-cta { padding: 40px 24px; }
}
