:root {
    --brand: #525fe1;
    --brand-dark: #303482;
    --brand-soft: #eef0ff;
    --orange: #f86f03;
    --orange-soft: #fff1e7;
    --burgundy: #7c152a;
    --navy: #151b4b;
    --ink: #231f40;
    --text: #666276;
    --muted: #9793a5;
    --cream: #f8f7ff;
    --line: #e8e6f0;
    --white: #fff;
    --shadow-sm: 0 10px 35px rgba(35, 31, 64, .08);
    --shadow: 0 24px 70px rgba(35, 31, 64, .13);
    --radius: 18px;
    --radius-lg: 30px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--white);
    color: var(--ink);
    font-family: "Segoe UI", Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.7;
}

body.menu-open {
    overflow: hidden;
}

button,
input,
select {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

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

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

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

h1,
h2,
h3 {
    line-height: 1.2;
}

h1,
h2 {
    letter-spacing: -.035em;
}

h1 em,
h2 em {
    color: var(--orange);
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 500;
}

address {
    font-style: normal;
}

code {
    padding: 2px 6px;
    border-radius: 5px;
    background: #eeedf4;
    font-size: .9em;
}

.site-container {
    width: min(1180px, calc(100% - 48px));
    margin-inline: auto;
}

.section {
    padding: 108px 0;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 9999;
    padding: 10px 16px;
    border-radius: 8px;
    background: var(--ink);
    color: var(--white);
    transform: translateY(-160%);
    transition: transform .2s ease;
}

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

:focus-visible {
    outline: 3px solid rgba(248, 111, 3, .5);
    outline-offset: 3px;
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .65s ease, transform .65s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: none;
}

.site-header {
    position: relative;
    z-index: 100;
    background: var(--white);
}

.topbar {
    background: var(--navy);
    color: rgba(255, 255, 255, .82);
    font-size: 12px;
}

.topbar-inner,
.topbar-info,
.topbar-links {
    display: flex;
    align-items: center;
}

.topbar-inner {
    min-height: 42px;
    justify-content: space-between;
    gap: 20px;
}

.topbar-info,
.topbar-links {
    gap: 24px;
}

.topbar a {
    transition: color .2s ease;
}

.topbar a:hover {
    color: var(--white);
}

.nav-shell {
    position: relative;
    border-bottom: 1px solid rgba(35, 31, 64, .07);
    background: rgba(255, 255, 255, .98);
}

.nav-shell.is-sticky {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 500;
    box-shadow: 0 8px 30px rgba(35, 31, 64, .1);
    animation: slideDown .25s ease;
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
}

.nav-inner {
    display: flex;
    align-items: center;
    min-height: 90px;
}

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

.brand img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.brand-copy {
    display: grid;
    line-height: 1.18;
}

.brand-copy strong {
    color: var(--navy);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 17px;
    letter-spacing: .01em;
    text-transform: uppercase;
}

.brand-copy small {
    margin-top: 5px;
    color: var(--burgundy);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.desktop-nav {
    margin-left: auto;
}

.desktop-nav > ul {
    display: flex;
    align-items: center;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 33px 9px;
    border: 0;
    background: transparent;
    color: #353149;
    cursor: pointer;
    font-size: 12.5px;
    font-weight: 700;
    white-space: nowrap;
}

.nav-link::after {
    position: absolute;
    right: 10px;
    bottom: 25px;
    left: 10px;
    height: 2px;
    border-radius: 99px;
    background: var(--brand);
    content: "";
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .2s ease;
}

.nav-link:hover,
.nav-link:focus-visible {
    color: var(--brand);
}

.nav-link:hover::after,
.nav-link:focus-visible::after {
    transform: scaleX(1);
}

.nav-dropdown {
    position: relative;
}

.dropdown-panel {
    position: absolute;
    top: calc(100% - 4px);
    left: 0;
    display: grid;
    width: 270px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--white);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity .2s ease, transform .2s ease;
}

.nav-dropdown:nth-child(3) .dropdown-panel {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 520px;
}

.nav-dropdown:hover .dropdown-panel,
.nav-dropdown:focus-within .dropdown-panel,
.nav-dropdown.is-open .dropdown-panel {
    opacity: 1;
    pointer-events: auto;
    transform: none;
}

.dropdown-panel a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 43px;
    padding: 8px 12px;
    border-radius: 8px;
    color: var(--text);
    font-size: 13px;
    font-weight: 650;
    transition: background .2s ease, color .2s ease, padding .2s ease;
}

