/* ================================================================
   GES English Medium School � Master Stylesheet
   Palette: Navy #1B2B6B � Gold #C9A84C
   ================================================================ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,500;0,700;0,900;1,600&family=Inter:wght@300;400;500;600;700&family=Crimson+Pro:ital,wght@0,400;1,400;1,600&display=swap');

/* ?? Variables ??????????????????????????????????????????????? */
:root {
  --navy: #1B2B6B;
  --navy-dk: #111d4a;
  --navy-lt: #2a3f8f;
  --gold: #FDD017;
  --gold-lt: #FDD017;
  --gold-pale: #f6ead8;
  --white: #ffffff;
  --cream: #f9f6f0;
  --gray-1: #f2f2f5;
  --gray-2: #e0e0e8;
  --gray-5: #888899;
  --gray-8: #333344;
  --text: #22223b;
  --sh-sm: 0 2px 14px rgba(27, 43, 107, .09);
  --sh-md: 0 8px 36px rgba(27, 43, 107, .15);
  --sh-lg: 0 22px 64px rgba(27, 43, 107, .2);
  --r: 12px;
  --rl: 20px;
  --t: all .32s cubic-bezier(.4, 0, .2, 1);
  --fh: 'Playfair Display', Georgia, serif;
  --fb: 'Inter', system-ui, sans-serif;
  --fi: 'Crimson Pro', Georgia, serif;
  --nav-h: 76px;
  --nav-h-mob: 64px;
}

/* ?? Reset ???????????????????????????????????????????????????? */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth;
  font-size: 16px
}

body {
  font-family: var(--fb);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden
}

img {
  max-width: 100%;
  display: block
}

a {
  text-decoration: none;
  color: inherit
}

ul {
  list-style: none
}

button {
  border: none;
  cursor: pointer;
  font-family: var(--fb)
}

h1,
h2,
h3,
h4 {
  font-family: var(--fh);
  color: var(--navy);
  line-height: 1.2
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem)
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.6rem)
}

h3 {
  font-size: clamp(1.1rem, 2vw, 1.45rem)
}

p {
  line-height: 1.75;
  color: var(--gray-8);
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
}

/* ?? Layout ??????????????????????????????????????????????????? */
.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px
}

.wrap-w {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px
}

.sec {
  padding: clamp(60px, 8vw, 100px) 0
}

.sec-sm {
  padding: 54px 0
}

/* ?? Typography helpers ??????????????????????????????????????? */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px
}

.tag::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0
}

.center .tag {
  justify-content: center
}

.center .tag::before {
  display: none
}

.center .tag::after {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0
}

.center {
  text-align: center
}

.center .sub {
  margin: 0 auto
}

.sub {
  max-width: 580px;
  color: var(--gray-5);
  font-size: 1.03rem;
  margin-top: 10px;
  margin-bottom: 42px
}

/* ?? Buttons ?????????????????????????????????????????????????? */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: 50px;
  font-size: .93rem;
  font-weight: 600;
  letter-spacing: .02em;
  transition: var(--t);
  cursor: pointer;
  border: 2px solid transparent
}

.btn svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  box-shadow: 0 4px 18px rgba(201, 168, 76, .35)
}

.btn-gold:hover {
  background: var(--gold-lt);
  border-color: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(201, 168, 76, .45)
}

.btn-white {
  background: var(--white);
  color: var(--navy);
  border-color: rgba(255, 255, 255, .6)
}

.btn-white:hover {
  background: transparent;
  color: var(--white);
  transform: translateY(-2px)
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy)
}

.btn-navy:hover {
  background: var(--navy-lt);
  border-color: var(--navy-lt);
  transform: translateY(-2px);
  box-shadow: var(--sh-sm)
}

.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy)
}

.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white)
}

.btn-sm {
  padding: 9px 20px;
  font-size: .85rem
}

/* ?? Badges ??????????????????????????????????????????????????? */
.bdg {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase
}

.bdg-gold {
  background: var(--gold-pale);
  color: #8a5c00
}

.bdg-navy {
  background: rgba(27, 43, 107, .09);
  color: var(--navy)
}

.bdg-green {
  background: #e5f4ea;
  color: #1a6b38
}

