/*
=================================================================
Pham Foundation — Body / Page Content Styles
File: css/body.css
-----------------------------------------------------------------
SCOPE: All page body content. Header and footer styles are in
       css/headfoot.css — do not duplicate them here.

DESIGN SYSTEM (locked — applies to all 14 pages):
  Brand direction: "Quiet Authority"

  COLOR PALETTE:
    --navy:       #0f2a44   (primary dark)
    --navy-deep:  #091d30   (deepest navy — hero backgrounds)
    --navy-mid:   #163550   (mid navy — hover states)
    --gold:       #c59b3b   (primary accent)
    --gold-light: #d4af5a   (gold hover / highlight)
    --gold-pale:  #f0e0b0   (gold on dark backgrounds)
    --cream:      #faf7f2   (primary background)
    --cream-dark: #f2ece0   (alternate section background)
    --text:       #1a1a1a   (body text)
    --text-mid:   #3a3530   (secondary text)
    --text-muted: #7a7060   (muted / captions)
    --rule:       rgba(197,155,59,0.22)  (dividers)
    --radius:     8px

  TYPOGRAPHY:
    Heading / Display: Cormorant Garamond (serif) — weight 300/400
    Body:              Spectral (serif) — weight 300/400
    UI / Labels:       Josefin Sans (sans-serif) — weight 300/400/600
    Base size:         1rem / line-height 1.72

  HOMEPAGE SECTIONS (index.html — locked order):
    1. Hero
    2. Stats Bar
    3. Mission
    4. Philosophy Band
    5. Focus Areas
    6. Scholarships
    7. Science (4 institutions — family significance, featured prominently)
    8. Transparency
    9. Contact

  SCIENCE INSTITUTIONS (permanent — always featured on homepage):
    California Academy of Sciences
    Monterey Bay Aquarium
    The Gardens of Golden Gate Park
    The Exploratorium

  NOTES:
    - No inline <style> blocks in HTML pages — all rules live here
    - headfoot.css owns nav and footer exclusively
    - Page-specific rules grouped at bottom under labeled comments
=================================================================
*/

/* ── GOOGLE FONTS ── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Spectral:ital,wght@0,300;0,400;1,300&family=Josefin+Sans:wght@300;400;600&display=swap');

/* ── CSS VARIABLES ── */
:root {
  --navy:       #0f2a44;
  --navy-deep:  #091d30;
  --navy-mid:   #163550;
  --gold:       #c59b3b;
  --gold-light: #d4af5a;
  --gold-pale:  #f0e0b0;
  --cream:      #faf7f2;
  --cream-dark: #f2ece0;
  --text:       #1a1a1a;
  --text-mid:   #3a3530;
  --text-muted: #7a7060;
  --rule:       rgba(197,155,59,0.22);
  --radius:     8px;
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Spectral', Georgia, serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.72;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: var(--navy-deep);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 8rem 2rem 5rem;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    -55deg, transparent, transparent 60px,
    rgba(197,155,59,0.025) 60px, rgba(197,155,59,0.025) 61px
  );
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(197,155,59,0.06), transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -55%);
  pointer-events: none;
}
.hero-kicker {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.68rem; font-weight: 400; letter-spacing: 0.35em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 2.5rem; position: relative; z-index: 1;
  opacity: 0; animation: fadeUp 0.8s ease forwards 0.2s;
}
.hero h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300; font-size: clamp(3.2rem, 7.5vw, 7rem);
  line-height: 1.04; color: var(--cream); letter-spacing: -0.02em;
  max-width: 820px; position: relative; z-index: 1;
  opacity: 0; animation: fadeUp 0.9s ease forwards 0.4s;
}
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero-rule {
  width: 60px; height: 1px; background: var(--gold);
  margin: 2.5rem auto; position: relative; z-index: 1;
  opacity: 0; animation: fadeIn 0.8s ease forwards 0.9s;
}
.hero-sub {
  font-family: 'Spectral', serif; font-weight: 300; font-style: italic;
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(240,224,176,0.65); max-width: 520px;
  position: relative; z-index: 1;
  opacity: 0; animation: fadeUp 0.9s ease forwards 1.1s;
}
.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  opacity: 0; animation: fadeIn 1s ease forwards 1.8s; z-index: 1;
}
.hero-scroll span {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.58rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: rgba(197,155,59,0.4);
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite 2.5s;
}

/* ── STATS BAR ── */
.stats-bar {
  background: var(--navy-deep);
  border-bottom: 1px solid rgba(197,155,59,0.15);
  padding: 0;
}
.stats-inner {
  max-width: 1120px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: rgba(197,155,59,0.1);
}
.stat-cell {
  background: var(--navy);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: background 0.2s;
}
.stat-cell:hover { background: var(--navy-mid); }
.stat-value {
  display: block;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.2rem; font-weight: 400;
  color: var(--gold-light); line-height: 1;
}
.stat-label {
  display: block;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.6rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(240,224,176,0.4);
  margin-top: 0.5rem;
}

/* ── LAYOUT ── */
section { padding: 7rem 2rem; }
.container { max-width: 980px; margin: 0 auto; }
.container-wide { max-width: 1200px; margin: 0 auto; }
.section-kicker {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.63rem; font-weight: 400; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--gold);
  display: block; margin-bottom: 1.25rem;
}
.section-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300; font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.15; color: var(--navy); margin-bottom: 1.5rem;
}
.section-title em { font-style: italic; color: var(--gold); }
.lead {
  font-size: 1.05rem; font-weight: 300;
  color: var(--text-mid); max-width: 640px; line-height: 1.82;
}
.gold-rule { width: 48px; height: 2px; background: var(--gold); margin: 2rem 0; }

/* ── MISSION ── */
.mission-section { background: var(--cream); }
.mission-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem; align-items: start;
  margin-top: 1rem;
}
.mission-text p {
  font-size: 0.97rem; line-height: 1.88;
  color: var(--text-mid); margin-bottom: 1.3rem; font-weight: 300;
}
.mission-text p:last-child { margin-bottom: 0; }
.mission-text p em { font-style: italic; color: var(--navy); }
.mission-values {
  padding: 2.5rem; border: 1px solid var(--rule);
  border-top: 3px solid var(--gold); background: white;
  border-radius: var(--radius);
}
.mission-values h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.25rem; font-weight: 400; color: var(--navy);
  margin-bottom: 1.25rem; padding-bottom: 1rem; border-bottom: 1px solid var(--rule);
}
.value-row {
  display: flex; gap: 0.85rem; align-items: flex-start;
  padding: 0.75rem 0; border-bottom: 1px solid rgba(197,155,59,0.08);
}
.value-row:last-child { border-bottom: none; }
.value-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0; margin-top: 0.55rem;
}
.value-row p { font-size: 0.875rem; line-height: 1.65; color: var(--text-mid); }

/* ── PHILOSOPHY BAND ── */
.philosophy {
  background: var(--navy);
  padding: 6rem 2rem;
}
.philosophy-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.philosophy blockquote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.3rem, 3vw, 1.85rem);
  font-weight: 300; font-style: italic;
  line-height: 1.6; color: var(--cream);
  position: relative; padding: 0 2.5rem;
}
.philosophy blockquote::before,
.philosophy blockquote::after {
  font-size: 5rem; line-height: 0;
  color: var(--gold); opacity: 0.25;
  position: absolute; font-family: Georgia, serif;
}
.philosophy blockquote::before { content: '\201C'; top: 0.6rem; left: -0.5rem; }
.philosophy blockquote::after  { content: '\201D'; bottom: -1rem; right: -0.5rem; }
.philosophy cite {
  display: block; margin-top: 2.5rem;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.65rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold); font-style: normal;
}

