/* ============================================================
   RESET & CUSTOM PROPERTIES
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #1B2E4B;
  --navy-dark:  #0F1E33;
  --navy-mid:   #243959;
  --gold:       #C9A84C;
  --gold-light: #E0C06A;
  --gold-pale:  #F5EDD0;
  --cream:      #F9F5EE;
  --cream-dark: #EFE8D8;
  --text:       #1C1C1C;
  --text-mid:   #4A4A4A;
  --text-muted: #888;
  --white:      #FFFFFF;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

body {
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

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

/* ============================================================
   TYPOGRAPHY UTILITIES
============================================================ */
.eyebrow {
  display: block;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.gold-rule {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 1.4rem auto 0;
}

/* ============================================================
   LAYOUT
============================================================ */
.container        { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
.container--narrow { max-width: 760px;  margin: 0 auto; padding: 0 2rem; }

section { padding: 6rem 0; }

.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  font-weight: normal;
  color: var(--navy);
  margin-top: 0.5rem;
  line-height: 1.2;
}
.section-header p {
  margin-top: 1rem;
  color: var(--text-mid);
  font-size: 1.05rem;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   NAVIGATION
============================================================ */
nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  background: rgba(15, 30, 51, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
}

.nav-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo {
  height: 40px;
  width: auto;
  display: block;
  border-radius: 3px;
  background: var(--white);
  padding: 4px 10px;
}

.nav-toggle { display: none; }
.nav-toggle-label {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle-label span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.25s;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover             { color: var(--gold); }
.nav-links a[aria-current="page"] { color: var(--gold); }

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-block;
  padding: 0.82rem 2.4rem;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.22s;
  cursor: pointer;
  border: 2px solid var(--gold);
  color: var(--gold);
  background: transparent;
}
.btn:hover { background: var(--gold); color: var(--navy-dark); }
.btn--filled { background: var(--gold); color: var(--navy-dark); }
.btn--filled:hover { background: var(--gold-light); border-color: var(--gold-light); }

/* ============================================================
   HERO (HOME PAGE)
============================================================ */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 9rem 2rem 7rem;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 15% 60%, rgba(201,168,76,0.07) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 25%, rgba(201,168,76,0.05) 0%, transparent 45%),
    linear-gradient(155deg, var(--navy-dark) 0%, var(--navy) 55%, #243959 100%);
}

.hero-watermark {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(5rem, 18vw, 16rem);
  font-family: Georgia, serif;
  color: rgba(201, 168, 76, 0.055);
  letter-spacing: 0.08em;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.hero-content { position: relative; z-index: 1; }

.hero-logo-wrap { margin-bottom: 2rem; }
.hero-logo-img {
  height: clamp(100px, 18vw, 160px);
  width: auto;
  max-width: 520px;
  margin: 0 auto;
  border-radius: 6px;
  box-shadow: 0 8px 56px rgba(0,0,0,0.45);
}

.hero-divider {
  width: 64px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 2.4rem auto;
}

.hero-motto {
  font-style: italic;
  font-size: clamp(1.1rem, 2.8vw, 1.55rem);
  color: rgba(255, 255, 255, 0.82);
  max-width: 480px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  margin-top: 2.8rem;
  padding: 0.85rem 2.2rem;
  border: 1px solid rgba(201, 168, 76, 0.38);
  background: rgba(201, 168, 76, 0.07);
}
.hero-badge p {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.hero-cta {
  margin-top: 2.2rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   PAGE HERO (INNER PAGES)
============================================================ */
.page-hero {
  padding: 9rem 2rem 4rem;
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 80%, rgba(201,168,76,0.06) 0%, transparent 60%),
    linear-gradient(155deg, var(--navy-dark) 0%, var(--navy) 100%);
}
.page-hero .eyebrow { color: var(--gold-light); letter-spacing: 0.25em; }
.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: normal;
  color: var(--white);
  margin-top: 0.5rem;
  line-height: 1.2;
}
.page-hero .gold-rule { margin-top: 1.4rem; }

/* ============================================================
   PILLARS (HOME PAGE)
============================================================ */
#pillars { background: var(--cream); }

.mission-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.pillar {
  background: var(--white);
  border-top: 3px solid var(--gold);
  padding: 2rem 1.75rem;
  text-align: center;
  box-shadow: 0 2px 24px rgba(0,0,0,0.045);
}
.pillar-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 1.2rem;
  color: var(--gold);
}
.pillar h3 {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
  font-weight: normal;
}
.pillar p { font-size: 0.88rem; color: var(--text-mid); }

/* ============================================================
   ABOUT PAGE — MISSION
============================================================ */
#mission { background: var(--cream); }

.mission-block {
  display: flex;
  gap: 3rem;
  margin-top: 2rem;
}
.mission-quote-bar {
  width: 3px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  flex-shrink: 0;
  border-radius: 2px;
}
.mission-text { font-size: 1.05rem; color: var(--text-mid); line-height: 1.9; }
.mission-text p + p { margin-top: 1.2rem; }

/* ============================================================
   FOUNDERS
============================================================ */
#founders { background: var(--navy-dark); color: var(--white); }
#founders .section-header h2 { color: var(--white); }
#founders .section-header p  { color: rgba(255,255,255,0.62); }

.founders-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.founder-card {
  padding: 2.5rem 2rem;
  border: 1px solid rgba(201,168,76,0.18);
  background: rgba(255,255,255,0.025);
}
.founder-avatar {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, #7A5A10 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 1.5rem;
}
.founder-card h3 {
  font-size: 1.05rem;
  color: var(--gold);
  font-weight: normal;
  margin-bottom: 0.2rem;
}
.founder-role {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1rem;
}
.founder-card p { font-size: 0.87rem; color: rgba(255,255,255,0.62); line-height: 1.72; }
.founder-card p + p { margin-top: 1rem; }

/* ============================================================
   ADMISSIONS PAGE
============================================================ */
#admissions-content { background: var(--cream); text-align: center; }

.admissions-cta p {
  color: var(--text-mid);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
}

/* ============================================================
   BROCHURE PLACEHOLDER
============================================================ */
#brochure-content { background: var(--cream); text-align: center; }

.placeholder-box {
  display: inline-block;
  padding: 3rem 4rem;
  border: 1px dashed rgba(201,168,76,0.45);
  background: var(--white);
  margin-top: 1rem;
}
.placeholder-box p {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-style: italic;
}

/* ============================================================
   DONATE PAGE
============================================================ */
#donate-content { background: var(--cream); }

.donate-intro {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3.5rem;
  color: var(--text-mid);
  font-size: 1.05rem;
  line-height: 1.8;
}

.qr-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 820px;
  margin: 0 auto;
}
.qr-card {
  background: var(--white);
  border-top: 3px solid var(--gold);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 2px 24px rgba(0,0,0,0.045);
}
.qr-card img {
  width: 100%;
  max-width: 180px;
  height: auto;
  margin: 0 auto 1.2rem;
  border-radius: 4px;
}
.qr-card h3 {
  font-size: 0.92rem;
  color: var(--navy);
  font-weight: 700;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ============================================================
   CONTACT PAGE
============================================================ */
#contact-content {
  background: var(--navy);
  color: var(--white);
  text-align: center;
}

