:root {
  --red: #ED1C24;
  --red-deep: #C8141B;
  --maroon: #9B1B1F;
  --maroon-dark: #5E1013;
  --ink: #1A1718;
  --ink-soft: #494345;
  --paper: #F6F6F7;
  --paper-warm: #ECECEE;
  --line: #D9D9DD;
  --line-soft: #E8E8EB;
  --line-strong: #C2C2C8;
  --white: #FFFFFF;
  --serif: Crimson Pro, Georgia, Times New Roman, serif;
  --sans: Inter, system-ui, -apple-system, sans-serif;
  --maxw: 1180px;
  --gut: clamp(1.25rem, 4vw, 3rem);
  --radius: 4px;
  --shadow-sm: 0 1px 3px rgba(26, 20, 19, 0.06), 0 1px 2px rgba(26, 20, 19, 0.04);
  --shadow-md: 0 10px 30px -12px rgba(94, 16, 19, 0.22);
  --shadow-lg: 0 24px 60px -20px rgba(94, 16, 19, 0.3);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
  scrollbar-gutter: stable;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: #1A1718;
  background: #F6F6F7;
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

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

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

h1,
h2,
h3,
h4 {
  font-family: "Crimson Pro", Georgia, "Times New Roman", serif;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0;
  color: #1A1718;
}

p {
  margin: 0 0 1rem;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 3rem);
}

.section {
  padding-block: clamp(3.5rem, 8vw, 7rem);
}

.section--tight {
  padding-block: clamp(2.5rem, 5vw, 4rem);
}

.center {
  text-align: center;
}

.section-head {
  max-width: 680px;
  margin-inline: auto;
  text-align: center;
}
.section-head .lead {
  margin: 1rem auto 0;
}

.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  color: #494345;
  max-width: 62ch;
}

.subhead {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ED1C24;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.1rem;
}
.subhead--center {
  justify-content: center;
}

h2.display {
  font-size: clamp(2rem, 4.6vw, 3.35rem);
}

h1.display {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
}

.sub {
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  font-family: "Crimson Pro", Georgia, "Times New Roman", serif;
  font-weight: 500;
  color: #9B1B1F;
}

.seal {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #ED1C24;
  color: #fff;
  line-height: 0.9;
  padding: 0.5em 0.55em 0.42em;
  border-radius: 3px;
}
.seal .seal__mark {
  font-family: "Crimson Pro", Georgia, "Times New Roman", serif;
  font-weight: 700;
  font-size: 1.5em;
  letter-spacing: 0.01em;
}
.seal .seal__word {
  font-family: "Crimson Pro", Georgia, "Times New Roman", serif;
  font-weight: 500;
  font-size: 0.42em;
  letter-spacing: 0.02em;
  margin-top: 0.15em;
}

.seal--logo {
  background: none;
  padding: 0;
  border-radius: 0;
}
.seal--logo img {
  width: 38px;
  height: auto;
}

.site-header .seal--logo img {
  width: 160px;
  transition: width 0.2s ease;
}

.site-header.is-scrolled .seal--logo img {
  width: 140px;
}

.site-footer .seal--logo img {
  width: 140px;
  filter: brightness(0) invert(1);
}

.mt-1 {
  margin-top: 1rem;
}

.mt-2 {
  margin-top: 2rem;
}

.mt-3 {
  margin-top: 3rem;
}

.text-on-dark {
  color: rgba(255, 255, 255, 0.85);
}

.mb-0 {
  margin-bottom: 0;
}

.maxw-prose {
  max-width: 68ch;
}

.divider-rule {
  height: 1px;
  background: #D9D9DD;
  margin-block: 2.5rem;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 1.6rem;
  border-radius: 4px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: 0.18s ease;
  letter-spacing: 0.01em;
}
.btn--primary {
  background: #ED1C24;
  color: #fff;
  box-shadow: 0 1px 3px rgba(26, 20, 19, 0.06), 0 1px 2px rgba(26, 20, 19, 0.04);
}
.btn--primary:hover {
  background: #C8141B;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px -12px rgba(94, 16, 19, 0.22);
}
.btn--ghost {
  background: transparent;
  border-color: currentColor;
  color: #1A1718;
}
.btn--ghost:hover {
  background: #1A1718;
  color: #fff;
  border-color: #1A1718;
}
.btn--light {
  background: #fff;
  color: #9B1B1F;
}
.btn--light:hover {
  background: #ECECEE;
  transform: translateY(-2px);
}
.btn--outline-light {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}
.btn--outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
}

.btn-row {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.chip {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  background: #fff;
  border: 1px solid #D9D9DD;
  color: #9B1B1F;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  display: inline-flex;
  gap: 0.4rem;
  align-items: center;
}
.chip::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ED1C24;
}

