/* =========================================================
   Sainik School Goalpara — stylesheet (v2)
   Design: "riverlight" identity — cool dawn-mist palette,
   rounded collage compositions, soft elevation instead of
   hairline borders. Deliberately distinct from the dark
   forest/brass template.
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Newsreader:ital,opsz,wght@0,6..72,400;0,6..72,500;0,6..72,600;0,6..72,700;1,6..72,500&family=Sora:wght@400;500;600;700;800&family=Space+Mono:wght@400;700&display=swap');

:root {
  --navy-deep: #0a1622;
  --navy: #13293d;
  --navy-soft: #274760;
  --teal: #1f6f78;
  --teal-light: #4fa8ac;
  --copper: #c17a3d;
  --copper-light: #e2a565;
  --mist: #eef2ef;
  --mist2: #e2e9e3;
  --mist3: #d3ddd6;
  --ink: #132019;
  --ink-soft: #4d5a52;
  --line: #cdd7cf;
  --white: #ffffff;

  --display: 'Newsreader', serif;
  --body: 'Sora', sans-serif;
  --mono: 'Space Mono', monospace;

  --container: 1240px;
  --radius: 18px;
  --radius-sm: 10px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--mist);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--display);
  margin: 0;
  font-weight: 600;
  line-height: 1.1;
}

p {
  margin: 0;
}

button {
  font-family: inherit;
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid var(--copper);
  outline-offset: 3px;
}

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

.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(31, 111, 120, .08);
  padding: 6px 12px 6px 10px;
  border-radius: 100px;
}

.eyebrow::before {
  content: "~";
  font-weight: 700;
}

.eyebrow.on-dark {
  color: var(--copper-light);
  background: rgba(226, 165, 101, .12);
}

.section {
  padding: 108px 0;
  position: relative;
}

.section-tight {
  padding: 64px 0;
}

@media (max-width:820px) {
  .section {
    padding: 64px 0;
  }

  .section-tight {
    padding: 44px 0;
  }

  .wrap {
    padding: 0 20px;
  }
}

.section-head {
  max-width: 640px;
  margin-bottom: 52px;
}

.section-head h2 {
  font-size: clamp(28px, 3.8vw, 42px);
  margin-top: 16px;
  color: var(--navy);
}

.section-head p {
  margin-top: 16px;
  color: var(--ink-soft);
  font-size: 16.5px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  font-family: var(--body);
  font-size: 14.5px;
  font-weight: 600;
  border-radius: 100px;
  border: 1px solid transparent;
  transition: all .25s var(--ease);
}

.btn-brass {
  background: var(--copper);
  color: #fff;
}

.btn-brass:hover {
  background: var(--copper-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -10px rgba(193, 122, 61, .55);
}

.btn-line {
  border-color: currentColor;
  color: var(--white);
}

.btn-line:hover {
  background: rgba(255, 255, 255, .12);
  transform: translateY(-2px);
}

.btn-line.dark {
  color: var(--navy);
  border-color: var(--navy);
}

.btn-line.dark:hover {
  background: rgba(19, 41, 61, .06);
}

/* ---------- top bar ---------- */
.topbar {
  background: var(--navy-deep);
  color: #b9c6cd;
  font-family: var(--mono);
  font-size: 12px;
}

.topbar .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 9px;
  padding-bottom: 9px;
  flex-wrap: wrap;
  gap: 6px;
}

.topbar-left {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.topbar-left span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.topbar-right {
  display: flex;
  gap: 12px;
}

.topbar-right a {
  opacity: .85;
  transition: opacity .2s, color .2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
}

.topbar-right a svg {
  width: 14px;
  height: 14px;
}

.topbar-right a:hover {
  opacity: 1;
  color: var(--copper-light);
  background: rgba(255, 255, 255, .08);
}

/* ---------- nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, .86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  /* gap: 100px; */
}

.nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-badge {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(150deg, var(--teal-light), var(--navy) 90%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--display);
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
}

.brand-text {
  line-height: 1.15;
}

.brand-text strong {
  display: block;
  color: var(--navy);
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: .01em;
}

