@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Outfit:wght@300;400;500;600;700&display=swap');

/* ── TOKENS ── */
:root {
  --navy:        #0d1f3c;
  --navy-2:      #162d52;
  --navy-3:      #1e3d72;
  --teal:        #0a9680;
  --teal-2:      #0db89e;
  --teal-bg:     #e8f8f5;
  --teal-border: #b2e8e0;
  --gold:        #c07f2a;
  --gold-2:      #d9974a;
  --white:       #ffffff;
  --gray-0:      #f8f9fb;
  --gray-1:      #f0f3f7;
  --gray-2:      #e2e8f0;
  --gray-3:      #c8d3e0;
  --gray-4:      #8fa3bb;
  --gray-5:      #5a7289;
  --text:        #162032;
  --text-2:      #3d5166;
  --text-3:      #6d85a0;
  --shadow-xs:   0 1px 3px rgba(13,31,60,.05), 0 1px 2px rgba(13,31,60,.04);
  --shadow-sm:   0 2px 8px rgba(13,31,60,.06), 0 1px 3px rgba(13,31,60,.04);
  --shadow-md:   0 4px 20px rgba(13,31,60,.08), 0 2px 6px rgba(13,31,60,.04);
  --shadow-lg:   0 12px 40px rgba(13,31,60,.10), 0 4px 12px rgba(13,31,60,.06);
  --r-sm:  8px;
  --r-md:  14px;
  --r-lg:  20px;
  --r-xl:  28px;
  --pad:   clamp(16px, 5vw, 72px);
  --max:   1160px;
  --fd:    'Lora', Georgia, serif;
  --fb:    'Outfit', system-ui, sans-serif;
  --transition: .22s cubic-bezier(.4,0,.2,1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--fb); font-size: 16px; line-height: 1.65; color: var(--text); background: var(--white); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: var(--fb); }
ul { list-style: none; }

/* ── TOP BAR ── */
.topbar {
  background: var(--navy);
  padding: 7px var(--pad);
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.topbar-contact { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.topbar-contact a {
  display: flex; align-items: center; gap: 7px;
  font-size: .8rem; font-weight: 400; color: rgba(255,255,255,.72);
  transition: color var(--transition);
}
.topbar-contact a:hover { color: var(--teal-2); }
.topbar-contact .icon {
  width: 22px; height: 22px;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.topbar-contact .icon svg { width: 16px; height: 16px; display: block; }
.topbar-socials { display: flex; gap: 8px; }
.topbar-socials a {
  width: 28px; height: 28px; background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12); border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem; font-weight: 700; color: rgba(255,255,255,.65);
  transition: all var(--transition);
}
.topbar-socials a:hover { background: var(--teal); border-color: var(--teal); color: #fff; }

/* ── NAV ── */
.nav {
  position: sticky; top: 0; z-index: 200;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid var(--gray-2);
  box-shadow: var(--shadow-xs);
  transition: box-shadow var(--transition);
}
.nav.elevated { box-shadow: var(--shadow-sm); }
.nav-inner {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 clamp(16px, 2.4vw, 28px);
  min-height: 78px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
}
.nav-brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; justify-self: start; }
.nav-brand-mark{
  width: 62px;
  height: 62px;
  padding: 7px;
  border: 1px solid var(--gray-2);
  border-radius: 14px;
  background: var(--white);

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;
}

.nav-brand-mark img{
  width: 100%;
  height: 100%;

  object-fit: contain;
}

.nav-brand-text { line-height: 1.25; }
.nav-brand-name { font-size: .95rem; font-weight: 600; color: var(--navy); letter-spacing: -.01em; }
.nav-brand-sub { font-size: .68rem; color: var(--text-3); font-weight: 400; letter-spacing: .02em; }

/* hamburger */
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 6px; border-radius: var(--r-sm); }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: all var(--transition); }

.nav-menu { display: flex; align-items: center; gap: 2px; justify-self: center; justify-content: center; }
.nav-menu a {
  padding: 7px 14px; border-radius: var(--r-sm);
  font-size: .875rem; font-weight: 500; color: var(--text-2);
  transition: all var(--transition); white-space: nowrap;
}
.nav-menu a:hover, .nav-menu a.active { color: var(--navy); background: var(--gray-1); }
.nav-menu a.active { color: var(--teal); background: var(--teal-bg); }

.nav-cta {
  padding: 9px 22px; background: var(--teal); color: #fff;
  font-size: .85rem; font-weight: 600; border-radius: var(--r-sm);
  transition: all var(--transition); white-space: nowrap; flex-shrink: 0;
  justify-self: end;
}
.nav-cta:hover { background: var(--teal-2); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(10,150,128,.3); }
.nav-cta--mobile { display: none; }

/* ── HERO ── */
/* =========================
   PREMIUM COMPACT HERO
========================= */

.hero{
  position: relative;

  padding: 25px 0 55px;

  overflow: hidden;

  background:
  radial-gradient(circle at top left,
  rgba(20,184,166,0.08),
  transparent 30%),

  linear-gradient(
    to bottom,
    #f8fafc,
    #eef7f6
  );
}