.placeholder {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  gap: 0.6rem;
  padding: 1.5rem;
}
.placeholder svg {
  width: 46px;
  height: 46px;
  opacity: 0.8;
}
.placeholder small {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.7;
}
.placeholder--light {
  background: #ECECEE;
  color: #494345;
  border: 1px dashed #D9D9DD;
}
.placeholder--light svg {
  opacity: 0.5;
}

.damask {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-size: cover;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #D9D9DD;
  border: 1px solid #D9D9DD;
  box-shadow: 0 10px 30px -12px rgba(94, 16, 19, 0.22);
}

.stat {
  background: #fff;
  padding: 2.1rem 1.2rem;
  text-align: center;
  position: relative;
}
.stat::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #ED1C24;
}
.stat b {
  display: block;
  font-family: "Crimson Pro", Georgia, "Times New Roman", serif;
  font-weight: 700;
  font-size: clamp(2.2rem, 4.4vw, 3.2rem);
  color: #ED1C24;
  line-height: 1;
}
.stat span {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1A1718;
  margin-top: 0.6rem;
  display: block;
}

.grid {
  display: grid;
  gap: 1.4rem;
}

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

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

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

.card {
  background: #fff;
  border: 1px solid #E8E8EB;
  border-radius: 8px;
  padding: 1.7rem;
  transition: 0.2s ease;
  position: relative;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px -12px rgba(94, 16, 19, 0.22);
  border-color: #D9D9DD;
}
.card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
}
.card p {
  color: #494345;
  font-size: 0.97rem;
  margin-bottom: 0.9rem;
}
.card__icon {
  width: 46px;
  height: 46px;
  border-radius: 8px;
  background: #ECECEE;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ED1C24;
  margin-bottom: 1.1rem;
}
.card__icon svg {
  width: 24px;
  height: 24px;
}
.card .more {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: #ED1C24;
  display: inline-flex;
  gap: 0.35rem;
  align-items: center;
}
.card .more:hover {
  gap: 0.6rem;
}
.card.center .card__icon {
  margin-inline: auto;
}

.feature-card {
  background: #F6F6F7;
  border: 1px solid #C2C2C8;
  border-radius: 8px;
  padding: 1.5rem;
}
.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}
.feature-card p {
  font-size: 0.93rem;
  color: #494345;
  margin: 0;
}

.cards-white .feature-card {
  background: #FFFFFF;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.4rem;
}

.tag {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  background: #ECECEE;
  border: 1px solid #D9D9DD;
  color: #494345;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
}

.facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.fact {
  border: 1px solid #D9D9DD;
  border-radius: 8px;
  padding: 1.3rem;
  background: #fff;
  text-align: center;
}
.fact b {
  display: block;
  font-family: "Crimson Pro", Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  color: #9B1B1F;
}
.fact span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #494345;
}

.intakes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.intake {
  border: 1px solid #D9D9DD;
  border-radius: 10px;
  padding: 1.8rem;
  text-align: center;
  background: #fff;
  position: relative;
  transition: 0.2s;
}
.intake:hover {
  border-color: #ED1C24;
  transform: translateY(-4px);
  box-shadow: 0 10px 30px -12px rgba(94, 16, 19, 0.22);
}
.intake b {
  display: block;
  font-family: "Crimson Pro", Georgia, "Times New Roman", serif;
  font-size: 2rem;
  color: #ED1C24;
}
.intake span {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #494345;
}

.value {
  padding: 1.5rem;
  border-left: 3px solid #ED1C24;
  background: #fff;
  border-radius: 0 8px 8px 0;
  border-top: 1px solid #E8E8EB;
  border-right: 1px solid #E8E8EB;
  border-bottom: 1px solid #E8E8EB;
}
.value h3 {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}
.value p {
  font-size: 0.93rem;
  color: #494345;
  margin: 0;
}

.timeline {
  position: relative;
  padding-left: 2rem;
  border-left: 2px solid #D9D9DD;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.tl-item {
  position: relative;
}
.tl-item::before {
  content: "";
  position: absolute;
  left: -2.55rem;
  top: 0.3rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ED1C24;
  border: 3px solid #F6F6F7;
}
.tl-item h3 {
  font-size: 1.15rem;
  margin: 0.2rem 0 0.3rem;
}
.tl-item p {
  font-size: 0.92rem;
  color: #494345;
  margin: 0;
}

.tl-year {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: #ED1C24;
}

.degree-programs .lead {
  margin-top: 1rem;
}

.degree-cols {
  columns: 3;
  column-gap: 2rem;
  margin-top: 1.5rem;
}
.degree-cols li {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 0.95rem;
  padding: 0.3rem 0;
  color: #494345;
  break-inside: avoid;
  border-bottom: 1px dotted #D9D9DD;
}

.country-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
}

.country-pill {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  background: #fff;
  border: 1px solid #D9D9DD;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  display: inline-flex;
  gap: 0.45rem;
  align-items: center;
}

