/* =========================================================
   SREE VASAVI VIDYA KENDRA
   MAIN WEBSITE STYLESHEET
   ========================================================= */

/* =========================================================
   01. ROOT
   ========================================================= */

:root {
  --navy: #102f46;
  --navy-dark: #092236;

  --blue: #1c587a;
  --gold: #d9a441;
  --gold-light: #f2d28b;

  --cream: #f7f5ef;
  --paper: #fbfaf7;
  --white: #ffffff;

  --text: #26343d;
  --muted: #6b7880;

  --line: #e5e7e5;

  --container: 1180px;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 26px;

  --shadow-soft: 0 15px 40px rgba(10, 35, 52, 0.08);

  --transition: 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

/* =========================================================
   02. RESET
   ========================================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;

  background: var(--paper);

  color: var(--text);

  line-height: 1.6;

  overflow-x: hidden;
}

img {
  display: block;

  width: 100%;

  height: auto;
}

a {
  color: inherit;

  text-decoration: none;
}

button {
  font: inherit;
}

/* =========================================================
   03. COMMON
   ========================================================= */

.container {
  width: min(calc(100% - 48px), var(--container));

  margin-inline: auto;
}

.section {
  padding-block: 110px;
}

.eyebrow {
  display: inline-block;

  margin-bottom: 15px;

  color: var(--gold);

  font-size: 11px;

  font-weight: 800;

  letter-spacing: 2px;

  text-transform: uppercase;
}

.section-heading-row {
  display: flex;

  align-items: flex-end;

  justify-content: space-between;

  gap: 30px;

  margin-bottom: 48px;
}

.section-heading-row h2 {
  max-width: 600px;

  color: var(--navy);

  font-size: clamp(32px, 4vw, 48px);

  font-weight: 600;

  line-height: 1.1;

  letter-spacing: -1.5px;
}

.section-intro h2,
.contact-content h2 {
  color: var(--navy);

  font-size: clamp(38px, 5vw, 62px);

  font-weight: 600;

  line-height: 1.05;

  letter-spacing: -2.5px;
}

em {
  color: var(--blue);

  font-family: Georgia, "Times New Roman", serif;

  font-weight: 400;
}

.text-link {
  display: inline-flex;

  align-items: center;

  gap: 9px;

  color: var(--navy);

  font-size: 13px;

  font-weight: 700;

  white-space: nowrap;
}

.text-link span {
  transition: transform var(--transition);
}

.text-link:hover span {
  transform: translate(4px, -4px);
}

/* =========================================================
   04. TOPBAR
   ========================================================= */

.topbar {
  background: var(--navy);

  color: var(--white);

  font-size: 12px;
}

.topbar-inner {
  min-height: 36px;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 20px;
}

.topbar-inner p {
  color: rgba(255, 255, 255, 0.75);
}

.topbar-label {
  margin-right: 10px;

  color: var(--gold);

  font-size: 10px;

  font-weight: 800;

  letter-spacing: 1.5px;
}

.topbar-inner a {
  color: var(--white);

  font-weight: 600;
}

.topbar-inner a span {
  margin-left: 4px;

  color: var(--gold);
}

/* =========================================================
   05. HEADER
   ========================================================= */

.site-header {
  position: sticky;

  top: 0;

  z-index: 1000;

  background: rgba(251, 250, 247, 0.94);

  border-bottom: 1px solid var(--line);

  backdrop-filter: blur(16px);
}

.navbar {
  min-height: 82px;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 30px;
}

/* Brand */

.brand {
  display: inline-flex;

  align-items: center;

  gap: 12px;

  flex-shrink: 0;
}

.brand-logo {
  width: 46px;

  height: 46px;

  display: grid;

  place-items: center;

  border-radius: 12px;

  background: var(--navy);

  color: var(--gold);

  border: 1px solid rgba(217, 164, 65, 0.4);
}

.brand-logo span {
  font-size: 14px;

  font-weight: 800;

  letter-spacing: 1px;
}

.brand-text strong {
  display: block;

  color: var(--navy);

  font-size: 15px;

  line-height: 1.2;
}

.brand-text span {
  display: block;

  margin-top: 3px;

  color: var(--muted);

  font-size: 8px;

  font-weight: 700;

  letter-spacing: 1.7px;
}

/* Navigation */

.main-nav {
  display: flex;

  align-items: center;

  gap: 23px;
}

.main-nav a {
  position: relative;

  color: #40505a;

  font-size: 12px;

  font-weight: 700;

  transition: color var(--transition);
}

.main-nav a::after {
  content: "";

  position: absolute;

  left: 0;

  bottom: -8px;

  width: 0;

  height: 2px;

  background: var(--gold);

  transition: width var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--navy);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.main-nav .nav-contact {
  padding: 10px 15px;

  border-radius: var(--radius-sm);

  background: var(--navy);

  color: var(--white);
}

.main-nav .nav-contact::after {
  display: none;
}

.menu-toggle {
  display: none;

  width: 42px;

  height: 42px;

  padding: 10px;

  border: 0;

  background: transparent;

  cursor: pointer;
}

.menu-toggle span {
  display: block;

  width: 22px;

  height: 2px;

  margin: 5px auto;

  background: var(--navy);

  transition:
    transform var(--transition),
    opacity var(--transition);
}

/* =========================================================
   06. BUTTONS
   ========================================================= */

.btn {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 12px;

  min-height: 48px;

  padding: 0 20px;

  border-radius: var(--radius-sm);

  font-size: 12px;

  font-weight: 800;

  transition:
    transform var(--transition),
    background var(--transition),
    color var(--transition);
}

.btn span {
  transition: transform var(--transition);
}

.btn:hover {
  transform: translateY(-3px);
}

.btn:hover span {
  transform: translateX(4px);
}

.btn-primary {
  background: var(--gold);

  color: var(--navy-dark);
}

.btn-primary:hover {
  background: var(--gold-light);
}

.btn-light {
  background: var(--white);

  color: var(--navy);
}

/* =========================================================
   07. HERO
   ========================================================= */

.hero {
  position: relative;

  min-height: calc(100vh - 118px);

  min-height: 690px;

  display: flex;

  align-items: center;

  overflow: hidden;

  color: var(--white);
}

.hero-background {
  position: absolute;

  inset: 0;

  z-index: 0;
}

.hero-background img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  object-position: center;
}

.hero-overlay {
  position: absolute;

  inset: 0;

  z-index: 1;

  background: linear-gradient(
    90deg,
    rgba(7, 29, 45, 0.94) 0%,
    rgba(10, 38, 57, 0.82) 45%,
    rgba(10, 38, 57, 0.35) 100%
  );
}

.hero-container {
  position: relative;

  z-index: 2;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 50px;

  padding-block: 100px;
}

.hero-content {
  max-width: 720px;
}

.hero-tag {
  display: inline-flex;

  padding: 7px 12px;

  margin-bottom: 25px;

  border: 1px solid rgba(217, 164, 65, 0.5);

  border-radius: 50px;

  color: var(--gold-light);

  font-size: 10px;

  font-weight: 800;

  letter-spacing: 2px;
}

.hero h1 {
  max-width: 760px;

  margin-bottom: 25px;

  font-size: clamp(48px, 7vw, 82px);

  font-weight: 600;

  line-height: 0.98;

  letter-spacing: -4px;
}

.hero h1 span {
  color: var(--gold-light);
}

.hero-content > p {
  max-width: 590px;

  margin-bottom: 32px;

  color: rgba(255, 255, 255, 0.78);

  font-size: 16px;
}

.hero-actions {
  display: flex;

  flex-wrap: wrap;

  gap: 10px;
}

.hero-info {
  width: 190px;

  flex-shrink: 0;

  padding-left: 25px;

  border-left: 1px solid rgba(255, 255, 255, 0.35);
}

.hero-info-line {
  width: 28px;

  height: 2px;

  margin-bottom: 15px;

  background: var(--gold);
}

.hero-info p {
  margin-bottom: 8px;

  color: rgba(255, 255, 255, 0.55);

  font-size: 9px;

  font-weight: 800;

  letter-spacing: 1.5px;
}

.hero-info strong {
  display: block;

  margin-bottom: 8px;

  font-size: 17px;

  line-height: 1.2;
}

.hero-info > span {
  color: rgba(255, 255, 255, 0.55);

  font-size: 11px;
}

.hero-scroll {
  position: absolute;

  z-index: 2;

  bottom: 28px;

  left: 50%;

  display: flex;

  align-items: center;

  gap: 10px;

  color: rgba(255, 255, 255, 0.6);

  font-size: 9px;

  font-weight: 700;

  letter-spacing: 1.5px;

  text-transform: uppercase;

  transform: translateX(-50%);
}

.hero-scroll i {
  display: block;

  width: 30px;

  height: 1px;

  background: rgba(255, 255, 255, 0.5);
}

/* =========================================================
   08. QUICK INFO
   ========================================================= */

.quick-info {
  position: relative;

  z-index: 5;

  margin-top: -45px;
}

.quick-info-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  background: var(--white);

  border: 1px solid var(--line);

  box-shadow: var(--shadow-soft);
}

.info-card {
  min-height: 115px;

  display: flex;

  align-items: center;

  gap: 15px;

  padding: 20px;

  border-right: 1px solid var(--line);
}

.info-card:last-child {
  border-right: 0;
}

.info-number {
  color: var(--gold);

  font-size: 11px;

  font-weight: 800;
}

.info-card small {
  display: block;

  margin-bottom: 4px;

  color: var(--muted);

  font-size: 9px;

  font-weight: 800;

  letter-spacing: 1.2px;
}

.info-card h3 {
  color: var(--navy);

  font-size: 14px;

  line-height: 1.25;
}

/* =========================================================
   09. ABOUT
   ========================================================= */

.about-preview {
  background: var(--paper);
}

.about-grid {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 100px;

  align-items: end;

  margin-bottom: 70px;
}

.about-text {
  max-width: 550px;
}

.about-text p {
  color: var(--muted);

  font-size: 15px;
}

.about-text .lead {
  margin-bottom: 20px;

  color: var(--text);

  font-size: 18px;

  line-height: 1.7;
}

.about-text .text-link {
  margin-top: 25px;
}

.about-visual {
  position: relative;

  display: grid;

  grid-template-columns: 2fr 1fr;

  grid-template-rows: 420px 110px;

  gap: 12px;
}

.about-image-main {
  grid-row: 1 / 3;

  overflow: hidden;

  border-radius: var(--radius-lg);
}

.about-image-main img,
.about-image-small img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-image-main:hover img,
.about-image-small:hover img {
  transform: scale(1.04);
}

.about-image-small {
  overflow: hidden;

  border-radius: var(--radius-lg);
}

