@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Inter:wght@300;400;500;600;700&family=Source+Serif+4:ital,wght@0,300;0,400;0,600;1,400&display=swap');

/* =====================================================
   PRESSVIA — Educational Journalism Platform
   Design system: editorial, airy, text-first
   ===================================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink:        #1A1A2E;
  --accent:     #C8102E;
  --accent-dk:  #9E0C24;
  --bg:         #FAFAF8;
  --bg-warm:    #F4F2ED;
  --bg-card:    #FFFFFF;
  --border:     #E2DED7;
  --muted:      #6B6560;
  --muted-lt:   #9C9590;
  --rule:       #D4CFC8;
  --sans:       'Inter', system-ui, sans-serif;
  --serif:      'Playfair Display', Georgia, serif;
  --body-serif: 'Source Serif 4', Georgia, serif;
  --radius:     4px;
  --radius-lg:  10px;
  --shadow:     0 1px 4px rgba(26,26,46,.06), 0 4px 16px rgba(26,26,46,.08);
  --shadow-sm:  0 1px 3px rgba(26,26,46,.08);
  --transition: 0.22s ease;
  --container:  1180px;
}

html { font-size: 16px; scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ── TYPOGRAPHY ───────────────────────────────────── */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.22;
  color: var(--ink);
  letter-spacing: -.01em;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.2rem; }
h5 { font-size: 1.05rem; font-family: var(--sans); font-weight: 600; text-transform: uppercase; letter-spacing: .08em; }
h6 { font-size: .9rem; font-family: var(--sans); font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); }

p { margin-bottom: 1.15rem; }
a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-dk); }

strong { font-weight: 600; }
em { font-style: italic; }

.editorial-body { font-family: var(--body-serif); font-size: 1.05rem; line-height: 1.8; }
.label { font-family: var(--sans); font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); }
.label-accent { color: var(--accent); }

/* ── LAYOUT ───────────────────────────────────────── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 780px; margin: 0 auto; padding: 0 24px; }
.container-md { max-width: 960px; margin: 0 auto; padding: 0 24px; }

.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.section-lg { padding: 110px 0; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 28px; }

@media(max-width:960px) { .grid-3 { grid-template-columns: 1fr 1fr; } }
@media(max-width:720px) {
  .grid-2,.grid-3,.grid-4 { grid-template-columns: 1fr; }
  .grid-auto { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
}

/* ── HEADER & NAV ─────────────────────────────────── */
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-mark {
  width: 34px; height: 34px;
  background: var(--ink);
  display: flex; align-items: center; justify-content: center;
  border-radius: 2px;
}
.logo-mark span {
  color: #fff;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1;
}
.logo-text {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--ink);
  letter-spacing: -.02em;
}
.logo-text em {
  color: var(--accent);
  font-style: normal;
}

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  font-size: .875rem;
  font-weight: 500;
  color: var(--ink);
  padding: 6px 12px;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
}
.main-nav a:hover, .main-nav a.active { background: var(--bg-warm); color: var(--accent); }

.nav-dropdown { position: relative; }
.nav-dropdown > a { display: flex; align-items: center; gap: 4px; }
.nav-dropdown > a::after {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform var(--transition);
}
.nav-dropdown:hover > a::after { transform: rotate(225deg) translateY(-2px); }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  min-width: 220px;
  padding: 8px;
  opacity: 0; visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition);
}
.nav-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a {
  display: block;
  padding: 8px 14px;
  font-size: .85rem;
  border-radius: var(--radius);
  color: var(--ink);
}
.dropdown-menu a:hover { background: var(--bg-warm); color: var(--accent); }

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff !important;
  font-size: .875rem;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: var(--radius);
  transition: background var(--transition);
}
.header-cta:hover { background: var(--accent-dk) !important; color: #fff; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--ink);
  transition: all var(--transition);
}
.burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-nav {
  display: none;
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 16px 24px 24px;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  padding: 10px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--border);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--accent); }

@media(max-width:900px) {
  .main-nav, .header-cta { display: none; }
  .burger { display: flex; }
}

