/* ---------- PAGE HEADER (About/Courses/Contact) ---------- */
.page-header { padding: 70px 0 50px; text-align: center; border-bottom: 1px solid rgba(36,24,18,0.08); }
.page-header .eyebrow { justify-content: center; }
.page-header h1 { font-family: var(--font-display); font-size: 44px; font-weight: 600; margin-bottom: 14px; letter-spacing: -0.3px; }
.page-header p { color: var(--ink-soft); max-width: 560px; margin: 0 auto; font-size: 16px; }

/* ---------- TIMELINE (About page) ---------- */
.timeline { max-width: 760px; margin: 0 auto; }
.timeline-item { display: grid; grid-template-columns: 70px 1fr; gap: 28px; padding-bottom: 36px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-marker { display: flex; flex-direction: column; align-items: center; }
.timeline-dot {
  width: 14px; height: 14px; border-radius: 50%; background: var(--maroon);
  border: 3px solid var(--gold-soft); flex-shrink: 0; margin-top: 4px;
}
.timeline-line { flex: 1; width: 2px; background: rgba(36,24,18,0.15); margin-top: 8px; }
.timeline-item:last-child .timeline-line { display: none; }
.timeline-card {
  background: var(--paper-card); border: 1px solid rgba(36,24,18,0.1);
  border-radius: 6px; padding: 22px 26px;
}
.timeline-year {
  display: inline-block; font-family: var(--font-display); font-weight: 600; font-size: 12.5px;
  color: var(--maroon-deep); background: rgba(122,35,49,0.08); padding: 4px 13px;
  border-radius: 20px; margin-bottom: 10px; letter-spacing: 0.5px; text-transform: uppercase;
}
.timeline-title { font-weight: 600; font-size: 16px; margin-bottom: 6px; }
.timeline-desc { color: var(--ink-soft); font-size: 14px; line-height: 1.65; }

/* ---------- PRESS / MEDIA MENTIONS ---------- */
.press-grid { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; max-width: 820px; margin: 0 auto; }
.press-item {
  display: flex; align-items: center; gap: 10px;
  background: var(--paper-card); border: 1px solid rgba(36,24,18,0.12);
  border-radius: 30px; padding: 14px 28px;
  font-family: var(--font-display); font-weight: 600; font-size: 15px; color: var(--ink);
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.press-item:hover { border-color: var(--maroon); transform: translateY(-3px); box-shadow: 0 10px 22px rgba(36,24,18,0.1); }
.press-item::before {
  content: '"'; font-size: 26px; color: var(--gold); line-height: 0; margin-top: 6px;
}