:root {
  --navy: #001C54;
  --deep: #0089C6;
  --gold: #F98600;
  --gold-lt: #ffad40;
  --offwhite: #f4f6fb;
  --white: #ffffff;
  --border: rgba(249, 134, 0, .22);
  --blue-grad: radial-gradient(128.59% 100% at 50% 0%, rgb(0, 137, 198) 0%, rgb(0, 28, 84) 76.54%);
  --text-dark: #001C54;
  --text-mid: #2a3a5c;
  --text-muted: #5a6a85;
  --fd: 'Gilroy';
  --ease: .35s cubic-bezier(.4, 0, .2, 1);
  --radius: 10px;
}


@font-face {
  font-family: "Gilroy";
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/Gilroy-Regular.woff2") format("woff2");
}

@font-face {
  font-family: "Gilroy";
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/Gilroy-Medium.woff2") format("woff2");
}

@font-face {
  font-family: "Gilroy";
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/Gilroy-SemiBold.woff2") format("woff2");
}

@font-face {
  font-family: "Gilroy";
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/Gilroy-Bold.woff2") format("woff2");
}

@font-face {
  font-family: "Gilroy";
  font-weight: 800;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/Gilroy-ExtraBold.woff2") format("woff2");
}

@font-face {
  font-family: "Gilroy";
  font-weight: 900;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/Gilroy-Black.ttf") format("truetype");
}

/* ═══════════════════════════════════════════
   RESET & BASE
   font-family set once on body — all children
   inherit automatically; no need to repeat it.
═══════════════════════════════════════════ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--fd), sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--offwhite);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Headings inherit Gilroy from body — no !important needed */
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-weight: 600;
  line-height: 1.25;
}

::selection {
  background: var(--gold);
  color: #fff;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: var(--offwhite);
}

::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 3px;
}

/* ═══════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════ */
#mainNav {
  background: transparent;
  padding: 1.2rem 0;
  z-index: 1050;
  transition: background var(--ease), padding var(--ease), box-shadow var(--ease);
}

#mainNav.scrolled {
  background: rgba(0, 28, 84, .97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(249, 134, 0, .25);
  box-shadow: 0 2px 28px rgba(0, 0, 0, .35);
  padding: .6rem 0;
}

.nav-logo {
  height: 52px;
  width: auto;
  max-width: 250px;
  object-fit: contain;
  filter: brightness(1.05) drop-shadow(0 1px 4px rgba(0, 0, 0, .3));
  transition: height var(--ease), transform var(--ease), filter var(--ease);
}

#mainNav.scrolled .nav-logo {
  height: 44px;
}

.navbar-brand:hover .nav-logo {
  transform: scale(1.04);
  filter: brightness(1.15) drop-shadow(0 2px 8px rgba(249, 134, 0, .35));
}

.navbar-nav .nav-link {
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .82) !important;
  padding: .4rem .85rem !important;
  position: relative;
  white-space: nowrap;
  transition: color var(--ease);
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: .85rem;
  right: .85rem;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--ease);
}

.navbar-nav .nav-link:hover {
  /* color: var(--gold-lt) !important; */
  color: var(--white) !important;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  transform: scaleX(1);
}

.navbar-nav .nav-link.active {
  color: #fff !important;
}

.btn-enq {
  font-size: .78rem !important;
  font-weight: 800 !important;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: var(--gold) !important;
  color: #fff !important;
  padding: .55rem 1.4rem !important;
  border-radius: 5px;
  display: inline-flex !important;
  align-items: center;
  gap: 7px;
  transition: all var(--ease);
}

.btn-enq::after {
  display: none !important;
}

.btn-enq:hover {
  background: var(--gold-lt) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(249, 134, 0, .4);
}

.navbar-toggler {
  border: 1.5px solid rgba(249, 134, 0, .5);
  padding: .3rem .5rem;
  border-radius: 5px;
  transition: border-color var(--ease), background var(--ease);
}

.navbar-toggler:hover {
  background: rgba(249, 134, 0, .1);
  border-color: var(--gold);
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28249,134,0,1%29' stroke-linecap='round' stroke-width='2.2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
#hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: hzoom 18s ease-in-out infinite alternate;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(0, 0, 0, .35), rgba(0, 0, 0, .35)),
    linear-gradient(135deg,
      rgba(0, 18, 60, .95) 0%,
      rgba(0, 95, 150, .75) 55%,
      rgba(0, 18, 60, .95) 100%);
  z-index: 1;
}

@keyframes hzoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.06);
  }
}

@keyframes hzoom {
  from {
    transform: scale(1)
  }

  to {
    transform: scale(1.06)
  }
}

.hero-accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(249, 134, 0, .09));
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%);
  pointer-events: none;
}

.hero-line {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent 65%);
}

.hcontent {
  position: relative;
  z-index: 2;
}

@keyframes fup {
  from {
    opacity: 0;
    transform: translateY(28px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

@keyframes fleft {
  from {
    opacity: 0;
    transform: translateX(28px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

.h-eye {
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-lt);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1.1rem;
  opacity: 0;
  animation: fup .7s .2s forwards;
}

.h-eye::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--gold);
  display: block;
}

.h-title {
  font-size: clamp(3rem, 9vw, 7.5rem);
  line-height: .92;
  color: #fff;
  margin-bottom: .4rem;
  opacity: 0;
  animation: fup .7s .4s forwards;
}

.h-title span {
  color: var(--gold);
}

.h-sub {
  font-size: clamp(.95rem, 2.2vw, 1.35rem);
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .65);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fup .7s .55s forwards;
}

.h-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fup .7s .7s forwards;
}

.h-badge {
  background: rgba(249, 134, 0, .15);
  border: 1px solid rgba(249, 134, 0, .3);
  border-radius: 3px;
  padding: .3rem .8rem;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-lt);
}

.h-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  opacity: 0;
  animation: fup .7s .85s forwards;
}

.hero-stats {
  position: absolute;
  bottom: 3.5rem;
  right: 0;
  z-index: 2;
  opacity: 0;
  animation: fleft .7s 1.1s forwards;
}

.sbox {
  background: rgba(0, 28, 84, .82);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(249, 134, 0, .25);
  border-right: none;
  border-radius: 6px 0 0 6px;
  padding: 1.1rem 1.8rem;
  text-align: center;
  margin-bottom: .5rem;
}

.snum {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}

.slbl {
  font-size: .7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
  margin-top: 2px;
}


.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: hzoom 18s ease-in-out infinite alternate;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg,
      rgba(0, 28, 84, .93) 0%,
      rgba(0, 137, 198, .55) 55%,
      rgba(0, 28, 84, .88) 100%);
  z-index: 1;
}

@keyframes hzoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.06);
  }
}

/* ═══════════════════════════════════════════
   TICKER
═══════════════════════════════════════════ */
.ticker-bar {
  background: var(--gold);
  padding: .55rem 0;
  overflow: hidden;
}

.ticker-inner {
  display: flex;
  white-space: nowrap;
  animation: tick 32s linear infinite;
}

.ticker-item {
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--navy);
  padding: 0 2.5rem;
}

@keyframes tick {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

/* ═══════════════════════════════════════════
   SHARED SECTION UTILITIES
═══════════════════════════════════════════ */
section {
  padding: 5.5rem 0;
}

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 137, 198, .2), transparent);
}

.s-label {
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: .75rem;
}

.s-label::before {
  content: '';
  width: 26px;
  height: 2px;
  background: var(--gold);
  display: block;
}

.s-title {
  font-size: clamp(2rem, 5vw, 2.8rem);
  line-height: 1;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.s-title span {
  color: var(--gold);
}

.s-body {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-mid);
}

/* Dark-background section text overrides */
#partnership .s-title,
#coaches .s-title,
#legacy .s-title {
  color: #fff;
}

#partnership .s-body,
#coaches .s-body,
#legacy .s-body {
  color: rgba(255, 255, 255, .7);
}

