:root {
  --green: #053d2b;
  --green-2: #0b5b3f;
  --navy: #071a38;
  --gold: #d7a93a;
  --gold-2: #f1c85b;
  --cream: #fff9ec;
  --paper: #fffdf7;
  --soft: #f3f6f2;
  --ink: #12201b;
  --muted: #66736d;
  --line: rgba(5, 61, 43, 0.14);
  --shadow: 0 24px 70px rgba(7, 26, 56, 0.15);
  --round: 34px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; width: 100%; max-width: 100%; overflow-x: hidden; }
body {
  margin: 0;
  font-family: "Poppins", system-ui, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(215, 169, 58, 0.16), transparent 32rem),
    linear-gradient(180deg, #fffdf7 0%, #f7faf5 45%, #fff 100%);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p { line-height: 1.75; color: var(--muted); }
p, h1, h2, h3, strong { overflow-wrap: anywhere; }

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 99;
  padding: .8rem 1rem;
  background: var(--gold);
  border-radius: 999px;
}
.skip-link:focus { top: 1rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(255, 253, 247, 0.88);
  border-bottom: 1px solid var(--line);
}
.top-strip {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  padding: .55rem 1rem;
  font-size: .78rem;
  color: white;
  background: linear-gradient(90deg, var(--green), var(--navy));
}
.top-strip span, .top-strip a { min-width: 0; overflow-wrap: anywhere; }
.top-strip a { color: var(--gold-2); font-weight: 700; }
.navbar {
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  padding: .8rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: .8rem;
  min-width: 280px;
}
.brand img {
  width: 245px;
  height: 64px;
  border-radius: 18px;
  object-fit: contain;
  background: white;
  box-shadow: 0 10px 28px rgba(5, 61, 43, .1);
}
.brand span { display: none; }
.brand strong {
  display: block;
  color: var(--green);
  font-size: 1rem;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: .03em;
}
.brand small {
  color: var(--muted);
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
}
.menu {
  display: flex;
  align-items: center;
  gap: .35rem;
}
.menu a, .menu-toggle {
  border: 1px solid transparent;
  border-radius: 999px;
  padding: .72rem .95rem;
  font-weight: 700;
  font-size: .86rem;
  color: #24362f;
}
.menu a:hover, .menu a.active {
  background: white;
  border-color: var(--line);
  color: var(--green);
  box-shadow: 0 10px 28px rgba(5, 61, 43, .08);
}
.menu-toggle {
  display: none;
  background: var(--green);
  color: white;
  align-items: center;
  gap: .5rem;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(5, 61, 43, .16);
}
.menu-toggle::before {
  content: "";
  width: 1.15rem;
  height: .8rem;
  display: inline-block;
  background:
    linear-gradient(currentColor, currentColor) 0 0 / 100% 2px no-repeat,
    linear-gradient(currentColor, currentColor) 0 50% / 100% 2px no-repeat,
    linear-gradient(currentColor, currentColor) 0 100% / 100% 2px no-repeat;
}
.menu-toggle[aria-expanded="true"] {
  background: var(--gold);
  color: var(--green);
  border-color: rgba(5, 61, 43, .18);
}

.hero {
  min-height: 86vh;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: end;
  gap: 1.5rem;
  padding: clamp(7rem, 11vw, 10rem) clamp(1rem, 4vw, 5rem) 4rem;
  overflow: hidden;
  color: white;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 36, 30, .88), rgba(7, 26, 56, .52), rgba(7, 26, 56, .22)),
    radial-gradient(circle at 80% 10%, rgba(241, 200, 91, .28), transparent 25rem);
  z-index: -1;
}
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: heroFade 18s infinite;
}
.hero-bg img:nth-child(1) { opacity: 1; }
.hero-bg img:nth-child(2) { animation-delay: 6s; }
.hero-bg img:nth-child(3) { animation-delay: 12s; }
@keyframes heroFade {
  0%, 28% { opacity: 1; transform: scale(1); }
  36%, 92% { opacity: 0; transform: scale(1.08); }
  100% { opacity: 1; transform: scale(1); }
}
.hero-content { max-width: 880px; }
.hero > * { min-width: 0; }
.eyebrow {
  margin: 0 0 .7rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 900;
  font-size: .78rem;
}
.hero h1, .section h1 {
  margin: 0;
  font-size: clamp(3rem, 7vw, 6.8rem);
  line-height: .96;
  letter-spacing: 0;
  color: white;
  max-width: 980px;
  overflow-wrap: break-word;
}
.hero p { max-width: 680px; color: rgba(255,255,255,.86); font-size: 1.05rem; }
.hero-card {
  border-radius: 42px;
  padding: 1.4rem;
  background: rgba(255, 255, 255, .15);
  border: 1px solid rgba(255,255,255,.28);
  backdrop-filter: blur(18px);
  max-width: 100%;
}
.hero-card span {
  color: var(--gold-2);
  text-transform: uppercase;
  font-weight: 900;
  font-size: .75rem;
}
.hero-card strong {
  display: block;
  margin: .7rem 0;
  font-size: 1.4rem;
  line-height: 1.2;
}
.hero-card p { color: rgba(255,255,255,.78); }

