:root {
  --green: #008a24;
  --green-dark: #006716;
  --red: #d20f18;
  --purple: #8d1f8f;
  --gold: #f5c400;
  --ink: #151826;
  --muted: #5d6373;
  --line: #d9dee8;
  --soft: #f5f7fb;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(21, 24, 38, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 110px;
}

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

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

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

button,
input,
select {
  font: inherit;
}

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

.skip-link {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 20;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-140%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(217, 222, 232, 0.9);
  backdrop-filter: blur(16px);
}

.utility-bar {
  color: var(--white);
  background: var(--green-dark);
  font-size: 0.84rem;
}

.utility-inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  white-space: nowrap;
  overflow-x: auto;
}

.utility-inner a {
  font-weight: 800;
}

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

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

.brand-logo {
  width: 56px;
  height: 56px;
  flex: 0 0 auto;
  object-fit: contain;
  background: var(--white);
  border: 2px solid #d8f2dd;
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(0, 138, 36, 0.16);
}

.brand strong {
  display: block;
  color: var(--green);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #283044;
  font-weight: 800;
}

.nav-links a:not(.nav-cta) {
  padding: 8px 0;
  border-bottom: 3px solid transparent;
}

.nav-links a:not(.nav-cta):hover {
  color: var(--green);
  border-color: var(--gold);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 900;
  text-align: center;
}

.nav-cta,
.button.primary {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 10px 24px rgba(181, 18, 27, 0.24);
}

.button.secondary {
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.74);
}

.button.full {
  width: 100%;
}

.menu-button {
  width: 44px;
  height: 44px;
  display: none;
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.menu-button span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  min-height: min(720px, 82vh);
  display: grid;
  align-items: center;
  position: relative;
  color: var(--white);
  background-image:
    linear-gradient(90deg, rgba(0, 80, 20, 0.94) 0%, rgba(0, 103, 22, 0.78) 48%, rgba(141, 31, 143, 0.26) 100%),
    url("assets/tarj-registration-pamphlet.jpeg");
  background-position: center;
  background-size: cover;
}

.hero-content {
  padding: 80px 0 72px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffe180;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 14px;
  font-size: clamp(3rem, 8vw, 6.8rem);
  line-height: 0.92;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
  line-height: 1.2;
}

.hero-lede {
  max-width: 620px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}

.hero-stats {
  width: min(680px, 100%);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(10px);
}

.hero-stats div {
  padding: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.24);
}

.hero-stats div:last-child {
  border-right: 0;
}

.hero-stats strong {
  display: block;
  font-size: 1.5rem;
  line-height: 1;
}

.hero-stats span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
  font-weight: 700;
}

.hero-notice {
  width: min(680px, 100%);
  margin-top: 14px;
  padding: 16px 18px;
  color: var(--ink);
  background: rgba(245, 196, 0, 0.96);
  border-radius: 8px;
}

.hero-notice strong,
.hero-notice span {
  display: block;
}

.hero-notice span {
  margin-top: 4px;
  font-weight: 700;
}

.quick-actions {
  margin-top: -34px;
  position: relative;
  z-index: 2;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  box-shadow: var(--shadow);
}

.quick-grid a {
  min-height: 116px;
  padding: 24px;
  background: var(--white);
  border-right: 1px solid var(--line);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.quick-grid a:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.quick-grid a:last-child {
  border-right: 0;
}

.quick-grid span {
  display: block;
  margin-bottom: 6px;
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.quick-grid strong {
  display: block;
  color: var(--ink);
  font-size: 1.12rem;
  line-height: 1.25;
}

.section {
  padding: 84px 0;
}

.admissions-info {
  background: var(--soft);
}

.admissions-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 26px;
}

.admissions-steps article {
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.admissions-steps span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  color: var(--white);
  background: var(--green);
  border-radius: 50%;
  font-weight: 900;
}

.admissions-steps article:nth-child(2) span {
  background: var(--red);
}

.admissions-steps article:nth-child(3) span {
  background: var(--purple);
}

.admissions-steps article:nth-child(4) span {
  color: var(--ink);
  background: var(--gold);
}

.admissions-steps p,
.requirements-panel p {
  margin-bottom: 0;
  color: var(--muted);
}

.requirements-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
  gap: 16px;
}

.requirements-panel > div {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 5px solid var(--green);
  border-radius: 8px;
}

.requirements-panel > div:last-child {
  border-left-color: var(--red);
}

.requirements-panel ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  font-weight: 700;
}

.requirements-panel li + li {
  margin-top: 8px;
}

.faculties-section {
  background: var(--white);
}

.faculty-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.faculty-card {
  min-height: 255px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(21, 24, 38, 0.08);
}

