/* ============================================================
   SHW – Studienzentrum Hohe Warte | Main Stylesheet
   SEO-Optimized Academic Website
   ============================================================ */

/* ─── Google Fonts ──────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* ─── CSS Custom Properties ─────────────────────────────────── */
:root {
  --navy:        #1A3A5C;
  --navy-dark:   #0D1F35;
  --navy-light:  #243F63;
  --gold:        #B7945F;
  --gold-light:  #B7945F;
  --blue:        #2E6DA4;
  --blue-light:  #3B82C4;
  --white:       #FFFFFF;
  --off-white:   #F7F9FC;
  --gray-100:    #F1F4F8;
  --gray-200:    #E5EAF0;
  --gray-400:    #9CA8B5;
  --gray-600:    #5A6472;
  --text:        #1C2B3A;
  --text-light:  #4A5568;

  --font-head:   'Playfair Display', Georgia, serif;
  --font-body:   'Inter', system-ui, sans-serif;

  --radius:      8px;
  --radius-lg:   16px;
  --shadow-sm:   0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow:      0 4px 16px rgba(26,58,92,.10);
  --shadow-lg:   0 8px 32px rgba(26,58,92,.16);

  --transition:  all .25s ease;
  --max-w:       1200px;
  --header-h:    80px;
}

/* ─── Reset & Base ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--navy); }
ul { list-style: none; }

/* ─── Typography ────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.25;
  color: var(--navy);
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; font-family: var(--font-body); font-weight: 600; }

p { margin-bottom: 1rem; color: var(--text-light); }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-light);
}

/* ─── Layout Utilities ──────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}
.section--sm { padding: 3rem 0; }
.section--lg { padding: 7rem 0; }
.section--dark {
  background: var(--navy-dark);
  color: var(--white);
}
.section--dark h2,
.section--dark h3 { color: var(--white); }
.section--dark p { color: rgba(255,255,255,.75); }

.section--navy {
  background: var(--navy);
}
.section--navy h2,
.section--navy h3 { color: var(--white); }
.section--navy p { color: rgba(255,255,255,.8); }

.section--gray { background: var(--off-white); }
.section--gold-accent { border-top: 4px solid var(--gold); }

.text-center { text-align: center; }
.text-white { color: var(--white) !important; }
.text-gold { color: var(--gold) !important; }
.text-navy { color: var(--navy) !important; }

.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}
.section-label--light { color: var(--gold-light); }

.section-title {
  margin-bottom: 1rem;
}
.section-intro {
  font-size: 1.1rem;
  max-width: 640px;
  color: var(--text-light);
}
.section-intro.centered {
  margin: 0 auto 2.5rem;
  text-align: center;
}

/* ─── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  color: var(--navy-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(184,146,10,.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,.1);
  color: var(--white);
  border-color: var(--white);
}

.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1.05rem;
}
.btn-sm {
  padding: .5rem 1.25rem;
  font-size: .85rem;
}

/* ─── Header & Navigation ────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(13, 31, 53, .97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: var(--transition);
}
.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Logo */
.site-logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1;
}
.site-logo__main {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .02em;
}
.site-logo__sub {
  font-size: .6rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-top: 1px;
}

/* Main Nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: .25rem;
}
.main-nav__item {
  position: relative;
}
.main-nav__link {
  display: block;
  padding: .5rem .9rem;
  color: rgba(255,255,255,.85);
  font-size: .9rem;
  font-weight: 500;
  border-radius: var(--radius);
  transition: var(--transition);
  text-decoration: none;
}
.main-nav__link:hover,
.main-nav__link.active {
  color: var(--white);
  background: rgba(255,255,255,.08);
}
.main-nav__link.has-dropdown::after {
  content: ' ▾';
  font-size: .7rem;
  opacity: .7;
}

/* Dropdown */
.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + .5rem);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 280px;
  padding: 1rem;
  border: 1px solid var(--gray-200);
}
.main-nav__item:hover .dropdown { display: block; }