/* Scroll-reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.rl {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity .65s ease, transform .65s ease;
}

.rl.visible {
  opacity: 1;
  transform: none;
}

.rr {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity .65s ease, transform .65s ease;
}

.rr.visible {
  opacity: 1;
  transform: none;
}

.d1 {
  transition-delay: .1s
}

.d2 {
  transition-delay: .2s
}

.d3 {
  transition-delay: .3s
}

.d4 {
  transition-delay: .4s
}

.d5 {
  transition-delay: .5s
}

.d6 {
  transition-delay: .6s
}

/* Shared buttons */
.btn-gold {
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: var(--gold);
  color: #fff;
  border: none;
  padding: .85rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: all var(--ease);
}

.btn-gold:hover {
  background: var(--gold-lt);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(249, 134, 0, .4);
  color: #fff;
}

.btn-outline-w {
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, .35);
  padding: .85rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: all var(--ease);
}

.btn-outline-w:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}

/* ═══════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════ */
#about {
  background: var(--offwhite);
  padding: 5.5rem 0;
  position: relative;
  overflow: hidden;
}

#about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--navy), var(--deep), var(--gold), var(--navy));
}

.ab-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.ab-blob1 {
  width: 420px;
  height: 420px;
  background: rgba(0, 137, 198, .06);
  top: -120px;
  right: -80px;
}

.ab-blob2 {
  width: 260px;
  height: 260px;
  background: rgba(0, 28, 84, .04);
  bottom: -80px;
  left: -60px;
}

.ab-container {
  position: relative;
  z-index: 1;
}

.eyebrow-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.eyebrow-dash {
  width: 26px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  flex-shrink: 0;
}

.eyebrow-txt {
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
}

.big-head {
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 600;
  line-height: 1;
  color: var(--text-dark);
  margin-bottom: 22px;
}

.big-head em {
  font-style: normal;
  color: var(--gold);
  display: block;
}

.intro-p {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 28px;
}

.ab-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: .75rem;
  font-weight: 600;
  color: var(--navy);
  transition: border-color var(--ease), color var(--ease);
}

.ab-tag:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.ab-tag i {
  font-size: 13px;
}

.sch-card {
  background: var(--white);
  border-radius: 10px;
  border: 1px solid rgba(0, 137, 198, .15);
  padding: 1.3rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  overflow: hidden;
  transition: border-color var(--ease), transform var(--ease), box-shadow var(--ease);
}

.sch-card:hover {
  border-color: var(--gold);
  transform: translateX(5px);
  box-shadow: 0 8px 28px rgba(249, 134, 0, .1);
}

.sch-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
}

.c1::before {
  background: var(--navy);
}

.c2::before {
  background: var(--gold);
}

.c3::before {
  background: var(--deep);
}

.c4::before {
  background: var(--gold-lt);
}

.hrs-block {
  min-width: 72px;
  text-align: center;
  padding-right: 20px;
  border-right: 1px solid rgba(0, 137, 198, .15);
  flex-shrink: 0;
}

.hrs-num {
  font-size: 2.3rem;
  font-weight: 600;
  line-height: 1;
}

.c1 .hrs-num {
  color: var(--navy);
}

.c2 .hrs-num {
  color: var(--gold);
}

.c3 .hrs-num {
  color: var(--deep);
}

.c4 .hrs-num {
  color: var(--gold-lt);
}

.hrs-lbl {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 3px;
}

.info-block {
  flex: 1;
}

.act-icon-wrap {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
  font-size: 16px;
  transition: background var(--ease), color var(--ease);
}

.c1 .act-icon-wrap {
  background: rgba(0, 28, 84, .08);
  color: var(--navy);
}

.c2 .act-icon-wrap {
  background: rgba(249, 134, 0, .1);
  color: var(--gold);
}

.c3 .act-icon-wrap {
  background: rgba(0, 137, 198, .1);
  color: var(--deep);
}

.c4 .act-icon-wrap {
  background: rgba(255, 173, 64, .12);
  color: var(--gold-lt);
}

.sch-card:hover .act-icon-wrap {
  background: rgba(249, 134, 0, .12);
  color: var(--gold);
}

.act-name {
  font-size: .94rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 3px;
}

.act-sub {
  font-size: .78rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

/* ═══════════════════════════════════════════
   PARTNERSHIP
═══════════════════════════════════════════ */
#partnership {
  background: var(--blue-grad);
}

.partner-half {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 8px;
  padding: 2rem;
  height: 100%;
}

.partner-logo-name {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: .3rem;
}

.partner-tag {
  font-size: .72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
  margin-bottom: 1rem;
}

.stat-pill {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: rgba(249, 134, 0, .12);
  border: 1px solid rgba(249, 134, 0, .3);
  border-radius: 6px;
  padding: .7rem 1.2rem;
  margin: .3rem;
}

.stat-pill .n {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}

.stat-pill .l {
  font-size: .68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
}

.badge-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 3px;
  padding: .3rem .7rem;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  margin: .2rem;
}

.badge-chip i {
  color: var(--gold);
  font-size: .75rem;
}

/* ═══════════════════════════════════════════
   SPORTS
═══════════════════════════════════════════ */
#sports {
  background: var(--offwhite);
}

.sport-card {
  background: var(--white);
  border: 1px solid rgba(0, 137, 198, .15);
  border-radius: 8px;
  padding: 1.6rem 1.5rem;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: border-color var(--ease), transform var(--ease), box-shadow var(--ease);
}

.sport-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform var(--ease);
}

.sport-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: 0 18px 42px rgba(249, 134, 0, .12);
}

.sport-card:hover::before {
  transform: scaleY(1);
}

.sport-icon {
  width: 52px;
  height: 52px;
  background: rgba(249, 134, 0, .1);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  font-size: 1.5rem;
  color: var(--gold);
  transition: background var(--ease);
}

.sport-card:hover .sport-icon {
  background: rgba(249, 134, 0, .2);
}

.sport-name {
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: .5rem;
}

.sport-text {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.week-stat {
  text-align: center;
  padding: 1.5rem 1rem;
  border-right: 1px solid rgba(0, 137, 198, .15);
}

.week-stat:last-child {
  border-right: none;
}

.week-num {
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}

.week-lbl {
  font-size: .75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ═══════════════════════════════════════════
   COACHES
═══════════════════════════════════════════ */
#coaches {
  background: var(--blue-grad);
}

.coach-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.coach-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(15%);
  transition: transform .5s ease, filter .5s ease;
}

.coach-card:hover img {
  transform: scale(1.06);
  filter: grayscale(0);
}

.coach-ov {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, rgba(0, 28, 84, .97), transparent);
  padding: 2.2rem 1.3rem 1.3rem;
}

.coach-sport {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: .2rem .55rem;
  border-radius: 3px;
  margin-bottom: .4rem;
}

.coach-name {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
}

/* ═══════════════════════════════════════════
   FACILITIES
═══════════════════════════════════════════ */
#facilities {
  background: var(--offwhite);
}

.fac-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.fac-item {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  cursor: default;
}

.fac-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  filter: brightness(.85);
  transition: transform .45s ease, filter .45s ease;
}

.fac-item:hover img {
  transform: scale(1.06);
  filter: brightness(1);
}

.fac-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, rgba(0, 28, 84, .9), transparent);
  padding: .8rem .7rem .5rem;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
}

/* ═══════════════════════════════════════════
   LEGACY
═══════════════════════════════════════════ */
#legacy {
  background: var(--blue-grad);
}

.legacy-card {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 8px;
  padding: 10px;
  text-align: center;
  transition: border-color var(--ease), transform var(--ease);
}

.legacy-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.legacy-name {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-top: .7rem;
}

.legacy-sport {
  font-size: .72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}

/* ═══════════════════════════════════════════
   NEWS
═══════════════════════════════════════════ */
#news {
  background: var(--offwhite);
}

.news-card {
  background: var(--white);
  border: 1px solid rgba(0, 137, 198, .15);
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
  cursor: pointer;
  transition: border-color var(--ease), transform var(--ease);
}

.news-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
}

.news-img {
  height: 190px;
  overflow: hidden;
}

.news-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.news-card:hover .news-img img {
  transform: scale(1.06);
}

.news-body {
  padding: 1.4rem;
}

.news-tag {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .5rem;
}

.news-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.3;
  margin-bottom: .4rem;
}

