:root {
  --navy: #273272;
  --navy-dark: #151d55;
  --purple: #48077a;
  --purple-soft: #723691;
  --rose: #fe0467;
  --gold: #e3a72f;
  --gold-dark: #b9861d;
  --ink: #1d2134;
  --text: #4d4e62;
  --muted: #74748a;
  --line: #e8e2ee;
  --soft: #f7f4fb;
  --white: #ffffff;
  --shadow: 0 18px 42px rgba(39, 50, 114, 0.12);
  --hero-image: url("../images/wra-hero-executive-leader.png");
  --architecture-image: url("../images/academy-atrium-background.jpg");
  --classroom-image: url("../images/executive-learning-workshop.jpg");
  --cta-image: url("../images/leadership-journey-cta.jpg");
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: "Roboto", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0 0 1rem;
}

ul {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--purple);
  font-family: "Mulish", "Muli", "Roboto", system-ui, sans-serif;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.7rem, 6.4vw, 5.25rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
  font-weight: 800;
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  font-weight: 800;
}

.skip-link {
  position: absolute;
  top: -48px;
  left: 16px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--white);
  background: var(--navy);
  border-radius: 4px;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 12px;
}

.site-topbar {
  color: var(--white);
  background: var(--navy);
  font-size: 0.86rem;
  font-weight: 700;
}

.topbar-inner,
.nav-inner,
.container {
  width: min(1140px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 38px;
  padding: 6px 0;
}

.topbar-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.topbar-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.topbar-link:hover,
.topbar-link:focus {
  color: var(--gold);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(21, 29, 85, 0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;
  min-width: 210px;
}

.brand img {
  flex: 0 0 auto;
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.brand-text {
  display: grid;
  gap: 2px;
}

.brand-name {
  color: var(--purple);
  font-family: "Mulish", "Muli", "Roboto", system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.15;
}

.brand-motto {
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 42px;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  background: transparent;
  border: 1px solid rgba(227, 167, 47, 0.55);
  border-radius: 6px;
  cursor: pointer;
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  content: "";
}

.nav-toggle-lines {
  position: relative;
}

.nav-toggle-lines::before,
.nav-toggle-lines::after {
  position: absolute;
  left: 0;
}

.nav-toggle-lines::before {
  top: -7px;
}

.nav-toggle-lines::after {
  top: 7px;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2px;
}

.primary-nav a,
.nav-dropdown-toggle {
  appearance: none;
  -webkit-appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin: 0;
  padding: 8px 10px;
  color: var(--navy);
  background: transparent;
  border: 0 !important;
  border-radius: 6px;
  box-shadow: none;
  font-family: "Roboto", system-ui, sans-serif;
  font-size: 0.87rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
  cursor: pointer;
}

.primary-nav a:hover,
.primary-nav a:focus,
.primary-nav a[aria-current="page"],
.nav-dropdown-toggle:hover,
.nav-dropdown-toggle:focus,
.nav-dropdown.is-current > .nav-dropdown-toggle {
  color: var(--rose);
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown-toggle {
  gap: 7px;
  white-space: nowrap;
}

.nav-dropdown-toggle::after {
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  content: "";
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  z-index: 70;
  display: grid;
  min-width: 286px;
  padding: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 4px solid var(--gold);
  border-radius: 8px;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  visibility: hidden;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.primary-nav .nav-dropdown-menu a {
  justify-content: flex-start;
  min-height: 44px;
  padding: 10px 12px;
  color: var(--navy);
  text-transform: none;
  border-radius: 6px;
}

.primary-nav .nav-dropdown-menu a:hover,
.primary-nav .nav-dropdown-menu a:focus,
.primary-nav .nav-dropdown-menu a[aria-current="page"] {
  color: var(--purple);
  background: var(--soft);
}

.primary-nav .nav-cta {
  flex: 0 0 auto;
  margin-left: 6px;
  padding-right: 18px;
  padding-left: 18px;
  color: var(--white) !important;
  background: var(--navy);
  border-radius: 999px;
}

.primary-nav .nav-cta:hover,
.primary-nav .nav-cta:focus {
  color: var(--white) !important;
  background: var(--purple);
}

.hero {
  position: relative;
  min-height: clamp(620px, 72vh, 780px);
  overflow: hidden;
  background-image: var(--hero-image);
  background-position: center right;
  background-size: cover;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(255, 255, 255, 0.26);
  content: "";
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(39, 50, 114, 0.16);
  content: "";
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: inherit;
  align-items: center;
  padding: clamp(70px, 9vw, 120px) 0;
}

.hero-content {
  width: min(720px, 100%);
}

.hero-mark {
  width: clamp(110px, 15vw, 190px);
  margin-bottom: 22px;
}

.text-highlight {
  display: inline;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 10px 0 0 rgba(255, 255, 255, 0.76), -10px 0 0 rgba(255, 255, 255, 0.76);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.hero h1 {
  color: var(--purple);
  margin-bottom: 22px;
}

.hero-lede {
  max-width: 680px;
  color: var(--purple);
  font-family: "Mulish", "Muli", "Roboto", system-ui, sans-serif;
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  font-weight: 500;
  line-height: 1.45;
}

.home-hero {
  min-height: clamp(650px, 78vh, 790px);
}

.home-hero .hero-background {
  object-position: center right;
}

.home-hero::before {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.74) 0%, rgba(255, 255, 255, 0.48) 42%, rgba(255, 255, 255, 0.12) 100%);
}

.home-hero::after {
  background: rgba(39, 50, 114, 0.08);
}

.hero-feature {
  width: min(660px, 100%);
}

.home-hero .hero-mark {
  width: clamp(110px, 12vw, 150px);
  margin-bottom: 18px;
}

.home-hero h1 {
  margin-bottom: 18px;
  font-size: clamp(3.15rem, 5.4vw, 4.35rem);
  line-height: 1.04;
}

.home-hero .hero-lede {
  max-width: 620px;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
}

.home-hero .hero-actions {
  margin-top: 24px;
}

.hero-kicker {
  margin-bottom: 12px;
  color: var(--purple);
  font-family: "Mulish", "Muli", "Roboto", system-ui, sans-serif;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  font-weight: 900;
}

.hero-word {
  display: block;
  width: fit-content;
  margin-bottom: 8px;
}

.hero-actions,
.section-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 24px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-family: "Mulish", "Muli", "Roboto", system-ui, sans-serif;
  font-size: 0.95rem;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.button:hover,
.button:focus {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: var(--gold);
  box-shadow: 0 12px 22px rgba(227, 167, 47, 0.28);
}

.button-primary:hover,
.button-primary:focus {
  color: var(--white);
  background: var(--gold-dark);
}

.button-secondary {
  color: var(--navy);
  background: var(--white);
  border-color: rgba(39, 50, 114, 0.16);
}

.button-secondary:hover,
.button-secondary:focus {
  color: var(--purple);
  border-color: rgba(72, 7, 122, 0.25);
}

.button-outline {
  color: var(--purple);
  background: transparent;
  border-color: rgba(72, 7, 122, 0.25);
}

.button-outline:hover,
.button-outline:focus {
  color: var(--white);
  background: var(--purple);
  border-color: var(--purple);
}

.section {
  padding: clamp(70px, 8vw, 110px) 0;
}

.section-compact {
  padding: clamp(54px, 6vw, 82px) 0;
}

.section-alt {
  background: var(--soft);
}

.section-band {
  position: relative;
  overflow: hidden;
  background-image: var(--architecture-image);
  background-position: center;
  background-size: cover;
}

.section-band::before {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.86);
  content: "";
}

.section-band > .container {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--gold-dark);
  font-family: "Mulish", "Muli", "Roboto", system-ui, sans-serif;
  font-size: 0.83rem;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 3px;
  background: var(--gold);
  content: "";
}

.section-header {
  width: min(780px, 100%);
  margin-bottom: 34px;
}

.section-header.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-header.center .eyebrow {
  justify-content: center;
}

.section-header.center .eyebrow::before {
  display: none;
}

.section-lede {
  margin-top: 16px;
  color: var(--text);
  font-size: 1.08rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(300px, 0.78fr);
  gap: clamp(34px, 5vw, 70px);
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.02fr);
}

.split-media {
  position: relative;
}

.split-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.about-showcase {
  padding-top: clamp(54px, 7vw, 90px);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
}

.about-media {
  position: relative;
  overflow: hidden;
  min-height: clamp(430px, 58vw, 660px);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.about-media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.about-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(21, 29, 85, 0.04) 0%, rgba(21, 29, 85, 0.56) 100%);
  content: "";
}