.affils {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.affil {
  border: 1px solid #C2C2C8;
  border-radius: 8px;
  padding: 1.4rem;
  background: #FFFFFF;
}
.affil h3 {
  font-size: 1.05rem;
  color: #9B1B1F;
  margin-bottom: 0.4rem;
}
.affil p {
  font-size: 0.88rem;
  color: #494345;
  margin: 0;
}

.uni-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.6rem;
}

.tabs {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  background: #ECECEE;
  padding: 0.35rem;
  border-radius: 999px;
  border: 1px solid #D9D9DD;
}

.tab {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  color: #494345;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  border: 0;
  background: transparent;
  cursor: pointer;
  transition: 0.15s;
}
.tab.active {
  background: #ED1C24;
  color: #fff;
  box-shadow: 0 1px 3px rgba(26, 20, 19, 0.06), 0 1px 2px rgba(26, 20, 19, 0.04);
}

.search {
  position: relative;
  flex: 1;
  min-width: 220px;
  max-width: 340px;
}
.search input {
  width: 100%;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 0.95rem;
  padding: 0.7rem 1rem 0.7rem 2.5rem;
  border: 1px solid #D9D9DD;
  border-radius: 999px;
  background: #fff;
  color: #1A1718;
}
.search input:focus {
  outline: 2px solid #ED1C24;
  outline-offset: 1px;
  border-color: transparent;
}
.search svg {
  position: absolute;
  left: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: #494345;
}

.uni-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}

.uni {
  background: #fff;
  border: 1px solid #E8E8EB;
  border-radius: 8px;
  padding: 1rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  transition: 0.15s;
}
.uni:hover {
  border-color: #ED1C24;
  box-shadow: 0 1px 3px rgba(26, 20, 19, 0.06), 0 1px 2px rgba(26, 20, 19, 0.04);
}
.uni__flag {
  font-size: 1.3rem;
  line-height: 1;
}
.uni__name {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-weight: 500;
  font-size: 0.93rem;
}

.uni-empty {
  grid-column: 1/-1;
  text-align: center;
  color: #494345;
  padding: 2rem;
  font-style: italic;
}

.uni-count {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 0.82rem;
  color: #494345;
  letter-spacing: 0.04em;
}

.faq {
  max-width: 820px;
  margin-inline: auto;
}

.faq-item {
  border-bottom: 1px solid #D9D9DD;
}
.faq-item.open .faq-q::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  cursor: pointer;
  font-family: "Crimson Pro", Georgia, "Times New Roman", serif;
  font-weight: 600;
  font-size: 1.18rem;
  color: #1A1718;
  padding: 1.3rem 2.5rem 1.3rem 0;
  position: relative;
  display: flex;
}
.faq-q::after {
  content: "+";
  position: absolute;
  right: 0.2rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #ED1C24;
  transition: 0.25s;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-a p {
  color: #494345;
  font-size: 1rem;
  padding-bottom: 1.3rem;
  margin: 0;
}

.form-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.form-card {
  background: #fff;
  border: 1px solid #D9D9DD;
  border-radius: 12px;
  padding: clamp(1.6rem, 3vw, 2.4rem);
  box-shadow: 0 10px 30px -12px rgba(94, 16, 19, 0.22);
}

.field {
  margin-bottom: 1.1rem;
}
.field label {
  display: block;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: #494345;
  margin-bottom: 0.4rem;
  text-transform: uppercase;
}
.field input, .field select {
  width: 100%;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  padding: 0.75rem 0.9rem;
  border: 1px solid #D9D9DD;
  border-radius: 6px;
  background: #F6F6F7;
  color: #1A1718;
  transition: 0.15s;
}
.field input:focus, .field select:focus {
  outline: 2px solid #ED1C24;
  outline-offset: 1px;
  border-color: transparent;
  background-color: #fff;
}
.field select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 2.5rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23494345' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
  background-size: 16px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-note {
  font-size: 0.82rem;
  color: #494345;
  margin-top: 0.4rem;
}

.form-success {
  background: #F0FAF2;
  border: 1px solid #BFE6C8;
  color: #1E6B33;
  padding: 1rem;
  border-radius: 8px;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 0.92rem;
  margin-bottom: 1rem;
  display: none;
}
.form-success.show {
  display: block;
}
.form-error {
  background: #FCEFEF;
  border: 1px solid #F0C2C2;
  color: #B3261E;
  padding: 1rem;
  border-radius: 8px;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 0.92rem;
  margin-bottom: 1rem;
  display: none;
}
.form-error.show {
  display: block;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-item .ci-ic {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: #ECECEE;
  color: #ED1C24;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item .ci-ic svg {
  width: 20px;
  height: 20px;
}
.contact-item b {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #494345;
  display: block;
}
.contact-item a, .contact-item span {
  font-family: "Crimson Pro", Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
  color: #1A1718;
}

.map-embed {
  border: 1px solid #D9D9DD;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16/6;
  background: #ECECEE;
}
.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}
.socials a {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 1px solid #D9D9DD;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #494345;
  transition: 0.15s;
}
.socials a:hover {
  background: #ED1C24;
  color: #fff;
  border-color: #ED1C24;
}
.socials a svg {
  width: 18px;
  height: 18px;
}

.site-footer .socials {
  display: flex;
  gap: 0.7rem;
  margin-top: 0.4rem;
}
.site-footer .socials a {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 1px solid #D9D9DD;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #494345;
  transition: 0.15s;
}
.site-footer .socials a:hover {
  background: #ED1C24;
  color: #fff;
  border-color: #ED1C24;
}
.site-footer .socials svg {
  width: 18px;
  height: 18px;
  color: white;
}

.assess-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.assess-card {
  background: #fff;
  border: 1px solid #C2C2C8;
  border-radius: 10px;
  padding: 2rem 1.4rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  transition: 0.2s ease;
}
.assess-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px -12px rgba(94, 16, 19, 0.22);
  border-color: #ED1C24;
}
.assess-card h3 {
  font-size: 1.2rem;
  color: #1A1718;
  margin: 0;
  line-height: 1.25;
}

