/* ============================================================
   IUCC South Florida — shared site stylesheet

   Every page links this. Page-specific rules stay in a small
   inline <style> AFTER this link, so they override cleanly.
   Edit a shared rule here once, not in twelve files.
   ============================================================ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --navy: #0C1B33;
  --navy-light: #162844;
  --saffron: #E07A2F;
  --saffron-dark: #C4651F;
  --green: #138808;
  --green-dark: #0E6606;
  --cream: #FBF8F3;
  --cream-dark: #F0EBE3;
  --white: #FFFFFF;
  --text: #1A1A1A;
  --text-light: #5A5A5A;
  --text-muted: #8A8A8A;
  --gold: #D4A84B;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'DM Sans', -apple-system, sans-serif;
  --ease: cubic-bezier(0.23, 1, 0.32, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ============================================
   UTILITY
============================================ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.container--wide { max-width: 1400px; margin: 0 auto; padding: 0 2rem; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ============================================
   NAVIGATION
============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: all 0.4s var(--ease);
}
.nav.scrolled {
  background: rgba(12, 27, 51, 0.97);
  backdrop-filter: blur(20px);
  padding: 0.75rem 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nav__logo img {
  height: 50px;
  width: auto;
  transition: height 0.4s var(--ease);
}
.nav.scrolled .nav__logo img { height: 40px; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}
.nav__links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 0.5rem 0.9rem;
  border-radius: 6px;
  transition: all 0.3s var(--ease);
}
.nav__links a:hover {
  color: #fff;
  background: rgba(255,255,255,0.1);
}
.nav__cta {
  background: var(--saffron) !important;
  color: #fff !important;
  font-weight: 600 !important;
  padding: 0.55rem 1.25rem !important;
  border-radius: 8px !important;
  transition: all 0.3s var(--ease) !important;
}
.nav__cta:hover {
  background: var(--saffron-dark) !important;
  transform: translateY(-1px);
}
.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.nav__mobile span {
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}

/* ============================================
   HERO
============================================ */
.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--navy);
  padding: 7rem 0 4rem;
}
.hero__video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.55;
}
.hero__overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(12,27,51,0.55) 0%,
    rgba(12,27,51,0.3) 40%,
    rgba(12,27,51,0.65) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 2rem;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  color: rgba(255,255,255,0.9);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
}
.hero__badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--saffron);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}
.hero__title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}
.hero__title em {
  font-style: italic;
  color: var(--saffron);
}
.hero__sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 10px;
  transition: all 0.3s var(--ease);
  letter-spacing: 0.02em;
}
.btn--primary {
  background: var(--saffron);
  color: #fff;
}
.btn--primary:hover {
  background: var(--saffron-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(224,122,47,0.35);
}
.btn--outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.3);
}
.btn--outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.05);
  transform: translateY(-2px);
}
.btn--dark {
  background: var(--navy);
  color: #fff;
}
.btn--dark:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(12,27,51,0.35);
}
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  animation: float 3s ease-in-out infinite;
}
.hero__scroll::after {
  content: '';
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
}
@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================
   SECTION BASE
============================================ */
.section {
  padding: 7rem 0;
}
.section--navy {
  background: var(--navy);
  color: #fff;
}
.section--cream {
  background: var(--cream);
}
.section--white {
  background: var(--white);
}
.section__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 1rem;
}
.section__title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
.section__subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.7;
  max-width: 600px;
}
.section--navy .section__subtitle {
  color: rgba(255,255,255,0.65);
}

/* ============================================
   ABOUT / STATS BAR
============================================ */
.stats-bar {
  background: var(--navy);
  padding: 3rem 0;
  border-bottom: 3px solid var(--saffron);
}
.stats-bar__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat__number {
  font-family: var(--serif);
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--saffron);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat__label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about__text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}
.about__image-wrap {
  position: relative;
}
.about__image-wrap img {
  border-radius: 16px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.1);
}
.about__image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 200px;
  height: 200px;
  border: 3px solid var(--saffron);
  border-radius: 16px;
  z-index: -1;
}

/* ============================================
   MISSION
============================================ */
.mission {
  text-align: center;
  padding: 6rem 0;
  background: var(--white);
  position: relative;
}
.mission::before {
  content: '\201C';
  font-family: var(--serif);
  font-size: 12rem;
  color: var(--cream-dark);
  position: absolute;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1;
  pointer-events: none;
}
.mission__text {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  font-weight: 400;
  line-height: 1.7;
  color: var(--navy);
  max-width: 800px;
  margin: 0 auto 2rem;
  font-style: italic;
}
.mission__source {
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}

/* ============================================
   LEADERSHIP
============================================ */
.leaders__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.leader-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 2rem;
  transition: all 0.4s var(--ease);
  text-decoration: none;
  display: block;
  text-align: center;
}
.leader-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(224,122,47,0.3);
  transform: translateY(-4px);
}
.leader-card__photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.25rem;
  display: block;
  border: 3px solid rgba(255,255,255,0.12);
  transition: border-color 0.4s var(--ease);
}
.leader-card:hover .leader-card__photo {
  border-color: rgba(224,122,47,0.4);
}
.leader-card__name {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.35rem;
}
.leader-card__title {
  font-size: 0.85rem;
  color: var(--saffron);
  font-weight: 500;
  margin-bottom: 0.75rem;
}
.leader-card__creds {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}
.leader-card__linkedin {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.3s;
}
.leader-card:hover .leader-card__linkedin {
  color: var(--saffron);
}

