/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img, video, iframe { max-width: 100%; height: auto; display: block; }
input, select, textarea, button { font-size: 16px; }

/* === DESIGN TOKENS === */
:root {
  --color-primary: #b80000;
  --color-accent: #c8922a;
  --color-text: #222;
  --color-bg: #fff;
  --color-muted: #f5f6f8;
  --color-btn-text: #fff;
  --color-border: #dde1e6;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --radius: 6px;
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 40px;
  --space-xl: 64px;
}

/* === BASE === */
html { scroll-behavior: smooth; }

body {
  padding-top: 70px;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.25;
  color: var(--color-primary);
}

h1 { font-size: 2rem; }
h2 { font-size: 1.5rem; }
h3 { font-size: 1.15rem; }

a { color: var(--color-primary); }
a:hover { color: var(--color-accent); }

.container {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}

/* === HEADER === */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
}

.logo {
  height: 50px;
  width: auto;
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  cursor: pointer;
  padding: 10px;
}

.hamburger span {
  display: block;
  height: 2px;
  background: var(--color-primary);
  border-radius: 1px;
}

/* Nav - mobile default */
.main-nav {
  display: none;
  position: absolute;
  top: 70px;
  left: 0;
  right: 0;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
}

.main-nav.open {
  display: block;
}

.nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.nav-list a,
.dropdown-toggle {
  display: block;
  padding: 12px 16px;
  text-decoration: none;
  color: var(--color-text);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: background-color 0.2s;
}

.nav-list a:hover,
.dropdown-toggle:hover {
  background: var(--color-muted);
  color: var(--color-accent);
}

.nav-list a[aria-current="page"] {
  color: var(--color-accent);
  font-weight: 600;
}

a.donate-btn,
button.donate-btn {
  color: var(--color-btn-text);
  background: var(--color-accent);
  border: none;
  border-radius: var(--radius);
  text-align: center;
  font-weight: 600;
  padding: 10px 20px;
  transition: background-color 0.2s;
}

a.donate-btn:hover,
button.donate-btn:hover {
  background: #b07f1f;
  color: var(--color-btn-text);
}

/* Dropdowns */
.has-dropdown {
  position: relative;
}

.dropdown {
  list-style: none;
  display: none;
  padding-left: 16px;
  background: var(--color-muted);
}

.dropdown.open {
  display: block;
}

/* Desktop nav */
@media (min-width: 768px) {
  .hamburger {
    display: none;
  }

  .main-nav {
    display: block;
    position: static;
    border-bottom: none;
    box-shadow: none;
  }

  .nav-list {
    flex-direction: row;
    align-items: center;
    gap: 4px;
  }

  .nav-list a,
  .dropdown-toggle {
    padding: 8px 12px;
    white-space: nowrap;
    border-radius: var(--radius);
  }

  .has-dropdown {
    position: relative;
  }

  .dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    min-width: 200px;
    z-index: 100;
    padding-left: 0;
    box-shadow: var(--shadow-md);
  }

  .dropdown a {
    border-radius: 0;
  }

  .dropdown.open {
    display: block;
  }
}

/* === SECTIONS === */
section {
  padding: var(--space-lg) 0;
}

.page-heading {
  margin-bottom: var(--space-md);
}

/* === HERO === */
.hero {
  text-align: center;
  padding: var(--space-xl) 0;
  background: linear-gradient(135deg, #1a1a1a 0%, var(--color-primary) 100%);
  color: #fff;
}

.hero h1 {
  color: #fff;
  font-size: 2.25rem;
  margin: var(--space-xs) 0;
}

.hero p {
  margin: var(--space-xs) 0;
  font-size: 1.1rem;
  opacity: 0.92;
}

.hero p:first-child {
  color: var(--color-accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
  opacity: 1;
}

/* === WHAT WE OFFER === */
.what-we-offer {
  background: var(--color-muted);
}

.what-we-offer h2 {
  margin-bottom: var(--space-sm);
}

.offers-list {
  list-style: none;
  padding-left: 0;
  margin: var(--space-sm) 0;
}

.offers-list li {
  margin-bottom: 12px;
  padding-left: 28px;
  position: relative;
}

.offers-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 700;
}

.what-we-offer > .container > p:last-child {
  margin-top: var(--space-sm);
  font-style: italic;
  color: #555;
}

/* === UPDATES === */
.updates-section h2 {
  margin-bottom: var(--space-xs);
}

.updates-section img {
  margin-top: var(--space-sm);
  border-radius: var(--radius);
}

/* === SPONSORS === */
.sponsors-section {
  background: var(--color-muted);
}

.sponsors-section h2 {
  text-align: center;
  margin-bottom: var(--space-md);
}

.sponsors-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  align-items: center;
  justify-content: center;
}

.sponsor-item {
  flex: 0 0 auto;
  width: 120px;
  background: #fff;
  border-radius: var(--radius);
  padding: var(--space-xs);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s;
}