/* ── BREADCRUMB ───────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  color: var(--muted);
  padding: 14px 0;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb-sep { color: var(--rule); }

/* ── BUTTONS ──────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: .9rem;
  padding: 12px 28px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-dk); color: #fff; }
.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn-outline:hover { background: var(--ink); color: #fff; }
.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.6);
}
.btn-outline-light:hover { background: rgba(255,255,255,.1); color: #fff; }
.btn-ghost {
  background: transparent;
  color: var(--accent);
  padding: 10px 0;
  font-size: .875rem;
}
.btn-ghost:hover { color: var(--accent-dk); }
.btn-ghost::after {
  content: ' →';
  transition: margin var(--transition);
}
.btn-ghost:hover::after { margin-left: 4px; }
.btn-lg { padding: 15px 36px; font-size: 1rem; }
.btn-sm { padding: 8px 18px; font-size: .8rem; }

/* ── SECTION HEADERS ──────────────────────────────── */
.section-header { margin-bottom: 52px; }
.section-header.centered { text-align: center; }
.section-header .overline {
  display: inline-block;
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-header h2 { margin-bottom: 14px; }
.section-header p {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 580px;
  margin-bottom: 0;
}
.section-header.centered p { margin: 0 auto; }
.section-divider {
  width: 40px; height: 3px;
  background: var(--accent);
  margin: 16px 0 0;
}
.section-header.centered .section-divider { margin: 16px auto 0; }

/* ── CARDS ────────────────────────────────────────── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.card-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; }
.card-body { padding: 24px; }
.card-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--accent);
  background: rgba(200,16,46,.07);
  padding: 3px 10px;
  border-radius: 2px;
  margin-bottom: 12px;
}
.card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.card p { font-size: .9rem; color: var(--muted); margin-bottom: 0; }
.card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .78rem;
  color: var(--muted-lt);
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

/* ── HERO ─────────────────────────────────────────── */
.hero {
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.hero-image-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%; height: 100%;
  opacity: .18;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 100px 0 90px;
}
.hero-eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: rgba(255,255,255,.6);
  margin-bottom: 16px;
  border-left: 2px solid var(--accent);
  padding-left: 10px;
}
.hero h1 { color: #fff; margin-bottom: 20px; }
.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,.75);
  max-width: 580px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
@media(max-width:720px) {
  .hero-columns { grid-template-columns: 1fr; gap: 40px; }
  .hero-content { padding: 70px 0 60px; }
}

/* ── STATS BAR ────────────────────────────────────── */
.stats-bar { background: var(--accent); color: #fff; padding: 0; }
.stats-inner { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item {
  padding: 28px 24px;
  border-right: 1px solid rgba(255,255,255,.15);
  text-align: center;
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: .78rem;
  font-weight: 500;
  opacity: .8;
  text-transform: uppercase;
  letter-spacing: .08em;
}
@media(max-width:640px) {
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .stat-item:nth-child(2) { border-right: none; }
}

/* ── PAGE HERO (inner pages) ─────────────────────── */
.page-hero {
  background: var(--bg-warm);
  border-bottom: 1px solid var(--border);
  padding: 56px 0 48px;
}
.page-hero.dark {
  background: var(--ink);
  color: #fff;
}
.page-hero.dark h1 { color: #fff; }
.page-hero.dark .label { color: rgba(255,255,255,.5); }
.page-hero .label { margin-bottom: 10px; }
.page-hero h1 { font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 14px; }
.page-hero p { font-size: 1.05rem; color: var(--muted); max-width: 640px; margin-bottom: 0; }
.page-hero.dark p { color: rgba(255,255,255,.7); }

/* ── PROGRAM CARDS ────────────────────────────────── */
.prog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.prog-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.prog-card-icon {
  width: 48px; height: 48px;
  background: rgba(200,16,46,.08);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  font-size: 1.4rem;
}
.prog-card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.prog-card p { font-size: .9rem; color: var(--muted); flex: 1; margin-bottom: 20px; }
.prog-card-meta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 20px; }
.prog-meta-item { font-size: .8rem; color: var(--muted); }
.prog-meta-item strong { color: var(--ink); display: block; font-size: .85rem; }
.prog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .875rem;
  font-weight: 600;
  color: var(--accent);
  margin-top: auto;
}
.prog-card-link::after { content: '→'; transition: margin var(--transition); }
.prog-card:hover .prog-card-link::after { margin-left: 4px; }

/* ── FACULTY CARD ─────────────────────────────────── */
.faculty-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.faculty-card:hover { box-shadow: var(--shadow); }
.faculty-img { width: 100%; aspect-ratio: 3/4; object-fit: cover; display: block; background: var(--bg-warm); }
.faculty-info { padding: 20px; }
.faculty-info h4 { font-size: 1.05rem; margin-bottom: 2px; }
.faculty-role {
  font-size: .8rem;
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: 8px;
}
.faculty-bio { font-size: .86rem; color: var(--muted); margin-bottom: 0; }

/* ── FEATURE STRIP ────────────────────────────────── */
.feature-strip { background: var(--bg-warm); }
.feature-item { display: flex; gap: 18px; }
.feature-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.feature-text h4 { font-size: 1rem; margin-bottom: 6px; }
.feature-text p { font-size: .875rem; color: var(--muted); margin-bottom: 0; }

/* ── QUOTE BLOCK ──────────────────────────────────── */
.quote-block {
  background: var(--ink);
  color: #fff;
  padding: 64px 0;
}
.quote-text {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
  max-width: 820px;
  margin: 0 auto 20px;
  text-align: center;
  color: rgba(255,255,255,.95);
}
.quote-author {
  text-align: center;
  font-size: .85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.5);
}