.news-date {
  font-size: .76rem;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 5px;
}

.news-more {
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: .9rem;
  text-decoration: none;
  transition: gap var(--ease);
}

.news-card:hover .news-more {
  gap: 10px;
}

.pdf-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(192, 57, 43, .1);
  border: 1px solid rgba(192, 57, 43, .3);
  color: #c0392b;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: .18rem .45rem;
  border-radius: 3px;
  margin-left: .4rem;
}

/* ═══════════════════════════════════════════
   CTA
═══════════════════════════════════════════ */
#cta {
  background: linear-gradient(135deg, var(--gold), #d46a00);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

#cta::before {
  content: 'JHSS';
  position: absolute;
  right: -1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18rem;
  color: rgba(255, 255, 255, .08);
  line-height: 1;
  pointer-events: none;
}

.cta-title {
  font-size: clamp(2rem, 5vw, 3.8rem);
  color: #fff;
  line-height: 1.05;
  margin-bottom: .8rem;
}

.cta-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, .8);
  line-height: 1.6;
  margin-bottom: 1.8rem;
}

.btn-dark-cta {
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: var(--navy);
  color: #fff;
  border: none;
  padding: .9rem 2.3rem;
  border-radius: 4px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: all var(--ease);
}

.btn-dark-cta:hover {
  background: #001040;
  color: var(--gold-lt);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .22);
}

/* ═══════════════════════════════════════════
   PARTNERS STRIP
═══════════════════════════════════════════ */
#partners-strip {
  background: var(--offwhite);
  padding: 3rem 0;
  border-top: 1px solid rgba(0, 137, 198, .15);
  overflow: hidden;
}

.partners-swiper {
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.partners-swiper .swiper-wrapper {
  align-items: center;
  transition-timing-function: linear !important;
}

.partners-swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto !important;
}

.plogo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 155px;
  padding: 0 2.5rem;
  opacity: .35;
  filter: grayscale(1);
  white-space: nowrap;
  cursor: default;
  position: relative;
  transition: opacity .3s ease, filter .3s ease;
}

.plogo::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 100px;
  background: rgba(0, 137, 198, .2);
}

.plogo:hover {
  opacity: 1;
  filter: none;
}

.plogo span {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dark);
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
footer {
  background: var(--navy);
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(249, 134, 0, .2);
}

.ft-brand {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
}

.ft-tag {
  font-size: .83rem;
  color: rgba(255, 255, 255, .5);
  margin-top: .45rem;
  line-height: 1.5;
}

.ft-head {
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}

.ft-links {
  list-style: none;
  padding: 0;
}

.ft-links li {
  margin-bottom: .55rem;
}

.ft-links a {
  color: rgba(255, 255, 255, .45);
  text-decoration: none;
  font-size: .88rem;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color var(--ease);
}

.ft-links a:hover {
  color: var(--gold);
}

.ft-contact li {
  display: flex;
  gap: 9px;
  font-size: .86rem;
  color: rgba(255, 255, 255, .45);
  margin-bottom: .75rem;
  list-style: none;
}

.ft-contact li i {
  color: var(--gold);
  margin-top: 2px;
  flex-shrink: 0;
}

.ft-social {
  display: flex;
  gap: 8px;
  margin-top: 1.2rem;
}

.soc-btn {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .5);
  font-size: .95rem;
  text-decoration: none;
  transition: all var(--ease);
}

.soc-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

.ft-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  margin-top: 2.8rem;
  padding-top: 1.4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .4rem;
}

.ft-copy {
  font-size: .78rem;
  color: rgba(255, 255, 255, .35);
}

/* ═══════════════════════════════════════════
   FLOAT BUTTON
═══════════════════════════════════════════ */
.float-btn {
  position: fixed;
  bottom: 1.8rem;
  right: 1.8rem;
  z-index: 1040;
  background: var(--gold);
  color: #fff;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: 50px;
  padding: .7rem 1.5rem;
  box-shadow: 0 8px 28px rgba(249, 134, 0, .45);
  display: flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
  transition: all var(--ease);
  animation: fpulse 2.5s ease-in-out infinite;
}

.float-btn:hover {
  background: var(--gold-lt);
  transform: translateY(-4px) scale(1.04);
  animation: none;
  box-shadow: 0 16px 36px rgba(249, 134, 0, .55);
}

@keyframes fpulse {

  0%,
  100% {
    box-shadow: 0 8px 28px rgba(249, 134, 0, .45)
  }

  50% {
    box-shadow: 0 8px 44px rgba(249, 134, 0, .7)
  }
}

/* ═══════════════════════════════════════════
   JHSS ACADEMIC SECTION
═══════════════════════════════════════════ */
.jhss-hero-band {
  background: var(--navy);
  padding: 3rem 2.5rem 2.5rem;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}

.jhss-hero-band::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 28px solid rgba(249, 134, 0, .08);
  pointer-events: none;
}

.jhss-hero-band::after {
  content: "";
  position: absolute;
  bottom: -60px;
  left: 32%;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 18px solid rgba(0, 137, 198, .09);
  pointer-events: none;
}

.jhss-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1.2rem;
}

.jhss-eyebrow-line {
  width: 32px;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}

.jhss-eyebrow-text {
  font-size: .65rem;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.jhss-hero-h {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.15;
  max-width: 900px;
  margin-bottom: 1rem;
}

.jhss-hero-h em {
  color: var(--gold);
  font-style: normal;
}

.jhss-hero-p {
  font-size: .92rem;
  color: rgba(255, 255, 255, .6);
  line-height: 1.8;
  max-width: 900px;
  margin-bottom: 2rem;
}

.jhss-hero-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.jhss-hstat-num {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}

.jhss-hstat-label {
  font-size: .7rem;
  color: rgba(255, 255, 255, .45);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 4px;
}

.jhss-sub-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1.4rem;
}

.jhss-sub-line {
  width: 20px;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}

.jhss-sub-text {
  font-size: .92rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.jhss-net-section {
  padding: 2.5rem 0 0;
}

.jhss-path-section {
  padding: 2.5rem 0 0;
}

.jhss-net-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.jhss-net-card {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.3rem .9rem 1.2rem;
  text-align: center;
  background: var(--white);
  transition: border-color var(--ease), transform var(--ease);
  cursor: default;
}

.jhss-net-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.jhss-net-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto .8rem;
  color: var(--gold);
  font-size: 1.15rem;
  transition: background var(--ease), color var(--ease);
}

.jhss-net-card:hover .jhss-net-icon {
  background: var(--gold);
  color: var(--navy);
}

.jhss-net-title {
  font-size: .76rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.35;
}

.jhss-path-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.jhss-path-card {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--white);
  transition: border-color var(--ease), transform var(--ease);
  cursor: default;
}

.jhss-path-card:hover {
  border-color: var(--deep);
  transform: translateY(-3px);
}

.jhss-path-top {
  background: var(--navy);
  padding: 1.1rem 1.3rem 1rem;
  display: flex;
  align-items: center;
  gap: 14px;
}

.jhss-path-num {
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
}

.jhss-path-grade {
  font-size: .63rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .4);
  font-weight: 600;
  margin-bottom: 3px;
}

.jhss-path-name {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.25;
}

.jhss-path-body {
  padding: 1.1rem 1.3rem 1.2rem;
}

.jhss-path-desc {
  font-size: .84rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

.jhss-path-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: .8rem;
}

.jhss-tag {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .4px;
  padding: .25rem .65rem;
  border-radius: 20px;
}

.jhss-tag-sport {
  background: rgba(0, 137, 198, .1);
  color: var(--deep);
}

.jhss-tag-acad {
  background: rgba(249, 134, 0, .12);
  color: var(--gold);
}

/* ═══════════════════════════════════════════
   SWIPER — CONSOLIDATED
   All swipers share one bullet style.
   Only spacing/size overrides per swiper.
═══════════════════════════════════════════ */
.swiper-pagination-bullet {
  background: var(--gold);
  opacity: .3;
}

.swiper-pagination-bullet-active {
  background: var(--gold);
  opacity: 1;
  width: 20px;
  border-radius: 3px;
}