.assess-ic {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background: #ECECEE;
  color: #ED1C24;
  display: flex;
  align-items: center;
  justify-content: center;
}
.assess-ic svg {
  width: 28px;
  height: 28px;
}

.wa-float {
  position: fixed;
  right: 1.3rem;
  bottom: 1.3rem;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #25D366;
  color: #fff;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  box-shadow: 0 12px 28px -8px rgba(37, 211, 102, 0.6);
  transition: 0.2s;
}
.wa-float:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 16px 34px -8px rgba(37, 211, 102, 0.7);
}
.wa-float svg {
  width: 22px;
  height: 22px;
}
.wa-float .wa-txt {
  white-space: nowrap;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin-top: 2.6rem;
}

.impact {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  padding: 2rem 1.2rem;
  text-align: center;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.impact:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 18px 40px -16px rgba(0, 0, 0, 0.5);
}
.impact:hover .impact__ic {
  transform: scale(1.08);
  background: #ED1C24;
  color: #fff;
}
.impact b {
  display: block;
  font-family: "Crimson Pro", Georgia, "Times New Roman", serif;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.9rem);
  line-height: 1;
  color: #fff;
}
.impact span:not(.impact__ic) {
  display: block;
  margin-top: 0.6rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}
.impact__ic {
  width: 46px;
  height: 46px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  border-radius: 10px;
  background: #FFFFFF;
  color: #ED1C24;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.impact__ic svg {
  width: 24px;
  height: 24px;
  display: block;
}

.compare-wrap {
  margin-top: 2.6rem;
  overflow-x: auto;
}

.compare {
  width: 100%;
  min-width: 640px;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid #D9D9DD;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 18px 40px -24px rgba(94, 16, 19, 0.25);
}
.compare th,
.compare td {
  text-align: left;
  padding: 1.05rem 1.3rem;
  vertical-align: top;
  font-size: 1rem;
  line-height: 1.5;
  border-bottom: 1px solid #C2C2C8;
  transition: background 0.15s ease;
}
.compare thead th {
  font-family: "Crimson Pro", Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  background: #ED1C24;
  border-bottom: none;
}
.compare thead th:first-child {
  background: #3A3537;
}
.compare thead th:last-child {
  background: #6B6B72;
}
.compare tbody th {
  font-weight: 700;
  color: #1A1718;
  background: #fff;
  width: 20%;
}
.compare td.ufp {
  background: #FCEEEE;
  color: #1A1718;
  font-weight: 500;
}
.compare td.alevel {
  color: #5F595B;
}
.compare tbody tr:hover th {
  background: #EFEFF1;
}
.compare tbody tr:hover td.ufp {
  background: #FBE6E6;
}
.compare tbody tr:hover td.alevel {
  background: #FAFAFB;
}
.compare tbody tr:last-child th,
.compare tbody tr:last-child td {
  border-bottom: none;
}

.course-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
  margin-top: 2.6rem;
}
.course-meta .meta-card {
  background: #fff;
  border: 1px solid #D9D9DD;
  border-radius: 12px;
  padding: 1.6rem 1.5rem;
  box-shadow: 0 10px 30px -12px rgba(94, 16, 19, 0.22);
}
.course-meta .meta-card h3 {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ED1C24;
  margin: 0 0 0.7rem;
}
.course-meta .meta-card p {
  margin: 0;
  font-size: 0.96rem;
  color: #494345;
}

.feature-card__ic {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: rgba(237, 28, 36, 0.1);
  color: #ED1C24;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
}
.feature-card__ic svg {
  width: 24px;
  height: 24px;
}

.tmt-slider {
  position: relative;
  margin-top: 2.6rem;
  --tmt-gap: 1.3rem;
  --tmt-per-view: 3;
}