/* ?? Top-bar ?????????????????????????????????????????????????? */
#topbar {
  background: var(--navy-dk);
  padding: 7px 0;
  font-size: .8rem;
  color: rgba(255, 255, 255, .7)
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap
}

.topbar-links {
  display: flex;
  gap: 22px;
  align-items: center
}

.topbar-links a,
.topbar-links span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, .7);
  transition: color .2s
}

.topbar-links a:hover {
  color: var(--gold)
}

.topbar-social {
  display: flex;
  gap: 10px
}

.topbar-social a {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--t);
  color: rgba(255, 255, 255, .7)
}

.topbar-social a:hover {
  background: var(--gold);
  color: var(--navy)
}

/* ?? Header ??????????????????????????????????????????????????? */
#hdr {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 1px 0 var(--gray-2);
  transition: box-shadow .3s
}

#hdr.up {
  box-shadow: var(--sh-sm)
}

#hdr .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h)
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: var(--nav-h);
  gap: 16px
}

.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  flex-shrink: 0;
  height: 100%
}

.brand img {
  height: 54px;
  width: auto
}

.brand-txt {
  line-height: 1.1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%
}

.brand-name {
  font-family: var(--fh);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--navy);
  display: block;
  line-height: 1.2
}

.brand-sub {
  font-size: .7rem;
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .09em;
  line-height: 1
}

.nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  height: 100%;
  flex: 1;
  margin: 0 16px
}

.nav-li {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center
}

.nav-a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 9px 13px;
  border-radius: 8px;
  font-size: .89rem;
  font-weight: 500;
  color: var(--gray-8);
  transition: var(--t);
  height: 100%;
  white-space: nowrap
}

.nav-a:hover,
.nav-a.on {
  color: var(--navy);
  background: var(--cream)
}

.nav-a.on {
  color: var(--gold);
  font-weight: 600
}

.nav-a svg {
  width: 13px;
  height: 13px;
  transition: transform .2s;
  flex-shrink: 0
}

.nav-li:hover .nav-a svg {
  transform: rotate(180deg)
}

.dd {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border-radius: var(--r);
  box-shadow: var(--sh-lg);
  min-width: 220px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: var(--t);
  border-top: 3px solid var(--gold)
}

.nav-li:hover .dd {
  opacity: 1;
  visibility: visible;
  transform: translateY(0)
}

.dd a {
  display: block;
  padding: 9px 15px;
  border-radius: 6px;
  font-size: .86rem;
  color: var(--gray-8);
  transition: var(--t)
}

.dd a:hover {
  background: var(--cream);
  color: var(--navy);
  padding-left: 20px
}

.nav-cta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  height: 100%;
  margin-right: 24px;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 5px;
  border-radius: 6px
}

.burger span {
  display: block;
  width: 23px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--t)
}

.burger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px)
}

.burger.open span:nth-child(2) {
  opacity: 0
}

.burger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px)
}

/* ?? Page Hero ???????????????????????????????????????????????? */
.ph {
  background: linear-gradient(140deg, var(--navy-dk) 0%, var(--navy) 55%, var(--navy-lt) 100%);
  padding: 78px 0 56px;
  position: relative;
  overflow: hidden
}

.ph::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px);
  background-size: 32px 32px
}

.ph::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-lt), var(--gold))
}

.ph-inner {
  position: relative;
  z-index: 1
}

.ph h1 {
  color: var(--white);
  margin-bottom: 10px
}

.ph p {
  color: rgba(255, 255, 255, .72);
  font-size: 1.04rem;
  max-width: 520px
}

.bc {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .83rem;
  color: rgba(255, 255, 255, .55);
  margin-bottom: 14px
}

.bc a {
  color: var(--gold)
}

/* ?? Section helpers ??????????????????????????????????????????? */
.sec-head {
  margin-bottom: 48px
}

.sec-head .sub {
  margin-bottom: 0
}

/* ?? Cards / Grid ????????????????????????????????????????????? */
.g2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px
}

.g3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px
}

.g4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px
}

.ga {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
  gap: 24px
}

.card {
  background: var(--white);
  border-radius: var(--rl);
  box-shadow: var(--sh-sm);
  overflow: hidden;
  transition: var(--t)
}

.card:hover {
  box-shadow: var(--sh-md);
  transform: translateY(-5px)
}