/* BACKGROUND GLOWS */

.hero::before,
.hero::after{
  content: "";

  position: absolute;

  border-radius: 50%;

  filter: blur(90px);

  z-index: 0;
}

.hero::before{
  width: 320px;
  height: 320px;

  background: rgba(20,184,166,0.08);

  top: -80px;
  left: -120px;
}

.hero::after{
  width: 260px;
  height: 260px;

  background: rgba(37,99,235,0.08);

  bottom: -80px;
  right: -80px;
}

/* HERO LAYOUT */

.hero-container{
  position: relative;
  z-index: 2;

  width: 92%;
  max-width: 1450px;

  margin: auto;

  display: grid;
  grid-template-columns: 2.1fr 0.9fr;

  gap: 24px;

  align-items: stretch;
}

/* =========================
   LEFT HERO IMAGE
========================= */

.hero-slider{
  position: relative;

  min-height: 500px;

  border-radius: 30px;

  overflow: hidden;

  background: #000;

  box-shadow:
  0 24px 60px rgba(15,23,42,0.12);

  isolation: isolate;
}

/* IMAGE */

.hero-slider img{
  width: 100%;
  height: 100%;

  object-fit: cover;
}

/* OVERLAY */

.hero-overlay{
  position: absolute;
  inset: 0;

  background:
  linear-gradient(
    to top,
    rgba(0,0,0,0.75),
    rgba(0,0,0,0.18)
  );

  z-index: 1;
}

/* SOFT LIGHT */

.hero-slider::after{
  content: "";

  position: absolute;
  inset: 0;

  background:
  radial-gradient(circle at center,
  rgba(255,255,255,0.04),
  transparent 60%);

  z-index: 2;
}

/* =========================
   HERO CONTENT
========================= */

.hero-content{
  position: absolute;

  left: 45px;
  bottom: 45px;

  z-index: 3;

  max-width: 520px;

  color: white;
}

/* EYEBROW */

.hero-eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 10px 18px;

  border-radius: 100px;

  background:
  rgba(255,255,255,0.12);

  backdrop-filter: blur(16px);

  border:
  1px solid rgba(255,255,255,0.16);

  margin-bottom: 22px;

  font-size: 0.85rem;
}

/* TITLE */

.hero-content h1{
  font-size: clamp(2.2rem,4.5vw,4.5rem);

  line-height: 1;

  margin-bottom: 18px;

  font-family:
  'Playfair Display',
  serif;

  font-weight: 700;

  letter-spacing: -2px;
}

/* ACCENT */

.hero-content h1 span{
  background:
  linear-gradient(
    135deg,
    #99f6e4,
    #2dd4bf
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* DESCRIPTION */

.hero-content p{
  max-width: 520px;

  font-size: 1rem;

  line-height: 1.8;

  color:
  rgba(255,255,255,0.84);

  margin-bottom: 28px;
}

/* BUTTONS */

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

/* PRIMARY BUTTON */

.btn-primary{
  padding: 13px 24px;

  border-radius: 100px;

  background:
  linear-gradient(
    135deg,
    #0f766e,
    #14b8a6
  );

  color: white;

  text-decoration: none;

  font-weight: 600;

  box-shadow:
  0 12px 30px rgba(20,184,166,0.24);

  transition: .35s ease;
}

.btn-primary:hover{
  transform:
  translateY(-4px);

  box-shadow:
  0 18px 40px rgba(20,184,166,0.34);
}

/* SECONDARY BUTTON */

.btn-secondary{
  padding: 13px 24px;

  border-radius: 100px;

  border:
  1px solid rgba(255,255,255,0.22);

  color: white;

  text-decoration: none;

  backdrop-filter: blur(14px);

  transition: .35s ease;
}

.btn-secondary:hover{
  background:
  rgba(255,255,255,0.08);
}

/* =========================
   RIGHT SIDE MENU
========================= */

.hero-side-menu{
  display: flex;
  flex-direction: column;

  gap: 14px;
}

/* CARD */

.hero-side-card{
  position: relative;

  overflow: hidden;

  background:
  rgba(255,255,255,0.82);

  backdrop-filter: blur(18px);

  border:
  1px solid rgba(255,255,255,0.5);

  padding: 18px 20px;

  border-radius: 20px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  text-decoration: none;

  color: #1e3a8a;

  font-size: .95rem;
  font-weight: 600;

  box-shadow:
  0 12px 35px rgba(15,23,42,0.06);

  transition: .4s ease;
}

/* LIGHT EFFECT */

.hero-side-card::before{
  content: "";

  position: absolute;

  inset: 0;

  background:
  linear-gradient(
    135deg,
    rgba(20,184,166,0.06),
    transparent
  );

  opacity: 0;

  transition: .4s ease;
}

.hero-side-card:hover::before{
  opacity: 1;
}

.hero-side-card:hover{
  transform:
  translateX(6px)
  translateY(-2px);

  box-shadow:
  0 18px 40px rgba(15,23,42,0.12);
}

/* APPLY */

.hero-side-card.apply{
  color: #ea580c;
}

.page-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--gray-2);
  background: rgba(255,255,255,.82);
  color: var(--navy);
  font-size: .88rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: var(--shadow-xs);
  transition: all var(--transition);
}

