/* ============================================
   JAMAICAN AMERICAN CONNECTION
   Shared stylesheet
   ============================================ */

:root {
  --green-deep: #0E3B2E;
  --green-mid: #1A5640;
  --gold: #C9A24A;
  --gold-soft: #E4C581;
  --cream: #F5EFE4;
  --paper: #FAF7F0;
  --ink: #1A1814;
  --ink-soft: #4A453C;
  --muted: #8A8478;
  --terracotta: #B23A23;
  --line: rgba(26, 24, 20, 0.12);
}


/* ========== EMPHASIS WORDS (replaced <em> tags) ========== */
.emph {
  font-family: 'Manrope', sans-serif !important;
  font-style: normal !important;
  font-weight: 700;
  color: var(--green-deep);
}
.gold-word {
  color: var(--gold) !important;
  font-style: normal !important;
}

/* Mobile-only nav items (Become a Member shown in hamburger menu) */
.mobile-only { display: none; }


* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Manrope', sans-serif;
  background: var(--cream);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.display { font-family: 'Manrope', sans-serif; font-weight: 700; letter-spacing: -0.03em; }
.display-italic { font-family: 'Manrope', sans-serif; font-weight: 500; }
.mono-label { font-family: 'Manrope', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; }

/* ========== ANNOUNCEMENT BAR ========== */
.announce {
  background: var(--ink);
  color: var(--cream);
  padding: 10px 32px;
  font-size: 13px;
  text-align: center;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 100;
}
.announce a {
  color: var(--gold-soft);
  text-decoration: none;
  border-bottom: 1px solid var(--gold-soft);
  margin-left: 8px;
  font-weight: 600;
}
.pulse-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--terracotta);
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

/* ========== NAV ========== */
nav {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(245, 239, 228, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 18px 48px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
  min-width: 0; /* Allow shrinking in grid */
}
.logo-mark {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  background: var(--green-deep);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
}
.logo-mark-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 50%;
}

.logo-text {
  font-family: 'Manrope', sans-serif;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.logo-text small {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  justify-content: center;
}
.nav-links a {
  text-decoration: none;
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  position: relative;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--green-deep); }
.nav-links a.active { color: var(--green-deep); font-weight: 600; }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--green-deep);
  transition: width 0.3s;
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  align-items: center;
  flex-shrink: 0;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s;
  border: none;
  cursor: pointer;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.btn-primary { background: var(--green-deep); color: var(--cream); }
.btn-primary:hover { background: var(--ink); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--line); }
.btn-ghost:hover { border-color: var(--ink); }
.btn-gold { background: var(--gold); color: var(--ink); }
.btn-gold:hover { background: var(--gold-soft); transform: translateY(-1px); }
.btn-light { background: var(--paper); color: var(--ink); }
.btn-light:hover { background: white; }

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--ink);
}

/* ========== BREADCRUMB ========== */
.breadcrumb {
  max-width: 1440px;
  margin: 0 auto;
  padding: 32px 48px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.06em;
}
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb .current { color: var(--ink); }

/* ========== HOME HERO ========== */
.hero {
  max-width: 1440px;
  margin: 0 auto;
  padding: 80px 48px 100px;
  position: relative;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--ink-soft);
  margin-bottom: 48px;
}
.hero-eyebrow .line { width: 48px; height: 1px; background: var(--ink-soft); }
.hero-headline {
  font-size: clamp(48px, 8vw, 132px);
  line-height: 0.95;
  margin-bottom: 56px;
  max-width: 1200px;
}
.hero-headline em { font-family: 'Manrope', sans-serif; font-style: normal; font-weight: 400; color: var(--green-deep); }
.hero-headline .gold-word { color: var(--gold); }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: end;
}
.hero-text { font-size: 18px; line-height: 1.55; color: var(--ink-soft); max-width: 460px; }
.hero-cta-group { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }
.hero-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
  padding-top: 32px;
}
.hero-meta-item { padding-right: 24px; }
.hero-meta-item:not(:last-child) { border-right: 1px solid var(--line); padding-right: 32px; }
.hero-meta-item:not(:first-child) { padding-left: 32px; }
.hero-meta-num { font-family: 'Manrope', sans-serif; font-size: 64px; font-weight: 400; line-height: 1; color: var(--green-deep); letter-spacing: -0.03em; }
.hero-meta-label { font-size: 13px; color: var(--muted); margin-top: 8px; line-height: 1.4; }

