@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,700&family=Inter:wght@300;400;500;600;700&family=Source+Serif+4:ital,wght@0,300;0,400;0,600;1,400&display=swap');

/* =====================================================
   JORNEXA — Editorial Newsroom CSS
   ===================================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --graphite:     #1c1c1c;
  --graphite-mid: #2e2e2e;
  --red:          #c41e3a;
  --red-dark:     #9b1830;
  --ink:          #333333;
  --gray:         #5a5a5a;
  --gray-light:   #888888;
  --rule:         #d2d2d2;
  --paper:        #f5f4ef;
  --white:        #ffffff;
  --yellow-mark:  #f5e642;
  --font-head:    'Playfair Display', Georgia, serif;
  --font-body:    'Inter', Arial, sans-serif;
  --font-serif:   'Source Serif 4', Georgia, serif;
  --max-w:        1240px;
  --gutter:       24px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
a:hover { color: var(--red); }
img { display: block; width: 100%; height: auto; object-fit: cover; }
ul { list-style: none; }
button, input, textarea, select { font-family: inherit; }

/* =====================================================
   UTILITY CLASSES
   ===================================================== */

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: 72px 0; }
.section--dark { background: var(--graphite); color: var(--white); }
.section--white { background: var(--white); }
.section--paper { background: var(--paper); }
.section--red { background: var(--red); color: var(--white); }

.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

.tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--red);
  border-top: 2px solid var(--red);
  padding-top: 4px;
}

.tag--white { color: var(--white); border-color: var(--white); }
.tag--dark { color: var(--graphite); border-color: var(--graphite); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  display: block;
  margin-bottom: 12px;
}

.rule-line {
  border: none;
  border-top: 1px solid var(--rule);
  margin: 32px 0;
}

.rule-line--bold {
  border-top: 3px solid var(--graphite);
  margin: 24px 0 16px;
}

.rule-line--red { border-top: 2px solid var(--red); }

/* =====================================================
   TYPOGRAPHY
   ===================================================== */

h1, h2, h3, h4, h5, h6 { font-family: var(--font-head); line-height: 1.15; }

.display-xl  { font-size: clamp(48px, 7vw, 96px); font-weight: 900; line-height: 1.0; letter-spacing: -2px; }
.display-lg  { font-size: clamp(36px, 5vw, 72px);  font-weight: 700; line-height: 1.05; letter-spacing: -1px; }
.display-md  { font-size: clamp(28px, 4vw, 48px);  font-weight: 700; line-height: 1.1; }
.display-sm  { font-size: clamp(22px, 3vw, 36px);  font-weight: 600; line-height: 1.2; }
.headline    { font-size: clamp(18px, 2.5vw, 26px); font-weight: 700; line-height: 1.25; }
.subhead     { font-size: 18px; font-weight: 400; font-style: italic; color: var(--gray); line-height: 1.5; font-family: var(--font-serif); }
.body-serif  { font-family: var(--font-serif); font-size: 18px; line-height: 1.75; color: var(--ink); }
.body-sm     { font-size: 14px; color: var(--gray); line-height: 1.55; }
.caption     { font-size: 12px; color: var(--gray-light); letter-spacing: 0.3px; }
.kicker      { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--gray); }

/* =====================================================
   BUTTONS
   ===================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 28px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  text-decoration: none;
}

.btn--primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn--primary:hover { background: var(--red-dark); border-color: var(--red-dark); color: var(--white); }

.btn--outline {
  background: transparent;
  color: var(--graphite);
  border-color: var(--graphite);
}
.btn--outline:hover { background: var(--graphite); color: var(--white); }

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn--outline-white:hover { background: var(--white); color: var(--graphite); }

.btn--ghost {
  background: transparent;
  color: var(--red);
  border-color: transparent;
  padding: 10px 0;
  font-size: 12px;
}
.btn--ghost:hover { color: var(--red-dark); }
.btn--ghost::after { content: ' →'; }

.btn--sm { padding: 10px 20px; font-size: 11px; }
.btn--lg { padding: 18px 36px; font-size: 14px; }

/* =====================================================
   HEADER / NAV
   ===================================================== */

.site-header {
  background: var(--graphite);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 3px solid var(--red);
}

.topbar {
  background: var(--red);
  padding: 6px 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.8px;
  color: var(--white);
}