.about-caption {
  display: flex;

  align-items: center;

  gap: 15px;

  padding: 18px;

  background: var(--navy);

  color: var(--white);

  border-radius: var(--radius-lg);
}

.about-caption span {
  color: var(--gold);

  font-size: 12px;

  font-weight: 800;
}

.about-caption p {
  color: rgba(255, 255, 255, 0.75);

  font-size: 11px;
}

/* =========================================================
   10. PRINCIPAL
   ========================================================= */

.principal-section {
  background: var(--cream);
}

.principal-grid {
  display: grid;

  grid-template-columns: 0.8fr 1.2fr;

  gap: 90px;

  align-items: center;
}

.principal-photo {
  position: relative;
}

.photo-frame {
  position: relative;

  padding: 12px;

  background: var(--white);

  box-shadow: var(--shadow-soft);
}

.photo-frame img {
  aspect-ratio: 4 / 5;

  object-fit: cover;
}

.photo-label {
  position: absolute;

  right: -18px;

  bottom: 25px;

  padding: 10px 15px;

  background: var(--gold);

  color: var(--navy);

  font-size: 9px;

  font-weight: 800;

  letter-spacing: 1.5px;
}

.principal-content {
  max-width: 650px;
}

.principal-content h2 {
  margin-bottom: 30px;

  color: var(--navy);

  font-size: clamp(38px, 5vw, 60px);

  line-height: 1;

  letter-spacing: -2px;
}

.principal-content blockquote {
  position: relative;

  margin-bottom: 25px;

  padding-left: 25px;

  border-left: 3px solid var(--gold);

  color: var(--navy);

  font-family: Georgia, "Times New Roman", serif;

  font-size: 24px;

  line-height: 1.45;
}

.principal-content > p {
  max-width: 600px;

  color: var(--muted);

  font-size: 14px;
}

.principal-signature {
  display: flex;

  flex-direction: column;

  margin-top: 25px;
}

.principal-signature strong {
  color: var(--navy);

  font-size: 13px;
}

.principal-signature span {
  color: var(--muted);

  font-size: 11px;
}

/* =========================================================
   11. ACADEMICS
   ========================================================= */

.academics-preview {
  background: var(--paper);
}

.academic-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  border-top: 1px solid var(--line);

  border-left: 1px solid var(--line);
}

.academic-card {
  position: relative;

  min-height: 270px;

  padding: 30px;

  border-right: 1px solid var(--line);

  border-bottom: 1px solid var(--line);

  transition:
    background var(--transition),
    transform var(--transition);
}

.academic-card:hover {
  background: var(--navy);

  transform: translateY(-5px);
}

.academic-card:hover h3,
.academic-card:hover p {
  color: var(--white);
}

.academic-card:hover .card-number {
  color: var(--gold);
}

.card-number {
  position: absolute;

  top: 20px;

  right: 20px;

  color: var(--gold);

  font-size: 10px;

  font-weight: 800;
}

.academic-icon {
  width: 48px;

  height: 48px;

  display: grid;

  place-items: center;

  margin-bottom: 35px;

  border: 1px solid var(--line);

  border-radius: 50%;

  color: var(--gold);

  font-size: 20px;
}

.academic-card h3 {
  margin-bottom: 10px;

  color: var(--navy);

  font-size: 18px;
}

.academic-card p {
  color: var(--muted);

  font-size: 13px;
}

/* =========================================================
   12. FACILITIES
   ========================================================= */

.facilities-preview {
  background: var(--cream);
}

.facility-showcase {
  display: grid;

  grid-template-columns: 1.5fr 1fr;

  gap: 14px;
}

.facility-large,
.facility-small {
  position: relative;

  display: block;

  overflow: hidden;
}

.facility-large {
  min-height: 590px;

  border-radius: var(--radius-lg);
}

.facility-large img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.facility-large:hover img {
  transform: scale(1.04);
}

.facility-overlay {
  position: absolute;

  inset: auto 0 0;

  padding: 45px;

  color: var(--white);

  background: linear-gradient(transparent, rgba(5, 27, 42, 0.9));
}

.facility-overlay span,
.facility-small span {
  color: var(--gold-light);

  font-size: 9px;

  font-weight: 800;

  letter-spacing: 1.5px;
}

.facility-overlay h3 {
  margin: 8px 0;

  font-size: 30px;
}

.facility-overlay p {
  max-width: 400px;

  color: rgba(255, 255, 255, 0.75);

  font-size: 13px;
}

.facility-side {
  display: grid;

  grid-template-rows: 1fr 1fr;

  gap: 14px;
}

.facility-small {
  border-radius: var(--radius-lg);

  background: var(--navy);
}

.facility-small img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  opacity: 0.7;

  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.facility-small:hover img {
  transform: scale(1.05);
}

.facility-small > div {
  position: absolute;

  left: 25px;

  right: 25px;

  bottom: 25px;
}

.facility-small h3 {
  margin-top: 5px;

  color: var(--white);

  font-size: 21px;
}

/* =========================================================
   13. ACTIVITIES
   ========================================================= */

.activities-preview {
  background: var(--paper);
}

.activity-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 20px;
}

.activity-card {
  overflow: hidden;

  background: var(--white);

  border: 1px solid var(--line);

  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.activity-card:hover {
  transform: translateY(-6px);

  box-shadow: var(--shadow-soft);
}

.activity-image {
  position: relative;

  height: 280px;

  overflow: hidden;
}

.activity-image img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.activity-card:hover .activity-image img {
  transform: scale(1.05);
}

.activity-image > span {
  position: absolute;

  top: 15px;

  left: 15px;

  padding: 7px 10px;

  background: var(--gold);

  color: var(--navy);

  font-size: 8px;

  font-weight: 800;

  letter-spacing: 1px;
}

.activity-content {
  padding: 25px;
}

.activity-content small {
  color: var(--gold);

  font-size: 9px;

  font-weight: 800;

  letter-spacing: 1px;
}

.activity-content h3 {
  margin: 7px 0 8px;

  color: var(--navy);

  font-size: 21px;
}

.activity-content p {
  color: var(--muted);

  font-size: 13px;
}

/* =========================================================
   14. GALLERY
   ========================================================= */

.gallery-preview {
  background: var(--cream);
}

.gallery-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  grid-auto-rows: 220px;

  gap: 10px;
}

.gallery-item {
  position: relative;

  overflow: hidden;

  display: block;
}

.gallery-item img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-wide {
  grid-column: span 2;
}

/* =========================================================
   15. DISCLOSURE
   ========================================================= */

.disclosure-banner {
  background: var(--navy);

  color: var(--white);

  padding-block: 70px;
}

.disclosure-inner {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 40px;
}

.disclosure-inner h2 {
  margin-bottom: 10px;

  font-size: clamp(30px, 4vw, 45px);

  line-height: 1.1;

  letter-spacing: -1px;
}

.disclosure-inner p {
  max-width: 620px;

  color: rgba(255, 255, 255, 0.65);

  font-size: 13px;
}

/* =========================================================
   16. CONTACT
   ========================================================= */

.contact-preview {
  background: var(--paper);
}

.contact-grid {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 100px;

  align-items: center;
}

.contact-content > p {
  max-width: 520px;

  margin: 25px 0 30px;

  color: var(--muted);

  font-size: 15px;
}

.contact-details {
  display: grid;

  gap: 0;
}

.contact-detail {
  display: flex;

  align-items: flex-start;

  gap: 18px;

  padding-block: 20px;

  border-bottom: 1px solid var(--line);
}

.contact-detail:first-child {
  padding-top: 0;
}

.detail-icon {
  width: 40px;

  height: 40px;

  display: grid;

  place-items: center;

  flex-shrink: 0;

  border: 1px solid var(--line);

  border-radius: 50%;

  color: var(--gold);

  font-size: 11px;

  font-weight: 800;
}

.contact-detail small {
  display: block;

  margin-bottom: 4px;

  color: var(--gold);

  font-size: 9px;

  font-weight: 800;

  letter-spacing: 1.2px;
}

.contact-detail p {
  color: var(--text);

  font-size: 13px;
}

/* =========================================================
   17. FOOTER
   ========================================================= */

.site-footer {
  background: var(--navy-dark);

  color: var(--white);
}

.footer-main {
  display: grid;

  grid-template-columns: 2fr 1fr 1fr 1.2fr;

  gap: 50px;

  padding-block: 70px;
}

.footer-brand .brand {
  margin-bottom: 22px;
}

.footer-brand .brand-text strong {
  color: var(--white);
}

.footer-brand .brand-text span {
  color: rgba(255, 255, 255, 0.5);
}

.footer-brand p {
  max-width: 350px;

  color: rgba(255, 255, 255, 0.55);

  font-size: 12px;
}

.footer-column {
  display: flex;

  flex-direction: column;

  align-items: flex-start;

  gap: 10px;
}

.footer-column h3 {
  margin-bottom: 10px;

  color: var(--gold-light);

  font-size: 11px;

  letter-spacing: 1px;

  text-transform: uppercase;
}

.footer-column a,
.footer-column p {
  color: rgba(255, 255, 255, 0.6);

  font-size: 12px;
}

.footer-column a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 20px;

  padding-block: 20px;

  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.4);

  font-size: 10px;
}

.footer-bottom strong {
  color: rgba(255, 255, 255, 0.65);
}

/* =========================================================
   18. REVEAL ANIMATION
   ========================================================= */

.reveal {
  opacity: 0;

  transform: translateY(25px);

  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
  opacity: 1;

  transform: translateY(0);
}

/* =========================================================
   19. RESPONSIVE — TABLET
   ========================================================= */

@media (max-width: 1100px) {
  .main-nav {
    gap: 14px;
  }

  .main-nav a {
    font-size: 11px;
  }

  .about-grid,
  .principal-grid,
  .contact-grid {
    gap: 60px;
  }

  .footer-main {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
}

/* =========================================================
   20. RESPONSIVE — MOBILE NAV
   ========================================================= */

@media (max-width: 900px) {
  .container {
    width: min(calc(100% - 36px), var(--container));
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;

    top: 82px;

    left: 0;

    right: 0;

    display: flex;

    flex-direction: column;

    align-items: stretch;

    gap: 0;

    padding: 15px 18px 20px;

    background: var(--paper);

    border-bottom: 1px solid var(--line);

    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);

    opacity: 0;

    visibility: hidden;

    transform: translateY(-10px);

    transition:
      opacity var(--transition),
      visibility var(--transition),
      transform var(--transition);
  }

  .main-nav.open {
    opacity: 1;

    visibility: visible;

    transform: translateY(0);
  }

  .main-nav a {
    padding: 13px 5px;

    border-bottom: 1px solid var(--line);
  }

  .main-nav a::after {
    display: none;
  }

  .main-nav .nav-contact {
    margin-top: 10px;

    text-align: center;

    border: 0;
  }

  .hero-container {
    flex-direction: column;

    align-items: flex-start;
  }

  .hero-info {
    display: none;
  }

  .quick-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .info-card:nth-child(2) {
    border-right: 0;
  }

  .info-card:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .about-grid,
  .principal-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-grid {
    gap: 30px;
  }

  .academic-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .facility-showcase {
    grid-template-columns: 1fr;
  }

  .facility-large {
    min-height: 500px;
  }

  .facility-side {
    grid-template-columns: 1fr 1fr;

    grid-template-rows: 300px;
  }

  .activity-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .disclosure-inner {
    align-items: flex-start;

    flex-direction: column;
  }
}