.dropdown-panel a:hover {
    padding-left: 16px;
    background: var(--brand-soft);
    color: var(--brand);
}

.header-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-left: 12px;
    padding: 12px 15px;
    border-radius: 9px;
    background: var(--orange);
    color: var(--white);
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
    transition: background .2s ease, transform .2s ease;
}

.header-cta:hover {
    background: #df5e00;
    transform: translateY(-2px);
}

.menu-toggle,
.mobile-menu {
    display: none;
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 88px 0 142px;
    background:
        radial-gradient(circle at 15% 20%, rgba(82, 95, 225, .12), transparent 28%),
        linear-gradient(115deg, #f7f7ff 0%, #fff 60%, #fff5ed 100%);
}

.hero::before {
    position: absolute;
    top: -150px;
    right: -130px;
    width: 520px;
    height: 520px;
    border: 1px solid rgba(82, 95, 225, .13);
    border-radius: 50%;
    content: "";
}

.hero-pattern {
    position: absolute;
    bottom: 30px;
    left: 4%;
    width: 130px;
    height: 130px;
    opacity: .45;
    background-image: radial-gradient(var(--orange) 1.3px, transparent 1.3px);
    background-size: 14px 14px;
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.02fr .98fr;
    align-items: center;
    gap: 78px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;
    color: var(--brand);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.eyebrow > span {
    width: 26px;
    height: 2px;
    background: currentColor;
}

.eyebrow.light {
    color: #f7cbb0;
}

.hero h1 {
    max-width: 680px;
    margin-bottom: 24px;
    font-size: clamp(48px, 5.4vw, 76px);
    line-height: 1.03;
}

.hero-copy > p {
    max-width: 600px;
    margin-bottom: 32px;
    color: var(--text);
    font-size: 18px;
}

.hero-actions,
.admission-cta-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 13px 22px;
    border: 1px solid transparent;
    border-radius: 9px;
    font-size: 13px;
    font-weight: 800;
    transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

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

.button-primary {
    background: var(--brand);
    color: var(--white);
}

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

.button-ghost {
    background: var(--white);
    color: var(--ink);
    box-shadow: var(--shadow-sm);
}

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

.button-outline-light {
    border-color: rgba(255, 255, 255, .45);
    color: var(--white);
}

.play-dot {
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    border-radius: 50%;
    background: var(--orange-soft);
    color: var(--orange);
    font-size: 10px;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 36px;
}

.hero-trust strong {
    color: var(--navy);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 26px;
}

.hero-trust span {
    padding-left: 14px;
    border-left: 1px solid var(--line);
    color: var(--muted);
    font-size: 12px;
    line-height: 1.45;
}

.hero-visual {
    position: relative;
    min-height: 540px;
}

.hero-image-wrap {
    position: absolute;
    inset: 0 10px 0 34px;
    overflow: hidden;
    border: 12px solid var(--white);
    border-radius: 49% 49% 22px 22px;
    background: #ddd;
    box-shadow: var(--shadow);
}

.hero-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-badge {
    position: absolute;
    top: 50px;
    left: -30px;
    display: grid;
    width: 116px;
    height: 116px;
    place-content: center;
    border: 7px solid var(--white);
    border-radius: 50%;
    background: var(--brand);
    color: var(--white);
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.hero-badge span,
.hero-badge small {
    font-size: 9px;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.hero-badge strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 24px;
}

.hero-motto-card {
    position: absolute;
    right: -18px;
    bottom: 38px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-radius: 12px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.hero-motto-card > span {
    color: var(--orange);
    font-size: 24px;
}

.hero-motto-card p {
    margin: 0;
    color: var(--navy);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.25;
}

.feature-strip {
    position: relative;
    z-index: 4;
    margin-top: -64px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
}

.feature-card {
    position: relative;
    display: flex;
    gap: 18px;
    min-height: 190px;
    padding: 32px;
    border-right: 1px solid var(--line);
    transition: background .25s ease, color .25s ease;
}

.feature-card:last-child {
    border-right: 0;
}

.feature-card:hover {
    background: var(--brand);
    color: var(--white);
}

.feature-number,
.content-index {
    color: var(--orange);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 18px;
    font-weight: 700;
}

.feature-card h2 {
    margin-bottom: 8px;
    font-size: 19px;
}

.feature-card p {
    margin-bottom: 14px;
    color: var(--text);
    font-size: 13px;
    line-height: 1.55;
}

.feature-card strong {
    color: var(--brand);
    font-size: 12px;
}

.feature-card:hover p,
.feature-card:hover strong {
    color: rgba(255, 255, 255, .82);
}

.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 86px;
}

.image-composition {
    position: relative;
    min-height: 520px;
}

.image-main {
    width: 84%;
    height: 470px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.image-small {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 48%;
    height: 240px;
    object-fit: cover;
    border: 10px solid var(--white);
    border-radius: 24px;
    box-shadow: var(--shadow);
}

.experience-seal {
    position: absolute;
    top: 38px;
    right: 2px;
    display: grid;
    width: 112px;
    height: 112px;
    place-content: center;
    border-radius: 50%;
    background: var(--orange);
    color: var(--white);
    text-align: center;
}

.experience-seal strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 26px;
}

.experience-seal span {
    font-size: 10px;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.section-copy h2,
.section-heading h2 {
    margin-bottom: 22px;
    font-size: clamp(38px, 4vw, 55px);
}

.section-copy > p,
.section-heading > p,
.heading-row > p {
    color: var(--text);
}

.section-copy .lead {
    color: var(--ink);
    font-size: 18px;
}

.check-list {
    display: grid;
    gap: 10px;
    padding: 0;
    margin: 26px 0;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 30px;
    color: #4e4a5f;
    font-weight: 600;
}

.check-list li::before {
    position: absolute;
    top: 4px;
    left: 0;
    display: grid;
    width: 19px;
    height: 19px;
    place-items: center;
    border-radius: 50%;
    background: var(--orange-soft);
    color: var(--orange);
    content: "✓";
    font-size: 11px;
    font-weight: 900;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--brand);
    font-size: 13px;
    font-weight: 850;
}

.text-link:hover {
    color: var(--orange);
}

.values-section,
.testimonial-section,
.news-section {
    background: var(--cream);
}

.section-heading {
    max-width: 690px;
    margin-bottom: 52px;
}

.section-heading.centered {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.section-heading.centered .eyebrow {
    justify-content: center;
}

.section-heading.centered p {
    max-width: 620px;
    margin-right: auto;
    margin-left: auto;
}

.heading-row {
    display: flex;
    max-width: none;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
}

.heading-row > p {
    max-width: 430px;
}

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

.value-card {
    min-height: 295px;
    padding: 32px 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    transition: transform .25s ease, box-shadow .25s ease;
}

.value-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow);
}

.value-card.featured {
    background: var(--brand);
    color: var(--white);
}

.value-icon {
    display: grid;
    width: 52px;
    height: 52px;
    margin-bottom: 42px;
    place-items: center;
    border-radius: 14px;
    background: var(--brand-soft);
    color: var(--brand);
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 800;
}

.value-card.featured .value-icon {
    background: rgba(255, 255, 255, .15);
    color: var(--white);
}

.value-card h3 {
    margin-bottom: 12px;
    font-size: 20px;
}

.value-card p {
    margin: 0;
    color: var(--text);
    font-size: 14px;
}

.value-card.featured p {
    color: rgba(255, 255, 255, .78);
}

.legacy-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 80% 25%, rgba(82, 95, 225, .35), transparent 30%),
        var(--navy);
    color: var(--white);
}

