/* ============================================
   GCACC — Greater Caribbean American Chamber
   Design System: Deep Navy + Gold + Teal
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=Inter:wght@300;400;500;600;700&family=Libre+Baskerville:ital,wght@0,400;1,400&display=swap');

:root {
  /* Palette */
  --navy:       #0A1628;
  --navy-mid:   #122240;
  --gold:       #F5C800;
  --gold-light: #FFD740;
  --teal:       #F5C800;
  --teal-light: #FFD740;
  --cream:      #FFFBEA;
  --white:      #FFFFFF;
  --gray-100:   #F4F4F4;
  --gray-300:   #D1D1D1;
  --gray-500:   #888888;
  --gray-700:   #444444;
  --text:       #1A1A2E;

  /* Type */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --font-serif:   'Libre Baskerville', Georgia, serif;

  /* Spacing */
  --section-pad: 5rem 0;
  --container:   1200px;
  --radius:      6px;
  --radius-lg:   12px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(10,22,40,0.08);
  --shadow-md: 0 6px 24px rgba(10,22,40,0.14);
  --shadow-lg: 0 16px 48px rgba(10,22,40,0.20);
}

/* ——— Reset & Base ——— */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ——— Container ——— */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ——— Typography ——— */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 900; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 700; }
h4 { font-size: 1.1rem; font-weight: 600; }
p  { font-size: 1rem; color: var(--gray-700); max-width: 68ch; }

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

.section-title {
  color: var(--navy);
  margin-bottom: 1rem;
}

.section-intro {
  font-size: 1.1rem;
  color: var(--gray-700);
  max-width: 56ch;
  margin-bottom: 2.5rem;
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  border: none;
  transition: all 0.22s ease;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.btn-teal {
  background: var(--teal);
  color: var(--white);
}
.btn-teal:hover {
  background: var(--teal-light);
  transform: translateY(-1px);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover {
  background: var(--navy-mid);
}

/* ——— Navigation ——— */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10, 22, 40, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(245,200,0,0.2);
  transition: box-shadow 0.3s;
}

.navbar.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 1.5rem;
  max-width: var(--container);
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.nav-logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--navy);
  font-family: var(--font-display);
  flex-shrink: 0;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.nav-logo-abbr {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.05em;
}

.nav-logo-full {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.04em;
  max-width: 200px;
  line-height: 1.3;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  color: rgba(255,255,255,0.8);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: var(--gold);
  background: rgba(245,200,0,0.1);
}

/* Dropdown */
.nav-item { position: relative; }
.dropdown { display: none; }
.nav-item:hover .dropdown {
  display: block;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--navy);
  border: 1px solid rgba(245,200,0,0.2);
  border-radius: var(--radius);
  min-width: 200px;
  box-shadow: var(--shadow-lg);
  z-index: 100;
}
.dropdown a {
  display: block;
  padding: 0.7rem 1.1rem;
  color: rgba(255,255,255,0.8);
  font-size: 0.875rem;
  transition: color 0.2s, background 0.2s;
}
.dropdown a:hover { color: var(--gold); background: rgba(245,200,0,0.1); }

.nav-cta { margin-left: 0.75rem; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ——— Hero ——— */
.hero {
  min-height: 100vh;
  background: linear-gradient(160deg, var(--navy) 0%, #0D2847 50%, #0E3B5C 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}

/* Caribbean wave pattern overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 70% 60%, rgba(245,200,0,0.2) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 90% 20%, rgba(245,200,0,0.12) 0%, transparent 50%);
  pointer-events: none;
}

/* Diagonal gold accent bar */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--navy), var(--gold), var(--navy));
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 5rem 1.5rem;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(245,200,0,0.15);
  border: 1px solid rgba(245,200,0,0.4);
  color: var(--gold-light);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-title {
  color: var(--white);
  font-size: clamp(2.4rem, 5vw, 4rem);
  margin-bottom: 1.25rem;
  line-height: 1.1;
}

.hero-title em {
  color: var(--gold);
  font-style: normal;
  display: block;
}

.hero-subtitle {
  color: rgba(255,255,255,0.75);
  font-size: 1.15rem;
  margin-bottom: 2rem;
  max-width: 48ch;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--gold);
  display: block;
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.3rem;
}

/* Hero Visual — Caribbean flag mosaic */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-globe-container {
  position: relative;
  width: 420px;
  height: 420px;
}