.brand-text span {
  display: block;
  color: var(--teal);
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-top: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-links a {
  color: var(--navy-soft);
  font-size: 14.5px;
  font-weight: 500;
  position: relative;
  padding: 6px 0;
  transition: color .2s;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  height: 2px;
  width: 0;
  background: var(--copper);
  border-radius: 2px;
  transition: width .25s var(--ease);
}

.nav-links a:hover {
  color: var(--navy);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--copper);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  color: var(--navy);
  width: 42px;
  height: 42px;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
}

@media (max-width:980px) {
  .nav-links {
    position: fixed;
    inset: 80px 0 0 0;
    background: var(--white);
    flex-direction: column;
    padding: 36px 28px;
    gap: 22px;
    align-items: flex-start;
    transform: translateX(100%);
    transition: transform .35s var(--ease);
    overflow-y: auto;
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-links a {
    font-size: 19px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-cta .btn-brass {
    display: none;
  }

  .nav-links .mobile-apply {
    display: inline-flex;
    margin-top: 10px;
  }
}

.mobile-apply {
  display: none;
}

/* ---------- wave divider signature ---------- */
.wave-divider {
  display: block;
  width: 100%;
  height: 64px;
  margin-top: -2px;
}

.wave-divider path {
  fill: var(--mist);
}

.wave-divider.flip path {
  fill: var(--navy-deep);
}

.waypoint {
  position: relative;
  z-index: 1;
}

.waypoint-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .08em;
  color: var(--teal);
  border-radius: 100px;
  padding: 6px 14px 6px 10px;
  background: var(--mist2);
}

.waypoint-tag .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
}

/* ---------- hero (collage) ---------- */
.hero {
  background: var(--mist);
  position: relative;
  overflow: hidden;
  padding-top: 36px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr .92fr;
  align-items: center;
  gap: 24px;
  min-height: 76vh;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-copy .eyebrow {
  margin-bottom: 22px;
}

.hero-copy h1 {
  font-size: clamp(36px, 4.8vw, 58px);
  color: var(--navy);
  letter-spacing: -.01em;
}

.hero-copy h1 em {
  font-style: italic;
  color: var(--teal);
  font-weight: 500;
}

.hero-copy p {
  margin-top: 24px;
  max-width: 500px;
  color: var(--ink-soft);
  font-size: 17px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.hero-coords {
  margin-top: 52px;
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.hero-coords div {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  box-shadow: 0 14px 30px -18px rgba(19, 41, 61, .25);
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--ink-soft);
}

.hero-coords div strong {
  display: block;
  color: var(--teal);
  font-size: 19px;
  font-family: var(--display);
  font-weight: 600;
}

.hero-collage {
  position: relative;
  height: 560px;
}

.hero-collage .photo-a {
  position: absolute;
  top: 0;
  right: 0;
  width: 78%;
  height: 70%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 60px -25px rgba(10, 22, 34, .4);
}

.hero-collage .photo-b {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 56%;
  height: 46%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 60px -25px rgba(10, 22, 34, .4);
  border: 6px solid var(--mist);
}

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

.hero-badge {
  position: absolute;
  z-index: 3;
  left: 14px;
  top: 14px;
  background: rgba(10, 22, 34, .78);
  backdrop-filter: blur(4px);
  color: #fff;
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .03em;
  max-width: 210px;
}

@media (max-width:980px) {
  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 44px;
  }

  .hero-collage {
    height: 420px;
    order: 1;
  }

  .hero-copy {
    order: 2;
  }
}

/* ---------- ticker ---------- */
.ticker {
  background: var(--navy);
  color: var(--mist);
  overflow: hidden;
  white-space: nowrap;
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: .06em;
}

.ticker-track {
  display: inline-flex;
  padding: 13px 0;
  animation: scroll-left 32s linear infinite;
}

.ticker-track span {
  padding: 0 26px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.ticker-track span::before {
  content: "~";
  color: var(--teal-light);
  font-weight: 700;
}

@keyframes scroll-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ---------- about ---------- */
.about {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 64px;
  align-items: start;
}

.about-media {
  position: sticky;
  top: 110px;
}

.about-media img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 30px 60px -30px rgba(19, 41, 61, .35);
}

.about-media-caption {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-soft);
  margin-top: 12px;
  letter-spacing: .02em;
}