.button-row { display: flex; flex-wrap: wrap; gap: .8rem; align-items: center; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  padding: .85rem 1.3rem;
  font-weight: 900;
  border: 1px solid transparent;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(7,26,56,.16); }
.btn.primary { background: linear-gradient(135deg, var(--gold), var(--gold-2)); color: #241903; }
.btn.secondary { background: var(--green); color: white; }
.btn.ghost { background: white; color: var(--green); border-color: var(--line); }
.btn.glass { background: rgba(255,255,255,.16); color: white; border-color: rgba(255,255,255,.3); }

.section {
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(3.6rem, 7vw, 6.5rem) 1.2rem;
}
.section.narrow { max-width: 980px; }
.section-heading { max-width: 760px; margin-bottom: 2rem; }
.section-heading.center { text-align: center; margin-left: auto; margin-right: auto; }
.section h2 {
  margin: 0 0 1rem;
  color: var(--green);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.05;
  letter-spacing: 0;
}
.section h3 { color: var(--green); margin: 0 0 .65rem; font-size: 1.2rem; }
.section-copy { max-width: 620px; }

.stats-band {
  margin-top: -3rem;
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding-top: 0;
  padding-bottom: 2rem;
}
.stat {
  background: white;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 1.3rem;
  text-align: center;
  box-shadow: var(--shadow);
}
.stat strong { display: block; color: var(--green); font-size: clamp(1.9rem, 4vw, 3rem); }
.stat span { color: var(--muted); font-weight: 700; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.image-orbit, .feature-image, .round-gallery, .page-visual {
  border-radius: 44px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: white;
  border: 1px solid var(--line);
}
.image-orbit img, .feature-image img, .page-visual img { width: 100%; height: 100%; object-fit: cover; }
.image-orbit { aspect-ratio: 1 / 1; border-radius: 50%; padding: .65rem; }
.image-orbit img { border-radius: 50%; }
.pill-list { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.5rem; }
.pill-list span {
  padding: .7rem 1rem;
  border-radius: 999px;
  background: white;
  border: 1px solid var(--line);
  color: var(--green);
  font-weight: 800;
}

.bright-panel {
  max-width: none;
  background: linear-gradient(180deg, #f8fbf4, #fff9ec);
  border-block: 1px solid var(--line);
}
.bright-panel > * { max-width: 1240px; margin-left: auto; margin-right: auto; }
.program-grid, .why-grid, .card-grid, .faculty-grid, .outline-grid, .media-cards, .news-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.program-card, .why-item, .info-card, .faculty-card, .outline-card, .news-card {
  border-radius: var(--round);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.9);
  padding: 1.4rem;
  box-shadow: 0 14px 42px rgba(7, 26, 56, .07);
  transition: transform .22s ease, box-shadow .22s ease;
}
.program-card:hover, .info-card:hover, .faculty-card:hover, .news-card:hover, .media-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: var(--gold-2);
  font-weight: 900;
  margin-bottom: 1rem;
}
.program-card a, .news-card a {
  display: inline-flex;
  margin-top: .7rem;
  color: var(--green);
  font-weight: 900;
}

.feature-row {
  display: grid;
  grid-template-columns: .9fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.feature-image { border-radius: 42px 42px 160px 42px; }
.check-list { padding: 0; list-style: none; display: grid; gap: .75rem; color: var(--ink); }
.check-list li {
  position: relative;
  padding-left: 2rem;
  font-weight: 700;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .15rem;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: inset 0 0 0 5px #fff7da;
}
.why { text-align: center; }
.why .section-heading { margin-left: auto; margin-right: auto; }
.why-grid { grid-template-columns: repeat(4, 1fr); }
.why-item {
  min-height: 120px;
  display: grid;
  place-items: center;
  color: var(--green);
  font-weight: 900;
  background: radial-gradient(circle at top, #fff, #f7fbf6);
}
.round-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .7rem;
  padding: .7rem;
  border-radius: 54px;
}
.round-gallery img { height: 360px; width: 100%; object-fit: cover; border-radius: 42px; }

.partner-directory {
  background:
    radial-gradient(circle at 8% 12%, rgba(212,175,55,.16), transparent 30%),
    linear-gradient(180deg, #ffffff, #f8fbf4);
}
.partner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.partner-card {
  overflow: hidden;
  border-radius: 36px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.92);
  box-shadow: 0 16px 44px rgba(7,26,56,.08);
  transition: transform .22s ease, box-shadow .22s ease;
}
.partner-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.partner-card img {
  width: 100%;
  height: 210px;
  padding: 1.1rem;
  object-fit: contain;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.partner-card div { padding: 1.25rem; }
.partner-card span {
  display: inline-flex;
  margin-bottom: .7rem;
  padding: .45rem .8rem;
  border-radius: 999px;
  background: rgba(212,175,55,.15);
  color: var(--green);
  font-size: .74rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.partner-card p { margin-bottom: 0; color: var(--muted); }

.recognition-preview { max-width: none; background: var(--green); color: white; }
.recognition-preview .section-heading, .recognition-preview .media-cards { max-width: 1240px; margin-left: auto; margin-right: auto; }
.recognition-preview h2 { color: white; }
.media-cards { grid-template-columns: repeat(3, 1fr); }
.media-card {
  overflow: hidden;
  border-radius: 42px;
  background: white;
  color: var(--green);
  box-shadow: 0 18px 55px rgba(0,0,0,.22);
}
.media-card img { width: 100%; height: 330px; object-fit: cover; }
.media-card span { display: block; padding: 1rem 1.2rem; font-weight: 900; }
.catalogue-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}
.catalogue-item {
  overflow: hidden;
  border-radius: 38px;
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 16px 44px rgba(7,26,56,.09);
  transition: transform .22s ease, box-shadow .22s ease;
}
.catalogue-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.catalogue-item img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: top center;
  background: #f9f4e8;
}
.catalogue-item div {
  padding: 1.15rem;
}
.catalogue-item span {
  display: inline-flex;
  margin-bottom: .6rem;
  padding: .42rem .72rem;
  border-radius: 999px;
  background: #fff4cf;
  color: var(--green);
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
}
.catalogue-item h3 { margin: 0 0 .55rem; }
.catalogue-item p { margin: 0; }
.catalogue-cta {
  margin-top: 1.4rem;
  padding: clamp(1.4rem, 4vw, 2.2rem);
  border-radius: 38px;
  background:
    radial-gradient(circle at top right, rgba(241,200,91,.28), transparent 34%),
    linear-gradient(135deg, rgba(5,61,43,.96), rgba(7,26,56,.94));
  color: white;
  box-shadow: var(--shadow);
}
.catalogue-cta h3 {
  color: white;
  font-size: clamp(1.5rem, 3vw, 2.3rem);
}
.catalogue-cta p {
  max-width: 940px;
  color: rgba(255,255,255,.82);
}

.admissions-cta {
  max-width: 1180px;
  margin-block: 3rem;
  border-radius: 56px;
  background:
    linear-gradient(135deg, rgba(5,61,43,.95), rgba(7,26,56,.96)),
    url("assets/university/campus-flag.jpg") center/cover;
  color: white;
  padding: clamp(2rem, 5vw, 4rem);
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
}
.admissions-cta h2 { color: white; }
.admissions-cta p { color: rgba(255,255,255,.8); max-width: 620px; }

.page-hero {
  min-height: 48vh;
  display: grid;
  align-items: end;
  padding: clamp(7rem, 10vw, 9rem) 1.2rem 3rem;
  background:
    linear-gradient(90deg, rgba(5,61,43,.9), rgba(7,26,56,.68)),
    var(--hero-img, url("assets/university/campus-building.jpg")) center/cover;
  color: white;
}
.page-hero > div { max-width: 1120px; margin: 0 auto; width: 100%; }
.page-hero h1 { margin: 0; max-width: 900px; color: white; font-size: clamp(2.7rem, 6vw, 5.6rem); line-height: 1; }
.page-hero p { color: rgba(255,255,255,.84); max-width: 720px; }

.info-card.highlight {
  background: linear-gradient(135deg, #fffdf7, #fff4cf);
  border-color: rgba(215,169,58,.4);
}
.card-grid { grid-template-columns: repeat(3, 1fr); }
.faculty-grid { grid-template-columns: repeat(2, 1fr); }
.faculty-card {
  overflow: hidden;
  padding: 0;
  display: block;
}
.faculty-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: calc(var(--round) - 1px) calc(var(--round) - 1px) 28px 28px;
}
.faculty-card > div { padding: 1.35rem; }
.faculty-card span {
  display: inline-flex;
  margin-bottom: .65rem;
  padding: .42rem .75rem;
  border-radius: 999px;
  background: #fff1c5;
  color: var(--green);
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
}
.faculty-card ul, .outline-card ul, .info-card ul { margin: 1rem 0 0; padding-left: 1.1rem; color: var(--muted); line-height: 1.8; }
.outline-grid { grid-template-columns: repeat(2, 1fr); }
.outline-card { background: white; }
.outline-card h3 { display: flex; align-items: center; gap: .7rem; }
.outline-card h3::before {
  content: "";
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-2));
  flex: 0 0 auto;
}
.profile-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1.5rem;
  align-items: center;
  border-radius: 48px;
  padding: 1rem;
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.profile-card img { border-radius: 42px; height: 280px; width: 100%; object-fit: cover; }
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}
.leader-card {
  border-radius: 38px;
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 16px 44px rgba(7,26,56,.09);
  transition: transform .22s ease, box-shadow .22s ease;
}
.leader-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.leader-card img {
  width: 100%;
  height: 290px;
  object-fit: cover;
}
.leader-card div { padding: 1.1rem; }
.leader-card span {
  display: inline-flex;
  margin-bottom: .55rem;
  padding: .42rem .7rem;
  border-radius: 999px;
  background: #fff6d8;
  color: var(--green);
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
}
.leader-card h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.25;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.gallery-grid img {
  height: 260px;
  width: 100%;
  object-fit: cover;
  border-radius: 38px;
  box-shadow: 0 16px 42px rgba(7,26,56,.1);
}
.value-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 1rem;
  align-items: stretch;
}
.value-story {
  border-radius: 44px;
  padding: clamp(1.4rem, 4vw, 2.4rem);
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.image-band {
  min-height: 360px;
  border-radius: 48px;
  overflow: hidden;
  background: var(--band-img) center/cover;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.academic-image-strip {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 1rem;
  margin: 2rem 0 0;
}
.academic-image-strip img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 42px;
  box-shadow: 0 16px 42px rgba(7,26,56,.1);
}
.academic-image-strip img:first-child { height: 420px; grid-row: span 2; }
.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 1rem;
}
.contact-form {
  display: grid;
  gap: .8rem;
  padding: 1.2rem;
  border-radius: 42px;
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.contact-form label { font-weight: 800; color: var(--green); }
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 1rem;
  font: inherit;
  background: #fbfdf9;
}
.contact-form textarea { min-height: 150px; resize: vertical; }