.card-body {
  padding: 26px
}

/* ?? Stat cards ??????????????????????????????????????????????? */
.s-card {
  background: var(--white);
  border-radius: var(--rl);
  padding: 30px 22px;
  text-align: center;
  box-shadow: var(--sh-sm);
  border-bottom: 4px solid var(--gold);
  transition: var(--t)
}

.s-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-md)
}

.s-num {
  font-family: var(--fh);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 6px
}

.s-num span {
  color: var(--gold)
}

.s-lbl {
  font-size: .82rem;
  font-weight: 600;
  color: var(--gray-5);
  text-transform: uppercase;
  letter-spacing: .1em
}

/* ?? Feature rows ????????????????????????????????????????????? */
.fr {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center
}

.fr+.fr {
  margin-top: 64px
}

.img-stack {
  position: relative;
  height: 400px;
  width: 100%;
}

.img-stack .main-img {
  width: 85%;
  height: 320px;
  object-fit: cover;
  border-radius: var(--rl);
  box-shadow: var(--sh-lg);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.img-stack .sub-img {
  width: 60%;
  height: 240px;
  object-fit: cover;
  border-radius: var(--rl);
  box-shadow: var(--sh-lg);
  border: 6px solid var(--white);
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
}

/* ?? Timeline ????????????????????????????????????????????????? */
.tl {
  padding-left: 30px;
  position: relative
}

.tl::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: linear-gradient(var(--gold), var(--navy-lt))
}

.tl-item {
  position: relative;
  padding-bottom: 34px
}

.tl-item:last-child {
  padding-bottom: 0
}

.tl-dot {
  position: absolute;
  left: -37px;
  top: 5px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--gold)
}

.tl-yr {
  font-size: .75rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 3px
}

.tl-item h4 {
  font-size: .98rem;
  color: var(--navy);
  margin-bottom: 5px
}

.tl-item p {
  font-size: .86rem;
  color: var(--gray-5);
  line-height: 1.7;
  margin: 0
}

/* ?? Quote ???????????????????????????????????????????????????? */
.quote {
  border-left: 4px solid var(--gold);
  padding: 18px 26px;
  background: var(--cream);
  border-radius: 0 var(--r) var(--r) 0;
  margin: 22px 0
}

.quote p {
  font-family: var(--fi);
  font-size: 1.18rem;
  font-style: italic;
  color: var(--navy);
  line-height: 1.6;
  margin: 0
}

.quote cite {
  display: block;
  margin-top: 10px;
  font-size: .82rem;
  color: var(--gray-5)
}

/* ?? Staff Cards ?????????????????????????????????????????????? */
.sc {
  background: var(--white);
  border-radius: var(--rl);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  text-align: center;
  transition: var(--t)
}

.sc:hover {
  box-shadow: var(--sh-md);
  transform: translateY(-6px)
}

.sc-av {
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.8rem
}

.sc-body {
  padding: 18px 16px
}

.sc-name {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 3px
}

.sc-role {
  font-size: .78rem;
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 5px
}

.sc-sub {
  font-size: .8rem;
  color: var(--gray-5)
}

/* ?? Testimonial ?????????????????????????????????????????????? */
.tc {
  background: var(--white);
  border-radius: var(--rl);
  padding: 28px;
  box-shadow: var(--sh-sm);
  border-top: 3px solid var(--gold-pale);
  transition: var(--t)
}

.tc:hover {
  box-shadow: var(--sh-md);
  border-top-color: var(--gold);
  transform: translateY(-3px)
}

.tc-stars {
  color: var(--gold);
  font-size: .92rem;
  letter-spacing: 2px;
  margin-bottom: 12px
}

.tc-txt {
  font-family: var(--fi);
  font-style: italic;
  font-size: 1.02rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 18px
}

.tc-auth {
  display: flex;
  gap: 11px;
  align-items: center
}

.tc-av {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: .82rem;
  font-weight: 700;
  flex-shrink: 0
}

.tc-name {
  font-size: .9rem;
  font-weight: 700;
  color: var(--navy)
}

.tc-role {
  font-size: .76rem;
  color: var(--gray-5)
}

/* ?? Gallery ?????????????????????????????????????????????????? */
.gal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 18px
}