/* Bottom padding so bullets don't overlap cards */
.sports-swiper,
.coaches-swiper,
.fac-swiper,
.legacy-swiper,
.net-swiper,
.path-swiper {
  padding-bottom: 2.5rem !important;
}

.news-swiper {
  padding-bottom: 2.8rem !important;
}

/* Auto-height slides */
.sports-swiper .swiper-slide,
.coaches-swiper .swiper-slide,
.legacy-swiper .swiper-slide,
.news-swiper .swiper-slide,
.path-swiper .swiper-slide {
  height: auto;
}

/* Cards fill their slide */
.sports-swiper .swiper-slide .sport-card {
  height: 100%;
}

.coaches-swiper .swiper-slide .coach-card {
  height: 100%;
  aspect-ratio: 3/4;
}

.news-swiper .swiper-slide .news-card {
  height: 100%;
}

.path-swiper .swiper-slide .jhss-path-card {
  height: 100%;
}

.fac-swiper .swiper-slide .fac-item img {
  height: 240px;
}

/* Net cards have fixed width */
.net-swiper .swiper-slide {
  height: auto;
  width: 160px;
}

/* ═══════════════════════════════════════════
   MODALS
═══════════════════════════════════════════ */

/* --- Shared news/coach modals (.jm) --- */
.jm .modal-content {
  background: #fff;
  border: 1px solid rgba(0, 137, 198, .15);
  border-radius: 8px;
  color: var(--text-dark);
}

.jm .modal-header {
  border-bottom: 1px solid rgba(0, 137, 198, .15);
  padding: 1.4rem 1.7rem;
}

.jm .modal-title {
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-dark);
  margin: 0;
}

.jm .modal-tag {
  font-size: .73rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 3px;
}

.jm .modal-body {
  padding: 1.7rem;
  font-size: .93rem;
  line-height: 1.7;
  color: var(--text-mid);
}

.jm .modal-footer {
  border-top: 1px solid rgba(0, 137, 198, .15);
  padding: .9rem 1.7rem;
}

.jm .btn-close {
  filter: none;
}

/* Modal image — single definition */
.mimg {
  width: 100%;
  border-radius: 6px;
  object-fit: cover;
  max-height: 260px;
  margin-bottom: 1.3rem;
  display: block;
}

.modal-eyebrow {
  font-size: .72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 3px;
}

.modal-divider {
  border-color: rgba(0, 137, 198, .18);
  margin: 1.4rem 0;
}

.pdf-block {
  background: rgba(0, 137, 198, .04);
  border: 1px dashed rgba(0, 137, 198, .2);
  border-radius: 6px;
  padding: 2.5rem 1.5rem;
  text-align: center;
}

/* --- Enquiry modal --- */
#enqModal .modal-content {
  background: #fff;
  border: 1px solid rgba(0, 137, 198, .2);
  border-radius: 10px;
}

#enqModal .modal-header {
  border-bottom: 1px solid rgba(0, 137, 198, .15);
}

#enqModal .modal-title {
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
}

#enqModal .btn-close {
  filter: none;
}

.enq-body {
  padding: 1.6rem;
  background: #36393b;
}

.enq-label {
  display: block;
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .4rem;
}

/* Single unified input style — covers Bootstrap controls inside enqModal AND .enq-input class */
.enq-input,
#enqModal .form-control,
#enqModal .form-select,
#enqModal .form-label {
  font-family: var(--fd), sans-serif;
}

.enq-input,
#enqModal .form-control,
#enqModal .form-select {
  background: var(--offwhite);
  border: 1px solid rgba(0, 137, 198, .2);
  border-radius: 4px;
  color: var(--text-dark);
  padding: .6rem .9rem;
  transition: border-color var(--ease);
}

.enq-input:focus,
#enqModal .form-control:focus,
#enqModal .form-select:focus {
  background: #fff;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(249, 134, 0, .12);
  color: var(--text-dark);
  outline: none;
}

#enqModal .form-label {
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .3rem;
}

#enqModal .form-control::placeholder {
  color: rgba(0, 28, 84, .3);
}

#enqModal .form-select option {
  background: #fff;
  color: var(--text-dark);
}

.submit-btn {
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: var(--gold);
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: .8rem 2rem;
  width: 100%;
  transition: all var(--ease);
}

.submit-btn:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
}

/* --- Coach profiles modal --- */
.cprofile-card {
  display: flex;
  gap: 1.3rem;
  align-items: flex-start;
  padding: 1.1rem;
  background: var(--offwhite);
  border: 1px solid rgba(0, 137, 198, .15);
  border-radius: 8px;
  height: 100%;
}

.cprofile-card--compact {
  display: block;
}

.cprofile-icon {
  width: 70px;
  height: 70px;
  background: rgba(249, 134, 0, .15);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  flex-shrink: 0;
}

.cprofile-sport {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: .18rem .5rem;
  border-radius: 3px;
  margin-bottom: 4px;
}

.cprofile-name {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 4px 0 2px;
}

.cprofile-bio {
  font-size: .88rem;
  color: var(--text-mid);
  line-height: 1.6;
  margin: 0;
}

/* ═══════════════════════════════════════════
   RESPONSIVE — TABLET  ≤ 991px
═══════════════════════════════════════════ */
@media (max-width:991.98px) {
  #mainNav {
    background: rgba(0, 18, 50, .98) !important;
    backdrop-filter: blur(16px);
    padding: .75rem 0;
    border-bottom: 1px solid rgba(249, 134, 0, .2);
  }

  .navbar-collapse {
    background: rgba(0, 18, 50, .99);
    border-top: 1px solid rgba(249, 134, 0, .15);
    margin-top: .6rem;
    border-radius: 0 0 12px 12px;
    padding: .5rem 0 1rem;
  }

  .navbar-nav .nav-link {
    padding: .65rem 1.4rem !important;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
    font-size: .8rem;
  }

  .navbar-nav .nav-link::after {
    display: none;
  }

  .navbar-nav .nav-link:hover {
    background: rgba(249, 134, 0, .08);
    padding-left: 1.8rem !important;
  }

  .navbar-nav li:last-child .nav-link {
    border-bottom: none;
  }

  .btn-enq {
    margin: .8rem 1.4rem 0 !important;
    width: calc(100% - 2.8rem);
    justify-content: center;
    padding: .75rem 1.4rem !important;
    font-size: .82rem !important;
    border-radius: 8px;
    transform: none !important;
  }

  .nav-logo {
    height: 44px;
  }

  .hero-stats {
    display: none;
  }

  /* Net grid: 3 columns on tablet */
  .jhss-net-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — MOBILE  ≤ 767px
═══════════════════════════════════════════ */
@media (max-width:767px) {
  section {
    padding: 3.8rem 0;
  }

  #about {
    padding: 3.8rem 0;
  }

  .big-head {
    font-size: 2.2rem;
  }

  .sch-card {
    padding: 1rem 1.1rem;
  }

  .hrs-num {
    font-size: 1.8rem;
  }

  /* Facilities — grid still visible if JS fails, but swiper takes over via d-md-none */
  .fac-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fac-item img {
    height: 140px;
  }

  .week-stat {
    border-right: none;
    border-bottom: 1px solid rgba(0, 137, 198, .15);
  }

  .week-stat:last-child {
    border-bottom: none;
  }

  .float-btn {
    bottom: 1rem;
    right: 1rem;
    font-size: .74rem;
    padding: .6rem 1.1rem;
  }

  /* JHSS band */
  .jhss-hero-band {
    padding: 1.8rem 1.3rem 1.5rem;
  }

  .jhss-hero-h {
    font-size: 1.45rem;
  }

  .jhss-hero-p {
    font-size: .85rem;
  }

  /* Stats: 3-col grid, no gap, dividers between */
  .jhss-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    text-align: center;
  }

  .jhss-hstat {
    padding: .5rem .3rem;
    border-right: 1px solid rgba(255, 255, 255, .08);
  }

  .jhss-hstat:last-child {
    border-right: none;
  }

  .jhss-hstat-num {
    font-size: 1.3rem;
  }

  /* Path grid: single column on mobile */
  .jhss-path-grid {
    grid-template-columns: 1fr;
  }

  .jhss-path-top {
    padding: .9rem 1rem;
  }

  .jhss-path-body {
    padding: .9rem 1rem 1rem;
  }

  .jhss-path-num {
    font-size: 1.8rem;
  }

  /* Net grid: hidden on mobile — Swiper (.net-swiper) handles it */
  .jhss-net-grid {
    display: none;
  }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE  ≤ 480px