/* ── BLOG / ARTICLE ───────────────────────────────── */
.article-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: all var(--transition); }
.article-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.article-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; }
.article-card-body { padding: 22px; }
.article-date { font-size: .78rem; color: var(--muted-lt); margin-bottom: 8px; }
.article-card h3 { font-size: 1.12rem; margin-bottom: 8px; }
.article-card p { font-size: .875rem; color: var(--muted); margin-bottom: 0; }

.article-hero-img { width: 100%; max-height: 480px; object-fit: cover; border-radius: var(--radius-lg); margin-bottom: 36px; display: block; }
.article-content h2 { font-size: 1.7rem; margin: 36px 0 14px; }
.article-content h3 { font-size: 1.35rem; margin: 28px 0 12px; }
.article-content p { margin-bottom: 1.25rem; }
.article-content ul, .article-content ol { padding-left: 24px; margin-bottom: 1.25rem; }
.article-content li { margin-bottom: 6px; font-size: 1.02rem; line-height: 1.7; }
.article-content blockquote {
  border-left: 3px solid var(--accent);
  padding: 12px 20px;
  margin: 28px 0;
  background: var(--bg-warm);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  font-size: 1.05rem;
}

/* ── SIDEBAR ──────────────────────────────────────── */
.sidebar-widget {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 28px;
}
.sidebar-widget h5 {
  font-size: .8rem;
  font-family: var(--sans);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--muted);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.sidebar-link {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  color: var(--ink);
}
.sidebar-link:last-child { border-bottom: none; padding-bottom: 0; }
.sidebar-link:hover .sidebar-link-title { color: var(--accent); }
.sidebar-link-title { font-size: .9rem; font-weight: 500; line-height: 1.4; }
.sidebar-link-date { font-size: .75rem; color: var(--muted-lt); margin-top: 2px; }
.sidebar-link-num {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--rule);
  line-height: 1;
  flex-shrink: 0;
  padding-top: 2px;
}

/* ── TAGS / TOPICS ────────────────────────────────── */
.tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  font-size: .78rem;
  font-weight: 600;
  color: var(--ink);
  background: var(--bg-warm);
  border: 1px solid var(--border);
  padding: 5px 12px;
  border-radius: 20px;
  text-decoration: none;
  transition: all var(--transition);
}
.tag:hover { background: var(--accent); color: #fff; border-color: var(--accent); }

/* ── FORMS ────────────────────────────────────────── */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: .83rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--ink);
}
.form-control {
  width: 100%;
  padding: 11px 14px;
  font-family: var(--sans);
  font-size: .9rem;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  color: var(--ink);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-control:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(200,16,46,.08); }