/* =========================================================
   21. RESPONSIVE — SMALL MOBILE
   ========================================================= */

@media (max-width: 600px) {
  .section {
    padding-block: 75px;
  }

  .topbar-inner {
    min-height: 48px;

    align-items: flex-start;

    flex-direction: column;

    justify-content: center;

    gap: 2px;
  }

  .brand-text strong {
    font-size: 13px;
  }

  .hero {
    min-height: 620px;
  }

  .hero-container {
    padding-block: 80px;
  }

  .hero h1 {
    font-size: 48px;

    letter-spacing: -2.5px;
  }

  .hero-content > p {
    font-size: 14px;
  }

  .hero-scroll {
    display: none;
  }

  .quick-info {
    margin-top: -25px;
  }

  .quick-info-grid {
    grid-template-columns: 1fr;
  }

  .info-card {
    min-height: 90px;

    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .info-card:last-child {
    border-bottom: 0;
  }

  .about-visual {
    grid-template-columns: 1fr;

    grid-template-rows: 300px 200px auto;
  }

  .about-image-main {
    grid-row: auto;
  }

  .about-caption {
    min-height: 90px;
  }

  .principal-grid {
    gap: 45px;
  }

  .principal-content h2 {
    font-size: 42px;
  }

  .academic-grid {
    grid-template-columns: 1fr;
  }

  .facility-side {
    grid-template-columns: 1fr;

    grid-template-rows: 250px 250px;
  }

  .facility-overlay {
    padding: 25px;
  }

  .activity-grid {
    grid-template-columns: 1fr;
  }

  .activity-image {
    height: 240px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;

    grid-auto-rows: 250px;
  }

  .gallery-wide {
    grid-column: auto;
  }

  .contact-grid {
    gap: 45px;
  }

  .footer-main {
    grid-template-columns: 1fr;

    gap: 35px;

    padding-block: 55px;
  }

  .footer-bottom {
    align-items: flex-start;

    flex-direction: column;

    padding-block: 18px;
  }
}

/* =========================================================
   22. ACCESSIBILITY
   ========================================================= */

:focus-visible {
  outline: 3px solid var(--gold);

  outline-offset: 4px;
}

/* =========================================================
   23. REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;

    animation-iteration-count: 1 !important;

    transition-duration: 0.01ms !important;
  }
}

/* =========================================================
   ABOUT PAGE
   ========================================================= */

/* =========================================================
   PAGE HERO
   ========================================================= */

.page-hero {
  position: relative;

  overflow: hidden;

  background: var(--navy);

  color: var(--white);

  padding-block: 100px;
}

.page-hero::after {
  content: "";

  position: absolute;

  width: 450px;

  height: 450px;

  right: -150px;

  top: -180px;

  border: 1px solid rgba(217, 164, 65, 0.25);

  border-radius: 50%;
}

.page-hero-inner {
  position: relative;

  z-index: 2;

  display: flex;

  align-items: flex-end;

  justify-content: space-between;

  gap: 50px;
}

.page-hero h1 {
  max-width: 800px;

  margin-bottom: 22px;

  font-size: clamp(45px, 6vw, 72px);

  line-height: 1;

  letter-spacing: -3px;
}

.page-hero h1 em {
  color: var(--gold-light);
}

.page-hero-inner > div:first-child > p {
  max-width: 580px;

  color: rgba(255, 255, 255, 0.65);

  font-size: 15px;
}

.page-hero-number {
  min-width: 100px;

  padding-left: 20px;

  border-left: 1px solid rgba(255, 255, 255, 0.25);
}

.page-hero-number span {
  display: block;

  margin-bottom: 5px;

  color: var(--gold);

  font-size: 38px;

  font-weight: 600;

  line-height: 1;
}

.page-hero-number p {
  color: rgba(255, 255, 255, 0.55);

  font-size: 9px;

  font-weight: 800;

  letter-spacing: 1.5px;
}

/* =========================================================
   PROFILE
   ========================================================= */

.about-profile-grid {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 100px;

  align-items: start;
}

.about-profile-content {
  max-width: 600px;
}

.about-profile-content p {
  margin-bottom: 20px;

  color: var(--muted);

  font-size: 14px;
}

.about-profile-content .lead {
  color: var(--text);

  font-size: 18px;

  line-height: 1.7;
}

/* =========================================================
   FULL WIDTH IMAGE
   ========================================================= */

.about-full-image {
  position: relative;

  height: 560px;

  overflow: hidden;
}

.about-full-image::after {
  content: "";

  position: absolute;

  inset: 0;

  background: linear-gradient(0deg, rgba(6, 28, 43, 0.75), transparent 55%);
}

.about-full-image img {
  width: 100%;

  height: 100%;

  object-fit: cover;
}

.about-full-image-caption {
  position: absolute;

  z-index: 2;

  left: max(24px, calc((100% - var(--container)) / 2));

  bottom: 50px;

  display: flex;

  flex-direction: column;
}

.about-full-image-caption span {
  margin-bottom: 5px;

  color: var(--gold-light);

  font-size: 9px;

  font-weight: 800;

  letter-spacing: 2px;
}

.about-full-image-caption strong {
  color: var(--white);

  font-size: 32px;

  font-weight: 500;
}

/* =========================================================
   VISION
   ========================================================= */

.vision-section {
  background: var(--cream);
}

.vision-grid {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 15px;
}

.vision-card {
  position: relative;

  min-height: 330px;

  padding: 40px;

  background: var(--white);

  border: 1px solid var(--line);

  overflow: hidden;
}

.vision-card-dark {
  background: var(--navy);

  color: var(--white);

  border-color: var(--navy);
}

.vision-number {
  position: absolute;

  top: 25px;

  right: 30px;

  color: var(--gold);

  font-size: 11px;

  font-weight: 800;
}

.vision-symbol {
  width: 55px;

  height: 55px;

  display: grid;

  place-items: center;

  margin-bottom: 55px;

  border: 1px solid var(--line);

  border-radius: 50%;

  color: var(--gold);

  font-size: 20px;
}

.vision-card-dark .vision-symbol {
  border-color: rgba(255, 255, 255, 0.15);
}

.vision-card h3 {
  margin-bottom: 12px;

  color: var(--navy);

  font-size: 25px;
}

.vision-card-dark h3 {
  color: var(--white);
}

.vision-card p {
  max-width: 500px;

  color: var(--muted);

  font-size: 14px;
}

.vision-card-dark p {
  color: rgba(255, 255, 255, 0.65);
}

/* =========================================================
   VALUES
   ========================================================= */

.values-section {
  background: var(--paper);
}

.values-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  border-top: 1px solid var(--line);

  border-left: 1px solid var(--line);
}

.value-card {
  min-height: 190px;

  display: flex;

  gap: 20px;

  padding: 30px;

  border-right: 1px solid var(--line);

  border-bottom: 1px solid var(--line);

  transition: background var(--transition);
}

.value-card:hover {
  background: var(--cream);
}

.value-card > span {
  color: var(--gold);

  font-size: 10px;

  font-weight: 800;
}

.value-card h3 {
  margin-bottom: 7px;

  color: var(--navy);

  font-size: 19px;
}

.value-card p {
  color: var(--muted);

  font-size: 12px;
}

/* =========================================================
   PRINCIPAL ABOUT
   ========================================================= */

.principal-about {
  background: var(--cream);
}

.principal-about-grid {
  display: grid;

  grid-template-columns: 0.8fr 1.2fr;

  gap: 100px;

  align-items: center;
}

.principal-about-photo {
  max-width: 390px;
}

.principal-about-content {
  max-width: 650px;
}

.principal-about-content h2 {
  margin-bottom: 30px;

  color: var(--navy);

  font-size: clamp(38px, 5vw, 58px);

  line-height: 1;

  letter-spacing: -2px;
}

.principal-about-content blockquote {
  margin-bottom: 25px;

  padding-left: 25px;

  border-left: 3px solid var(--gold);

  color: var(--navy);

  font-family: Georgia, "Times New Roman", serif;

  font-size: 22px;

  line-height: 1.5;
}

.principal-about-content > p {
  color: var(--muted);

  font-size: 14px;
}

/* =========================================================
   INSTITUTION
   ========================================================= */

.institution-section {
  background: var(--paper);
}

.institution-grid {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 100px;

  align-items: center;
}

.institution-content h2 {
  margin-bottom: 25px;

  color: var(--navy);

  font-size: clamp(35px, 5vw, 55px);

  line-height: 1;

  letter-spacing: -2px;
}

.institution-content p {
  max-width: 550px;

  margin-bottom: 15px;

  color: var(--muted);

  font-size: 14px;
}

.institution-facts {
  border-top: 1px solid var(--line);
}

.institution-fact {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 30px;

  padding: 20px 0;

  border-bottom: 1px solid var(--line);
}

.institution-fact span {
  color: var(--gold);

  font-size: 9px;

  font-weight: 800;

  letter-spacing: 1.5px;
}

.institution-fact strong {
  color: var(--navy);

  font-size: 14px;

  text-align: right;
}

/* =========================================================
   INNER CTA
   ========================================================= */

.inner-cta {
  background: var(--navy);

  color: var(--white);

  padding-block: 65px;
}

.inner-cta-inner {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 40px;
}

.inner-cta h2 {
  font-size: clamp(30px, 4vw, 45px);

  line-height: 1.1;
}

.inner-cta-actions {
  display: flex;

  flex-wrap: wrap;

  gap: 10px;
}

/* =========================================================
   ABOUT RESPONSIVE
   ========================================================= */