═══════════════════════════════════════════ */
@media (max-width:480px) {
  .h-title {
    line-height: 1.05;
  }

  .h-sub {
    letter-spacing: 1.5px;
  }

  .h-badges {
    gap: 6px;
  }

  .h-badge {
    font-size: .72rem;
    padding: .25rem .65rem;
  }

  .btn-gold,
  .btn-outline-w {
    font-size: .85rem;
    padding: .75rem 1.5rem;
  }

  .cta-title {
    font-size: 1.8rem;
  }

  /* Net swiper shown; no grid needed at this size */
}

/* ═══════════════════════════════════════════
   BACK TO TOP
═══════════════════════════════════════════ */
.back-to-top {
  position: fixed;
  bottom: 5.5rem;
  right: 1.8rem;
  z-index: 1039;
  width: 46px;
  height: 46px;
  background: var(--navy);
  color: #fff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px) scale(.85);
  transition: opacity .4s var(--ease), visibility .4s var(--ease),
    transform .4s var(--ease), background .3s var(--ease),
    box-shadow .3s var(--ease);
}

/* SVG progress ring */
.back-to-top svg {
  position: absolute;
  inset: -3px;
  width: calc(100% + 6px);
  height: calc(100% + 6px);
  transform: rotate(-90deg);
  pointer-events: none;
}

.back-to-top svg circle {
  fill: none;
  stroke-width: 2.5;
}

.btt-track {
  stroke: rgba(249, 134, 0, .18);
}

.btt-prog {
  stroke: var(--gold);
  stroke-dasharray: 0 999;
  /* JS drives this */
  stroke-linecap: round;
  transition: stroke-dasharray .15s linear;
}

/* Arrow icon bounce on hover */
.back-to-top i {
  position: relative;
  z-index: 1;
  transition: transform .35s var(--ease);
}

.back-to-top:hover i {
  transform: translateY(-3px);
}

.back-to-top:hover {
  background: var(--gold);
  box-shadow: 0 8px 28px rgba(249, 134, 0, .45);
}

/* Visible state */
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

/* Pop-in keyframe — fires once when .visible is added */
.back-to-top.pop {
  animation: btt-pop .45s var(--ease) forwards;
}

@keyframes btt-pop {
  0% {
    transform: translateY(16px) scale(.75);
    opacity: 0;
  }

  60% {
    transform: translateY(-5px) scale(1.08);
    opacity: 1;
  }

  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

@media (max-width: 767px) {
  .back-to-top {
    bottom: 5rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    font-size: .85rem;
  }
}


.page-hero {
  background: var(--blue-grad);
  position: relative;
  padding: 110px 0 65px;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -60px;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249, 134, 0, .12) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent 65%);
}

.page-hero-dots {
  position: absolute;
  top: 10%; left: 4%;
  width: 180px; height: 180px;
  background-image: radial-gradient(circle, rgba(255, 255, 255, .08) 1.5px, transparent 1.5px);
  background-size: 22px 22px;
  pointer-events: none;
}

.page-hero-dots-2 {
  position: absolute;
  bottom: 10%; right: 3%;
  width: 140px; height: 140px;
  background-image: radial-gradient(circle, rgba(249, 134, 0, .18) 1.5px, transparent 1.5px);
  background-size: 20px 20px;
  pointer-events: none;
}

.page-hero-content { position: relative; z-index: 2; }

/* Breadcrumb */
.breadcrumb-nav { margin-bottom: 1rem; }
.breadcrumb-nav a {
  color: rgba(255, 255, 255, .5);
  text-decoration: none;
  font-size: .82rem;
  font-weight: 600;
  transition: color var(--ease);
}
.breadcrumb-nav a:hover { color: var(--gold-lt); }
.breadcrumb-nav .bc-sep {
  color: rgba(255, 255, 255, .25);
  margin: 0 .45rem;
  font-size: .82rem;
}
.breadcrumb-nav .bc-current {
  color: var(--gold-lt);
  font-size: .82rem;
  font-weight: 600;
}


.page-hero h1 {
  font-size: clamp(1.9rem, 4vw, 2.5rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.1;
  margin-bottom: .6rem;
  max-width: 780px;
}
.page-hero h1 span { color: var(--gold); }
.page-hero .hero-sub {
  color: rgba(255, 255, 255, .55);
  font-size: .97rem;
  max-width: 480px;
  margin: 0;
}


.news-page .s-label {
  font-size: .72rem;
  justify-content: center;
}
.news-page .s-label::before {
  width: auto;
  flex: 1;
  max-width: 48px;
  height: 1px;
  background: var(--border);
}
.news-page .s-label::after {
  content: '';
  flex: 1;
  max-width: 48px;
  height: 1px;
  background: var(--border);
  display: block;
}

/* Smaller s-title for news pages */
.news-page .s-title {
  font-size: clamp(1.6rem, 3.2vw, 2.2rem);
}



.news-page .news-card {
  box-shadow: 0 2px 16px rgba(0, 28, 84, .07);
  display: flex;
  flex-direction: column;
}
.news-page .news-card:hover {
  box-shadow: 0 12px 40px rgba(0, 28, 84, .13);
}
.news-page .news-img {
  height: 210px;
  position: relative;
}
.news-page .news-img img {
  transition: transform .55s var(--ease);
}
.news-page .news-body {
  padding: 1.25rem 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.news-page .news-tag {
  background: rgba(249, 134, 0, .1);
  border-radius: 4px;
  padding: .25rem .7rem;
  display: inline-block;
  margin-bottom: .75rem;
  align-self: flex-start;
}
.news-excerpt {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1rem;
  flex: 1;
}
.news-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}



.news-section { padding: 60px 0 80px; }

/* Filter Bar */
.filter-bar {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1rem 1.4rem;
  box-shadow: 0 2px 16px rgba(0, 28, 84, .07);
  border: 1px solid rgba(0, 28, 84, .06);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .6rem;
  margin-bottom: 1.5rem;
}
.filter-label {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-right: .3rem;
}
.filter-btn {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: .4rem .95rem;
  border-radius: 50px;
  border: 1.5px solid rgba(0, 28, 84, .14);
  background: transparent;
  color: var(--text-mid);
  cursor: pointer;
  transition: all var(--ease);
}
.filter-btn:hover { border-color: var(--gold); color: var(--gold); }
.filter-btn.active { background: var(--gold); border-color: var(--gold); color: #fff; }

.filter-search { margin-left: auto; position: relative; }
.filter-search input {
  border: 1.5px solid rgba(0, 28, 84, .12);
  border-radius: 50px;
  padding: .4rem 1rem .4rem 2.3rem;
  font-size: .85rem;
  font-family: var(--fd), sans-serif;
  color: var(--text-dark);
  background: var(--offwhite);
  outline: none;
  width: 200px;
  transition: border-color var(--ease), box-shadow var(--ease);
}
.filter-search input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(249, 134, 0, .1);
}
.filter-search i {
  position: absolute;
  left: .85rem; top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: .85rem;
  pointer-events: none;
}

/* Year Section Heading */
.year-heading {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2.5rem 0 1.5rem;
}
.year-badge {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--navy);
  background: linear-gradient(135deg, rgba(249, 134, 0, .12), rgba(249, 134, 0, .06));
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: .35rem 1.1rem;
  white-space: nowrap;
}
.year-line {
  flex: 1;
  height: 1.5px;
  background: linear-gradient(90deg, var(--border), transparent);
}