.hero-globe {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(245,200,0,0.6), rgba(10,22,40,0.9) 70%);
  border: 2px solid rgba(245,200,0,0.3);
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 80px rgba(245,200,0,0.3), 0 0 160px rgba(10,22,40,0.8);
}

.globe-ring {
  position: absolute;
  border: 1px solid rgba(245,200,0,0.15);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.globe-text-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--white);
}

.globe-acronym {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--gold);
  display: block;
  line-height: 1;
}

.globe-subtitle-text {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 0.3rem;
}

/* Orbiting flags */
.flags-orbit {
  position: absolute;
  inset: -20px;
  animation: orbit-slow 30s linear infinite;
}

.flag-pin {
  position: absolute;
  width: 36px;
  height: 24px;
  border-radius: 3px;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.2);
}

.flag-pin:nth-child(1)  { top: 5%;  left: 45%; }
.flag-pin:nth-child(2)  { top: 20%; left: 85%; }
.flag-pin:nth-child(3)  { top: 45%; left: 95%; }
.flag-pin:nth-child(4)  { top: 75%; left: 80%; }
.flag-pin:nth-child(5)  { top: 88%; left: 45%; }
.flag-pin:nth-child(6)  { top: 75%; left: 10%; }
.flag-pin:nth-child(7)  { top: 45%; left: 0%;  }
.flag-pin:nth-child(8)  { top: 20%; left: 10%; }

@keyframes orbit-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Counter-rotate so flags stay upright */
.flag-pin { animation: counter-orbit 30s linear infinite; }
@keyframes counter-orbit {
  from { transform: rotate(0deg); }
  to   { transform: rotate(-360deg); }
}

/* ——— Marquee ——— */
.marquee-bar {
  background: var(--gold);
  padding: 0.7rem 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 3rem;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
  width: max-content;
}

.marquee-item {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.marquee-item::before {
  content: '◆';
  color: var(--navy-mid);
  font-size: 0.5rem;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ——— About Section ——— */
.about {
  padding: var(--section-pad);
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.pillar-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border-left: 3px solid var(--teal);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}

.pillar-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.pillar-card:nth-child(2) { border-left-color: var(--gold); }
.pillar-card:nth-child(3) { border-left-color: #6C3BD5; }
.pillar-card:nth-child(4) { border-left-color: #C94A3C; }

.pillar-icon {
  font-size: 1.8rem;
  margin-bottom: 0.6rem;
}

.pillar-card h4 {
  color: var(--navy);
  margin-bottom: 0.3rem;
  font-size: 0.95rem;
}

.pillar-card p {
  font-size: 0.83rem;
  color: var(--gray-500);
  max-width: none;
}

.about-image-stack {
  position: relative;
}

.about-img-main {
  width: 100%;
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a6e 100%);
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 5rem;
}

.about-accent-card {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--gold);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
  text-align: center;
}

.about-accent-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--navy);
  display: block;
  line-height: 1;
}

.about-accent-label {
  font-size: 0.75rem;
  color: var(--navy);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ——— Membership Section ——— */
.membership {
  padding: var(--section-pad);
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.membership::before {
  content: '';
  position: absolute;
  right: -10%;
  top: -20%;
  width: 60%;
  height: 140%;
  background: radial-gradient(ellipse, rgba(245,200,0,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.membership .section-title { color: var(--white); }
.membership .section-intro { color: rgba(255,255,255,0.65); }

.membership-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.tier-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: transform 0.25s, border-color 0.25s;
  position: relative;
}

.tier-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245,200,0,0.4);
}

.tier-card.featured {
  background: linear-gradient(135deg, rgba(245,200,0,0.15), rgba(245,200,0,0.05));
  border-color: var(--gold);
}

.tier-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.85rem;
  border-radius: 100px;
}

.tier-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.3rem;
}

.tier-price {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  font-family: var(--font-display);
  line-height: 1;
  margin: 0.75rem 0;
}

.tier-price span {
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
}

.tier-features {
  margin: 1.25rem 0 1.75rem;
}