.about-media-caption {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  z-index: 1;
  display: grid;
  gap: 12px;
  text-align: center;
}

.about-media-caption h2,
.about-media-caption p {
  margin: 0;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.78);
}

.about-media-caption h2 {
  color: var(--gold-dark);
  font-size: clamp(1.35rem, 2.4vw, 2.1rem);
}

.about-media-caption p {
  color: var(--purple);
  font-weight: 800;
}

.about-copy {
  text-align: center;
}

.about-copy .eyebrow {
  justify-content: center;
  color: var(--gold-dark);
  font-size: clamp(1.2rem, 2.4vw, 1.9rem);
  text-transform: none;
}

.about-copy .eyebrow::before {
  display: none;
}

.about-copy h2,
.about-copy h3 {
  color: var(--gold-dark);
}

.about-copy h2 {
  margin-bottom: 28px;
  font-size: clamp(1.75rem, 3vw, 2.65rem);
}

.about-copy h3 {
  margin: 24px 0 10px;
  font-size: clamp(1.35rem, 2.5vw, 2.25rem);
}

.about-copy h3 span {
  display: block;
  margin-top: 8px;
}

.about-copy p {
  color: var(--purple);
  font-size: 1.05rem;
}

.about-us-hero {
  background-image: var(--architecture-image);
}

.founder-section {
  background: linear-gradient(180deg, var(--white) 0%, var(--soft) 100%);
}

.founder-profile {
  display: grid;
  grid-template-columns: minmax(300px, 0.44fr) minmax(0, 0.56fr);
  gap: clamp(30px, 5vw, 64px);
  align-items: start;
}