.legacy-section::after {
    position: absolute;
    right: -170px;
    bottom: -240px;
    width: 540px;
    height: 540px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 50%;
    content: "";
}

.legacy-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    align-items: center;
    gap: 100px;
}

.legacy-copy h2 {
    margin-bottom: 22px;
    font-size: clamp(40px, 4.4vw, 60px);
}

.legacy-copy p {
    margin-bottom: 30px;
    color: rgba(255, 255, 255, .7);
}

.timeline {
    display: grid;
}

.timeline article {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 22px;
    padding: 28px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.timeline article:last-child {
    border: 0;
}

.timeline article > strong {
    color: #f7cbb0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 28px;
}

.timeline h3 {
    margin-bottom: 6px;
}

.timeline p {
    margin: 0;
    color: rgba(255, 255, 255, .66);
    font-size: 14px;
}

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

.leader-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.leader-photo {
    position: relative;
    overflow: hidden;
    height: 330px;
    background: var(--brand-soft);
}

.leader-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}

.leader-card:hover .leader-photo img {
    transform: scale(1.04);
}

.leader-photo > span {
    position: absolute;
    right: 18px;
    bottom: 18px;
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border-radius: 50%;
    background: var(--orange);
    color: var(--white);
}

.leader-info {
    padding: 23px 26px 26px;
}

