:root {
  --ink: #172033;
  --muted: #607086;
  --paper: #ffffff;
  --soft: #f6f8fc;
  --line: #dbe4f0;
  --primary: #062b63;
  --primary-dark: #031d43;
  --primary-soft: #eaf2ff;
  --navy: #062b63;
  --orange: #f58220;
  --orange-dark: #d96500;
  --green: #2f9b64;
  --shadow: 0 18px 45px rgba(6, 43, 99, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

img,
svg {
  display: block;
}

svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: currentColor;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: var(--paper);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
}

.topbar {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 4vw;
  color: #f3f4f6;
  background: var(--primary-dark);
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.topbar__mail,
.topbar__links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.topbar__links a {
  padding: 8px 4px;
  color: #e5e7eb;
}

.mainnav {
  min-height: 58px;
  display: flex;
  align-items: stretch;
  background: var(--primary);
  color: #fff;
}

.mainnav a,
.mainnav button {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  border: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  color: #fff;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.01em;
  font-size: 0.92rem;
  cursor: pointer;
  white-space: nowrap;
}

.mainnav__home {
  background: #fff;
  color: var(--primary) !important;
}

.mainnav__menu {
  display: flex;
  flex: 1;
  overflow: visible;
}

.nav-item {
  position: relative;
  display: flex;
}

.nav-link::after {
  content: "";
  width: 0;
  height: 0;
  margin-left: 8px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
}

.dropdown {
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 40;
  min-width: 230px;
  display: grid;
  padding: 8px 0;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.dropdown--wide {
  min-width: 330px;
}

.dropdown a {
  min-height: auto;
  justify-content: flex-start;
  padding: 12px 16px;
  border: 0;
  color: var(--primary);
  background: #fff;
  white-space: normal;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.3;
}

.dropdown a:hover,
.dropdown a:focus {
  color: var(--orange);
  background: var(--primary-soft);
}

.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mainnav__toggle {
  display: none !important;
  width: 58px;
  margin-left: auto;
  flex-direction: column;
  gap: 5px;
}

.mainnav__toggle span {
  width: 24px;
  height: 2px;
  background: #fff;
}

.hero {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #f8fbff;
}

.hero__pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(6, 43, 99, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 43, 99, 0.06) 1px, transparent 1px);
  background-size: 84px 84px;
}

.hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  padding: 52px 24px;
  text-align: center;
}

.hero__logo {
  width: clamp(165px, 17vw, 225px);
  aspect-ratio: 1;
  object-fit: contain;
}

.hero h1 {
  max-width: 980px;
  margin: 22px 0 0;
  color: var(--primary);
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  line-height: 1.25;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.admission-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
  padding: 16px 32px;
  border-radius: 999px;
  color: var(--primary);
  background: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 800;
}

.hero__badge {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: 12px;
  color: #fff;
  font-size: clamp(1.1rem, 2.1vw, 1.6rem);
  font-weight: 900;
}

.hero__badge span {
  min-width: 190px;
  padding: 18px 32px;
  border-radius: 0 18px 18px 0;
  background: var(--primary);
  box-shadow: var(--shadow);
  text-align: center;
}

.hero__badge::after {
  content: "";
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
}

.hero__badge--left {
  left: 10vw;
  bottom: 120px;
}

.hero__badge--left::after {
  border-left: 20px solid var(--primary);
  margin-left: 18px;
}

.hero__badge--right {
  right: 10vw;
  top: 132px;
}

.hero__badge--right span {
  border-radius: 18px 0 0 18px;
  background: var(--orange);
}

.hero__badge--right::after {
  justify-self: start;
  border-right: 20px solid var(--orange);
  margin-left: 18px;
}

