:root {
  --ink: #16161d;
  --muted: #686978;
  --line: #e7e7ee;
  --paper: #ffffff;
  --cream: #fff8e9;
  --red: #d91f2a;
  --red-dark: #9f1621;
  --blue: #21105f;
  --gold: #f6c945;
  --mint: #e7f7ee;
  --shadow: 0 24px 70px rgba(25, 24, 50, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #fffdf8;
}

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

.site-header {
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(255, 253, 248, 0.86);
  border-bottom: 1px solid rgba(231, 231, 238, 0.72);
  display: flex;
  gap: 28px;
  justify-content: space-between;
  left: 0;
  padding: 16px clamp(18px, 5vw, 72px);
  position: sticky;
  right: 0;
  top: 0;
  transition: box-shadow 180ms ease, background 180ms ease;
  z-index: 20;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 40px rgba(22, 22, 29, 0.08);
}

.brand {
  align-items: center;
  display: flex;
  gap: 12px;
  min-width: 218px;
}

.brand-mark {
  align-items: center;
  background: var(--red);
  border: 3px solid var(--ink);
  color: white;
  display: grid;
  font-weight: 900;
  height: 48px;
  letter-spacing: 0;
  place-items: center;
  width: 56px;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand small {
  color: var(--red);
  font-weight: 800;
  margin-top: 3px;
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: 24px;
  font-size: 0.94rem;
  font-weight: 700;
}

.nav a {
  color: #3b3b48;
}

.nav a:hover {
  color: var(--red);
}

.header-cta,
.primary-btn,
.secondary-btn,
.lead-form button {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
}

.header-cta,
.primary-btn,
.lead-form button {
  background: var(--red);
  color: white;
}

.secondary-btn {
  border: 1px solid #d9d9e3;
  color: var(--ink);
}

.hero {
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  min-height: calc(100vh - 81px);
  overflow: hidden;
  padding: clamp(58px, 8vw, 112px) clamp(18px, 5vw, 72px) 54px;
  position: relative;
}

.hero-bg {
  inset: 0;
  overflow: hidden;
  position: absolute;
  z-index: 0;
}

.orb {
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.75;
  position: absolute;
}

.orb-one {
  background: #ffe581;
  height: 360px;
  right: 7%;
  top: 9%;
  width: 360px;
}

.orb-two {
  background: #d9f5ef;
  bottom: 8%;
  height: 310px;
  left: 3%;
  width: 310px;
}

.paper-stack {
  bottom: 44px;
  display: grid;
  gap: 18px;
  position: absolute;
  right: clamp(14px, 7vw, 120px);
  transform: rotate(-4deg);
}

.paper-card {
  background: white;
  border: 2px solid var(--ink);
  box-shadow: 12px 12px 0 rgba(22, 22, 29, 0.12);
  display: grid;
  gap: 8px;
  padding: 24px;
  width: min(38vw, 410px);
}

.paper-card span {
  color: var(--red);
  font-size: 0.88rem;
  font-weight: 900;
  text-transform: uppercase;
}

.paper-card strong {
  color: var(--blue);
  font-size: clamp(2.4rem, 5vw, 5.6rem);
  line-height: 0.92;
  text-transform: uppercase;
}

.paper-card small {
  font-weight: 800;
}

.paper-side {
  margin-left: 80px;
  transform: rotate(7deg);
}

.hero-content,
.hero-panel {
  position: relative;
  z-index: 1;
}

.hero-content {
  align-self: center;
  max-width: 830px;
}

.eyebrow {
  color: var(--red);
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  letter-spacing: 0;
}

h1 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3.1rem, 7vw, 6.8rem);
  line-height: 0.93;
  margin-bottom: 24px;
  max-width: 880px;
}

.hero-content p {
  color: #454653;
  font-size: clamp(1.08rem, 1.6vw, 1.35rem);
  line-height: 1.7;
  max-width: 710px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-proof span {
  background: white;
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(22, 22, 29, 0.06);
  padding: 10px 16px;
}

.hero-proof strong {
  color: var(--blue);
}

.hero-panel {
  align-self: end;
  background: var(--ink);
  border-radius: 8px;
  box-shadow: var(--shadow);
  color: white;
  padding: 28px;
}

.offer-tag {
  background: var(--gold);
  color: var(--ink);
  display: inline-flex;
  font-size: 0.77rem;
  font-weight: 900;
  margin-bottom: 18px;
  padding: 8px 10px;
  text-transform: uppercase;
}

.hero-panel h2 {
  font-size: clamp(2rem, 3vw, 3.15rem);
  line-height: 0.98;
  margin-bottom: 12px;
}

.hero-panel p {
  color: #d8d8e4;
  line-height: 1.6;
}

.mini-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 22px;
}

.mini-grid span {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 12px;
}