/* ========== PAGE HERO (interior pages) ========== */
/* FIX: changed align-items from 'end' to 'start' so big headlines start at top */
.page-hero {
  max-width: 1440px;
  margin: 0 auto;
  padding: 64px 48px 120px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: start;
}
.page-hero-eyebrow { color: var(--green-deep); margin-bottom: 32px; display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.page-hero-eyebrow .num { font-family: 'Manrope', sans-serif; font-style: italic; font-size: 13px; }
.page-hero h1 {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: clamp(48px, 8.5vw, 144px);
  line-height: 0.92;
  letter-spacing: -0.03em;
}
.page-hero h1 em { font-family: 'Manrope', sans-serif; font-style: normal; color: var(--green-deep); font-weight: 400; }
.page-hero-side { padding-top: 24px; }
.page-hero-side p {
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 420px;
}

/* ========== HURRICANE RELIEF ========== */
.relief {
  background: var(--green-deep);
  color: var(--cream);
  padding: 100px 48px;
  position: relative;
  overflow: hidden;
}
.relief-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.relief-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  background: rgba(178, 58, 35, 0.2);
  border: 1px solid var(--terracotta);
  color: #F5C8B8;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.relief-headline {
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.02;
  margin-bottom: 32px;
}
.relief-headline em { color: var(--gold-soft); }
.relief-text {
  font-size: 17px;
  color: rgba(245, 239, 228, 0.75);
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 540px;
}
.relief-progress {
  background: rgba(245, 239, 228, 0.08);
  padding: 32px;
  border-radius: 4px;
  border: 1px solid rgba(245, 239, 228, 0.12);
}
.relief-progress-row { display: flex; justify-content: space-between; margin-bottom: 16px; align-items: baseline; }
.relief-raised { font-family: 'Manrope', sans-serif; font-size: 48px; font-weight: 400; color: var(--gold); line-height: 1; }
.relief-goal { color: rgba(245, 239, 228, 0.6); font-size: 14px; }
.relief-bar { height: 4px; background: rgba(245, 239, 228, 0.1); border-radius: 2px; overflow: hidden; margin-bottom: 24px; }
.relief-bar-fill { height: 100%; background: var(--gold); width: 68%; border-radius: 2px; }
.relief-stats { display: flex; gap: 32px; margin-top: 24px; padding-top: 24px; border-top: 1px solid rgba(245, 239, 228, 0.1); }
.relief-stat-num { font-family: 'Manrope', sans-serif; font-size: 28px; color: var(--cream); }
.relief-stat-label { font-size: 12px; color: rgba(245, 239, 228, 0.6); margin-top: 4px; }
.relief-bg-text {
  position: absolute;
  right: -50px;
  bottom: -80px;
  font-family: 'Manrope', sans-serif;
  font-size: 280px;
  font-weight: 300;
  color: rgba(201, 162, 74, 0.06);
  line-height: 0.9;
  pointer-events: none;
  z-index: 1;
}

/* ========== SECTIONS ========== */
.section { padding: 140px 48px; max-width: 1440px; margin: 0 auto; }
.section-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 80px;
  align-items: end;
}
.section-eyebrow { color: var(--green-deep); margin-bottom: 24px; display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.section-eyebrow .num { font-family: 'Manrope', sans-serif; font-style: italic; font-weight: 400; font-size: 13px; letter-spacing: 0; text-transform: none; }
.section-title { font-size: clamp(36px, 5.5vw, 84px); line-height: 1; color: var(--ink); }
.section-title em { font-family: 'Manrope', sans-serif; font-style: normal; color: var(--green-deep); }
.section-intro { font-size: 17px; color: var(--ink-soft); line-height: 1.6; max-width: 480px; }

.section-header-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 72px;
  align-items: end;
}
.section-header-2 h2 { font-family: 'Manrope', sans-serif; font-weight: 400; font-size: clamp(36px, 5.5vw, 80px); line-height: 1; letter-spacing: -0.02em; }
.section-header-2 h2 em { font-family: 'Manrope', sans-serif; font-style: normal; color: var(--green-deep); }
.section-header-2 p { color: var(--ink-soft); font-size: 17px; max-width: 480px; }

/* ========== PILLARS ========== */
.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.pillar {
  background: var(--cream);
  padding: 48px 36px 56px;
  transition: background 0.3s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  min-height: 380px;
}
.pillar:hover { background: var(--paper); }
.pillar-num { font-family: 'Manrope', sans-serif; font-style: italic; color: var(--gold); font-size: 14px; margin-bottom: 32px; }
.pillar-icon { width: 48px; height: 48px; margin-bottom: 28px; color: var(--green-deep); }
.pillar h3 { font-family: 'Manrope', sans-serif; font-weight: 400; font-size: 28px; line-height: 1.1; margin-bottom: 16px; letter-spacing: -0.01em; }
.pillar p { color: var(--ink-soft); font-size: 15px; line-height: 1.55; flex: 1; }
.pillar-link { margin-top: 32px; display: flex; align-items: center; gap: 8px; color: var(--ink); text-decoration: none; font-size: 13px; font-weight: 600; letter-spacing: 0.02em; }
.pillar-link svg { transition: transform 0.25s; }
.pillar:hover .pillar-link svg { transform: translateX(4px); }