.hero__mark {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.book-stack,
.mentor-card {
  position: absolute;
  filter: drop-shadow(0 18px 20px rgba(0, 0, 0, 0.14));
}

.book-stack {
  top: 88px;
  left: 14vw;
  width: 120px;
  height: 110px;
  transform: rotate(-13deg);
}

.book-stack::before,
.book-stack::after,
.book-stack {
  border-radius: 12px;
  background:
    linear-gradient(90deg, transparent 18%, rgba(255, 255, 255, 0.5) 18% 23%, transparent 23%),
    linear-gradient(#92bde6 0 28%, #ffe0a2 28% 38%, #b09bd4 38% 65%, #f4a17e 65%);
}

.book-stack::before,
.book-stack::after {
  content: "";
  position: absolute;
  left: 12px;
  width: 96px;
  height: 22px;
  background: #fee7b1;
}

.book-stack::before {
  top: 32px;
}

.book-stack::after {
  top: 66px;
  background: #f6c1a6;
}

.mentor-card {
  right: 12vw;
  bottom: 76px;
  width: 128px;
  height: 128px;
  border: 10px solid var(--primary-dark);
  border-radius: 50% 50% 44% 44%;
  background:
    radial-gradient(circle at 45% 34%, #f4c38f 0 25%, transparent 26%),
    radial-gradient(circle at 38% 40%, #8fd3ee 0 7%, transparent 8%),
    radial-gradient(circle at 56% 40%, #8fd3ee 0 7%, transparent 8%),
    linear-gradient(#fff 53%, #f6f0cf 53%);
}

.notice {
  overflow: hidden;
  background: var(--primary-dark);
  color: #fff;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.notice__track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.notice span {
  padding: 12px 28px;
  white-space: nowrap;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.mission-visual {
  background: var(--primary);
}

.mission-visual__art {
  min-height: 360px;
  overflow: hidden;
  border-radius: 0 0 40px 40px;
}

.campus-scene {
  position: relative;
  min-height: 430px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.58), transparent 25%),
    linear-gradient(#dff7ee 0 42%, #a5d98f 42% 62%, #f3d38a 62%);
}

.sun {
  position: absolute;
  top: 44px;
  right: 10vw;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #f8c648;
}

.building {
  position: absolute;
  bottom: 155px;
  height: 130px;
  border: 5px solid rgba(32, 34, 37, 0.22);
  box-shadow: 0 14px 0 rgba(32, 34, 37, 0.08);
}

.building--one {
  left: 5vw;
  width: 180px;
  background: #68cbd0;
}

.building--two {
  left: 20vw;
  width: 220px;
  background: #f5a04d;
}

.building--three {
  right: 25vw;
  width: 250px;
  background: #f4d56f;
}

.walkway {
  position: absolute;
  left: 31%;
  bottom: 0;
  width: 320px;
  height: 235px;
  clip-path: polygon(42% 0, 58% 0, 100% 100%, 0 100%);
  background: #efd48d;
}

.student {
  position: absolute;
  bottom: 72px;
  width: 52px;
  height: 118px;
  border-radius: 28px 28px 10px 10px;
  background: linear-gradient(#fff 0 22%, var(--navy) 22% 60%, #1f2937 60%);
}

.student::before {
  content: "";
  position: absolute;
  left: 10px;
  top: -24px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #d99b68;
}

.student--one {
  left: 42vw;
}

.student--two {
  left: 49vw;
  transform: scale(0.9);
  background: linear-gradient(#fff 0 22%, var(--orange) 22% 60%, #1f2937 60%);
}

.student--three {
  left: 56vw;
  transform: scale(1.05);
  background: linear-gradient(#fff 0 22%, var(--green) 22% 60%, #1f2937 60%);
}

.board {
  position: absolute;
  right: 4vw;
  bottom: 92px;
  max-width: 380px;
  padding: 24px;
  border: 8px solid #fff;
  background: linear-gradient(90deg, #eaf7f1, #fff, #ffead6);
  color: var(--navy);
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  font-weight: 900;
  text-align: center;
  box-shadow: var(--shadow);
}

.section {
  padding: 72px 5vw;
}

.section__head {
  max-width: 980px;
  margin: 0 auto 34px;
  text-align: center;
}

.section__head p,
.split-band p,
.verification__panel p,
.partners > p,
.career p,
.awards__intro span {
  margin: 0 0 10px;
  color: var(--orange);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section__head h2,
.split-band h2,
.verification__panel h2,
.career h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.12;
  letter-spacing: 0;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  max-width: 1180px;
  margin: -52px auto 0;
  position: relative;
  z-index: 4;
  padding: 0 5vw;
}

.stat-card {
  min-height: 170px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  padding: 28px;
  color: #fff;
  text-align: center;
  background: var(--primary);
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.stat-card:nth-child(2),
.stat-card:nth-child(4) {
  background: var(--orange);
}

.stat-card strong {
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  line-height: 1;
}

.stat-card span {
  font-weight: 800;
  text-transform: uppercase;
}

.programs__content {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 44px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.programs__content h3 {
  margin: 0 0 16px;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.programs__content p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.program-grid,
.timeline,
.course-list__grid,
.gallery__grid,
.awards__list,
.testimonial-track {
  display: grid;
  gap: 18px;
}

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

.program-grid article,
.timeline article,
.testimonial-track article {
  min-height: 170px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(16, 24, 40, 0.08);
}

.program-grid span,
.timeline span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
  border-radius: 50%;
  color: #fff;
  background: var(--orange);
  font-weight: 900;
}

.program-grid h4,
.timeline h3,
.testimonial-track h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 1.25rem;
}

.program-grid p,
.timeline p,
.testimonial-track p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

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

.timeline {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 1200px;
  margin: 0 auto;
}

.split-band {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.split-band > div {
  padding: 72px 6vw;
  background: #fff;
}

.course-list__grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 1200px;
  margin: 0 auto;
}

.course-list__grid a {
  min-height: 76px;
  display: flex;
  align-items: center;
  padding: 18px 20px;
  border-left: 5px solid var(--orange);
  background: var(--primary-soft);
  color: var(--navy);
  font-weight: 800;
}

.verification {
  background: linear-gradient(110deg, var(--primary-dark), var(--primary));
}

.verification__panel {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
  color: #fff;
}

.verification__panel p {
  color: #ffb366;
}

.verify-form,
.enquiry-form,
.newsletter {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 8px;
  color: inherit;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 14px 16px;
  color: var(--ink);
  background: #fff;
}

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

button,
.career a,
.verify-form button,
.enquiry-form button,
.newsletter button {
  min-height: 48px;
  border: 0;
  border-radius: 6px;
  padding: 0 22px;
  color: #fff;
  background: var(--orange);
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.gallery__grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 1200px;
  margin: 0 auto;
}

.gallery__grid article {
  min-height: 190px;
  display: grid;
  align-items: end;
  padding: 22px;
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.5)),
    linear-gradient(135deg, #dceaff, #f7c47a 45%, #f58220);
}

.gallery__grid article:nth-child(2n) {
  background:
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.5)),
    linear-gradient(135deg, #eaf2ff, #7aa8de 52%, #f5a04d);
}

.gallery__grid span {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 900;
}

.awards {
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 34px;
  max-width: 1300px;
  margin: 0 auto;
}

.awards__intro {
  padding: 34px;
  color: #fff;
  background: var(--primary);
}

.awards__intro strong {
  display: block;
  font-size: 6rem;
  line-height: 0.9;
}

.awards__intro span {
  color: #fff;
}

.awards__intro h2 {
  margin: 6px 0 18px;
  font-size: 2.6rem;
}

.awards__intro p {
  margin: 0;
  line-height: 1.6;
}

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

.awards__list article {
  min-height: 142px;
  display: grid;
  align-content: space-between;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(16, 24, 40, 0.08);
}

.awards__list span {
  width: max-content;
  padding: 8px 14px;
  border-radius: 999px;
  color: #fff;
  background: var(--orange);
  font-weight: 900;
}

.awards__list p {
  margin: 16px 0 0;
  color: var(--ink);
  font-weight: 800;
}

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

.testimonial-track {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1100px;
  margin: 0 auto;
}

.testimonial-track article::before {
  content: "";
  display: block;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 34%, #d99b68 0 20%, transparent 21%),
    radial-gradient(circle at 50% 100%, var(--navy) 0 42%, transparent 43%),
    #eef2f7;
}

.partners {
  text-align: center;
}

.partner-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  max-width: 1100px;
  margin: 28px auto 0;
}

.partner-strip span {
  min-height: 74px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: #fff;
  font-weight: 900;
}

.online-form {
  background: var(--soft);
}

.enquiry-form {
  max-width: 850px;
  margin: 0 auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 34px;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.enquiry-form label:last-of-type,
.enquiry-form button {
  grid-column: 1 / -1;
}

.career {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: var(--primary);
  color: #fff;
}

.career p {
  color: #ffbf75;
}

.career a {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.footer {
  color: #e5e7eb;
  background: var(--primary-dark);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.9fr 1fr;
  gap: 34px;
  padding: 64px 5vw 36px;
}

.footer h2,
.footer h3 {
  margin: 0 0 18px;
  color: #fff;
}

.footer h2 {
  font-size: 2.8rem;
}

.footer p,
.footer address {
  margin: 0 0 16px;
  color: #c8ced6;
  line-height: 1.65;
  font-style: normal;
}

.footer a {
  display: block;
  margin: 10px 0;
  color: #fff;
}

.map-card {
  display: grid;
  place-items: center;
  min-height: 120px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: #aeb7c2;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 22px 22px;
}

.newsletter {
  grid-template-columns: 1fr auto;
  gap: 0;
}

.newsletter input {
  border-radius: 6px 0 0 6px;
}

.newsletter button {
  border-radius: 0 6px 6px 0;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 5vw;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer__bottom p {
  margin: 0;
}

.chat-button {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 20;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 0 22px;
  border-radius: 999px;
  color: #fff;
  background: var(--orange);
  box-shadow: var(--shadow);
  font-weight: 800;
}

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

.page-hero {
  display: grid;
  justify-items: center;
  gap: 14px;
  padding: 72px 5vw 58px;
  text-align: center;
  background:
    linear-gradient(rgba(6, 43, 99, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 43, 99, 0.06) 1px, transparent 1px),
    #f8fbff;
  background-size: 76px 76px;
}

.page-hero img {
  width: 118px;
  height: 118px;
  object-fit: contain;
}

.page-hero p {
  margin: 8px 0 0;
  color: var(--orange);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.page-hero h1 {
  max-width: 980px;
  margin: 0;
  color: var(--primary);
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.page-hero span {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.65;
}

.page-content {
  max-width: 1180px;
  margin: 0 auto;
  padding: 54px 5vw 76px;
}

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

.content-grid article,
.page-card-grid article,
.resource-list a {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(6, 43, 99, 0.08);
}

.content-grid article {
  padding: 28px;
}

.content-grid h2 {
  margin: 0 0 12px;
  color: var(--primary);
}

.content-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.page-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.page-card-grid article {
  min-height: 92px;
  display: grid;
  place-items: center;
  padding: 20px;
  color: var(--primary);
  font-weight: 900;
  text-align: center;
}

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

.resource-list a {
  min-height: 64px;
  display: flex;
  align-items: center;
  padding: 16px 18px;
  border-left: 5px solid var(--orange);
  color: var(--primary);
  font-weight: 800;
}

.resource-list a:hover,
.resource-list a:focus {
  color: var(--orange);
  background: var(--primary-soft);
}

.page-form {
  margin: 0 auto;
}

@media (max-width: 1100px) {
  .hero__badge--left {
    left: 4vw;
  }

  .hero__badge--right {
    right: 4vw;
  }

  .stats,
  .timeline,
  .course-list__grid,
  .gallery__grid,
  .partner-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .programs__content,
  .verification__panel,
  .awards,
  .footer__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
    padding: 12px 18px;
    gap: 8px;
    font-size: 0.78rem;
  }

  .topbar__links {
    flex-wrap: wrap;
    gap: 10px;
  }

  .mainnav {
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .mainnav__home {
    display: none !important;
  }

  .mainnav__toggle {
    display: inline-flex !important;
    align-self: flex-start;
  }

  .mainnav__menu {
    display: none;
    flex: 0 0 100%;
    width: 100%;
    flex-direction: column;
    overflow: visible;
  }

  .mainnav__menu.is-open {
    display: flex;
  }

  .nav-item {
    display: block;
  }

  .dropdown {
    position: static;
    min-width: 0;
    padding: 0 0 8px 20px;
    border: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: rgba(0, 0, 0, 0.08);
  }

  .dropdown a {
    color: #fff;
    background: transparent;
    font-size: 0.86rem;
  }

  .mainnav a,
  .mainnav button {
    justify-content: flex-start;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }

  .hero {
    min-height: 590px;
  }

  .hero__content {
    padding-top: 108px;
  }

  .hero__badge {
    font-size: 1rem;
  }

  .hero__badge span {
    min-width: 140px;
    padding: 12px 16px;
  }

  .hero__badge--left {
    display: none;
  }

  .hero__badge--right {
    right: 18px;
    top: 86px;
  }

  .book-stack {
    left: 9vw;
    top: 78px;
    transform: scale(0.72) rotate(-13deg);
  }

  .mentor-card {
    right: 5vw;
    bottom: 42px;
    transform: scale(0.68);
  }

  .admission-pill {
    width: min(100%, 370px);
    justify-content: center;
    padding: 14px 18px;
  }

  .mission-visual__art {
    min-height: 320px;
  }

  .campus-scene {
    min-height: 360px;
  }

  .building--two,
  .student--three {
    display: none;
  }

  .building--three {
    right: 6vw;
    width: 180px;
  }

  .board {
    right: 18px;
    bottom: 40px;
    max-width: 220px;
    padding: 16px;
    font-size: 1.25rem;
  }

  .student--one {
    left: 26vw;
  }

  .student--two {
    left: 42vw;
  }

  .stats,
  .program-grid,
  .timeline,
  .split-band,
  .course-list__grid,
  .gallery__grid,
  .awards__list,
  .testimonial-track,
  .partner-strip,
  .enquiry-form,
  .content-grid,
  .page-card-grid,
  .resource-list {
    grid-template-columns: 1fr;
  }

  .stats {
    margin-top: 0;
    padding: 0;
  }

  .section {
    padding: 54px 20px;
  }

  .page-hero {
    padding: 54px 20px 44px;
  }

  .page-content {
    padding: 36px 20px 60px;
  }

  .verification__panel {
    gap: 24px;
  }

  .career,
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .newsletter {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .newsletter input,
  .newsletter button {
    border-radius: 6px;
  }

  .chat-button {
    left: 14px;
    bottom: 14px;
    min-height: 52px;
  }
}