.tmt-viewport {
  overflow: hidden;
}

.tmt-track {
  display: flex;
  gap: var(--tmt-gap);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.tmt {
  flex: 0 0 calc((100% - (var(--tmt-per-view) - 1) * var(--tmt-gap)) / var(--tmt-per-view));
  min-width: 0;
  margin: 0;
  background: #fff;
  border: 1px solid #D9D9DD;
  border-radius: 10px;
  padding: 1.6rem 1.5rem;
  box-shadow: 0 10px 30px -12px rgba(94, 16, 19, 0.22);
  display: flex;
  flex-direction: column;
}
.tmt p {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.6;
  color: #1A1718;
  margin: 0 0 1rem;
}
.tmt__stars {
  color: #F5B301;
  letter-spacing: 4px;
  font-size: 1.35rem;
  line-height: 1;
  margin-bottom: 0.85rem;
  text-shadow: 0 1px 2px rgba(196, 130, 0, 0.25);
}
.tmt__by {
  margin-top: auto;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ED1C24;
}

.tmt-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid #C2C2C8;
  background: #fff;
  color: #ED1C24;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px -12px rgba(94, 16, 19, 0.22);
  transition: 0.15s;
}
.tmt-nav:hover {
  background: #ED1C24;
  color: #fff;
  border-color: #ED1C24;
}
.tmt-nav svg {
  width: 22px;
  height: 22px;
}

.tmt-prev {
  left: auto;
  right: 100%;
  margin-right: 36px;
}

.tmt-next {
  right: auto;
  left: 100%;
  margin-left: 36px;
}

@media (max-width: 1279px) {
  .tmt-slider {
    padding-inline: 3.5rem;
  }
  .tmt-prev {
    right: auto;
    left: 0;
    margin-right: 0;
  }
  .tmt-next {
    left: auto;
    right: 0;
    margin-left: 0;
  }
}
.tmt-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2.8rem;
}
.tmt-dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 0;
  background: #C2C2C8;
  cursor: pointer;
  padding: 0;
  transition: 0.15s;
}
.tmt-dots button.on {
  background: #ED1C24;
  width: 26px;
  border-radius: 5px;
}

.uni-row {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  width: 100%;
  text-align: left;
  background: #fff;
  border: 1px solid #E8E8EB;
  border-radius: 10px;
  padding: 0.95rem 1.1rem;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  cursor: pointer;
  transition: 0.15s;
}
.uni-row:hover, .uni-row:focus-visible {
  border-color: #ED1C24;
  background: #FBF1F1;
  transform: translateX(3px);
  outline: none;
}
.uni-row:hover .uni-row__arrow {
  transform: translateX(3px);
}
.uni-row__flag {
  font-size: 1.15rem;
  line-height: 1;
  flex: 0 0 auto;
}
.uni-row__name {
  font-family: "Crimson Pro", Georgia, "Times New Roman", serif;
  font-weight: 700;
  font-size: 1.04rem;
  color: #1A1718;
  line-height: 1.25;
  flex: 1 1 auto;
  min-width: 0;
}
.uni-row__loc {
  font-size: 0.78rem;
  color: #494345;
  flex: 0 0 auto;
  white-space: nowrap;
  max-width: 38%;
  overflow: hidden;
  text-overflow: ellipsis;
}
.uni-row__arrow {
  flex: 0 0 auto;
  color: #ED1C24;
  font-weight: 700;
  font-size: 1.05rem;
  transition: transform 0.15s;
}

