/* Interact Club of Little Angels — blue design system */

:root {
  --pink: #1565C0;
  --pink-dark: #0D47A1;
  --pink-light: #42A5F5;
  --gold: #FFB300;
  --gold-dark: #FF8F00;
  --ink: #0f1724;
  --ink-soft: #4a5568;
  --ink-faint: #8a94a6;
  --paper: #ffffff;
  --paper-alt: #f0f5fb;
  --paper-warm: #f5f9ff;
  --line: #dce4ef;
  --line-soft: #e8eef6;
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;
  --max: 1160px;
  --shadow-sm: 0 2px 10px rgba(15, 23, 36, 0.06);
  --shadow-md: 0 12px 32px rgba(21, 101, 192, 0.12), 0 2px 8px rgba(15, 23, 36, 0.05);
  --shadow-lg: 0 24px 64px rgba(21, 101, 192, 0.16), 0 4px 16px rgba(15, 23, 36, 0.06);
  --font-heading: "Outfit", -apple-system, sans-serif;
  --font-body: "Karla", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ease: cubic-bezier(.19,1,.22,1);
}

* { box-sizing: border-box; }

[hidden] { display: none !important; }

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--pink); text-decoration: none; }
a:hover { text-decoration: underline; }

::selection { background: var(--pink); color: #fff; }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
}

h1, h2, h3 {
  font-family: var(--font-heading);
  line-height: 1.15;
  margin: 0 0 0.5em;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 6vw, 4.4rem); font-weight: 700; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); }
h3 { font-size: 1.2rem; }

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 16px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 32px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-dark) 100%);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: .01em;
  border: 1px solid transparent;
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s ease;
  cursor: pointer;
}
.btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}
.btn:active { transform: translateY(-1px); }
.btn.outline {
  background: none;
  border: 1.5px solid var(--line);
  color: var(--ink);
  box-shadow: none;
}
.btn.outline:hover {
  border-color: var(--pink);
  color: var(--pink);
  background: var(--paper-alt);
  box-shadow: var(--shadow-sm);
}
.btn.on-dark {
  background: #fff;
  color: var(--pink-dark);
}
.btn.on-dark:hover { background: var(--gold); color: #fff; }
.btn.outline.on-dark {
  border-color: rgba(255,255,255,0.6);
  color: #fff;
  background: transparent;
}
.btn.outline.on-dark:hover {
  border-color: #fff;
  background: #fff;
  color: var(--pink-dark);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, box-shadow .3s ease;
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 4px 24px rgba(26,20,24,0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 12px;
  padding-bottom: 12px;
  max-width: none;
  padding-left: 20px;
  padding-right: 20px;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 22px;
}

.header-social {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-left: 18px;
  border-left: 1px solid var(--line);
}
.header-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--paper-alt);
  color: var(--pink);
  transition: color .2s ease, background .2s ease, transform .2s ease;
}
.header-social a:hover {
  color: #fff;
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
  transform: translateY(-2px);
  text-decoration: none;
}
@media (max-width: 700px) {
  .header-social { display: none; }
}

.letterhead {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}
.letterhead img {
  height: auto;
  width: auto;
  max-height: 38px;
  max-width: 150px;
  object-fit: contain;
}
.letterhead-rule {
  width: 1px;
  height: 26px;
  background: var(--line);
}

nav.main-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 0;
  padding: 0;
}

nav.main-nav a {
  color: var(--ink);
  font-weight: 600;
  font-size: 0.76rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding-bottom: 5px;
  border-bottom: 2px solid transparent;
  transition: color .2s ease, border-color .2s ease;
}
nav.main-nav a:hover { color: var(--pink); border-color: var(--gold); text-decoration: none; }
nav.main-nav a.active { color: var(--pink); border-color: var(--pink); }

nav.main-nav a.join {
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
  color: #fff;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  border-bottom: none;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
nav.main-nav a.join:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  transition: transform .2s ease, opacity .2s ease;
}

/* Decorative layer */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}
.blob-pink { background: radial-gradient(circle, rgba(21,101,192,0.3), transparent 70%); }
.blob-gold { background: radial-gradient(circle, rgba(255,179,0,0.3), transparent 70%); }