.founder-image-card {
  position: sticky;
  top: 142px;
  margin: 0;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 5px solid var(--gold);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.founder-image-card img {
  width: 100%;
  max-height: 760px;
  object-fit: cover;
  object-position: center top;
  border-radius: 6px;
}

.founder-bio-card {
  padding: clamp(26px, 4vw, 42px);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.founder-bio-card h2 {
  font-size: clamp(2rem, 3.6vw, 3.1rem);
}

.founder-bio-card .section-lede {
  color: var(--navy);
  font-family: "Mulish", "Muli", "Roboto", system-ui, sans-serif;
  font-weight: 900;
}

.founder-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.founder-highlight {
  padding: 18px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-left: 5px solid var(--gold);
  border-radius: 8px;
}

.founder-highlight strong,
.founder-highlight span {
  display: block;
}

.founder-highlight strong {
  color: var(--purple);
  font-family: "Mulish", "Muli", "Roboto", system-ui, sans-serif;
  font-size: 1.05rem;
  font-weight: 900;
}

.founder-highlight span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.founder-story-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 4vw, 34px);
  align-items: stretch;
}

.story-panel {
  padding: clamp(26px, 4vw, 40px);
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 5px solid var(--gold);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(39, 50, 114, 0.08);
}

.story-panel h2 {
  margin-bottom: 18px;
  color: var(--navy);
  font-size: clamp(1.65rem, 3vw, 2.35rem);
}

.story-panel-dark {
  color: var(--white);
  background: var(--navy);
  border-color: rgba(255, 255, 255, 0.12);
}

.story-panel-dark h2,
.story-panel-dark p {
  color: var(--white);
}

.source-note {
  margin-top: 18px;
  color: var(--gold) !important;
  font-size: 0.92rem;
  font-weight: 800;
}

.faculty-voices {
  background: linear-gradient(180deg, var(--white) 0%, var(--soft) 100%);
}

.faculty-list {
  display: grid;
  gap: 26px;
}

.faculty-card {
  display: grid;
  grid-template-columns: minmax(210px, 0.28fr) minmax(0, 0.72fr);
  gap: clamp(22px, 4vw, 40px);
  align-items: start;
  padding: clamp(22px, 4vw, 34px);
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 5px solid var(--gold);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(39, 50, 114, 0.08);
}

.faculty-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(39, 50, 114, 0.12);
}

.faculty-copy {
  display: grid;
  gap: 10px;
}

.faculty-role {
  color: var(--gold-dark);
  font-family: "Mulish", "Muli", "Roboto", system-ui, sans-serif;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.faculty-copy h3 {
  color: var(--navy);
  font-size: clamp(1.55rem, 2.8vw, 2.35rem);
}

.faculty-copy blockquote {
  margin: 8px 0 0;
  padding-left: 18px;
  color: var(--text);
  border-left: 4px solid rgba(227, 167, 47, 0.5);
}

.faculty-copy blockquote p {
  margin-bottom: 0.85rem;
}

.faculty-copy blockquote p:last-child {
  margin-bottom: 0;
}

.other-faculty-card {
  display: grid;
  gap: 16px;
  margin-top: clamp(34px, 5vw, 54px);
  padding: clamp(26px, 4vw, 42px);
  color: var(--white);
  background: var(--navy);
  border-top: 5px solid var(--gold);
  border-radius: 8px;
  box-shadow: var(--shadow);
  text-align: center;
}

.other-faculty-card h2,
.other-faculty-card p {
  color: var(--white);
}

.other-faculty-card .eyebrow {
  justify-content: center;
  color: var(--gold);
}

.other-faculty-card .eyebrow::before {
  display: none;
}

.other-faculty-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.other-faculty-list p {
  display: grid;
  gap: 5px;
  margin: 0;
  padding: 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.other-faculty-list span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.94rem;
}

.seal-card {
  display: grid;
  gap: 16px;
  padding: clamp(24px, 4vw, 34px);
  color: var(--white);
  background: var(--navy);
  border-top: 5px solid var(--gold);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.seal-card img {
  width: 120px;
  height: 120px;
  object-fit: contain;
}

.seal-card h3,
.seal-card p {
  color: var(--white);
}

.motto-line {
  display: inline-flex;
  width: fit-content;
  padding: 7px 12px;
  color: var(--navy);
  background: var(--gold);
  border-radius: 999px;
  font-family: "Mulish", "Muli", "Roboto", system-ui, sans-serif;
  font-size: 0.88rem;
  font-weight: 900;
}

.grid {
  display: grid;
  gap: 22px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.module-card,
.feature-card,
.benefit-card,
.testimonial-card,
.partner-card,
.info-card,
.step-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(39, 50, 114, 0.08);
}

.module-card,
.feature-card,
.benefit-card,
.info-card,
.step-card {
  padding: 26px;
}

.module-card {
  border-top: 5px solid var(--gold);
}

.module-number {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  place-items: center;
  color: var(--white);
  background: var(--purple);
  border-radius: 50%;
  font-family: "Mulish", "Muli", "Roboto", system-ui, sans-serif;
  font-weight: 900;
}

.feature-card {
  border-left: 5px solid var(--gold);
}

.feature-card h3,
.benefit-card h3,
.step-card h3,
.info-card h3 {
  margin-bottom: 10px;
  color: var(--navy);
}

.feature-card p,
.benefit-card p,
.step-card p,
.info-card p,
.module-card p {
  margin-bottom: 0;
}

.why-academy .section-header {
  margin-bottom: clamp(42px, 6vw, 72px);
}

.why-academy h2 {
  position: relative;
  display: inline-block;
}

.why-academy h2::after {
  display: block;
  width: min(460px, 70vw);
  height: 5px;
  margin: 22px auto 0;
  background: var(--gold);
  content: "";
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(34px, 5vw, 70px) clamp(30px, 5vw, 66px);
}

.why-item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.why-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: var(--white);
  background: var(--gold);
  border-radius: 50%;
  font-family: "Mulish", "Muli", "Roboto", system-ui, sans-serif;
  font-size: 0.82rem;
  font-weight: 900;
}

.why-item h3 {
  margin-bottom: 10px;
  color: var(--purple);
}

.why-item p {
  grid-column: 2;
  margin-bottom: 0;
  color: var(--purple);
  font-size: 0.98rem;
}

.program-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(270px, 0.72fr);
  gap: 28px;
  align-items: stretch;
  padding: clamp(28px, 5vw, 48px);
  color: var(--white);
  background: var(--navy);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.program-panel h2,
.program-panel h3,
.program-panel p {
  color: var(--white);
}

.program-panel .eyebrow {
  color: var(--gold);
}

.program-panel .eyebrow::before {
  background: var(--gold);
}

.program-stats {
  display: grid;
  gap: 14px;
}

.stat {
  padding: 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.stat strong {
  display: block;
  color: var(--gold);
  font-family: "Mulish", "Muli", "Roboto", system-ui, sans-serif;
  font-size: 1.8rem;
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.94rem;
}

.benefit-list {
  display: grid;
  gap: 12px;
}

.benefit-list li,
.check-list li {
  position: relative;
  padding-left: 28px;
}

.benefit-list li::before,
.check-list li::before {
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 10px;
  height: 10px;
  background: var(--gold);
  border: 3px solid rgba(227, 167, 47, 0.24);
  border-radius: 50%;
  content: "";
}

.quote-section {
  color: var(--white);
  background: var(--purple);
}

.quote-section h2,
.quote-section p {
  color: var(--white);
}

.quote-section .section-lede {
  color: rgba(255, 255, 255, 0.82);
}

.testimonial-card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 18px;
  padding: 28px;
}

.testimonial-card blockquote {
  margin: 0;
  color: var(--text);
  font-size: 1.02rem;
  font-style: italic;
}

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-person img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border: 3px solid rgba(227, 167, 47, 0.35);
  border-radius: 50%;
}

