@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=DM+Sans:wght@300;400;500&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --gold: #C9954A;
  --gold-light: #F5E6CF;
  --navy: #1A2744;
  --navy-mid: #2B3F6B;
  --cream: #FAF7F2;
  --success: #1D9E75;
  --success-bg: #E1F5EE;
  --text: #1A1A1A;
  --muted: #6B6B6B;
  --white: #FFFFFF;
  --border: rgba(0,0,0,0.08);
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
}

/* ── NAV ── */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 3rem;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
}

.logo span { color: var(--gold); }

nav ul { display: flex; gap: 2rem; list-style: none; }
nav ul a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
nav ul a:hover { color: var(--navy); }

.nav-cta {
  background: var(--navy);
  color: var(--white);
  padding: 0.55rem 1.4rem;
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--navy-mid); }

/* ── BUTTONS ── */
.btn-primary {
  background: var(--gold);
  color: var(--white);
  padding: 0.85rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: transform 0.2s;
  display: inline-block;
}
.btn-primary:hover { transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: var(--navy);
  padding: 0.85rem 2rem;
  border-radius: 50px;
  border: 1.5px solid var(--navy);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  display: inline-block;
  transition: background 0.2s;
}
.btn-outline:hover { background: rgba(26,39,68,0.05); }

/* ── SECTION LABELS ── */
.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 0.6rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

/* ── CARDS ── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
}

/* ── TAGS / PILLS ── */
.tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 50px;
}
.tag-hbcu    { background: #E1F5EE; color: #085041; }
.tag-cc      { background: #FAEEDA; color: #633806; }
.tag-la      { background: #EEEDFE; color: #3C3489; }
.tag-stem    { background: #E6F1FB; color: #0C447C; }
.tag-online  { background: #FBEAF0; color: #72243E; }
.tag-trade   { background: #F1EFE8; color: #444441; }
.tag-gold    { background: var(--gold-light); color: #7A5A2A; }

/* ── PROGRESS BAR ── */
.progress-wrap {
  background: rgba(0,0,0,0.08);
  border-radius: 50px;
  height: 6px;
  overflow: hidden;
  margin-bottom: 0.5rem;
}
.progress-bar {
  height: 100%;
  border-radius: 50px;
  background: var(--gold);
}

/* ── FOOTER ── */
footer {
  background: var(--navy);
  padding: 2rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: 1rem;
}

footer .logo { color: var(--white); font-size: 1.1rem; }
footer a { color: rgba(255,255,255,0.5); text-decoration: none; }
footer a:hover { color: var(--white); }

/* ── HERO (shared) ── */
.page-hero {
  background: var(--navy);
  padding: 3.5rem 3rem 2.5rem;
  color: var(--white);
}
.page-hero .section-title { color: var(--white); }
.page-hero p.sub {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

/* ── FILTER BAR ── */
.filter-bar { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-btn {
  padding: 0.45rem 1rem;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.25);
  background: transparent;
  color: rgba(255,255,255,0.7);
  font-size: 0.78rem;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: all 0.15s;
}
.filter-btn:hover { border-color: rgba(255,255,255,0.6); color: var(--white); }
.filter-btn.active { background: var(--gold); border-color: var(--gold); color: var(--white); }

/* ── AVATAR ── */
.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 500;
  flex-shrink: 0;
}

/* ── FORM FIELDS ── */
.field { margin-bottom: 1rem; }
.field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 5px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 8px;
  padding: 0.6rem 0.75rem;
  font-size: 0.88rem;
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--text);
  outline: none;
  transition: border-color 0.15s;
}
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--gold); }
.field textarea { resize: vertical; min-height: 110px; line-height: 1.6; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

/* ── UTILITY ── */
.text-gold  { color: var(--gold); }
.text-navy  { color: var(--navy); }
.text-muted { color: var(--muted); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