.page-back:hover {
  background: var(--white);
  border-color: var(--teal-border);
  color: var(--teal);
  transform: translateY(-1px);
}

.page-back svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* =========================
   LARGE DESKTOP TUNING
========================= */

@media(min-width:1280px){

  .hero{
    padding: 26px 0 52px;
  }

  .hero-container{
    width: min(91%, 1340px);
    grid-template-columns: minmax(0, 1.9fr) minmax(320px, 360px);
    gap: 24px;
  }

  .hero-slider{
    min-height: 510px;
    border-radius: 30px;
  }

  .hero-content{
    left: 42px;
    right: 42px;
    bottom: 40px;
    max-width: 560px;
  }

  .hero-content h1{
    font-size: clamp(2.45rem, 3.4vw, 4rem);
    line-height: .98;
    margin-bottom: 16px;
  }

  .hero-content p{
    max-width: 500px;
    font-size: .96rem;
    margin-bottom: 22px;
  }

  .hero-side-menu{
    gap: 12px;
    height: 100%;
  }

  .hero-side-card{
    flex: 1 1 0;
    min-height: 0;
    padding: 18px 20px;
    border-radius: 20px;
    font-size: .92rem;
  }
}

@media(min-width:1536px){

  .hero-container{
    width: min(89%, 1380px);
    grid-template-columns: minmax(0, 2fr) minmax(340px, 380px);
  }

  .hero-slider{
    min-height: 540px;
  }

  .hero-content{
    left: 46px;
    bottom: 44px;
    max-width: 590px;
  }
}

/* =========================
   MOBILE
========================= */

@media(max-width:1100px){

  .hero-container{
    grid-template-columns: 1fr;
  }

  .hero-slider{
    min-height: 480px;
  }

}

@media(max-width:768px){

  .hero{
    padding: 20px 0 50px;
  }

  .hero-slider{
    min-height: 420px;

    border-radius: 22px;
  }

  .hero-content{
    left: 25px;
    right: 25px;
    bottom: 25px;
  }

  .hero-content h1{
    font-size: 2.2rem;
  }

  .hero-content p{
    font-size: 0.95rem;
  }

  .hero-side-card{
    padding: 20px;
    font-size: 0.95rem;
  }

}

@media(max-width:480px){

  .hero{
    padding: 16px 0 42px;
  }

  .hero-container{
    width: 94%;
    gap: 16px;
  }

  .hero-slider{
    min-height: 360px;
    border-radius: 20px;
  }

  .hero-content{
    left: 18px;
    right: 18px;
    bottom: 18px;
    max-width: none;
  }

  .hero-eyebrow{
    max-width: 100%;
    padding: 8px 12px;
    margin-bottom: 14px;
    font-size: 0.72rem;
    line-height: 1.35;
    white-space: normal;
  }

  .hero-content h1{
    font-size: 1.72rem;
    line-height: 1.04;
    letter-spacing: -1px;
    margin-bottom: 12px;
  }

  .hero-content p{
    max-width: none;
    font-size: 0.86rem;
    line-height: 1.55;
    margin-bottom: 16px;
  }

  .hero-btns{
    gap: 10px;
    flex-direction: column;
    align-items: stretch;
  }

  .btn-primary,
  .btn-secondary{
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 11px 16px;
    font-size: 0.88rem;
  }

  .hero-side-card{
    padding: 16px 18px;
    border-radius: 18px;
    font-size: 0.88rem;
  }
}



/* ── SECTION WRAPPER ── */
.section { padding: 80px var(--pad); }
.section-alt { background: var(--gray-0); }
.section-navy { background: var(--navy); }
.wrap { max-width: var(--max); margin: 0 auto; }

.section-eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .72rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--teal); margin-bottom: 10px;
}
.section-eyebrow::before { content: ''; width: 20px; height: 2px; background: var(--teal); border-radius: 2px; }
h2.section-heading {
  font-family: var(--fd); font-size: clamp(1.55rem, 3vw, 2.4rem);
  font-weight: 700; color: var(--navy); letter-spacing: -.025em; line-height: 1.18;
  margin-bottom: 10px;
}
.section-subtext { font-size: .975rem; color: var(--text-2); line-height: 1.75; max-width: 520px; }

.section-hdr { margin-bottom: 44px; }
.section-hdr-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-bottom: 44px; }

/* ── COURSES ── */
.courses-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.course-card {
  background: var(--white); border-radius: var(--r-lg);
  border: 1px solid var(--gray-2); box-shadow: var(--shadow-sm);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.course-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--teal-border); }