/* ── FOCUS AREAS ── */
.focus-section { background: var(--cream-dark); }
.focus-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 3.5rem;
  border: 1px solid var(--rule);
}
.focus-card {
  background: white; padding: 2rem 1.75rem;
  border-top: 3px solid transparent;
  transition: background 0.25s;
}
.focus-card:hover { background: var(--navy); }
.focus-card:hover .fc-title { color: var(--cream); }
.focus-card:hover .fc-body  { color: rgba(240,224,176,0.58); }
.focus-card:hover .fc-badge { background: rgba(197,155,59,0.18); color: var(--gold-light); border-color: rgba(197,155,59,0.3); }
.fc-scholarships { border-top-color: var(--gold); }
.fc-stem         { border-top-color: #4a90c4; }
.fc-science      { border-top-color: #4caf88; }
.fc-stewardship  { border-top-color: var(--text-muted); }
.fc-badge {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.58rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-muted); border: 1px solid rgba(0,0,0,0.1);
  padding: 0.2rem 0.6rem; display: inline-block;
  margin-bottom: 1.25rem; transition: all 0.25s;
  border-radius: 999px;
}
.fc-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.2rem; font-weight: 400;
  color: var(--navy); margin-bottom: 0.6rem;
  transition: color 0.25s;
}
.fc-body {
  font-size: 0.875rem; line-height: 1.68;
  color: var(--text-muted); transition: color 0.25s;
}

/* ── SCHOLARSHIPS ── */
.scholarships-section { background: var(--cream); }
.program-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 3.5rem;
  border: 1px solid var(--rule);
}
.program-card {
  background: white;
  display: flex; flex-direction: column;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.program-card:hover { box-shadow: 0 16px 44px rgba(15,42,68,0.13); }
.pc-header {
  padding: 1.25rem 1.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: space-between;
}
.pc-active      .pc-header { background: linear-gradient(135deg, var(--navy), var(--navy-mid)); border-top: 3px solid var(--gold); }
.pc-development .pc-header { background: linear-gradient(135deg, #1e4d3e, #2f6f5e); border-top: 3px solid #4caf88; }
.pc-planned     .pc-header { background: linear-gradient(135deg, #2a2a4a, #3a3a6a); border-top: 3px solid var(--text-muted); }
.pc-status {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.58rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.88); background: rgba(255,255,255,0.12);
  padding: 3px 10px; border-radius: 999px; border: 1px solid rgba(255,255,255,0.2);
}
.pc-year {
  font-family: 'Spectral', serif; font-style: italic;
  font-size: 0.8rem; color: rgba(255,255,255,0.55);
}
.pc-body { flex: 1; padding: 1.75rem; display: flex; flex-direction: column; }
.pc-body h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.2rem; font-weight: 400;
  color: var(--navy); margin-bottom: 0.6rem;
}
.pc-body p {
  font-size: 0.88rem; line-height: 1.7;
  color: var(--text-muted); flex: 1; margin-bottom: 1.5rem;
}
.pc-links {
  display: flex; flex-wrap: wrap; gap: 0.6rem;
  padding-top: 1.25rem; border-top: 1px solid var(--rule);
  margin-top: auto;
}
.pc-link {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.6rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--navy); border: 1px solid var(--rule);
  padding: 0.4rem 0.9rem; text-decoration: none;
  border-radius: var(--radius); transition: all 0.2s;
}
.pc-link:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.pc-link.vi { color: var(--text-muted); }

/* ── SCIENCE ── */
.science-section { background: var(--navy); padding: 7rem 2rem; }
.science-section .section-kicker { color: var(--gold-light); }
.science-section .section-title { color: var(--cream); }
.science-section .lead { color: rgba(240,224,176,0.68); max-width: 640px; }
.science-copy { max-width: 640px; margin-top: 2rem; }
.science-copy p {
  font-size: 0.95rem; line-height: 1.88;
  color: rgba(240,224,176,0.62); margin-bottom: 1.2rem; font-weight: 300;
}
.science-copy p em { font-style: italic; color: rgba(240,224,176,0.85); }
.science-copy p:last-child { margin-bottom: 0; }
.science-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 4rem;
  background: rgba(197,155,59,0.12);
}
.science-card { background: var(--navy-mid); overflow: hidden; transition: background 0.2s; }
.science-card:hover { background: var(--navy-deep); }
.science-card img {
  width: 100%;
  height: 198px;
  display: block;
  object-fit: cover;
  object-position: top left;
  opacity: 0.85;
  filter: grayscale(15%);
  transition: opacity 0.3s;
}
.science-card:hover img { opacity: 0.9; }
.science-card-body { padding: 1.5rem; }
.science-card-body h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.05rem; font-weight: 400; margin-bottom: 0.4rem;
}
.science-card-body h3 a { color: var(--gold-pale); text-decoration: none; transition: color 0.2s; }
.science-card-body h3 a:hover { color: var(--gold-light); }
.science-card-body p { font-size: 0.82rem; line-height: 1.65; color: rgba(240,224,176,0.45); }

/* ── TRANSPARENCY ── */
.transparency-section { background: var(--cream-dark); padding: 5rem 2rem; }
.transparency-inner { max-width: 680px; margin: 0 auto; text-align: center; }
.transparency-inner p {
  font-size: 0.95rem; line-height: 1.82;
  color: var(--text-muted); margin-bottom: 2rem; font-weight: 300;
}
.btn-outline {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.65rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold-pale); border: 1.5px solid rgba(197,155,59,0.5);
  padding: 0.85rem 2rem; text-decoration: none;
  border-radius: var(--radius); transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.btn-outline:hover {
  background: rgba(197,155,59,0.12);
  border-color: var(--gold);
  color: var(--gold-light);
}
/* btn-outline on light/cream backgrounds */
.btn-outline-light {
  color: var(--navy);
  border-color: var(--gold);
}
.btn-outline-light:hover { background: var(--gold); color: var(--navy); }

/* ── CONTACT ── */
.contact-section { background: var(--cream); }
.contact-grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem; align-items: start; margin-top: 1rem;
}
.contact-text p {
  font-size: 0.95rem; line-height: 1.85;
  color: var(--text-mid); margin-bottom: 1rem; font-weight: 300;
}
.contact-text a { color: var(--navy); }
.contact-text a:hover { color: var(--gold); }
.contact-aside {
  padding: 2.5rem;
  background: var(--navy);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius);
}
.contact-aside h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.2rem; font-weight: 400;
  color: var(--gold-pale); margin-bottom: 1rem;
  padding-bottom: 1rem; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.contact-aside p {
  font-size: 0.88rem; line-height: 1.75;
  color: rgba(240,224,176,0.6); margin-bottom: 1.25rem;
}
.contact-aside a {
  display: inline-flex; align-items: center;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold-light); border: 1px solid rgba(197,155,59,0.35);
  padding: 0.65rem 1.25rem; text-decoration: none;
  border-radius: var(--radius); transition: all 0.2s;
}
.contact-aside a:hover { background: rgba(197,155,59,0.12); color: var(--gold-light); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; } 50% { opacity: 1; }
}