.about-copy h2 {
  font-size: clamp(28px, 3.8vw, 38px);
  color: var(--navy);
}

.about-copy .lede {
  font-size: 19px;
  color: var(--ink-soft);
  margin-top: 20px;
  max-width: 560px;
}

.about-quote {
  margin: 38px 0;
  padding: 24px 26px;
  border-radius: var(--radius-sm);
  background: var(--mist);
  font-family: var(--display);
  font-size: 21px;
  font-style: italic;
  color: var(--navy);
  line-height: 1.45;
}

.about-quote cite {
  display: block;
  font-style: normal;
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--ink-soft);
  margin-top: 14px;
  letter-spacing: .03em;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 44px;
}

.stat-card {
  background: var(--mist);
  border-radius: var(--radius-sm);
  padding: 18px 18px 16px;
}

.stat-card strong {
  display: block;
  font-family: var(--display);
  font-size: 32px;
  color: var(--navy);
}

.stat-card span {
  font-size: 12.5px;
  color: var(--ink-soft);
}

@media (max-width:900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-media {
    position: static;
  }

  .stat-row {
    grid-template-columns: 1fr 1fr;
  }
}

/* ---------- pillars (the journey) ---------- */
.pillars {
  background: var(--mist2);
  position: relative;
}

.pillar-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.pillar {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: 0 18px 40px -28px rgba(19, 41, 61, .3);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pillar-coord {
  font-family: var(--mono);
  color: var(--teal);
  font-size: 12.5px;
}

.pillar-coord strong {
  display: block;
  font-family: var(--display);
  font-size: 15px;
  color: var(--navy);
  font-weight: 600;
  margin-top: 4px;
}

.pillar-body h3 {
  font-size: 20px;
  color: var(--navy);
}

.pillar-body p {
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: 14.5px;
}

/* ---------- facilities ---------- */
.facilities {
  background: var(--white);
}

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

.facility-card {
  background: var(--mist);
  border-radius: var(--radius);
  padding: 34px 28px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}

.facility-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px -28px rgba(19, 41, 61, .35);
}

.facility-icon {
  width: 42px;
  height: 42px;
  color: var(--teal);
}

.facility-card h3 {
  font-size: 18.5px;
  color: var(--navy);
  margin-top: 20px;
}

.facility-card p {
  margin-top: 10px;
  font-size: 14.5px;
  color: var(--ink-soft);
}

@media (max-width:900px) {
  .facility-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width:600px) {
  .facility-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- principal ---------- */
.principal {
  background: var(--navy-deep);
  color: var(--mist);
}

.principal-grid {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 56px;
  align-items: center;
}

.principal-media {
  position: relative;
}

.principal-media img {
  width: 100%;
  border-radius: var(--radius);
}

.principal-copy blockquote {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(19px, 2.4vw, 26px);
  line-height: 1.5;
  color: var(--white);
}

.principal-copy .attribution {
  margin-top: 24px;
  font-family: var(--mono);
  font-size: 12.5px;
  color: var(--copper-light);
  letter-spacing: .03em;
}

.principal-copy .attribution span {
  display: block;
  color: #8ea0ac;
  margin-top: 4px;
  font-size: 12px;
}

@media (max-width:820px) {
  .principal-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- hostel (split) ---------- */
.hostel {
  background: var(--white);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

.split-media {
  position: relative;
  min-height: 420px;
  overflow: hidden;
}

.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-copy {
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--mist);
}

.split-copy h2 {
  font-size: clamp(26px, 3.4vw, 34px);
  color: var(--navy);
}

.split-copy p.lede {
  margin-top: 16px;
  color: var(--ink-soft);
  font-size: 16.5px;
}

.feature-list {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.feature-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 15px;
  color: var(--ink);
}

.feature-list svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--copper);
  margin-top: 2px;
}

@media (max-width:900px) {
  .split {
    grid-template-columns: 1fr;
  }

  .split-media {
    min-height: 300px;
  }

  .split-copy {
    padding: 48px 24px;
  }
}

/* ---------- academics / sports icon rows ---------- */
.icon-row-section {
  background: var(--white);
}

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