.uni-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.uni-modal[hidden] {
  display: none;
}
.uni-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 23, 24, 0.6);
  backdrop-filter: blur(3px);
  animation: fadeIn 0.2s ease;
}
.uni-modal__panel {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, 0.5);
  animation: popIn 0.25s cubic-bezier(0.2, 0.8, 0.3, 1.1);
}
.uni-modal__hero {
  position: relative;
  aspect-ratio: 16/7;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px 16px 0 0;
  overflow: hidden;
}
.uni-modal__ini {
  position: relative;
  z-index: 1;
  font-family: "Crimson Pro", Georgia, "Times New Roman", serif;
  font-weight: 700;
  font-size: 3rem;
  color: #fff;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
}
.uni-modal__flag {
  position: absolute;
  top: 0.9rem;
  left: 1rem;
  z-index: 2;
  font-size: 1.3rem;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 7px;
  padding: 0.2rem 0.5rem;
  line-height: 1;
}
.uni-modal__close {
  position: absolute;
  top: 0.8rem;
  right: 0.9rem;
  z-index: 3;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.9);
  color: #1A1718;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: 0.15s;
}
.uni-modal__close:hover {
  background: #fff;
  transform: scale(1.05);
}
.uni-modal__content {
  padding: 1.6rem 1.8rem 1.8rem;
}
.uni-modal__name {
  font-family: "Crimson Pro", Georgia, "Times New Roman", serif;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.15;
  color: #1A1718;
  margin: 0 0 0.3rem;
}
.uni-modal__loc {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 0.9rem;
  color: #494345;
  margin: 0 0 1rem;
}
.uni-modal__desc {
  font-size: 0.96rem;
  line-height: 1.6;
  color: #494345;
  margin: 0 0 1.4rem;
}
.uni-modal__meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 0 0 1.5rem;
}
.uni-modal__meta dt {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ED1C24;
  margin-bottom: 0.3rem;
}
.uni-modal__meta dd {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 0.92rem;
  color: #1A1718;
}
.uni-modal__cta .btn {
  width: 100%;
  justify-content: center;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes popIn {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.legal-body p {
  color: #494345;
  margin-bottom: 1.1rem;
}
.legal-body h2 {
  font-family: "Crimson Pro", Georgia, "Times New Roman", serif;
  margin: 2rem 0 0.8rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid #C2C2C8;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1.35rem;
  transition: padding-block 0.2s ease;
}

.site-header.is-scrolled .nav {
  padding-block: 0.6rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: "Crimson Pro", Georgia, "Times New Roman", serif;
}
.brand .seal {
  font-size: 14px;
}
.brand__txt {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand__txt b {
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
}
.brand__txt span {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #494345;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  margin-top: 0.18rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.nav-links a {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: #494345;
  padding: 0.5rem 0.7rem;
  border-radius: 4px;
  transition: 0.15s;
  position: relative;
}
.nav-links a:hover {
  color: #1A1718;
  background: #ECECEE;
}
.nav-links a.active:not(.nav-cta) {
  color: #ED1C24;
  font-weight: 600;
}
.nav-links a.nav-cta {
  color: #fff;
  font-weight: 600;
}
.nav-links a.nav-cta:hover {
  color: #fff;
  background: #C8141B;
}

.nav-cta {
  margin-left: 0.4rem;
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0.4rem;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #1A1718;
  margin: 5px 0;
  transition: 0.25s;
}

.hero {
  position: relative;
  overflow: hidden;
  background-color: rgb(252, 238, 233);
  background-image: linear-gradient(180deg, rgba(252, 238, 233, 0) 0%, rgba(252, 238, 233, 0.5) 42%, rgba(252, 238, 233, 0.5) 58%, rgba(252, 238, 233, 0) 100%), url("../images/hero-texture-top.webp"), url("../images/hero-texture-bottom.webp");
  background-position: center, top center, bottom center;
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-size: cover, 100% auto, 100% auto;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding-block: clamp(5rem, 10vw, 8.5rem);
}
.hero__badges {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.4rem;
}
.hero h1 {
  margin-bottom: 1.2rem;
}
.hero .accent {
  color: #ED1C24;
}
.hero__media {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 24px 60px -20px rgba(94, 16, 19, 0.3);
}

.hero__eyebrow {
  display: block;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
  font-size: 0.74rem;
  color: #ED1C24;
  margin-bottom: 1.3rem;
  max-width: 30rem;
  line-height: 1.5;
}

.duo {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.02;
  margin-bottom: 0.6rem;
}
.duo__solid {
  display: block;
  color: #ED1C24;
  font-size: clamp(2.6rem, 6.2vw, 4.4rem);
}
.duo__outline {
  display: block;
  font-size: clamp(2.6rem, 6.2vw, 4.4rem);
  color: transparent;
  -webkit-text-stroke: 1.5px #ED1C24;
}

.hero__copy .hero__h1 {
  font-weight: 600;
  font-size: 3.8rem;
  margin: 1rem 0 1.7rem;
}

.hero__h1 em {
  font-style: italic;
  font-weight: 500;
  color: #1A1718;
}

.hero__logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: fit-content;
  margin-left: auto;
}
.hero__logo img {
  width: min(420px, 100%);
  border-radius: 10px;
  filter: drop-shadow(0 24px 50px rgba(237, 28, 36, 0.28));
}

.hero__chip {
  margin-top: 3rem;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 0.84rem;
  font-weight: 500;
  color: #1A1718;
  background: #fff;
  border: 1px solid #C2C2C8;
  border-radius: 99px;
  padding: 0.55rem 1.25rem;
}

.band-dark {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(155deg, #9B1B1F 0%, #5E1013 100%);
}
.band-dark h2, .band-dark h3 {
  color: #fff;
}
.band-dark .lead {
  color: rgba(255, 255, 255, 0.82);
}
.band-dark .subhead {
  color: #ffd9da;
}
.band-dark .feature-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
}
.band-dark .feature-card h3 {
  color: #fff;
}
.band-dark .feature-card p {
  color: rgba(255, 255, 255, 0.78);
}
.band-dark .card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
}
.band-dark .card h3 {
  color: #fff;
}
.band-dark .card p {
  color: rgba(255, 255, 255, 0.78);
}
.band-dark .card:hover {
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 18px 40px -16px rgba(0, 0, 0, 0.5);
}

.band-dark.band-texture {
  background: linear-gradient(155deg, rgba(122, 10, 5, 0.82) 0%, rgba(43, 10, 8, 0.92) 100%), url("../images/bg-texture.jpg") center/cover no-repeat;
}

.band-dark .feature-card__ic {
  background: rgba(255, 255, 255, 0.12);
  color: #ffd9da;
}

.band-soft {
  background: #ECECEE;
  border-block: 1px solid #C2C2C8;
}

.journey {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  counter-reset: step;
}

.step {
  position: relative;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 1.6rem 1.4rem;
}
.step h3 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}
.step p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  margin: 0;
}