.faculty-toggle {
  width: 100%;
  min-height: 138px;
  display: flex;
  align-items: end;
  justify-content: center;
  padding: 20px;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(0, 103, 22, 0.08), rgba(0, 103, 22, 0.82)),
    url("assets/tarj-registration-pamphlet.jpeg");
  background-position: center;
  background-size: cover;
  border: 0;
  cursor: pointer;
  font-weight: 900;
  text-align: center;
}

.faculty-card:nth-child(2) .faculty-toggle,
.faculty-card:nth-child(5) .faculty-toggle {
  background-image:
    linear-gradient(180deg, rgba(210, 15, 24, 0.08), rgba(210, 15, 24, 0.84)),
    url("assets/tarj-registration-pamphlet.jpeg");
}

.faculty-card:nth-child(3) .faculty-toggle,
.faculty-card:nth-child(6) .faculty-toggle {
  background-image:
    linear-gradient(180deg, rgba(141, 31, 143, 0.08), rgba(141, 31, 143, 0.82)),
    url("assets/tarj-registration-pamphlet.jpeg");
}

.faculty-toggle span {
  display: block;
  font-size: 1.2rem;
  line-height: 1.18;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.42);
}

.faculty-detail {
  padding: 18px;
}

.faculty-detail p {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 0.95rem;
}

.faculty-detail strong {
  display: block;
  margin-bottom: 8px;
  color: var(--green-dark);
}

.faculty-detail ul {
  margin: 0;
  padding-left: 18px;
  color: var(--ink);
  font-weight: 700;
}

.faculty-detail li + li {
  margin-top: 5px;
}

.faculty-card:not(.open) .faculty-detail {
  display: none;
}

.faculty-card.open {
  border-color: var(--green);
  box-shadow: var(--shadow);
}

.intro-section {
  background: linear-gradient(180deg, var(--white) 0%, var(--soft) 100%);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: 56px;
  align-items: start;
}

.intro-grid p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.05rem;
}

.feature-list {
  display: grid;
  gap: 14px;
}

.feature-list div {
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 5px solid var(--green);
  border-radius: 8px;
}

.feature-list p {
  margin: 8px 0 0;
  font-size: 0.95rem;
}

.feature-icon {
  width: 34px;
  height: 34px;
  display: inline-block;
  margin-bottom: 12px;
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 45%, var(--white) 45% 55%, transparent 55%),
    linear-gradient(0deg, transparent 45%, var(--white) 45% 55%, transparent 55%),
    var(--green);
}

.feature-icon.accent {
  background:
    linear-gradient(90deg, transparent 45%, var(--white) 45% 55%, transparent 55%),
    linear-gradient(0deg, transparent 45%, var(--white) 45% 55%, transparent 55%),
    var(--red);
}

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

.section-heading p:last-child {
  max-width: 440px;
  margin-bottom: 0;
  color: var(--muted);
}

.finder-panel {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto;
  gap: 18px;
  align-items: end;
  margin-bottom: 34px;
  padding: 20px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.search-field span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.search-field input,
.apply-form input,
.apply-form select,
.apply-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #c9d0dc;
  border-radius: 6px;
  outline: 0;
}

.apply-form textarea {
  min-height: 112px;
  padding: 12px 14px;
  resize: vertical;
}

.search-field input:focus,
.apply-form input:focus,
.apply-form select:focus,
.apply-form textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(7, 131, 61, 0.12);
}

.filter-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.filter {
  min-height: 40px;
  padding: 0 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #c9d0dc;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 900;
}

.filter.active,
.filter:hover {
  color: var(--white);
  background: var(--purple);
  border-color: var(--purple);
}

.programme-group {
  margin-top: 28px;
}

.programme-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--line);
}

.programme-header span {
  color: var(--green);
  font-weight: 900;
  text-transform: uppercase;
}

.programme-header strong {
  color: var(--muted);
  font-size: 0.9rem;
}

.course-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.course-card,
.support-card {
  min-height: 188px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.course-card:hover,
.support-card:hover,
.skill-list article:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.course-type {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 5px 9px;
  color: var(--white);
  background: var(--green);
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 900;
}

.course-card p,
.support-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.support-card {
  min-height: 156px;
  border-top: 5px solid var(--gold);
}

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

.skill-list article {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 76px;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.skill-list span {
  color: var(--purple);
  font-size: 0.86rem;
  font-weight: 900;
}

.skill-list strong {
  line-height: 1.2;
}

.empty-message {
  padding: 24px;
  color: var(--muted);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
}

.admissions {
  color: var(--white);
  background: var(--green-dark);
}

.admissions .eyebrow {
  color: #ffe180;
}

.admissions-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 48px;
  align-items: start;
}

.admissions-copy > p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.06rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 32px;
}

.steps div {
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}

.steps span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  color: var(--ink);
  background: var(--gold);
  border-radius: 50%;
  font-weight: 900;
}

.steps p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.93rem;
}