.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar__left { opacity: 0.85; }
.topbar__right a { color: var(--white); margin-left: 20px; opacity: 0.85; }
.topbar__right a:hover { opacity: 1; }

.nav-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 24px;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav-logo__name {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -1px;
  line-height: 1;
}

.nav-logo__name span { color: var(--red); }

.nav-logo__tagline {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gray-light);
  margin-top: 4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  color: #ccc;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 8px 12px;
  transition: color 0.2s;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active { color: var(--white); }

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--red);
}

.nav-cta { margin-left: 12px; }

.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

/* Dropdown */
.nav-dropdown { position: relative; }

.nav-dropdown__menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border-top: 3px solid var(--red);
  min-width: 200px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  z-index: 200;
}

.nav-dropdown:hover .nav-dropdown__menu { display: block; }

.nav-dropdown__menu a {
  display: block;
  color: var(--ink) !important;
  font-size: 13px;
  padding: 12px 16px !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  border-bottom: 1px solid var(--rule);
  font-weight: 500 !important;
}

.nav-dropdown__menu a:hover { background: var(--paper); color: var(--red) !important; }

/* =====================================================
   HERO SECTIONS
   ===================================================== */

.hero-main {
  background: var(--graphite);
  color: var(--white);
  padding: 0;
  overflow: hidden;
}

.hero-main__grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  min-height: 600px;
}

.hero-main__content {
  padding: 64px 48px 64px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(255,255,255,0.1);
}

.hero-main__image {
  position: relative;
  overflow: hidden;
}

.hero-main__image img { width: 100%; height: 100%; object-fit: cover; }

.hero-main__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(28,28,28,0.4) 0%, transparent 50%);
}

.hero-main__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.hero-main__title {
  font-family: var(--font-head);
  font-size: clamp(40px, 5.5vw, 76px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -2px;
  margin-bottom: 20px;
}

.hero-main__lead {
  font-family: var(--font-serif);
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  margin-bottom: 32px;
}

.hero-main__actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Hero stats bar */
.hero-stats {
  background: var(--red);
  padding: 20px 0;
}

.hero-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  divide: var(--rule);
}

.hero-stat {
  padding: 0 32px;
  border-right: 1px solid rgba(255,255,255,0.2);
  text-align: center;
}
.hero-stat:last-child { border-right: none; }
.hero-stat__num { font-family: var(--font-head); font-size: 36px; font-weight: 900; color: var(--white); line-height: 1; }
.hero-stat__label { font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.7); margin-top: 4px; }

/* Page hero — used on inner pages like Contact */
.page-hero {
  background: var(--graphite);
  color: var(--white);
  padding: 80px 0 64px;
  border-bottom: 4px solid var(--red);
}

.page-hero--compact { padding: 56px 0 48px; }

.page-hero__content { max-width: 720px; }

.page-hero__title {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
}

.page-hero__lead {
  font-family: var(--font-serif);
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  max-width: 580px;
}

/* Inner page hero */
.hero-inner {
  background: var(--graphite);
  color: var(--white);
  padding: 56px 0 48px;
  border-bottom: 4px solid var(--red);
}

.hero-inner__breadcrumb {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.hero-inner__breadcrumb a { color: rgba(255,255,255,0.5); }
.hero-inner__breadcrumb a:hover { color: var(--red); }
.hero-inner__breadcrumb span { margin: 0 8px; }

.hero-inner__title {
  font-family: var(--font-head);
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -1.5px;
  max-width: 820px;
}

.hero-inner__lead {
  font-family: var(--font-serif);
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  margin-top: 16px;
  max-width: 620px;
  line-height: 1.6;
}

/* =====================================================
   NEWSPAPER GRID
   ===================================================== */

.news-grid {
  display: grid;
  gap: 0;
}

.news-grid--main {
  grid-template-columns: 1fr 1fr 1fr;
  border-top: 3px solid var(--graphite);
}

.news-grid--sidebar {
  grid-template-columns: 2fr 1fr;
  gap: 48px;
}

.news-grid--3col { grid-template-columns: repeat(3, 1fr); gap: 32px; }
.news-grid--4col { grid-template-columns: repeat(4, 1fr); gap: 24px; }
.news-grid--2col { grid-template-columns: repeat(2, 1fr); gap: 40px; }

/* Article Card — Standard */
.article-card {
  padding: 24px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.article-card:last-child { border-right: none; }

.article-card--featured {
  grid-column: span 2;
  padding: 32px;
  background: var(--white);
}

.article-card__img {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  margin-bottom: 16px;
}

.article-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.article-card__img:hover img { transform: scale(1.04); }

.article-card__tag { margin-bottom: 8px; }
.article-card__title { font-family: var(--font-head); font-weight: 700; line-height: 1.2; margin-bottom: 10px; }
.article-card__title a:hover { color: var(--red); }
.article-card__excerpt { font-size: 14px; color: var(--gray); line-height: 1.55; margin-bottom: 14px; }
.article-card__meta { font-size: 11px; color: var(--gray-light); letter-spacing: 0.3px; }

/* Compact list articles */
.article-list-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--rule);
}