.step__num {
  font-family: "Crimson Pro", Georgia, "Times New Roman", serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: #ffd9da;
  display: block;
  margin-bottom: 0.5rem;
}

.journey .step {
  background: #fff;
  border: 1px solid #D9D9DD;
  box-shadow: 0 10px 30px -12px rgba(94, 16, 19, 0.22);
}
.journey .step .step__num {
  color: #ED1C24;
}
.journey .step h3 {
  color: #1A1718;
}
.journey .step p {
  color: #494345;
}

@media (min-width: 981px) {
  .journey .step:nth-child(4) {
    grid-area: 2/3;
  }
  .journey .step:nth-child(5) {
    grid-area: 2/2;
  }
  .journey .step:nth-child(6) {
    grid-area: 2/1;
  }
  .journey .step::after {
    content: "";
    position: absolute;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #ED1C24 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 6l6 6-6 6'/%3E%3C/svg%3E") center/16px no-repeat;
    box-shadow: 0 5px 14px -4px rgba(0, 0, 0, 0.5);
    z-index: 3;
  }
  .journey .step:nth-child(1)::after,
  .journey .step:nth-child(2)::after {
    right: calc(-0.6rem - 19px);
    top: 50%;
    transform: translateY(-50%);
  }
  .journey .step:nth-child(3)::after {
    bottom: calc(-0.6rem - 19px);
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
  }
  .journey .step:nth-child(4)::after,
  .journey .step:nth-child(5)::after {
    left: calc(-0.6rem - 19px);
    top: 50%;
    transform: translateY(-50%) rotate(180deg);
  }
  .journey .step:nth-child(6)::after {
    content: none;
  }
}
@media (max-width: 680px) {
  .journey .step:not(:last-child)::after {
    content: "";
    position: absolute;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #ED1C24 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 6l6 6-6 6'/%3E%3C/svg%3E") center/16px no-repeat;
    box-shadow: 0 5px 14px -4px rgba(0, 0, 0, 0.5);
    z-index: 3;
    bottom: calc(-0.6rem - 19px);
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
  }
}
.units-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 1rem;
}
.units-grid .units-head {
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0.5rem 0.5rem;
}
.units-grid .units-head .subhead {
  color: #ffd9da;
}
.units-grid .units-head h2 {
  color: #fff;
}
.units-grid .unit-card {
  background: #fff;
  border: 1px solid #D9D9DD;
  border-radius: 8px;
  padding: 1.6rem;
  transition: 0.2s ease;
  box-shadow: 0 10px 30px -12px rgba(94, 16, 19, 0.22);
}
.units-grid .unit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px -20px rgba(94, 16, 19, 0.3);
  border-color: #ED1C24;
}
.units-grid .unit-card h3 {
  font-size: 1.15rem;
  color: #1A1718;
  margin-bottom: 0.5rem;
}
.units-grid .unit-card p {
  font-size: 0.93rem;
  color: #494345;
  margin: 0;
}

.pathway {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem;
}

.pathway__card {
  background: #fff;
  border: 1px solid #D9D9DD;
  border-radius: 10px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
}
.pathway__card h3 {
  font-size: 1.7rem;
  color: #9B1B1F;
  margin-bottom: 0.7rem;
}
.pathway__card p {
  color: var(--ink-soft);
}
.pathway__card .btn {
  align-self: flex-start;
  margin-top: 1.5rem;
}