.gal-item {
  border-radius: var(--r);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
  cursor: pointer;
  box-shadow: var(--sh-sm);
  transition: var(--t)
}

.gal-item:hover {
  transform: scale(1.02);
  box-shadow: var(--sh-md)
}

.gal-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative
}

.gal-over {
  position: absolute;
  inset: 0;
  background: rgba(17, 29, 74, .75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--t);
  flex-direction: column;
  gap: 8px
}

.gal-item:hover .gal-over {
  opacity: 1
}

.gal-over svg {
  color: var(--gold);
  width: 32px;
  height: 32px
}

.gal-lbl {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, .7));
  color: var(--white);
  padding: 18px 14px 10px;
  font-size: .84rem;
  font-weight: 600
}

/* ?? Lightbox ????????????????????????????????????????????????? */
#lb {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0, 0, 0, .93);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 32px
}

#lb.on {
  display: flex;
  animation: fadeIn .25s ease
}

@keyframes fadeIn {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

#lb-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: rgba(255, 255, 255, .1);
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--white);
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--t)
}

#lb-close:hover {
  background: var(--gold);
  color: var(--navy)
}

#lb-content {
  max-width: 820px;
  width: 100%;
  text-align: center;
  color: var(--white)
}

.lb-ph {
  border-radius: var(--rl);
  overflow: hidden;
  margin-bottom: 14px
}

#lb-cap {
  font-size: .95rem;
  opacity: .75
}

/* ?? Event Cards ?????????????????????????????????????????????? */
.ev-card {
  background: var(--white);
  border-radius: var(--rl);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  transition: var(--t);
  display: flex
}

.ev-card:hover {
  box-shadow: var(--sh-md);
  transform: translateY(-4px)
}

.ev-date {
  background: var(--navy);
  color: var(--white);
  padding: 22px 18px;
  text-align: center;
  min-width: 85px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.ev-day {
  font-family: var(--fh);
  font-size: 2.3rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1
}

.ev-mon {
  font-size: .73rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  opacity: .72;
  margin-top: 3px
}

.ev-body {
  padding: 22px;
  flex: 1
}

.ev-body h3 {
  font-size: 1rem;
  margin-bottom: 7px
}

.ev-body p {
  font-size: .86rem;
  color: var(--gray-5)
}

.ev-meta {
  display: flex;
  gap: 14px;
  margin-top: 10px;
  flex-wrap: wrap
}

.ev-meta span {
  font-size: .78rem;
  color: var(--gray-5);
  display: flex;
  align-items: center;
  gap: 4px
}

/* ?? Contact ?????????????????????????????????????????????????? */
.ct-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 44px
}

.ct-info {
  background: var(--navy);
  border-radius: var(--rl);
  padding: 38px;
  color: var(--white)
}

.ct-info h3 {
  color: var(--white);
  margin-bottom: 26px
}

.ci {
  display: flex;
  gap: 14px;
  margin-bottom: 22px;
  align-items: flex-start
}

.ci-ico {
  width: 42px;
  height: 42px;
  border-radius: var(--r);
  background: rgba(255, 255, 255, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold)
}

.ci strong {
  display: block;
  color: var(--white);
  margin-bottom: 3px;
  font-size: .88rem
}

.ci p {
  font-size: .83rem;
  color: rgba(255, 255, 255, .62);
  margin: 0
}

.ct-form {
  background: var(--white);
  border-radius: var(--rl);
  padding: 38px;
  box-shadow: var(--sh-md)
}

.ct-form h3 {
  margin-bottom: 24px
}

.fg {
  margin-bottom: 18px
}

.fg label {
  display: block;
  font-size: .86rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 7px
}

.fg input,
.fg textarea,
.fg select {
  width: 100%;
  padding: 11px 15px;
  border: 1.5px solid var(--gray-2);
  border-radius: var(--r);
  font-size: .93rem;
  font-family: var(--fb);
  color: var(--text);
  transition: var(--t)
}

.fg input:focus,
.fg textarea:focus,
.fg select:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(27, 43, 107, .08)
}

.fg textarea {
  resize: vertical;
  min-height: 115px
}

.fg-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px
}

/* ?? Footer ??????????????????????????????????????????????????? */
#ftr {
  background: var(--navy-dk);
  color: rgba(255, 255, 255, .78);
  padding: 68px 0 0
}