.course-thumb {
  position: relative; height: 198px; overflow: hidden;
  background: var(--navy);
}
.course-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; filter: brightness(.75); }
.course-card:hover .course-thumb img { transform: scale(1.06); }
.course-pill {
  position: absolute; top: 14px; left: 14px;
  background: var(--teal); color: #fff;
  padding: 3px 11px; border-radius: 100px;
  font-size: .68rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
}
.course-body { padding: 26px 28px; flex: 1; display: flex; flex-direction: column; gap: 4px; }
.course-label { font-size: .72rem; font-weight: 700; color: var(--teal); letter-spacing: .1em; text-transform: uppercase; }
.course-name { font-family: var(--fd); font-size: 1.45rem; font-weight: 700; color: var(--navy); margin-bottom: 14px; }
.course-reqs { display: flex; flex-direction: column; gap: 9px; flex: 1; }
.req-item {
  display: flex; gap: 9px; align-items: flex-start;
  font-size: .875rem; color: var(--text-2); line-height: 1.55;
}
.req-check {
  flex-shrink: 0; margin-top: 2px;
  width: 17px; height: 17px; border-radius: 50%;
  background: var(--teal-bg); display: flex; align-items: center; justify-content: center;
}
.req-check svg { width: 9px; height: 9px; }
.course-footer {
  margin-top: 22px; padding-top: 18px;
  border-top: 1px solid var(--gray-1);
  display: flex; align-items: center; justify-content: space-between;
}
.link-arrow {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: .85rem; font-weight: 600; color: var(--teal);
  transition: gap var(--transition);
}
.link-arrow:hover { gap: 9px; }
.course-meta { font-size: .72rem; color: var(--text-3); }

.ssuhs-notice {
  margin-top: 24px; padding: 14px 20px;
  background: var(--teal-bg); border: 1px solid var(--teal-border);
  border-radius: var(--r-md); text-align: center;
  font-size: .875rem; color: var(--text-2);
}
.ssuhs-notice a { color: var(--teal); font-weight: 600; }

/* ── NEWS / EVENTS ── */
.news-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 24px; }
.news-card {
  background: var(--white); border: 1px solid var(--gray-2);
  border-radius: var(--r-lg); box-shadow: var(--shadow-sm); overflow: hidden;
}
.news-card-hdr {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px 18px;
  border-bottom: 2px solid var(--teal);
}
.news-card-hdr h3 { font-family: var(--fd); font-size: 1.1rem; font-weight: 700; color: var(--navy); }
.news-card-body { padding: 32px 24px; text-align: center; }
.news-empty-icon { font-size: 2rem; margin-bottom: 10px; opacity: .35; }
.news-empty-text { font-size: .875rem; color: var(--text-3); line-height: 1.65; }

/* contact strip */
.contact-strip {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--gray-2); border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--gray-2);
}
.strip-item {
  background: var(--white); padding: 22px 24px;
  display: flex; gap: 14px; align-items: flex-start;
  transition: background var(--transition);
}
.strip-item:hover { background: var(--gray-0); }
.strip-icon {
  width: 40px; height: 40px; flex-shrink: 0; border-radius: 10px;
  background: var(--teal-bg); display: flex; align-items: center; justify-content: center;
  font-size: .95rem;
}
.strip-label { font-size: .68rem; font-weight: 700; color: var(--text-3); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 3px; }
.strip-value { font-size: .9rem; font-weight: 500; color: var(--navy); }
.strip-value a { color: var(--navy); transition: color var(--transition); }
.strip-value a:hover { color: var(--teal); }

/* ── ABOUT ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.about-media { position: relative; padding-top: 30px; }
.about-media-img { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-media-img img { width: 100%; display: block; }
.about-badge {
  position: absolute; bottom: 20px; right: 20px;
  background: var(--teal); color: #fff; padding: 14px 18px;
  border-radius: var(--r-md); text-align: center;
  box-shadow: var(--shadow-md);
}
.about-badge strong { font-family: var(--fd); font-size: 1.5rem; font-weight: 700; display: block; line-height: 1; }
.about-badge span { font-size: .68rem; font-weight: 500; opacity: .8; text-transform: uppercase; letter-spacing: .06em; }
.about-text p { font-size: .975rem; color: var(--text-2); line-height: 1.85; margin-bottom: 15px; }
.about-text strong { color: var(--navy); font-weight: 600; }
.about-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.about-tag {
  padding: 5px 13px; border-radius: 100px;
  background: var(--teal-bg); border: 1px solid var(--teal-border);
  font-size: .78rem; font-weight: 600; color: var(--teal);
}

/* ── WHY ── */
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.feat-card {
  background: var(--white); border: 1px solid var(--gray-2);
  border-radius: var(--r-md); padding: 26px 20px; text-align: center;
  box-shadow: var(--shadow-xs);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.feat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--teal-border); }
.feat-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--teal-bg); margin: 0 auto 14px;
  display: flex; align-items: center; justify-content: center; font-size: 1.3rem;
  transition: background var(--transition), transform var(--transition);
}
.feat-icon img {
  transition: filter var(--transition);
}
.feat-card:hover .feat-icon { background: var(--teal); transform: scale(1.08); }
.feat-card:hover .feat-icon img { filter: brightness(0) invert(1); }
.feat-card h3 { font-size: .9rem; font-weight: 600; color: var(--navy); margin-bottom: 7px; }
.feat-card p { font-size: .8rem; color: var(--text-3); line-height: 1.6; }