.wheel-mark {
  position: absolute;
  pointer-events: none;
  opacity: 0.05;
  z-index: 0;
  user-select: none;
}
@media (prefers-reduced-motion: no-preference) {
  .wheel-mark.spin { animation: spin 120s linear infinite; }
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Cinematic Hero */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(8,20,40,0.5) 0%, rgba(8,20,40,0.7) 55%, rgba(5,12,28,0.92) 100%),
    linear-gradient(120deg, rgba(21,101,192,0.35), rgba(5,12,28,0.1) 60%);
}
.hero-center {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding: 140px 0 100px;
}
.hero-center .eyebrow {
  color: var(--gold);
  justify-content: center;
}
.hero-center .eyebrow::before { background: var(--gold); }
.hero h1 {
  color: #fff;
  margin-bottom: 22px;
  text-shadow: 0 4px 30px rgba(0,0,0,0.25);
}
.hero-rule {
  width: 64px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--pink-light));
  margin: 0 auto 26px;
}
.hero-lead {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.88);
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}
.hero-actions {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  margin-top: 32px;
  flex-wrap: wrap;
}
.btn.outline.on-dark {
  border-color: rgba(255, 255, 255, 0.4) !important;
  color: #ffffff !important;
  background: transparent !important;
}
.btn.outline.on-dark:hover {
  border-color: #ffffff !important;
  background: rgba(255, 255, 255, 0.18) !important;
  color: #ffffff !important;
}
.hero-scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: var(--radius-pill);
  display: flex;
  justify-content: center;
  padding-top: 8px;
}
.hero-scroll-cue span {
  width: 4px;
  height: 8px;
  border-radius: 2px;
  background: var(--gold);
}
@media (prefers-reduced-motion: no-preference) {
  .hero-scroll-cue span { animation: scrollcue 1.8s ease-in-out infinite; }
}
@keyframes scrollcue {
  0% { transform: translateY(0); opacity: 1; }
  60% { transform: translateY(10px); opacity: 0.2; }
  100% { transform: translateY(0); opacity: 1; }
}

/* Generic section */
.section {
  padding: 108px 0;
  position: relative;
  overflow: hidden;
}
.section-alt { background: var(--paper-alt); }
.section-warm { background: var(--paper-warm); }
.section-dark {
  background: linear-gradient(135deg, var(--ink) 0%, #0d2847 100%);
  color: #fff;
}
.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
  position: relative;
  z-index: 1;
}
.section-head p { margin-bottom: 0; }
.section-head.left { margin-left: 0; text-align: left; }

.section > .wrap { position: relative; z-index: 1; }

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  counter-reset: card;
}
.card {
  position: relative;
  padding: 36px 30px 30px;
  background: var(--paper);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  counter-increment: card;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  border-top: none;
  border-left: 4px solid var(--pink);
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-left-color: var(--gold); }
.card::before {
  content: counter(card, decimal-leading-zero);
  position: absolute;
  top: 14px;
  right: 20px;
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(21, 101, 192, 0.08);
  line-height: 1;
  pointer-events: none;
}
.card h3 { margin-bottom: 10px; padding-right: 30px; }
.card p { margin-bottom: 0; }

/* CTA band */
.cta-band {
  position: relative;
  background: linear-gradient(160deg, #0D47A1 0%, #1565C0 40%, #1976D2 100%);
  color: #fff;
  text-align: center;
  padding: 80px 0;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,179,0,0.15), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,0.88); }
.cta-band .btn {
  background: #fff;
  color: var(--pink-dark);
  box-shadow: 0 12px 32px rgba(0,0,0,0.18);
}
.cta-band .btn:hover {
  background: var(--gold);
  color: #fff;
}