/* ── SCROLL REVEALS ── */
.reveal {
  opacity: 0; transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 860px) {
  .focus-grid { grid-template-columns: repeat(2, 1fr); }
  .science-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 780px) {
  section { padding: 5rem 1.5rem; }
  .hero { padding: 8rem 1.5rem 4rem; min-height: auto; padding-bottom: 5rem; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .mission-grid { grid-template-columns: 1fr; gap: 3rem; }
  .program-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
}
@media (max-width: 480px) {
  .focus-grid { grid-template-columns: 1fr; }
  .science-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════
   ABOUT PAGE — page-specific styles
   about.html · about-viet.html
   ══════════════════════════════════════════ */

.ornament { display: block; margin: 0 auto; opacity: 0.4; }

/* Founders Letter */
.letter-section { background: var(--cream); }
.letter-inner { max-width: 740px; margin: 0 auto; }
.letter-inner .section-kicker { text-align: center; }
.letter-inner .section-title { text-align: center; }
.letter-rule { width: 48px; height: 1px; background: var(--gold); margin: 2rem auto; }
.letter-body {
  border-left: 2px solid var(--rule);
  padding-left: 2.5rem; margin-top: 2.5rem;
}
.letter-body p {
  font-size: 1.05rem; line-height: 1.88;
  color: var(--text-mid); margin-bottom: 1.5rem; font-weight: 300;
}
.letter-body p:last-child { margin-bottom: 0; }
.letter-body p em { font-style: italic; color: var(--navy); }
.letter-sig {
  margin-top: 2.5rem; padding-top: 1.5rem;
  border-top: 1px solid var(--rule);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic; font-size: 1.1rem; color: var(--navy);
}
.letter-sig span {
  display: block; font-family: 'Josefin Sans', sans-serif;
  font-style: normal; font-size: 0.62rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--text-muted); margin-top: 0.4rem;
}

/* Founders Grid */
.founders-section { background: var(--cream-dark); }
.founders-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px; margin-top: 4rem;
  border: 1px solid var(--rule);
}
.founder-card {
  background: white; padding: 2.5rem 2rem; position: relative;
  transition: background 0.3s;
}
.founder-card:hover { background: var(--navy); }
.founder-card:hover .founder-name,
.founder-card:hover .founder-role,
.founder-card:hover .founder-desc { color: rgba(240,224,176,0.8); }
.founder-card:hover .founder-name { color: var(--cream); }
.founder-card:hover .card-accent { background: var(--gold); }
.founder-card:hover .founder-tag {
  background: rgba(197,155,59,0.18);
  color: var(--gold-light);
  border-color: rgba(197,155,59,0.3);
}
.card-accent {
  width: 3px; height: 36px; background: var(--gold);
  margin-bottom: 1.5rem; transition: background 0.3s;
}
.founder-photo {
  width: 100%; aspect-ratio: 4/3;
  object-fit: cover; object-position: top;
  display: block; margin-bottom: 1.5rem;
  filter: grayscale(20%); transition: filter 0.3s;
}
.founder-card:hover .founder-photo { filter: grayscale(40%) brightness(0.85); }
.founder-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem; font-weight: 400;
  color: var(--navy); margin-bottom: 0.2rem; transition: color 0.3s;
}
.founder-role {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.61rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.25rem; transition: color 0.3s;
}
.founder-tag {
  display: inline-block; font-family: 'Josefin Sans', sans-serif;
  font-size: 0.58rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--text-muted);
  border: 1px solid rgba(0,0,0,0.1);
  padding: 0.25rem 0.65rem; margin-bottom: 1rem; transition: all 0.3s;
}
.founder-desc {
  font-size: 0.875rem; line-height: 1.72;
  color: var(--text-mid); transition: color 0.3s;
}

/* Values */
.values-section { background: var(--cream); }
.values-list { display: flex; flex-direction: column; gap: 0; }
.value-item {
  display: grid; grid-template-columns: 80px 1fr; gap: 2.5rem;
  align-items: start; padding: 2.5rem 0;
  border-bottom: 1px solid var(--rule);
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.value-item.visible { opacity: 1; transform: translateY(0); }
.value-item:first-child { border-top: 1px solid var(--rule); }
.value-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.5rem; font-weight: 300;
  color: rgba(197,155,59,0.3); line-height: 1; padding-top: 0.2rem;
}
.value-content h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.3rem; font-weight: 400;
  color: var(--navy); margin-bottom: 0.6rem;
}
.value-content p { font-size: 0.92rem; line-height: 1.78; color: var(--text-mid); }
.value-content p em { font-style: italic; color: var(--navy); }

/* Closing */
.closing {
  background: var(--navy-deep); padding: 8rem 2rem;
  text-align: center; position: relative; overflow: hidden;
}
.closing::before {
  content: ''; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    35deg, transparent, transparent 80px,
    rgba(197,155,59,0.02) 80px, rgba(197,155,59,0.02) 81px
  );
}
.closing-inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.closing h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300; color: var(--cream); line-height: 1.2; margin-bottom: 1.5rem;
}
.closing h2 em { font-style: italic; color: var(--gold-light); }
.closing p {
  font-size: 0.95rem; color: rgba(240,224,176,0.55);
  line-height: 1.85; font-style: italic; margin-bottom: 1rem;
}
.closing-rule { width: 48px; height: 1px; background: var(--gold); margin: 2rem auto; }
.closing-sig {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic; font-size: 1.1rem;
  color: rgba(240,224,176,0.65); margin-top: 2rem;
}

/* About page responsive */
@media (max-width: 720px) {
  .value-item { grid-template-columns: 50px 1fr; gap: 1.5rem; }
}

/* ══════════════════════════════════════════
   STEWARDSHIP PAGE — page-specific styles
   stewardship.html · stewardship-viet.html
   ══════════════════════════════════════════ */

/* Family Members Grid */
.family-section { background: var(--cream-dark); }
.family-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2px; margin-top: 4rem;
  border: 1px solid var(--rule);
}
.family-card {
  background: white; padding: 2.5rem 2rem;
  position: relative; transition: background 0.3s;
}
.family-card:hover { background: var(--navy); }
.family-card:hover .member-role,
.family-card:hover .member-desc { color: rgba(240,224,176,0.6); }
.family-card:hover .member-name { color: var(--cream); }
.family-card:hover .member-tag {
  background: rgba(197,155,59,0.18);
  color: var(--gold-light);
  border-color: rgba(197,155,59,0.3);
}
.family-card:hover .card-accent { background: var(--gold); }
.member-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem; font-weight: 400;
  color: var(--navy); margin-bottom: 0.2rem; transition: color 0.3s;
}
.member-role {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.61rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.25rem; transition: color 0.3s;
}
.member-tag {
  display: inline-block; font-family: 'Josefin Sans', sans-serif;
  font-size: 0.58rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--text-muted);
  border: 1px solid rgba(0,0,0,0.1);
  padding: 0.25rem 0.65rem; margin-bottom: 1rem; transition: all 0.3s;
}
.member-desc {
  font-size: 0.875rem; line-height: 1.72;
  color: var(--text-mid); transition: color 0.3s;
}

/* Directives */
.directives-section { background: var(--cream); }
.directives-intro { max-width: 640px; margin-bottom: 4rem; }
.directives-list { display: flex; flex-direction: column; gap: 0; }
.directive-item {
  display: grid; grid-template-columns: 80px 1fr;
  gap: 2.5rem; align-items: start;
  padding: 2.5rem 0; border-bottom: 1px solid var(--rule);
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.directive-item.visible { opacity: 1; transform: translateY(0); }
.directive-item:first-child { border-top: 1px solid var(--rule); }
.directive-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.5rem; font-weight: 300;
  color: rgba(197,155,59,0.3); line-height: 1; padding-top: 0.2rem;
}
.directive-content h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.3rem; font-weight: 400;
  color: var(--navy); margin-bottom: 0.6rem;
}
.directive-content p { font-size: 0.92rem; line-height: 1.78; color: var(--text-mid); }
.directive-content p em { font-style: italic; color: var(--navy); }

/* Daughters Pathway */
.pathway-section { background: var(--cream-dark); }
.pathway-intro {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: start; margin-bottom: 4rem;
}
.pathway-timeline { position: relative; padding-left: 3rem; }
.pathway-timeline::before {
  content: ''; position: absolute; left: 0; top: 8px; bottom: 8px;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold), rgba(197,155,59,0.08));
}
.path-node {
  position: relative; margin-bottom: 2.5rem;
  opacity: 0; transform: translateX(-12px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.path-node.visible { opacity: 1; transform: translateX(0); }
.path-node::before {
  content: ''; position: absolute; left: -3rem; top: 6px;
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--gold); border: 2px solid var(--cream-dark);
  box-shadow: 0 0 0 3px rgba(197,155,59,0.18);
}
.path-age {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.75rem; font-weight: 500;
  color: var(--navy); line-height: 1; margin-bottom: 0.3rem;
}
.path-label {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.61rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem;
}
.path-desc { font-size: 0.875rem; color: var(--text-mid); line-height: 1.68; }

/* Structure */
.structure-section { background: var(--navy); }
.structure-section .section-title { color: var(--cream); }
.structure-section .lead { color: rgba(240,224,176,0.65); max-width: 640px; }
.structure-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; margin-top: 4rem;
  background: rgba(197,155,59,0.12);
}
.structure-card {
  background: var(--navy-mid); padding: 2.5rem 2rem; transition: background 0.2s;
}
.structure-card:hover { background: var(--navy-deep); }
.structure-number {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 3.5rem; font-weight: 300;
  color: rgba(197,155,59,0.18); line-height: 1; margin-bottom: 1rem;
}
.structure-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.3rem; font-weight: 400;
  color: var(--cream); margin-bottom: 0.5rem;
}
.structure-label {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.58rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1rem;
}
.structure-desc { font-size: 0.85rem; color: rgba(240,224,176,0.52); line-height: 1.72; }