/* ── VIDEO ── */
.video-section { background: var(--navy); padding: 80px var(--pad); text-align: center; position: relative; overflow: hidden; }
.video-glow { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); width: 700px; height: 500px; background: radial-gradient(ellipse, rgba(10,150,128,.14) 0%, transparent 65%); pointer-events: none; }
.video-section .section-eyebrow { color: rgba(255,255,255,.5); }
.video-section .section-eyebrow::before { background: rgba(255,255,255,.25); }
.video-section h2.section-heading { color: #fff; }
.video-section .section-subtext { color: rgba(255,255,255,.48); margin: 0 auto 36px; }
.video-frame {
  max-width: 780px; margin: 0 auto; position: relative; z-index: 1;
  border-radius: var(--r-xl); overflow: hidden;
  box-shadow: 0 32px 72px rgba(0,0,0,.4);
  border: 1px solid rgba(255,255,255,.07);
}
.video-frame iframe { display: block; width: 100%; aspect-ratio: 16/9; border: none; }

/* ── GALLERY ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 200px 200px;
  gap: 10px;
}
.gallery-item {
  border: 0;
  padding: 0;
  border-radius: var(--r-md);
  overflow: hidden;
  position: relative;
  background: var(--navy);
  cursor: pointer;
  display: block;
  width: 100%;
  height: 100%;
  text-align: left;
}
.gallery-item:first-child { grid-column: span 2; grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease, filter .35s; filter: brightness(.78); }
.gallery-item:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 3px;
}
.gallery-item:hover img { transform: scale(1.07); filter: brightness(.5); }
.gallery-hover {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(10,150,128,.6);
  opacity: 0; transition: opacity var(--transition);
  font-size: 1.4rem; color: #fff;
}
.gallery-item:hover .gallery-hover { opacity: 1; }

.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 42px;
  background: rgba(5, 16, 34, .88);
  backdrop-filter: blur(8px);
}

.gallery-modal__image {
  max-width: min(1120px, 100%);
  max-height: 86vh;
  object-fit: contain;
  border-radius: var(--r-lg);
  box-shadow: 0 28px 80px rgba(0,0,0,.45);
}

.gallery-modal__close {
  position: fixed;
  top: 22px;
  right: 22px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.gallery-modal__close:hover {
  background: rgba(255,255,255,.22);
  transform: scale(1.04);
}

/* ── MAP / CONTACT ── */
.map-grid { display: grid; grid-template-columns: 3fr 2fr; gap: 32px; align-items: start; }
.map-wrap { border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--gray-2); box-shadow: var(--shadow-md); }
.map-wrap iframe { display: block; width: 100%; height: 380px; border: none; }
.info-stack { display: flex; flex-direction: column; gap: 14px; }
.info-item {
  background: var(--white); border: 1px solid var(--gray-2);
  border-radius: var(--r-md); padding: 18px 20px;
  display: flex; gap: 14px; align-items: flex-start;
  box-shadow: var(--shadow-xs);
  transition: transform var(--transition), box-shadow var(--transition);
}
.info-item:hover { transform: translateX(4px); box-shadow: var(--shadow-sm); }
.info-item-icon {
  width: 38px; height: 38px; border-radius: 9px;
  background: var(--teal-bg); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: .9rem;
}
.info-item-label { font-size: .68rem; font-weight: 700; color: var(--text-3); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 3px; }
.info-item-val { font-size: .9rem; font-weight: 500; color: var(--navy); }
.info-item-val a { color: var(--navy); transition: color var(--transition); }
.info-item-val a:hover { color: var(--teal); }