.testimonial-person strong {
  display: block;
  color: var(--navy);
}

.testimonial-person span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
}

.partner-card {
  display: grid;
  min-height: 170px;
  place-items: center;
  padding: 24px;
  text-align: center;
}

.partner-card img {
  max-width: 230px;
  max-height: 104px;
  object-fit: contain;
  filter: saturate(0.95);
}

.partner-card span {
  display: block;
  margin-top: 14px;
  color: var(--navy);
  font-weight: 800;
}

.jheri-section {
  padding-top: clamp(54px, 6vw, 86px);
}

.jheri-card {
  display: grid;
  grid-template-columns: minmax(210px, 0.34fr) minmax(0, 0.66fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.jheri-card img {
  width: min(330px, 100%);
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.jheri-card blockquote {
  margin: 0 0 24px;
  color: var(--purple);
  font-family: "Mulish", "Muli", "Roboto", system-ui, sans-serif;
  font-size: clamp(1.25rem, 2.4vw, 2rem);
  line-height: 1.45;
}

.jheri-card h2 {
  color: #6f6f75;
  font-size: clamp(2rem, 4vw, 3.35rem);
}

.jheri-card p {
  margin-top: 12px;
  color: var(--purple);
  font-size: 1.05rem;
}

.glance-section {
  background-image: linear-gradient(rgba(247, 244, 251, 0.94), rgba(247, 244, 251, 0.94)), var(--classroom-image);
  background-position: center;
  background-size: cover;
}

.glance-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.glance-card {
  display: grid;
  gap: 16px;
  padding: clamp(24px, 4vw, 36px);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-top: 5px solid var(--gold);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(39, 50, 114, 0.08);
}

.glance-card h3 {
  color: var(--ink);
  font-size: clamp(1.25rem, 2vw, 1.55rem);
}

.glance-card p {
  margin-bottom: 0;
  color: var(--ink);
}

.glance-facts dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.glance-facts div {
  display: grid;
  grid-template-columns: minmax(130px, 0.45fr) minmax(0, 1fr);
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(39, 50, 114, 0.1);
}

.glance-facts div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.glance-facts dt {
  color: var(--ink);
  font-weight: 900;
}

.glance-facts dd {
  margin: 0;
  color: var(--ink);
}

.timeline-section {
  overflow: hidden;
  background: var(--white);
}

.timeline-heading {
  margin-bottom: clamp(34px, 5vw, 56px);
}

.timeline-heading h2 {
  color: #111111;
  font-size: clamp(3.2rem, 8vw, 6.8rem);
  text-transform: uppercase;
}

.timeline-heading h2 span {
  color: var(--gold-dark);
}

.timeline-heading p {
  max-width: 760px;
  color: var(--purple);
  font-size: 1.08rem;
}

.timeline-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
  padding: 34px 0 10px;
}

.timeline-track::before {
  position: absolute;
  top: 54px;
  right: -6vw;
  left: -6vw;
  height: 3px;
  background: #e52925;
  content: "";
}

.timeline-card {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  min-height: 138px;
  padding: 18px;
  background: var(--white);
  border: 2px solid #e52925;
  border-radius: 8px;
  box-shadow: 0 14px 28px rgba(39, 50, 114, 0.08);
}

.timeline-card::before {
  position: absolute;
  top: -22px;
  left: 22px;
  width: 3px;
  height: 22px;
  background: #e52925;
  content: "";
}

.timeline-card span {
  color: inherit;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.timeline-card h3 {
  color: inherit;
  font-size: 1.08rem;
  text-transform: uppercase;
}

.timeline-card.is-red {
  color: var(--white);
  background: #e52925;
}

.timeline-card.is-outline {
  color: #b02b28;
}

.timeline-card.is-green {
  color: #236f0b;
  border-color: #236f0b;
}

.timeline-card.is-green::before {
  background: #236f0b;
}

.video-cta {
  background-image: var(--cta-image);
}

.video-cta .container {
  min-height: 420px;
}

.video-cta h2 {
  font-size: clamp(2.4rem, 6vw, 5rem);
}

.page-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background-image: var(--classroom-image);
  background-position: center;
  background-size: cover;
}

.page-hero::before {
  position: absolute;
  inset: 0;
  background: rgba(21, 29, 85, 0.74);
  content: "";
}

.page-hero .container {
  position: relative;
  z-index: 1;
  padding: clamp(86px, 10vw, 132px) 0;
}

.page-hero h1,
.page-hero p {
  max-width: 780px;
  color: var(--white);
}

.page-hero .eyebrow {
  color: var(--gold);
}

.page-hero .eyebrow::before {
  background: var(--gold);
}

.page-hero p {
  margin-top: 18px;
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}

.page-hero.filmmaker-hero {
  background-image: url("../images/filmmaker-mba-workshop.png");
  background-position: center;
}

.filmmaker-program-card {
  align-content: start;
}

.filmmaker-intro {
  background: linear-gradient(180deg, var(--white) 0%, var(--soft) 100%);
}

.director-profile {
  display: grid;
  grid-template-columns: minmax(280px, 0.38fr) minmax(0, 0.62fr);
  gap: clamp(28px, 5vw, 60px);
  align-items: start;
}

.director-photo-card {
  display: grid;
  align-items: start;
  align-self: start;
  margin: 0;
  padding: clamp(18px, 3vw, 28px);
  overflow: hidden;
  background: linear-gradient(145deg, #050507 0%, var(--navy-dark) 100%);
  border: 1px solid rgba(227, 167, 47, 0.32);
  border-top: 5px solid var(--gold);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.director-photo-card img {
  width: 100%;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center top;
  border-radius: 6px;
}

.director-bio-card {
  padding: clamp(26px, 4vw, 42px);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.director-bio-card h2 {
  font-size: clamp(2rem, 3.6vw, 3.15rem);
}

.director-title {
  display: inline-flex;
  width: fit-content;
  margin: 16px 0 6px;
  padding: 8px 13px;
  color: var(--navy);
  background: rgba(227, 167, 47, 0.22);
  border: 1px solid rgba(227, 167, 47, 0.42);
  border-radius: 999px;
  font-family: "Mulish", "Muli", "Roboto", system-ui, sans-serif;
  font-size: 0.9rem;
  font-weight: 900;
}

.impact-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.impact-metrics div {
  padding: 18px;
  color: var(--white);
  background: var(--navy);
  border-top: 4px solid var(--gold);
  border-radius: 8px;
}

.impact-metrics strong,
.impact-metrics span {
  display: block;
}

.impact-metrics strong {
  color: var(--gold);
  font-family: "Mulish", "Muli", "Roboto", system-ui, sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.15rem);
  line-height: 1;
}

.impact-metrics span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 700;
}

.ambition-grid,
.impact-story-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.ambition-card {
  padding: clamp(24px, 4vw, 34px);
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 5px solid var(--gold);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(39, 50, 114, 0.08);
}

.ambition-card h3 {
  margin-bottom: 14px;
  color: var(--navy);
}

.ambition-card p:last-child {
  margin-bottom: 0;
}

.ambition-card-dark {
  color: var(--white);
  background: var(--navy);
  border-color: rgba(255, 255, 255, 0.12);
}

.ambition-card-dark h3,
.ambition-card-dark p {
  color: var(--white);
}

.ecosystem-list {
  display: grid;
  gap: 13px;
  margin-top: 22px;
}

.ecosystem-list li {
  position: relative;
  padding: 16px 18px 16px 46px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 5px solid var(--gold);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(39, 50, 114, 0.07);
  font-weight: 800;
}

.ecosystem-list li::before {
  position: absolute;
  top: 50%;
  left: 18px;
  width: 12px;
  height: 12px;
  background: var(--purple);
  border: 3px solid rgba(72, 7, 122, 0.18);
  border-radius: 50%;
  content: "";
  transform: translateY(-50%);
}

.filmmaker-feature-media img {
  object-position: center;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.impact-story-grid .before-after-card p + p {
  margin-top: 14px;
}

.pathway-list,
.faq-list {
  display: grid;
  gap: 14px;
}

.pathway-item {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 16px 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 5px solid var(--gold);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(39, 50, 114, 0.07);
}

.pathway-item span,
.before-after-card span {
  color: var(--gold-dark);
  font-family: "Mulish", "Muli", "Roboto", system-ui, sans-serif;
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
}

.pathway-item p,
.outcome-note p,
.before-after-card p,
.faq-item p {
  margin-bottom: 0;
}

.outcome-note {
  margin-top: 18px;
  padding: 18px;
  color: var(--white);
  background: var(--navy);
  border-radius: 8px;
}

.outcome-note strong {
  display: block;
  margin-bottom: 6px;
  color: var(--gold);
  font-family: "Mulish", "Muli", "Roboto", system-ui, sans-serif;
  font-size: 0.88rem;
  font-weight: 900;
  text-transform: uppercase;
}

.outcome-note p {
  color: rgba(255, 255, 255, 0.88);
}

.before-after-card,
.faq-item {
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(39, 50, 114, 0.08);
}

.before-after-card {
  border-top: 5px solid var(--gold);
}

.before-after-card h3,
.faq-item h3 {
  margin: 8px 0 10px;
  color: var(--navy);
}

.faq-item {
  border-left: 5px solid var(--gold);
}

.filmmaker-cta {
  background-image: url("../images/filmmaker-mba-workshop.png");
}

.floating-accreditation {
  position: fixed;
  right: clamp(14px, 2vw, 26px);
  bottom: clamp(14px, 2vw, 24px);
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: min(320px, calc(100% - 28px));
  padding: 13px 18px;
  color: var(--navy);
  background: var(--gold);
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(21, 29, 85, 0.24);
  font-family: "Mulish", "Muli", "Roboto", system-ui, sans-serif;
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
}

.floating-accreditation::before {
  width: 10px;
  height: 10px;
  background: var(--rose);
  border-radius: 50%;
  content: "";
}

body.has-cookie-banner .floating-accreditation {
  bottom: 126px;
}

.timeline {
  display: grid;
  gap: 18px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.timeline-badge {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: var(--white);
  background: var(--gold);
  border-radius: 50%;
  font-family: "Mulish", "Muli", "Roboto", system-ui, sans-serif;
  font-weight: 900;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 1.12fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 16px;
}

.contact-list a,
.contact-list span {
  display: block;
  color: var(--navy);
  font-weight: 800;
}

.interest-form {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 36px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.form-field {
  display: grid;
  gap: 7px;
}

.form-field.full {
  grid-column: 1 / -1;
}

label {
  color: var(--navy);
  font-weight: 900;
}

input,
textarea,
select {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #d9d1e6;
  border-radius: 6px;
  font: inherit;
}

textarea {
  min-height: 132px;
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--gold);
  outline: 3px solid rgba(227, 167, 47, 0.22);
}

.form-note {
  color: var(--muted);
  font-size: 0.92rem;
}

.form-status {
  display: none;
  padding: 12px 14px;
  color: var(--navy);
  background: rgba(227, 167, 47, 0.18);
  border: 1px solid rgba(227, 167, 47, 0.36);
  border-radius: 6px;
  font-weight: 800;
}

.form-status.is-visible {
  display: block;
}

.privacy-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.36fr) minmax(0, 0.64fr);
  gap: clamp(30px, 5vw, 62px);
  align-items: start;
}

.privacy-intro {
  position: sticky;
  top: 136px;
  padding: clamp(24px, 4vw, 34px);
  color: var(--white);
  background: var(--navy);
  border-top: 5px solid var(--gold);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.privacy-intro h2,
.privacy-intro p {
  color: var(--white);
}

.privacy-intro .eyebrow {
  color: var(--gold);
}

.privacy-intro .eyebrow::before {
  background: var(--gold);
}

.privacy-content {
  display: grid;
  gap: 18px;
}

.policy-block {
  padding: clamp(24px, 4vw, 34px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(39, 50, 114, 0.08);
}

.policy-block h2 {
  margin-bottom: 14px;
  color: var(--navy);
  font-size: clamp(1.45rem, 2.4vw, 2rem);
}

.policy-block .check-list {
  margin-top: 14px;
}

.document-section {
  background: linear-gradient(180deg, var(--soft) 0%, var(--white) 100%);
}

.document-shell,
.policy-shell {
  display: grid;
  gap: 28px;
  padding: clamp(24px, 4vw, 38px);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.document-title {
  padding: clamp(24px, 4vw, 36px);
  color: var(--white);
  background: linear-gradient(135deg, var(--purple) 0%, var(--navy) 100%);
  border-radius: 8px;
  text-align: center;
}

.document-title.compact {
  text-align: left;
}

.document-title .eyebrow {
  color: var(--gold);
  margin-bottom: 10px;
}

.document-title .eyebrow::before {
  background: var(--gold);
}

.document-title h2 {
  color: var(--white);
}

.requirements-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.requirement-card,
.document-card,
.policy-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(39, 50, 114, 0.08);
}

.requirement-card {
  position: relative;
  padding: 28px;
  overflow: hidden;
}

.requirement-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  background: var(--gold);
  content: "";
}

.requirement-number {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  place-items: center;
  color: var(--white);
  background: var(--purple);
  border-radius: 50%;
  font-family: "Mulish", "Muli", "Roboto", system-ui, sans-serif;
  font-weight: 900;
}

.requirement-card h3,
.document-card h2,
.policy-card h3,
.policy-card h4 {
  color: var(--navy);
}

.requirement-card h3 {
  margin-bottom: 12px;
}

.notice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.notice-card {
  min-height: 136px;
  padding: 24px;
  color: var(--white);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(39, 50, 114, 0.12);
  text-align: center;
}

.notice-card h3,
.notice-card p {
  color: var(--white);
}

.notice-card h3 {
  margin-bottom: 10px;
}

.notice-card p {
  margin-bottom: 0;
  font-weight: 800;
}

.notice-blue {
  background: linear-gradient(135deg, #1267dc 0%, var(--purple) 100%);
}

.notice-green {
  background: linear-gradient(135deg, #23a84e 0%, #6bd27b 100%);
}

.notice-gold {
  background: linear-gradient(135deg, #ff7f16 0%, var(--gold) 100%);
}

.admission-sections,
.policy-list {
  display: grid;
  gap: 22px;
}

.document-card,
.policy-card {
  padding: clamp(22px, 3vw, 30px);
}

.document-card {
  border-left: 5px solid var(--gold);
}

.document-card h2 {
  margin-bottom: 14px;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
}

.policy-shell {
  max-width: 980px;
}

.policy-card {
  border-top: 4px solid rgba(72, 7, 122, 0.12);
}

.policy-intro-card {
  color: var(--white);
  background: var(--navy);
  border-top-color: var(--gold);
}

.policy-intro-card h3,
.policy-intro-card p {
  color: var(--white);
}

.policy-card h3 {
  margin-bottom: 14px;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
}

.policy-card h4 {
  margin: 18px 0 10px;
  font-size: 1rem;
}

.policy-note {
  margin-top: 14px;
  color: var(--purple);
  font-family: "Mulish", "Muli", "Roboto", system-ui, sans-serif;
  font-weight: 900;
}

.privacy-contact {
  display: grid;
  gap: 8px;
  margin-top: 12px;
  color: var(--navy);
  font-style: normal;
  font-weight: 800;
}

.privacy-contact a:hover,
.privacy-contact a:focus {
  color: var(--rose);
}

.cookie-banner {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 16px;
  width: min(430px, calc(100% - 36px));
  padding: 20px;
  color: var(--white);
  background: var(--navy-dark);
  border: 1px solid rgba(227, 167, 47, 0.42);
  border-top: 5px solid var(--gold);
  border-radius: 10px;
  box-shadow: 0 18px 46px rgba(21, 29, 85, 0.32);
}

.cookie-banner p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.95rem;
}

.cookie-actions {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.cookie-actions a {
  color: var(--gold);
  font-weight: 900;
}

.cookie-actions a:hover,
.cookie-actions a:focus {
  color: var(--white);
}

.cookie-actions .button {
  min-height: 42px;
  padding: 11px 18px;
}

.cta-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background-color: var(--navy-dark);
  background-image: var(--cta-image);
  background-position: center;
  background-size: cover;
}

.cta-section::before {
  position: absolute;
  inset: 0;
  background: rgba(21, 29, 85, 0.78);
  content: "";
}

.cta-section .container {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
  place-items: center;
  padding: clamp(78px, 9vw, 118px) 0;
  text-align: center;
}

.cta-section h2,
.cta-section p {
  max-width: 820px;
  color: var(--white);
}

.cta-section p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.08rem;
}

.site-footer {
  color: rgba(255, 255, 255, 0.82);
  background: var(--navy-dark);
  border-top: 5px solid var(--gold);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1.35fr) minmax(160px, 0.8fr) minmax(190px, 0.9fr) minmax(230px, 1fr);
  gap: clamp(24px, 4vw, 48px);
  padding: clamp(50px, 7vw, 78px) 0;
}

.footer-brand {
  display: grid;
  gap: 16px;
}

.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand img {
  width: 88px;
  height: 88px;
  object-fit: contain;
}

.footer-title {
  color: var(--white);
  font-family: "Mulish", "Muli", "Roboto", system-ui, sans-serif;
  font-size: 1.18rem;
  font-weight: 900;
}

.footer-motto {
  color: var(--gold);
  font-weight: 900;
}

.footer-heading {
  margin-bottom: 14px;
  color: var(--white);
  font-family: "Mulish", "Muli", "Roboto", system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 900;
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 9px;
}

.footer-links a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.82);
}

.footer-links a:hover,
.footer-links a:focus,
.footer-contact a:hover,
.footer-contact a:focus {
  color: var(--gold);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 42px;
  padding: 0 12px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 900;
}

.social-links a:hover,
.social-links a:focus {
  color: var(--navy);
  background: var(--gold);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.92rem;
}

.footer-bottom a {
  color: var(--gold);
  font-weight: 800;
}

@media (max-width: 1180px) {
  .primary-nav a,
  .nav-dropdown-toggle {
    padding: 8px 7px;
    font-size: 0.78rem;
  }

  .primary-nav .nav-cta {
    padding-right: 14px;
    padding-left: 14px;
  }
}

@media (max-width: 1040px) {
  .primary-nav {
    gap: 0;
  }

  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .why-grid,
  .timeline-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .topbar-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .nav-inner {
    min-height: 82px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .primary-nav {
    position: absolute;
    top: 100%;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .primary-nav.is-open {
    display: flex;
  }

  .primary-nav a,
  .nav-dropdown-toggle {
    min-height: 44px;
    padding: 10px 12px;
    font-size: 0.92rem;
  }

  .nav-dropdown {
    display: grid;
    align-items: stretch;
  }

  .nav-dropdown-toggle {
    justify-content: space-between;
    width: 100%;
    color: var(--navy);
    background: rgba(39, 50, 114, 0.04);
    border: 1px solid rgba(39, 50, 114, 0.08) !important;
    text-align: left;
  }

  .nav-dropdown-menu {
    position: static;
    display: none;
    min-width: 0;
    margin: 0 0 6px 12px;
    padding: 6px 0 6px 12px;
    background: transparent;
    border: 0;
    border-left: 4px solid var(--gold);
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    visibility: visible;
  }

  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu,
  .nav-dropdown.is-current .nav-dropdown-menu {
    display: none;
  }

  .nav-dropdown.is-open .nav-dropdown-menu {
    display: grid;
  }

  .primary-nav .nav-dropdown-menu a {
    min-height: 40px;
    padding: 10px 12px;
    color: var(--navy);
    background: transparent;
    font-size: 0.9rem;
  }

  .primary-nav .nav-cta {
    margin: 8px 0 0;
    justify-content: center;
  }

  .hero {
    min-height: 720px;
    background-position: 63% center;
  }

  .split,
  .split.reverse,
  .program-panel,
  .about-grid,
  .founder-profile,
  .founder-story-grid,
  .faculty-card,
  .director-profile,
  .ambition-grid,
  .impact-story-grid,
  .glance-grid,
  .jheri-card,
  .requirements-grid,
  .notice-grid,
  .contact-layout,
  .privacy-layout {
    grid-template-columns: 1fr;
  }

  .about-copy {
    text-align: left;
  }

  .about-copy .eyebrow {
    justify-content: flex-start;
  }

  .founder-image-card {
    position: static;
    width: min(560px, 100%);
    margin: 0 auto;
  }

  .founder-bio-card {
    padding: 26px;
  }

  .faculty-card {
    gap: 22px;
  }

  .faculty-card img {
    width: min(360px, 100%);
  }

  .director-photo-card {
    width: min(520px, 100%);
    margin: 0 auto;
  }

  .director-photo-card img {
    max-height: 520px;
  }

  .offer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .other-faculty-list {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-item {
    grid-template-columns: 60px minmax(0, 1fr);
  }

  .timeline-track {
    grid-template-columns: 1fr;
    padding-left: 18px;
  }

  .timeline-track::before {
    top: 0;
    right: auto;
    bottom: 0;
    left: 0;
    width: 3px;
    height: auto;
  }

  .timeline-card::before {
    top: 26px;
    left: -20px;
    width: 20px;
    height: 3px;
  }

  .privacy-intro {
    position: static;
  }

  .cookie-banner {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 15.5px;
  }

  .topbar-inner,
  .nav-inner,
  .container {
    width: min(100% - 28px, 1140px);
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 58px;
    height: 58px;
  }

  .brand-text {
    display: none;
  }

  .hero {
    min-height: 690px;
    background-position: 66% center;
  }

  .home-hero {
    min-height: 720px;
  }

  .home-hero .hero-background {
    object-position: 58% center;
  }

  .home-hero::before {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0.5) 56%, rgba(255, 255, 255, 0.18) 100%);
  }

  .hero-inner {
    align-items: start;
    padding-top: 58px;
  }

  .hero-content {
    width: min(330px, 100%);
  }

  .hero-mark {
    width: 82px;
    margin-bottom: 18px;
  }

  .hero h1 {
    font-size: clamp(2.85rem, 15vw, 4.3rem);
  }

  .hero-kicker {
    font-size: 1.05rem;
  }

  .hero-lede {
    font-size: 1.05rem;
  }

  .about-media {
    min-height: 420px;
  }

  .about-media-caption {
    right: 14px;
    bottom: 14px;
    left: 14px;
  }

  .about-media-caption h2,
  .about-media-caption p {
    padding: 10px 12px;
  }

  .glance-facts div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .timeline-heading h2 {
    font-size: clamp(2.8rem, 16vw, 4.2rem);
  }

  .jheri-card img {
    width: min(270px, 100%);
  }

  .hero-actions,
  .section-actions,
  .cta-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .grid-4 {
    grid-template-columns: 1fr;
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }

  .pathway-item {
    grid-template-columns: 1fr;
  }

  .floating-accreditation {
    right: 14px;
    bottom: 14px;
    left: 14px;
    justify-content: center;
  }

  .document-shell,
  .policy-shell {
    width: min(100%, 1140px);
    padding: 16px;
  }

  .founder-highlights {
    grid-template-columns: 1fr;
  }

  .founder-bio-card,
  .story-panel,
  .faculty-card,
  .other-faculty-card,
  .director-bio-card,
  .director-photo-card,
  .ambition-card {
    padding: 20px;
  }

  .faculty-card img {
    width: 100%;
    max-height: 420px;
  }

  .impact-metrics,
  .offer-grid {
    grid-template-columns: 1fr;
  }

  .director-title {
    width: 100%;
  }

  .document-title {
    padding: 24px 18px;
  }

  .requirement-card,
  .document-card,
  .policy-card,
  .notice-card {
    padding: 20px;
  }

  body.has-cookie-banner .floating-accreditation {
    bottom: 202px;
  }

  .cookie-banner {
    right: 14px;
    bottom: 14px;
    left: 14px;
    width: calc(100% - 28px);
  }

  .cookie-actions {
    width: 100%;
  }

  .cookie-actions a,
  .cookie-actions .button {
    width: 100%;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-brand-row {
    align-items: flex-start;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}