/* ============================================
   GALLERY
============================================ */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-top: 3rem;
}
.gallery__item {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16/10;
  position: relative;
  cursor: pointer;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12,27,51,0.4), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.gallery__item:hover img {
  transform: scale(1.08);
}
.gallery__item:hover::after {
  opacity: 1;
}
.gallery__item--wide {
  grid-column: span 2;
}

/* ============================================
   EVENTS
============================================ */
.events__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
  padding: 0 2rem;
}
.event-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 3/4;
  display: block;
  cursor: pointer;
}
.event-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.event-card:hover img {
  transform: scale(1.06);
}
.event-card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem;
  background: linear-gradient(to top, rgba(12,27,51,0.9) 0%, rgba(12,27,51,0.4) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.event-card__date {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 0.2rem;
}
.event-card__name {
  font-family: var(--serif);
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
}
@media (max-width: 1024px) {
  .events__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .events__grid { grid-template-columns: repeat(2, 1fr); }
}
.events__topics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2rem;
}
.events__tag {
  padding: 0.5rem 1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  transition: all 0.3s;
}
.events__tag:hover {
  background: var(--saffron);
  border-color: var(--saffron);
  color: #fff;
}
.events__featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
  align-items: center;
}
.events__featured-img {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}
.events__featured-img img {
  width: 100%;
  display: block;
}

/* ============================================
   MEMBERSHIP
============================================ */
.membership__grid {
  display: grid;
  grid-template-columns: minmax(0, 460px);
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
}
.plan-card {
  background: var(--white);
  border: 1px solid #E8E4DF;
  border-radius: 20px;
  padding: 3rem;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.plan-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}
.plan-card--featured {
  border-color: var(--saffron);
  border-width: 2px;
}
.plan-card--featured::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: 1.25rem;
  right: -2rem;
  background: var(--saffron);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.35rem 2.5rem;
  transform: rotate(45deg);
}
.plan-card__name {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.plan-card__duration {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.plan-card__price {
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.plan-card__price sup {
  font-size: 1.5rem;
  vertical-align: super;
}
.plan-card__period {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}
.plan-card__features {
  list-style: none;
  margin-bottom: 2.5rem;
}
.plan-card__features li {
  padding: 0.6rem 0;
  font-size: 0.95rem;
  color: var(--text-light);
  border-bottom: 1px solid #F0EBE3;
  padding-left: 1.5rem;
  position: relative;
}
.plan-card__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}
.plan-card .btn {
  width: 100%;
  justify-content: center;
}

/* ============================================
   NETWORKS
============================================ */
.networks__columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 3rem;
}
.networks__col h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--saffron);
}
.networks__col ul {
  list-style: none;
}
.networks__col li {
  padding: 0.5rem 0;
  font-size: 0.9rem;
  color: var(--text-light);
  border-bottom: 1px solid #F0EBE3;
}
.networks__col li:last-child { border-bottom: none; }

/* ============================================
   CONTACT
============================================ */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
}
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1.25rem;
  border: 1.5px solid #E0DBD4;
  border-radius: 10px;
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: all 0.3s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--saffron);
  box-shadow: 0 0 0 3px rgba(224,122,47,0.1);
}
.form-group textarea {
  resize: vertical;
  min-height: 140px;
}
.contact__info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.contact__region {
  padding: 1.5rem;
  background: var(--white);
  border-radius: 14px;
  border: 1px solid #E8E4DF;
}
.contact__region h4 {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.contact__region p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}
.contact__region a {
  color: var(--saffron);
  font-weight: 500;
}

/* ============================================
   TESTIMONIAL
============================================ */
.testimonial {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 5rem 0;
  text-align: center;
}
.testimonial__text {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-style: italic;
  color: rgba(255,255,255,0.9);
  line-height: 1.8;
  max-width: 750px;
  margin: 0 auto 2rem;
}
.testimonial__author {
  font-size: 0.9rem;
  color: var(--saffron);
  font-weight: 600;
}
.testimonial__role {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  margin-top: 0.25rem;
}

/* ============================================
   FOOTER
============================================ */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 2rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer__brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: 1rem;
  color: rgba(255,255,255,0.5);
}
.footer__brand img { height: 55px; margin-bottom: 0.5rem; }
.footer h4 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.25rem;
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 0.6rem; }
.footer ul a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.3s;
}
.footer ul a:hover { color: var(--saffron); }
.footer__social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}
.footer__social a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  transition: all 0.3s;
  border: 1px solid rgba(255,255,255,0.08);
}
.footer__social a:hover {
  background: var(--saffron);
  border-color: var(--saffron);
  color: #fff;
}
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1024px) {
  .leaders__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__grid { grid-template-columns: repeat(3, 1fr); }
  .gallery__item--wide { grid-column: span 1; }
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(12, 27, 51, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 1rem 1.5rem 1.5rem;
    gap: 0;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .nav__links.show {
    display: flex;
  }
  .nav__links li { width: 100%; }
  .nav__links a {
    display: block;
    padding: 0.75rem 0.5rem;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .nav__links .nav__cta {
    margin-top: 0.5rem;
    text-align: center;
  }
  .nav__mobile { display: flex; }
  .stats-bar__inner { grid-template-columns: repeat(2, 1fr); }
  .about__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .events__featured { grid-template-columns: 1fr; }
  .membership__grid { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; }
  .leaders__grid { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .networks__columns { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
  .section { padding: 4rem 0; }
  .hero__title { font-size: 2.25rem; }
}