.article-list-item:last-child { border-bottom: none; }
.article-list-item__img { width: 80px; height: 60px; flex-shrink: 0; overflow: hidden; }
.article-list-item__img img { width: 100%; height: 100%; object-fit: cover; }
.article-list-item__title { font-family: var(--font-head); font-size: 15px; font-weight: 700; line-height: 1.3; margin-bottom: 4px; }
.article-list-item__title a:hover { color: var(--red); }
.article-list-item__meta { font-size: 11px; color: var(--gray-light); }

/* =====================================================
   COURSE CARDS
   ===================================================== */

.course-card {
  background: var(--white);
  border-top: 4px solid var(--graphite);
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
}

.course-card:hover { box-shadow: 0 12px 36px rgba(0,0,0,0.12); transform: translateY(-3px); }
.course-card--featured { border-top-color: var(--red); }

.course-card__image { aspect-ratio: 16/10; overflow: hidden; }
.course-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.course-card:hover .course-card__image img { transform: scale(1.05); }

.course-card__body { padding: 24px; }
.course-card__tag { margin-bottom: 10px; }
.course-card__title { font-family: var(--font-head); font-size: 20px; font-weight: 700; line-height: 1.25; margin-bottom: 10px; }
.course-card__desc { font-size: 14px; color: var(--gray); line-height: 1.55; margin-bottom: 20px; }

.course-card__meta {
  display: flex;
  gap: 16px;
  font-size: 12px;
  color: var(--gray-light);
  padding-top: 16px;
  border-top: 1px solid var(--rule);
  flex-wrap: wrap;
}

.course-card__meta span { display: flex; align-items: center; gap: 4px; }

/* =====================================================
   SECTION HEADERS — Editorial Style
   ===================================================== */

.section-header {
  margin-bottom: 40px;
}

.section-header--ruled {
  border-top: 3px solid var(--graphite);
  padding-top: 16px;
}

.section-header--red-ruled { border-top: 3px solid var(--red); padding-top: 16px; }

.section-header__inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.section-title--white { color: var(--white); }

/* =====================================================
   SIDEBAR
   ===================================================== */

.sidebar__widget { margin-bottom: 40px; }

.sidebar__widget-title {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--graphite);
  padding-bottom: 8px;
  border-bottom: 2px solid var(--graphite);
  margin-bottom: 16px;
}

/* Newsletter widget */
.newsletter-widget {
  background: var(--graphite);
  color: var(--white);
  padding: 28px;
}

.newsletter-widget h3 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}

.newsletter-widget p { font-size: 14px; color: rgba(255,255,255,0.65); margin-bottom: 20px; }

.form-inline {
  display: flex;
  gap: 0;
}

.form-inline input {
  flex: 1;
  padding: 12px 14px;
  border: none;
  font-size: 13px;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  outline: none;
}

.form-inline input::placeholder { color: rgba(255,255,255,0.4); }

.form-inline button {
  padding: 12px 18px;
  background: var(--red);
  color: var(--white);
  border: none;
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: background 0.2s;
}

.form-inline button:hover { background: var(--red-dark); }

/* =====================================================
   PULL QUOTE / BLOCKQUOTE
   ===================================================== */

.pull-quote {
  border-left: 5px solid var(--red);
  padding: 20px 24px;
  margin: 36px 0;
  background: var(--white);
}

.pull-quote p {
  font-family: var(--font-head);
  font-size: 22px;
  font-style: italic;
  font-weight: 600;
  line-height: 1.4;
  color: var(--graphite);
}

.pull-quote cite {
  display: block;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 10px;
}

/* =====================================================
   FACULTY CARDS
   ===================================================== */