.site-footer {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  padding: 3rem clamp(1.2rem, 5vw, 5rem);
  background: var(--green);
  color: white;
}
.site-footer img { width: 240px; height: 72px; border-radius: 18px; object-fit: contain; background: white; margin-bottom: 1rem; }
.site-footer h2, .site-footer h3 { margin: 0 0 .8rem; color: white; }
.site-footer p, .site-footer a { display: block; color: rgba(255,255,255,.75); margin: .35rem 0; }
.site-footer a:hover { color: var(--gold-2); }
.footer-credit {
  grid-column: 1 / -1;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255,255,255,.14);
}
.footer-credit p {
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: .92rem;
}
.footer-credit a {
  display: inline;
  color: var(--gold-2);
  font-weight: 800;
}

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }
.delay-3 { transition-delay: .24s; }

.offline-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem;
  background:
    radial-gradient(circle at top left, rgba(212, 175, 55, .2), transparent 32rem),
    linear-gradient(135deg, #fffdf7, #f3ead7);
}

.offline-shell {
  width: min(560px, 100%);
  text-align: center;
  padding: clamp(2rem, 6vw, 4rem);
  background: rgba(255, 255, 255, .86);
  border: 1px solid rgba(5, 61, 43, .14);
  border-radius: 42px;
  box-shadow: var(--shadow);
}