/* Page header (non-home pages) */
.page-header {
  padding: 80px 0 60px;
  text-align: center;
  background: linear-gradient(180deg, #e8f0fe 0%, var(--paper) 100%);
  position: relative;
  overflow: hidden;
}
.page-header p { max-width: 640px; margin: 0 auto; }
.page-header .eyebrow { justify-content: center; }

/* About page */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 30px;
}
.stat {
  text-align: center;
  padding: 26px 10px;
  background: var(--paper);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.stat strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  background: linear-gradient(135deg, var(--pink), var(--gold-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat span {
  font-size: 0.8rem;
  color: var(--ink-soft);
}

/* About photo card (home page) */
.about-photo-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: rotate(-1deg);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
  aspect-ratio: 4 / 3;
  border: 3px solid rgba(21,101,192,0.15);
}
.about-photo-card:hover {
  transform: rotate(0deg) scale(1.02);
  box-shadow: 0 32px 80px rgba(21,101,192,0.18), 0 4px 20px rgba(15,23,36,0.08);
}
.about-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s var(--ease);
}
.about-photo-card:hover img {
  transform: scale(1.05);
}
.about-photo-badge {
  position: absolute;
  bottom: 18px;
  left: 18px;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: var(--radius-pill);
  padding: 10px 20px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.about-photo-badge-num {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.about-photo-badge-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
}

/* Impact statistics band */
.stats-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.stat-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  text-align: center;
  backdrop-filter: blur(6px);
  transition: transform .4s var(--ease), background .3s ease;
}
.stat-card:hover { transform: translateY(-6px); background: rgba(255,255,255,0.1); }
.stat-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--pink));
  color: #fff;
}
.stat-icon svg { width: 24px; height: 24px; }
.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-number .plus { color: var(--gold); }
.stat-label {
  font-size: 0.85rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  font-weight: 600;
}

/* BOD page */
.follow-row {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin: 0 0 8px;
}
.bod-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.bod-card {
  text-align: center;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 28px 24px 30px;
  box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.bod-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.bod-card--featured {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: -10px;
  padding: 34px 30px 36px;
  background: linear-gradient(135deg, var(--paper-warm), var(--paper));
  border: 1px solid rgba(247,168,27,0.35);
  box-shadow: var(--shadow-md);
}
.avatar {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.3rem;
  margin: 0 auto 18px;
  overflow: hidden;
  position: relative;
}
.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.bod-card:hover .avatar img { transform: scale(1.06); }
.bod-card h3 { margin-bottom: 2px; }
.bod-role {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--pink);
  font-weight: 700;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 10px;
}
.bod-card p { font-size: 0.9rem; margin-bottom: 0; }

.section-more {
  text-align: center;
  margin-top: 48px;
}

.board-collage {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 16px;
  max-width: 940px;
  margin: 0 auto;
}
.board-collage figure {
  margin: 0;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.board-collage figure:nth-child(3n+1) { transform: rotate(-1.4deg); }
.board-collage figure:nth-child(3n+2) { transform: rotate(1deg); }
.board-collage figure:nth-child(3n) { transform: rotate(-0.5deg); }
.board-collage figure:hover {
  transform: translateY(-6px) rotate(0deg) scale(1.04);
  box-shadow: var(--shadow-md);
  z-index: 2;
}
.board-collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s var(--ease);
}
.board-collage figure:hover img { transform: scale(1.08); }

/* Testimonials / leadership messages */
.message-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.message-card {
  position: relative;
  display: flex;
  align-items: stretch;
  gap: 0;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.6);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.message-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.message-card::before {
  content: "\201C";
  position: absolute;
  top: 10px;
  right: 24px;
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
}
.message-card img {
  width: 38%;
  max-width: 200px;
  flex-shrink: 0;
  object-fit: cover;
}
.message-body {
  padding: 30px 32px;
  min-width: 0;
}
.message-quote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 0.84rem;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 16px;
}
.message-body h3 { margin-bottom: 2px; }
.message-role {
  color: var(--pink);
  font-weight: 700;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.edit-note {
  border: 1px dashed var(--pink);
  background: var(--paper-alt);
  color: var(--pink-dark);
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  margin-bottom: 32px;
}

/* Completed project cards */
.project-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.project-card {
  background: var(--paper);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.project-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.project-photos {
  display: grid;
  gap: 3px;
  height: 260px;
  overflow: hidden;
}
.project-photos.grid-3 { grid-template-columns: 2fr 1fr; grid-template-rows: 1fr 1fr; }
.project-photos.grid-3 img:first-child { grid-row: span 2; }
.project-photos.grid-2 { grid-template-columns: 1fr 1fr; grid-template-rows: 1fr; }
.project-photos.grid-1 { grid-template-columns: 1fr; grid-template-rows: 1fr; }
.project-photos img {
  width: 100%;
  height: 100%;
  min-height: 0;
  min-width: 0;
  object-fit: cover;
  display: block;
  transition: transform .6s var(--ease);
}
.project-photos img:hover { transform: scale(1.06); }
.project-body { padding: 26px 28px 30px; }

/* Homepage project highlights */
.project-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}
.project-highlight {
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--paper);
  color: var(--ink);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.project-highlight:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}