.faculty-card { text-align: center; }

.faculty-card__photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 16px;
  border: 4px solid var(--white);
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.faculty-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.faculty-card__name { font-family: var(--font-head); font-size: 20px; font-weight: 700; margin-bottom: 4px; }
.faculty-card__role { font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--red); margin-bottom: 10px; }
.faculty-card__bio { font-size: 14px; color: var(--gray); line-height: 1.55; }

/* =====================================================
   EVENT CARDS
   ===================================================== */

.event-card {
  display: flex;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--rule);
}

.event-card:first-child { border-top: 1px solid var(--rule); }

.event-card__date {
  flex-shrink: 0;
  width: 64px;
  text-align: center;
  background: var(--graphite);
  color: var(--white);
  padding: 12px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.event-card__day { font-family: var(--font-head); font-size: 32px; font-weight: 900; line-height: 1; }
.event-card__mon { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--red); }

.event-card__content { flex: 1; }
.event-card__tag { margin-bottom: 6px; }
.event-card__title { font-family: var(--font-head); font-size: 18px; font-weight: 700; margin-bottom: 6px; }
.event-card__title a:hover { color: var(--red); }
.event-card__info { font-size: 13px; color: var(--gray); margin-bottom: 8px; }
.event-card__desc { font-size: 14px; color: var(--gray); line-height: 1.5; }

/* =====================================================
   MARQUEE TICKER
   ===================================================== */

.ticker {
  background: var(--red);
  overflow: hidden;
  padding: 10px 0;
  border-top: 1px solid rgba(255,255,255,0.2);
}

.ticker__inner {
  display: flex;
  align-items: center;
  gap: 0;
}

.ticker__label {
  flex-shrink: 0;
  background: var(--graphite);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0 16px;
  height: 24px;
  display: flex;
  align-items: center;
  margin-right: 20px;
}

.ticker__track {
  overflow: hidden;
  flex: 1;
}

.ticker__items {
  display: flex;
  gap: 0;
  animation: ticker-scroll 30s linear infinite;
  white-space: nowrap;
}

.ticker__item {
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  padding: 0 32px;
  letter-spacing: 0.3px;
}

.ticker__item::before {
  content: '◆';
  margin-right: 12px;
  opacity: 0.5;
}

@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =====================================================
   CONTACT FORM
   ===================================================== */

.contact-form { max-width: 680px; }

.form-group { margin-bottom: 24px; }

.form-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--graphite);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--rule);
  background: var(--white);
  font-size: 15px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s;
  border-radius: 0;
}

.form-control:focus { border-color: var(--graphite); box-shadow: 0 0 0 3px rgba(28,28,28,0.07); }

textarea.form-control { min-height: 140px; resize: vertical; }

select.form-control { appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235a5a5a' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.form-success {
  display: none;
  background: #1a6b3c;
  color: var(--white);
  padding: 28px 32px;
  margin-bottom: 24px;
  border-left: 4px solid #2ecc71;
}

.form-success.visible { display: block; }
.form-success__title { font-family: var(--font-head); font-weight: 700; font-size: 20px; margin-bottom: 8px; }
.form-success__text { font-size: 14px; opacity: 0.85; line-height: 1.6; margin: 0; }

.form-error-msg {
  font-size: 12px;
  color: var(--red);
  margin-top: 5px;
  display: none;
}
.form-error-msg.visible { display: block; }

/* =====================================================
   ABOUT PAGE
   ===================================================== */

.about-mission {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-mission__image { aspect-ratio: 4/3; overflow: hidden; }
.about-mission__image img { width: 100%; height: 100%; object-fit: cover; }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }

.value-item {
  padding: 28px;
  background: var(--white);
  border-top: 3px solid var(--red);
}

.value-item__number {
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 900;
  color: var(--paper);
  -webkit-text-stroke: 2px var(--rule);
  line-height: 1;
  margin-bottom: 12px;
}