/* Featured Card */
.news-card-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 28px rgba(0, 28, 84, .1);
  border: 1px solid rgba(0, 28, 84, .05);
  cursor: pointer;
  transition: transform var(--ease), box-shadow var(--ease);
  margin-bottom: 2.5rem;
}
.news-card-featured:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 50px rgba(0, 28, 84, .14);
}
.news-card-featured:hover .news-img img { transform: scale(1.05); }
.news-card-featured .news-img { height: 320px; }
.news-card-featured .news-body {
  padding: 2rem 2.2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.news-card-featured .news-title { font-size: 1.45rem; margin-bottom: .8rem; }
.news-card-featured .news-excerpt { font-size: .92rem; margin-bottom: 1.2rem; }

.featured-badge {
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #fff;
  background: var(--navy);
  border-radius: 4px;
  padding: .22rem .7rem;
  display: inline-block;
  margin-bottom: .5rem;
  align-self: flex-start;
}

/* Load More */
.btn-load-more {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: .85rem 2.5rem;
  border-radius: 50px;
  border: 2px solid var(--navy);
  color: var(--navy);
  background: transparent;
  cursor: pointer;
  transition: all var(--ease);
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin: 0 auto;
}
.btn-load-more:hover { background: var(--navy); color: #fff; }


.sidebar-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.4rem;
  box-shadow: 0 2px 16px rgba(0, 28, 84, .07);
  border: 1px solid rgba(0, 28, 84, .05);
  margin-bottom: 1.5rem;
}
.sidebar-heading {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  padding-bottom: .6rem;
  border-bottom: 1.5px solid var(--border);
}
.sidebar-tag-list { display: flex; flex-wrap: wrap; gap: .5rem; }
.sidebar-tag {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: .28rem .8rem;
  border-radius: 50px;
  background: var(--offwhite);
  border: 1.5px solid rgba(0, 28, 84, .1);
  color: var(--text-mid);
  cursor: pointer;
  transition: all var(--ease);
  text-decoration: none;
  display: inline-block;
}
.sidebar-tag:hover { background: var(--gold); border-color: var(--gold); color: #fff; }

.sidebar-recent-item {
  display: flex;
  gap: .85rem;
  padding: .75rem 0;
  border-bottom: 1px solid rgba(0, 28, 84, .06);
  cursor: pointer;
  text-decoration: none;
}
.sidebar-recent-item:last-child { border-bottom: none; }
.sidebar-recent-img {
  width: 64px; height: 54px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
}
.sidebar-recent-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sidebar-recent-body h6 {
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.3;
  margin-bottom: .2rem;
  transition: color var(--ease);
}
.sidebar-recent-body span { font-size: .72rem; color: var(--text-muted); }
.sidebar-recent-item:hover .sidebar-recent-body h6 { color: var(--gold); }



.newsletter-card {
  background: var(--blue-grad);
  border-radius: var(--radius);
  padding: 1.6rem;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.newsletter-card::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 140px; height: 140px;
  border-radius: 50%;
  background: rgba(249, 134, 0, .15);
  pointer-events: none;
}
.newsletter-card h5 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: .4rem;
  position: relative;
}
.newsletter-card p {
  font-size: .82rem;
  color: rgba(255, 255, 255, .65);
  margin-bottom: 1rem;
  position: relative;
}
.newsletter-input-wrap {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  position: relative;
}
.newsletter-input-wrap input {
  background: rgba(255, 255, 255, .1);
  border: 1.5px solid rgba(255, 255, 255, .2);
  border-radius: 7px;
  padding: .6rem .9rem;
  color: #fff;
  font-family: var(--fd), sans-serif;
  font-size: .88rem;
  outline: none;
  transition: border-color var(--ease);
}
.newsletter-input-wrap input::placeholder { color: rgba(255, 255, 255, .4); }
.newsletter-input-wrap input:focus { border-color: var(--gold); }
.newsletter-input-wrap button {
  background: var(--gold);
  border: none;
  border-radius: 7px;
  color: #fff;
  font-family: var(--fd), sans-serif;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: .65rem;
  cursor: pointer;
  transition: all var(--ease);
}
.newsletter-input-wrap button:hover { background: var(--gold-lt); }



/* Reading progress bar */
#read-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: var(--gold);
  z-index: 9999;
  transition: width .1s linear;
  width: 0%;
}

/* Article category tag in hero */
.hero-tag {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--gold);
  border-radius: 4px;
  padding: .26rem .82rem;
  display: inline-block;
  margin-bottom: .85rem;
}

/* Article meta row (date / author / read time) */
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem 1.3rem;
  align-items: center;
  margin-top: .9rem;
}
.hero-meta-item {
  display: flex;
  align-items: center;
  gap: .38rem;
  color: rgba(255, 255, 255, .55);
  font-size: .82rem;
  font-weight: 600;
}
.hero-meta-item i { color: var(--gold); font-size: .88rem; }
.hero-meta-item strong { color: rgba(255, 255, 255, .85); font-weight: 600; }

/* Share strip */
.share-strip {
  background: var(--white);
  border-bottom: 1.5px solid rgba(0, 28, 84, .07);
  padding: .72rem 0;
}
.share-inner {
  display: flex;
  align-items: center;
  gap: .85rem;
  flex-wrap: wrap;
}
.share-label {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.share-btn {
  width: 34px; height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(0, 28, 84, .12);
  color: var(--text-mid);
  font-size: .9rem;
  cursor: pointer;
  transition: all var(--ease);
  text-decoration: none;
}
.share-btn:hover { background: var(--gold); border-color: var(--gold); color: #fff; }
.back-link {
  margin-left: auto;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: .35rem;
  transition: gap var(--ease);
}
.back-link:hover { gap: .6rem; }

/* Article layout */
.article-section { padding: 60px 0 80px; }

.article-body {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem 2.8rem;
  box-shadow: 0 2px 20px rgba(0, 28, 84, .07);
  border: 1px solid rgba(0, 28, 84, .05);
}

.article-hero-img {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 2rem;
  max-height: 460px;
}
.article-hero-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.article-hero-img figcaption {
  background: rgba(0, 28, 84, .04);
  padding: .55rem 1rem;
  font-size: .76rem;
  color: var(--text-muted);
  font-style: italic;
}

/* Article typography */
.article-lead {
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--gold);
  padding-left: 1.2rem;
}
.article-body p { font-size: .97rem; color: var(--text-mid); line-height: 1.85; margin-bottom: 1.4rem; }
.article-body h2 { font-size: 1.3rem; font-weight: 600; color: var(--navy); margin: 2rem 0 .85rem; }
.article-body h3 { font-size: 1.08rem; font-weight: 600; color: var(--navy); margin: 1.5rem 0 .7rem; }
.article-body ul,
.article-body ol { padding-left: 1.4rem; margin-bottom: 1.4rem; }
.article-body li { font-size: .97rem; color: var(--text-mid); line-height: 1.8; margin-bottom: .35rem; }
.article-body ul li::marker { color: var(--gold); }

/* Pull quote */
.pull-quote {
  background: linear-gradient(135deg, rgba(249, 134, 0, .07), rgba(0, 137, 198, .05));
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.4rem 1.8rem;
  margin: 2rem 0;
}
.pull-quote blockquote {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.55;
  font-style: italic;
  margin: 0 0 .5rem;
}
.pull-quote cite {
  font-size: .78rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-style: normal;
}

/* Inline gallery */
.article-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .85rem;
  margin: 1.8rem 0;
}
.article-gallery img {
  width: 100%; height: 200px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

/* Info box */
.info-box {
  background: rgba(0, 137, 198, .06);
  border: 1px solid rgba(0, 137, 198, .18);
  border-radius: var(--radius);
  padding: 1.2rem 1.4rem;
  margin: 1.8rem 0;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.info-box-icon { font-size: 1.4rem; color: var(--deep); flex-shrink: 0; margin-top: .15rem; }
.info-box-body p { margin: 0; font-size: .9rem; line-height: 1.65; }
.info-box-body strong { color: var(--navy); }
.info-box-body a { color: var(--gold); font-weight: 600; text-decoration: none; }
.info-box-body a:hover { text-decoration: underline; }

/* Article tags */
.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1.5px solid rgba(0, 28, 84, .07);
}
.article-tag {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: .28rem .82rem;
  border-radius: 50px;
  background: var(--offwhite);
  border: 1.5px solid rgba(0, 28, 84, .1);
  color: var(--text-mid);
  cursor: pointer;
  transition: all var(--ease);
  text-decoration: none;
}
.article-tag:hover { background: var(--gold); border-color: var(--gold); color: #fff; }

/* Author card */
.author-card {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  background: var(--offwhite);
  border-radius: var(--radius);
  padding: 1.2rem 1.4rem;
  margin-top: 2rem;
  border: 1px solid rgba(0, 28, 84, .07);
}
.author-avatar {
  width: 60px; height: 60px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 3px solid var(--gold);
}
.author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.author-info h6 { font-size: .9rem; font-weight: 600; color: var(--navy); margin-bottom: .12rem; }
.author-info p { font-size: .82rem; color: var(--text-muted); margin: 0; line-height: 1.5; }

/* Prev / Next article navigation */
.article-nav-link {
  display: flex;
  align-items: center;
  gap: .8rem;
  text-decoration: none;
  padding: 1rem 1.2rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(0, 28, 84, .08);
  height: 100%;
  transition: border-color var(--ease), box-shadow var(--ease);
}
.article-nav-link:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 18px rgba(0, 28, 84, .08);
}
.article-nav-link.next { justify-content: flex-end; text-align: right; }
.article-nav-link i { color: var(--gold); font-size: 1.05rem; flex-shrink: 0; }
.article-nav-sup {
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: .12rem;
}
.article-nav-title { font-size: .88rem; font-weight: 600; color: var(--navy); line-height: 1.3; }

/* Related news spacing */
.related-section { padding: 0 0 80px; }


/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 991px) {
  .filter-search { margin-left: 0; width: 100%; }
  .filter-search input { width: 100%; }
  .news-card-featured { grid-template-columns: 1fr; }
  .news-card-featured .news-img { height: 240px; }
  .news-card-featured .news-body { padding: 1.5rem; }
}