/* ── FOOTER ── */
.footer { background: var(--navy); padding: 60px var(--pad) 0; }
.footer-grid { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.07); }
.footer-brand { font-family: var(--fd); font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: 10px; }
.footer-bio { font-size: .85rem; color: rgba(255,255,255,.45); line-height: 1.75; max-width: 300px; margin-bottom: 22px; font-weight: 300; }
.footer-socials { display: flex; gap: 9px; }
.fsoc {
  width: 34px; height: 34px; border-radius: 8px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem; font-weight: 700; color: rgba(255,255,255,.5);
  transition: all var(--transition); cursor: pointer;
}
.fsoc:hover { background: var(--teal); border-color: var(--teal); color: #fff; }
.footer-col h4 { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 18px; }
.footer-col a { display: block; font-size: .875rem; color: rgba(255,255,255,.52); margin-bottom: 9px; font-weight: 300; transition: color var(--transition); }
.footer-col a:hover { color: rgba(255,255,255,.88); }
.footer-bottom { max-width: var(--max); margin: 0 auto; padding: 20px 0; display: flex; justify-content: space-between; font-size: .78rem; color: rgba(255,255,255,.28); flex-wrap: wrap; gap: 8px; }

/* ── UTILITIES ── */
.text-center { text-align: center; }
.text-center .section-subtext { margin: 0 auto; }
.mt-4 { margin-top: 16px; }
.btn-outline-teal {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 20px; border: 1.5px solid var(--teal); color: var(--teal);
  font-size: .83rem; font-weight: 600; border-radius: var(--r-sm);
  transition: all var(--transition);
}
.btn-outline-teal:hover { background: var(--teal); color: #fff; }

/* ── ADMISSION FORM ── */

/* Card wrapper */
.adm-card {
  background: var(--white);
  border: 1px solid var(--gray-2);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  max-width: 860px;
  margin: 0 auto;
}

/* Header strip */
.adm-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 36px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-3) 100%);
  border-bottom: 3px solid var(--teal);
}
.adm-card-header-icon {
  width: 52px; height: 52px;
  padding: 6px;
  border-radius: 12px;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(13,31,60,.14);
}
.adm-card-header-icon img { width: 100%; height: 100%; object-fit: contain; }
.adm-card-header-title { font-family: var(--fd); font-size: 1.1rem; font-weight: 700; color: #fff; line-height: 1.3; }
.adm-card-header-sub { font-size: .78rem; color: rgba(255,255,255,.55); font-weight: 400; margin-top: 2px; }

/* Form body */
.adm-form { padding: 36px; display: flex; flex-direction: column; gap: 8px; }

/* Numbered sections */
.adm-section {
  padding: 24px 0;
  border-bottom: 1px solid var(--gray-1);
}
.adm-section:last-of-type { border-bottom: none; }

.adm-section-title {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--fd); font-size: 1.05rem; font-weight: 700;
  color: var(--navy); margin-bottom: 22px;
}
.adm-section-num {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--teal-bg);
  color: var(--teal);
  font-family: var(--fb); font-size: .8rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* Two-column row */
.adm-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 6px;
}

/* ── Field base ── */
.adm-field { margin-bottom: 18px; }

.adm-label {
  display: block;
  font-size: .82rem; font-weight: 600;
  color: var(--navy); margin-bottom: 7px;
  letter-spacing: .01em;
}
.adm-req { color: #ef4444; margin-left: 3px; }

/* Inputs */
.adm-input, .adm-select, .adm-textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--gray-2);
  border-radius: var(--r-sm);
  font-family: var(--fb);
  font-size: .9rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.adm-input:focus, .adm-select:focus, .adm-textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(10,150,128,.1);
}
.adm-input--readonly {
  background: var(--gray-0);
  color: var(--text-3);
  cursor: not-allowed;
}

.adm-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5l5 5 5-5' stroke='%238fa3bb' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.adm-textarea { resize: vertical; min-height: 80px; }

/* Error state */
.adm-field--error .adm-input,
.adm-field--error .adm-select,
.adm-field--error .adm-textarea {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239,68,68,.08);
}
.adm-error {
  font-size: .76rem; color: #ef4444; font-weight: 500;
  margin-top: 5px;
  display: flex; align-items: center; gap: 4px;
}
.adm-error::before {
  content: '!';
  display: inline-flex; align-items: center; justify-content: center;
  width: 15px; height: 15px; border-radius: 50%;
  background: #fef2f2; color: #ef4444;
  font-size: .65rem; font-weight: 700; flex-shrink: 0;
}

/* ── Fieldset reset ── */
.adm-fieldset { border: none; padding: 0; margin: 0; }
.adm-fieldset legend { padding: 0; }

/* ── Radio group ── */
.adm-radio-group { display: flex; gap: 14px; flex-wrap: wrap; }

.adm-radio-card {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 20px;
  border: 1.5px solid var(--gray-2);
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: all var(--transition);
  flex: 1; min-width: 180px;
  background: var(--white);
}
.adm-radio-card:hover { border-color: var(--teal-border); background: var(--gray-0); }
.adm-radio-card--active {
  border-color: var(--teal);
  background: var(--teal-bg);
  box-shadow: 0 0 0 3px rgba(10,150,128,.08);
}

.adm-radio-input {
  position: absolute; opacity: 0; pointer-events: none;
}

.adm-radio-dot {
  width: 20px; height: 20px; flex-shrink: 0;
  border: 2px solid var(--gray-3);
  border-radius: 50%;
  position: relative;
  transition: all var(--transition);
}
.adm-radio-card--active .adm-radio-dot {
  border-color: var(--teal);
}
.adm-radio-dot::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--teal);
  transition: transform .2s ease;
}
.adm-radio-card--active .adm-radio-dot::after {
  transform: translate(-50%, -50%) scale(1);
}

.adm-radio-label { font-size: .88rem; font-weight: 500; color: var(--text); }

/* ── Image upload zone ── */
.adm-upload-hidden { display: none; }