/* ========== FEATURE / ABOUT ========== */
.feature { background: var(--paper); padding: 140px 48px; }
.feature-inner { max-width: 1440px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.feature-image {
  aspect-ratio: 4/5;
  background: linear-gradient(160deg, var(--green-mid) 0%, var(--green-deep) 60%, #082319 100%);
  position: relative;
  overflow: hidden;
}
.feature-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
  opacity: 0.5;
  mix-blend-mode: overlay;
}
.feature-image-tag { position: absolute; bottom: 32px; left: 32px; color: var(--gold-soft); z-index: 2; font-family: 'Manrope', sans-serif; font-style: italic; font-size: 18px; }
.feature-image-num { position: absolute; top: 32px; right: 32px; font-family: 'Manrope', sans-serif; font-size: 96px; color: var(--gold); line-height: 1; z-index: 2; }
.feature-content h2 { font-family: 'Manrope', sans-serif; font-weight: 400; font-size: clamp(32px, 4vw, 56px); line-height: 1.05; margin-bottom: 28px; letter-spacing: -0.02em; }
.feature-content h2 em { font-family: 'Manrope', sans-serif; font-style: normal; color: var(--green-deep); }
.feature-content p { font-size: 17px; color: var(--ink-soft); margin-bottom: 20px; line-height: 1.65; }
.feature-meta { display: flex; gap: 40px; margin-top: 40px; padding-top: 28px; border-top: 1px solid var(--line); flex-wrap: wrap; }
.feature-meta div span { font-family: 'Manrope', sans-serif; font-size: 32px; color: var(--green-deep); display: block; line-height: 1; margin-bottom: 6px; }
.feature-meta div small { font-size: 12px; color: var(--muted); letter-spacing: 0.04em; }

/* ========== EVENTS ========== */
.events-list { border-top: 1px solid var(--line); }
.event-row {
  display: grid;
  grid-template-columns: 120px 1fr 2fr 1fr auto;
  gap: 40px;
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
  transition: background 0.25s;
  cursor: pointer;
}
.event-row:hover { background: var(--paper); padding-left: 16px; padding-right: 16px; }
.event-date { font-family: 'Manrope', sans-serif; font-size: 18px; color: var(--green-deep); }
.event-date small { display: block; font-family: 'Manrope', sans-serif; color: var(--muted); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; margin-top: 4px; }
.event-title { font-family: 'Manrope', sans-serif; font-size: 22px; font-weight: 400; letter-spacing: -0.01em; }
.event-loc { color: var(--ink-soft); font-size: 14px; }
.event-cat { display: inline-block; padding: 5px 12px; background: var(--cream); border: 1px solid var(--line); border-radius: 999px; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft); white-space: nowrap; }
.event-arrow { color: var(--ink); transition: transform 0.25s; }
.event-row:hover .event-arrow { transform: translateX(6px); }