.dropdown__section-title {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray-400);
  padding: .25rem .75rem;
  margin-bottom: .25rem;
}
.dropdown__link {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem .75rem;
  color: var(--text);
  font-size: .9rem;
  border-radius: 6px;
  transition: var(--transition);
  text-decoration: none;
}
.dropdown__link:hover {
  background: var(--off-white);
  color: var(--navy);
}
.dropdown__badge {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .05em;
  padding: .1rem .45rem;
  border-radius: 20px;
  margin-left: auto;
}
.dropdown__badge--grad { background: #E8F0FB; color: var(--blue); }
.dropdown__badge--doc  { background: #FBF3E8; color: var(--gold); }
.dropdown__sep {
  height: 1px;
  background: var(--gray-200);
  margin: .5rem 0;
}

/* CTA button in header */
.header-cta {
  margin-left: 1rem;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: .5rem;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--navy-dark);
  overflow-y: auto;
  padding: 2rem 1.5rem;
  z-index: 999;
}
.mobile-nav.open { display: block; }
.mobile-nav__link {
  display: block;
  padding: .85rem 0;
  color: rgba(255,255,255,.85);
  font-size: 1.05rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,.08);
  text-decoration: none;
}
.mobile-nav__link:hover { color: var(--gold); }
.mobile-nav__section-title {
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 1.5rem 0 .5rem;
}
.mobile-nav__cta {
  margin-top: 2rem;
  width: 100%;
  text-align: center;
  padding: 1rem;
}

/* ─── Breadcrumbs ────────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  color: var(--gray-400);
  padding: 1rem 0;
}
.breadcrumb a {
  color: var(--gray-400);
  text-decoration: none;
}
.breadcrumb a:hover { color: var(--navy); }
.breadcrumb__sep { opacity: .5; }
.breadcrumb__current { color: var(--text-light); }

/* ─── Hero ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(13,31,53,.85) 0%, rgba(26,58,92,.78) 55%, rgba(36,63,99,.72) 100%),
    url('../images/vienna-hero.jpg') center 60% / cover no-repeat;
  padding-top: var(--header-h);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 75% 50%, rgba(184,146,10,.12) 0%, transparent 55%),
    radial-gradient(circle at 25% 80%, rgba(46,109,164,.15) 0%, transparent 50%);
}
.hero__pattern {
  position: absolute;
  inset: 0;
  opacity: .04;
  background-image:
    linear-gradient(var(--white) 1px, transparent 1px),
    linear-gradient(90deg, var(--white) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(183,148,95,.18);
  border: 1px solid rgba(183,148,95,.35);
  color: var(--gold-light);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .4rem 1rem;
  border-radius: 20px;
  margin-bottom: 1.5rem;
}
.hero__title {
  color: var(--white);
  margin-bottom: 1.25rem;
}
.hero__title span { color: var(--gold-light); }
.hero__subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,.75);
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}
.hero__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  margin-top: 2rem;
  font-size: .85rem;
  color: rgba(255,255,255,.55);
}
.hero__trust-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

/* Sub-page hero */
.page-hero {
  padding: calc(var(--header-h) + 4rem) 0 4rem;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 50%, rgba(184,146,10,.08) 0%, transparent 60%);
}
.page-hero__content { position: relative; z-index: 1; }
.page-hero__label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: .75rem;
}
.page-hero__title { color: var(--white); margin-bottom: 1rem; }
.page-hero__subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,.75);
  max-width: 600px;
  line-height: 1.8;
}

/* ─── Stats Bar ──────────────────────────────────────────────── */
.stats-bar {
  background: var(--gold);
  padding: 1.5rem 0;
}
.stats-bar__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat__value {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy-dark);
  line-height: 1;
}
.stat__label {
  font-size: .8rem;
  font-weight: 600;
  color: var(--navy);
  opacity: .8;
  margin-top: .25rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* ─── Program Cards ──────────────────────────────────────────── */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.program-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: block;
}
.program-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: var(--transition);
}
.program-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: transparent;
}
.program-card:hover::before { transform: scaleX(1); }

.program-card__type {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: .75rem;
}
.program-card__type--grad { color: var(--blue); }
.program-card__type--doc  { color: var(--gold); }