.trust-strip {
  background: var(--red);
  color: white;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  padding: 14px 18px;
}

.trust-strip span {
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 800;
  padding: 8px 14px;
}

.section,
.pathway,
.admission-section {
  padding: clamp(64px, 8vw, 112px) clamp(18px, 5vw, 72px);
}

.section-heading {
  display: grid;
  gap: 14px;
  margin-bottom: 34px;
  max-width: 820px;
}

.section-heading h2,
.pathway h2,
.admission-section h2,
.mentor-card h2 {
  font-size: clamp(2.25rem, 4vw, 4.4rem);
  line-height: 1;
  margin-bottom: 0;
}

.section-heading p {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.7;
}

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

.program-card,
.pathway-steps article,
.branch-card,
.method-list article {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
}

.program-card {
  min-height: 275px;
}

.program-card.featured {
  background: var(--blue);
  color: white;
}

.program-card.featured p {
  color: #dedbf8;
}

.card-kicker {
  color: var(--red);
  display: inline-flex;
  font-size: 0.76rem;
  font-weight: 900;
  margin-bottom: 26px;
  text-transform: uppercase;
}

.featured .card-kicker {
  color: var(--gold);
}

.program-card h3,
.pathway-steps h3,
.branch-card h3,
.method-list h3 {
  font-size: 1.55rem;
  line-height: 1.05;
  margin-bottom: 14px;
}

.program-card p,
.pathway-steps p,
.branch-card p,
.method-list p,
.mentor-card p,
.admission-section p {
  color: var(--muted);
  line-height: 1.65;
}

.program-card a {
  color: var(--gold);
  font-weight: 900;
}

.pathway {
  background: var(--cream);
  display: grid;
  gap: 44px;
  grid-template-columns: 0.7fr 1.3fr;
}

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

.pathway-steps span {
  color: var(--red);
  display: inline-flex;
  font-weight: 900;
  margin-bottom: 38px;
}

.results-section {
  background: #fbfbfd;
}

.result-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.result-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 180px;
  overflow: hidden;
  padding: 16px;
  position: relative;
}