.adm-upload-zone {
  border: 2px dashed var(--gray-3);
  border-radius: var(--r-md);
  padding: 32px 20px;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
  background: var(--gray-0);
}
.adm-upload-zone:hover, .adm-upload-zone--drag {
  border-color: var(--teal);
  background: var(--teal-bg);
}
.adm-upload-icon {
  color: var(--gray-4);
  margin-bottom: 10px;
  transition: color var(--transition), transform var(--transition);
}
.adm-upload-zone:hover .adm-upload-icon {
  color: var(--teal);
  transform: translateY(-2px);
}
.adm-upload-text { font-size: .88rem; color: var(--text-2); margin-bottom: 4px; }
.adm-upload-link { color: var(--teal); font-weight: 600; }
.adm-upload-hint { font-size: .75rem; color: var(--text-3); }

/* Preview */
.adm-upload-preview {
  display: flex; gap: 16px; align-items: center;
  padding: 14px 18px;
  border: 1.5px solid var(--teal-border);
  border-radius: var(--r-md);
  background: var(--teal-bg);
}
.adm-upload-preview-img {
  width: 72px; height: 72px;
  border-radius: var(--r-sm);
  overflow: hidden; flex-shrink: 0;
  border: 2px solid var(--white);
  box-shadow: var(--shadow-xs);
}
.adm-upload-preview-img img { width: 100%; height: 100%; object-fit: cover; }
.adm-upload-pdf-preview {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  color: var(--navy);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .04em;
}