@media (max-width: 900px) {
  .about-profile-grid,
  .principal-about-grid,
  .institution-grid {
    grid-template-columns: 1fr;

    gap: 50px;
  }

  .vision-grid {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-hero-number {
    display: none;
  }

  .inner-cta-inner {
    align-items: flex-start;

    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .page-hero {
    padding-block: 75px;
  }

  .page-hero h1 {
    font-size: 45px;

    letter-spacing: -2px;
  }

  .about-full-image {
    height: 420px;
  }

  .about-full-image-caption {
    bottom: 30px;
  }

  .about-full-image-caption strong {
    font-size: 25px;
  }

  .vision-card {
    min-height: 290px;

    padding: 28px;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .value-card {
    min-height: 160px;
  }

  .institution-fact {
    align-items: flex-start;

    flex-direction: column;

    gap: 5px;
  }

  .institution-fact strong {
    text-align: left;
  }
}
/* =========================================================
   ACADEMICS PAGE
   ========================================================= */

/* =========================================================
   ACADEMIC INTRO
   ========================================================= */

.academic-intro {
  background: var(--paper);
}

.academic-intro-grid {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 100px;

  align-items: start;
}

.academic-intro-content {
  max-width: 600px;
}

.academic-intro-content p {
  margin-bottom: 20px;

  color: var(--muted);

  font-size: 14px;
}

.academic-intro-content .lead {
  color: var(--text);

  font-size: 18px;

  line-height: 1.7;
}

/* =========================================================
   CURRICULUM
   ========================================================= */

.curriculum-section {
  background: var(--cream);
}

.curriculum-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 14px;
}

.curriculum-card {
  position: relative;

  min-height: 360px;

  display: flex;

  flex-direction: column;

  padding: 30px;

  background: var(--white);

  border: 1px solid var(--line);

  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.curriculum-card:hover {
  transform: translateY(-6px);

  box-shadow: var(--shadow-soft);
}

.curriculum-card-dark {
  background: var(--navy);

  border-color: var(--navy);

  color: var(--white);
}

.curriculum-top {
  display: flex;

  align-items: center;

  justify-content: space-between;
}

.curriculum-top > span {
  color: var(--gold);

  font-size: 11px;

  font-weight: 800;
}

.curriculum-top small {
  color: var(--muted);

  font-size: 8px;

  font-weight: 800;

  letter-spacing: 1.5px;
}

.curriculum-card-dark .curriculum-top small {
  color: rgba(255, 255, 255, 0.5);
}

.curriculum-content {
  margin-top: auto;
}

.curriculum-content h3 {
  margin-bottom: 12px;

  color: var(--navy);

  font-size: 25px;

  line-height: 1.15;
}

.curriculum-card-dark .curriculum-content h3 {
  color: var(--white);
}

.curriculum-content p {
  color: var(--muted);

  font-size: 13px;
}

.curriculum-card-dark .curriculum-content p {
  color: rgba(255, 255, 255, 0.65);
}

.curriculum-arrow {
  position: absolute;

  right: 30px;

  bottom: 28px;

  color: var(--gold);

  font-size: 18px;
}

/* =========================================================
   LEARNING AREAS
   ========================================================= */

.learning-section {
  background: var(--paper);
}

.learning-list {
  border-top: 1px solid var(--line);
}

.learning-item {
  display: grid;

  grid-template-columns: 70px 1fr;

  gap: 30px;

  padding: 27px 0;

  border-bottom: 1px solid var(--line);

  transition: padding var(--transition);
}

.learning-item:hover {
  padding-left: 12px;
}

.learning-item > span {
  color: var(--gold);

  font-size: 10px;

  font-weight: 800;
}

.learning-item h3 {
  margin-bottom: 5px;

  color: var(--navy);

  font-size: 20px;
}

.learning-item p {
  max-width: 650px;

  color: var(--muted);

  font-size: 13px;
}

/* =========================================================
   TEACHING & LEARNING
   ========================================================= */

.teaching-section {
  background: var(--cream);
}

.teaching-grid {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 90px;

  align-items: center;
}

.teaching-image {
  position: relative;

  min-height: 560px;

  overflow: hidden;

  border-radius: var(--radius-lg);
}

.teaching-image > img {
  width: 100%;

  height: 100%;

  object-fit: cover;
}

.teaching-image::after {
  content: "";

  position: absolute;

  inset: 0;

  background: linear-gradient(0deg, rgba(7, 30, 45, 0.8), transparent 60%);
}

.teaching-image-label {
  position: absolute;

  z-index: 2;

  left: 35px;

  right: 35px;

  bottom: 35px;
}

.teaching-image-label span {
  display: block;

  margin-bottom: 8px;

  color: var(--gold-light);

  font-size: 9px;

  font-weight: 800;

  letter-spacing: 1.5px;
}

.teaching-image-label strong {
  display: block;

  max-width: 450px;

  color: var(--white);

  font-family: Georgia, "Times New Roman", serif;

  font-size: 30px;

  font-weight: 400;

  line-height: 1.2;
}

.teaching-content {
  max-width: 600px;
}

.teaching-content h2 {
  margin-bottom: 25px;

  color: var(--navy);

  font-size: clamp(38px, 5vw, 58px);

  line-height: 1;

  letter-spacing: -2px;
}

.teaching-content .lead {
  margin-bottom: 30px;

  color: var(--text);

  font-size: 16px;
}

.teaching-points {
  border-top: 1px solid var(--line);
}

.teaching-points > div {
  display: flex;

  align-items: center;

  gap: 20px;

  padding: 15px 0;

  border-bottom: 1px solid var(--line);
}

.teaching-points span {
  color: var(--gold);

  font-size: 10px;

  font-weight: 800;
}

.teaching-points p {
  color: var(--navy);

  font-size: 13px;

  font-weight: 600;
}

/* =========================================================
   ASSESSMENT
   ========================================================= */

.assessment-section {
  background: var(--paper);
}

.assessment-heading {
  max-width: 700px;

  margin-bottom: 50px;
}

.assessment-heading h2 {
  color: var(--navy);

  font-size: clamp(36px, 5vw, 55px);

  line-height: 1;

  letter-spacing: -2px;
}

.assessment-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 14px;
}

.assessment-card {
  min-height: 270px;

  padding: 30px;

  border: 1px solid var(--line);

  background: var(--white);
}

.assessment-card > span {
  display: block;

  margin-bottom: 65px;

  color: var(--gold);

  font-size: 10px;

  font-weight: 800;
}

.assessment-card h3 {
  margin-bottom: 10px;

  color: var(--navy);

  font-size: 20px;
}

.assessment-card p {
  color: var(--muted);

  font-size: 13px;
}

/* =========================================================
   STUDENT DEVELOPMENT
   ========================================================= */

.development-section {
  background: var(--navy);

  color: var(--white);
}

.development-grid {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 100px;

  align-items: center;
}

.development-content h2 {
  margin-bottom: 25px;

  color: var(--white);

  font-size: clamp(38px, 5vw, 58px);

  line-height: 1;

  letter-spacing: -2px;
}

.development-content h2 em {
  color: var(--gold-light);
}

.development-content > p {
  max-width: 580px;

  margin-bottom: 28px;

  color: rgba(255, 255, 255, 0.65);

  font-size: 14px;
}

.development-content .text-link {
  color: var(--white);
}

.development-stat-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  border-top: 1px solid rgba(255, 255, 255, 0.15);

  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.development-stat {
  min-height: 180px;

  display: flex;

  flex-direction: column;

  justify-content: space-between;

  padding: 25px;

  border-right: 1px solid rgba(255, 255, 255, 0.15);

  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.development-stat strong {
  color: var(--gold);

  font-size: 11px;
}

.development-stat span {
  color: var(--white);

  font-size: 11px;

  font-weight: 800;

  letter-spacing: 1.5px;
}

/* =========================================================
   DOCUMENT CTA
   ========================================================= */

.academic-documents-cta {
  background: var(--gold);

  color: var(--navy-dark);

  padding-block: 60px;
}

.academic-documents-inner {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 40px;
}

.academic-documents-inner .eyebrow {
  color: var(--navy);
}

.academic-documents-inner h2 {
  max-width: 700px;

  font-size: clamp(30px, 4vw, 45px);

  line-height: 1.1;

  letter-spacing: -1px;
}

.academic-documents-inner .btn-primary {
  background: var(--navy);

  color: var(--white);

  flex-shrink: 0;
}

/* =========================================================
   ACADEMICS RESPONSIVE
   ========================================================= */

@media (max-width: 900px) {
  .academic-intro-grid,
  .teaching-grid,
  .development-grid {
    grid-template-columns: 1fr;

    gap: 50px;
  }

  .curriculum-grid {
    grid-template-columns: 1fr;
  }

  .assessment-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .teaching-image {
    min-height: 450px;
  }

  .academic-documents-inner {
    align-items: flex-start;

    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .learning-item {
    grid-template-columns: 45px 1fr;

    gap: 15px;
  }

  .assessment-grid {
    grid-template-columns: 1fr;
  }

  .development-stat-grid {
    grid-template-columns: 1fr 1fr;
  }

  .development-stat {
    min-height: 140px;
  }

  .teaching-image {
    min-height: 400px;
  }

  .teaching-image-label {
    left: 25px;

    right: 25px;

    bottom: 25px;
  }

  .teaching-image-label strong {
    font-size: 25px;
  }
}
/* =========================================================
   FACILITIES / CAMPUS PAGE
   ========================================================= */

/* =========================================================
   INTRO
   ========================================================= */

.facilities-intro {
  background: var(--paper);
}

.facilities-intro-grid {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 100px;

  align-items: start;
}

.facilities-intro-content {
  max-width: 600px;
}

.facilities-intro-content p {
  margin-bottom: 20px;

  color: var(--muted);

  font-size: 14px;
}

.facilities-intro-content .lead {
  color: var(--text);

  font-size: 18px;

  line-height: 1.7;
}

/* =========================================================
   FEATURED CAMPUS
   ========================================================= */

.campus-feature {
  padding-block: 0 110px;

  background: var(--paper);
}

.campus-feature-grid {
  display: grid;

  grid-template-columns: 1.35fr 1fr;

  min-height: 520px;
}

.campus-feature-image {
  overflow: hidden;
}

.campus-feature-image img {
  width: 100%;

  height: 100%;

  min-height: 520px;

  object-fit: cover;
}

.campus-feature-content {
  display: flex;

  flex-direction: column;

  justify-content: center;

  padding: 60px;

  background: var(--navy);

  color: var(--white);
}

.campus-feature-content h2 {
  margin-bottom: 25px;

  color: var(--white);

  font-size: clamp(35px, 4vw, 52px);

  line-height: 1;

  letter-spacing: -2px;
}

.campus-feature-content h2 em {
  color: var(--gold-light);
}

.campus-feature-content p {
  max-width: 500px;

  margin-bottom: 15px;

  color: rgba(255, 255, 255, 0.65);

  font-size: 13px;
}

/* =========================================================
   FACILITY LIST
   ========================================================= */

.facilities-list-section {
  background: var(--cream);
}

.facility-list-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 20px;
}

.facility-detail-card {
  overflow: hidden;

  background: var(--white);

  border: 1px solid var(--line);

  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.facility-detail-card:hover {
  transform: translateY(-6px);

  box-shadow: var(--shadow-soft);
}

.facility-detail-image {
  position: relative;

  height: 250px;

  overflow: hidden;
}

.facility-detail-image img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.facility-detail-card:hover .facility-detail-image img {
  transform: scale(1.05);
}

.facility-detail-image > span {
  position: absolute;

  top: 15px;

  right: 15px;

  width: 32px;

  height: 32px;

  display: grid;

  place-items: center;

  background: var(--gold);

  color: var(--navy);

  font-size: 9px;

  font-weight: 800;
}

.facility-detail-content {
  padding: 25px;
}

.facility-detail-content small {
  color: var(--gold);

  font-size: 8px;

  font-weight: 800;

  letter-spacing: 1.5px;
}

.facility-detail-content h3 {
  margin: 6px 0 9px;

  color: var(--navy);

  font-size: 21px;
}

.facility-detail-content p {
  color: var(--muted);

  font-size: 12px;
}

/* =========================================================
   TECHNOLOGY
   ========================================================= */

.technology-section {
  background: var(--paper);
}

.technology-grid {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 90px;

  align-items: center;
}

.technology-content {
  max-width: 600px;
}

.technology-content h2 {
  margin-bottom: 25px;

  color: var(--navy);

  font-size: clamp(38px, 5vw, 58px);

  line-height: 1;

  letter-spacing: -2px;
}

.technology-content p {
  max-width: 550px;

  margin-bottom: 15px;

  color: var(--muted);

  font-size: 14px;
}

.technology-visual {
  position: relative;

  min-height: 500px;

  overflow: hidden;

  border-radius: var(--radius-lg);
}

.technology-visual img {
  width: 100%;

  height: 100%;

  object-fit: cover;
}

.technology-badge {
  position: absolute;

  right: 25px;

  bottom: 25px;

  max-width: 230px;

  padding: 20px;

  background: var(--navy);

  color: var(--white);
}

.technology-badge span {
  display: block;

  margin-bottom: 5px;

  color: var(--gold);

  font-size: 8px;

  font-weight: 800;

  letter-spacing: 1.5px;
}

.technology-badge strong {
  font-size: 17px;

  font-weight: 500;
}

/* =========================================================
   SAFETY
   ========================================================= */

.safety-section {
  background: var(--cream);
}

.safety-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  border-top: 1px solid var(--line);

  border-left: 1px solid var(--line);
}

.safety-card {
  min-height: 250px;

  display: flex;

  flex-direction: column;

  padding: 30px;

  border-right: 1px solid var(--line);

  border-bottom: 1px solid var(--line);

  background: var(--white);
}

.safety-card > span {
  margin-bottom: auto;

  color: var(--gold);

  font-size: 10px;

  font-weight: 800;
}

.safety-card h3 {
  margin-bottom: 10px;

  color: var(--navy);

  font-size: 20px;
}

.safety-card p {
  color: var(--muted);

  font-size: 12px;
}

/* =========================================================
   GALLERY CTA
   ========================================================= */

.campus-gallery-cta {
  background: var(--navy);

  color: var(--white);

  padding-block: 65px;
}

.campus-gallery-inner {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 40px;
}

.campus-gallery-inner h2 {
  max-width: 650px;

  font-size: clamp(30px, 4vw, 45px);

  line-height: 1.1;

  letter-spacing: -1px;
}

/* =========================================================
   FACILITIES RESPONSIVE
   ========================================================= */

@media (max-width: 900px) {
  .facilities-intro-grid,
  .technology-grid {
    grid-template-columns: 1fr;

    gap: 50px;
  }

  .campus-feature-grid {
    grid-template-columns: 1fr;
  }

  .campus-feature-image img {
    min-height: 400px;
  }

  .campus-feature-content {
    padding: 50px 35px;
  }

  .facility-list-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .safety-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .campus-gallery-inner {
    align-items: flex-start;

    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .campus-feature-image img {
    min-height: 300px;
  }

  .campus-feature-content {
    padding: 40px 25px;
  }

  .facility-list-grid {
    grid-template-columns: 1fr;
  }

  .facility-detail-image {
    height: 240px;
  }

  .technology-visual {
    min-height: 380px;
  }

  .safety-grid {
    grid-template-columns: 1fr;
  }

  .safety-card {
    min-height: 180px;
  }
}
/* =========================================================
   ACTIVITIES PAGE
   ========================================================= */

/* =========================================================
   INTRO
   ========================================================= */

.activities-intro {
  background: var(--paper);
}

.activities-intro-grid {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 100px;

  align-items: start;
}

.activities-intro-content {
  max-width: 600px;
}

.activities-intro-content p {
  margin-bottom: 20px;

  color: var(--muted);

  font-size: 14px;
}

.activities-intro-content .lead {
  color: var(--text);

  font-size: 18px;

  line-height: 1.7;
}

/* =========================================================
   FEATURED ACTIVITY
   ========================================================= */

.featured-activity {
  padding-bottom: 110px;

  background: var(--paper);
}

.featured-activity-grid {
  display: grid;

  grid-template-columns: 1.25fr 1fr;

  min-height: 550px;
}

.featured-activity-image {
  position: relative;

  overflow: hidden;
}

.featured-activity-image img {
  width: 100%;

  height: 100%;

  min-height: 550px;

  object-fit: cover;
}

.featured-label {
  position: absolute;

  top: 25px;

  left: 25px;

  display: flex;

  align-items: center;

  gap: 12px;

  padding: 9px 14px;

  background: var(--gold);

  color: var(--navy);
}

.featured-label span {
  font-size: 8px;

  font-weight: 800;

  letter-spacing: 1.5px;
}

.featured-label strong {
  font-size: 12px;
}

.featured-activity-content {
  display: flex;

  flex-direction: column;

  justify-content: center;

  padding: 60px;

  background: var(--navy);

  color: var(--white);
}

.featured-activity-content h2 {
  margin-bottom: 25px;

  color: var(--white);

  font-size: clamp(38px, 5vw, 58px);

  line-height: 1;

  letter-spacing: -2px;
}

.featured-activity-content h2 em {
  color: var(--gold-light);
}

.featured-activity-content > p {
  max-width: 500px;

  margin-bottom: 15px;

  color: rgba(255, 255, 255, 0.65);

  font-size: 13px;
}

.featured-meta {
  margin-top: 25px;

  padding-top: 18px;

  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.featured-meta span {
  display: block;

  margin-bottom: 5px;

  color: var(--gold);

  font-size: 8px;

  font-weight: 800;

  letter-spacing: 1.5px;
}

.featured-meta strong {
  font-size: 13px;

  font-weight: 500;
}

/* =========================================================
   ACTIVITY CATEGORIES
   ========================================================= */

.activity-categories {
  background: var(--cream);
}

.activity-category-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  border-top: 1px solid var(--line);

  border-left: 1px solid var(--line);
}

.activity-category {
  position: relative;

  min-height: 300px;

  display: flex;

  flex-direction: column;

  padding: 30px;

  background: var(--white);

  border-right: 1px solid var(--line);

  border-bottom: 1px solid var(--line);

  transition: transform var(--transition);
}

.activity-category:hover {
  transform: translateY(-4px);

  z-index: 2;
}

.activity-category-dark {
  background: var(--navy);

  color: var(--white);

  border-color: var(--navy);
}

.activity-category-number {
  position: absolute;

  top: 25px;

  right: 25px;

  color: var(--gold);

  font-size: 10px;

  font-weight: 800;
}

.activity-category-icon {
  width: 52px;

  height: 52px;

  display: grid;

  place-items: center;

  margin-bottom: auto;

  border: 1px solid var(--line);

  border-radius: 50%;

  color: var(--gold);

  font-size: 18px;
}

.activity-category-dark .activity-category-icon {
  border-color: rgba(255, 255, 255, 0.15);
}

.activity-category h3 {
  margin-bottom: 9px;

  color: var(--navy);

  font-size: 20px;
}

.activity-category-dark h3 {
  color: var(--white);
}

.activity-category p {
  color: var(--muted);

  font-size: 12px;
}

.activity-category-dark p {
  color: rgba(255, 255, 255, 0.6);
}

/* =========================================================
   RECENT EVENTS
   ========================================================= */

.recent-events {
  background: var(--paper);
}

.event-list {
  border-top: 1px solid var(--line);
}

.event-row {
  display: grid;

  grid-template-columns: 70px 190px 1fr 30px;

  align-items: center;

  gap: 30px;

  padding: 18px 0;

  border-bottom: 1px solid var(--line);

  transition: padding var(--transition);
}

.event-row:hover {
  padding-left: 12px;

  padding-right: 12px;

  background: var(--cream);
}

.event-date {
  display: flex;

  flex-direction: column;

  align-items: center;

  line-height: 1;
}

.event-date strong {
  color: var(--navy);

  font-size: 28px;

  font-weight: 500;
}

.event-date span {
  margin-top: 5px;

  color: var(--gold);

  font-size: 8px;

  font-weight: 800;

  letter-spacing: 1px;
}

.event-image {
  height: 115px;

  overflow: hidden;
}

.event-image img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.event-row:hover .event-image img {
  transform: scale(1.05);
}

.event-content > span {
  color: var(--gold);

  font-size: 8px;

  font-weight: 800;

  letter-spacing: 1.5px;
}

.event-content h3 {
  margin: 6px 0;

  color: var(--navy);

  font-size: 18px;
}

.event-content p {
  color: var(--muted);

  font-size: 12px;
}

.event-arrow {
  color: var(--gold);

  font-size: 18px;
}

/* =========================================================
   ACHIEVEMENTS
   ========================================================= */

.achievement-section {
  padding-block: 100px;

  background: var(--navy);

  color: var(--white);
}

.achievement-grid {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 100px;

  align-items: center;
}

.achievement-content {
  max-width: 550px;
}

.achievement-content h2 {
  margin-bottom: 22px;

  color: var(--white);

  font-size: clamp(40px, 5vw, 60px);

  line-height: 1;

  letter-spacing: -2px;
}

.achievement-content h2 em {
  color: var(--gold-light);
}

.achievement-content p {
  max-width: 480px;

  margin-bottom: 30px;

  color: rgba(255, 255, 255, 0.6);

  font-size: 14px;
}

.achievement-list {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.achievement-item {
  display: grid;

  grid-template-columns: 45px 1fr;

  gap: 20px;

  padding: 22px 0;

  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.achievement-item > span {
  color: var(--gold);

  font-size: 10px;

  font-weight: 800;
}

.achievement-item strong {
  display: block;

  margin-bottom: 5px;

  color: var(--white);

  font-size: 14px;
}

.achievement-item p {
  color: rgba(255, 255, 255, 0.5);

  font-size: 11px;
}

/* =========================================================
   PARTICIPATION
   ========================================================= */

.participation-section {
  background: var(--cream);
}

.participation-grid {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 90px;

  align-items: center;
}

.participation-image {
  height: 500px;

  overflow: hidden;

  border-radius: var(--radius-lg);
}

.participation-image img {
  width: 100%;

  height: 100%;

  object-fit: cover;
}

.participation-content {
  max-width: 600px;
}

.participation-content h2 {
  margin-bottom: 25px;

  color: var(--navy);

  font-size: clamp(38px, 5vw, 58px);

  line-height: 1;

  letter-spacing: -2px;
}

.participation-content p {
  margin-bottom: 15px;

  color: var(--muted);

  font-size: 14px;
}

/* =========================================================
   GALLERY CTA
   ========================================================= */

.activities-gallery-cta {
  padding-block: 65px;

  background: var(--gold);

  color: var(--navy);
}

.activities-gallery-inner {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 40px;
}

.activities-gallery-inner .eyebrow {
  color: var(--navy);
}

.activities-gallery-inner h2 {
  max-width: 700px;

  font-size: clamp(30px, 4vw, 45px);

  line-height: 1.1;

  letter-spacing: -1px;
}

.activities-gallery-inner .btn-primary {
  flex-shrink: 0;

  background: var(--navy);

  color: var(--white);
}

/* =========================================================
   ACTIVITIES RESPONSIVE
   ========================================================= */

@media (max-width: 900px) {
  .activities-intro-grid,
  .achievement-grid,
  .participation-grid {
    grid-template-columns: 1fr;

    gap: 50px;
  }

  .featured-activity-grid {
    grid-template-columns: 1fr;
  }

  .featured-activity-image img {
    min-height: 400px;
  }

  .featured-activity-content {
    padding: 50px 35px;
  }

  .activity-category-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .event-row {
    grid-template-columns: 60px 150px 1fr 20px;

    gap: 20px;
  }

  .activities-gallery-inner {
    align-items: flex-start;

    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .featured-activity-image img {
    min-height: 300px;
  }

  .featured-activity-content {
    padding: 40px 25px;
  }

  .activity-category-grid {
    grid-template-columns: 1fr;
  }

  .activity-category {
    min-height: 240px;
  }

  .event-row {
    grid-template-columns: 50px 1fr 20px;

    gap: 15px;
  }

  .event-image {
    display: none;
  }

  .event-content p {
    display: none;
  }

  .achievement-section {
    padding-block: 75px;
  }

  .participation-image {
    height: 380px;
  }
}
/* =========================================================
   GALLERY PAGE
   ========================================================= */

/* =========================================================
   INTRO
   ========================================================= */

.gallery-intro {
  background: var(--paper);
}

.gallery-intro-inner {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 100px;

  align-items: start;
}

.gallery-intro-content {
  max-width: 500px;

  color: var(--muted);

  font-size: 14px;
}

/* =========================================================
   GALLERY SECTION
   ========================================================= */

.gallery-section {
  padding-block: 0 110px;

  background: var(--paper);
}

.gallery-toolbar {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 30px;

  margin-bottom: 35px;

  padding-bottom: 20px;

  border-bottom: 1px solid var(--line);
}

.gallery-filter {
  display: flex;

  flex-wrap: wrap;

  gap: 7px;
}

.gallery-filter-btn {
  padding: 9px 15px;

  border: 1px solid var(--line);

  background: transparent;

  color: var(--muted);

  font-family: inherit;

  font-size: 10px;

  font-weight: 700;

  cursor: pointer;

  transition:
    background var(--transition),
    color var(--transition),
    border-color var(--transition);
}

.gallery-filter-btn:hover {
  border-color: var(--navy);

  color: var(--navy);
}

.gallery-filter-btn.active {
  border-color: var(--navy);

  background: var(--navy);

  color: var(--white);
}

.gallery-count {
  flex-shrink: 0;

  color: var(--gold);

  font-size: 8px;

  font-weight: 800;

  letter-spacing: 1.5px;
}

/* =========================================================
   MASONRY-STYLE GRID
   ========================================================= */

.gallery-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  grid-auto-rows: 220px;

  gap: 12px;
}

.gallery-item {
  position: relative;

  display: block;

  width: 100%;

  height: 100%;

  padding: 0;

  overflow: hidden;

  border: 0;

  background: var(--navy);

  cursor: pointer;

  text-align: left;
}

.gallery-item-large {
  grid-column: span 2;

  grid-row: span 2;
}

.gallery-item-wide {
  grid-column: span 2;
}

.gallery-item-tall {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-overlay {
  position: absolute;

  inset: 0;

  display: flex;

  flex-direction: column;

  justify-content: flex-end;

  padding: 25px;

  background: linear-gradient(0deg, rgba(5, 25, 38, 0.85), rgba(5, 25, 38, 0));

  color: var(--white);

  opacity: 0;

  transition: opacity var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay small {
  margin-bottom: 5px;

  color: var(--gold-light);

  font-size: 8px;

  font-weight: 800;

  letter-spacing: 1.5px;
}

.gallery-overlay strong {
  padding-right: 30px;

  font-size: 18px;

  font-weight: 500;
}

.gallery-overlay i {
  position: absolute;

  right: 20px;

  bottom: 20px;

  width: 35px;

  height: 35px;

  display: grid;

  place-items: center;

  border: 1px solid rgba(255, 255, 255, 0.35);

  border-radius: 50%;

  color: var(--gold-light);

  font-style: normal;
}

/* =========================================================
   HIDDEN GALLERY ITEMS
   ========================================================= */

.gallery-item.gallery-hidden {
  display: none;
}

/* =========================================================
   EMPTY STATE
   ========================================================= */

.gallery-empty {
  display: none;

  padding: 80px 20px;

  text-align: center;
}

.gallery-empty.show {
  display: block;
}

.gallery-empty > span {
  display: block;

  margin-bottom: 15px;

  color: var(--gold);

  font-size: 25px;
}

.gallery-empty h3 {
  margin-bottom: 8px;

  color: var(--navy);

  font-size: 20px;
}

.gallery-empty p {
  color: var(--muted);

  font-size: 13px;
}

/* =========================================================
   UPDATE SECTION
   ========================================================= */

.gallery-update-section {
  padding-block: 100px;

  background: var(--cream);
}

.gallery-update-grid {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 100px;

  align-items: center;
}

.gallery-update-content {
  max-width: 600px;
}

.gallery-update-content h2 {
  color: var(--navy);

  font-size: clamp(40px, 5vw, 60px);

  line-height: 1;

  letter-spacing: -2px;
}

.gallery-update-note {
  min-height: 260px;

  display: flex;

  flex-direction: column;

  justify-content: flex-end;

  padding: 30px;

  background: var(--navy);

  color: var(--white);
}

.gallery-update-note span {
  margin-bottom: auto;

  color: var(--gold);

  font-size: 8px;

  font-weight: 800;

  letter-spacing: 1.5px;
}

.gallery-update-note strong {
  max-width: 400px;

  font-size: 25px;

  font-weight: 500;

  line-height: 1.2;
}

/* =========================================================
   DOCUMENT CTA
   ========================================================= */

.gallery-documents-cta {
  padding-block: 65px;

  background: var(--gold);

  color: var(--navy);
}

.gallery-documents-inner {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 40px;
}

.gallery-documents-inner .eyebrow {
  color: var(--navy);
}

.gallery-documents-inner h2 {
  max-width: 700px;

  font-size: clamp(30px, 4vw, 45px);

  line-height: 1.1;
}

.gallery-documents-inner .btn-primary {
  flex-shrink: 0;

  background: var(--navy);

  color: var(--white);
}

/* =========================================================
   LIGHTBOX
   ========================================================= */

.gallery-lightbox {
  position: fixed;

  z-index: 9999;

  inset: 0;

  display: flex;

  align-items: center;

  justify-content: center;

  padding: 50px;

  background: rgba(3, 18, 28, 0.96);

  opacity: 0;

  visibility: hidden;

  pointer-events: none;

  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.gallery-lightbox.open {
  opacity: 1;

  visibility: visible;

  pointer-events: auto;
}

.gallery-lightbox-content {
  position: relative;

  max-width: min(1100px, 85vw);

  max-height: 85vh;

  display: flex;

  flex-direction: column;

  align-items: center;
}

.gallery-lightbox-content img {
  display: block;

  max-width: 100%;

  max-height: 75vh;

  object-fit: contain;

  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.45);
}

.gallery-lightbox-caption {
  width: 100%;

  padding-top: 15px;

  color: var(--white);
}

.gallery-lightbox-caption span {
  display: block;

  margin-bottom: 4px;

  color: var(--gold);

  font-size: 8px;

  font-weight: 800;

  letter-spacing: 1.5px;
}

.gallery-lightbox-caption strong {
  font-size: 17px;

  font-weight: 500;
}

.gallery-lightbox-close,
.gallery-lightbox-prev,
.gallery-lightbox-next {
  position: absolute;

  z-index: 2;

  width: 45px;

  height: 45px;

  display: grid;

  place-items: center;

  border: 1px solid rgba(255, 255, 255, 0.25);

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.05);

  color: var(--white);

  font-family: inherit;

  font-size: 18px;

  cursor: pointer;

  transition:
    background var(--transition),
    border-color var(--transition);
}

.gallery-lightbox-close:hover,
.gallery-lightbox-prev:hover,
.gallery-lightbox-next:hover {
  border-color: var(--gold);

  background: var(--gold);

  color: var(--navy);
}

.gallery-lightbox-close {
  top: 25px;

  right: 25px;
}

.gallery-lightbox-prev {
  left: 25px;

  top: 50%;

  transform: translateY(-50%);
}

.gallery-lightbox-next {
  right: 25px;

  top: 50%;

  transform: translateY(-50%);
}

/* =========================================================
   GALLERY RESPONSIVE
   ========================================================= */

@media (max-width: 900px) {
  .gallery-intro-inner,
  .gallery-update-grid {
    grid-template-columns: 1fr;

    gap: 50px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);

    grid-auto-rows: 200px;
  }

  .gallery-item-large {
    grid-column: span 2;

    grid-row: span 2;
  }

  .gallery-item-wide {
    grid-column: span 2;
  }

  .gallery-item-tall {
    grid-row: span 2;
  }

  .gallery-toolbar {
    align-items: flex-start;

    flex-direction: column;
  }

  .gallery-documents-inner {
    align-items: flex-start;

    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr;

    grid-auto-rows: 250px;
  }

  .gallery-item-large,
  .gallery-item-wide {
    grid-column: span 1;

    grid-row: span 1;
  }

  .gallery-item-tall {
    grid-row: span 1;
  }

  .gallery-overlay {
    opacity: 1;
  }

  .gallery-lightbox {
    padding: 20px;
  }

  .gallery-lightbox-prev,
  .gallery-lightbox-next {
    width: 38px;

    height: 38px;

    top: auto;

    bottom: 25px;

    transform: none;
  }

  .gallery-lightbox-prev {
    left: 20px;
  }

  .gallery-lightbox-next {
    right: 20px;
  }

  .gallery-lightbox-close {
    top: 15px;

    right: 15px;
  }
}
/* =========================================================
   MANDATORY PUBLIC DISCLOSURE
   ========================================================= */

.disclosure-intro {
  background: var(--paper);
}

.disclosure-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}

.disclosure-intro-content {
  max-width: 600px;
}

.disclosure-intro-content p {
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 14px;
}

.disclosure-intro-content .lead {
  color: var(--text);
  font-size: 18px;
  line-height: 1.7;
}

/* SCHOOL INFORMATION */

.disclosure-information {
  padding-block: 90px;
  background: var(--cream);
}

.disclosure-section-heading {
  max-width: 700px;
  margin-bottom: 40px;
}

.disclosure-section-heading h2 {
  margin-bottom: 12px;
  color: var(--navy);
  font-size: clamp(36px, 5vw, 52px);
  line-height: 1;
  letter-spacing: -2px;
}

.disclosure-section-heading p {
  color: var(--muted);
  font-size: 13px;
}

.school-info-table {
  border-top: 1px solid var(--line);
  background: var(--white);
}

.school-info-row {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 30px;
  padding: 20px 25px;
  border-bottom: 1px solid var(--line);
}

.school-info-row span {
  color: var(--muted);
  font-size: 11px;
}

.school-info-row strong {
  color: var(--navy);
  font-size: 13px;
  font-weight: 600;
}

/* DOCUMENTS */

.disclosure-documents {
  background: var(--paper);
}

.document-list {
  border-top: 1px solid var(--line);
}

.document-row {
  display: grid;
  grid-template-columns: 45px 55px 1fr auto;
  gap: 25px;
  align-items: center;

  padding: 22px 0;

  border-bottom: 1px solid var(--line);

  transition:
    padding var(--transition),
    background var(--transition);
}

.document-row:hover {
  padding-left: 12px;
  padding-right: 12px;
  background: var(--cream);
}

.document-number {
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
}

.document-icon {
  width: 45px;
  height: 45px;

  display: grid;
  place-items: center;

  border: 1px solid var(--line);

  color: var(--gold);

  font-size: 9px;
  font-weight: 800;
}

.document-info span {
  color: var(--gold);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 1.5px;
}

.document-info h3 {
  margin: 5px 0;
  color: var(--navy);
  font-size: 17px;
}

.document-info p {
  color: var(--muted);
  font-size: 11px;
}

.document-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 10px 15px;

  border: 1px solid var(--navy);

  color: var(--navy);

  font-size: 10px;
  font-weight: 700;

  transition:
    background var(--transition),
    color var(--transition);
}

.document-button:hover {
  background: var(--navy);
  color: var(--white);
}

/* NOTICE */

.disclosure-note {
  padding-block: 55px;
  background: var(--navy);
  color: var(--white);
}

.disclosure-note-inner {
  display: flex;
  align-items: center;
  gap: 25px;
}

.disclosure-note-icon {
  width: 50px;
  height: 50px;

  flex-shrink: 0;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background: var(--gold);
  color: var(--navy);

  font-weight: 800;
}

.disclosure-note h3 {
  margin: 5px 0 8px;
  color: var(--white);
  font-size: 20px;
}

.disclosure-note p {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
}

/* CONTACT CTA */

.disclosure-contact-cta {
  padding-block: 65px;
  background: var(--gold);
  color: var(--navy);
}

.disclosure-contact-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.disclosure-contact-inner .eyebrow {
  color: var(--navy);
}

.disclosure-contact-inner h2 {
  font-size: clamp(30px, 4vw, 45px);
  line-height: 1.1;
}

.disclosure-contact-inner .btn-primary {
  flex-shrink: 0;
  background: var(--navy);
  color: var(--white);
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .disclosure-intro-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .school-info-row {
    grid-template-columns: 200px 1fr;
  }

  .disclosure-contact-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .disclosure-information {
    padding-block: 70px;
  }

  .school-info-row {
    grid-template-columns: 1fr;
    gap: 7px;
    padding: 17px 20px;
  }

  .document-row {
    grid-template-columns: 35px 45px 1fr;
    gap: 15px;
  }

  .document-button {
    grid-column: 3;
    justify-self: start;
  }

  .document-info h3 {
    font-size: 15px;
  }

  .disclosure-note-inner {
    align-items: flex-start;
  }
}
/* =========================================================
   CONTACT PAGE
   ========================================================= */

.contact-main {
  background: var(--paper);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 90px;
  align-items: start;
}

/* CONTACT INFORMATION */

.contact-information {
  max-width: 550px;
}

.contact-information h2 {
  margin-bottom: 25px;

  color: var(--navy);

  font-size: clamp(40px, 5vw, 60px);

  line-height: 1;

  letter-spacing: -2px;
}

.contact-description {
  max-width: 500px;

  margin-bottom: 40px;

  color: var(--muted);

  font-size: 14px;

  line-height: 1.7;
}

.contact-detail {
  display: flex;

  gap: 18px;

  padding: 18px 0;

  border-top: 1px solid var(--line);
}

.contact-detail-icon {
  width: 38px;
  height: 38px;

  flex-shrink: 0;

  display: grid;
  place-items: center;

  border: 1px solid var(--line);

  border-radius: 50%;

  color: var(--gold);

  font-size: 13px;
}

.contact-detail span {
  display: block;

  margin-bottom: 4px;

  color: var(--gold);

  font-size: 8px;

  font-weight: 800;

  letter-spacing: 1.5px;
}

.contact-detail strong {
  display: block;

  margin-bottom: 3px;

  color: var(--navy);

  font-size: 14px;
}

.contact-detail p {
  color: var(--muted);

  font-size: 12px;
}

/* FORM */

.contact-form-wrapper {
  padding: 45px;

  background: var(--white);

  border: 1px solid var(--line);

  box-shadow: var(--shadow-soft);
}

.contact-form-header {
  margin-bottom: 30px;
}

.contact-form-header h2 {
  margin-bottom: 10px;

  color: var(--navy);

  font-size: 32px;

  line-height: 1.1;
}

.contact-form-header p {
  color: var(--muted);

  font-size: 12px;
}

.contact-form {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 20px;
}

.form-group {
  display: flex;

  flex-direction: column;

  gap: 7px;
}

.form-group:nth-child(5) {
  grid-column: 1 / -1;
}

.form-group label {
  color: var(--navy);

  font-size: 10px;

  font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;

  padding: 13px 14px;

  border: 1px solid var(--line);

  outline: none;

  background: var(--paper);

  color: var(--navy);

  font-family: inherit;

  font-size: 12px;

  transition:
    border-color var(--transition),
    box-shadow var(--transition);
}

.form-group textarea {
  resize: vertical;

  min-height: 130px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #9aa2a5;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);

  box-shadow: 0 0 0 3px rgba(183, 146, 67, 0.1);
}

.form-checkbox {
  grid-column: 1 / -1;

  display: flex;

  align-items: flex-start;

  gap: 10px;

  margin-top: 2px;
}

.form-checkbox input {
  width: 15px;
  height: 15px;

  margin-top: 2px;

  accent-color: var(--navy);
}

.form-checkbox label {
  color: var(--muted);

  font-size: 10px;

  line-height: 1.5;

  cursor: pointer;
}

.form-submit {
  grid-column: 1 / -1;

  justify-self: start;

  border: 0;

  cursor: pointer;
}

.form-message {
  grid-column: 1 / -1;

  display: none;

  padding: 13px 15px;

  background: rgba(39, 115, 83, 0.08);

  border: 1px solid rgba(39, 115, 83, 0.2);

  color: #277353;

  font-size: 11px;
}

.form-message.show {
  display: block;
}

/* LOCATION */

.contact-location {
  padding-block: 100px;

  background: var(--cream);
}

.contact-location-grid {
  display: grid;

  grid-template-columns: 0.8fr 1.2fr;

  gap: 80px;

  align-items: center;
}

.location-content h2 {
  margin-bottom: 20px;

  color: var(--navy);

  font-size: clamp(40px, 5vw, 58px);

  line-height: 1;

  letter-spacing: -2px;
}

.location-content > p {
  max-width: 450px;

  margin-bottom: 25px;

  color: var(--muted);

  font-size: 13px;
}

.location-map {
  min-height: 380px;

  overflow: hidden;

  background: var(--navy);
}

.map-placeholder {
  min-height: 380px;

  display: flex;

  flex-direction: column;

  justify-content: center;

  align-items: center;

  padding: 30px;

  text-align: center;

  background: radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.08),
    transparent 55%
  );

  color: var(--white);
}

.map-placeholder > span {
  margin-bottom: 20px;

  color: var(--gold);

  font-size: 10px;

  font-weight: 800;

  letter-spacing: 2px;
}

.map-placeholder strong {
  margin-bottom: 7px;

  font-family: Georgia, "Times New Roman", serif;

  font-size: 28px;

  font-weight: 400;
}

.map-placeholder p {
  margin-bottom: 20px;

  color: rgba(255, 255, 255, 0.55);

  font-size: 12px;
}

.map-placeholder a {
  color: var(--gold-light);

  font-size: 11px;

  font-weight: 700;
}

/* CONTACT CTA */

.contact-cta {
  padding-block: 65px;

  background: var(--navy);

  color: var(--white);
}

.contact-cta-inner {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 40px;
}

.contact-cta-inner h2 {
  max-width: 700px;

  color: var(--white);

  font-size: clamp(30px, 4vw, 45px);

  line-height: 1.1;
}

.contact-cta-inner .btn-light {
  flex-shrink: 0;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;

    gap: 60px;
  }

  .contact-location-grid {
    grid-template-columns: 1fr;

    gap: 50px;
  }

  .contact-cta-inner {
    align-items: flex-start;

    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .contact-form-wrapper {
    padding: 25px 20px;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .form-group:nth-child(5) {
    grid-column: auto;
  }

  .form-checkbox,
  .form-submit,
  .form-message {
    grid-column: auto;
  }

  .contact-location {
    padding-block: 75px;
  }

  .location-map,
  .map-placeholder {
    min-height: 300px;
  }

  .map-placeholder strong {
    font-size: 23px;
  }
}
/* =========================================================
   MANDATORY PUBLIC DISCLOSURE
   MODERN CBSE / INSTITUTIONAL PRESENTATION
   ========================================================= */

/* =========================================================
   PAGE HEADER
   ========================================================= */

.disclosure-document-header {
  position: relative;

  padding: 75px 0 60px;

  overflow: hidden;

  background: linear-gradient(135deg, #f7f9fc 0%, #ffffff 55%, #f5f8fc 100%);

  border-bottom: 1px solid #e2e6eb;

  text-align: center;
}

/* Decorative background */

.disclosure-document-header::before {
  content: "";

  position: absolute;

  width: 300px;
  height: 300px;

  top: -150px;
  left: -80px;

  border-radius: 50%;

  background: rgba(23, 74, 139, 0.05);
}

.disclosure-document-header::after {
  content: "";

  position: absolute;

  width: 240px;
  height: 240px;

  right: -80px;
  bottom: -130px;

  border-radius: 50%;

  background: rgba(232, 117, 36, 0.06);
}

.disclosure-document-header .container {
  position: relative;
  z-index: 1;
}

.disclosure-appendix {
  display: inline-flex;

  align-items: center;

  gap: 12px;

  margin-bottom: 15px;

  color: #e87524;

  font-family: Arial, Helvetica, sans-serif;

  font-size: 11px;

  font-weight: 800;

  letter-spacing: 2px;

  text-decoration: none;

  text-transform: uppercase;
}

.disclosure-appendix::before,
.disclosure-appendix::after {
  content: "";

  width: 28px;
  height: 1px;

  background: #e87524;
}

.disclosure-document-header h1 {
  margin: 0;

  color: #173f70;

  font-family: Arial, Helvetica, sans-serif;

  font-size: clamp(28px, 5vw, 46px);

  font-weight: 800;

  line-height: 1.1;

  letter-spacing: -0.8px;

  text-decoration: none;
}

/* =========================================================
   SECTION CONTAINER
   ========================================================= */

.disclosure-document-section {
  padding: 65px 0;

  background: #ffffff;
}

.disclosure-section-alt {
  background: #f7f9fb;
}

/* =========================================================
   SECTION TITLE
   ========================================================= */

.disclosure-document-section h2 {
  position: relative;

  display: flex;

  align-items: center;

  gap: 15px;

  margin: 0 0 25px;

  padding-bottom: 15px;

  color: #173f70;

  font-family: Arial, Helvetica, sans-serif;

  font-size: clamp(18px, 2.5vw, 23px);

  font-weight: 750;

  line-height: 1.3;

  letter-spacing: -0.2px;
}

.disclosure-document-section h2::before {
  content: "";

  width: 5px;

  align-self: stretch;

  min-height: 25px;

  border-radius: 5px;

  background: #e87524;
}

.disclosure-document-section h2::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: 0;

  width: 100%;
  height: 1px;

  background: #e3e7eb;
}

/* =========================================================
   TABLE WRAPPER
   ========================================================= */

.disclosure-table-wrapper {
  position: relative;

  width: 100%;

  overflow-x: auto;

  border: 1px solid #dfe4e9;

  border-radius: 10px;

  background: #ffffff;

  box-shadow: 0 6px 25px rgba(20, 45, 70, 0.06);

  scrollbar-width: thin;
}

/* Nice horizontal scrollbar */

.disclosure-table-wrapper::-webkit-scrollbar {
  height: 7px;
}

.disclosure-table-wrapper::-webkit-scrollbar-track {
  background: #f1f3f5;
}

.disclosure-table-wrapper::-webkit-scrollbar-thumb {
  border-radius: 10px;

  background: #b8c1ca;
}

/* =========================================================
   TABLE
   ========================================================= */

.disclosure-table {
  width: 100%;

  min-width: 780px;

  border-collapse: separate;

  border-spacing: 0;

  background: #ffffff;

  font-family: Arial, Helvetica, sans-serif;
}

/* =========================================================
   TABLE HEADER
   ========================================================= */

.disclosure-table thead th {
  position: sticky;

  top: 0;

  z-index: 2;

  padding: 14px 14px;

  border-bottom: 2px solid #173f70;

  background: #173f70;

  color: #ffffff;

  font-size: 10px;

  font-weight: 700;

  line-height: 1.4;

  letter-spacing: 0.5px;

  text-align: left;

  text-transform: uppercase;
}

/* First header */

.disclosure-table thead th:first-child {
  width: 65px;

  text-align: center;

  border-top-left-radius: 8px;
}

/* Last header */

.disclosure-table thead th:last-child {
  border-top-right-radius: 8px;
}

/* =========================================================
   TABLE CELLS
   ========================================================= */

.disclosure-table td {
  padding: 14px;

  border-right: 1px solid #e5e8eb;

  border-bottom: 1px solid #e5e8eb;

  color: #303840;

  font-size: 12px;

  line-height: 1.55;

  vertical-align: middle;
}

/* Remove final right border */

.disclosure-table td:last-child {
  border-right: 0;
}

/* First column */

.disclosure-table td:first-child {
  width: 65px;

  color: #173f70;

  font-size: 11px;

  font-weight: 700;

  text-align: center;
}

/* =========================================================
   ALTERNATING ROWS
   ========================================================= */

.disclosure-table tbody tr:nth-child(even) {
  background: #fafbfd;
}

.disclosure-table tbody tr:nth-child(odd) {
  background: #ffffff;
}

/* =========================================================
   ROW HOVER
   ========================================================= */

.disclosure-table tbody tr {
  transition: background 0.2s ease;
}

.disclosure-table tbody tr:hover {
  background: #f1f6fb;
}

.disclosure-table tbody tr:hover td:first-child {
  color: #e87524;
}

/* =========================================================
   IMPORTANT INFORMATION
   ========================================================= */

/*
   The first section contains school details.
   Make the values visually stronger.
*/

.disclosure-table tbody td:nth-child(3) {
  color: #1d2935;
  font-weight: 500;
}

/* =========================================================
   DOCUMENT LINKS
   ========================================================= */

.disclosure-view-link {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 7px;

  min-width: 125px;

  padding: 8px 13px;

  border: 1px solid #173f70;

  border-radius: 5px;

  background: #ffffff;

  color: #173f70;

  font-family: Arial, Helvetica, sans-serif;

  font-size: 10px;

  font-weight: 700;

  line-height: 1;

  text-decoration: none;

  white-space: nowrap;

  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease,
    border-color 0.2s ease;
}

.disclosure-view-link:hover {
  border-color: #e87524;

  background: #e87524;

  color: #ffffff;

  transform: translateY(-1px);
}

.disclosure-view-link:active {
  transform: translateY(0);
}

/* =========================================================
   NOTE BOX
   ========================================================= */

.disclosure-note-box {
  position: relative;

  display: grid;

  grid-template-columns: auto 1fr;

  gap: 15px;

  margin-top: 20px;

  padding: 18px 20px;

  border: 1px solid #ead8ca;

  border-left: 4px solid #e87524;

  border-radius: 7px;

  background: #fffaf6;
}

.disclosure-note-box strong {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  width: 32px;
  height: 32px;

  border-radius: 50%;

  background: #e87524;

  color: #ffffff;

  font-family: Arial, Helvetica, sans-serif;

  font-size: 10px;

  font-weight: 800;

  text-decoration: none;
}

.disclosure-note-box p {
  margin: 0;

  color: #5c4b41;

  font-family: Arial, Helvetica, sans-serif;

  font-size: 11px;

  line-height: 1.65;
}

/* =========================================================
   SUBHEADINGS
   ========================================================= */

.disclosure-subheading {
  display: flex;

  align-items: center;

  gap: 12px;

  margin: 45px 0 18px;

  color: #173f70;

  font-family: Arial, Helvetica, sans-serif;

  font-size: 16px;

  font-weight: 750;
}

.disclosure-subheading::before {
  content: "";

  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: #e87524;
}

/* =========================================================
   TEACHER TABLE
   ========================================================= */

.teacher-table {
  min-width: 700px;
}

.teacher-table thead th:nth-child(1) {
  width: 65px;
}

.teacher-table thead th:nth-child(2) {
  width: 42%;
}

.teacher-table thead th:nth-child(3) {
  width: 20%;
}

.teacher-table thead th:nth-child(4) {
  width: 25%;
}

/* =========================================================
   TEACHER DESIGNATION
   ========================================================= */

.teacher-table td:nth-child(3) {
  color: #173f70;

  font-weight: 700;

  white-space: nowrap;
}

/* =========================================================
   SPECIAL VALUE EMPHASIS
   ========================================================= */

/*
   This makes values such as YES, 100,
   affiliation numbers etc. easier to notice.
*/

.disclosure-table td strong {
  color: #173f70;

  font-weight: 700;
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 900px) {
  .disclosure-document-header {
    padding: 60px 0 45px;
  }

  .disclosure-document-section {
    padding: 50px 0;
  }

  .disclosure-table {
    min-width: 720px;
  }

  .disclosure-table thead th {
    padding: 12px 10px;

    font-size: 9px;
  }

  .disclosure-table td {
    padding: 12px 10px;

    font-size: 11px;
  }
}

@media (max-width: 600px) {
  .disclosure-document-header {
    padding: 50px 0 40px;
  }

  .disclosure-appendix {
    font-size: 9px;

    letter-spacing: 1.5px;
  }

  .disclosure-appendix::before,
  .disclosure-appendix::after {
    width: 18px;
  }

  .disclosure-document-header h1 {
    font-size: 26px;
  }

  .disclosure-document-section {
    padding: 40px 0;
  }

  .disclosure-document-section h2 {
    font-size: 17px;

    gap: 10px;
  }

  .disclosure-table-wrapper {
    border-radius: 7px;

    /*
         * Makes it obvious that the table
         * can be horizontally scrolled.
         */
    position: relative;
  }

  .disclosure-table {
    min-width: 700px;
  }

  .disclosure-table thead th {
    padding: 11px 9px;

    font-size: 8px;
  }

  .disclosure-table td {
    padding: 11px 9px;

    font-size: 10px;
  }

  .disclosure-view-link {
    min-width: 105px;

    padding: 7px 9px;

    font-size: 9px;
  }

  .disclosure-note-box {
    grid-template-columns: 1fr;

    gap: 10px;

    padding: 15px;
  }

  .disclosure-note-box strong {
    width: 28px;
    height: 28px;
  }

  .disclosure-note-box p {
    font-size: 10px;
  }

  .disclosure-subheading {
    margin-top: 35px;

    font-size: 15px;
  }
}