/* ========== STORIES ========== */
.stories { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 32px; }
.story { cursor: pointer; text-decoration: none; color: var(--ink); display: flex; flex-direction: column; }
.story-img { aspect-ratio: 4/3; margin-bottom: 24px; background: var(--green-mid); overflow: hidden; position: relative; }
.story-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
  opacity: 0.5;
  mix-blend-mode: overlay;
}
.story-1 .story-img { background: linear-gradient(140deg, #1A5640 0%, #0E3B2E 100%); aspect-ratio: 4/5; }
.story-2 .story-img { background: linear-gradient(140deg, #C9A24A 0%, #8B6F2C 100%); }
.story-3 .story-img { background: linear-gradient(140deg, #B23A23 0%, #7A2615 100%); }
.story-cat { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--green-deep); margin-bottom: 12px; font-weight: 600; }
.story h3 { font-family: 'Manrope', sans-serif; font-weight: 400; font-size: 22px; line-height: 1.2; margin-bottom: 12px; letter-spacing: -0.01em; }
.story-1 h3 { font-size: 30px; }
.story p { color: var(--ink-soft); font-size: 14px; line-height: 1.55; }
.story-meta { margin-top: 16px; font-size: 12px; color: var(--muted); display: flex; gap: 16px; }

/* ========== TALLAWAH ========== */
.tallawah {
  background: var(--ink);
  color: var(--cream);
  padding: 160px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.tallawah-eyebrow { color: var(--gold); margin-bottom: 56px; }
.tallawah-headline { font-family: 'Manrope', sans-serif; font-weight: 300; font-size: clamp(56px, 11vw, 200px); line-height: 0.92; letter-spacing: -0.04em; margin-bottom: 48px; }
.tallawah-headline em { font-family: 'Manrope', sans-serif; font-style: normal; color: var(--gold); font-weight: 400; }
.tallawah-translation { font-family: 'Manrope', sans-serif; font-style: italic; font-size: 22px; color: rgba(245, 239, 228, 0.6); max-width: 600px; margin: 0 auto; line-height: 1.4; }
.tallawah::before { content: ''; position: absolute; width: 600px; height: 600px; background: radial-gradient(circle, rgba(201, 162, 74, 0.15) 0%, transparent 70%); top: -200px; left: -200px; pointer-events: none; }
.tallawah::after { content: ''; position: absolute; width: 500px; height: 500px; background: radial-gradient(circle, rgba(26, 86, 64, 0.3) 0%, transparent 70%); bottom: -150px; right: -150px; pointer-events: none; }

/* ========== SCHOLARSHIP CARD ========== */
.scholarship { padding: 140px 48px; max-width: 1440px; margin: 0 auto; }
.scholarship-card {
  background: var(--green-deep);
  color: var(--cream);
  padding: 80px;
  border-radius: 4px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.scholarship-card h2 { font-family: 'Manrope', sans-serif; font-weight: 400; font-size: clamp(32px, 4.5vw, 64px); line-height: 1.05; margin-bottom: 28px; letter-spacing: -0.02em; }
.scholarship-card h2 em { color: var(--gold-soft); font-family: 'Manrope', sans-serif; font-style: normal; }
.scholarship-card p { color: rgba(245, 239, 228, 0.75); font-size: 17px; line-height: 1.6; margin-bottom: 32px; max-width: 520px; }
.scholarship-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.scholarship-stat { padding: 24px; background: rgba(245, 239, 228, 0.06); border-radius: 4px; border: 1px solid rgba(245, 239, 228, 0.1); }
.scholarship-stat span { font-family: 'Manrope', sans-serif; font-size: 56px; line-height: 1; color: var(--gold); display: block; margin-bottom: 8px; }
.scholarship-stat small { font-size: 12px; color: rgba(245, 239, 228, 0.7); letter-spacing: 0.04em; }

/* ========== ABOUT-SPECIFIC: ORIGIN ========== */
.origin { max-width: 1440px; margin: 0 auto; padding: 0 48px 140px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.origin-image { aspect-ratio: 4/5; background: linear-gradient(160deg, var(--green-mid) 0%, var(--green-deep) 60%, #082319 100%); position: relative; overflow: hidden; position: sticky; top: 100px; }
.origin-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
  opacity: 0.5;
  mix-blend-mode: overlay;
}
.origin-image-tag { position: absolute; bottom: 32px; left: 32px; color: var(--gold-soft); font-family: 'Manrope', sans-serif; font-style: italic; font-size: 18px; z-index: 2; }
.origin-image-year { position: absolute; top: 32px; right: 32px; font-family: 'Manrope', sans-serif; font-size: 96px; color: var(--gold); line-height: 1; z-index: 2; }
.origin-content h2 { font-family: 'Manrope', sans-serif; font-weight: 400; font-size: clamp(32px, 4vw, 56px); line-height: 1.05; margin-bottom: 32px; letter-spacing: -0.02em; }
.origin-content h2 em { font-family: 'Manrope', sans-serif; font-style: normal; color: var(--green-deep); }
.origin-content p { font-size: 17px; color: var(--ink-soft); margin-bottom: 24px; line-height: 1.65; }
.origin-content p:first-of-type::first-letter { font-family: 'Manrope', sans-serif; font-size: 80px; float: left; line-height: 0.85; margin: 6px 12px 0 0; color: var(--green-deep); font-weight: 400; }
.origin-pullquote { font-family: 'Manrope', sans-serif; font-style: italic; font-size: 26px; line-height: 1.3; color: var(--green-deep); padding: 32px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin: 40px 0; }
.origin-pullquote small { display: block; font-family: 'Manrope', sans-serif; font-style: normal; font-size: 12px; color: var(--muted); letter-spacing: 0.16em; margin-top: 16px; text-transform: uppercase; }

/* ========== VALUES ========== */
.values { max-width: 1440px; margin: 0 auto; padding: 0 48px 140px; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.value-card { background: var(--cream); padding: 56px 40px; min-height: 320px; display: flex; flex-direction: column; }
.value-num { font-family: 'Manrope', sans-serif; font-style: italic; color: var(--gold); font-size: 18px; margin-bottom: 32px; }
.value-card h3 { font-family: 'Manrope', sans-serif; font-weight: 400; font-size: 30px; line-height: 1.1; margin-bottom: 20px; letter-spacing: -0.01em; }
.value-card p { color: var(--ink-soft); font-size: 15px; line-height: 1.6; }

/* ========== TIMELINE ========== */
.timeline-section { background: var(--paper); padding: 140px 48px; }
.timeline-inner { max-width: 1440px; margin: 0 auto; }
.timeline { margin-top: 72px; border-top: 1px solid var(--line); }
.timeline-item { display: grid; grid-template-columns: 200px 1fr 2fr; gap: 60px; padding: 48px 0; border-bottom: 1px solid var(--line); align-items: start; }
.timeline-year { font-family: 'Manrope', sans-serif; font-size: 56px; color: var(--green-deep); line-height: 1; letter-spacing: -0.02em; }
.timeline-title { font-family: 'Manrope', sans-serif; font-size: 22px; line-height: 1.2; font-weight: 400; }
.timeline-desc { color: var(--ink-soft); font-size: 15px; line-height: 1.6; }

/* ========== LEADERSHIP ========== */
.leadership { max-width: 1440px; margin: 0 auto; padding: 140px 48px; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; margin-top: 60px; }
.team-card { display: flex; flex-direction: column; }
.team-photo { aspect-ratio: 4/5; background: linear-gradient(160deg, var(--green-mid), var(--green-deep)); margin-bottom: 20px; position: relative; overflow: hidden; }
.team-card:nth-child(2) .team-photo { background: linear-gradient(160deg, #C9A24A 0%, #8B6F2C 100%); }
.team-card:nth-child(3) .team-photo { background: linear-gradient(160deg, #B23A23 0%, #7A2615 100%); }
.team-card:nth-child(4) .team-photo { background: linear-gradient(160deg, var(--ink) 0%, #2A2620 100%); }
.team-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
  opacity: 0.4;
  mix-blend-mode: overlay;
}
.team-name { font-family: 'Manrope', sans-serif; font-size: 22px; font-weight: 400; margin-bottom: 4px; letter-spacing: -0.01em; }
.team-role { color: var(--muted); font-size: 13px; letter-spacing: 0.04em; }

/* ========== PRESIDENT MESSAGE ========== */
.president-msg { background: var(--green-deep); color: var(--cream); padding: 140px 48px; }
.president-inner { max-width: 1100px; margin: 0 auto; text-align: center; }
.president-quote { font-family: 'Manrope', sans-serif; font-style: italic; font-size: clamp(26px, 3.6vw, 48px); line-height: 1.3; color: var(--cream); margin-bottom: 48px; }
.president-quote::before { content: '"'; font-size: 1.5em; color: var(--gold); display: block; line-height: 0.5; margin-bottom: 16px; }
.president-attr { display: flex; align-items: center; justify-content: center; gap: 16px; }
.president-photo { width: 64px; height: 64px; border-radius: 50%; background: linear-gradient(160deg, var(--gold) 0%, #8B6F2C 100%); }
.president-name { text-align: left; }
.president-name strong { font-family: 'Manrope', sans-serif; font-weight: 400; font-size: 20px; display: block; }
.president-name small { color: rgba(245, 239, 228, 0.7); font-size: 13px; letter-spacing: 0.06em; }

/* ========== SCHOLARSHIP-SPECIFIC: KEY FACTS ========== */
.key-facts { max-width: 1440px; margin: 0 auto; padding: 0 48px 100px; }
.facts-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--line); border-radius: 4px; overflow: hidden; }
.fact-cell { padding: 40px 32px; border-right: 1px solid var(--line); background: var(--paper); }
.fact-cell:last-child { border-right: none; }
.fact-num { font-family: 'Manrope', sans-serif; font-size: 48px; color: var(--green-deep); line-height: 1; letter-spacing: -0.02em; margin-bottom: 12px; }
.fact-label { font-size: 13px; color: var(--ink-soft); line-height: 1.4; }
.fact-cell .mono-label { color: var(--muted); margin-bottom: 16px; }

/* ========== APPLICATION STEPS ========== */
.app-steps { max-width: 1440px; margin: 0 auto; padding: 0 48px 140px; }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; margin-top: 60px; }
.step { padding-top: 32px; border-top: 2px solid var(--green-deep); position: relative; }
.step-num { position: absolute; top: -12px; left: 0; background: var(--cream); padding-right: 12px; font-family: 'Manrope', sans-serif; font-style: italic; color: var(--green-deep); font-size: 14px; }
.step h4 { font-family: 'Manrope', sans-serif; font-weight: 400; font-size: 22px; margin-bottom: 16px; letter-spacing: -0.01em; }
.step p { color: var(--ink-soft); font-size: 14px; line-height: 1.55; margin-bottom: 16px; }
.step-deadline { font-size: 12px; color: var(--green-deep); font-weight: 600; letter-spacing: 0.04em; }

/* ========== ELIGIBILITY ========== */
.eligibility-section { background: var(--paper); padding: 140px 48px; }
.eligibility-inner { max-width: 1440px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.3fr; gap: 80px; align-items: start; }
.eligibility-list { list-style: none; }
.eligibility-list li { display: grid; grid-template-columns: 32px 1fr; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--line); align-items: start; }
.eligibility-list li:first-child { border-top: 1px solid var(--line); }
.eligibility-check { width: 24px; height: 24px; background: var(--green-deep); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gold-soft); margin-top: 2px; flex-shrink: 0; }
.eligibility-list strong { font-family: 'Manrope', sans-serif; font-weight: 400; font-size: 18px; display: block; margin-bottom: 4px; }
.eligibility-list span { color: var(--ink-soft); font-size: 14px; line-height: 1.5; }

/* ========== RECIPIENTS ========== */
.recipients { max-width: 1440px; margin: 0 auto; padding: 140px 48px; }
.recipients-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; margin-top: 60px; }
.recipient { cursor: pointer; }
.recipient-photo { aspect-ratio: 1/1; background: linear-gradient(160deg, var(--green-mid), var(--green-deep)); margin-bottom: 24px; position: relative; overflow: hidden; }
.recipient:nth-child(2) .recipient-photo { background: linear-gradient(160deg, #C9A24A 0%, #8B6F2C 100%); }
.recipient:nth-child(3) .recipient-photo { background: linear-gradient(160deg, #B23A23 0%, #7A2615 100%); }
.recipient-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
  opacity: 0.4;
  mix-blend-mode: overlay;
}
.recipient-year { color: var(--gold); font-style: italic; font-family: 'Manrope', sans-serif; font-size: 16px; margin-bottom: 8px; }
.recipient h4 { font-family: 'Manrope', sans-serif; font-weight: 400; font-size: 24px; margin-bottom: 6px; letter-spacing: -0.01em; }
.recipient-school { color: var(--ink-soft); font-size: 14px; margin-bottom: 16px; }
.recipient blockquote { font-family: 'Manrope', sans-serif; font-style: italic; font-size: 17px; color: var(--ink); line-height: 1.4; padding-left: 16px; border-left: 2px solid var(--gold); }

/* ========== FAQ ========== */
.faq-section { background: var(--paper); padding: 140px 48px; }
.faq-inner { max-width: 900px; margin: 0 auto; }
.faq-section h2 { font-family: 'Manrope', sans-serif; font-weight: 400; font-size: clamp(36px, 5vw, 72px); line-height: 1; margin-bottom: 60px; letter-spacing: -0.02em; }
.faq-section h2 em { font-family: 'Manrope', sans-serif; font-style: normal; color: var(--green-deep); }
.faq-item { border-top: 1px solid var(--line); padding: 28px 0; }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q { display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-family: 'Manrope', sans-serif; font-weight: 400; font-size: 21px; letter-spacing: -0.01em; gap: 24px; }
.faq-q::after { content: '+'; font-family: 'Manrope', sans-serif; font-size: 32px; color: var(--green-deep); line-height: 0.5; transition: transform 0.25s; flex-shrink: 0; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { color: var(--ink-soft); font-size: 16px; line-height: 1.6; margin-top: 16px; max-width: 700px; display: none; }
.faq-item.open .faq-a { display: block; }

/* ========== FINAL CTA ========== */
.final-cta { padding: 140px 48px; max-width: 1440px; margin: 0 auto; text-align: center; }
.final-cta h2 { font-family: 'Manrope', sans-serif; font-weight: 400; font-size: clamp(40px, 6vw, 96px); line-height: 1; margin-bottom: 32px; letter-spacing: -0.03em; }
.final-cta h2 em { font-family: 'Manrope', sans-serif; color: var(--green-deep); }
.final-cta p { font-size: 18px; color: var(--ink-soft); max-width: 540px; margin: 0 auto 40px; line-height: 1.6; }
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ========== FOOTER ========== */
footer { background: var(--cream); padding: 100px 48px 48px; border-top: 1px solid var(--line); }
.footer-inner { max-width: 1440px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 64px; padding-bottom: 80px; border-bottom: 1px solid var(--line); }
.footer-brand .logo { margin-bottom: 24px; }
.footer-brand p { color: var(--ink-soft); font-size: 15px; line-height: 1.6; margin-bottom: 28px; max-width: 360px; }
.footer-newsletter { display: flex; gap: 8px; max-width: 360px; }
.footer-newsletter input { flex: 1; padding: 12px 18px; border: 1px solid var(--line); background: var(--paper); border-radius: 999px; font-family: inherit; font-size: 13px; color: var(--ink); outline: none; min-width: 0; }
.footer-newsletter input:focus { border-color: var(--green-deep); }
.footer-col h4 { font-family: 'Manrope', sans-serif; font-style: italic; font-weight: 400; font-size: 16px; margin-bottom: 24px; color: var(--ink); }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a { color: var(--ink-soft); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.footer-col a:hover { color: var(--ink); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 36px; flex-wrap: wrap; gap: 20px; }
.footer-bottom p { color: var(--muted); font-size: 13px; }
.footer-social { display: flex; gap: 14px; }
.footer-social a { width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--ink-soft); text-decoration: none; transition: all 0.2s; }
.footer-social a:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }

/* ========== REVEAL ANIMATION (JS-safe) ========== */
/* Default: content is visible. Only hide when JS confirms it's running. */
.reveal { opacity: 1; transform: none; }
.js-ready .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.9s ease, transform 0.9s ease; }
.js-ready .reveal.in { opacity: 1; transform: translateY(0); }

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

/* Hide ghost button at mid widths to prevent overlap */
@media (max-width: 1280px) {
  .nav-actions .btn-ghost { display: none; }
  .nav-links { gap: 24px; }
  .nav-inner { padding: 18px 32px; gap: 24px; }
}

/* Tablet & smaller laptops */
@media (max-width: 1024px) {
  .nav-inner { grid-template-columns: 1fr auto; gap: 16px; padding: 16px 24px; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--cream);
    padding: 24px;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    gap: 20px;
  }
  .nav-links.open { display: flex; }
  .mobile-only { display: list-item; }
  .nav-links a { font-size: 16px; }
  .nav-toggle { display: flex; }
  .logo-text { font-size: 16px; }
  .logo-text small { font-size: 9px; }

  /* Tighten section padding on tablet */
  .section { padding: 100px 32px; }
  .relief { padding: 80px 32px; }
  .feature, .tallawah, .president-msg,
  .timeline-section, .leadership, .eligibility-section,
  .recipients, .faq-section { padding: 100px 32px; }
  .scholarship, .final-cta { padding: 100px 32px; }
  .hero { padding: 64px 32px 80px; }
  .page-hero { padding: 48px 32px 80px; }
  .origin { padding: 0 32px 100px; }
  .values, .key-facts, .app-steps { padding: 0 32px 100px; }
  footer { padding: 80px 32px 40px; }

  .hero-grid,
  .relief-inner,
  .feature-inner,
  .scholarship-card,
  .section-header,
  .section-header-2,
  .footer-top,
  .page-hero,
  .origin,
  .eligibility-inner { grid-template-columns: 1fr; gap: 40px; }

  .pillars { grid-template-columns: repeat(2, 1fr); }
  .stories { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .recipients-grid { grid-template-columns: repeat(2, 1fr); }
  .facts-strip { grid-template-columns: repeat(2, 1fr); }
  .fact-cell:nth-child(2) { border-right: none; }
  .fact-cell:nth-child(1), .fact-cell:nth-child(2) { border-bottom: 1px solid var(--line); }

  .event-row { grid-template-columns: 100px 1fr auto; }
  .event-row .event-loc, .event-row .event-cat { display: none; }

  .timeline-item { grid-template-columns: 100px 1fr; gap: 32px; }
  .timeline-item .timeline-desc { grid-column: 2; }

  .scholarship-card { padding: 48px 32px; }
  .relief-bg-text { font-size: 160px; }
  .origin-image { position: static; }
  .page-hero-side { padding-top: 0; }
}

/* Mobile phones (everything below tablet) */
@media (max-width: 768px) {
  /* Aggressive padding reduction */
  .hero { padding: 32px 20px 56px; }
  .relief { padding: 56px 20px; }
  .section,
  .feature,
  .tallawah,
  .president-msg,
  .timeline-section,
  .leadership,
  .eligibility-section,
  .recipients,
  .faq-section,
  .scholarship,
  .final-cta { padding: 64px 20px; }
  .page-hero { padding: 24px 20px 48px; }
  .origin,
  .values,
  .key-facts,
  .app-steps { padding: 0 20px 56px; }
  footer { padding: 56px 20px 32px; }

  /* Single column everything */
  .pillars,
  .values-grid,
  .team-grid,
  .steps-grid,
  .recipients-grid,
  .facts-strip { grid-template-columns: 1fr; }

  /* Facts strip - clean borders for stacked */
  .fact-cell { border-right: none !important; border-bottom: 1px solid var(--line); }
  .fact-cell:last-child { border-bottom: none; }

  /* Footer single column */
  .footer-top { grid-template-columns: 1fr; gap: 40px; padding-bottom: 48px; }
  .footer-brand p { max-width: 100%; }

  /* Hero meta stacks */
  .hero-meta { grid-template-columns: 1fr; gap: 0; padding-top: 24px; }
  .hero-meta-item { padding: 16px 0 !important; border: none !important; border-top: 1px solid var(--line) !important; }
  .hero-meta-item:first-child { border-top: none !important; padding-top: 0 !important; }
  .hero-meta-num { font-size: 48px; }

  /* Hero/page hero spacing */
  .hero-eyebrow { margin-bottom: 32px; }
  .hero-headline { margin-bottom: 40px; }
  .hero-cta-group { width: 100%; }
  .hero-cta-group .btn { flex: 1; justify-content: center; }

  /* Section headers tighter */
  .section-header,
  .section-header-2 { gap: 24px; margin-bottom: 48px; }

  /* Logo on mobile - replace long name with JAC abbreviation */
  .logo-text {
    font-size: 0 !important;
    line-height: 0;
    overflow: hidden;
    max-width: none;
  }
  .logo-text::before {
    content: 'JAC';
    display: inline-block;
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.04em;
    color: var(--ink);
  }
  .logo-text small { display: none !important; }

  /* Donate button compact on mobile */
  .nav-actions .btn-primary {
    padding: 8px 14px;
    font-size: 12px;
    min-height: 36px;
  }
  .nav-actions { gap: 8px; }
  
  /* Logo image smaller on mobile */
  .logo-mark-img { width: 38px; height: 38px; }

  /* Nav buttons */
  .nav-actions { gap: 8px; }
  .nav-actions .btn-primary { padding: 9px 16px; font-size: 12px; }

  /* Hide decorative tallawah background */
  .relief-bg-text { display: none; }

  /* Image numbers smaller */
  .feature-image-num { font-size: 56px; }
  .origin-image-year { font-size: 56px; }

  /* Pillar cards tighter */
  .pillar { padding: 36px 24px 40px; min-height: 0; }
  .pillar-num { margin-bottom: 24px; }
  .pillar-icon { margin-bottom: 20px; }

  /* Value cards tighter */
  .value-card { padding: 40px 24px; min-height: 0; }
  .value-num { margin-bottom: 24px; }

  /* Scholarship card */
  .scholarship-card { padding: 40px 24px; gap: 32px; }
  .scholarship-stats { grid-template-columns: 1fr 1fr; gap: 12px; }
  .scholarship-stat { padding: 16px; }
  .scholarship-stat span { font-size: 36px; }

  /* Relief progress */
  .relief-progress { padding: 24px; }
  .relief-progress-row { flex-wrap: wrap; gap: 8px; }
  .relief-raised { font-size: 36px; }
  .relief-stats { gap: 20px; flex-wrap: wrap; }

  /* Tallawah translation smaller */
  .tallawah-translation { font-size: 17px; }

  /* Timeline tighter */
  .timeline-item { gap: 20px; padding: 32px 0; }
  .timeline-year { font-size: 40px; }

  /* Events */
  .event-row { padding: 24px 0; gap: 16px; grid-template-columns: 80px 1fr; }
  .event-row svg.event-arrow { display: none; }
  .event-title { font-size: 18px; }
  .event-date { font-size: 16px; }

  /* Stories */
  .story-1 h3 { font-size: 24px; }
  .story h3 { font-size: 22px; }

  /* FAQ */
  .faq-q { font-size: 18px; gap: 16px; }
  .faq-q::after { font-size: 28px; }

  /* Steps */
  .step h4 { font-size: 20px; }

  /* Recipients */
  .recipient h4 { font-size: 22px; }

  /* Origin pullquote */
  .origin-pullquote { font-size: 20px; padding: 24px 0; margin: 32px 0; }
  .origin-content p:first-of-type::first-letter { font-size: 56px; margin: 4px 8px 0 0; }

  /* President's message */
  .president-quote { font-size: 22px; margin-bottom: 32px; }

  /* Eligibility list */
  .eligibility-list li { padding: 16px 0; gap: 12px; grid-template-columns: 24px 1fr; }
  .eligibility-check { width: 20px; height: 20px; }

  /* Newsletter form - stack on small phones */
  .footer-newsletter { flex-direction: column; }
  .footer-newsletter input { width: 100%; }
  .footer-newsletter .btn { width: 100%; justify-content: center; }

  /* Footer bottom */
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 16px; }

  /* Touch targets - 44px minimum (Apple guideline) */
  .btn { min-height: 44px; }
  .nav-toggle { min-width: 44px; min-height: 44px; }
  .nav-links a { padding: 8px 0; }

  /* Prevent iOS zoom on input focus */
  input, textarea, select { font-size: 16px !important; }

  /* Breadcrumb */
  .breadcrumb { padding: 24px 20px 0; font-size: 11px; }

  /* Announcement bar - allow text to wrap nicely */
  .announce { padding: 10px 20px; font-size: 12px; line-height: 1.4; }
}

/* Very small phones (iPhone SE, etc.) */
@media (max-width: 380px) {
  .hero { padding: 24px 16px 48px; }
  .section, .feature, .tallawah, .president-msg, .timeline-section,
  .leadership, .eligibility-section, .recipients, .faq-section,
  .scholarship, .final-cta { padding: 56px 16px; }
  .page-hero { padding: 20px 16px 40px; }
  .origin, .values, .key-facts, .app-steps { padding: 0 16px 48px; }
  footer { padding: 48px 16px 24px; }

  .scholarship-stats { grid-template-columns: 1fr; }
  .nav-inner { padding: 14px 16px; }
  .breadcrumb { padding: 20px 16px 0; }

  /* Buttons stack on tiny screens */
  .cta-buttons,
  .hero-cta-group { flex-direction: column; align-items: stretch; }
  .cta-buttons .btn,
  .hero-cta-group .btn { width: 100%; }
}