.value-item__title { font-family: var(--font-head); font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.value-item__text { font-size: 14px; color: var(--gray); line-height: 1.6; }

/* =====================================================
   RESOURCE CARDS
   ===================================================== */

.resource-card {
  background: var(--white);
  padding: 28px;
  border-left: 4px solid var(--graphite);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.resource-card:hover { border-color: var(--red); box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
.resource-card__icon { font-size: 28px; margin-bottom: 12px; }
.resource-card__title { font-family: var(--font-head); font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.resource-card__desc { font-size: 14px; color: var(--gray); line-height: 1.55; margin-bottom: 16px; }
.resource-card__type { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--red); }

/* =====================================================
   FAQ
   ===================================================== */

.faq-item {
  border-bottom: 1px solid var(--rule);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-question__text {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--graphite);
  line-height: 1.3;
}

.faq-question__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--graphite);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 300;
  transition: transform 0.2s, background 0.2s;
}

.faq-item.open .faq-question__icon { background: var(--red); transform: rotate(45deg); }

.faq-answer {
  display: none;
  padding: 0 0 20px 0;
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
  font-family: var(--font-serif);
  max-width: 740px;
}

.faq-item.open .faq-answer { display: block; }

/* =====================================================
   ARTICLE / SINGLE PAGE
   ===================================================== */

.article-hero {
  background: var(--graphite);
  color: var(--white);
}

.article-hero__inner {
  display: grid;
  grid-template-columns: 1fr 480px;
  min-height: 480px;
}

.article-hero__content {
  padding: 56px 48px 56px 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-right: 1px solid rgba(255,255,255,0.1);
}

.article-hero__image { overflow: hidden; }
.article-hero__image img { width: 100%; height: 100%; object-fit: cover; }

.article-meta {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  margin: 12px 0 20px;
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.3px;
}

.article-meta strong { color: rgba(255,255,255,0.85); }
.article-meta__divider { opacity: 0.3; }

.article-body {
  max-width: 740px;
}

.article-body p {
  font-family: var(--font-serif);
  font-size: 18px;
  line-height: 1.8;
  color: var(--ink);
  margin-bottom: 24px;
}

.article-body h2 {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 700;
  margin: 40px 0 16px;
  color: var(--graphite);
}

.article-body h3 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  margin: 32px 0 12px;
}

.article-body ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 24px;
}

.article-body ul li {
  font-family: var(--font-serif);
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 8px;
}

.article-body strong { color: var(--graphite); }

/* Article layout with sidebar */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 64px;
  align-items: start;
}

/* =====================================================
   BREADCRUMB
   ===================================================== */

.breadcrumb {
  padding: 12px 0;
  font-size: 12px;
  color: var(--gray-light);
  border-bottom: 1px solid var(--rule);
  margin-bottom: 40px;
}

.breadcrumb a { color: var(--gray-light); }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb span { margin: 0 6px; opacity: 0.4; }

/* =====================================================
   FOOTER
   ===================================================== */

.site-footer {
  background: var(--graphite-mid);
  color: var(--white);
  padding: 64px 0 0;
  margin-top: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand__name {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.5px;
  margin-bottom: 4px;
}

.footer-brand__name span { color: var(--red); }
.footer-brand__tagline { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 16px; }
.footer-brand__desc { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.65; margin-bottom: 20px; }

.footer-contact { margin-top: 20px; }
.footer-contact p { font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 6px; line-height: 1.5; }
.footer-contact a { color: rgba(255,255,255,0.65); }
.footer-contact a:hover { color: var(--red); }

.footer-col__title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  margin-bottom: 16px;
}

.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--red); }

.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom__copy { font-size: 12px; color: rgba(255,255,255,0.35); }
.footer-bottom__links { display: flex; gap: 20px; }
.footer-bottom__links a { font-size: 12px; color: rgba(255,255,255,0.35); }
.footer-bottom__links a:hover { color: var(--red); }

/* =====================================================
   POLICY PAGES
   ===================================================== */

.policy-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 64px 0;
}

.policy-content h1 {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  margin-bottom: 8px;
}

.policy-content .last-updated {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--rule);
}

.policy-content h2 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  margin: 40px 0 12px;
  color: var(--graphite);
  padding-top: 8px;
  border-top: 2px solid var(--rule);
}

.policy-content h3 {
  font-size: 17px;
  font-weight: 700;
  margin: 24px 0 8px;
}

.policy-content p {
  font-size: 15px;
  color: var(--ink);
  line-height: 1.8;
  margin-bottom: 16px;
}

.policy-content ul, .policy-content ol {
  padding-left: 24px;
  margin-bottom: 16px;
}

.policy-content ul { list-style: disc; }
.policy-content ol { list-style: decimal; }