.project-highlight img {
  width: 100%;
  height: 200px;
  min-height: 0;
  object-fit: cover;
  display: block;
  transition: transform .6s var(--ease);
}
.project-highlight:hover img { transform: scale(1.08); }
.project-highlight span {
  display: block;
  padding: 16px 18px;
  font-family: var(--font-heading);
  font-weight: 600;
  text-align: center;
}
.project-body h3 { margin-bottom: 8px; }
.project-body p { margin-bottom: 0; font-size: 0.93rem; }

/* Coming-soon placeholder pattern (shared: projects, gallery, partners, timeline) */
.coming-soon {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  padding: 24px 0 8px;
}
.coming-soon p:last-child { margin-bottom: 0; }

.placeholder-panel {
  position: relative;
  border: 1px dashed var(--line);
  border-radius: var(--radius-lg);
  padding: 56px 32px;
  text-align: center;
  background: var(--paper);
}

/* Milestone grid */
.milestone-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 48px;
}
@media (max-width: 1100px) { .milestone-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px)  { .milestone-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .milestone-grid { grid-template-columns: 1fr; } }

.milestone-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}
.milestone-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.milestone-card--current {
  border-color: var(--pink);
  background: linear-gradient(145deg, #f0f5fb, #fff);
  box-shadow: 0 0 0 2px rgba(21,101,192,0.08);
}
.milestone-year {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, var(--pink), var(--gold));
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: .06em;
}
.milestone-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--paper-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink);
  flex-shrink: 0;
}
.milestone-icon svg { width: 22px; height: 22px; }
.milestone-card h4 {
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 600;
  margin: 0;
  color: var(--ink);
  line-height: 1.35;
}
.milestone-card p {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.65;
}

/* Gallery masonry placeholder */
.gallery-placeholder {
  column-count: 3;
  column-gap: 20px;
  margin-bottom: 8px;
}
.gallery-tile {
  break-inside: avoid;
  margin-bottom: 20px;
  border-radius: var(--radius);
  background: linear-gradient(145deg, var(--line-soft), var(--paper-alt));
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.gallery-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.gallery-tile svg { width: 30px; height: 30px; color: var(--ink-faint); }
.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .6s var(--ease);
}
.gallery-tile:hover img { transform: scale(1.06); }
.gallery-tile:nth-child(1) { height: 220px; }
.gallery-tile:nth-child(2) { height: 260px; }
.gallery-tile:nth-child(3) { height: 190px; }
.gallery-tile:nth-child(4) { height: 240px; }
.gallery-tile:nth-child(5) { height: 200px; }
.gallery-tile:nth-child(6) { height: 250px; }
.gallery-tile:nth-child(7) { height: 220px; }
.gallery-caption {
  text-align: center;
  margin-top: 24px;
}

/* Timeline placeholder */
.timeline {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
  padding-left: 34px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: linear-gradient(180deg, var(--pink), var(--gold));
  opacity: 0.35;
}
.timeline-item {
  position: relative;
  padding-bottom: 34px;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: "";
  position: absolute;
  left: -34px;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--paper);
  border: 3px solid var(--pink);
}
.timeline-item h3 { margin-bottom: 4px; font-size: 1.05rem; }
.timeline-item p { margin-bottom: 0; font-size: 0.92rem; }

/* Contact page */
.contact-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}
.contact-tile {
  text-align: center;
  background: var(--paper);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 38px 20px;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  border-top: none;
  border-left: 4px solid var(--pink);
}
.contact-tile:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.contact-tile .eyebrow { margin-bottom: 12px; justify-content: center; }
.contact-tile a,
.contact-tile span.value {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  word-break: break-word;
}
.contact-tile a:hover { color: var(--pink); }

.follow-panel { text-align: center; }
.follow-panel h3 { margin-bottom: 16px; }
.social-links {
  display: flex;
  justify-content: center;
  gap: 14px;
}
.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  transition: color .2s ease, border-color .2s ease, transform .3s var(--ease), background .2s ease;
}
.social-links a:hover {
  border-color: var(--pink);
  color: #fff;
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
  text-decoration: none;
  transform: translateY(-3px);
}