/* Protection */
.protection-section { background: var(--cream); }
.protection-inner {
  display: grid; grid-template-columns: 1fr 2fr;
  gap: 5rem; align-items: center;
}
.protection-stat {
  text-align: center; padding: 3rem 2rem;
  border: 1px solid var(--rule); position: relative;
}
.protection-stat::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 48px; height: 2px; background: var(--gold);
}
.protection-pct {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 5rem; font-weight: 300; color: var(--navy); line-height: 1;
}
.protection-pct span {
  font-size: 2.5rem; vertical-align: top;
  margin-top: 0.75rem; display: inline-block; color: var(--gold);
}
.protection-label {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.6rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--text-muted); margin-top: 0.75rem;
}
.protection-text h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.75rem; font-weight: 300; color: var(--navy); margin-bottom: 1rem;
}
.protection-text p { font-size: 0.95rem; line-height: 1.82; color: var(--text-mid); margin-bottom: 1rem; }
.protection-text p:last-child { margin-bottom: 0; }

/* Stewardship responsive */
@media (max-width: 720px) {
  .pathway-intro { grid-template-columns: 1fr; gap: 2.5rem; }
  .structure-grid { grid-template-columns: 1fr; }
  .protection-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .directive-item { grid-template-columns: 50px 1fr; gap: 1.5rem; }
}

/* ══════════════════════════════════════════
   CONTACT PAGE — page-specific styles
   contact.html · contact-viet.html
   ══════════════════════════════════════════ */

.contact-page-section { background: var(--cream); }

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

.contact-page-block { }

.contact-detail-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 1rem;
}

.contact-detail-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--rule);
  align-items: start;
}
.contact-detail-row:last-child { border-bottom: none; }

.contact-detail-label {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding-top: 0.15rem;
}

.contact-detail-value {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.65;
}
.contact-detail-value a {
  color: var(--navy);
  text-decoration: none;
  transition: color 0.2s;
}
.contact-detail-value a:hover { color: var(--gold); }

.contact-note {
  margin-top: 2rem;
  padding: 1.5rem;
  border-left: 2px solid var(--rule);
}
.contact-note p {
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--text-muted);
  font-style: italic;
}

/* Founder contact cards */
.founder-contact-card {
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--rule);
}
.founder-contact-card:first-of-type { border-top: 1px solid var(--rule); }

.founder-contact-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 0.2rem;
}

.founder-contact-role {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.founder-contact-detail span {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid rgba(0,0,0,0.1);
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  display: inline-block;
  margin-bottom: 0.75rem;
}

.founder-contact-email {
  display: inline-block;
  font-size: 0.9rem;
  color: var(--navy);
  text-decoration: none;
  transition: color 0.2s;
}
.founder-contact-email:hover { color: var(--gold); }

/* Contact page responsive */
@media (max-width: 720px) {
  .contact-page-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .contact-detail-row {
    grid-template-columns: 90px 1fr;
  }
}

/* ══════════════════════════════════════════
   CONTACT PAGE — page-specific styles
   contact.html · contact-viet.html
   ══════════════════════════════════════════ */

/* Private Foundation Statement Grid */
.contact-statement-section { background: var(--cream-dark); }
.contact-private-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  border: 1px solid var(--rule);
}
.contact-private-card {
  background: white;
  padding: 2rem 1.75rem;
  border-top: 3px solid var(--rule);
  transition: background 0.25s;
}
.contact-private-card:hover { background: var(--navy); }
.contact-private-card:hover h3,
.contact-private-card:hover p { color: rgba(240,224,176,0.75); }
.contact-private-card:hover .contact-private-icon { color: var(--gold); }
.contact-private-icon {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: color 0.25s;
}
.contact-private-card h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.1rem; font-weight: 400;
  color: var(--navy); margin-bottom: 0.6rem;
  transition: color 0.25s;
}
.contact-private-card p {
  font-size: 0.875rem; line-height: 1.68;
  color: var(--text-muted); transition: color 0.25s;
}

/* Who We Respond To */
.contact-respond-section { background: var(--cream); }
.contact-respond-list {
  display: flex; flex-direction: column; gap: 0;
  margin-top: 3rem;
}
.contact-respond-item {
  display: grid; grid-template-columns: 80px 1fr;
  gap: 2.5rem; align-items: start;
  padding: 2.5rem 0; border-bottom: 1px solid var(--rule);
}
.contact-respond-item:first-child { border-top: 1px solid var(--rule); }
.contact-respond-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.5rem; font-weight: 300;
  color: rgba(197,155,59,0.3); line-height: 1; padding-top: 0.2rem;
}
.contact-respond-body h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.3rem; font-weight: 400;
  color: var(--navy); margin-bottom: 0.6rem;
}
.contact-respond-body p {
  font-size: 0.92rem; line-height: 1.78; color: var(--text-mid);
}

/* Contact Details */
.contact-details-section { background: var(--navy-deep); }
.contact-details-section .section-kicker { color: var(--gold-light); }
.contact-details-section .section-title { color: var(--cream); }
.contact-details-section .gold-rule { background: var(--gold); }
.contact-details-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; margin-top: 3.5rem;
  background: rgba(197,155,59,0.1);
}
.contact-details-card {
  background: var(--navy);
  padding: 2.5rem 2rem;
  transition: background 0.2s;
}
.contact-details-card:hover { background: var(--navy-mid); }
.contact-details-label {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.6rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 1rem;
}
.contact-details-value {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.15rem; font-weight: 400;
  color: var(--cream); line-height: 1.5;
  margin-bottom: 1.25rem;
}
.contact-details-value a {
  color: var(--gold-light); text-decoration: none;
  transition: color 0.2s;
}
.contact-details-value a:hover { color: var(--gold-pale); }
.contact-details-note {
  font-size: 0.82rem; line-height: 1.65;
  color: rgba(240,224,176,0.45);
}

/* Contact page responsive */
@media (max-width: 860px) {
  .contact-private-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-details-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .contact-private-grid { grid-template-columns: 1fr; }
  .contact-respond-item { grid-template-columns: 50px 1fr; gap: 1.5rem; }
}

/* ── Founder / Member email display ── */
.founder-email {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.62rem; letter-spacing: 0.12em;
  margin-bottom: 1.25rem;
}
.founder-email a {
  color: var(--gold); text-decoration: none; transition: color 0.2s;
}
.founder-email a:hover { color: var(--gold-light); }
.founder-card:hover .founder-email a,
.family-card:hover .founder-email a { color: var(--gold-light); }

/* ══════════════════════════════════════════
   SCHOLARSHIPS PAGE — page-specific styles
   scholarships.html · scholarships-viet.html
   ══════════════════════════════════════════ */

/* Program card extended (institution label + details) */
.programs-section { background: var(--cream); }
.pc-institution {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.58rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 0.6rem;
}
.pc-details {
  display: flex; flex-direction: column; gap: 6px;
  margin-bottom: 1.5rem; padding: 1rem 1.25rem;
  background: var(--cream); border-radius: var(--radius);
  border: 1px solid var(--rule);
}
.pc-detail {
  display: flex; gap: 0.75rem; align-items: baseline;
  font-size: 0.85rem; color: var(--text-mid);
}
.pc-detail span {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.58rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--navy); min-width: 72px; flex-shrink: 0; padding-top: 2px;
}