.leader-info small {
    color: var(--brand);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.leader-info h3 {
    margin: 7px 0 5px;
    font-size: 19px;
}

.leader-info p {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
}

.campus-section {
    background: #fffaf6;
}

.campus-grid {
    align-items: stretch;
}

.campus-list {
    display: grid;
    margin-top: 28px;
}

.campus-list a {
    display: grid;
    grid-template-columns: 45px 1fr 24px;
    align-items: center;
    gap: 12px;
    padding: 15px 0;
    border-bottom: 1px solid #eadfd6;
}

.campus-list span {
    color: var(--orange);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 13px;
}

.campus-list i {
    color: var(--brand);
    font-style: normal;
    transition: transform .2s ease;
}

.campus-list a:hover i {
    transform: translateX(5px);
}

.campus-image {
    position: relative;
    overflow: hidden;
    min-height: 560px;
    border-radius: var(--radius-lg);
}

.campus-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.campus-gallery-link {
    position: absolute;
    right: 24px;
    bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 180px;
    padding: 15px 18px;
    border-radius: 10px;
    background: var(--white);
    color: var(--navy);
    font-size: 12px;
    font-weight: 800;
}

.testimonial-grid,
.notice-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    padding: 32px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
}

.quote-mark {
    color: var(--orange);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 56px;
    line-height: .7;
}

.testimonial-card > p {
    min-height: 120px;
    color: var(--text);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 16px;
}

.testimonial-card > div {
    display: grid;
    grid-template-columns: 48px 1fr;
    column-gap: 12px;
    align-items: center;
}

