:root {
  --bg: #f7f8f4;
  --surface: #ffffff;
  --soft: #eef5f1;
  --ink: #17212b;
  --muted: #65717d;
  --primary: #0f766e;
  --primary-dark: #0b5f59;
  --accent: #d97706;
  --navy: #18324a;
  --line: rgba(23, 33, 43, 0.12);
  --shadow: 0 22px 48px rgba(20, 45, 62, 0.12);
  --radius: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

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

.brand-mark {
  width: 58px;
  height: 58px;
  display: block;
  flex: 0 0 58px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 8px 18px rgba(20, 45, 62, 0.12);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-text {
  display: grid;
}

.brand-text strong {
  font-size: 1.05rem;
}

.brand-text small,
.site-nav a,
p,
li {
  color: var(--muted);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-weight: 700;
  font-size: 0.95rem;
}

.site-nav a {
  padding: 10px 0;
  border-bottom: 2px solid transparent;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--primary);
  border-color: var(--primary);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: #fff;
  background: var(--primary);
}

.button-primary:hover {
  background: var(--primary-dark);
}

.button-secondary {
  background: #fff;
  border-color: var(--line);
}

.button-light {
  color: var(--navy);
  background: #fff;
}

.hero {
  padding: 72px 0 44px;
}

.hero-grid,
.page-hero-grid,
.split-grid,
.image-band-grid,
.contact-grid,
.cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 34px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

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

h1,
h2 {
  font-family: "Fraunces", Georgia, serif;
  line-height: 1.06;
  color: var(--ink);
}

h1 {
  font-size: clamp(2.35rem, 5vw, 5rem);
  max-width: 11ch;
}

h2 {
  font-size: clamp(2rem, 3.4vw, 3.45rem);
}

h3 {
  color: var(--ink);
  font-size: 1.15rem;
}

p,
li {
  line-height: 1.72;
}

.hero-text {
  max-width: 620px;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0;
}

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

.stats-row article,
.card,
.story-panel,
.quote-card,
.result-card,
.lead-form,
.service-card,
.contact-methods article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.stats-row article {
  padding: 18px;
}

.stats-row strong {
  display: block;
  margin-bottom: 4px;
  color: var(--primary);
  font-size: 1.45rem;
}

.hero-media {
  position: relative;
}

.hero-media img,
.page-hero img,
.image-band img,
.destination-card img {
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-media img {
  height: min(620px, 70vh);
}

.hero-card {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: grid;
  gap: 6px;
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.hero-card strong {
  color: var(--navy);
}

.trust-strip {
  padding: 0 0 28px;
}

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

.trust-items span,
.compare-grid span {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--navy);
  text-align: center;
  font-weight: 800;
}

.section {
  padding: 74px 0;
}

.section-head {
  max-width: 780px;
  margin-bottom: 26px;
}

.feature-grid,
.cards-3,
.destination-grid,
.testimonial-grid {
  display: grid;
  gap: 18px;
}

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

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

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

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

.card,
.story-panel,
.quote-card,
.result-card {
  padding: 24px;
}

.pathway span,
.result-card span,
.service-card span {
  display: inline-grid;
  place-items: center;
  min-width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: var(--radius);
  color: #fff;
  background: var(--primary);
  font-weight: 800;
}

.image-band {
  background: var(--soft);
}

.image-band img,
.page-hero img {
  height: 430px;
}

.image-band-grid.reverse img {
  order: 2;
}

.text-link {
  color: var(--primary);
  font-weight: 800;
  border-bottom: 2px solid currentColor;
}

.cta-section {
  padding: 50px 0;
  color: #fff;
  background: var(--navy);
}

.cta-section h2,
.cta-section p {
  color: #fff;
}

.cta-section h2 {
  margin-bottom: 10px;
}

.cta-grid {
  grid-template-columns: 1fr auto;
}

.page-hero {
  padding: 70px 0;
  background: linear-gradient(135deg, #f1f8f5 0%, #ffffff 100%);
}

.page-hero h1 {
  max-width: 12ch;
}

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

.check-list {
  margin: 0;
  padding-left: 20px;
}

.check-list li + li {
  margin-top: 10px;
}

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

.timeline article {
  padding: 22px;
  border-top: 4px solid var(--accent);
  background: #fff;
  border-radius: var(--radius);
}

.timeline strong {
  display: block;
  margin-bottom: 8px;
  color: var(--primary);
  font-size: 1.6rem;
}

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

.service-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  padding: 24px;
  align-items: start;
}

.service-card h2 {
  margin-bottom: 8px;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
}

.destination-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.destination-card img {
  height: 190px;
  border-radius: 0;
  box-shadow: none;
}

.destination-card h3,
.destination-card p {
  margin-left: 18px;
  margin-right: 18px;
}

.destination-card h3 {
  margin-top: 18px;
}

.destination-card p {
  margin-bottom: 20px;
}

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

.result-card span {
  width: auto;
  padding: 0 12px;
  background: var(--accent);
}

.quote-card p {
  color: var(--ink);
  font-size: 1.05rem;
}

.contact-info h2 {
  max-width: 10ch;
}

.contact-methods {
  display: grid;
  gap: 14px;
}

.contact-methods article {
  display: grid;
  gap: 5px;
  padding: 18px;
}

.contact-methods span {
  color: var(--muted);
  font-weight: 700;
}

.lead-form {
  display: grid;
  gap: 15px;
  padding: 24px;
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 800;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfdfc;
  color: var(--ink);
  font: inherit;
}

.form-note {
  margin: 0;
  font-size: 0.92rem;
}

.site-footer {
  padding: 28px 0 36px;
  background: #fff;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-grid p {
  margin: 0;
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  margin: 5px 0;
  border-radius: 10px;
  background: var(--ink);
}

@media (max-width: 1040px) {
  .nav-cta {
    display: none;
  }

  .site-nav {
    gap: 14px;
    font-size: 0.9rem;
  }

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

@media (max-width: 860px) {
  .nav-wrap {
    min-height: 70px;
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    display: none;
    width: 100%;
    padding: 0 0 16px;
  }

  .site-nav.is-open {
    display: grid;
    gap: 8px;
  }

  .site-nav a {
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
  }

  .hero-grid,
  .page-hero-grid,
  .split-grid,
  .image-band-grid,
  .contact-grid,
  .cta-grid {
    grid-template-columns: 1fr;
  }

  .cta-grid {
    justify-items: start;
  }

  h1 {
    max-width: 13ch;
  }

  .hero,
  .page-hero,
  .section {
    padding: 48px 0;
  }

  .image-band-grid.reverse img {
    order: 0;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .stats-row,
  .trust-items,
  .feature-grid,
  .cards-3,
  .destination-grid,
  .testimonial-grid,
  .timeline,
  .compare-grid {
    grid-template-columns: 1fr;
  }

  .hero-media img,
  .page-hero img,
  .image-band img {
    height: 300px;
  }

  .hero-card {
    position: static;
    margin-top: 12px;
  }

  .service-card {
    grid-template-columns: 1fr;
  }

  .brand-text small {
    font-size: 0.72rem;
  }
}

/* Students Junctions home redesign */
.home-page {
  background: #ffffff;
  color: #0b2752;
}

.home-page h1,
.home-page h2,
.home-page h3 {
  font-family: "Oswald", Arial, sans-serif;
  letter-spacing: 0;
}

.home-topbar {
  min-height: 38px;
  color: #fff;
  background: #d9231e;
  font-size: 0.82rem;
  font-weight: 700;
}

.topbar-wrap {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.topbar-wrap p {
  margin: 0;
  color: #fff;
}

.topbar-wrap div {
  display: flex;
  gap: 20px;
}

.topbar-wrap a {
  color: #fff;
}

.home-header {
  position: absolute;
  top: 38px;
  left: 0;
  right: 0;
  z-index: 60;
  background: rgba(5, 20, 48, 0.82);
  border-bottom-color: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
}

.home-header .nav-wrap {
  min-height: 90px;
}

.home-header .brand-mark {
  width: 82px;
  height: 72px;
  flex-basis: 82px;
  border-radius: 4px;
  box-shadow: none;
}

.home-header .brand-text strong,
.home-header .site-nav a,
.home-header .brand-text small {
  color: #fff;
}

.home-header .site-nav a:hover,
.home-header .site-nav a.active {
  color: #ffd21a;
  border-color: #ffd21a;
}

.home-nav-cta {
  color: #082652;
  background: #ffd21a;
}

.banner-slider {
  position: relative;
  min-height: 730px;
  overflow: hidden;
  background: #071a3b;
}

.banner-slide {
  position: absolute;
  inset: 0;
  min-height: 730px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.banner-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.banner-slide-main > img {
  width: 100%;
  height: 100%;
  min-height: 730px;
  object-fit: cover;
}

.banner-shade {
  position: absolute;
  inset: 0;
  background: rgba(2, 14, 38, 0.7);
}

.banner-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-top: 118px;
  color: #fff;
}

.banner-content::before {
  content: "STUDENTS JUNCTIONS";
  display: block;
  margin-bottom: 16px;
  padding-left: 13px;
  border-left: 5px solid #d9231e;
  color: #fff;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.banner-kicker {
  margin: 0 0 14px;
  color: #ffd21a;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.banner-content h1 {
  max-width: 11ch;
  margin-bottom: 18px;
  color: #fff;
  font-size: clamp(3.4rem, 6vw, 6.4rem);
  text-transform: uppercase;
  line-height: 1;
}

.banner-content > p:not(.banner-kicker) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.1rem;
}

.banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 18px 0 26px;
}

.banner-primary {
  color: #09264f;
  background: #ffd21a;
}

.banner-primary:hover {
  background: #f2bd00;
}

.banner-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.65);
  background: transparent;
}

.banner-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.banner-highlights span {
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  background: rgba(4, 31, 71, 0.7);
  font-size: 0.9rem;
  font-weight: 800;
}

.banner-slide-poster {
  padding-top: 130px;
  color: #fff;
  background: #082652;
}

.poster-slide-grid,
.scholarship-slide-grid {
  height: 600px;
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.poster-slide-copy h2,
.scholarship-copy h2 {
  max-width: 10ch;
  margin-bottom: 20px;
  color: #fff;
  font-size: clamp(2.7rem, 5vw, 5.2rem);
  line-height: 1;
  text-transform: uppercase;
}

.poster-slide-copy > p,
.scholarship-copy > p,
.scholarship-copy li {
  color: rgba(255, 255, 255, 0.8);
}

.offer-box {
  display: grid;
  max-width: 440px;
  margin: 24px 0;
  padding: 18px 20px;
  border-left: 6px solid #d9231e;
  background: #ffd21a;
  color: #082652;
}

.offer-box strong {
  font-family: "Oswald", Arial, sans-serif;
  font-size: 2rem;
  text-transform: uppercase;
}

.poster-frame,
.scholarship-form-preview {
  height: 540px;
  overflow: hidden;
  border: 5px solid #ffd21a;
  background: #fff;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
}

.poster-frame img,
.scholarship-form-preview img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.banner-slide-scholarship {
  padding-top: 130px;
  color: #fff;
  background: #b71817;
}

.scholarship-slide-grid {
  grid-template-columns: 0.75fr 1fr;
}

.scholarship-copy ul {
  margin: 0 0 24px;
  padding-left: 20px;
}

.slider-arrow {
  position: absolute;
  top: 52%;
  z-index: 10;
  width: 48px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 0;
  color: #082652;
  background: #ffd21a;
  font-size: 2.4rem;
  cursor: pointer;
}

.slider-prev { left: 0; }
.slider-next { right: 0; }

.slider-dots {
  position: absolute;
  left: 50%;
  bottom: 22px;
  z-index: 12;
  display: flex;
  gap: 9px;
  transform: translateX(-50%);
}

.slider-dots button {
  width: 34px;
  height: 5px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.46);
  cursor: pointer;
}

.slider-dots button.is-active {
  background: #ffd21a;
}

.quick-strip {
  color: #fff;
  background: #d9231e;
}

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

.quick-grid article {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 92px;
  border-right: 1px solid rgba(255, 255, 255, 0.24);
}

.quick-grid article:last-child { border-right: 0; }
.quick-grid strong { color: #ffd21a; font-family: "Oswald", Arial, sans-serif; font-size: 2.2rem; }
.quick-grid span { font-weight: 800; }

.admission-section,
.scholarship-section {
  padding: 80px 0;
}

.home-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 28px;
}

.home-section-head > div { max-width: 650px; }
.home-section-head > p { max-width: 500px; margin: 0; }
.home-section-head h2,
.scholarship-feature h2,
.home-contact-grid h2 { margin: 0; color: #082652; font-size: clamp(2.3rem, 4vw, 4rem); text-transform: uppercase; }

.home-label {
  margin-bottom: 8px;
  color: #d9231e;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.course-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: 24px;
  align-items: stretch;
}

.course-table-wrap {
  overflow-x: auto;
  border: 1px solid #cad4e2;
}

.course-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  background: #fff;
}

.course-table th,
.course-table td {
  padding: 15px 18px;
  border-bottom: 1px solid #d8e0ea;
  text-align: left;
}

.course-table th {
  color: #082652;
  background: #ffd21a;
  font-family: "Oswald", Arial, sans-serif;
  font-size: 1.1rem;
  text-transform: uppercase;
}

.course-table td:first-child { color: #082652; font-weight: 800; }
.course-table td:nth-child(2),
.course-table td:nth-child(3) { font-weight: 800; }
.course-table tbody tr:nth-child(even) { background: #edf3f9; }
.course-table tfoot td { color: #fff; background: #082652; font-family: "Oswald", Arial, sans-serif; font-size: 1.35rem; text-transform: uppercase; }
.course-table tfoot td:last-child { color: #ffd21a; font-size: 1.8rem; }

.admission-panel {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  background: #082652;
}

.admission-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.26;
}

.admission-panel > div {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 30px;
  color: #fff;
}

.admission-panel span { color: #ffd21a; font-weight: 800; text-transform: uppercase; }
.admission-panel h3 { margin: 8px 0; color: #fff; font-size: 2.4rem; text-transform: uppercase; }
.admission-panel p { color: rgba(255, 255, 255, 0.8); }

.facilities-section {
  padding: 76px 0;
  color: #fff;
  background: #082652;
}

.home-section-head.light h2,
.home-section-head.light p { color: #fff; }

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

.facility-grid article {
  padding: 28px;
  border-top: 5px solid #ffd21a;
  background: #0d376f;
}

.facility-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  color: #082652;
  background: #ffd21a;
  font-family: "Oswald", Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
}

.facility-grid h3 { color: #fff; font-size: 1.5rem; }
.facility-grid p { margin: 0; color: rgba(255, 255, 255, 0.75); }

.scholarship-feature {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: 54px;
  align-items: center;
}

.scholarship-image {
  height: 560px;
  overflow: hidden;
  border: 8px solid #082652;
  box-shadow: 18px 18px 0 #ffd21a;
}

.scholarship-image img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.scholarship-feature > div:last-child > p:not(.home-label) { max-width: 650px; }

.scholarship-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0;
}

.scholarship-tags span {
  padding: 10px 12px;
  color: #082652;
  background: #fff3b6;
  border-left: 4px solid #d9231e;
  font-weight: 800;
}

.registration-section {
  padding: 88px 0;
  background: #edf3f9;
}

.registration-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 44px;
  align-items: start;
}

.registration-intro {
  position: sticky;
  top: 110px;
}

.registration-intro h2 {
  margin-bottom: 18px;
  color: #082652;
  font-size: clamp(2.5rem, 4.4vw, 4.4rem);
  text-transform: uppercase;
}

.registration-intro > p:not(.home-label) {
  max-width: 530px;
}

.registration-benefits {
  display: grid;
  gap: 10px;
  margin: 28px 0;
}

.registration-benefits article {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #c9d5e2;
}

.registration-benefits strong {
  color: #d9231e;
  font-family: "Oswald", Arial, sans-serif;
  font-size: 1.35rem;
}

.registration-benefits span {
  color: #082652;
  font-weight: 800;
}

.registration-help {
  display: grid;
  gap: 5px;
  padding: 18px;
  border-left: 5px solid #d9231e;
  background: #ffd21a;
}

.registration-help span {
  color: #082652;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.registration-help a {
  color: #082652;
  font-family: "Oswald", Arial, sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
}

.registration-form {
  padding: 30px;
  border: 1px solid #cad4e2;
  border-top: 7px solid #d9231e;
  background: #fff;
  box-shadow: 0 20px 50px rgba(8, 38, 82, 0.12);
}

.form-heading {
  display: grid;
  gap: 3px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid #d8e0ea;
}

.form-heading span {
  color: #d9231e;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.form-heading strong {
  color: #082652;
  font-family: "Oswald", Arial, sans-serif;
  font-size: 1.8rem;
  text-transform: uppercase;
}

.registration-form fieldset {
  min-width: 0;
  margin: 0 0 26px;
  padding: 0;
  border: 0;
}

.registration-form legend {
  width: 100%;
  margin-bottom: 15px;
  padding-bottom: 9px;
  border-bottom: 2px solid #ffd21a;
  color: #082652;
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
}

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

.registration-form label {
  display: grid;
  gap: 7px;
  color: #203650;
  font-size: 0.86rem;
  font-weight: 800;
}

.registration-form input,
.registration-form select,
.registration-form textarea {
  width: 100%;
  min-width: 0;
  padding: 12px 13px;
  border: 1px solid #c5d0dd;
  border-radius: 4px;
  background: #f9fbfd;
  color: #17212b;
  font: inherit;
}

.registration-form input:focus,
.registration-form select:focus,
.registration-form textarea:focus {
  border-color: #082652;
  outline: 2px solid rgba(8, 38, 82, 0.12);
}

.form-span-2 {
  grid-column: 1 / -1;
}

.form-consent {
  grid-template-columns: 18px 1fr !important;
  align-items: start;
  margin: 4px 0 20px;
  font-weight: 600 !important;
  line-height: 1.5;
}

.form-consent input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
}

.registration-submit {
  width: 100%;
  min-height: 52px;
  color: #fff;
  background: #d9231e;
}

.registration-submit:hover {
  background: #b71817;
}

.registration-status {
  margin: 12px 0 0;
  color: #137044;
  font-weight: 800;
  text-align: center;
}

.home-contact-cta {
  padding: 44px 0;
  color: #fff;
  background: #d9231e;
}

.home-contact-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
}

.home-contact-grid p { margin-bottom: 5px; color: #ffd21a; font-weight: 800; text-transform: uppercase; }
.home-contact-grid h2 { color: #fff; }
.home-contact-grid > a { display: grid; min-width: 310px; padding: 17px 22px; color: #082652; background: #ffd21a; }
.home-contact-grid > a span { font-size: 0.82rem; font-weight: 800; text-transform: uppercase; }
.home-contact-grid > a strong { font-family: "Oswald", Arial, sans-serif; font-size: 2.5rem; }

.contact-dock {
  position: fixed;
  left: 0;
  top: 48%;
  z-index: 80;
  display: grid;
  gap: 5px;
}

.contact-dock a {
  width: 48px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #fff;
  background: #d9231e;
  font-size: 0.72rem;
  font-weight: 800;
}

.contact-dock a:last-child { background: #159447; }
.home-footer { color: #fff; background: #061a3d; border-top: 0; }
.home-footer p { color: rgba(255, 255, 255, 0.72); }

@media (max-width: 980px) {
  .home-header { background: #061a3d; }
  .home-header .nav-toggle span { background: #fff; }
  .home-header .site-nav a { color: #082652; }
  .home-nav-cta { display: none; }
  .poster-slide-grid,
  .scholarship-slide-grid { gap: 24px; }
  .course-layout { grid-template-columns: 1fr; }
  .admission-panel { min-height: 420px; }
  .registration-layout { grid-template-columns: 1fr; }
  .registration-intro { position: static; }
}

@media (max-width: 860px) {
  .banner-slider,
  .banner-slide { min-height: 820px; }
  .banner-slide-main > img { min-height: 820px; }
  .poster-slide-grid,
  .scholarship-slide-grid { height: 690px; grid-template-columns: 1fr 0.85fr; }
  .poster-frame,
  .scholarship-form-preview { height: 440px; }
  .quick-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .quick-grid article:nth-child(2) { border-right: 0; }
  .home-section-head { align-items: start; flex-direction: column; }
  .facility-grid { grid-template-columns: 1fr; }
  .scholarship-feature { grid-template-columns: 1fr; }
  .scholarship-image { width: min(100%, 520px); }
  .home-contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .home-topbar { display: none; }
  .home-header { top: 0; position: absolute; }
  .home-header .nav-wrap { min-height: 76px; }
  .home-header .brand-mark { width: 52px; height: 52px; flex-basis: 52px; }
  .banner-slider,
  .banner-slide { min-height: 780px; }
  .banner-slide-main > img { min-height: 780px; }
  .banner-content { padding-top: 90px; }
  .banner-content h1 { font-size: clamp(3rem, 17vw, 4.6rem); }
  .banner-content > p:not(.banner-kicker) { font-size: 1rem; }
  .banner-highlights { display: grid; grid-template-columns: 1fr; }
  .slider-arrow { top: auto; bottom: 17px; width: 40px; height: 42px; }
  .poster-slide-grid,
  .scholarship-slide-grid { height: auto; min-height: 780px; grid-template-columns: 1fr; gap: 18px; padding-top: 88px; padding-bottom: 56px; }
  .poster-slide-copy h2,
  .scholarship-copy h2 { font-size: 2.4rem; }
  .poster-slide-copy p,
  .scholarship-copy p,
  .scholarship-copy li { line-height: 1.45; }
  .poster-frame,
  .scholarship-form-preview { height: 310px; }
  .scholarship-form-preview { order: 2; }
  .quick-grid { grid-template-columns: 1fr 1fr; }
  .quick-grid article { min-height: 82px; flex-direction: column; gap: 0; text-align: center; }
  .quick-grid strong { font-size: 1.65rem; }
  .quick-grid span { font-size: 0.8rem; }
  .admission-section,
  .scholarship-section { padding: 55px 0; }
  .course-layout { display: block; }
  .admission-panel { min-height: 380px; margin-top: 20px; }
  .scholarship-image { height: 460px; box-shadow: 10px 10px 0 #ffd21a; }
  .registration-section { padding: 55px 0; }
  .registration-form { padding: 20px 16px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-span-2 { grid-column: auto; }
  .home-contact-grid > a { min-width: 0; width: 100%; }
  .home-contact-grid > a strong { font-size: 2rem; }
  .contact-dock { top: auto; bottom: 16px; left: 12px; grid-auto-flow: column; }
}