.tier-features li {
  color: rgba(255,255,255,0.75);
  font-size: 0.88rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.tier-features li::before {
  content: '✓';
  color: var(--navy);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

/* ——— Events Section ——— */
.events {
  padding: var(--section-pad);
  background: var(--white);
}

.events-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.event-featured {
  background: var(--navy);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.event-featured-img {
  height: 280px;
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a6e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
}

.event-date-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--gold);
  color: var(--navy);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.85rem;
  text-align: center;
  line-height: 1.3;
}

.event-date-badge .day { font-size: 1.5rem; display: block; }

.event-featured-body {
  padding: 1.75rem;
}

.event-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.event-featured-body h3 {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}

.event-featured-body p {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
}

.event-meta {
  display: flex;
  gap: 1.5rem;
  margin: 1rem 0 1.5rem;
  flex-wrap: wrap;
}

.event-meta-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
}

.event-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.event-card-sm {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 1.1rem;
  border-left: 3px solid var(--teal);
  transition: transform 0.2s;
}

.event-card-sm:hover { transform: translateX(4px); }
.event-card-sm:nth-child(2) { border-left-color: var(--gold); }
.event-card-sm:nth-child(3) { border-left-color: #9B59B6; }
.event-card-sm:nth-child(4) { border-left-color: #E74C3C; }

.event-sm-date {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.event-card-sm h4 {
  color: var(--navy);
  font-size: 0.92rem;
  margin: 0.3rem 0;
}

.event-card-sm p {
  font-size: 0.82rem;
  color: var(--gray-500);
}

/* ——— News/Blog ——— */
.news {
  padding: var(--section-pad);
  background: var(--cream);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.news-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s;
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.news-card-img {
  height: 180px;
  background: linear-gradient(135deg, var(--navy), #1a3a6e);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.news-card-body { padding: 1.4rem; }

.news-cat {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.news-card h3 {
  color: var(--navy);
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.news-card p {
  font-size: 0.85rem;
  color: var(--gray-500);
  max-width: none;
}

.news-card-footer {
  padding: 1rem 1.4rem;
  border-top: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--gray-500);
}

.read-more {
  color: var(--navy);
  font-weight: 600;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.read-more:hover { color: var(--navy); }

/* ——— Gallery Preview ——— */
.gallery-preview {
  padding: var(--section-pad);
  background: var(--navy);
}

.gallery-preview .section-title { color: var(--white); }
.gallery-preview .section-intro { color: rgba(255,255,255,0.65); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 200px);
  gap: 0.75rem;
  margin-top: 2.5rem;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: var(--navy-mid);
}

.gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  transition: transform 0.4s;
  position: relative;
}

.gallery-item:first-child .gallery-item-inner { font-size: 4rem; }

.gallery-item:hover .gallery-item-inner { transform: scale(1.06); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10,22,40,0.7) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay span {
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
}

/* Background colors for gallery placeholders */
.gallery-item:nth-child(1) .gallery-item-inner { background: linear-gradient(135deg, #0A1628, #1a3a6e); }
.gallery-item:nth-child(2) .gallery-item-inner { background: linear-gradient(135deg, #0d2a52, #1a3a6e); }
.gallery-item:nth-child(3) .gallery-item-inner { background: linear-gradient(135deg, #0A1628, #F5C800); }
.gallery-item:nth-child(4) .gallery-item-inner { background: linear-gradient(135deg, #0d2a52, #F5C800); }
.gallery-item:nth-child(5) .gallery-item-inner { background: linear-gradient(135deg, #5C1A1A, #9B4E4E); }
.gallery-item:nth-child(6) .gallery-item-inner { background: linear-gradient(135deg, #1A4A5C, #2D7DA8); }
.gallery-item:nth-child(7) .gallery-item-inner { background: linear-gradient(135deg, #4A5C1A, #8BA82D); }

/* ——— Partners/Sponsors ——— */
.partners {
  padding: 4rem 0;
  background: var(--white);
  border-top: 1px solid var(--gray-100);
}

.partners-label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 2rem;
}

.partners-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  color: var(--gray-500);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  transition: border-color 0.2s, color 0.2s;
  min-width: 120px;
  text-align: center;
}

.partner-logo:hover {
  border-color: var(--gold);
  color: var(--navy);
}

/* ——— CTA Banner ——— */
.cta-banner {
  background: linear-gradient(135deg, var(--teal) 0%, #D4A800 100%);
  padding: 5rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-banner p {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  margin: 0 auto 2rem;
  max-width: 52ch;
}

.cta-banner .btn-primary {
  background: var(--gold);
  color: var(--navy);
  font-size: 1rem;
  padding: 1rem 2.5rem;
}

/* ——— Footer ——— */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 0;
  border-top: 3px solid var(--gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-about p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  margin-top: 1rem;
  max-width: 32ch;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  transition: background 0.2s, color 0.2s;
}

.social-btn:hover {
  background: var(--gold);
  color: var(--navy);
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.2rem;
}

.footer-col ul li {
  margin-bottom: 0.55rem;
}

.footer-col ul li a {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--gold); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.86rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.6rem;
}

.footer-contact-item .icon { flex-shrink: 0; margin-top: 0.1rem; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--gold); }

/* ——— Page Header (Inner Pages) ——— */
.page-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 7rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--gold), var(--navy));
}

.page-header .section-label { margin-bottom: 0.5rem; }
.page-header h1 { color: var(--white); font-size: clamp(2rem, 4vw, 3rem); }
.page-header p  { color: rgba(255,255,255,0.7); font-size: 1.05rem; margin-top: 0.75rem; }

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.5rem;
}

.breadcrumb a { color: var(--gold-light); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span::before { content: '/'; margin-right: 0.5rem; }

/* ——— Board Members Page ——— */
.board-section {
  padding: var(--section-pad);
  background: var(--white);
}

.board-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.board-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s;
  border: 1px solid var(--gray-100);
}

.board-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.board-card-photo {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
}

.board-card-photo .initials-circle {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  border: 3px solid rgba(255,255,255,0.4);
}

.board-card:nth-child(1) .board-card-photo { background: linear-gradient(135deg, #0A1628, #1a3a6e); }
.board-card:nth-child(2) .board-card-photo { background: linear-gradient(135deg, #0d2a52, #1a3a6e); }
.board-card:nth-child(3) .board-card-photo { background: linear-gradient(135deg, #0A1628, #F5C800); }
.board-card:nth-child(4) .board-card-photo { background: linear-gradient(135deg, #0d2a52, #F5C800); }
.board-card:nth-child(5) .board-card-photo { background: linear-gradient(135deg, #3B0A0A, #9B4E4E); }
.board-card:nth-child(6) .board-card-photo { background: linear-gradient(135deg, #0A2744, #2D7DA8); }
.board-card:nth-child(7) .board-card-photo { background: linear-gradient(135deg, #1A3A0A, #8BA82D); }
.board-card:nth-child(8) .board-card-photo { background: linear-gradient(135deg, #3A0A3A, #9B4E9B); }
.board-card:nth-child(9) .board-card-photo { background: linear-gradient(135deg, #0A1A3A, #3A6EA8); }

.board-card-role {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, rgba(10,22,40,0.85) 0%, transparent 100%);
  padding: 1rem;
  text-align: center;
}

.board-role-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
}

.board-card-body {
  padding: 1.4rem;
  text-align: center;
}

.board-card-body h3 {
  color: var(--navy);
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}

.board-card-origin {
  font-size: 0.8rem;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.board-card-bio {
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.6;
  max-width: none;
}

.board-card-links {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.board-link-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--gray-700);
  transition: background 0.2s, color 0.2s;
}

.board-link-btn:hover {
  background: var(--navy);
  color: var(--white);
}

/* Executive officers highlight */
.officers-section {
  padding: var(--section-pad);
  background: var(--cream);
}

.officers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.officer-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.25rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--navy);
  transition: transform 0.2s;
}

.officer-card:hover { transform: translateY(-3px); }
.officer-card:nth-child(1) { border-top-color: var(--gold); }
.officer-card:nth-child(2) { border-top-color: var(--navy); }
.officer-card:nth-child(3) { border-top-color: #6C3BD5; }
.officer-card:nth-child(4) { border-top-color: #C94A3C; }

.officer-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
}

.officer-card:nth-child(1) .officer-avatar { background: linear-gradient(135deg, var(--gold), #B8822A); }
.officer-card:nth-child(2) .officer-avatar { background: linear-gradient(135deg, var(--teal), #D4A800); }
.officer-card:nth-child(3) .officer-avatar { background: linear-gradient(135deg, #6C3BD5, #4A28A0); }
.officer-card:nth-child(4) .officer-avatar { background: linear-gradient(135deg, #C94A3C, #8B3228); }

.officer-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 0.3rem;
}

.officer-card h3 {
  color: var(--navy);
  font-size: 1rem;
  margin-bottom: 0.15rem;
}

.officer-origin {
  font-size: 0.78rem;
  color: var(--navy);
  font-weight: 600;
}

/* ——— Bylaws Page ——— */
.bylaws-section {
  padding: var(--section-pad);
  background: var(--white);
}

.bylaws-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  margin-top: 3rem;
}

.bylaws-nav {
  position: sticky;
  top: 90px;
  align-self: start;
}

.bylaws-nav-list {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
}

.bylaws-nav-list li a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius);
  font-size: 0.88rem;
  color: var(--gray-700);
  transition: color 0.2s, background 0.2s;
}

.bylaws-nav-list li a:hover,
.bylaws-nav-list li a.active {
  background: var(--navy);
  color: var(--gold);
}

.bylaws-nav-list li a .art-num {
  font-weight: 700;
  font-size: 0.75rem;
  background: var(--gold);
  color: var(--navy);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bylaws-content article {
  border-bottom: 1px solid var(--gray-100);
  padding-bottom: 2.5rem;
  margin-bottom: 2.5rem;
}

.bylaws-content article:last-child { border-bottom: none; }

.bylaws-article-num {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.bylaws-content h2 {
  color: var(--navy);
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.bylaws-content h3 {
  color: var(--navy-mid);
  font-size: 1.05rem;
  margin: 1.25rem 0 0.5rem;
}

.bylaws-content p {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--gray-700);
  max-width: 72ch;
  margin-bottom: 0.75rem;
}

.bylaws-content ol {
  padding-left: 1.5rem;
  font-family: var(--font-serif);
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--gray-700);
}

.bylaws-content ol li { margin-bottom: 0.5rem; }

.bylaw-download-bar {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.bylaw-download-bar p {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  max-width: none;
}

.bylaw-download-bar h4 { color: var(--white); }

/* ——— Gallery Page ——— */
.gallery-section {
  padding: var(--section-pad);
  background: var(--white);
}

.gallery-filter-bar {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.filter-btn {
  padding: 0.5rem 1.2rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 2px solid var(--gray-300);
  background: transparent;
  color: var(--gray-700);
  cursor: pointer;
  transition: all 0.2s;
}

.filter-btn:hover,
.filter-btn.active {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}

.gallery-masonry {
  columns: 3;
  column-gap: 1rem;
}

.gallery-masonry-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-masonry-item .media-inner {
  width: 100%;
  aspect-ratio: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  min-height: 200px;
  transition: transform 0.4s;
}

.gallery-masonry-item:hover .media-inner { transform: scale(1.04); }

.gallery-masonry-item .media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10,22,40,0.75) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}

.gallery-masonry-item:hover .media-overlay { opacity: 1; }

.media-caption {
  color: var(--white);
  font-size: 0.83rem;
  font-weight: 500;
}

.video-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: rgba(245,200,0,0.9);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--navy);
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}

/* Video embed section */
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.video-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--navy);
  box-shadow: var(--shadow-md);
}

.video-thumb {
  position: relative;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  cursor: pointer;
}

.video-card-info { padding: 1.25rem; }
.video-card-info h4 { color: var(--white); font-size: 1rem; margin-bottom: 0.3rem; }
.video-card-info p  { color: rgba(255,255,255,0.6); font-size: 0.83rem; max-width: none; }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox.open { display: flex; }

.lightbox-inner {
  max-width: 900px;
  width: 100%;
  position: relative;
}

.lightbox-close {
  position: absolute;
  top: -2.5rem;
  right: 0;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0.7;
}

.lightbox-close:hover { opacity: 1; }

.lightbox-img {
  width: 100%;
  border-radius: var(--radius);
  font-size: 8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16/9;
  background: var(--navy-mid);
}

/* ——— Events Full Page ——— */
.events-full {
  padding: var(--section-pad);
  background: var(--white);
}

.events-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  margin-top: 3rem;
}

.event-card-full {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 1.5rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: stretch;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}

.event-card-full:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.event-date-col {
  background: var(--navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 1.25rem;
  min-width: 90px;
  text-align: center;
}

.event-month {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
}

.event-day-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.event-year {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
}

.event-body {
  padding: 1.4rem;
}

.event-type-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.65rem;
  border-radius: 100px;
  margin-bottom: 0.5rem;
}

.tag-networking  { background: rgba(245,200,0,0.1); color: var(--navy); }
.tag-workshop    { background: rgba(245,200,0,0.1); color: var(--gold); }
.tag-gala        { background: rgba(108,59,213,0.1); color: #6C3BD5; }
.tag-community   { background: rgba(201,74,60,0.1);  color: #C94A3C; }
.tag-conference  { background: rgba(10,22,40,0.08); color: var(--navy); }

.event-body h3 {
  color: var(--navy);
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.event-body p {
  font-size: 0.87rem;
  color: var(--gray-500);
  max-width: 55ch;
}

.event-location {
  font-size: 0.82rem;
  color: var(--navy);
  margin-top: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.event-action-col {
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 0.75rem;
  border-left: 1px solid var(--gray-100);
}

.event-price {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
}

.event-price .free { color: var(--navy); }

/* Calendar widget sidebar */
.sidebar-widget {
  background: var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.widget-header {
  background: var(--navy);
  color: var(--white);
  padding: 1rem 1.25rem;
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.widget-body { padding: 1.25rem; }

.mini-cal {
  width: 100%;
  border-collapse: collapse;
}

.mini-cal th {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-500);
  padding: 0.4rem 0;
  text-align: center;
}

.mini-cal td {
  text-align: center;
  padding: 0.35rem;
  font-size: 0.85rem;
  color: var(--gray-700);
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.15s;
}

.mini-cal td:hover { background: var(--gray-100); }

.mini-cal td.today {
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  font-weight: 700;
}

.mini-cal td.has-event {
  color: var(--gold);
  font-weight: 700;
}

.mini-cal td.has-event::after {
  content: '•';
  display: block;
  font-size: 0.4rem;
  margin-top: -3px;
  color: var(--gold);
}

/* ——— Contact / Join ——— */
.contact-section {
  padding: var(--section-pad);
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-top: 3rem;
}

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(245,200,0,0.1);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-info-block {
  padding: 1.5rem 0;
}

.contact-info-block h3 {
  color: var(--navy);
  margin-bottom: 1.5rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.info-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.info-item h4 { color: var(--navy); font-size: 0.9rem; margin-bottom: 0.2rem; }
.info-item p  { font-size: 0.88rem; color: var(--gray-500); max-width: none; }

/* ——— Utilities ——— */
.text-center { text-align: center; }
.text-gold   { color: var(--gold); }
.text-teal   { color: var(--navy); }
.text-white  { color: var(--white); }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.divider {
  height: 1px;
  background: var(--gray-100);
  margin: 3rem 0;
}

.section-actions {
  margin-top: 2.5rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ——— Responsive ——— */
@media (max-width: 1024px) {
  .hero-grid       { grid-template-columns: 1fr; text-align: center; }
  .hero-actions    { justify-content: center; }
  .hero-stats      { justify-content: center; }
  .hero-visual     { display: none; }
  .about-grid      { grid-template-columns: 1fr; }
  .about-image-stack { display: none; }
  .membership-tiers { grid-template-columns: 1fr 1fr; }
  .events-grid     { grid-template-columns: 1fr; }
  .news-grid       { grid-template-columns: 1fr 1fr; }
  .gallery-grid    { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .gallery-item:first-child { grid-column: span 2; grid-row: span 1; }
  .footer-grid     { grid-template-columns: 1fr 1fr; }
  .board-grid      { grid-template-columns: 1fr 1fr; }
  .officers-grid   { grid-template-columns: 1fr 1fr; }
  .events-layout   { grid-template-columns: 1fr; }
  .contact-grid    { grid-template-columns: 1fr; }
  .bylaws-layout   { grid-template-columns: 1fr; }
  .bylaws-nav      { position: static; }
  .video-grid      { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-menu    { display: none; }
  .nav-toggle  { display: flex; }
  .nav-menu.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--navy);
    padding: 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .membership-tiers { grid-template-columns: 1fr; }
  .news-grid       { grid-template-columns: 1fr; }
  .board-grid      { grid-template-columns: 1fr; }
  .officers-grid   { grid-template-columns: 1fr 1fr; }
  .gallery-masonry { columns: 2; }
  .event-card-full { grid-template-columns: auto 1fr; }
  .event-action-col { grid-column: span 2; border-top: 1px solid var(--gray-100); border-left: none; flex-direction: row; justify-content: space-between; }
  .footer-grid     { grid-template-columns: 1fr; }
  .form-row        { grid-template-columns: 1fr; }
  .gallery-grid    { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