.testimonial-card img {
    grid-row: span 2;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-card strong {
    font-size: 13px;
}

.testimonial-card small {
    color: var(--muted);
    font-size: 11px;
}

.notice-preview {
    padding: 30px;
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.notice-preview > div {
    display: flex;
    justify-content: space-between;
    margin-bottom: 22px;
    color: var(--muted);
    font-size: 11px;
}

.notice-preview > div span {
    padding: 4px 9px;
    border-radius: 99px;
    background: var(--orange-soft);
    color: var(--orange);
    font-weight: 800;
}

.notice-preview h3 {
    margin-bottom: 10px;
    font-size: 20px;
}

.notice-preview p {
    min-height: 75px;
    color: var(--text);
    font-size: 13px;
}

.notice-preview > a {
    color: var(--brand);
    font-size: 12px;
    font-weight: 850;
}

.admission-cta {
    padding: 80px 0;
    background: var(--brand);
    color: var(--white);
}

.admission-cta-inner,
.page-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
}

.admission-cta h2 {
    max-width: 730px;
    margin-bottom: 12px;
    font-size: clamp(38px, 4.5vw, 60px);
}

.admission-cta p {
    margin: 0;
    color: rgba(255, 255, 255, .75);
}

.site-footer {
    background: #101538;
    color: rgba(255, 255, 255, .75);
}

.footer-main {
    padding: 80px 0 62px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr .9fr .8fr 1fr;
    gap: 55px;
}

.brand-footer {
    width: auto;
    margin-bottom: 22px;
}

.brand-footer .brand-copy strong {
    color: var(--white);
}

.footer-brand > p {
    max-width: 360px;
    font-size: 13px;
}

.footer-motto {
    color: #f7cbb0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 16px !important;
}

.site-footer h2 {
    margin: 18px 0 24px;
    color: var(--white);
    font-size: 15px;
}

.footer-list {
    display: grid;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
    font-size: 13px;
}

.footer-links a:hover,
.site-footer address a:hover,
.footer-social a:hover {
    color: var(--white);
}

.site-footer address {
    font-size: 13px;
    line-height: 1.9;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    color: #f7cbb0;
    font-size: 12px;
    font-weight: 800;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    font-size: 11px;
}

.footer-bottom .site-container {
    display: flex;
    min-height: 66px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom a {
    color: #f7cbb0;
}

.inner-hero {
    position: relative;
    overflow: hidden;
    padding: 90px 0 86px;
    background:
        radial-gradient(circle at 83% 22%, rgba(82, 95, 225, .45), transparent 24%),
        var(--navy);
    color: var(--white);
}

.inner-hero::after {
    position: absolute;
    top: -160px;
    right: -40px;
    width: 460px;
    height: 460px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 50%;
    content: "";
}

.inner-hero-pattern {
    position: absolute;
    right: 12%;
    bottom: 20px;
    width: 120px;
    height: 100px;
    opacity: .35;
    background-image: radial-gradient(#fff 1.2px, transparent 1.2px);
    background-size: 13px 13px;
}

.inner-hero-content {
    position: relative;
    z-index: 1;
}

.inner-hero h1 {
    max-width: 900px;
    margin-bottom: 18px;
    font-size: clamp(42px, 5.2vw, 68px);
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    color: rgba(255, 255, 255, .68);
    font-size: 12px;
}

.breadcrumbs a:hover {
    color: var(--white);
}

.inner-content-section {
    min-height: 500px;
}

.page-intro-grid {
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    align-items: center;
    gap: 74px;
    padding-bottom: 80px;
}

.page-intro-narrow {
    max-width: 850px;
    padding-bottom: 55px;
}

.page-lead {
    color: var(--ink);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(24px, 2.7vw, 38px);
    line-height: 1.45;
}

.page-intro-copy blockquote {
    margin: 30px 0;
    padding: 22px 25px;
    border-left: 4px solid var(--orange);
    border-radius: 0 12px 12px 0;
    background: var(--orange-soft);
    color: var(--burgundy);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 18px;
}

.page-intro-image {
    overflow: hidden;
    height: 440px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.page-intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-bottom: 80px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--cream);
}

.stats-grid > div {
    display: grid;
    min-height: 135px;
    place-content: center;
    border-right: 1px solid var(--line);
    text-align: center;
}

.stats-grid > div:last-child {
    border: 0;
}

.stats-grid strong {
    color: var(--brand);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 30px;
}

.stats-grid span {
    color: var(--muted);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.page-leader-grid {
    margin-bottom: 80px;
}

.content-stack {
    max-width: 980px;
    margin: 0 auto;
}

.content-block {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 24px;
    padding: 45px 0;
    border-top: 1px solid var(--line);
}

.content-block h2 {
    margin-bottom: 20px;
    font-size: clamp(28px, 3vw, 39px);
}

.content-block p {
    color: var(--text);
}

.page-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 13px 26px;
}

.info-card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 28px;
}

.info-card {
    padding: 25px;
    border-radius: 14px;
    background: var(--cream);
}

.info-card h3 {
    font-size: 17px;
}

.info-card p {
    margin: 0;
    font-size: 13px;
}

.table-wrap {
    overflow-x: auto;
    margin-top: 28px;
    border: 1px solid var(--line);
    border-radius: 14px;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th,
td {
    padding: 15px 18px;
    border-bottom: 1px solid var(--line);
    text-align: left;
    vertical-align: top;
}

th {
    background: var(--navy);
    color: var(--white);
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

td {
    color: var(--text);
    font-size: 13px;
}

tr:last-child td {
    border-bottom: 0;
}

.achievement-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.achievement-card {
    overflow: hidden;
    margin: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.achievement-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.achievement-card figcaption {
    padding: 18px;
    font-size: 13px;
    font-weight: 750;
}

.signature {
    max-width: 980px;
    margin: 40px auto 0;
    color: var(--brand);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 18px;
    font-weight: 700;
    text-align: right;
}

.page-cta {
    padding: 55px 0;
    background: var(--brand);
    color: var(--white);
}

.page-cta span {
    color: rgba(255, 255, 255, .7);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.page-cta h2 {
    margin: 5px 0 0;
    font-size: clamp(26px, 3vw, 38px);
}

.disclosure-section,
.faculty-section,
.gallery-section,
.noticeboard-section,
.contact-section {
    min-height: 600px;
}

.disclosure-toolbar,
.faculty-toolbar {
    display: grid;
    grid-template-columns: 1fr 240px;
    gap: 14px;
    margin-bottom: 30px;
}

.disclosure-toolbar input,
.disclosure-toolbar select,
.faculty-toolbar input,
.faculty-toolbar select {
    width: 100%;
    height: 54px;
    padding: 0 17px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--white);
    color: var(--ink);
    outline: none;
}

.disclosure-toolbar input:focus,
.disclosure-toolbar select:focus,
.faculty-toolbar input:focus,
.faculty-toolbar select:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 4px rgba(82, 95, 225, .1);
}

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

.document-card {
    position: relative;
    display: grid;
    grid-template-columns: 42px 1fr;
    min-height: 205px;
    padding: 25px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.document-number {
    color: var(--orange);
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 700;
}

.document-type {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 4px 8px;
    border-radius: 5px;
    background: var(--orange-soft);
    color: var(--orange);
    font-size: 9px;
    font-weight: 900;
}

.document-card small {
    color: var(--brand);
    font-size: 9px;
    font-weight: 850;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.document-card h2 {
    margin-top: 9px;
    padding-right: 30px;
    font-size: 16px;
}

.document-card > a {
    position: absolute;
    right: 25px;
    bottom: 22px;
    color: var(--brand);
    font-size: 11px;
    font-weight: 850;
}

.document-card[hidden] {
    display: none;
}

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

.notice-card {
    display: grid;
    grid-template-columns: 95px 1fr;
    gap: 25px;
    min-height: 190px;
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.notice-date {
    display: grid;
    align-content: center;
    padding-right: 20px;
    border-right: 1px solid var(--line);
}

.notice-date strong {
    color: var(--orange);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 28px;
}

.notice-date span {
    color: var(--muted);
    font-size: 10px;
}

.notice-card small {
    color: var(--brand);
    font-size: 9px;
    font-weight: 850;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.notice-card h2 {
    margin: 7px 0 8px;
    font-size: 20px;
}

.notice-card p {
    margin: 0;
    color: var(--text);
    font-size: 13px;
}

.masonry-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 265px;
    gap: 18px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    padding: 0;
    border: 0;
    border-radius: var(--radius);
    background: #ddd;
    color: var(--white);
    cursor: pointer;
}

.gallery-item:nth-child(4n + 1) {
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}

.gallery-item::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 45%, rgba(10, 14, 49, .88));
    content: "";
}

.gallery-item > span {
    position: absolute;
    right: 22px;
    bottom: 20px;
    left: 22px;
    z-index: 1;
    display: grid;
    text-align: left;
}

.gallery-item small {
    color: rgba(255, 255, 255, .7);
    font-size: 10px;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.lightbox {
    width: min(1000px, calc(100% - 40px));
    max-width: none;
    padding: 0;
    border: 0;
    border-radius: var(--radius);
    background: #080b24;
    color: var(--white);
}

.lightbox::backdrop {
    background: rgba(8, 11, 36, .9);
    backdrop-filter: blur(5px);
}

.lightbox figure {
    display: grid;
    min-height: 650px;
    place-content: center;
    margin: 0;
}

.lightbox figure img {
    max-width: 100%;
    max-height: 580px;
    margin: auto;
}

.lightbox figcaption {
    padding: 15px;
    text-align: center;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    z-index: 2;
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
    color: var(--white);
    cursor: pointer;
}

.lightbox-close {
    top: 14px;
    right: 14px;
    font-size: 24px;
}

.lightbox-prev,
.lightbox-next {
    top: 50%;
}

.lightbox-prev { left: 14px; }
.lightbox-next { right: 14px; }

.faculty-table-wrap {
    max-height: 760px;
}

.faculty-table th {
    position: sticky;
    top: 0;
    z-index: 1;
}

.faculty-table tr[hidden] {
    display: none;
}

.designation-badge {
    display: inline-flex;
    padding: 4px 9px;
    border-radius: 99px;
    background: var(--brand-soft);
    color: var(--brand);
    font-size: 10px;
    font-weight: 800;
}

.empty-state {
    padding: 35px;
    border: 1px dashed var(--line);
    border-radius: 14px;
    color: var(--muted);
    text-align: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 70px;
}

.contact-copy h2 {
    font-size: clamp(38px, 4.3vw, 58px);
}

.contact-copy > p {
    color: var(--text);
}

.contact-cards {
    display: grid;
    gap: 12px;
    margin-top: 35px;
}

.contact-cards > * {
    display: grid;
    padding: 20px 22px;
    border: 1px solid var(--line);
    border-radius: 12px;
    transition: border-color .2s ease, transform .2s ease;
}

.contact-cards > a:hover {
    border-color: var(--brand);
    transform: translateX(5px);
}

.contact-cards span {
    color: var(--orange);
    font-size: 9px;
    font-weight: 850;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.contact-cards strong {
    font-size: 17px;
}

.contact-cards small {
    color: var(--muted);
}

.contact-panel {
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--navy);
    color: var(--white);
    box-shadow: var(--shadow);
}

.contact-map {
    padding: 55px;
    background:
        radial-gradient(circle at 80% 10%, rgba(82, 95, 225, .65), transparent 36%),
        var(--navy);
}

.contact-map > span {
    color: #f7cbb0;
    font-size: 48px;
}

.contact-map h2 {
    margin: 12px 0;
    font-size: 34px;
}

.contact-map p {
    color: rgba(255, 255, 255, .7);
}

.school-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin: 0;
    padding: 30px 55px 45px;
    gap: 20px;
}

.school-details div {
    display: grid;
}

.school-details dt {
    color: rgba(255, 255, 255, .5);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.school-details dd {
    margin: 4px 0 0;
    font-size: 13px;
    font-weight: 700;
}

.document-toast {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 1000;
    width: min(360px, calc(100% - 44px));
    padding: 16px 18px;
    border-radius: 10px;
    background: var(--navy);
    color: var(--white);
    box-shadow: var(--shadow);
    font-size: 12px;
}

.back-to-top {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 450;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background: var(--orange);
    color: var(--white);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

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

    .nav-inner {
        justify-content: space-between;
    }

    .header-cta {
        margin-left: auto;
        margin-right: 12px;
    }

    .menu-toggle {
        display: grid;
        width: 45px;
        height: 45px;
        place-content: center;
        gap: 5px;
        border: 1px solid var(--line);
        border-radius: 9px;
        background: var(--white);
        cursor: pointer;
    }

    .menu-toggle > span:not(.sr-only) {
        width: 20px;
        height: 2px;
        background: var(--navy);
        transition: transform .2s ease, opacity .2s ease;
    }

    .menu-toggle[aria-expanded="true"] > span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .menu-toggle[aria-expanded="true"] > span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle[aria-expanded="true"] > span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .mobile-menu {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        display: block;
        overflow-y: auto;
        max-height: calc(100vh - 90px);
        border-top: 1px solid var(--line);
        background: var(--white);
        box-shadow: var(--shadow);
    }

    .mobile-menu[hidden] {
        display: none;
    }

    .mobile-menu-inner {
        display: grid;
        padding-top: 18px;
        padding-bottom: 25px;
    }

    .mobile-menu-inner > a,
    .mobile-menu summary {
        display: block;
        padding: 13px 5px;
        border-bottom: 1px solid var(--line);
        cursor: pointer;
        font-size: 14px;
        font-weight: 750;
    }

    .mobile-submenu {
        display: grid;
        padding: 8px 0 8px 18px;
    }

    .mobile-submenu a {
        padding: 9px 0;
        color: var(--text);
        font-size: 13px;
    }

    .mobile-admission {
        margin-top: 15px;
        border: 0 !important;
        border-radius: 8px;
        background: var(--orange);
        color: var(--white);
        text-align: center;
    }

    .hero-grid {
        gap: 50px;
    }

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

@media (max-width: 900px) {
    .topbar-info span,
    .topbar-links {
        display: none;
    }

    .topbar-inner {
        justify-content: center;
    }

    .hero {
        padding-top: 68px;
    }

    .hero-grid,
    .split-grid,
    .legacy-grid,
    .page-intro-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        gap: 60px;
    }

    .hero-copy {
        text-align: center;
    }

    .hero-copy > p {
        margin-right: auto;
        margin-left: auto;
    }

    .hero-actions,
    .hero-trust {
        justify-content: center;
    }

    .hero-visual {
        width: min(580px, 100%);
        min-height: 520px;
        margin: 0 auto;
    }

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

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

    .feature-card:last-child {
        border-bottom: 0;
    }

    .split-grid {
        gap: 60px;
    }

    .legacy-grid {
        gap: 50px;
    }

    .leader-grid,
    .testimonial-grid,
    .notice-preview-grid,
    .achievement-grid,
    .disclosure-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .campus-image {
        min-height: 460px;
    }

    .admission-cta-inner,
    .page-cta-inner,
    .heading-row {
        align-items: flex-start;
        flex-direction: column;
    }

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

    .page-intro-grid {
        gap: 40px;
    }

    .page-intro-image {
        height: 400px;
    }

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

    .stats-grid > div:nth-child(2) {
        border-right: 0;
    }

    .stats-grid > div:nth-child(-n+2) {
        border-bottom: 1px solid var(--line);
    }

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

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

    .lightbox figure {
        min-height: 520px;
    }
}

@media (max-width: 640px) {
    .site-container {
        width: min(100% - 30px, 1180px);
    }

    .section {
        padding: 76px 0;
    }

    .topbar-info {
        gap: 14px;
        font-size: 10px;
    }

    .topbar-info a:nth-child(2) {
        display: none;
    }

    .nav-inner {
        min-height: 78px;
    }

    .brand {
        width: auto;
    }

    .brand img {
        width: 56px;
        height: 56px;
    }

    .brand-copy strong {
        font-size: 13px;
    }

    .brand-copy small {
        font-size: 8px;
        letter-spacing: .09em;
    }

    .header-cta {
        display: none;
    }

    .hero {
        padding: 55px 0 105px;
    }

    .hero h1 {
        font-size: 45px;
    }

    .hero-copy > p {
        font-size: 16px;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .hero-visual {
        min-height: 400px;
    }

    .hero-image-wrap {
        inset: 0 0 0 18px;
        border-width: 8px;
    }

    .hero-badge {
        top: 35px;
        left: -2px;
        width: 92px;
        height: 92px;
        border-width: 5px;
    }

    .hero-badge strong {
        font-size: 19px;
    }

    .hero-motto-card {
        right: 5px;
        bottom: 22px;
    }

    .feature-card {
        padding: 25px 22px;
    }

    .image-composition {
        min-height: 430px;
    }

    .image-main {
        height: 380px;
    }

    .image-small {
        height: 170px;
    }

    .experience-seal {
        top: 20px;
        width: 90px;
        height: 90px;
    }

    .section-copy h2,
    .section-heading h2 {
        font-size: 38px;
    }

    .value-grid,
    .leader-grid,
    .testimonial-grid,
    .notice-preview-grid,
    .achievement-grid,
    .disclosure-grid,
    .info-card-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .timeline article {
        grid-template-columns: 78px 1fr;
    }

    .leader-photo {
        height: 340px;
    }

    .testimonial-card > p,
    .notice-preview p {
        min-height: auto;
    }

    .footer-grid {
        gap: 35px;
    }

    .footer-bottom .site-container {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        padding: 18px 0;
    }

    .inner-hero {
        padding: 65px 0;
    }

    .inner-hero h1 {
        font-size: 42px;
    }

    .page-lead {
        font-size: 25px;
    }

    .page-intro-image {
        height: 310px;
    }

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

    .stats-grid > div {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .content-block {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .page-list {
        grid-template-columns: 1fr;
    }

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

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

    .notice-date {
        grid-template-columns: auto 1fr;
        align-items: center;
        gap: 12px;
        padding: 0 0 15px;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .masonry-gallery {
        grid-template-columns: 1fr;
        grid-auto-rows: 300px;
    }

    .gallery-item:nth-child(4n + 1) {
        grid-row: auto;
    }

    .school-details {
        grid-template-columns: 1fr;
        padding: 28px;
    }

    .contact-map {
        padding: 36px 28px;
    }

    .lightbox figure {
        min-height: 420px;
    }

    .lightbox figure img {
        max-height: 360px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}