.icon-card {
  background: var(--mist);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: left;
}

.icon-card svg {
  width: 32px;
  height: 32px;
  color: var(--navy-soft);
}

.icon-card h4 {
  font-family: var(--display);
  font-size: 16.5px;
  color: var(--navy);
  margin-top: 16px;
}

.icon-card p {
  font-size: 13.5px;
  color: var(--ink-soft);
  margin-top: 8px;
}

@media (max-width:900px) {
  .icon-cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width:560px) {
  .icon-cards {
    grid-template-columns: 1fr;
  }
}

/* ---------- NDA / pathway banner ---------- */
.pathway {
  background: var(--teal);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.pathway .wrap {
  position: relative;
  z-index: 1;
}

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

.pathway h2 {
  font-size: clamp(26px, 3.4vw, 36px);
  color: var(--white);
}

.pathway p {
  margin-top: 16px;
  color: #d7ece9;
  font-size: 16px;
  max-width: 480px;
}

.pathway-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pathway-step {
  display: flex;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .2);
}

.pathway-step:last-child {
  border-bottom: none;
}

.pathway-step .num {
  font-family: var(--mono);
  color: var(--copper-light);
  font-size: 13px;
  padding-top: 2px;
}

.pathway-step h4 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 16px;
  color: var(--white);
}

.pathway-step p {
  margin-top: 4px;
  font-size: 13.5px;
  color: #d7ece9;
}

@media (max-width:820px) {
  .pathway-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- gallery ---------- */
.gallery {
  background: var(--white);
}

.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 126px;
  gap: 12px;
  margin-top: 20px;
}

.gallery-mosaic a {
  position: relative;
  overflow: hidden;
  display: block;
  border-radius: var(--radius-sm);
}

.gallery-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}

.gallery-mosaic a:hover img {
  transform: scale(1.06);
}

.gallery-mosaic a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10, 22, 34, .55));
  opacity: 0;
  transition: opacity .3s;
}

.gallery-mosaic a:hover::after {
  opacity: 1;
}

.gallery-mosaic span {
  position: absolute;
  left: 12px;
  bottom: 10px;
  z-index: 2;
  color: var(--white);
  font-family: var(--mono);
  font-size: 10.5px;
  opacity: 0;
  transform: translateY(6px);
  transition: all .3s;
}

.gallery-mosaic a:hover span {
  opacity: 1;
  transform: translateY(0);
}

.g1 {
  grid-column: span 3;
  grid-row: span 2;
}

.g2 {
  grid-column: span 3;
  grid-row: span 1;
}

.g3 {
  grid-column: span 3;
  grid-row: span 1;
}

.g4 {
  grid-column: span 2;
  grid-row: span 1;
}

.g5 {
  grid-column: span 2;
  grid-row: span 1;
}

.g6 {
  grid-column: span 2;
  grid-row: span 1;
}

@media (max-width:820px) {
  .gallery-mosaic {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 150px;
  }

  .g1,
  .g2,
  .g3,
  .g4,
  .g5,
  .g6 {
    grid-column: span 1;
    grid-row: span 1;
  }

  .g1 {
    grid-column: span 2;
    grid-row: span 2;
  }
}

/* ---------- admissions timeline ---------- */
.admissions {
  background: var(--navy-deep);
  color: var(--mist);
}

.timeline {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
}

.tl-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
}

.tl-rail {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tl-dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--copper);
  border: 3px solid var(--navy-deep);
  box-shadow: 0 0 0 1px var(--copper);
  margin-top: 6px;
}

.tl-bar {
  width: 1px;
  flex: 1;
  background: rgba(226, 165, 101, .3);
  margin-top: 6px;
}

.tl-item:last-child .tl-bar {
  display: none;
}

.tl-content {
  padding-bottom: 42px;
}

.tl-content .step-tag {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--copper-light);
  letter-spacing: .08em;
}

.tl-content h4 {
  font-family: var(--display);
  font-size: 19px;
  color: var(--white);
  margin-top: 6px;
}

.tl-content p {
  margin-top: 8px;
  color: #aebcc4;
  font-size: 14.5px;
  max-width: 560px;
}