.contact-details {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
  margin-top: 3rem;
}
.contact-item { display: flex; flex-direction: column; align-items: center; gap: 0.35rem; }
.contact-item .label {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.contact-item a, .contact-item span {
  color: var(--white);
  text-decoration: none;
  font-size: 1.05rem;
  transition: color 0.2s;
}
.contact-item a:hover { color: var(--gold-light); }

/* ============================================================
   FOOTER
============================================================ */
footer {
  background: var(--navy-dark);
  border-top: 1px solid rgba(201,168,76,0.12);
  padding: 1.6rem 2rem;
  text-align: center;
}
footer p {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.28);
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 900px) {
  .founders-grid   { grid-template-columns: 1fr; }
  .mission-pillars { grid-template-columns: 1fr; }
  .qr-grid         { grid-template-columns: 1fr; max-width: 280px; }
}

@media (max-width: 680px) {
  section { padding: 4rem 0; }
  .page-hero { padding: 7rem 2rem 3rem; }

  .nav-toggle-label { display: flex; }
  .nav-links {
    display: none;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 66px;
    left: 0;
    right: 0;
    background: rgba(15,30,51,0.98);
    border-top: 1px solid rgba(201,168,76,0.15);
    padding: 0.5rem 0 1rem;
  }
  .nav-links li a {
    display: block;
    padding: 0.75rem 2rem;
    font-size: 0.82rem;
  }
  .nav-toggle:checked ~ nav .nav-links { display: flex; }

  .contact-details  { flex-direction: column; gap: 1.5rem; }
  .mission-block    { flex-direction: column; gap: 1rem; }
  .mission-quote-bar { width: 48px; height: 3px; }
  .hero-cta         { flex-direction: column; align-items: center; }
}