.pathway__num {
  font-family: "Crimson Pro", Georgia, "Times New Roman", serif;
  font-weight: 700;
  color: #ED1C24;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.3rem;
  display: block;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.split:has(.split__col-fill) {
  align-items: stretch;
}
.split--media-left .split__media {
  order: -1;
}

.split__sticky {
  position: sticky;
  top: 90px;
  align-self: start;
}

.split__col-fill {
  display: flex;
  flex-direction: column;
}

.fill-media {
  flex: 1;
  min-height: 200px;
  margin-top: 1.5rem;
  border-radius: 8px;
  overflow: hidden;
  background: linear-gradient(155deg, #9B1B1F 0%, #5E1013 100%);
  box-shadow: 0 10px 30px -12px rgba(94, 16, 19, 0.22);
}
.fill-media .placeholder {
  height: 100%;
}

.cta-band {
  text-align: center;
}
.cta-band h2 {
  margin-bottom: 0.8rem;
}
.cta-band .lead {
  margin: 0 auto 1.6rem;
}

.page-hero {
  background: linear-gradient(160deg, #fbf4f4, #eeeef5 80%);
  border-bottom: 1px solid #C2C2C8;
  padding-block: clamp(2.5rem, 6vw, 4.5rem);
}
.page-hero .lead {
  margin-top: 1rem;
}

.breadcrumb {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 0.8rem;
  color: #494345;
  margin-bottom: 1rem;
  letter-spacing: 0.03em;
}
.breadcrumb a:hover {
  color: #ED1C24;
}

/* About Page */
.about-content .display {
  margin-bottom: 24px;
}

.about-media {
  align-self: stretch;
}
.about-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transform: translateY(-30px);
}

@media (max-width: 980px) {
  .about-media {
    align-self: auto;
  }
  .about-media img {
    height: auto;
    max-height: 70vh;
    transform: none;
  }
}
.stories-media img {
  display: block;
  width: 90%;
  height: auto;
  margin-inline: auto;
}

.stories-copy {
  align-self: center;
}

.stories-section {
  padding-block: clamp(2.5rem, 6vw, 5rem);
}

.mission-vision {
  background: #ececee;
}

.site-footer {
  background: #1A1718;
  color: rgba(255, 255, 255, 0.72);
  padding-block: 3.5rem 2rem;
  font-size: 0.92rem;
}
.site-footer h4 {
  color: #fff;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-weight: 600;
}
.site-footer a {
  color: rgba(255, 255, 255, 0.7);
  display: block;
  padding: 0.28rem 0;
  transition: 0.15s;
}
.site-footer a:hover {
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  max-width: 34ch;
  font-size: 0.9rem;
}
.footer-brand .seal {
  font-size: 13px;
  margin-bottom: 1rem;
}

.site-footer .socials {
  display: flex;
  gap: 0.7rem;
  margin-top: 0.4rem;
}
.site-footer .socials a {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: 0.15s;
}
.site-footer .socials a:hover {
  background: #ED1C24;
  color: #fff;
  border-color: #ED1C24;
}
.site-footer .socials a svg {
  width: 18px;
  height: 18px;
}

.footer-legal {
  display: inline-flex;
  gap: 1.2rem;
}
.footer-legal a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-accred {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 0.6rem;
}
.footer-accred span {
  font-size: 0.72rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 980px) {
  .hero__inner {
    grid-template-columns: 1fr;
  }
  .hero__logo {
    order: -1;
    margin-bottom: 1rem;
  }
  .impact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .course-meta {
    grid-template-columns: 1fr;
  }
  .hero__media {
    aspect-ratio: 16/10;
    max-height: 360px;
    order: -1;
  }
  .grid-4, .facts, .affils {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-3, .journey, .intakes {
    grid-template-columns: 1fr 1fr;
  }
  .uni-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .degree-cols {
    columns: 2;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .split, .form-wrap {
    grid-template-columns: 1fr;
  }
  .split--media-left .split__media {
    order: 0;
  }
  .units-grid {
    grid-template-columns: 1fr 1fr;
  }
  .units-grid .units-head {
    grid-column: span 2;
  }
  .assess-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 680px) {
  body {
    font-size: 16px;
  }
  .tmt-slider {
    padding-inline: 2.6rem;
  }
  .tmt-nav {
    width: 38px;
    height: 38px;
  }
  .tmt-nav svg {
    width: 18px;
    height: 18px;
  }
  .impact-grid {
    grid-template-columns: 1fr;
  }
  .uni-row__loc {
    display: none;
  }
  .uni-modal__meta {
    grid-template-columns: 1fr;
  }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #F6F6F7;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem clamp(1.25rem, 4vw, 3rem);
    gap: 0.2rem;
    border-bottom: 1px solid #D9D9DD;
    box-shadow: 0 10px 30px -12px rgba(94, 16, 19, 0.22);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: 0.2s;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links a {
    padding: 0.7rem 0.5rem;
  }
  .nav-cta {
    margin: 0.4rem 0 0;
  }
  .nav-toggle {
    display: block;
  }
  .stats, .grid-3, .grid-4, .facts, .journey, .intakes, .pathway, .uni-grid, .affils, .grid-2 {
    grid-template-columns: 1fr;
  }
  .degree-cols {
    columns: 1;
  }
  .field-row {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .wa-float {
    padding: 0.9rem;
  }
  .wa-float .wa-txt {
    display: none;
  }
  .hero__badges {
    justify-content: flex-start;
  }
  .units-grid {
    grid-template-columns: 1fr;
  }
  .units-grid .units-head {
    grid-column: span 1;
  }
  .assess-grid {
    grid-template-columns: 1fr;
  }
}

/*# sourceMappingURL=style.css.map */