.sponsor-item:hover {
  box-shadow: var(--shadow-md);
}

.sponsor-item img {
  max-height: 80px;
  width: auto;
  margin: 0 auto;
}

/* === FEATURE LINK === */
.feature-link {
  text-align: center;
  padding: var(--space-md) 0;
}

.feature-link a {
  color: var(--color-accent);
  font-weight: 600;
}

/* === QUOTE === */
.quote-block {
  background: var(--color-muted);
}

.quote-block blockquote {
  border-left: 4px solid var(--color-accent);
  padding: var(--space-md);
  font-style: italic;
  font-size: 1.1rem;
  color: #555;
  max-width: 800px;
  margin: 0 auto;
}

/* === CONTACT FORM === */
#contact h2 {
  margin-bottom: var(--space-sm);
}

.contact-form {
  max-width: 600px;
}

.form-group {
  margin-bottom: var(--space-sm);
}

.form-group label {
  display: block;
  margin-bottom: 4px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-bg);
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(200,146,42,0.15);
}

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

a.form-submit,
button.form-submit {
  color: var(--color-btn-text);
  min-height: 44px;
  padding: 10px 32px;
  border: none;
  border-radius: var(--radius);
  background: var(--color-primary);
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  transition: background-color 0.2s;
}

a.form-submit:hover,
button.form-submit:hover {
  background: #8a0000;
  color: var(--color-btn-text);
}

/* === STAFF === */
.staff-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.staff-card {
  flex: 1 1 280px;
  background: var(--color-muted);
  border-radius: var(--radius);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
}

.staff-card img {
  max-width: 200px;
  border-radius: var(--radius);
  margin-bottom: var(--space-xs);
}

.staff-card h3 {
  margin-bottom: 4px;
}

.staff-card .staff-title {
  color: var(--color-accent);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: var(--space-xs);
}

/* Photo placeholder */
.photo-placeholder {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, #1a1a1a 0%, var(--color-primary) 100%);
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-family: var(--font-heading);
  border-radius: var(--radius);
  margin-bottom: var(--space-xs);
}

/* === GRADUATES === */
.graduates-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.graduate-card {
  flex: 1 1 180px;
  text-align: center;
  background: var(--color-muted);
  border-radius: var(--radius);
  padding: var(--space-sm);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s;
}

.graduate-card:hover {
  box-shadow: var(--shadow-md);
}

.graduate-card img {
  max-width: 180px;
  border-radius: var(--radius);
  margin: 0 auto var(--space-xs);
}

.graduate-card h3 {
  font-size: 1rem;
}

/* === LOCATIONS === */
.location-card {
  margin-bottom: var(--space-md);
  background: var(--color-muted);
  border-radius: var(--radius);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
}

.location-card h3 {
  margin-bottom: var(--space-xs);
  color: var(--color-primary);
}

.location-card p {
  margin-bottom: 4px;
}

/* === PROGRAMS === */
.workshop-list,
.mentoring-models {
  list-style: none;
  padding-left: 0;
  margin: var(--space-sm) 0;
}

.workshop-list li,
.mentoring-models li {
  margin-bottom: 10px;
  padding-left: 28px;
  position: relative;
}

.workshop-list li::before {
  content: "\25B8";
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-size: 1.2rem;
}

.mentoring-models li::before {
  content: "\2022";
  position: absolute;
  left: 6px;
  color: var(--color-accent);
  font-weight: 700;
}

/* === SPONSORSHIP TIERS === */
.tier-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.tier-card {
  flex: 1 1 220px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: var(--space-md);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s;
}

.tier-card:hover {
  box-shadow: var(--shadow-md);
}

.tier-card h3 {
  color: var(--color-accent);
}

/* === DONATIONS === */
a.donate-cta,
button.donate-cta {
  display: inline-block;
  padding: 14px 36px;
  color: var(--color-btn-text);
  background: var(--color-accent);
  border: none;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  margin: var(--space-sm) 0;
  transition: background-color 0.2s;
}

a.donate-cta:hover,
button.donate-cta:hover {
  background: #b07f1f;
  color: var(--color-btn-text);
}

.other-ways {
  list-style: none;
  margin: var(--space-sm) 0;
}

.other-ways li {
  margin-bottom: var(--space-xs);
}

.other-ways a {
  color: var(--color-primary);
  font-weight: 500;
}

/* === TERMS === */
.terms-content h2 {
  margin-top: var(--space-md);
  margin-bottom: var(--space-xs);
}

.terms-content p {
  margin-bottom: 12px;
  line-height: 1.7;
}

/* === EVENTS (empty state) === */
.events-empty {
  text-align: center;
  padding: var(--space-xl) 0;
  color: #888;
  font-size: 1.1rem;
}