.form-control::placeholder { color: var(--muted-lt); }
textarea.form-control { resize: vertical; min-height: 130px; }
select.form-control { cursor: pointer; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media(max-width:600px) { .form-row { grid-template-columns: 1fr; } }

.form-note { font-size: .8rem; color: var(--muted); margin-top: 4px; }

.success-message {
  display: none;
  background: #F0FDF4;
  border: 1.5px solid #86EFAC;
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  color: #15803D;
}
.success-message.show { display: block; }
.success-message h4 { font-family: var(--sans); font-size: 1.1rem; margin-bottom: 6px; }
.success-message p { font-size: .9rem; margin-bottom: 0; }
.success-icon { font-size: 2.2rem; margin-bottom: 10px; }

/* ── NEWSLETTER STRIP ─────────────────────────────── */
.newsletter-strip {
  background: var(--bg-warm);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 56px 0;
}
.newsletter-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.newsletter-form { display: flex; gap: 12px; }
.newsletter-form .form-control { flex: 1; }
@media(max-width:720px) {
  .newsletter-inner { grid-template-columns: 1fr; gap: 24px; }
  .newsletter-form { flex-direction: column; }
}

/* ── CTA SECTION ──────────────────────────────────── */
.cta-section {
  background: var(--ink);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}
.cta-section h2 { color: #fff; margin-bottom: 14px; }
.cta-section p { font-size: 1.05rem; color: rgba(255,255,255,.7); max-width: 540px; margin: 0 auto 32px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── ACCORDION (FAQ) ──────────────────────────────── */
.accordion-item {
  border-bottom: 1px solid var(--border);
}
.accordion-item:first-child { border-top: 1px solid var(--border); }
.accordion-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
  text-align: left;
  gap: 16px;
}
.accordion-icon {
  width: 24px; height: 24px;
  flex-shrink: 0;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem;
  font-family: var(--sans);
  font-weight: 700;
  color: var(--muted);
  transition: all var(--transition);
}
.accordion-item.open .accordion-icon {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: rotate(180deg);
}
.accordion-body {
  display: none;
  padding: 0 0 20px;
  font-size: .95rem;
  color: var(--muted);
  line-height: 1.75;
}
.accordion-item.open .accordion-body { display: block; }

/* ── TIMELINE ─────────────────────────────────────── */
.timeline { position: relative; padding-left: 32px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 0; bottom: 0;
  width: 2px;
  background: var(--border);
}
.timeline-item { position: relative; margin-bottom: 32px; }
.timeline-dot {
  position: absolute;
  left: -28px;
  top: 4px;
  width: 12px; height: 12px;
  background: var(--accent);
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 0 0 2px var(--accent);
}
.timeline-date { font-size: .78rem; font-weight: 600; color: var(--muted-lt); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 4px; }
.timeline-title { font-family: var(--serif); font-size: 1.1rem; font-weight: 600; margin-bottom: 6px; }
.timeline-text { font-size: .9rem; color: var(--muted); margin-bottom: 0; }

/* ── TABLE ────────────────────────────────────────── */
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; font-size: .9rem; }
thead { background: var(--ink); color: #fff; }
th { padding: 12px 16px; text-align: left; font-weight: 600; font-size: .8rem; text-transform: uppercase; letter-spacing: .07em; }
td { padding: 12px 16px; border-bottom: 1px solid var(--border); }
tr:last-child td { border-bottom: none; }
tbody tr:hover { background: var(--bg-warm); }
td .badge {
  display: inline-block;
  font-size: .72rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.badge-green { background: #DCFCE7; color: #15803D; }
.badge-blue { background: #DBEAFE; color: #1E40AF; }
.badge-amber { background: #FEF9C3; color: #A16207; }

/* ── INFO GRID (checklist) ────────────────────────── */
.check-list { list-style: none; padding: 0; }
.check-list li {
  display: flex;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  font-size: .92rem;
}
.check-list li:last-child { border-bottom: none; }
.check-list li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}

/* ── CONTACT INFO ─────────────────────────────────── */
.contact-info-list { list-style: none; padding: 0; }
.contact-info-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: .93rem;
}
.contact-info-list li:first-child { padding-top: 0; }
.contact-info-list li:last-child { border-bottom: none; }
.contact-info-icon {
  width: 36px; height: 36px;
  background: rgba(200,16,46,.07);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}

/* ── MAP PLACEHOLDER ──────────────────────────────── */
.map-embed {
  width: 100%;
  height: 320px;
  background: var(--bg-warm);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: .9rem;
  text-align: center;
  overflow: hidden;
}
.map-embed iframe { width: 100%; height: 100%; border: none; border-radius: var(--radius-lg); }

/* ── RESOURCE CARD ────────────────────────────────── */
.resource-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  gap: 18px;
  transition: all var(--transition);
}
.resource-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.resource-icon {
  width: 48px; height: 48px;
  background: var(--bg-warm);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.resource-body h4 { font-size: 1rem; margin-bottom: 6px; }
.resource-body p { font-size: .85rem; color: var(--muted); margin-bottom: 8px; }

/* ── EVENT CARD ───────────────────────────────────── */
.event-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  transition: all var(--transition);
}
.event-card:hover { box-shadow: var(--shadow); }
.event-date-block {
  background: var(--ink);
  color: #fff;
  padding: 20px 18px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 80px;
}
.event-month { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; opacity: .7; }
.event-day { font-family: var(--serif); font-size: 2rem; font-weight: 700; line-height: 1; }
.event-body { padding: 20px 24px; flex: 1; }
.event-body h4 { font-size: 1.05rem; margin-bottom: 6px; }
.event-body p { font-size: .875rem; color: var(--muted); margin-bottom: 8px; }
.event-meta { font-size: .78rem; color: var(--muted-lt); }
@media(max-width:560px) {
  .event-card { flex-direction: column; }
  .event-date-block { flex-direction: row; gap: 8px; padding: 14px 20px; min-width: unset; }
}

/* ── CAREER CARD ──────────────────────────────────── */
.career-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition);
}
.career-card:hover { box-shadow: var(--shadow); }
.career-card h4 { font-size: 1.1rem; margin-bottom: 8px; }
.career-card p { font-size: .88rem; color: var(--muted); margin-bottom: 14px; }
.career-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.career-tag {
  font-size: .72rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 2px;
  background: var(--bg-warm);
  border: 1px solid var(--border);
  color: var(--muted);
}

/* ── TESTIMONIAL ──────────────────────────────────── */
.testimonial {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.testimonial-text {
  font-family: var(--body-serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--ink);
  margin-bottom: 16px;
  line-height: 1.75;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--bg-warm);
  border: 1px solid var(--border);
  object-fit: cover;
}
.testimonial-name { font-size: .88rem; font-weight: 600; }
.testimonial-role { font-size: .78rem; color: var(--muted); }

/* ── NUMBER HIGHLIGHT ─────────────────────────────── */
.num-block { text-align: center; padding: 24px; }
.num-block .num {
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}
.num-block p { font-size: .85rem; color: var(--muted); margin-bottom: 0; }

/* ── POLICY PAGES ─────────────────────────────────── */
.policy-content { max-width: 800px; margin: 0 auto; }
.policy-content h2 { font-size: 1.5rem; margin: 36px 0 12px; padding-top: 10px; border-top: 1px solid var(--border); }
.policy-content h2:first-of-type { border-top: none; margin-top: 12px; }
.policy-content h3 { font-size: 1.15rem; margin: 24px 0 10px; }
.policy-content p { font-size: .95rem; line-height: 1.8; }
.policy-content ul, .policy-content ol { padding-left: 24px; margin-bottom: 1.15rem; }
.policy-content li { font-size: .95rem; line-height: 1.75; margin-bottom: 6px; }
.policy-content a { color: var(--accent); }
.policy-meta {
  background: var(--bg-warm);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 20px;
  font-size: .85rem;
  color: var(--muted);
  margin-bottom: 36px;
}

/* ── FOOTER ───────────────────────────────────────── */
.site-footer { background: var(--ink); color: rgba(255,255,255,.75); }
.footer-main { padding: 72px 0 52px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand .logo-text { color: #fff; }
.footer-brand p { font-size: .875rem; margin: 16px 0 24px; line-height: 1.7; color: rgba(255,255,255,.6); }
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.08);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem;
  color: rgba(255,255,255,.7);
  transition: all var(--transition);
  text-decoration: none;
}
.social-btn:hover { background: var(--accent); color: #fff; }

.footer-col h6 { color: rgba(255,255,255,.4); font-size: .7rem; letter-spacing: .14em; margin-bottom: 16px; }
.footer-col ul { list-style: none; padding: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: .875rem; color: rgba(255,255,255,.65); transition: color var(--transition); }
.footer-col a:hover { color: #fff; }
.footer-contact-item { font-size: .875rem; color: rgba(255,255,255,.6); margin-bottom: 8px; }
.footer-contact-item strong { color: rgba(255,255,255,.9); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .8rem;
  color: rgba(255,255,255,.4);
}
.footer-bottom-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-bottom-links a { color: rgba(255,255,255,.4); transition: color var(--transition); }
.footer-bottom-links a:hover { color: rgba(255,255,255,.7); }

@media(max-width:900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width:600px) { .footer-grid { grid-template-columns: 1fr; } .footer-bottom { flex-direction: column; text-align: center; } }

/* ── UTILITIES ────────────────────────────────────── */
.text-center { text-align: center; }
.text-accent { color: var(--accent); }
.text-muted { color: var(--muted); }
.bg-warm { background: var(--bg-warm); }
.bg-dark { background: var(--ink); }
.bg-white { background: #fff; }
.border-top { border-top: 1px solid var(--border); }
.border-bottom { border-bottom: 1px solid var(--border); }
.rounded { border-radius: var(--radius-lg); }
.shadow { box-shadow: var(--shadow); }
.mb-0 { margin-bottom: 0; }
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.w-full { width: 100%; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-2 { gap: .5rem; }
.gap-3 { gap: .75rem; }
.gap-4 { gap: 1rem; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.two-col-layout { display: grid; grid-template-columns: 1fr 340px; gap: 48px; }
@media(max-width:900px) { .two-col-layout { grid-template-columns: 1fr; } }

.highlight-box {
  background: rgba(200,16,46,.04);
  border-left: 3px solid var(--accent);
  padding: 16px 20px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 24px 0;
}
.highlight-box p { margin-bottom: 0; font-size: .93rem; }

.img-full { width: 100%; height: auto; border-radius: var(--radius-lg); display: block; }
.img-cover { width: 100%; object-fit: cover; border-radius: var(--radius-lg); display: block; }

/* ── COOKIE BANNER ────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--ink);
  color: rgba(255,255,255,.85);
  padding: 16px 24px;
  z-index: 9999;
  display: none;
}
.cookie-banner.show { display: block; }
.cookie-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.cookie-inner p { font-size: .85rem; margin: 0; }
.cookie-inner a { color: rgba(255,255,255,.8); text-decoration: underline; }
.cookie-inner a:hover { color: #fff; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.btn-cookie-accept {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 8px 20px;
  border-radius: var(--radius);
  font-size: .82rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition);
}
.btn-cookie-accept:hover { background: var(--accent-dk); }
.btn-cookie-decline {
  background: transparent;
  color: rgba(255,255,255,.6);
  border: 1px solid rgba(255,255,255,.25);
  padding: 8px 16px;
  border-radius: var(--radius);
  font-size: .82rem;
  cursor: pointer;
  transition: all var(--transition);
}
.btn-cookie-decline:hover { background: rgba(255,255,255,.08); }

/* ── BACK TO TOP ──────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px; height: 44px;
  background: var(--ink);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(26,26,46,.25);
  opacity: 0; pointer-events: none;
  transition: all var(--transition);
  z-index: 900;
}
.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { background: var(--accent); transform: translateY(-2px); }

/* ── NOTICE BAR ───────────────────────────────────── */
.notice-bar {
  background: var(--accent);
  color: #fff;
  padding: 8px 24px;
  text-align: center;
  font-size: .83rem;
  font-weight: 500;
}
.notice-bar a { color: #fff; text-decoration: underline; }

/* ── INTRO TWO-COL ────────────────────────────────── */
.intro-image-wrap { position: relative; }
.intro-image-wrap img { width: 100%; border-radius: var(--radius-lg); display: block; aspect-ratio: 4/3; object-fit: cover; }
.intro-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--accent);
  color: #fff;
  padding: 16px 22px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.intro-badge .num { font-family: var(--serif); font-size: 2.2rem; font-weight: 700; line-height: 1; }
.intro-badge .txt { font-size: .78rem; font-weight: 600; opacity: .85; }

/* ── PROGRAM DETAIL ───────────────────────────────── */
.prog-detail-header {
  background: var(--ink);
  color: #fff;
  padding: 72px 0 60px;
}
.prog-detail-header h1 { color: #fff; margin-bottom: 16px; }
.prog-detail-header p { color: rgba(255,255,255,.72); font-size: 1.05rem; max-width: 620px; }
.prog-pills { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 24px; }
.prog-pill {
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.85);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: .8rem;
  font-weight: 500;
}

/* ── STEP BLOCK ───────────────────────────────────── */
.step-list { counter-reset: steps; }
.step-item {
  counter-increment: steps;
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
}
.step-num {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: var(--ink);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 700;
}
.step-body h4 { font-size: 1rem; margin-bottom: 6px; padding-top: 8px; }
.step-body p { font-size: .88rem; color: var(--muted); margin-bottom: 0; }

/* ── POLICY PAGES ─────────────────────────────────── */
.policy-body h2 {
  font-size: 1.35rem;
  margin: 40px 0 14px;
  padding-top: 8px;
  border-top: 1px solid var(--border);
  color: var(--ink);
}
.policy-body h2:first-of-type { border-top: none; margin-top: 0; }
.policy-body h3 {
  font-size: 1.05rem;
  margin: 24px 0 10px;
  color: var(--ink);
}
.policy-body p {
  color: var(--muted);
  line-height: 1.78;
  margin-bottom: 14px;
  font-size: .93rem;
}
.policy-body a { color: var(--accent); text-decoration: underline; }
.policy-intro-box {
  background: var(--bg-warm);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: 24px 28px;
  margin-bottom: 36px;
}
.policy-intro-box p { margin-bottom: 8px; }
.policy-intro-box p:last-child { margin-bottom: 0; }
.policy-info-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  margin: 16px 0 20px;
}
.policy-info-block p { margin: 0; color: var(--muted); }
.policy-list {
  margin: 0 0 18px 0;
  padding-left: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.policy-list li {
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.7;
}
.policy-list li strong { color: var(--ink); }
.policy-table-wrapper {
  overflow-x: auto;
  margin: 16px 0 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.policy-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .88rem;
}
.policy-table thead tr {
  background: var(--ink);
  color: #fff;
}
.policy-table th {
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  white-space: nowrap;
}
.policy-table td {
  padding: 11px 16px;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  line-height: 1.55;
}
.policy-table tbody tr:last-child td { border-bottom: none; }
.policy-table tbody tr:nth-child(even) { background: var(--bg-warm); }
.policy-table code {
  background: rgba(0,0,0,.06);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: .82rem;
  font-family: var(--mono, monospace);
}

/* TOC sidebar */
.policy-toc { position: sticky; top: 100px; }
.toc-list {
  margin: 0;
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  counter-reset: toc;
}
.toc-list li { font-size: .875rem; }
.toc-list a {
  color: var(--muted);
  text-decoration: none;
  transition: color .2s;
}
.toc-list a:hover { color: var(--accent); }

/* sidebar link style */
.sidebar-link {
  display: block;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
  font-size: .875rem;
  text-decoration: none;
  transition: color .2s;
}
.sidebar-link:hover { color: var(--accent); }
.sidebar-link:last-child { border-bottom: none; }

/* ── SCHEDULE PAGE ─────────────────────────────────── */
.schedule-tab.active {
  color: var(--ink) !important;
  border-bottom-color: var(--accent) !important;
}
.schedule-table th { white-space: nowrap; }
.schedule-table td { font-size: .85rem; }
.tr-alt { background: var(--bg-warm); }

/* ── RESPONSIVE HELPERS ───────────────────────────── */
@media(max-width:768px) {
  .hide-mobile { display: none !important; }
  .newsletter-form { flex-direction: column; }
  .policy-body h2 { font-size: 1.15rem; }
  .policy-toc { position: static; }
}
@media(min-width:769px) {
  .show-mobile { display: none !important; }
}