/* Philosophy section */
.philosophy-section { background: var(--navy); padding: 7rem 2rem; }
.philosophy-section .section-kicker { color: var(--gold-light); }
.philosophy-section .section-title { color: var(--cream); }
.philosophy-grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem; align-items: start; margin-top: 3rem;
}
.phil-text p {
  font-size: 0.97rem; line-height: 1.9;
  color: rgba(240,224,176,0.65); margin-bottom: 1.3rem; font-weight: 300;
}
.phil-text p:last-child { margin-bottom: 0; }
.phil-text p em { font-style: italic; color: rgba(240,224,176,0.9); }
.perseverance-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(197,155,59,0.25);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius); padding: 2.5rem;
}
.perseverance-card h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.3rem; font-weight: 400;
  color: var(--gold-pale); margin-bottom: 1.25rem;
  padding-bottom: 1rem; border-bottom: 1px solid rgba(197,155,59,0.2);
}
.perseverance-card p {
  font-size: 0.92rem; line-height: 1.85;
  color: rgba(240,224,176,0.62); margin-bottom: 1rem;
}
.perseverance-card p:last-of-type { margin-bottom: 0; }
.perseverance-attr {
  display: block; margin-top: 1.25rem;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.58rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); opacity: 0.7;
}

/* Timeline */
.timeline-section { background: var(--cream-dark); }
.timeline-track {
  margin-top: 4rem; position: relative; padding-left: 3rem;
}
.timeline-track::before {
  content: ''; position: absolute; left: 0; top: 8px; bottom: 8px;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold), rgba(197,155,59,0.1));
}
.tl-item {
  position: relative; margin-bottom: 3.5rem;
  opacity: 0; transform: translateX(-14px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.tl-item.visible { opacity: 1; transform: translateX(0); }
.tl-item:last-child { margin-bottom: 0; }
.tl-item::before {
  content: ''; position: absolute; left: -3rem; top: 6px;
  width: 10px; height: 10px; border-radius: 50%;
  border: 2px solid var(--cream-dark);
  box-shadow: 0 0 0 3px rgba(197,155,59,0.2);
}
.tl-active::before      { background: var(--gold); }
.tl-development::before { background: #4caf88; box-shadow: 0 0 0 3px rgba(76,175,136,0.2); }
.tl-planned::before     { background: var(--cream-dark); border-color: var(--cream-dark); box-shadow: 0 0 0 3px rgba(122,112,96,0.2); }
.tl-year {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase; margin-bottom: 0.4rem;
}
.tl-active .tl-year      { color: var(--gold); }
.tl-development .tl-year { color: #3a9a74; }
.tl-planned .tl-year     { color: var(--text-muted); }
.tl-item h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.4rem; font-weight: 400; color: var(--navy); margin-bottom: 0.6rem;
}
.tl-item p {
  font-size: 0.9rem; line-height: 1.78;
  color: var(--text-muted); max-width: 580px; margin-bottom: 0.75rem;
}
.tl-link {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.6rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--navy); text-decoration: none;
  border-bottom: 1px solid var(--rule); padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}
.tl-link:hover { color: var(--gold); border-color: var(--gold); }

/* Notice */
.notice {
  margin-top: 3rem; padding: 1.25rem 1.5rem;
  background: rgba(47,111,94,0.06);
  border-left: 3px solid #2f6f5e;
  border-radius: var(--radius);
  font-size: 0.88rem; line-height: 1.72; color: var(--text-muted);
}
.notice strong { color: var(--navy); }

/* Contact band on scholarships page */
.contact-section { background: var(--navy); padding: 6rem 2rem; text-align: center; }
.contact-inner { max-width: 560px; margin: 0 auto; }
.contact-section .section-kicker { color: var(--gold-light); }
.contact-section .section-title { color: var(--cream); font-size: clamp(1.75rem, 3.5vw, 2.6rem); }
.contact-section .lead { color: rgba(240,224,176,0.65); margin: 0 auto 2.5rem; }
.contact-meta {
  margin-top: 1.25rem;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.6rem; letter-spacing: 0.16em;
  color: rgba(240,224,176,0.3);
}

/* Scholarships responsive */
@media (max-width: 860px) {
  .program-grid { grid-template-columns: 1fr; }
}
@media (max-width: 780px) {
  .philosophy-grid { grid-template-columns: 1fr; gap: 3rem; }
}

/* ══════════════════════════════════════════
   SJSU PAGE — page-specific styles
   sjsu.html
   ══════════════════════════════════════════ */

.sjsu-section { background: var(--cream); padding: 7rem 2rem; }
.sjsu-section-alt { background: var(--cream-dark); }

/* Two-column layout */
.sjsu-split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4rem; align-items: start;
}

/* Summary card */
.sjsu-summary-card {
  background: var(--navy);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
}
.sjsu-summary-amount {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 3rem; font-weight: 300;
  color: var(--gold-light); line-height: 1;
  margin-bottom: 0.25rem;
}
.sjsu-summary-label {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.6rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(240,224,176,0.45);
  margin-bottom: 0.25rem;
}
.sjsu-summary-sub {
  font-family: 'Spectral', serif; font-style: italic;
  font-size: 0.88rem; color: rgba(240,224,176,0.55);
  margin-bottom: 1.5rem;
}
.sjsu-summary-divider {
  width: 100%; height: 1px;
  background: rgba(197,155,59,0.2);
  margin-bottom: 1.25rem;
}
.sjsu-summary-row {
  font-size: 0.85rem; color: rgba(240,224,176,0.65);
  line-height: 1.55; margin-bottom: 0.75rem;
}
.sjsu-summary-row:last-child { margin-bottom: 0; }
.sjsu-summary-row span {
  display: block;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.58rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 0.15rem;
}

/* Eligibility */
.sjsu-label {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.65rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--navy);
  font-weight: 600; margin: 2rem 0 0.75rem;
}
.sjsu-criteria {
  padding-left: 1.25rem; margin-bottom: 1.5rem;
}
.sjsu-criteria li {
  font-size: 0.92rem; line-height: 1.72;
  color: var(--text-mid); margin-bottom: 0.4rem;
}
.sjsu-preference {
  background: var(--cream-dark);
  border-left: 3px solid var(--gold);
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.88rem; line-height: 1.72;
  color: var(--text-mid); margin-bottom: 1.25rem;
}
.sjsu-preference strong { color: var(--navy); }
.sjsu-note {
  font-size: 0.82rem; line-height: 1.65;
  color: var(--text-muted); font-style: italic;
}
.sjsu-body {
  font-size: 0.95rem; line-height: 1.85;
  color: var(--text-mid); margin-top: 1rem;
}

/* Table */
.sjsu-table-wrap {
  margin-top: 2rem; overflow-x: auto;
}
.sjsu-badge {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.6rem; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 3px 10px;
  border-radius: 999px; border: 1px solid;
}
.sjsu-badge-funded {
  background: rgba(47,111,94,0.1);
  color: #2f6f5e; border-color: rgba(47,111,94,0.3);
}
.sjsu-badge-scheduled {
  background: rgba(197,155,59,0.08);
  color: #7a5c1a; border-color: rgba(197,155,59,0.25);
}

/* Awardee grid */
.sjsu-awardee-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 2px; margin-top: 2.5rem;
  border: 1px solid var(--rule);
}
.sjsu-awardee-card {
  background: white; padding: 1.75rem 1.5rem;
  border-top: 3px solid var(--rule);
  transition: background 0.2s;
}
.sjsu-awardee-card:hover { background: var(--cream-dark); }
.sjsu-awardee-year {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.6rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 0.6rem;
}
.sjsu-awardee-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.15rem; font-weight: 400;
  color: var(--navy); margin-bottom: 0.75rem;
}
.sjsu-awardee-detail {
  font-size: 0.82rem; color: var(--text-muted);
  line-height: 1.55; margin-bottom: 0.2rem;
}
.sjsu-awardee-note { font-style: italic; }