.policy-content li {
  font-size: 15px;
  color: var(--ink);
  line-height: 1.75;
  margin-bottom: 6px;
}

.policy-content a { color: var(--red); text-decoration: underline; }
.policy-content strong { color: var(--graphite); }

/* =====================================================
   COOKIE BANNER
   ===================================================== */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--graphite);
  color: var(--white);
  padding: 20px 24px;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  border-top: 3px solid var(--red);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.visible { transform: translateY(0); }
.cookie-banner p { font-size: 13px; color: rgba(255,255,255,0.75); line-height: 1.5; flex: 1; min-width: 260px; }
.cookie-banner a { color: var(--red); text-decoration: underline; }
.cookie-banner__btns { display: flex; gap: 12px; flex-shrink: 0; }

/* =====================================================
   MISC COMPONENTS
   ===================================================== */

.highlight-box {
  background: var(--graphite);
  color: var(--white);
  padding: 32px 36px;
  border-left: 5px solid var(--red);
}

.highlight-box h3 { font-family: var(--font-head); font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.highlight-box p { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.6; }

.tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-pill {
  display: inline-block;
  padding: 5px 12px;
  background: var(--paper);
  border: 1px solid var(--rule);
  font-size: 12px;
  font-weight: 600;
  color: var(--gray);
  transition: all 0.2s;
}
.tag-pill:hover { background: var(--red); color: var(--white); border-color: var(--red); }

.numbered-list { counter-reset: nl; }
.numbered-list li {
  counter-increment: nl;
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--rule);
  align-items: flex-start;
}
.numbered-list li::before {
  content: counter(nl, decimal-leading-zero);
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 900;
  color: var(--red);
  flex-shrink: 0;
  width: 36px;
  line-height: 1;
}

.infobar {
  background: var(--white);
  border: 1px solid var(--rule);
  border-top: 3px solid var(--red);
  padding: 20px 24px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 32px;
}

.infobar__icon { font-size: 20px; flex-shrink: 0; }
.infobar__title { font-weight: 700; font-size: 14px; margin-bottom: 4px; }
.infobar p { font-size: 13px; color: var(--gray); line-height: 1.5; }

/* Sitemap */
.sitemap-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.sitemap-col h3 { font-family: var(--font-head); font-size: 18px; font-weight: 700; margin-bottom: 12px; padding-bottom: 8px; border-bottom: 2px solid var(--red); }
.sitemap-col ul li { margin-bottom: 8px; }
.sitemap-col ul li a { font-size: 14px; color: var(--gray); }
.sitemap-col ul li a:hover { color: var(--red); }

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--red);
  color: var(--white);
  border: none;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  z-index: 90;
}

.back-to-top.visible { opacity: 1; pointer-events: auto; }

/* Progress bar */
.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--red);
  z-index: 9999;
  width: 0%;
  transition: width 0.1s;
}

/* =====================================================
   RESPONSIVE
   ===================================================== */

@media (max-width: 1080px) {
  .hero-main__grid { grid-template-columns: 1fr; }
  .hero-main__image { display: none; }
  .hero-main__content { padding: 64px 0; border-right: none; }
  .news-grid--main { grid-template-columns: 1fr 1fr; }
  .article-card--featured { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .article-hero__inner { grid-template-columns: 1fr; }
  .article-hero__image { display: none; }
  .article-hero__content { padding: 48px 0; border-right: none; }
  .article-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --gutter: 16px; }
  .section { padding: 48px 0; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--graphite);
    padding: 16px;
    gap: 0;
    border-top: 2px solid var(--red);
    z-index: 200;
  }
  .nav-links.open a { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .nav-links.open a.active::after { display: none; }
  .news-grid--main { grid-template-columns: 1fr; }
  .article-card--featured { grid-column: span 1; }
  .news-grid--3col, .news-grid--4col, .news-grid--2col { grid-template-columns: 1fr; }
  .hero-stats__grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); padding: 12px; }
  .about-mission { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .sitemap-grid { grid-template-columns: 1fr; }
  .news-grid--sidebar { grid-template-columns: 1fr; }
  .display-xl { font-size: 40px; }
}

@media (max-width: 480px) {
  .hero-stats__grid { grid-template-columns: 1fr 1fr; }
  .topbar__left { display: none; }
  .event-card { flex-direction: column; }
  .faculty-card__photo { width: 120px; height: 120px; }
}