.ftr-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.6fr;
  gap: 38px;
  padding-bottom: 48px
}

.ftr-brand img {
  height: 68px;
  margin-bottom: 18px
}

.ftr-brand p {
  font-size: .87rem;
  line-height: 1.8;
  opacity: .72;
  color: white;
}

.ftr-social {
  display: flex;
  gap: 9px;
  margin-top: 18px
}

.ftr-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--t);
  color: rgba(255, 255, 255, .68)
}

.ftr-social a:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px)
}

.ftr-col h4 {
  font-family: var(--fh);
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 18px;
  padding-bottom: 9px;
  border-bottom: 1px solid rgba(255, 255, 255, .1)
}

.ftr-links {
  display: flex;
  flex-direction: column;
  gap: 9px
}

.ftr-links a {
  font-size: .85rem;
  color: rgba(255, 255, 255, .62);
  transition: var(--t);
  display: flex;
  align-items: center;
  gap: 5px
}

.ftr-links a::before {
  content: '�';
  color: var(--gold);
  font-size: 1rem
}

.ftr-links a:hover {
  color: var(--gold);
  padding-left: 5px
}

.ftr-ci {
  display: flex;
  gap: 11px;
  margin-bottom: 13px;
  align-items: flex-start;
  font-size: .85rem
}

.ftr-ci svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--gold);
  margin-top: 3px
}

.ftr-bot {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: .8rem;
  color: rgba(255, 255, 255, .38)
}

.ftr-bot a {
  color: var(--gold)
}

/* ?? Loader ??????????????????????????????????????????????????? */
#loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--navy-dk);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity .5s, visibility .5s
}

#loader.out {
  opacity: 0;
  visibility: hidden
}

#loader img {
  height: 78px;
  animation: bob 2s ease-in-out infinite
}

.ld-bar {
  width: 190px;
  height: 3px;
  background: rgba(255, 255, 255, .1);
  border-radius: 2px;
  margin-top: 26px;
  overflow: hidden
}

.ld-fill {
  height: 100%;
  background: var(--gold);
  border-radius: 2px;
  animation: fill 1.1s ease forwards
}

@keyframes bob {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-10px)
  }
}

@keyframes fill {
  to {
    width: 100%
  }
}

/* ?? Back to top ?????????????????????????????????????????????? */
#btt {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 900;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--sh-md);
  transition: var(--t);
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
  border: none
}

#btt.on {
  opacity: 1;
  visibility: visible
}

#btt:hover {
  transform: translateY(-3px);
  background: var(--gold-lt)
}

/* ?? Ticker ??????????????????????????????????????????????????? */
.ticker {
  background: var(--gold);
  display: flex;
  align-items: center;
  height: 48px;
  overflow: hidden
}

.tk-lbl {
  background: var(--navy-dk);
  color: var(--white);
  height: 100%;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 22px;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  white-space: nowrap;
  flex-shrink: 0
}

.tk-wrap {
  overflow: hidden;
  flex: 1
}

.tk-track {
  display: flex;
  gap: 56px;
  align-items: center;
  height: 48px;
  animation: tick 40s linear infinite;
  white-space: nowrap
}

.tk-track span {
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy);
  flex-shrink: 0
}

@keyframes tick {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

/* ?? CTA band ????????????????????????????????????????????????? */
.cta-sec {
  background: linear-gradient(135deg, var(--navy-dk), var(--navy-lt));
  padding: 66px 0
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap
}

.cta-inner h2 {
  color: var(--white);
  margin-bottom: 7px
}

.cta-inner p {
  color: rgba(255, 255, 255, .72)
}

.cta-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap
}

/* ?? Scroll reveal ???????????????????????????????????????????? */
.rv {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease
}

.rv.in {
  opacity: 1;
  transform: translateY(0)
}

.rvl {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity .7s ease, transform .7s ease
}

.rvl.in {
  opacity: 1;
  transform: translateX(0)
}

.rvr {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity .7s ease, transform .7s ease
}

.rvr.in {
  opacity: 1;
  transform: translateX(0)
}

.rvs {
  opacity: 0;
  transform: scale(.92);
  transition: opacity .7s ease, transform .7s ease
}