.adm-upload-preview-info { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.adm-upload-filename {
  font-size: .82rem; font-weight: 600; color: var(--navy);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.adm-upload-filesize { font-size: .72rem; color: var(--text-3); }
.adm-upload-actions { display: flex; gap: 10px; margin-top: 4px; }
.adm-upload-change, .adm-upload-remove {
  background: none; border: none; padding: 0;
  font-size: .78rem; font-weight: 600; cursor: pointer;
  font-family: var(--fb);
  transition: color var(--transition);
}
.adm-upload-change { color: var(--teal); }
.adm-upload-change:hover { color: var(--teal-2); }
.adm-upload-remove { color: #ef4444; }
.adm-upload-remove:hover { color: #dc2626; }

/* ── Terms ── */
.adm-terms-box {
  background: var(--gray-0);
  border: 1px solid var(--gray-2);
  border-radius: var(--r-md);
  padding: 20px 24px;
}
.adm-terms-text {
  font-size: .88rem; color: var(--text-2); line-height: 1.7;
  margin-bottom: 16px;
  padding-left: 16px;
  border-left: 3px solid var(--gold);
}

.adm-checkbox-label {
  display: flex; align-items: center; gap: 10px;
  cursor: pointer; font-size: .88rem; color: var(--text);
  user-select: none;
}
.adm-checkbox {
  position: absolute; opacity: 0; pointer-events: none;
}
.adm-checkbox-custom {
  width: 20px; height: 20px; flex-shrink: 0;
  border: 2px solid var(--gray-3);
  border-radius: 5px;
  position: relative;
  transition: all var(--transition);
  background: var(--white);
}
.adm-checkbox:checked + .adm-checkbox-custom {
  background: var(--teal);
  border-color: var(--teal);
}
.adm-checkbox:checked + .adm-checkbox-custom::after {
  content: '';
  position: absolute;
  top: 2px; left: 5px;
  width: 6px; height: 10px;
  border: solid #fff; border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.adm-checkbox:focus-visible + .adm-checkbox-custom {
  box-shadow: 0 0 0 3px rgba(10,150,128,.2);
}
.adm-checkbox-label--error .adm-checkbox-custom {
  border-color: #ef4444;
}

/* ── Buttons ── */
.adm-actions {
  display: flex; gap: 14px; padding-top: 28px;
  flex-wrap: wrap;
}
.adm-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 28px;
  border-radius: var(--r-sm);
  font-family: var(--fb); font-size: .9rem; font-weight: 600;
  cursor: pointer; border: none;
  transition: all var(--transition);
  text-decoration: none;
}
.adm-btn:disabled { opacity: .6; cursor: not-allowed; }

.adm-btn--primary {
  background: #19a095;
  color: #fff;
  box-shadow: 0 4px 16px rgba(10,150,128,.25);
}
.adm-btn--primary:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(10,150,128,.35);
}

.adm-btn--lg { padding: 14px 36px; font-size: .95rem; }

.adm-btn--outline {
  background: transparent;
  border: 1.5px solid var(--gray-3);
  color: var(--text-2);
}
.adm-btn--outline:hover:not(:disabled) {
  border-color: var(--navy);
  color: var(--navy);
  background: var(--gray-0);
}

/* ── Spinner ── */
.adm-spinner {
  width: 18px; height: 18px;
  border: 2.5px solid rgba(255,255,255,.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: adm-spin .65s linear infinite;
}
@keyframes adm-spin { to { transform: rotate(360deg); } }

/* ── Success Modal ── */
.adm-modal-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(13,31,60,.45);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  animation: adm-fadeIn .25s ease;
}
@keyframes adm-fadeIn { from { opacity: 0; } to { opacity: 1; } }

.adm-modal {
  background: var(--white);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  padding: 44px 40px 36px;
  max-width: 440px; width: 100%;
  text-align: center;
  animation: adm-slideUp .35s ease;
}
@keyframes adm-slideUp {
  from { opacity: 0; transform: translateY(24px) scale(.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.adm-modal-icon {
  width: 72px; height: 72px;
  margin: 0 auto 20px;
  color: var(--teal);
}
.adm-modal-check { width: 100%; height: 100%; }

.adm-modal-circle {
  stroke-dasharray: 152;
  stroke-dashoffset: 152;
  animation: adm-drawCircle .6s ease forwards;
}
@keyframes adm-drawCircle { to { stroke-dashoffset: 0; } }

.adm-modal-tick {
  stroke-dasharray: 40;
  stroke-dashoffset: 40;
  animation: adm-drawTick .4s .4s ease forwards;
}
@keyframes adm-drawTick { to { stroke-dashoffset: 0; } }

.adm-modal-title {
  font-family: var(--fd); font-size: 1.35rem; font-weight: 700;
  color: var(--navy); margin-bottom: 10px;
}
.adm-modal-msg {
  font-size: .9rem; color: var(--text-2); line-height: 1.7;
  margin-bottom: 28px;
}
.adm-modal-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; }

/* ── RESPONSIVE ── */
@media (max-width: 1040px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-media { padding-top: 0; }
  .map-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .gallery-item:first-child { grid-column: span 2; height: 240px; }
  .gallery-item { height: 160px; }

  .topbar {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: start;
    row-gap: 8px;
  }
  .topbar-contact {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, max-content));
    column-gap: 18px;
    row-gap: 8px;
    width: 100%;
  }
  .topbar-contact a {
    white-space: nowrap;
  }
  .topbar-socials {
    justify-self: end;
    align-self: start;
    margin-top: 0;
  }

  .nav-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }
  .nav-brand-text { max-width: 190px; }
  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-2);
    padding: 12px 16px;
    box-shadow: var(--shadow-md);
    gap: 4px;
    align-items: stretch;
    justify-content: flex-start;
    justify-self: stretch;
  }
  .nav-menu.open { display: flex; }
  .nav-menu a { padding: 10px 14px; font-size: .9rem; width: 100%; }
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }
  .nav-menu .nav-cta--mobile {
    display: inline-flex;
    width: auto;
    align-self: flex-start;
    margin-top: 10px;
    padding: 10px 18px;
    border-radius: 10px;
    font-size: .84rem;
    font-weight: 600;
    letter-spacing: .01em;
    background: var(--teal);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(10,150,128,.24);
  }
  .nav-menu .nav-cta--mobile:hover,
  .nav-menu .nav-cta--mobile.active {
    background: var(--teal-2);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(10,150,128,.28);
  }
}
@media (max-width: 768px) {
  .courses-grid, .news-grid, .footer-grid { grid-template-columns: 1fr; }
  .contact-strip { grid-template-columns: 1fr; }
  .hero-chips { gap: 8px; }
  .topbar {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    padding: 10px 16px;
    column-gap: 12px;
    row-gap: 0;
  }
  .topbar-contact {
    grid-template-columns: 1fr;
    gap: 8px;
    width: min-content;
  }
  .topbar-contact a {
    white-space: normal;
    font-size: .77rem;
    line-height: 1.4;
  }
  .topbar-socials {
    justify-self: end;
    align-self: start;
    margin-top: 0;
  }
  .nav-inner { gap: 12px; min-height: 74px; }
  .nav-brand-text { max-width: 180px; }
  .hero-chips .hero-chip span { display: none; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }

  /* Admission form responsive */
  .adm-card-header { padding: 18px 22px; }
  .adm-card-header-title { font-size: .95rem; }
  .adm-form { padding: 24px 22px; }
  .adm-row { grid-template-columns: 1fr; gap: 0; }
  .adm-radio-group { flex-direction: column; }
  .adm-radio-card { min-width: auto; }
  .adm-upload-preview { flex-direction: column; align-items: flex-start; }
  .adm-actions { flex-direction: column; }
  .adm-btn--lg { width: 100%; }
  .adm-btn--outline { width: 100%; }
  .adm-modal { padding: 32px 24px 28px; }
}
@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .gallery-item:first-child { grid-column: span 1; }
  .gallery-modal { padding: 18px; }
  .gallery-modal__image { max-height: 80vh; border-radius: var(--r-md); }
  .gallery-modal__close { top: 14px; right: 14px; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .topbar-contact { width: 100%; }
  .topbar-contact a { font-size: .72rem; }
  .topbar-contact .icon { width: 20px; height: 20px; }
  .topbar-contact .icon svg { width: 14px; height: 14px; }
  .nav-brand-text { max-width: 150px; }
  .nav-menu .nav-cta--mobile {
    padding: 10px 16px;
    font-size: .8rem;
    border-radius: 9px;
  }

  /* Admission form mobile */
  .adm-form { padding: 18px 16px; }
  .adm-card-header { padding: 16px; gap: 12px; }
  .adm-card-header-icon { width: 42px; height: 42px; }
  .adm-section-title { font-size: .95rem; gap: 10px; }
  .adm-section-num { width: 26px; height: 26px; font-size: .72rem; }
}