/* === FOOTER === */
.site-footer {
  background: var(--color-primary);
  color: rgba(255,255,255,0.85);
  padding: var(--space-lg) 0 var(--space-sm);
  margin-top: var(--space-xl);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer-col {
  flex: 1 1 200px;
}

.footer-col h3 {
  color: #fff;
  margin-bottom: var(--space-xs);
  font-size: 1rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 6px;
}

.footer-col a {
  text-decoration: none;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--color-accent);
}

.footer-bottom {
  text-align: center;
  margin-top: var(--space-md);
  padding-top: var(--space-sm);
  border-top: 1px solid rgba(255,255,255,0.15);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}

/* === HOW IT WORKS === */
.how-it-works {
  background: var(--color-muted);
}

.how-it-works h2 {
  text-align: center;
  margin-bottom: var(--space-xs);
}

.how-it-works > .container > p {
  text-align: center;
  margin-bottom: var(--space-md);
  color: #555;
}

.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.step-card {
  flex: 1 1 220px;
  background: var(--color-bg);
  border-radius: var(--radius);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  font-family: var(--font-heading);
  margin: 0 auto var(--space-sm);
}

.step-card h3 {
  margin-bottom: var(--space-xs);
}

.step-card p {
  font-size: 0.95rem;
  color: #555;
}

.step-card a {
  color: var(--color-primary);
  font-weight: 600;
}

/* === IMPACT STATS === */
.impact-stats {
  background: linear-gradient(135deg, #1a1a1a 0%, var(--color-primary) 100%);
  color: #fff;
  padding: var(--space-lg) 0;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: center;
}

.stat-card {
  flex: 1 1 180px;
  text-align: center;
}

.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.stat-label {
  font-size: 0.95rem;
  opacity: 0.85;
}

/* === MISSION/VISION === */
.mission-vision {
  text-align: center;
}

.mission-vision h2 {
  margin-bottom: var(--space-xs);
}

.mission-vision p {
  max-width: 800px;
  margin: 0 auto var(--space-md);
  color: #555;
  line-height: 1.7;
}

/* === ALUMNI SPOTLIGHT === */
.alumni-spotlight h2 {
  text-align: center;
  margin-bottom: var(--space-md);
}

.spotlight-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: center;
}

.spotlight-card {
  flex: 1 1 220px;
  max-width: 300px;
  text-align: center;
  background: var(--color-muted);
  border-radius: var(--radius);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
}

.spotlight-card .photo-placeholder {
  width: 120px;
  height: 120px;
  font-size: 1.5rem;
  border-radius: 50%;
  margin: 0 auto var(--space-sm);
}

.spotlight-card .spotlight-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto var(--space-sm);
}

.spotlight-card h3 {
  margin-bottom: 4px;
}

.spotlight-card p {
  font-size: 0.9rem;
  color: #555;
}

/* === NEWSLETTER === */
.newsletter-section {
  background: var(--color-muted);
  text-align: center;
}

.newsletter-section h2 {
  margin-bottom: var(--space-xs);
}

.newsletter-section > .container > p {
  margin-bottom: var(--space-sm);
  color: #555;
}

.newsletter-form {
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
}

.newsletter-row input {
  flex: 1;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}

.newsletter-row input:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(200,146,42,0.15);
}

.newsletter-row .form-submit {
  white-space: nowrap;
  width: 100%;
}

@media (min-width: 768px) {
  .newsletter-row .form-submit {
    width: auto;
  }
}

/* === VIDEO EMBEDS === */
.video-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: center;
  margin-top: var(--space-md);
}

.video-wrap {
  position: relative;
  width: 315px;
  max-width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-wrap--hero {
  margin: 0 auto;
}

.video-wrap--landscape {
  width: 100%;
  max-width: 520px;
  aspect-ratio: 16 / 9;
}

.intro-video {
  text-align: center;
  padding: var(--space-lg) 0;
  background: var(--color-muted);
}

/* === FORM MESSAGES === */
.form-message {
  padding: var(--space-sm);
  border-radius: var(--radius);
  margin-bottom: var(--space-md);
}

.form-message--success {
  background: #e8f5e9;
  border: 1px solid #4caf50;
  color: #2e7d32;
}

.form-message--error {
  background: #fbe9e7;
  border: 1px solid #e53935;
  color: #c62828;
}

/* === YLOD pink accent === */
.tier-card--ylod {
  border-left: 4px solid #d4567a;
}

.tier-card--ylod h3 {
  color: #d4567a;
}

/* === RESPONSIVE === */
@media (min-width: 768px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 1.75rem; }

  .hero { padding: var(--space-xl) 0 calc(var(--space-xl) + 16px); }
  .hero h1 { font-size: 2.75rem; }

  .sponsors-grid { gap: var(--space-md); }
  .sponsor-item { width: 150px; }
}

@media (min-width: 1280px) {
  .container {
    padding-left: 0;
    padding-right: 0;
  }

  h1 { font-size: 3rem; }
  .hero h1 { font-size: 3.25rem; }
}