.program-card__title {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .5rem;
  line-height: 1.3;
}
.program-card__short {
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 1rem;
}
.program-card__desc {
  font-size: .9rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.program-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1.25rem;
}
.tag {
  font-size: .75rem;
  font-weight: 600;
  padding: .25rem .65rem;
  border-radius: 20px;
  background: var(--gray-100);
  color: var(--text-light);
}
.program-card__link {
  font-size: .875rem;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: .35rem;
}
.program-card__link::after { content: '→'; }

/* ─── Features Grid ──────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.feature-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  text-align: center;
}
.feature-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(184,146,10,.18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.5rem;
}
.feature-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .5rem;
  font-family: var(--font-head);
}
.feature-card__desc { font-size: .9rem; color: rgba(255,255,255,.7); }

/* ─── PBA / Admission Section ────────────────────────────────── */
.pba-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.pba-steps {
  counter-reset: step;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.pba-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.pba-step__num {
  counter-increment: step;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .9rem;
}
.pba-step__content h4 { color: var(--navy); margin-bottom: .25rem; }
.pba-step__content p { font-size: .9rem; margin: 0; }

.pba-image-block {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  color: var(--white);
}
.pba-image-block h3 { color: var(--white); margin-bottom: 1rem; }
.pba-check-list {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-top: 1.25rem;
}
.pba-check-list li {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .95rem;
  color: rgba(255,255,255,.85);
}
.pba-check-list li::before {
  content: '✓';
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 700;
}

/* ─── Accreditation Bar ──────────────────────────────────────── */
.accreditation-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem 3rem;
  padding: 2rem 0;
}
.accreditation-bar__item {
  text-align: center;
}
.accreditation-bar__name {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: .2rem;
}
.accreditation-bar__desc {
  font-size: .8rem;
  color: var(--gray-400);
}

/* ─── CTA Banner ─────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(184,146,10,.1) 0%, transparent 60%);
}
.cta-banner__title {
  font-family: var(--font-head);
  font-size: 2rem;
  color: var(--white);
  margin-bottom: .75rem;
  position: relative;
}
.cta-banner__subtitle {
  color: rgba(255,255,255,.75);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  position: relative;
}
.cta-banner__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  position: relative;
}

/* ─── Program Detail Page ────────────────────────────────────── */
.program-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  align-items: start;
}
.program-sidebar {
  position: sticky;
  top: calc(var(--header-h) + 1.5rem);
}
.sidebar-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.sidebar-card h4 {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 1rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid var(--gray-200);
}
.sidebar-detail {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: .6rem 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: .9rem;
}
.sidebar-detail:last-child { border-bottom: none; }
.sidebar-detail__label { color: var(--text-light); }
.sidebar-detail__value { font-weight: 600; color: var(--text); text-align: right; }
.sidebar-cta {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  text-align: center;
}
.sidebar-cta h4 { color: var(--white); margin-bottom: .5rem; border: none; }
.sidebar-cta p { color: rgba(255,255,255,.7); font-size: .9rem; margin-bottom: 1.25rem; }
.sidebar-cta .btn { width: 100%; justify-content: center; }

.curriculum-list {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.curriculum-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: .875rem 1rem;
  background: var(--off-white);
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
}
.curriculum-item__icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: .05rem;
}
.curriculum-item__text h5 {
  font-size: .95rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: .15rem;
}
.curriculum-item__text p {
  font-size: .85rem;
  color: var(--text-light);
  margin: 0;
}