.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-top: 56px;
}
.map-embed iframe {
  width: 100%;
  height: 320px;
  border: 0;
  display: block;
  filter: grayscale(0.2) contrast(1.05);
}

/* Enhanced Contact Page */
.contact-page-header { overflow: hidden; }
.contact-main-section { padding-top: 72px; }
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}
.contact-info-col h2 { margin-bottom: 12px; }
.contact-info-col > p { color: var(--ink-soft); margin-bottom: 36px; }
.contact-info-list { display: flex; flex-direction: column; gap: 4px; margin-bottom: 36px; }
.contact-info-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--ink);
  transition: background 0.25s ease, transform 0.25s var(--ease);
}
.contact-info-row:hover { background: var(--paper-alt); transform: translateX(4px); text-decoration: none; }
.contact-info-row.no-link { cursor: default; }
.contact-info-row.no-link:hover { transform: none; background: none; }
.contact-info-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--pink), var(--gold));
  display: flex; align-items: center; justify-content: center; color: #fff;
}
.contact-info-icon svg { width: 20px; height: 20px; }
.contact-info-label {
  display: block; font-size: 0.72rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--ink-faint); margin-bottom: 2px;
}
.contact-info-value {
  display: block; font-family: var(--font-heading);
  font-size: 0.98rem; font-weight: 600; color: var(--ink);
}
.contact-social-block { margin-top: 8px; }
.contact-social-label {
  font-size: 0.78rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--ink-faint); margin-bottom: 12px;
}
.contact-map-col { position: relative; }
.contact-map-wrap {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); height: 420px;
}
.contact-map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; filter: grayscale(0.15) contrast(1.05); }
.contact-map-caption { font-size: 0.82rem; color: var(--ink-faint); text-align: center; margin-top: 12px; font-style: italic; }
@media (max-width: 860px) {
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .contact-map-wrap { height: 300px; }
}

/* Footer */
.site-footer {
  background: linear-gradient(180deg, #0a1628 0%, #060e1c 100%);
  padding: 72px 0 28px;
  color: #b0bfd0;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-grid h4 {
  font-family: var(--font-heading);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 18px;
}
.footer-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-grid li { margin-bottom: 11px; }
.footer-grid a { color: #8a9bb5; font-size: 0.92rem; transition: color .2s ease; }
.footer-grid a:hover { color: var(--gold); text-decoration: none; }
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-brand img {
  height: 38px;
  background: #fff;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
}
.footer-brand strong { font-family: var(--font-heading); color: #fff; font-size: 1.1rem; }
.footer-grid p { font-size: 0.92rem; margin-bottom: 0; color: #8a9bb5; }
.footer-badges {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}
.footer-badges img {
  height: 34px;
  background: #fff;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
}
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 50%;
  color: #b0bfd0;
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}
.footer-social a:hover {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, var(--pink), var(--gold));
  text-decoration: none;
}
.newsletter-form {
  display: flex;
  gap: 0;
  margin-top: 4px;
  border-radius: var(--radius-pill);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.04);
}
.newsletter-form input {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: none;
  padding: 13px 18px;
  color: #fff;
  font: inherit;
  font-size: 0.9rem;
}
.newsletter-form input::placeholder { color: #6b7d96; }
.newsletter-form input:focus { outline: none; }
.newsletter-form button {
  border: none;
  padding: 13px 22px;
  background: linear-gradient(135deg, var(--pink), var(--gold-dark));
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  white-space: nowrap;
  transition: filter .2s ease;
}
.newsletter-form button:hover { filter: brightness(1.1); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 22px;
  font-size: 0.8rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  color: #5a6e87;
}

/* Scroll reveal (progressive enhancement fallback when GSAP is unavailable) */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .wheel-mark.spin { animation: none; }
  .hero-scroll-cue span { animation: none; }
}

/* Join form */
.wrap-narrow { max-width: 720px; }

.join-form-section .wrap-narrow {
  background: var(--paper);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 48px;
  margin-top: -40px;
  position: relative;
  z-index: 2;
}

.form-progress {
  display: flex;
  justify-content: space-between;
  list-style: none;
  margin: 0 0 48px;
  padding: 0;
  gap: 8px;
  flex-wrap: wrap;
}
.form-progress li {
  position: relative;
  flex: 1;
  min-width: 90px;
  text-align: center;
  padding-top: 14px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--ink-soft);
  border-top: 3px solid var(--line);
}
.form-progress li.is-active {
  color: var(--pink);
  border-top-color: var(--pink);
}
.form-progress li.is-done {
  color: var(--ink);
  border-top-color: var(--gold);
}