.apply-form {
  padding: 26px;
  color: var(--ink);
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.apply-form h3 {
  margin-bottom: 18px;
  font-size: 1.4rem;
}

.apply-form label {
  display: block;
  margin-bottom: 15px;
  color: #394154;
  font-size: 0.9rem;
  font-weight: 800;
}

.apply-form input,
.apply-form select,
.apply-form textarea {
  margin-top: 7px;
}

.form-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

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

.campus-grid {
  display: grid;
  grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
  gap: 52px;
  align-items: center;
}

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

.poster-panel img {
  width: 100%;
  height: auto;
}

.contact-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 24px 0;
}

.contact-list a {
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.contact-list span {
  display: block;
  margin-bottom: 4px;
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-list strong {
  overflow-wrap: anywhere;
}

address {
  margin: 0 0 20px;
  color: var(--ink);
  font-style: normal;
  font-weight: 900;
}

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

.address-grid div {
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.address-grid span,
.shareholder-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.address-grid address {
  margin: 0;
  line-height: 1.35;
}

.accreditation {
  padding: 18px;
  background: var(--white);
  border-left: 5px solid var(--green);
  border-radius: 8px;
}

.accreditation p {
  margin-bottom: 8px;
  color: var(--muted);
}

.accreditation p:last-child {
  margin-bottom: 0;
}

.shareholders {
  background: var(--white);
}

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

.shareholder-card {
  min-height: 260px;
  padding: 24px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-top: 5px solid var(--purple);
  border-radius: 8px;
}

.shareholder-card p {
  margin-bottom: 18px;
  color: var(--muted);
}

.shareholder-card > strong {
  display: block;
  margin-bottom: 8px;
  color: var(--green-dark);
  font-size: 1.35rem;
}

.email-link {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 18px;
  color: var(--purple);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.contact-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.contact-actions a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--green);
  border-radius: 6px;
  font-weight: 900;
}

.contact-actions a:nth-child(2) {
  background: var(--red);
}

.contact-actions a:nth-child(3) {
  background: var(--purple);
}

.contact-actions.single-action {
  grid-template-columns: 1fr;
}

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

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: 36px;
  align-items: start;
}

.contact-grid p {
  max-width: 560px;
  color: var(--muted);
  font-size: 1.05rem;
}

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

.contact-summary a {
  min-height: 112px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 5px solid var(--green);
  border-radius: 8px;
}

.contact-summary span {
  display: block;
  margin-bottom: 10px;
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-summary strong {
  display: block;
  overflow-wrap: anywhere;
  font-size: 1.05rem;
}

.site-footer {
  padding: 58px 0;
  color: var(--white);
  background: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 34px;
  align-items: start;
}

.footer-grid p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer-logo {
  width: 82px;
  height: 82px;
  margin-bottom: 14px;
  object-fit: contain;
  background: var(--white);
  border-radius: 50%;
}

.footer-grid h3 {
  margin-bottom: 14px;
  color: var(--gold);
}

.footer-grid a {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.footer-grid a:hover {
  color: var(--gold);
}

.floating-actions {
  position: fixed;
  right: 20px;
  bottom: 22px;
  z-index: 15;
  display: grid;
  gap: 10px;
}

.floating-actions a {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  color: var(--white);
  border-radius: 50%;
  box-shadow: var(--shadow);
  font-size: 0.86rem;
  font-weight: 900;
}

.floating-whatsapp {
  background: var(--green);
}

.floating-call {
  background: var(--red);
}

[hidden] {
  display: none !important;
}

@media (max-width: 980px) {
  .menu-button {
    display: block;
  }

  .nav {
    position: relative;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 14px;
  }

  .nav-cta {
    margin-top: 8px;
  }

  .course-grid,
  .support-grid,
  .faculty-grid,
  .admissions-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .intro-grid,
  .admissions-grid,
  .campus-grid,
  .contact-grid,
  .requirements-panel {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .utility-inner {
    justify-content: flex-start;
  }

  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 78vh;
    background-position: 62% center;
  }

  .hero-content {
    padding: 64px 0 58px;
  }

  .hero-stats,
  .quick-grid,
  .finder-panel,
  .course-grid,
  .support-grid,
  .skill-list,
  .contact-list,
  .address-grid,
  .shareholder-grid,
  .contact-summary,
  .admissions-steps {
    grid-template-columns: 1fr;
  }

  .contact-actions {
    grid-template-columns: 1fr;
  }

  .hero-stats div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  }

  .hero-stats div:last-child {
    border-bottom: 0;
  }

  .quick-grid a {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .quick-grid a:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 60px 0;
  }

  .section-heading,
  .programme-header,
  .footer-grid {
    align-items: flex-start;
  }

  .faculty-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .skill-list article {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

@media (max-width: 430px) {
  h1 {
    font-size: clamp(2.55rem, 17vw, 4.2rem);
  }

  h2 {
    font-size: clamp(1.8rem, 11vw, 2.6rem);
  }

  .brand strong {
    max-width: 190px;
    font-size: 0.95rem;
    line-height: 1.1;
  }

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