/* =========================================================
   Obong University — Modern Redesign Stylesheet
   Fresh, responsive academic theme
   ========================================================= */

:root {
  --navy: #0b2545;
  --primary: #15467e;
  --primary-600: #1d5aa0;
  --accent: #e0a72e;       /* gold */
  --accent-600: #c8901c;
  --teal: #1f9d77;         /* fresh accent */
  --ink: #16202e;
  --body: #475467;
  --muted: #6b7787;
  --line: #e6eaf0;
  --bg: #ffffff;
  --bg-soft: #f5f8fc;
  --bg-navy-soft: #f0f5fb;
  --white: #ffffff;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 26px;
  --shadow-sm: 0 2px 10px rgba(16, 32, 56, .06);
  --shadow: 0 14px 40px rgba(16, 32, 56, .10);
  --shadow-lg: 0 30px 70px rgba(11, 37, 69, .18);
  --container: 1200px;
  --ease: cubic-bezier(.22,.61,.36,1);
  --font-head: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--body);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .25s var(--ease); }
ul { margin: 0; padding: 0; list-style: none; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.18;
  font-weight: 700;
  margin: 0 0 .5em;
  letter-spacing: -.01em;
}
h1 { font-size: clamp(2.1rem, 5vw, 3.6rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
p { margin: 0 0 1rem; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 22px;
}

.section { padding: clamp(56px, 8vw, 110px) 0; }
.section--soft { background: var(--bg-soft); }
.text-center { text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .98rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .3s var(--ease);
  line-height: 1;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--accent); color: var(--navy); box-shadow: 0 10px 24px rgba(224,167,46,.35); }
.btn--primary:hover { background: var(--accent-600); transform: translateY(-3px); box-shadow: 0 16px 30px rgba(224,167,46,.45); }
.btn--navy { background: var(--primary); color: #fff; }
.btn--navy:hover { background: var(--navy); transform: translateY(-3px); box-shadow: var(--shadow); }
.btn--ghost { background: transparent; color: var(--navy); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--primary); color: var(--primary); }
.btn--light { background: #fff; color: var(--navy); }
.btn--light:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn--outline-light:hover { background: #fff; color: var(--navy); }

/* ---------- Eyebrow / section heads ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--bg-navy-soft);
  padding: 7px 16px;
  border-radius: 50px;
  margin-bottom: 18px;
}
.eyebrow--gold { color: var(--accent-600); background: rgba(224,167,46,.12); }
.section-head { max-width: 720px; margin: 0 auto 50px; }
.section-head.left { margin-left: 0; }
.section-head p { color: var(--muted); font-size: 1.05rem; }

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255,255,255,.86);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s var(--ease);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.topbar {
  background: var(--navy);
  color: #cdd9ea;
  font-size: .82rem;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; height: 40px; gap: 18px; }
.topbar a { color: #cdd9ea; }
.topbar a:hover { color: var(--accent); }
.topbar__left { display: flex; gap: 22px; align-items: center; }
.topbar__left span { display: inline-flex; align-items: center; gap: 7px; }
.topbar__left svg { width: 14px; height: 14px; color: var(--accent); }
.topbar__social { display: flex; gap: 14px; align-items: center; }
.topbar__social svg { width: 15px; height: 15px; }

.navbar { display: flex; align-items: center; justify-content: space-between; height: 74px; gap: 20px; }
.navbar__logo img { height: 56px; width: auto; }
.navbar__menu { display: flex; align-items: center; gap: 4px; }
.navbar__menu > li { position: relative; }
.navbar__menu > li > a {
  display: flex; align-items: center; gap: 5px;
  padding: 12px 16px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .95rem;
  color: var(--ink);
  border-radius: 8px;
}
.navbar__menu > li > a:hover { color: var(--primary); }
.navbar__menu .caret { width: 13px; height: 13px; opacity: .6; transition: transform .25s; }
.navbar__menu > li:hover .caret { transform: rotate(180deg); }
.dropdown {
  position: absolute; top: calc(100% + 8px); left: 0;
  min-width: 220px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 10px;
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: all .25s var(--ease);
}
.navbar__menu > li:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown li a {
  display: block; padding: 10px 14px; border-radius: 8px;
  font-size: .92rem; font-weight: 500; color: var(--body);
}
.dropdown li a:hover { background: var(--bg-soft); color: var(--primary); }
.navbar__actions { display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; color: var(--ink); }
.nav-toggle svg { width: 28px; height: 28px; }

/* Mobile drawer */
.mobile-nav {
  position: fixed; inset: 0 0 0 auto; width: min(340px, 86vw);
  background: #fff; z-index: 1001;
  transform: translateX(100%); transition: transform .35s var(--ease);
  box-shadow: var(--shadow-lg); padding: 22px; overflow-y: auto;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.mobile-nav__head img { height: 40px; }
.mobile-nav__close { background: none; border: 0; cursor: pointer; color: var(--ink); }
.mobile-nav__close svg { width: 26px; height: 26px; }
.mobile-nav ul li a { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 13px 8px; font-family: var(--font-head); font-weight: 600; color: var(--ink); border-bottom: 1px solid var(--line); }
.mobile-nav ul li a svg { flex: none; width: 18px; height: 18px; opacity: .55; transition: transform .25s var(--ease); }
.mobile-nav .has-sub.open > a svg { transform: rotate(90deg); }
.mobile-nav .sub { padding-left: 14px; }
.mobile-nav .sub a { font-weight: 500; font-size: .92rem; color: var(--body); border-bottom: none; padding: 10px 8px; }
.mobile-nav .sub a svg { display: none; }
.overlay { position: fixed; inset: 0; background: rgba(11,37,69,.45); z-index: 1000; opacity: 0; visibility: hidden; transition: .3s; }
.overlay.show { opacity: 1; visibility: visible; }

/* =========================================================
   HERO
   ========================================================= */
.hero { position: relative; color: #fff; overflow: hidden; }
.hero__slide { position: relative; min-height: clamp(560px, 82vh, 760px); display: flex; align-items: center; }
.hero__bg { position: absolute; inset: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(7,24,46,.92) 0%, rgba(8,30,58,.78) 42%, rgba(8,30,58,.35) 100%); }
.hero__inner { position: relative; z-index: 2; max-width: 680px; padding: 60px 0; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-head); font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; font-size: .8rem; color: var(--accent);
  margin-bottom: 22px;
}
.hero__eyebrow::before { content:""; width: 34px; height: 2px; background: var(--accent); display:inline-block; }
.hero h1 { color: #fff; margin-bottom: 18px; }
.hero h1 span { color: var(--accent); }
.hero__inner p { font-size: 1.15rem; color: #d9e3f0; max-width: 540px; margin-bottom: 30px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__marquee { background: var(--navy); color: #fff; overflow: hidden; }
.hero__marquee .track { display: flex; gap: 44px; white-space: nowrap; padding: 16px 0; animation: marquee 26s linear infinite; font-family: var(--font-head); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; font-size: .92rem; }
.hero__marquee .track span { display: inline-flex; align-items: center; gap: 44px; color: #fff; }
.hero__marquee .track span::after { content: "✦"; color: var(--accent); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* =========================================================
   PAGE BANNER (interior)
   ========================================================= */
.page-banner { position: relative; color: #fff; padding: clamp(70px, 12vw, 130px) 0 clamp(56px, 9vw, 90px); overflow: hidden; }
.page-banner__bg { position: absolute; inset: 0; }
.page-banner__bg img { width: 100%; height: 100%; object-fit: cover; }
.page-banner__bg::after { content:""; position:absolute; inset:0; background: linear-gradient(120deg, rgba(8,26,50,.93), rgba(21,70,126,.78)); }
.page-banner .container { position: relative; z-index: 2; }
.page-banner h1 { color: #fff; margin-bottom: 14px; }
.breadcrumb { display: flex; gap: 10px; align-items: center; font-family: var(--font-head); font-weight: 500; font-size: .95rem; color: #c7d4e6; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb svg { width: 14px; height: 14px; opacity: .7; }
.breadcrumb .current { color: var(--accent); }

/* =========================================================
   STATS
   ========================================================= */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 26px; }
.stat { text-align: center; padding: 30px 18px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.stat:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.stat__num { font-family: var(--font-head); font-weight: 800; font-size: clamp(2rem,3.5vw,2.8rem); color: var(--primary); line-height: 1; }
.stat__num .suffix { color: var(--accent); }
.stat__label { margin-top: 10px; font-size: .95rem; color: var(--muted); }

/* =========================================================
   ABOUT split
   ========================================================= */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(34px, 5vw, 70px); align-items: center; }
.split__media { position: relative; }
.split__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); width: 100%; object-fit: cover; }
.split__media .badge {
  position: absolute; bottom: 22px; left: -18px;
  background: var(--accent); color: var(--navy); padding: 18px 24px;
  border-radius: var(--radius); box-shadow: var(--shadow); font-family: var(--font-head);
}
.split__media .badge strong { display: block; font-size: 1.9rem; font-weight: 800; line-height: 1; }
.split__media .badge span { font-size: .82rem; font-weight: 600; }
.lead { font-size: 1.12rem; color: var(--ink); font-weight: 500; }
.feature-list { display: grid; gap: 16px; margin: 26px 0; }
.feature-list li { display: flex; gap: 14px; align-items: flex-start; }
.feature-list .ico { flex: none; width: 42px; height: 42px; border-radius: 12px; background: var(--bg-navy-soft); color: var(--primary); display: grid; place-items: center; }
.feature-list .ico svg { width: 22px; height: 22px; }
.feature-list h4 { margin: 2px 0 3px; font-size: 1.05rem; }
.feature-list p { margin: 0; font-size: .94rem; }

/* =========================================================
   CARDS — programs / faculties
   ========================================================= */
.grid { display: grid; gap: 26px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: transparent; }
.card__media { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.card:hover .card__media img { transform: scale(1.07); }
.card__tag { position: absolute; top: 14px; left: 14px; background: var(--accent); color: var(--navy); font-family: var(--font-head); font-weight: 700; font-size: .74rem; padding: 6px 13px; border-radius: 50px; letter-spacing: .04em; }
.card__body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.card__body h3 { margin-bottom: 8px; font-size: 1.2rem; }
.card__body h3 a:hover { color: var(--primary); }
.card__body p { font-size: .94rem; color: var(--muted); }
.card__link { margin-top: auto; padding-top: 14px; display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-head); font-weight: 600; color: var(--primary); font-size: .92rem; }
.card__link svg { width: 16px; height: 16px; transition: transform .25s; }
.card__link:hover svg { transform: translateX(4px); }

/* Faculty/Program category cards with icon */
.feature-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 26px; transition: all .35s var(--ease); position: relative; overflow: hidden;
}
.feature-card::before { content:""; position:absolute; left:0; top:0; height:4px; width:100%; background:linear-gradient(90deg,var(--primary),var(--accent)); transform: scaleX(0); transform-origin:left; transition: transform .4s var(--ease); }
.feature-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.feature-card:hover::before { transform: scaleX(1); }
.feature-card .ico { width: 60px; height: 60px; border-radius: 16px; background: var(--bg-navy-soft); color: var(--primary); display: grid; place-items: center; margin-bottom: 20px; transition: all .35s; }
.feature-card:hover .ico { background: var(--primary); color: #fff; }
.feature-card .ico svg { width: 30px; height: 30px; }
.feature-card h3 { font-size: 1.22rem; margin-bottom: 10px; }
.feature-card p { font-size: .94rem; color: var(--muted); margin-bottom: 16px; }
.feature-card .tags { display: flex; flex-wrap: wrap; gap: 8px; }
.feature-card .tags span { font-size: .78rem; font-weight: 600; font-family: var(--font-head); color: var(--primary); background: var(--bg-navy-soft); padding: 5px 12px; border-radius: 50px; }

/* =========================================================
   FACULTY / PEOPLE cards
   ========================================================= */
.person { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; text-align: center; transition: all .35s var(--ease); }
.person:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.person__photo { aspect-ratio: 1/1.05; overflow: hidden; background: var(--bg-soft); }
.person__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.person:hover .person__photo img { transform: scale(1.06); }
.person__body { padding: 20px 18px 24px; }
.person__body h3 { font-size: 1.08rem; margin-bottom: 4px; }
.person__role { color: var(--primary); font-weight: 600; font-family: var(--font-head); font-size: .9rem; }
.person__dept { color: var(--muted); font-size: .85rem; margin-top: 6px; }
.person__social { display: flex; justify-content: center; gap: 10px; margin-top: 14px; }
.person__social a { width: 34px; height: 34px; border-radius: 50%; background: var(--bg-soft); display: grid; place-items: center; color: var(--primary); transition: all .25s; }
.person__social a:hover { background: var(--primary); color: #fff; }
.person__social svg { width: 15px; height: 15px; }

/* =========================================================
   CTA band
   ========================================================= */
.cta-band { position: relative; color: #fff; border-radius: var(--radius-lg); overflow: hidden; padding: clamp(40px,6vw,68px); background: linear-gradient(120deg, var(--navy), var(--primary)); }
.cta-band::after { content:""; position:absolute; right:-60px; top:-60px; width:280px; height:280px; border-radius:50%; background: rgba(224,167,46,.18); }
.cta-band .inner { position: relative; z-index: 2; display: flex; flex-wrap: wrap; gap: 26px; align-items: center; justify-content: space-between; }
.cta-band h2 { color: #fff; margin-bottom: 8px; }
.cta-band p { color: #d4e0f0; margin: 0; max-width: 520px; }

/* =========================================================
   EVENTS / NEWS list
   ========================================================= */
.event-row { display: flex; gap: 22px; align-items: center; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 18px; transition: all .3s var(--ease); }
.event-row:hover { box-shadow: var(--shadow); transform: translateX(4px); }
.event-row__date { flex: none; width: 92px; text-align: center; background: var(--bg-navy-soft); border-radius: 12px; padding: 14px 8px; font-family: var(--font-head); }
.event-row__date strong { display: block; font-size: 1.6rem; font-weight: 800; color: var(--primary); line-height: 1; }
.event-row__date span { font-size: .8rem; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; }
.event-row__body h3 { font-size: 1.12rem; margin-bottom: 6px; }
.event-row__meta { display: flex; flex-wrap: wrap; gap: 16px; font-size: .85rem; color: var(--muted); }
.event-row__meta span { display: inline-flex; align-items: center; gap: 6px; }
.event-row__meta svg { width: 14px; height: 14px; color: var(--accent-600); }

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.quote-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-sm); position: relative; }
.quote-card .stars { color: var(--accent); display: flex; gap: 3px; margin-bottom: 14px; }
.quote-card .stars svg { width: 18px; height: 18px; }
.quote-card p { color: var(--ink); font-size: 1.02rem; }
.quote-card__person { display: flex; align-items: center; gap: 14px; margin-top: 18px; }
.quote-card__person img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; }
.quote-card__person h4 { margin: 0; font-size: 1rem; }
.quote-card__person span { font-size: .85rem; color: var(--muted); }

/* =========================================================
   CONTACT
   ========================================================= */
.contact-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; text-align: center; transition: all .3s var(--ease); }
.contact-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.contact-card .ico { width: 60px; height: 60px; border-radius: 50%; background: var(--bg-navy-soft); color: var(--primary); display: grid; place-items: center; margin: 0 auto 18px; }
.contact-card .ico svg { width: 28px; height: 28px; }
.contact-card h3 { font-size: 1.12rem; }
.contact-card p, .contact-card a { font-size: .95rem; color: var(--muted); }
.contact-card a:hover { color: var(--primary); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1/-1; }
.field label { font-family: var(--font-head); font-weight: 600; font-size: .9rem; color: var(--ink); }
.field input, .field textarea, .field select {
  padding: 13px 16px; border: 1.5px solid var(--line); border-radius: 12px;
  font-family: var(--font-body); font-size: .96rem; color: var(--ink); background: #fff;
  transition: border-color .25s, box-shadow .25s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 4px rgba(21,70,126,.1); }
.field textarea { resize: vertical; min-height: 130px; }

/* =========================================================
   ACCORDION / steps
   ========================================================= */
.step { display: flex; gap: 20px; }
.step__num { flex: none; width: 46px; height: 46px; border-radius: 50%; background: var(--primary); color: #fff; font-family: var(--font-head); font-weight: 800; display: grid; place-items: center; box-shadow: 0 8px 18px rgba(21,70,126,.3); }
.step__body h3 { font-size: 1.12rem; margin-bottom: 6px; }
.step__body p { font-size: .95rem; color: var(--muted); }
.steps { display: grid; gap: 28px; }

.info-table { width: 100%; border-collapse: collapse; background:#fff; border:1px solid var(--line); border-radius: var(--radius); overflow:hidden; }
.info-table th { background: var(--navy); color: #fff; text-align: left; padding: 16px 20px; font-family: var(--font-head); font-size: .92rem; }
.info-table td { padding: 15px 20px; border-top: 1px solid var(--line); font-size: .95rem; }
.info-table tr:nth-child(even) td { background: var(--bg-soft); }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { background: var(--navy); color: #b9c7da; padding-top: clamp(56px,8vw,90px); }
.footer-cta { background: var(--accent); color: var(--navy); border-radius: var(--radius-lg); padding: clamp(30px,5vw,52px); display: flex; flex-wrap: wrap; gap: 24px; align-items: center; justify-content: space-between; transform: translateY(-40px); margin-bottom: 24px; box-shadow: var(--shadow-lg); }
.footer-cta h2 { color: var(--navy); margin: 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 50px; }
.site-footer h4 { color: #fff; font-size: 1.05rem; margin-bottom: 22px; }
.site-footer a:hover { color: var(--accent); }
.footer-grid ul li { margin-bottom: 11px; font-size: .94rem; }
.footer-logo { display: inline-block; margin-bottom: 18px; }
.footer-logo img { height: 78px; width: auto; }
.navbar__logo img { height: 56px; }
.mobile-nav__head img { height: 52px; }
.footer-about p { font-size: .94rem; }
.footer-contact li { display: flex; gap: 11px; align-items: flex-start; margin-bottom: 14px; font-size: .94rem; }
.footer-contact svg { width: 18px; height: 18px; color: var(--accent); flex: none; margin-top: 2px; }
.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.footer-social a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.08); display: grid; place-items: center; color: #fff; transition: all .25s; }
.footer-social a:hover { background: var(--accent); color: var(--navy); transform: translateY(-3px); }
.footer-social svg { width: 17px; height: 17px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 22px 0; display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; font-size: .88rem; }

/* =========================================================
   PROSE / ARTICLE CONTENT (reskinned pages)
   ========================================================= */
.prose { max-width: 880px; margin: 0 auto; }
.prose.wide { max-width: 100%; }
.prose > *:first-child { margin-top: 0; }
.prose h2 { font-size: clamp(1.5rem,2.6vw,2rem); margin: 1.6em 0 .5em; }
.prose h3 { font-size: 1.3rem; margin: 1.4em 0 .4em; }
.prose h4 { font-size: 1.1rem; margin: 1.2em 0 .3em; }
.prose p { color: var(--body); margin: 0 0 1.1rem; line-height: 1.75; }
.prose img { border-radius: var(--radius); box-shadow: var(--shadow-sm); margin: 1.5em 0; width: 100%; }
.prose ul, .prose ol { margin: 0 0 1.2rem; padding-left: 0; display: grid; gap: 12px; }
.prose ul li { position: relative; padding-left: 34px; color: var(--body); }
.prose ul li::before { content: ""; position: absolute; left: 0; top: 4px; width: 22px; height: 22px; border-radius: 50%; background: var(--bg-navy-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2315467e' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center/14px no-repeat; }
.prose ol { counter-reset: li; list-style: none; }
.prose ol li { counter-increment: li; position: relative; padding-left: 40px; }
.prose ol li::before { content: counter(li); position: absolute; left: 0; top: 0; width: 28px; height: 28px; border-radius: 8px; background: var(--primary); color: #fff; font-family: var(--font-head); font-weight: 700; font-size: .85rem; display: grid; place-items: center; }
.prose blockquote { margin: 1.5em 0; padding: 18px 24px; border-left: 4px solid var(--accent); background: var(--bg-soft); border-radius: 0 12px 12px 0; font-style: italic; color: var(--ink); }
.prose a { color: var(--primary); font-weight: 600; }
.prose a:hover { text-decoration: underline; }
.prose table { width: 100%; border-collapse: collapse; margin: 1.5em 0; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.prose th { background: var(--navy); color: #fff; text-align: left; padding: 13px 16px; font-family: var(--font-head); font-size: .92rem; }
.prose td { padding: 12px 16px; border-top: 1px solid var(--line); font-size: .95rem; }
.prose tr:nth-child(even) td { background: var(--bg-soft); }
.article-media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); margin-bottom: 36px; }
.article-media img { width: 100%; display: block; }

/* ---------- Blog article (clean single column) ---------- */
.article-head { max-width: 820px; margin: 0 auto; }
.article-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 18px; margin-bottom: 30px; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.article-meta > span { display: inline-flex; align-items: center; gap: 7px; color: var(--muted); font-size: .9rem; font-weight: 500; }
.article-meta svg { width: 16px; height: 16px; }
.article-cat { background: var(--accent); color: var(--navy) !important; font-family: var(--font-head); font-weight: 700; font-size: .74rem; letter-spacing: .05em; padding: 6px 13px; border-radius: 50px; text-transform: uppercase; }
.article-layout { max-width: 820px; margin: 0 auto; }
.article-layout .prose { max-width: 100%; margin: 0; }
.article-layout .prose > p:first-of-type::first-letter { float: left; font-family: var(--font-head); font-weight: 800; font-size: 3.4em; line-height: .82; padding: 4px 12px 0 0; color: var(--primary); }
.article-layout .prose > img[src*="assets/images/author"] { display: none; }
.article-side { display: none; }
.article-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 1.6em 0; }
.article-gallery img { margin: 0; height: 100%; object-fit: cover; }
.article-author { display: flex; align-items: center; gap: 12px; }
.article-author img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; flex: none; }
.article-author .nm { font-family: var(--font-head); font-weight: 700; color: var(--ink); font-size: .95rem; line-height: 1.2; }
.article-author .dt { display: inline-flex; align-items: center; gap: 6px; font-size: .82rem; color: var(--muted); }
.article-author .dt svg { width: 14px; height: 14px; }
.article-author .role { color: var(--accent-600); font-weight: 700; font-size: .78rem; text-transform: uppercase; letter-spacing: .05em; }
.tag-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.tag-row a { background: var(--bg-navy-soft); color: var(--primary); font-weight: 600; font-size: .82rem; padding: 7px 14px; border-radius: 50px; }
.tag-row a:hover { background: var(--primary); color: #fff; }
.author-box { display: flex; gap: 18px; align-items: center; background: var(--bg-soft); border: 1px solid var(--line); border-left: 4px solid var(--accent); border-radius: 0 14px 14px 0; padding: 22px; margin: 36px 0 0; }
.author-box img { width: 66px; height: 66px; border-radius: 50%; object-fit: cover; flex: none; }
.author-box h4 { margin: 0 0 2px; font-size: 1.05rem; }
.author-box .role { color: var(--accent-600); font-weight: 700; font-size: .78rem; text-transform: uppercase; letter-spacing: .05em; }
.author-box p { margin: 6px 0 0; font-size: .92rem; color: var(--body); }
@media (max-width: 600px) { .article-gallery { grid-template-columns: 1fr; } .article-author { flex-direction: column; align-items: flex-start; } }

/* =========================================================
   RESPONSIVE  —  tablet & mobile breakpoints
   ========================================================= */

/* ---------- ≤1100px : large tablet / small laptop ---------- */
@media (max-width: 1100px) {
  .grid--4 { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1.3fr; }
  .footer-grid .footer-about { grid-column: 1 / -1; }
}

/* ---------- ≤980px : collapse primary nav to hamburger ---------- */
@media (max-width: 980px) {
  /* hide desktop menu, show toggle + mobile drawer */
  .navbar__menu { display: none; }
  .nav-toggle { display: inline-flex; }

  /* grids drop to two columns */
  .stats { grid-template-columns: repeat(2, 1fr); }
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }

  /* about split stacks; badge no longer hangs off the edge */
  .split { grid-template-columns: 1fr; }
  .split__media .badge { left: 16px; bottom: 16px; }

  /* footer to two columns */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-grid .footer-about { grid-column: 1 / -1; }

  /* CTA bands stack their text + button */
  .cta-band .inner { flex-direction: column; align-items: flex-start; }
  .footer-cta { flex-direction: column; align-items: flex-start; text-align: left; }
}

/* ---------- ≤768px : portrait tablet / large phone ---------- */
@media (max-width: 768px) {
  body { font-size: 15px; }

  /* keep only essential top-bar items, let them wrap neatly */
  .topbar .container { flex-wrap: wrap; height: auto; padding-top: 8px; padding-bottom: 8px; gap: 8px 18px; justify-content: center; }
  .topbar__left { flex-wrap: wrap; justify-content: center; gap: 8px 16px; }

  .navbar { height: 64px; }
  .navbar__logo img { height: 46px; }

  /* hide the "Apply Now" label text room is tight — keep button compact */
  .navbar__actions .btn--primary { padding: 11px 16px; font-size: .9rem; }

  /* hero a touch shorter, text sized down via existing clamp */
  .hero__slide { min-height: clamp(460px, 70vh, 600px); }
  .hero__inner { padding: 40px 0; }
  .hero__inner p { font-size: 1.05rem; }
  .hero__actions .btn { flex: 1 1 auto; justify-content: center; }

  /* event rows stack date above body */
  .event-row { flex-direction: column; align-items: flex-start; gap: 14px; }
  .event-row__date { display: inline-flex; gap: 8px; width: auto; padding: 8px 14px; }
  .event-row__date strong { font-size: 1.2rem; }

  /* contact form to single column */
  .form-grid { grid-template-columns: 1fr; }

  /* steps stay readable */
  .section-head { margin-bottom: 36px; }
}

/* ---------- ≤560px : phones — single column everywhere ---------- */
@media (max-width: 560px) {
  .container { padding: 0 16px; }

  .stats,
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-grid .footer-about { grid-column: auto; }

  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }

  .btn { padding: 13px 22px; }

  /* prevent the gold badge from causing horizontal scroll */
  .split__media .badge { position: static; margin-top: -34px; margin-left: 16px; display: inline-block; }

  .cta-band { padding: 32px 22px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