.form-step { display: none; }
.form-step.is-active { display: block; }
.form-step-title {
  margin-bottom: 24px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.field { margin-bottom: 26px; }
.field label {
  display: block;
  font-weight: 700;
  font-size: 0.92rem;
  margin-bottom: 10px;
  color: var(--ink);
}
.field .req { color: var(--pink); }
.field input[type="text"],
.field input[type="date"],
.field input[type="tel"],
.field input[type="email"] {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  font: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--paper);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field input:focus {
  outline: none;
  border-color: var(--pink);
  box-shadow: 0 0 0 4px rgba(21,101,192,0.1);
}

.form-note { font-size: 0.88rem; margin-bottom: 14px; }

.qr-image {
  width: 220px;
  max-width: 100%;
  margin: 0 auto 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px;
  background: var(--paper);
}

.option-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.option {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 400;
  font-size: 0.95rem;
  color: var(--ink);
  cursor: pointer;
  padding: 12px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  transition: border-color .2s ease, background .2s ease;
}
.option:hover { border-color: var(--pink); }
.option input { margin-top: 3px; accent-color: var(--pink); flex-shrink: 0; }
.option:has(input:checked) {
  border-color: var(--pink);
  background: var(--paper-alt);
}

.form-error {
  color: var(--pink-dark);
  font-weight: 600;
  font-size: 0.9rem;
}

.form-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 20px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.form-nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-left: auto;
}

.form-review { margin-bottom: 20px; }
.review-list {
  margin: 0;
  border-top: 1px solid var(--line);
}
.review-list dt {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--ink-soft);
  padding: 12px 0 2px;
  border-bottom: 1px solid transparent;
}
.review-list dd {
  margin: 0;
  padding: 0 0 12px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.95rem;
}

.form-success {
  text-align: center;
  padding: 48px 24px;
  border: 1px dashed var(--pink);
  border-radius: var(--radius);
  background: var(--paper-alt);
}
.form-success h2 { color: var(--pink-dark); }
.form-success p { margin-bottom: 0; }