/* Appendix / Donor Statement */
.sjsu-appendix {
  margin-top: 2rem; max-width: 740px;
  border-left: 2px solid var(--rule);
  padding-left: 2.5rem;
}
.sjsu-appendix h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.15rem; font-weight: 400;
  color: var(--navy); margin-bottom: 1.25rem;
  padding-bottom: 0.75rem; border-bottom: 1px solid var(--rule);
}
.sjsu-appendix p {
  font-size: 0.95rem; line-height: 1.85;
  color: var(--text-mid); margin-bottom: 1.25rem;
}
.sjsu-appendix p:last-child { margin-bottom: 0; }
.sjsu-appendix p em { font-style: italic; color: var(--navy); }

/* Back / contact links */
.sjsu-back-section {
  background: var(--cream-dark);
  padding: 2.5rem 2rem;
  display: flex; align-items: center; gap: 2rem; flex-wrap: wrap;
}
.sjsu-back-link {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.65rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--navy);
  text-decoration: none; border-bottom: 1px solid var(--rule);
  padding-bottom: 2px; transition: color 0.2s, border-color 0.2s;
}
.sjsu-back-link:hover { color: var(--gold); border-color: var(--gold); }
.sjsu-contact-link {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.65rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--text-muted);
  text-decoration: none; transition: color 0.2s;
}
.sjsu-contact-link:hover { color: var(--gold); }

/* SJSU responsive */
@media (max-width: 780px) {
  .sjsu-split { grid-template-columns: 1fr; gap: 2.5rem; }
  .sjsu-awardee-grid { grid-template-columns: 1fr; }
}


/* ══════════════════════════════════════════
   TQT PAGES — styles ported from style.css
   tqt.html · tqt-viet.html
   These were previously in style.css which
   conflicted with headfoot.css nav rules.
   ══════════════════════════════════════════ */

/* ── Hero layout ── */
.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.75fr);
  gap: 48px; align-items: center;
  position: relative; z-index: 1;
  max-width: 1120px; margin: 0 auto;
}
.hero-stats {
  display: flex; flex-wrap: wrap; gap: 2rem;
  margin-top: 2rem;
}
.hero-stat { text-align: left; }
.hero-stat .val {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2rem; font-weight: 300;
  color: var(--gold-light); line-height: 1;
}
.hero-stat .lbl {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.58rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(240,224,176,0.45);
  margin-top: 0.3rem;
}
.hero-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(197,155,59,0.28);
  border-top: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 1.75rem;
}
.hero-card h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.05rem; font-weight: 400;
  color: var(--gold-pale); margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(197,155,59,0.25);
}
.hero-card-row {
  display: flex; justify-content: space-between;
  align-items: baseline; gap: 12px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  font-size: 0.85rem;
}
.hero-card-row:last-child { border-bottom: none; }
.hero-card-row .k {
  color: rgba(197,155,59,0.7); font-family: 'Josefin Sans', sans-serif;
  font-size: 0.58rem; letter-spacing: 0.1em; text-transform: uppercase;
  white-space: nowrap; flex-shrink: 0;
}
.hero-card-row .v { color: rgba(240,224,176,0.85); text-align: right; }

/* ── Status pills ── */
.eyebrow {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.68rem; font-weight: 400; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 1rem; display: block;
}
.status-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(197,155,59,0.15);
  border: 1px solid rgba(197,155,59,0.35);
  color: var(--gold); font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  padding: 5px 12px; border-radius: 999px; margin-bottom: 1rem;
  font-family: 'Josefin Sans', sans-serif;
}
.status-sched {
  display: inline-block;
  background: rgba(197,155,59,0.1);
  border: 1px solid rgba(197,155,59,0.25);
  color: var(--gold); font-size: 0.68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  padding: 3px 10px; border-radius: 999px;
  font-family: 'Josefin Sans', sans-serif;
}

/* ── Layout helpers ── */
.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.85fr);
  gap: 34px; align-items: start;
}
.three-col {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.facts { background: var(--cream-dark); }
.table-wrap {
  width: 100%; overflow-x: auto; margin-top: 1.5rem;
}
.totals-row td {
  font-weight: 700; background: var(--cream-dark) !important;
  border-top: 2px solid var(--gold); color: var(--navy);
}

/* ── Cards ── */
.card {
  background: white; border: 1px solid var(--rule);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(15,42,68,0.07);
  padding: 1.5rem; overflow: hidden;
}
.card-navy {
  background: linear-gradient(145deg, var(--navy), var(--navy-mid));
  border: 1px solid rgba(197,155,59,0.28);
  border-top: 4px solid var(--gold);
  border-radius: var(--radius); padding: 1.75rem;
}
.card-navy h3 { color: var(--gold); font-family: 'Cormorant Garamond', Georgia, serif; margin-bottom: 1rem; }
.card-navy p { color: rgba(240,224,176,0.75); font-size: 0.9rem; line-height: 1.72; }
.card-navy hr { border: none; border-top: 1px solid rgba(255,255,255,0.12); margin: 0.75rem 0; }
.card-navy strong { color: var(--gold-light); }

/* ── Navy band + philosophy ── */
.navy-band {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-top: 4px solid var(--gold);
  border-bottom: 4px solid var(--gold);
  padding: 5rem 2rem;
}
.navy-band .section-kicker { color: rgba(197,155,59,0.85); }
.navy-band .section-title { color: var(--cream); }
.phil-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.85fr);
  gap: 40px; align-items: start;
  max-width: 1120px; margin: 0 auto;
}
.quote-pull {
  border-left: 3px solid var(--gold);
  padding-left: 1.5rem;
}
.quote-pull blockquote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic; font-size: 1.05rem;
  color: rgba(240,224,176,0.85); line-height: 1.76; margin-bottom: 1rem;
}
.quote-pull .attr {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.6rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold); opacity: 0.7;
}

/* ── Bilingual ── */
.bi-para { margin-bottom: 1rem; }
.bi-para .en { color: rgba(240,224,176,0.75); line-height: 1.82; }
.bi-para p { line-height: 1.82; }
.bi-title { margin-bottom: 1.25rem; }
.navy-band .bi-para .en,
.navy-band .bi-para p { color: rgba(240,224,176,0.75); }
.letter-block {
  background: white; border: 1px solid var(--rule);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius); padding: 2.5rem 3rem;
  position: relative; box-shadow: 0 8px 24px rgba(15,42,68,0.07);
}
.letter-block::before {
  content: 'C'; font-family: Georgia, serif;
  font-size: 6rem; color: var(--gold); opacity: 0.15;
  position: absolute; top: 4px; left: 20px; line-height: 1;
  pointer-events: none;
}
.letter-en p, .letter-vi p {
  font-family: 'Spectral', Georgia, serif;
  font-size: 1rem; color: var(--text-mid);
  line-height: 1.88; margin-bottom: 1.25rem;
}
.letter-en p:last-of-type, .letter-vi p:last-of-type { margin-bottom: 0; }
.u-lang-en .vi, .u-lang-vi .en { display: none; }
.vi-clean-note {
  max-width: 980px; margin: 1rem auto;
  padding: 12px 18px;
  border-left: 4px solid var(--gold);
  background: rgba(197,155,59,0.08);
  border-radius: var(--radius); font-size: 0.92rem; color: var(--navy);
}

/* ── Timeline (TQT annual cycle) ── */
.timeline {
  margin-top: 1.5rem; border-left: 3px solid var(--gold);
  padding-left: 1.5rem;
}
.timeline-item { margin-bottom: 2rem; position: relative; }
.timeline-item h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.1rem; font-weight: 400; color: var(--navy); margin-bottom: 0.4rem;
}
.t-label {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.62rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 0.3rem;
}