.offline-shell img {
  width: min(220px, 70vw);
  height: auto;
  margin-bottom: 1.25rem;
}

@media (max-width: 980px) {
  .menu-toggle { display: inline-flex; }
  .menu {
    position: absolute;
    top: 100%;
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    background: white;
    border: 1px solid var(--line);
    border-radius: 32px;
    box-shadow: var(--shadow);
  }
  .menu.open { display: flex; }
  .hero, .split, .feature-row, .contact-grid, .admissions-cta, .profile-card {
    grid-template-columns: 1fr;
  }
  .value-grid, .academic-image-strip { grid-template-columns: 1fr; }
  .academic-image-strip img, .academic-image-strip img:first-child { height: auto; grid-row: auto; }
  .hero { min-height: 78vh; }
  .stats-band, .program-grid, .why-grid, .card-grid, .media-cards, .faculty-grid, .outline-grid, .gallery-grid, .catalogue-grid, .partner-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .leadership-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .top-strip { display: grid; grid-template-columns: 1fr; justify-content: flex-start; gap: .35rem; }
  .site-header, .navbar, main, .hero, .section { max-width: 100vw; }
  .brand span { display: none; }
  .brand { min-width: 0; flex: 1 1 auto; }
  .brand img { width: min(170px, 60vw); height: 52px; }
  .navbar { position: relative; padding-inline: .8rem 4.3rem; justify-content: flex-start; }
  .menu-toggle {
    display: flex !important;
    width: 46px;
    height: 46px;
    padding: 0;
    flex: 0 0 46px;
    justify-content: center;
    font-size: 0;
    background: var(--gold);
    color: var(--green);
    border: 2px solid white;
    position: fixed;
    left: 205px;
    right: auto;
    top: 6.15rem;
    transform: none;
    z-index: 100;
  }
  .menu-toggle::before { width: 20px; height: 14px; }
  .hero { padding-top: 6rem; }
  .hero h1 { font-size: clamp(2rem, 8.9vw, 2.35rem); line-height: 1.05; }
  .hero p { font-size: .95rem; }
  .page-hero { min-height: 62vh; padding: 7rem 1.2rem 3rem; }
  .page-hero > div { max-width: 100%; min-width: 0; }
  .page-hero h1 { font-size: clamp(1.78rem, 8.2vw, 2.1rem); line-height: 1.12; max-width: min(330px, 100%); }
  .page-hero p { font-size: .92rem; max-width: min(330px, 100%); }
  .hero-card { border-radius: 30px; }
  .hero-card strong { font-size: 1.12rem; }
  .button-row, .admissions-cta { align-items: stretch; }
  .btn { width: 100%; }
  .stats-band, .program-grid, .why-grid, .card-grid, .media-cards, .faculty-grid, .outline-grid, .gallery-grid, .catalogue-grid, .partner-grid {
    grid-template-columns: 1fr;
  }
  .partner-card img { height: 190px; }
  .catalogue-item img { height: auto; }
  .leadership-grid { grid-template-columns: 1fr; }
  .leader-card img { height: 360px; }
  .stat { border-radius: 30px; }
  .round-gallery { grid-template-columns: 1fr; }
  .round-gallery img { height: auto; }
  .site-footer { grid-template-columns: 1fr; }
}