/* Responsive */
@media (max-width: 860px) {
  .cards { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .bod-grid { grid-template-columns: repeat(2, 1fr); }
  .message-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .stats-band { grid-template-columns: 1fr; }
  .gallery-placeholder { column-count: 2; }
  .project-grid { grid-template-columns: 1fr; }
  .project-highlights { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 700px) {
  .nav-toggle { display: block; }
  nav.main-nav {
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    max-width: 100vw;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    display: none;
    padding: 10px 24px 20px;
  }
  nav.main-nav.open { display: block; }
  nav.main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  nav.main-nav a.join { display: inline-block; }
  .stat-row { grid-template-columns: 1fr; }
  .contact-tiles { grid-template-columns: 1fr; }
  .letterhead img { max-height: 32px; max-width: 110px; }
  .letterhead { gap: 8px; }
  .letterhead-rule { height: 20px; }
  .form-progress li { font-size: 0.62rem; min-width: 60px; }
  .join-form-section .wrap-narrow { padding: 28px 20px; margin-top: -20px; }
  .bod-card--featured { padding: 24px; }
}

@media (max-width: 520px) {
  .bod-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .gallery-placeholder { column-count: 1; }
  .project-highlights { grid-template-columns: 1fr; }
}

@media (max-width: 420px) {
  .wrap { padding: 0 18px; }
  .letterhead { gap: 8px; }
  .letterhead img { max-height: 26px; max-width: 78px; }
  .letterhead-rule { display: none; }
}

/* ─── Scroll-reveal CSS fallback (no-JS / no-GSAP) ─── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* will-change hints for smoother GPU compositing */
.card, .stat-card, .bod-card, .message-card,
.project-card, .project-highlight, .gallery-tile,
.contact-tile, .board-collage figure, .timeline-item {
  will-change: transform, opacity;
}

/* Smooth scroll for in-page anchor links */
a[href^="#"] {
  scroll-behavior: smooth;
}


/* --- NEW MODERN LAYOUT STYLES --- */

/* About Section */
.about-grid-new { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-images { position: relative; }
.about-images .img-main { width: 100%; border-radius: var(--radius-lg); aspect-ratio: 1/1; object-fit: cover; }
.about-floating-stat { position: absolute; bottom: 20px; right: -20px; background: var(--pink); color: #fff; padding: 20px 30px; border-radius: var(--radius); box-shadow: var(--shadow-lg); display: flex; flex-direction: column; align-items: center; }
.about-floating-stat strong { font-size: 2rem; line-height: 1; font-family: var(--font-heading); }
.about-floating-stat span { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; opacity: 0.8; }
@media (max-width: 900px) { .about-grid-new { grid-template-columns: 1fr; } .about-floating-stat { right: 20px; } }

/* Section Head New */
.section-head-new { margin-bottom: 48px; }
.section-head-new.center { text-align: center; display: flex; flex-direction: column; align-items: center; }
.section-head-new h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 12px; }
.section-head-new p { font-size: 1.1rem; color: var(--ink-soft); }

/* Pillars (Mission/Vision) */
.pillars-container { display: flex; gap: 40px; flex-wrap: wrap; }
.pillar { flex: 1; min-width: 250px; border-left: 2px solid var(--line); padding-left: 24px; transition: border-color .3s ease; }
.pillar:hover { border-color: var(--pink); }
.pillar-num { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700; color: var(--pink); margin-bottom: 16px; }
.pillar h3 { font-size: 1.4rem; margin-bottom: 12px; }

/* Minimal Stats */
.stats-minimal { display: flex; justify-content: space-around; align-items: center; padding: 60px 40px; background: var(--paper-warm); border-radius: var(--radius-lg); flex-wrap: wrap; gap: 40px; }
.stat-item { text-align: center; }
.stat-item strong { display: block; font-size: 3.5rem; font-family: var(--font-heading); font-weight: 800; color: var(--ink); line-height: 1; }
.stat-item span { display: block; font-size: 1rem; color: var(--ink-soft); font-weight: 500; margin-top: 8px; }
.stat-divider { width: 1px; height: 80px; background: var(--line); }
@media (max-width: 768px) { .stats-minimal { flex-direction: column; } .stat-divider { width: 80px; height: 1px; } }

/* Featured Projects New */
.projects-grid-new { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.project-card-new { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; }
.project-card-new img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.project-card-new:hover img { transform: scale(1.05); }
.project-overlay-new { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%); display: flex; align-items: flex-end; padding: 32px; }
.project-overlay-new h3 { color: #fff; margin: 0; font-size: 1.5rem; }
@media (max-width: 768px) { .projects-grid-new { grid-template-columns: 1fr; } }

/* Avatars Strip */
.section-compact { padding: 48px 0 !important; }
.avatar-strip { 
  display: grid; 
  grid-template-columns: repeat(6, 1fr); 
  gap: 20px; 
  padding-top: 16px; 
}
.avatar-item { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 8px; }
.avatar-item img { width: 90px; height: 90px; border-radius: 50%; object-fit: cover; border: 3px solid var(--paper-alt); transition: transform .3s ease; }
.avatar-item:hover img { transform: translateY(-5px); border-color: var(--pink-light); }
.avatar-item span { font-weight: 600; font-size: 0.9rem; color: var(--ink); line-height: 1.2; }

@media (max-width: 900px) {
  .avatar-strip { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 500px) {
  .avatar-strip { grid-template-columns: repeat(2, 1fr); }
}

/* Board Clean */
.board-grid-clean { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 32px; }
.board-member { text-align: center; }
.board-member img { width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: var(--radius); margin-bottom: 16px; }
.board-member h5 { font-size: 1.1rem; margin: 0 0 4px; }
.board-member h6 { font-size: 0.8rem; color: var(--pink); margin: 0; text-transform: uppercase; letter-spacing: 0.05em; }

/* Gallery Grid Clean */
.gallery-grid-clean { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery-grid-clean img { width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: var(--radius); }
@media (max-width: 768px) { .gallery-grid-clean { grid-template-columns: repeat(2, 1fr); } }

/* CTA Box */
.cta-box { background: var(--pink); color: #fff; text-align: center; padding: 80px 40px; border-radius: var(--radius-lg); }
.cta-box h2 { color: #fff; font-size: 2.5rem; }
.cta-box p { color: rgba(255,255,255,0.9); font-size: 1.1rem; max-width: 500px; margin: 0 auto 32px; }
.cta-box .btn { background: #fff; color: var(--pink); border: none; }
.cta-box .btn:hover { background: var(--paper-warm); color: var(--pink-dark); }

/* --- OVERRIDES FOR BLUE HEADER & LIGHT FOOTER --- */
.site-header { background: var(--pink) !important; border-bottom: none !important; padding: 12px 0 !important; }
.header-logo-link { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.header-wheel-only { height: 44px; width: auto; filter: brightness(0) invert(1); }
.header-club-name { color: #fff; font-family: var(--font-heading); font-weight: 700; font-size: 1.15rem; white-space: nowrap; margin-top:0;}
.main-nav ul li a { color: rgba(255,255,255,0.8) !important; font-weight: 500 !important; }
.main-nav ul li a:hover, .main-nav ul li a.active { color: #fff !important; }
.main-nav ul li a.active::after { background: #fff !important; }
.nav-toggle span { background: #fff !important; }
.letterhead-rule { display: none !important; }

.site-footer { background: #E3F2FD !important; color: var(--ink) !important; padding: 60px 0 30px !important; border-top: 1px solid var(--line-soft) !important; }
.site-footer strong { color: var(--pink-dark) !important; font-size: 1.2rem; }
.site-footer h4 { color: var(--pink-dark) !important; font-family: var(--font-heading); }
.site-footer ul li a { color: var(--ink-soft) !important; }
.site-footer ul li a:hover { color: var(--pink) !important; }
.footer-bottom { border-top: 1px solid rgba(21, 101, 192, 0.1) !important; padding-top: 30px !important; margin-top: 40px !important; }
.footer-bottom span { color: var(--ink-soft) !important; }
.footer-social a { background: #fff; color: var(--pink) !important; padding: 8px; border-radius: 50%; box-shadow: var(--shadow-sm); transition: transform 0.3s; display: inline-flex; align-items: center; justify-content: center;}
.footer-social a:hover { transform: translateY(-3px); }

.social-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--paper-alt);
  color: var(--pink) !important;
  border: 1px solid var(--line);
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}
.social-icon-btn:hover {
  background: var(--pink) !important;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Hero Split White */
.hero-blue { background: #ffffff; color: var(--ink); padding: 80px 0 100px; position: relative; overflow: hidden; margin-top:-1px; }
.hero-blue::after { content: ''; position: absolute; bottom: -50px; right: -50px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(21,101,192,0.06), transparent 70%); border-radius: 50%; pointer-events: none; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center; }
.hero-text h1 { color: var(--ink); margin-bottom: 24px; font-size: clamp(2.5rem, 5vw, 4rem); letter-spacing: -0.02em; line-height: 1.1; }
.hero-text p { color: var(--ink-soft); font-size: 1.15rem; max-width: 500px; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap;}
.hero-actions .btn { background: linear-gradient(135deg, var(--pink) 0%, var(--pink-dark) 100%) !important; color: #fff !important; border:none;}
.hero-actions .btn.outline { background: transparent !important; color: var(--ink) !important; border: 2px solid var(--line) !important; }
.hero-actions .btn.outline:hover { border-color: var(--pink) !important; color: var(--pink) !important; background: var(--paper-alt) !important; }
.hero-image { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); border: 4px solid rgba(255,255,255,0.1); }
.hero-image img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; } }

/* Past Presidents Search Bar */
.pp-search-container {
  max-width: 520px;
  margin: 0 auto 48px;
  position: relative;
}

.pp-search-container::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%231565C0' stroke-width='2.2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M21 21l-6-6m2-5a7 7 0 11-14 0 7 7 0 0114 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  pointer-events: none;
  z-index: 2;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.pp-search-container:focus-within::before {
  opacity: 1;
}

.pp-search-input {
  width: 100%;
  padding: 16px 20px 16px 50px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
  background: var(--paper);
  border: 2px solid var(--line);
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 16px rgba(21, 101, 192, 0.06);
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}

.pp-search-input::placeholder {
  color: var(--ink-faint);
  font-weight: 400;
}

.pp-search-input:focus {
  outline: none;
  border-color: var(--pink);
  box-shadow: 0 8px 24px rgba(21, 101, 192, 0.15);
  transform: translateY(-2px);
}