.result-card::before {
  background: linear-gradient(135deg, var(--red), var(--blue));
  content: "";
  height: 5px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.avatar {
  align-items: center;
  background: var(--mint);
  border: 1px solid #cdebd8;
  border-radius: 50%;
  color: var(--blue);
  display: grid;
  font-weight: 900;
  height: 52px;
  margin-bottom: 18px;
  place-items: center;
  width: 52px;
}

.result-card strong {
  display: block;
  font-size: 1rem;
  line-height: 1.15;
  margin-bottom: 6px;
}

.result-card small {
  color: var(--muted);
  display: block;
  line-height: 1.3;
  min-height: 34px;
}

.score {
  color: var(--red);
  display: block;
  font-size: 1.65rem;
  font-weight: 900;
  margin-top: 14px;
}

.split-section {
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.leadership-section {
  background: #fbfbfd;
}

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

.leader-profile {
  align-items: stretch;
  display: grid;
  gap: 0;
  grid-template-columns: minmax(210px, 0.45fr) minmax(0, 0.55fr);
}

.leader-photo-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.leader-photo-card img {
  aspect-ratio: 3 / 4;
  display: block;
  object-fit: cover;
  object-position: 50% 25%;
  width: 100%;
}

.leader-photo-card div {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  min-height: 100px;
  padding: 18px 20px;
  text-align: center;
}

.leader-photo-card strong {
  color: var(--ink);
  font-size: 1.2rem;
}

.leader-photo-card span {
  color: var(--red);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.leader-copy {
  align-content: center;
  background: white;
  border: 1px solid var(--line);
  border-left: 0;
  border-radius: 0 8px 8px 0;
  padding: clamp(24px, 3vw, 38px);
}

.leader-copy h3 {
  color: var(--blue);
  font-size: clamp(1.7rem, 2.6vw, 2.5rem);
  line-height: 1.04;
  margin-bottom: 18px;
}

.leader-copy p {
  color: #4f5060;
  font-size: 1.08rem;
  line-height: 1.75;
  margin-bottom: 16px;
}

.leader-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.leader-badges span {
  background: var(--cream);
  border: 1px solid #f0e3c6;
  border-radius: 999px;
  color: var(--blue);
  font-weight: 900;
  padding: 10px 14px;
}

.mentor-card {
  background: var(--ink);
  border-radius: 8px;
  color: white;
  min-height: 520px;
  padding: clamp(28px, 5vw, 54px);
}

.mentor-card p {
  color: #dedee7;
  font-size: 1.05rem;
}

.mentor-stats {
  display: grid;
  gap: 12px;
  margin-top: 36px;
}

.mentor-stats span {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 15px;
}

.mentor-stats strong {
  color: var(--gold);
}

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

.method-list article {
  align-content: center;
}

.faculty-section {
  background: white;
}

.faculty-grid {
  display: grid;
  gap: 18px;
}

.faculty-card {
  align-items: center;
  background: var(--cream);
  border: 1px solid #f0e3c6;
  border-radius: 8px;
  display: grid;
  gap: 26px;
  grid-template-columns: 150px minmax(0, 1fr);
  padding: clamp(24px, 4vw, 42px);
}

.faculty-initials {
  align-items: center;
  aspect-ratio: 1;
  background: var(--blue);
  border: 6px solid white;
  border-radius: 50%;
  box-shadow: 0 18px 50px rgba(33, 16, 95, 0.22);
  color: white;
  display: grid;
  font-size: 3rem;
  font-weight: 900;
  place-items: center;
}

.faculty-card h3 {
  color: var(--blue);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
  margin-bottom: 14px;
}

.faculty-card p {
  color: #4f5060;
  font-size: 1.08rem;
  line-height: 1.75;
  max-width: 980px;
}

.facilities-section {
  align-items: center;
  background: var(--ink);
  color: white;
  display: grid;
  gap: clamp(28px, 5vw, 62px);
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
}

.facilities-copy {
  max-width: 680px;
}

.facilities-copy h2 {
  font-size: clamp(2.35rem, 4vw, 4.6rem);
  line-height: 0.98;
  margin-bottom: 22px;
}

.facilities-copy p {
  color: #dedee7;
  font-size: 1.08rem;
  line-height: 1.75;
}

.facility-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.facility-points span {
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: white;
  font-weight: 800;
  padding: 10px 14px;
}

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

.facility-gallery figure {
  background: white;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
  margin: 0;
  overflow: hidden;
}

.facility-gallery img {
  aspect-ratio: 4 / 3;
  display: block;
  object-fit: cover;
  width: 100%;
}

.facility-gallery figcaption {
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 900;
  padding: 12px 14px;
}

.branches-section {
  background: var(--cream);
}

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

.branch-card {
  min-height: 220px;
}

.branch-card h3 {
  color: var(--blue);
  font-size: 2rem;
}

.branch-card p {
  color: var(--ink);
  font-size: 1.25rem;
  font-weight: 800;
}

.branch-card small {
  color: var(--muted);
  font-size: 0.98rem;
}

.admission-section {
  align-items: start;
  background: var(--red);
  color: white;
  display: grid;
  gap: 36px;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.55fr);
}

.admission-section .eyebrow,
.admission-section p {
  color: white;
}

.lead-form {
  background: white;
  border-radius: 8px;
  box-shadow: var(--shadow);
  color: var(--ink);
  display: grid;
  gap: 16px;
  padding: 22px;
}

.lead-form label {
  color: #3f4050;
  display: grid;
  font-size: 0.9rem;
  font-weight: 800;
  gap: 8px;
}

.lead-form input,
.lead-form select {
  border: 1px solid #d9d9e4;
  border-radius: 8px;
  font: inherit;
  min-height: 48px;
  padding: 0 13px;
}

.lead-form button {
  border: 0;
  cursor: pointer;
  font: inherit;
  margin-top: 4px;
}

.footer {
  align-items: center;
  background: var(--ink);
  color: white;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  padding: 28px clamp(18px, 5vw, 72px);
}

.footer span,
.footer a {
  color: #d8d8e4;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-weight: 800;
}

  @media (max-width: 1080px) {
  .hero,
  .pathway,
  .facilities-section,
  .split-section,
  .admission-section {
    grid-template-columns: 1fr;
  }

  .leader-grid,
  .leader-profile,
  .faculty-card {
    grid-template-columns: 1fr;
  }

  .faculty-initials {
    max-width: 150px;
  }

  .leader-copy {
    border-left: 1px solid var(--line);
    border-radius: 8px;
  }

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

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

  .paper-stack {
    opacity: 0.18;
  }
}

@media (max-width: 760px) {
  .site-header {
    align-items: flex-start;
    gap: 14px;
    padding: 13px 16px;
  }

  .nav {
    display: none;
  }

  .brand {
    min-width: 0;
  }

  .brand-mark {
    height: 44px;
    width: 50px;
  }

  .header-cta {
    min-height: 42px;
    padding: 0 14px;
  }

  .hero {
    min-height: auto;
    padding-top: 54px;
  }

  .paper-stack {
    display: none;
  }

  .hero-actions a {
    width: 100%;
  }

  .hero-proof {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-panel {
    padding: 22px;
  }

  .program-grid,
  .pathway-steps,
  .result-grid,
  .facility-gallery,
  .branch-grid {
    grid-template-columns: 1fr;
  }

  .program-card,
  .branch-card {
    min-height: auto;
  }

  .mentor-card {
    min-height: auto;
  }

  .leader-photo-card div {
    align-items: flex-start;
    flex-direction: column;
  }

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