@media (max-width: 767px) {
  .page-hero { padding: 85px 0 50px; }
  .article-body { padding: 1.5rem 1.3rem; }
  .article-gallery { grid-template-columns: 1fr; }
  .share-inner { gap: .5rem; }
  .back-link { margin-left: 0; width: 100%; }
  .year-heading { margin: 2rem 0 1.1rem; }
}

@media (max-width: 480px) {
  .filter-btn { font-size: .68rem; padding: .32rem .72rem; }
  .article-lead { font-size: 1rem; }
  .pull-quote blockquote { font-size: 1rem; }
}


.article-nav-link {
  display: flex;
  align-items: center;
  gap: .8rem;
  text-decoration: none;
  padding: 1rem 1.2rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(0, 28, 84, .08);
  height: 100%;
  transition: border-color var(--ease), box-shadow var(--ease);
}
.article-nav-link:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 18px rgba(0, 28, 84, .08);
}
.article-nav-link.next { justify-content: flex-end; text-align: right; }
.article-nav-link i { color: var(--gold); font-size: 1.05rem; flex-shrink: 0; }
.article-nav-sup {
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: .12rem;
}
.article-nav-title { font-size: .88rem; font-weight: 600; color: var(--navy); line-height: 1.3; }

/* Filter button group wrapper */
.filter-btns {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  align-items: center;
}

/* Mobile dropdown */
.filter-select-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.filter-select-wrap .bi-funnel {
  position: absolute;
  left: .85rem;
  color: var(--gold);
  font-size: .88rem;
  pointer-events: none;
}
.filter-select-wrap .bi-chevron-down {
  position: absolute;
  right: .85rem;
  color: var(--text-muted);
  font-size: .78rem;
  pointer-events: none;
}
.filter-select {
  appearance: none;
  -webkit-appearance: none;
  border: 1.5px solid rgba(0, 28, 84, .14);
  border-radius: 50px;
  padding: .45rem 2.2rem .45rem 2.2rem;
  font-size: .78rem;
  font-family: var(--fd), sans-serif;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-mid);
  background: var(--offwhite);
  cursor: pointer;
  outline: none;
  transition: border-color var(--ease), box-shadow var(--ease);
  min-width: 160px;
}
.filter-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(249, 134, 0, .1);
}

/* Mobile layout adjustments */
@media (max-width: 767px) {
  .filter-bar {
    flex-direction: row;
    flex-wrap: wrap;
    gap: .6rem;
  }
  .filter-label { width: auto; }
  .filter-select-wrap { flex: 1; }
  .filter-select { width: 100%; }
  .filter-search { margin-left: 0; width: 100%; }
  .filter-search input { width: 100%; }
}

/* ═══════════════════════════════════════════
   GALLERY PAGE — gallery.css
   Prefix: pg-
   Extends the site's existing CSS. No overrides.
═══════════════════════════════════════════ */

/* ── Hero ──────────────────────────────── */
.pg-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}

.pg-hero-bg {
  position: absolute;
  inset: 0;
}

.pg-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  animation: pg-hzoom 20s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes pg-hzoom {
  from { transform: scale(1); }
  to   { transform: scale(1.08); }
}

.pg-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg,
      rgba(0, 28, 84, .92) 0%,
      rgba(0, 137, 198, .50) 55%,
      rgba(0, 28, 84, .90) 100%);
  z-index: 1;
}

.pg-hero-accent {
  position: absolute;
  top: 0; right: 0;
  width: 42%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(249,134,0,.07));
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
  z-index: 2;
  pointer-events: none;
}

.pg-hero-line {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent 60%);
  z-index: 3;
}

/* Animated floating orbs */
.pg-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
}
.pg-orb-1 {
  width: 340px; height: 340px;
  top: -80px; right: 8%;
  background: radial-gradient(circle, rgba(249,134,0,.12) 0%, transparent 70%);
  animation: pg-float 8s ease-in-out infinite;
}
.pg-orb-2 {
  width: 220px; height: 220px;
  bottom: 5%; left: 12%;
  background: radial-gradient(circle, rgba(0,137,198,.15) 0%, transparent 70%);
  animation: pg-float 11s ease-in-out infinite reverse;
}
.pg-orb-3 {
  width: 160px; height: 160px;
  top: 20%; left: 38%;
  background: radial-gradient(circle, rgba(249,134,0,.08) 0%, transparent 70%);
  animation: pg-float 14s ease-in-out infinite 2s;
}

@keyframes pg-float {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-28px) scale(1.04); }
}

/* Dot-matrix decoration */
.pg-dots {
  position: absolute;
  pointer-events: none;
  z-index: 2;
}
.pg-dots-tl {
  top: 8%; left: 3%;
  width: 180px; height: 180px;
  background-image: radial-gradient(circle, rgba(255,255,255,.07) 1.5px, transparent 1.5px);
  background-size: 22px 22px;
}
.pg-dots-br {
  bottom: 8%; right: 3%;
  width: 140px; height: 140px;
  background-image: radial-gradient(circle, rgba(249,134,0,.18) 1.5px, transparent 1.5px);
  background-size: 20px 20px;
}

.pg-hero-content {
  position: relative;
  z-index: 4;
}

/* Eyebrow */
.pg-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
  opacity: 0;
  animation: pg-fup .7s .2s forwards;
}
.pg-eyebrow-line {
  width: 28px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  flex-shrink: 0;
}
.pg-eyebrow-text {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-lt);
}

.pg-hero-title {
  font-size: clamp(2.8rem, 8vw, 6.5rem);
  font-weight: 600;
  line-height: .95;
  color: #fff;
  margin-bottom: .5rem;
  opacity: 0;
  animation: pg-fup .7s .4s forwards;
}
.pg-hero-title span { color: var(--gold); }

.pg-hero-sub {
  font-size: clamp(.95rem, 2vw, 1.2rem);
  font-weight: 400;
  color: rgba(255,255,255,.60);
  letter-spacing: 1.5px;
  max-width: 620px;
  line-height: 1.6;
  margin-top: .8rem;
  opacity: 0;
  animation: pg-fup .7s .6s forwards;
}

@keyframes pg-fup {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: none; }
}

/* ── Intro ──────────────────────────────── */
.pg-intro {
  background: var(--offwhite);
  padding: 3.5rem 0 2.5rem;
  border-bottom: 1px solid rgba(0,137,198,.12);
}