.rvs.in {
  opacity: 1;
  transform: scale(1)
}

.d1 {
  transition-delay: .1s
}

.d2 {
  transition-delay: .18s
}

.d3 {
  transition-delay: .26s
}

.d4 {
  transition-delay: .34s
}

.d5 {
  transition-delay: .42s
}

.d6 {
  transition-delay: .5s
}

/* ?? Animations ??????????????????????????????????????????????? */
@keyframes float {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-12px)
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% center
  }

  100% {
    background-position: 200% center
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

/* ?? Responsive ??????????????????????????????????????????????? */
@media(max-width:1200px) {
  .wrap, .wrap-w { padding: 0 20px; }
  .g4 { grid-template-columns: repeat(3, 1fr); }
  .fr { gap: 40px; }
}

@media(max-width:1024px) {
  :root { --nav-h: var(--nav-h-mob); }
  .nav-list,
  .nav-cta .btn-sm {
    display: none
  }

  .burger {
    display: flex
  }

  .topbar-links span:not(:first-child) {
    display: none
  }

  .nav-list.mob {
    display: flex;
    flex-direction: column;
    gap: 2px;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--white);
    padding: 16px;
    z-index: 998;
    box-shadow: var(--sh-lg);
    max-height: calc(100vh - var(--nav-h));
    overflow-y: auto
  }

  .g4 {
    grid-template-columns: repeat(2, 1fr)
  }

  .g3 {
    grid-template-columns: repeat(2, 1fr)
  }

  .ftr-grid {
    grid-template-columns: 1fr 1fr
  }

  .fr {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .fr .tag { justify-content: center; }
  .fr .tag::before { display: none; }
  .fr .tag::after { content: ''; display: block; width: 28px; height: 2px; background: var(--gold); }

  .ct-grid {
    grid-template-columns: 1fr
  }
  
  .img-stack { height: 350px; margin: 0 auto; max-width: 500px; }
}

@media(max-width:768px) {
  .topbar-inner { justify-content: center; }
  .topbar-social { display: none; }
  .ph { padding: 60px 0 40px; }
  .g3, .g2 { grid-template-columns: 1fr; }
  .ftr-grid { grid-template-columns: 1fr; }
}

@media(max-width:640px) {
  .g4 {
    grid-template-columns: 1fr
  }

  .sec {
    padding: 50px 0
  }

  .fg-row {
    grid-template-columns: 1fr
  }

  .cta-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .ev-card {
    flex-direction: column
  }

  .ev-date {
    flex-direction: row;
    gap: 10px;
    padding: 14px 18px;
    min-width: unset
  }
  
  .brand-name { font-size: 1rem; }
  .brand-sub { font-size: 0.65rem; }
  .btn { width: 100%; justify-content: center; }
}

@media(max-width:480px) {
  .wrap, .wrap-w { padding: 0 16px; }
  h1 { font-size: 1.8rem; }
  .ph h1 { font-size: 1.7rem; }
  .brand img { height: 44px; }
}

/* ?? Sticky Buttons ?????????????????????????????????????????? */
.sticky-buttons {
  position: fixed;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  transition: var(--t);
}

.-right-center {
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.sb-item {
  --color: #ffffff;
  --bg: var(--navy);
  background: var(--bg);
  border-radius: 8px 0 0 8px;
  box-shadow: var(--sh-md);
  transition: var(--t);
  overflow: hidden;
  width: 54px;
}

.sb-item:hover {
  width: 190px;
  transform: translateX(-5px);
}

.sb-link {
  display: flex;
  align-items: center;
  height: 54px;
  color: var(--color) !important;
  text-decoration: none;
}

.sb-icon {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.sb-label {
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
  padding-right: 20px;
  opacity: 0;
  transition: opacity 0.2s;
}

.sb-item:hover .sb-label {
  opacity: 1;
}

/* Specific Modifiers */
.-rsquare .sb-item {
  border-radius: 8px 0 0 8px;
}

.-large .sb-item {
  width: 60px;
}

.-large .sb-link {
  height: 60px;
}

.-large .sb-icon {
  width: 60px;
  height: 60px;
  font-size: 1.6rem;
}

.-large .sb-item:hover {
  width: 210px;
}

/* Admission Pulse */
.sb-item[style*="--bg: #dd3333"] {
  animation: sb-pulse 2s infinite;
}

@keyframes sb-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(221, 51, 51, 0.4);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(221, 51, 51, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(221, 51, 51, 0);
  }
}

@media (max-width: 768px) {
  .sticky-buttons {
    bottom: 20px;
    right: 20px;
    top: auto;
    transform: none;
    flex-direction: row;
    justify-content: center;
    left: 20px;
    pointer-events: none;
  }

  .sb-item {
    pointer-events: auto;
    width: 50px !important;
    border-radius: 50% !important;
    height: 50px;
    margin: 0 5px;
  }

  .sb-item:hover {
    width: 50px !important;
    transform: translateY(-5px);
  }

  .sb-label {
    display: none;
  }

  .sb-link {
    height: 50px;
    width: 50px;
    justify-content: center;
  }

  .sb-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
}

/* ?? Result Section ?????????????????????????????????????????? */
.result-poster {
  position: relative;
  padding: 15px;
  background: #fff;
  box-shadow: var(--sh-lg);
  border-radius: var(--r);
}

.poster-img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  display: block;
}

.poster-accent {
  position: absolute;
  inset: -10px;
  border: 2px solid var(--gold);
  border-radius: var(--rl);
  z-index: -1;
  opacity: 0.3;
}

.res-highlights {
  display: flex;
  gap: 30px;
  margin-top: 10px;
}

.res-h-item {
  display: flex;
  flex-direction: column;
}

.res-num {
  font-family: var(--fh);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.res-txt {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-5);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hashtags {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 15px;
}

.hashtags span {
  background: var(--navy-dk);
  color: #fff;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
}

.sec-divider { height: 100px; }

@media(max-width: 1024px) {
  .sec-divider { height: 60px; }
}

/* ?? Homepage Responsive Overrides ???????????????????????????? */
.res-fr { align-items: center; gap: 60px; }
.ab-fr { align-items: center; }
.ap-img { height: 360px; margin: 0 auto; object-fit: cover; border-radius: var(--rl); }

@media(max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-copy { display: flex; flex-direction: column; align-items: center; }
  .hero-stats { justify-content: center; width: 100%; }
  .hero-acts { justify-content: center; }
  .hero-visual { display: none !important; }
  .res-fr, .ab-fr { gap: 40px; }
  .ap-img { height: auto; width: 100%; max-width: 500px; }
}

@media(max-width: 768px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); display: grid; gap: 20px; }
  .hs-div { display: none; }
}