.admission-side {
  background: rgba(255, 255, 255, .05);
  border-radius: var(--radius);
  padding: 32px;
}

.admission-side h4 {
  font-family: var(--display);
  color: var(--copper-light);
  font-size: 18px;
}

.admission-side ul {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.admission-side li {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  border-bottom: 1px dashed rgba(255, 255, 255, .15);
  padding-bottom: 10px;
  color: #cfd9dd;
}

.admission-side li strong {
  color: var(--white);
  font-family: var(--mono);
  font-weight: 500;
}

.admission-grid {
  display: grid;
  grid-template-columns: 1.3fr .9fr;
  gap: 56px;
}

@media (max-width:900px) {
  .admission-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- testimonials ---------- */
.testimonials {
  background: var(--mist2);
}

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

.test-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 18px 40px -28px rgba(19, 41, 61, .25);
}

.test-card .stars {
  color: var(--copper);
  letter-spacing: 2px;
  font-size: 13px;
}

.test-card p {
  font-size: 15px;
  color: var(--ink);
  font-style: italic;
  font-family: var(--display);
  line-height: 1.55;
}

.test-who {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.test-who .avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.test-who .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.test-who strong {
  display: block;
  font-size: 13px;
}

.test-who span {
  font-size: 11.5px;
  color: var(--ink-soft);
}

@media (max-width:900px) {
  .test-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- FAQ ---------- */
.faq {
  background: var(--white);
}

.faq-list {
  margin-top: 10px;
  max-width: 820px;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-family: var(--display);
  font-size: 18px;
  color: var(--navy);
  font-weight: 600;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary .plus {
  font-family: var(--mono);
  font-size: 19px;
  color: var(--copper);
  transition: transform .25s;
  flex-shrink: 0;
}

.faq-item[open] summary .plus {
  transform: rotate(45deg);
}

.faq-item .faq-body {
  padding: 0 0 24px;
  color: var(--ink-soft);
  font-size: 15px;
  max-width: 640px;
}

/* ---------- contact ---------- */
.contact {
  background: var(--navy-deep);
  color: var(--mist);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .06em;
  color: var(--copper-light);
  text-transform: uppercase;
}

.field input,
.field textarea {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .16);
  color: var(--white);
  padding: 13px 14px;
  font-family: var(--body);
  font-size: 14.5px;
  border-radius: var(--radius-sm);
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #7b8b93;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--copper);
  background: rgba(255, 255, 255, .09);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info h3 {
  font-family: var(--display);
  font-size: 21px;
  color: var(--white);
}

.contact-info p {
  color: #aebcc4;
  margin-top: 10px;
  max-width: 420px;
}

.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.contact-item svg {
  width: 20px;
  height: 20px;
  color: var(--copper-light);
  flex-shrink: 0;
  margin-top: 3px;
}

.contact-item strong {
  display: block;
  font-size: 14.5px;
  color: var(--white);
}

.contact-item span {
  font-size: 13.5px;
  color: #9fb0b8;
}

.map-box {
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 6px;
}

.map-box iframe {
  width: 100%;
  height: 230px;
  border: 0;
  filter: grayscale(.35) contrast(1.05);
}

@media (max-width:900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- footer ---------- */
.footer {
  background: var(--navy);
  color: #c3d0d5;
  padding: 60px 0 26px;
}

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

.footer h4 {
  font-family: var(--display);
  color: var(--white);
  font-size: 16px;
  margin-bottom: 16px;
}

.footer p {
  font-size: 14px;
  color: #9aacb3;
  max-width: 280px;
}

.footer ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer a {
  font-size: 14px;
  color: #c3d0d5;
  transition: color .2s;
}

.footer a:hover {
  color: var(--copper-light);
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .06);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-social a svg {
  width: 16px;
  height: 16px;
}

.footer-social a:hover {
  background: rgba(226, 165, 101, .18);
  color: var(--copper-light);
}

.footer-bottom {
  margin-top: 48px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #7f939b;
  flex-wrap: wrap;
  gap: 10px;
}

@media (max-width:900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width:560px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- misc reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* back to top */
.totop {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 70;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--copper);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(10, 22, 34, .3);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: all .3s;
}

.totop.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}