/* ── Arc cards (Three-Year Journey) ── */
.arc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px; margin-top: 2rem;
}
.arc-card {
  background: white; border: 1px solid var(--rule);
  border-radius: var(--radius); overflow: hidden;
}
.arc-year {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: var(--cream); font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.3rem; font-weight: 400;
  padding: 1rem 1.25rem 0.4rem;
  border-bottom: 3px solid var(--gold);
}
.arc-year-vi { display: none; }
.arc-award {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: rgba(197,155,59,0.8); font-family: 'Josefin Sans', sans-serif;
  font-size: 0.62rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.08em; padding: 0.4rem 1.25rem 1rem;
}
.arc-msg {
  padding: 1.25rem; font-family: 'Spectral', Georgia, serif;
  font-style: italic; font-size: 0.95rem;
  color: var(--text-mid); line-height: 1.72;
}

/* ── Award cards ── */
.award-card {
  background: white; border: 1px solid var(--rule);
  border-radius: var(--radius); overflow: hidden;
}
.award-card-header {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-bottom: 3px solid var(--gold);
  padding: 1rem 1.25rem;
}
.grade-label {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.6rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.12em; color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.12); padding: 2px 8px;
  border-radius: 999px; display: inline-block; margin-bottom: 0.4rem;
}
.award-card-header h4 {
  color: var(--cream); font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1rem; font-weight: 400; margin: 0; line-height: 1.3;
}
.amount {
  font-family: 'Spectral', Georgia, serif; font-style: italic;
  font-size: 0.85rem; color: var(--gold-light); margin-top: 0.25rem;
}
.award-card-body { padding: 1.25rem; }
.award-card-body .bi-para { margin-bottom: 0.75rem; }
.award-card-body .bi-para p { color: var(--text-mid); font-size: 0.88rem; }
.attr {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.6rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--gold); opacity: 0.7;
  margin-top: 0.75rem; display: block;
}

/* ── Button (legacy .button class from style.css) ── */
.button {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold-pale); border: 1.5px solid rgba(197,155,59,0.5);
  padding: 0.75rem 1.75rem; text-decoration: none;
  border-radius: var(--radius); transition: all 0.2s;
  background: transparent;
}
.button:hover {
  background: rgba(197,155,59,0.12);
  border-color: var(--gold); color: var(--gold-light);
}

/* ── u-style utility classes (used in TQT pages) ── */
.u-style-010 { text-align: center; }
.u-style-046 { gap: 3.5rem; align-items: start; }
.u-style-047 { font-style: italic; font-family: 'Spectral', serif; font-size: 1rem; color: var(--navy); border-left: 3px solid var(--gold); padding-left: 1rem; margin-top: 1.5rem; line-height: 1.7; }
.u-style-048 { color: rgba(240,224,176,0.8); font-size: 0.9rem; margin-bottom: 0.6rem; }
.u-style-049 { color: rgba(240,224,176,0.8); font-size: 0.9rem; margin-bottom: 0.4rem; }
.u-style-050 { color: var(--gold); }
.u-style-052 { color: rgba(240,224,176,0.75); font-size: 0.88rem; }
.u-style-053 { margin-bottom: 1.1rem; }
.u-style-054 { margin-top: 1.5rem; font-style: italic; font-family: 'Cormorant Garamond', serif; color: var(--navy); }
.u-style-055 { margin-bottom: 1.1rem; }
.u-style-056 { margin-top: 1.5rem; font-style: italic; font-family: 'Cormorant Garamond', serif; color: var(--navy); }
.u-style-057 { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; color: var(--navy); margin-top: 2.5rem; margin-bottom: 0.5rem; }
.u-style-058 { margin-top: 1rem; }
.u-style-059 { font-style: italic; color: var(--navy); }
.u-style-060 { font-size: 0.85rem; color: var(--text-muted); }
.u-style-061 { border: 2px solid var(--gold); box-shadow: 0 0 0 1px rgba(197,155,59,0.18); background: #fffbf0; }
.u-style-061 .arc-year { background: linear-gradient(135deg, var(--navy), var(--gold)); font-size: 1.45rem; }
.u-style-061 .arc-award { background: linear-gradient(135deg, var(--navy), var(--gold)); color: white; font-weight: 700; }
.u-style-062 { color: rgba(240,224,176,0.78); font-size: 0.95rem; line-height: 1.82; }
.u-style-063 { margin-bottom: 0; }
.u-style-064 { margin-top: 1.5rem; padding-top: 1.25rem; border-top: 1px solid rgba(255,255,255,0.12); }
.u-style-065 { color: var(--gold); font-size: 0.88rem; font-family: 'Josefin Sans', sans-serif; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 0.5rem; }
.u-style-066 { color: rgba(240,224,176,0.7); font-size: 0.88rem; line-height: 1.75; margin-bottom: 0.75rem; }
.u-style-068 { color: var(--gold); font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1rem; margin-top: 0.75rem; line-height: 1.7; }
.u-style-069 { align-items: start; gap: 2.5rem; }
.u-style-070 { margin-top: 0.4rem; }
.u-style-071 { font-size: 0.9rem; color: var(--text-mid); line-height: 1.72; }
.u-style-072 { border-top: 3px solid var(--gold); margin-bottom: 1.25rem; }
.u-style-073 { width: 100%; font-size: 0.88rem; }
.u-style-074 { padding: 8px 0; border-bottom: 1px solid var(--rule); color: var(--gold); font-weight: 600; font-family: 'Josefin Sans', sans-serif; font-size: 0.78rem; letter-spacing: 0.1em; }
.u-style-075 { padding: 8px 0 8px 1rem; border-bottom: 1px solid var(--rule); font-size: 0.88rem; color: var(--text-mid); }
.u-style-077 { padding: 8px 0; border-bottom: 1px solid var(--rule); color: var(--gold); font-family: 'Josefin Sans', sans-serif; font-size: 0.78rem; letter-spacing: 0.1em; }
.u-style-078 { border-top: 3px solid var(--navy); margin-bottom: 1.25rem; }
.u-style-079 { margin-bottom: 0.75rem; }
.u-style-080 { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 0.75rem; font-style: italic; }
.u-style-081 { padding-left: 1.1rem; font-size: 0.9rem; color: var(--text-mid); }
.u-style-082 { margin-bottom: 0.4rem; }
.u-style-084 { padding-left: 1.1rem; font-size: 0.9rem; color: var(--text-mid); margin-top: 0.5rem; }
.u-style-085 { border-top: 3px solid #2f6f5e; margin-bottom: 1.25rem; }
.u-style-086 { color: var(--text-mid); font-size: 0.9rem; margin-bottom: 0.6rem; }
.u-style-090 { text-align: center; max-width: 700px; margin: 0 auto; }
.u-style-094 { max-width: 820px; margin: 0 auto; text-align: center; }
.u-style-095 { margin-top: 1.25rem; }
.u-style-096 { color: rgba(240,224,176,0.78); font-size: 0.98rem; line-height: 1.85; }
.u-style-097 { margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid rgba(197,155,59,0.25); }
.u-style-098 { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.16em; color: var(--gold); margin-bottom: 0.5rem; font-family: 'Josefin Sans', sans-serif; }
.u-style-099 { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; color: var(--cream); margin-bottom: 0.75rem; }
.u-style-100 { color: rgba(240,224,176,0.7); font-size: 0.92rem; line-height: 1.8; max-width: 600px; margin: 0 auto 0.5rem; }
.u-style-101 { font-size: 0.8rem; color: rgba(197,155,59,0.6); font-style: italic; margin-bottom: 1.25rem; }
.u-style-103 { border-top: 3px solid var(--gold); }
.u-style-104 { margin-top: 0.75rem; font-size: 0.82rem; color: var(--text-muted); font-style: italic; }
.u-style-105 { padding-left: 1.1rem; font-size: 0.88rem; color: var(--text-mid); }
.u-style-106 { margin-top: 2rem; display: flex; gap: 1.25rem; flex-wrap: wrap; align-items: center; }
.u-style-107 { font-size: 0.88rem; color: var(--text-muted); }
.u-style-117 { font-size: 0.95rem; color: rgba(240,224,176,0.75); line-height: 1.85; }

/* TQT responsive */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .three-col { grid-template-columns: 1fr; }
  .phil-inner { grid-template-columns: 1fr; }
  .arc-grid { grid-template-columns: 1fr; }
}
@media (max-width: 780px) {
  .navy-band { padding: 3.5rem 1.5rem; }
  .letter-block { padding: 1.75rem; }
}

/* ══════════════════════════════════════════
   TQT PAGE — rebuilt clean classes
   tqt.html (rebuilt from scratch May 2026)
   ══════════════════════════════════════════ */

/* Stats bar */
.tqt-glance-section {
  background: var(--navy-deep);
  border-bottom: 1px solid rgba(197,155,59,0.15);
  padding: 0;
}
.tqt-stats-row {
  display: flex; flex-wrap: wrap;
  max-width: 1120px; margin: 0 auto;
  gap: 1px; background: rgba(197,155,59,0.1);
}
.tqt-stat {
  flex: 1; min-width: 140px;
  background: var(--navy);
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition: background 0.2s;
}
.tqt-stat:hover { background: var(--navy-mid); }
.tqt-stat-value {
  display: block;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2rem; font-weight: 300;
  color: var(--gold-light); line-height: 1;
}
.tqt-stat-label {
  display: block;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.58rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(240,224,176,0.4);
  margin-top: 0.4rem;
}

/* Award table */
.tqt-award-table-wrap {
  width: 100%; overflow-x: auto; margin-top: 2rem;
}
.tqt-totals-row td {
  font-weight: 700;
  background: var(--cream-dark) !important;
  border-top: 2px solid var(--gold);
  color: var(--navy);
}

/* Three-year arc + Teacher card */
.tqt-arc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  border: 1px solid var(--rule);
}
.tqt-arc-card {
  background: white; overflow: hidden;
  transition: box-shadow 0.2s;
}
.tqt-arc-card:hover { box-shadow: 0 12px 32px rgba(15,42,68,0.12); }
.tqt-arc-header {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-bottom: 3px solid var(--gold);
  padding: 1.25rem 1.5rem;
}
.tqt-arc-grade {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.4rem; font-weight: 300;
  color: var(--cream); margin-bottom: 0.3rem;
}
.tqt-arc-awards {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.58rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(197,155,59,0.8);
}
.tqt-arc-body { padding: 1.5rem; }
.tqt-arc-body p {
  font-family: 'Spectral', Georgia, serif;
  font-style: italic; font-size: 0.95rem;
  color: var(--text-mid); line-height: 1.72;
}
.tqt-arc-card-gold { border: 2px solid var(--gold); }
.tqt-arc-card-gold .tqt-arc-header {
  background: linear-gradient(135deg, var(--navy), #c59b3b);
}
.tqt-arc-card-gold .tqt-arc-grade { font-size: 1.6rem; }
.tqt-arc-card-navy { border: 2px solid var(--navy-deep); }
.tqt-arc-card-navy .tqt-arc-header {
  background: linear-gradient(135deg, var(--navy-deep), var(--navy));
  border-bottom-color: rgba(197,155,59,0.4);
}
.tqt-arc-card-navy .tqt-arc-grade { font-size: 1.4rem; }

/* Annual cycle */
.tqt-cycle-section { background: var(--cream-dark); }
.tqt-cycle-list {
  margin-top: 3rem;
  border-left: 2px solid var(--gold);
  padding-left: 2.5rem;
}
.tqt-cycle-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 2rem; align-items: start;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--rule);
}
.tqt-cycle-item:last-child { border-bottom: none; }
.tqt-cycle-date {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.62rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--gold);
  padding-top: 0.2rem; font-weight: 600;
}
.tqt-cycle-body h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.15rem; font-weight: 400;
  color: var(--navy); margin-bottom: 0.5rem;
}
.tqt-cycle-body p {
  font-size: 0.9rem; line-height: 1.78; color: var(--text-mid);
}