/* Outcomes */
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.outcome-card {
  padding: 1.25rem;
  background: var(--off-white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
}
.outcome-card__title {
  font-size: .9rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .35rem;
}
.outcome-card__desc { font-size: .85rem; margin: 0; }

/* ─── FAQ ────────────────────────────────────────────────────── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.25rem 1.5rem;
  background: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  font-family: var(--font-body);
  transition: var(--transition);
}
.faq-question:hover { background: var(--off-white); }
.faq-question .faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--gray-400);
  transition: var(--transition);
}
.faq-item.open .faq-question { background: var(--off-white); }
.faq-item.open .faq-icon {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
  transform: rotate(45deg);
}
.faq-answer {
  display: none;
  padding: 0 1.5rem 1.25rem;
  background: var(--off-white);
  font-size: .95rem;
  color: var(--text-light);
  line-height: 1.8;
}
.faq-item.open .faq-answer { display: block; }

/* ─── Contact ────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.form-group label {
  font-size: .875rem;
  font-weight: 600;
  color: var(--text);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: .75rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(26,58,92,.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}
.contact-card__title {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  margin-bottom: .875rem;
  font-size: .95rem;
}
.contact-detail:last-child { margin-bottom: 0; }
.contact-detail__icon { font-size: 1.1rem; flex-shrink: 0; margin-top: .1rem; }
.contact-detail__text strong { display: block; font-weight: 600; color: var(--text); }
.contact-detail__text span { color: var(--text-light); font-size: .9rem; }

/* ─── About Page ─────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-block {
  display: flex;
  flex-direction: column;
  gap: .875rem;
}
.about-visual {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  color: var(--white);
}
.about-visual h3 { color: var(--white); margin-bottom: 1rem; }

.value-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.value-card {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--off-white);
  border: 1px solid var(--gray-200);
}
.value-card__icon { font-size: 1.5rem; margin-bottom: .75rem; }
.value-card__title { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: .35rem; }
.value-card__desc { font-size: .875rem; margin: 0; }

/* ─── Footer ─────────────────────────────────────────────────── */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,.7);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand__logo {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .25rem;
}
.footer-brand__tagline {
  font-size: .75rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer-brand__desc {
  font-size: .875rem;
  line-height: 1.7;
  color: rgba(255,255,255,.55);
  margin-bottom: 1.25rem;
}
.footer-contact {
  font-size: .875rem;
  color: rgba(255,255,255,.55);
}
.footer-contact a {
  color: rgba(255,255,255,.7);
  display: block;
  margin-bottom: .35rem;
}
.footer-contact a:hover { color: var(--gold); }

.footer-col__title {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 1.25rem;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.footer-links a {
  font-size: .9rem;
  color: rgba(255,255,255,.6);
  text-decoration: none;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .8rem;
  color: rgba(255,255,255,.35);
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom a {
  color: rgba(255,255,255,.35);
  text-decoration: none;
  transition: var(--transition);
}
.footer-bottom a:hover { color: rgba(255,255,255,.7); }
.footer-bottom__links {
  display: flex;
  gap: 1.5rem;
}

/* ─── Divider ────────────────────────────────────────────────── */
.divider {
  height: 1px;
  background: var(--gray-200);
  margin: 2rem 0;
}

/* ─── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .programs-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .program-layout { grid-template-columns: 1fr; }
  .program-sidebar { position: static; }
  .pba-section { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
  :root { --header-h: 68px; }
  .main-nav { display: none; }
  .header-cta { display: none; }
  .hamburger { display: flex; }

  .programs-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .stats-bar__inner { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .value-cards { grid-template-columns: 1fr; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-banner { padding: 2.5rem 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero__actions { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .stats-bar__inner { grid-template-columns: repeat(2, 1fr); }
  h1 { font-size: 1.85rem; }
  h2 { font-size: 1.5rem; }
}

/* ─── Utilities ──────────────────────────────────────────────── */
.mt-1  { margin-top: .5rem; }
.mt-2  { margin-top: 1rem; }
.mt-3  { margin-top: 1.5rem; }
.mt-4  { margin-top: 2rem; }
.mb-1  { margin-bottom: .5rem; }
.mb-2  { margin-bottom: 1rem; }
.mb-3  { margin-bottom: 1.5rem; }
.mb-4  { margin-bottom: 2rem; }
.mb-5  { margin-bottom: 3rem; }

.hidden { display: none !important; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* Highlight inline */
mark.gold {
  background: none;
  color: var(--gold);
}

/* ─── Testimonials ───────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}

.testimonial-card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem 1.75rem;
  box-shadow: 0 2px 16px rgba(0,0,0,.07);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.testimonial-card__avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.25rem;
}

.testimonial-card__name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: .25rem;
}

.testimonial-card__role {
  font-size: .85rem;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.testimonial-card__quote {
  font-style: italic;
  color: var(--gray-600);
  font-size: .95rem;
  line-height: 1.65;
}

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}