@media(max-width: 480px) {
  .hero-stats { grid-template-columns: 1fr; }
  .res-num { font-size: 2.2rem; }
}

/* ?? Academic Page Styles ????????????????????????????????????? */
.prog-block { display: flex; gap: 30px; background: var(--white); padding: 32px; border-radius: var(--rl); box-shadow: var(--sh-sm); margin-bottom: 24px; transition: var(--t); }
.prog-block:hover { transform: translateY(-3px); box-shadow: var(--sh-md); }
.pb-ico { width: 64px; height: 64px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; flex-shrink: 0; }
.pb-body { flex: 1; }
.pb-tags { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 15px; }
.pb-tags span { background: var(--gray-1); color: var(--navy); padding: 5px 12px; border-radius: 30px; font-size: 0.78rem; font-weight: 600; }
.robo-block { background: var(--navy-dk); color: var(--white); padding: 40px; border-radius: var(--rl); box-shadow: var(--sh-lg); margin-top: 40px; }
.robo-block h3 { color: var(--gold); }
.robo-block p { color: rgba(255,255,255,0.8); }

.meth-card { background: var(--white); padding: 30px; border-radius: var(--rl); box-shadow: var(--sh-sm); text-align: center; transition: var(--t); height: 100%; border-bottom: 3px solid var(--gold); }
.meth-card:hover { transform: translateY(-5px); box-shadow: var(--sh-md); }
.meth-ico { font-size: 2.5rem; margin-bottom: 15px; }

@media(max-width: 1024px) {
  .prog-block { flex-direction: column; text-align: center; }
  .pb-ico { margin: 0 auto 15px; }
  .pb-body div { justify-content: center; }
  .pb-tags { justify-content: center; }
  .robo-block { text-align: center; }
  .robo-block div { justify-content: center; }
}