/* Commitment section */
.tqt-commitment-section { background: var(--cream); }

/* Payment badges */
.tqt-badge {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.6rem; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 3px 10px;
  border-radius: 999px; border: 1px solid;
}
.tqt-badge-pending {
  background: rgba(197,155,59,0.1);
  color: #7a5c1a; border-color: rgba(197,155,59,0.3);
}
.tqt-badge-scheduled {
  background: rgba(15,42,68,0.06);
  color: var(--navy); border-color: rgba(15,42,68,0.2);
}

/* TQT responsive */
@media (max-width: 1100px) {
  .tqt-arc-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .tqt-arc-grid { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .tqt-stats-row { flex-direction: column; gap: 1px; }
  .tqt-cycle-item { grid-template-columns: 1fr; gap: 0.5rem; }
}

/* TQT arc award list — replaces annual award table */
.tqt-arc-award-list {
  list-style: none;
  padding: 1rem 0 0;
  margin: 1rem 0 0;
  border-top: 1px solid var(--rule);
}
.tqt-arc-award-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(197,155,59,0.12);
  font-size: 0.86rem;
  color: var(--text-mid);
  line-height: 1.45;
}
.tqt-arc-award-list li:last-child { border-bottom: none; }
.tqt-arc-award-list span { flex: 1; }
.tqt-arc-award-list strong {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  white-space: nowrap;
}
@media (max-width: 560px) {
  .tqt-arc-award-list li { flex-direction: column; gap: 0.2rem; }
  .tqt-arc-award-list strong { white-space: normal; }
}

/* ── Endowment Method Budget Chart ── */
.endowment-budget-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 3rem;
  padding: 2.5rem;
  background: white;
  border: 1px solid var(--rule);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(15,42,68,0.07);
}
.endowment-chart-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.endowment-pie {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: conic-gradient(
    #0f2a44 0deg 115.9deg,
    #c59b3b 115.9deg 173.9deg,
    #2f6f5e 173.9deg 231.9deg,
    #4a90c4 231.9deg 289.9deg,
    #6a4c93 289.9deg 347.9deg,
    #c9b99b 347.9deg 360deg
  );
  position: relative;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.35), 0 12px 30px rgba(15,42,68,0.12);
}
.endowment-pie::after {
  content: '';
  position: absolute;
  inset: 58px;
  border-radius: 50%;
  background: var(--cream);
  box-shadow: inset 0 0 0 1px rgba(197,155,59,0.22);
}
.endowment-pie-center {
  position: absolute;
  inset: 70px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.endowment-pie-center span {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.1rem;
  font-weight: 400;
  line-height: 1;
  color: var(--navy);
}
.endowment-pie-center small {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.55rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.45rem;
  line-height: 1.35;
}
.endowment-budget-text h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.45rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.endowment-budget-text p {
  font-size: 0.92rem;
  line-height: 1.78;
  color: var(--text-mid);
  margin-bottom: 1.5rem;
}
.endowment-legend {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--rule);
}
.endowment-legend-row {
  display: grid;
  grid-template-columns: 16px 1fr auto;
  gap: 0.75rem;
  align-items: center;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(197,155,59,0.12);
}
.endowment-legend-row strong {
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--text-mid);
  line-height: 1.35;
}
.endowment-legend-row em {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-style: normal;
  color: var(--text-muted);
  white-space: nowrap;
}
.swatch {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 2px rgba(0,0,0,0.04);
}
.swatch-reserve { background: #0f2a44; }
.swatch-sjsu { background: #c59b3b; }
.swatch-tqt { background: #2f6f5e; }
.swatch-science { background: #4a90c4; }
.swatch-ucb { background: #6a4c93; }
.swatch-future { background: #c9b99b; }
@media (max-width: 780px) {
  .endowment-budget-card {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem 1.5rem;
  }
  .endowment-pie {
    width: 220px;
    height: 220px;
  }
  .endowment-pie::after { inset: 52px; }
  .endowment-pie-center { inset: 62px; }
  .endowment-legend-row {
    grid-template-columns: 16px 1fr;
    gap: 0.75rem;
  }
  .endowment-legend-row em {
    grid-column: 2;
    white-space: normal;
    margin-top: -0.25rem;
  }
}