.pg-intro-inner {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.pg-intro-label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .6rem;
}

.pg-intro-heading {
  font-size: clamp(1.6rem, 3.5vw, 2.3rem);
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.1;
  margin-bottom: .9rem;
}
.pg-intro-heading span { color: var(--gold); }

.pg-intro-p {
  font-size: .97rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin: 0;
}

/* ── Year Navigation ────────────────────── */
.pg-year-nav {
  background: var(--offwhite);
  padding: 2.5rem 0 0;
}

.pg-year-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.pg-year-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 160px;
  padding: 1.6rem 1rem;
  background: var(--white);
  border: 1.5px solid rgba(0,137,198,.15);
  border-radius: 12px;
  cursor: pointer;
  overflow: hidden;
  transition: border-color .3s ease, transform .3s ease, box-shadow .3s ease;
  user-select: none;
}

.pg-year-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--blue-grad);
  opacity: 0;
  transition: opacity .35s ease;
  z-index: 0;
}

.pg-year-card:hover,
.pg-year-card.active {
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(249,134,0,.18);
}

.pg-year-card.active::before { opacity: 1; }

.pg-year-icon {
  position: relative;
  z-index: 1;
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: .5rem;
  transition: color .3s ease;
}

.pg-year-num {
  position: relative;
  z-index: 1;
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1;
  transition: color .3s ease;
}

.pg-year-count {
  position: relative;
  z-index: 1;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: .35rem;
  transition: color .3s ease;
}

.pg-year-card.active .pg-year-num,
.pg-year-card.active .pg-year-count,
.pg-year-card.active .pg-year-icon {
  color: #fff;
}

/* Active indicator bar */
.pg-year-card.active::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--gold);
  z-index: 2;
}

/* ── Year Group Panels ──────────────────── */
.pg-gallery-section {
  background: var(--offwhite);
  padding: 3rem 0 5rem;
}

.pg-year-panel {
  display: none;
  animation: pg-panel-in .5s ease forwards;
}
.pg-year-panel.active { display: block; }

@keyframes pg-panel-in {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: none; }
}

/* Year heading inside panel */
.pg-panel-heading {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2rem 0 2rem;
}
.pg-panel-year-badge {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--navy);
  background: linear-gradient(135deg, rgba(249,134,0,.12), rgba(249,134,0,.06));
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: .35rem 1.1rem;
  white-space: nowrap;
}
.pg-panel-line {
  flex: 1;
  height: 1.5px;
  background: linear-gradient(90deg, var(--border), transparent);
}
.pg-panel-count {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}

/* ── Album Grid ─────────────────────────── */
.pg-album-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

/* ── Album Card ─────────────────────────── */
.pg-album-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 4px 22px rgba(0,28,84,.08);
  border: 1px solid rgba(0,137,198,.10);
  cursor: pointer;
  transition: transform .38s cubic-bezier(.25,.8,.25,1), box-shadow .38s ease, border-color .3s ease;
  display: flex;
  flex-direction: column;
}

.pg-album-card:hover {
  transform: translateY(-8px) scale(1.015);
  box-shadow: 0 24px 60px rgba(0,28,84,.16), 0 0 0 1.5px var(--gold);
  border-color: var(--gold);
}

/* Image container */
.pg-album-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 5/3;
}

.pg-album-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .55s cubic-bezier(.25,.8,.25,1), filter .4s ease;
  filter: brightness(.92);
}

.pg-album-card:hover .pg-album-img-wrap img {
  transform: scale(1.10);
  filter: brightness(1);
}

/* Gradient overlay on image */
.pg-album-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(0,28,84,.82) 0%,
    rgba(0,28,84,.30) 45%,
    transparent 70%
  );
  z-index: 1;
  transition: background .35s ease;
}
.pg-album-card:hover .pg-album-img-overlay {
  background: linear-gradient(
    0deg,
    rgba(0,28,84,.88) 0%,
    rgba(0,28,84,.45) 50%,
    rgba(249,134,0,.08) 100%
  );
}

/* Category badge on image */
.pg-album-badge {
  position: absolute;
  top: .85rem;
  left: .85rem;
  z-index: 2;
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--navy);
  border-radius: 4px;
  padding: .22rem .65rem;
  backdrop-filter: blur(6px);
}

/* Photo count chip */
.pg-album-count {
  position: absolute;
  top: .85rem;
  right: .85rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(0,28,84,.70);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 20px;
  padding: .2rem .65rem;
  font-size: .68rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: .5px;
}
.pg-album-count i { color: var(--gold); font-size: .7rem; }

/* Hover animated arrow on image */
.pg-album-view-hint {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  z-index: 2;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: .95rem;
  opacity: 0;
  transform: translateY(8px) scale(.8);
  transition: opacity .3s ease, transform .3s ease;
}
.pg-album-card:hover .pg-album-view-hint {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Card text body */
.pg-album-body {
  padding: 1.15rem 1.25rem 1.3rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.pg-album-date {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .4rem;
  display: flex;
  align-items: center;
  gap: 5px;
}
.pg-album-date i { font-size: .7rem; }

.pg-album-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.3;
  margin-bottom: .45rem;
  transition: color .25s ease;
}
.pg-album-card:hover .pg-album-name { color: var(--navy); }

.pg-album-desc {
  font-size: .82rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0 0 1rem;
  flex: 1;
}

.pg-album-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: .8rem;
  border-top: 1px solid rgba(0,137,198,.1);
}

.pg-album-cta {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  transition: gap .25s ease;
}
.pg-album-card:hover .pg-album-cta { gap: 10px; }

.pg-album-type-chip {
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: .22rem .65rem;
  border-radius: 20px;
  background: rgba(0,137,198,.08);
  color: var(--deep);
  border: 1px solid rgba(0,137,198,.15);
}

/* ── Scroll Reveal ──────────────────────── */
.pg-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.pg-reveal.pg-visible {
  opacity: 1;
  transform: none;
}

/* ── Lightbox ────────────────────────────── */
/* GLightbox custom skin to match brand */
.glightbox-clean .gslide-description {
  background: rgba(0,28,84,.92) !important;
}
.glightbox-clean .gslide-title {
  font-family: var(--fd), sans-serif !important;
  font-size: .95rem !important;
  font-weight: 600 !important;
  color: #fff !important;
}
.glightbox-clean .gslide-desc {
  font-family: var(--fd), sans-serif !important;
  font-size: .8rem !important;
  color: rgba(255,255,255,.6) !important;
}
.glightbox-clean .gnext,
.glightbox-clean .gprev {
  background: var(--gold) !important;
  border-radius: 50% !important;
}
.glightbox-clean .gclose {
  background: rgba(0,28,84,.8) !important;
  border-radius: 50% !important;
}
.glightbox-open { overflow: hidden; }

/* ── Empty State ────────────────────────── */
.pg-empty {
  text-align: center;
  padding: 4rem 1rem;
  color: var(--text-muted);
}
.pg-empty i {
  font-size: 3rem;
  color: rgba(0,137,198,.25);
  margin-bottom: 1rem;
  display: block;
}

/* ── Responsive ─────────────────────────── */
@media (max-width: 1199px) {
  .pg-album-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 991px) {
  .pg-album-grid { grid-template-columns: repeat(2, 1fr); }
  .pg-hero { min-height: 56vh; }
}

@media (max-width: 767px) {
  .pg-hero { min-height: 52vh; }
  .pg-hero-title { line-height: 1; }
  .pg-album-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .pg-year-card { width: 130px; padding: 1.2rem .8rem; }
  .pg-year-num { font-size: 1.6rem; }
  .pg-orb-1, .pg-orb-2, .pg-orb-3 { display: none; }
}

@media (max-width: 480px) {
  .pg-year-grid { gap: 10px; }
  .pg-album-body { padding: 1rem 1rem 1.1rem; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .pg-hero-bg img,
  .pg-orb { animation: none !important; }
  .pg-reveal { transition: none !important; opacity: 1 !important; transform: none !important; }
  .pg-year-panel { animation: none !important; }
}
