:root {
  --brand-start: #f97316;
  --brand-end: #ec4899;
  --accent-purple: #8b5cf6;
  --dark: #f8fafc;
  --dark-2: #020617;
  --text: #e2e8f0;
  --muted: #94a3b8;
  --line: rgba(148, 163, 184, .18);
  --soft-bg: #020617;
  --white: #ffffff;
}

@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto/roboto-regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto/roboto-bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto/roboto-black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background: var(--soft-bg);
  font-family: Roboto, Arial, sans-serif;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
h1, h2, h3, p, a, span, small, strong, article { overflow-wrap: anywhere; }

.top-bar {
  background: #020617;
  color: var(--white);
  font-size: 14px;
}

.top-bar-inner {
  max-width: 1280px;
  min-height: 42px;
  margin: 0 auto;
  padding: 8px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.top-bar span { color: #e2e8f0; }

.announcement-strip {
  height: 42px;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(135deg, var(--brand-start), var(--brand-end), var(--accent-purple));
}

.ticker-track {
  width: max-content;
  min-width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 38px;
  padding-inline: 24px;
  animation: ticker 28s linear infinite;
}

.ticker-track span {
  white-space: nowrap;
  font-size: 14px;
  font-weight: 700;
}

.ticker-track span::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.78);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(2, 6, 23, .94);
  border-bottom: 1px solid rgba(148, 163, 184, .16);
  box-shadow: 0 12px 32px rgba(15, 23, 42, .08);
  backdrop-filter: blur(14px);
}

.nav-inner {
  max-width: 1280px;
  min-height: 76px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-brand {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  padding: 4px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--brand-start), var(--brand-end), var(--accent-purple));
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

.site-brand strong {
  display: block;
  max-width: 360px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--dark);
  font-size: 20px;
  font-weight: 900;
}

.site-brand small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.site-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #475569;
  font-weight: 700;
}

.site-links a { transition: color .2s ease, transform .2s ease; }
.site-links a:hover {
  color: var(--brand-end);
  transform: translateY(-1px);
}

.nav-portal,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 900;
}

.nav-portal {
  min-height: 42px;
  padding: 0 18px;
  color: var(--white) !important;
  background: linear-gradient(135deg, var(--brand-start), var(--brand-end), var(--accent-purple));
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #111827;
  padding: 9px 10px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 6px 0;
  border-radius: 2px;
  background: var(--dark);
}

.hero {
  position: relative;
  min-height: clamp(520px, 78vh, 760px);
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  text-align: center;
}

.hero-slider,
.hero-slider img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 1s ease, transform 6s ease;
}

.hero-slider img.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  z-index: 1;
  background:
    linear-gradient(135deg, rgba(15,23,42,.78), rgba(15,23,42,.46)),
    radial-gradient(circle at 20% 20%, rgba(249,115,22,.34), transparent 36%),
    radial-gradient(circle at 80% 30%, rgba(236,72,153,.26), transparent 34%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(860px, 100%);
  padding: 72px 24px;
}

.hero-eyebrow,
.section-heading span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--brand-start), var(--brand-end), var(--accent-purple));
  font-size: 13px;
  font-weight: 900;
}

.hero h1 {
  margin: 18px 0 0;
  font-size: clamp(36px, 6vw, 72px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
  text-shadow: 0 18px 48px rgba(0,0,0,.36);
}

.hero p {
  max-width: 740px;
  margin: 20px auto 0;
  color: #e2e8f0;
  font-size: 20px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 30px;
}

.hero-actions.centered { justify-content: center; }

.primary-button,
.secondary-button {
  min-height: 52px;
  padding: 0 26px;
  transition: transform .2s ease, box-shadow .2s ease;
}

.primary-button {
  color: var(--white);
  background: linear-gradient(135deg, var(--brand-start), var(--brand-end), var(--accent-purple));
  box-shadow: 0 16px 34px rgba(236, 72, 153, .25);
}

.secondary-button {
  border: 1px solid rgba(255,255,255,.42);
  color: var(--white);
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
}

.primary-button:hover,
.secondary-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(15, 23, 42, .22);
}

.primary-button.compact {
  min-height: 42px;
  padding: 0 18px;
  font-size: 14px;
}

.section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 86px 24px;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading h2,
.admissions-panel h2 {
  margin: 16px 0 0;
  color: var(--dark);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.06;
  font-weight: 900;
  letter-spacing: 0;
}

.section-heading p,
.admissions-panel > p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.65;
}

.value-grid,
.program-grid,
.step-grid {
  display: grid;
  gap: 22px;
}

.value-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.value-card {
  min-height: 230px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(15, 23, 42, .98), rgba(30, 41, 59, .92));
  box-shadow: 0 18px 45px rgba(15, 23, 42, .08);
}

.value-icon,
.admissions-mark,
.step-grid span,
.footer-brand span,
.social-links a {
  display: grid;
  place-items: center;
  color: var(--white);
  font-weight: 900;
  background: linear-gradient(135deg, var(--brand-start), var(--brand-end), var(--accent-purple));
}

.value-icon {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  font-size: 20px;
}

.value-card h3,
.program-card h3 {
  margin: 20px 0 10px;
  color: var(--dark);
  font-size: 24px;
  font-weight: 900;
}

.value-card p,
.program-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.programs-section {
  max-width: none;
  background: #020617;
}

.programs-section > * {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.program-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.program-card {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--dark);
  box-shadow: 0 24px 60px rgba(15, 23, 42, .16);
}

.program-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.program-card:hover img { transform: scale(1.05); }

.program-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,23,42,.94), rgba(15,23,42,.58), rgba(15,23,42,.16));
}

.program-card > div {
  position: relative;
  z-index: 1;
  min-height: 320px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.program-card h3 { color: var(--white); }
.program-card p { color: #dbeafe; }

.program-card a {
  width: fit-content;
  margin-top: 18px;
  color: #fed7aa;
  font-weight: 900;
}

.testimonials-section {
  max-width: 980px;
}

.testimonial-shell {
  position: relative;
  min-height: 470px;
}

.testimonial-card {
  position: absolute;
  inset: 0;
  overflow: hidden;
  padding: 30px;
  display: grid;
  justify-items: center;
  align-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(15, 23, 42, .98), rgba(30, 41, 59, .92));
  text-align: center;
  box-shadow: 0 18px 45px rgba(15, 23, 42, .08);
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
  transition: opacity .35s ease, transform .35s ease, box-shadow .35s ease;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 18%, rgba(249, 115, 22, .13), transparent 30%),
    linear-gradient(135deg, rgba(22, 163, 74, .08), transparent 38%);
  opacity: 0;
  transition: opacity .35s ease;
}

.testimonial-card.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.testimonial-card.is-active:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(15, 23, 42, .12);
}

.testimonial-card.is-active:hover::before { opacity: 1; }

.testimonial-card img {
  position: relative;
  width: 100%;
  max-width: 760px;
  height: clamp(240px, 40vw, 330px);
  object-fit: contain;
  padding: 10px;
  background: rgba(2, 6, 23, .42);
  border: 1px solid rgba(249, 115, 22, .24);
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, .14);
  transition: transform .4s ease;
}

.testimonial-card.is-active:hover img { transform: scale(1.025); }

.testimonial-card p {
  position: relative;
  max-width: 640px;
  margin: 18px 0 12px;
  color: var(--text);
  font-size: 22px;
  line-height: 1.55;
  font-weight: 700;
}

.testimonial-card strong {
  position: relative;
  color: var(--dark);
  font-size: 18px;
}

.testimonial-card small {
  position: relative;
  margin-top: 6px;
  color: var(--muted);
}

.news-section {
  max-width: none;
  background: #07111f;
}

.news-section > * {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 360px), 1fr));
  gap: 22px;
  align-items: stretch;
}

.news-card {
  position: relative;
  min-width: 0;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(249, 115, 22, .18);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(15, 23, 42, .98), rgba(30, 41, 59, .92));
  box-shadow: 0 18px 45px rgba(15, 23, 42, .08);
  display: flex;
  flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.news-card:hover {
  transform: translateY(-6px);
  border-color: rgba(249, 115, 22, .34);
  box-shadow: 0 28px 65px rgba(15, 23, 42, .14);
}

.news-image {
  position: relative;
  height: clamp(320px, 32vw, 460px);
  background:
    radial-gradient(circle at 20% 18%, rgba(249, 115, 22, .18), transparent 34%),
    linear-gradient(135deg, #020617, #111827 48%, #07111f);
  overflow: hidden;
}

.news-image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, transparent 45%, rgba(15, 23, 42, .34));
  opacity: .7;
  transition: opacity .35s ease;
}

.news-image img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  opacity: 0;
  transform: scale(.985);
  transition: opacity .65s ease, transform .65s ease, filter .45s ease;
}

.news-image img.is-active {
  z-index: 1;
  opacity: 1;
  transform: scale(1);
}

.news-card:hover .news-image::after { opacity: .35; }
.news-card:hover .news-image img.is-active {
  filter: saturate(1.08) contrast(1.02);
  transform: scale(1.015);
}

.news-copy {
  padding: 22px;
  display: flex;
  flex: 1;
  flex-direction: column;
}

.news-copy span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--brand-end);
  background: rgba(236, 72, 153, .10);
  font-size: 12px;
  font-weight: 900;
}

.news-copy h3 {
  margin: 14px 0 10px;
  color: var(--dark);
  font-size: 22px;
  line-height: 1.2;
  font-weight: 900;
}

.news-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.news-copy small {
  display: block;
  margin-top: auto;
  padding-top: 16px;
  color: #94a3b8;
  font-weight: 700;
}

.empty-news {
  max-width: 720px;
  padding: 24px;
  border: 1px dashed rgba(249, 115, 22, .36);
  border-radius: 8px;
  background: rgba(15, 23, 42, .72);
  text-align: center;
}

.empty-news p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.sport-showcase {
  margin-top: 34px;
  display: grid;
  grid-template-columns: minmax(230px, .34fr) minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
}

.sport-heading {
  height: clamp(280px, 34vw, 420px);
  min-height: 0;
  padding: 28px;
  border: 1px solid rgba(249, 115, 22, .2);
  border-radius: 8px;
  background:
    radial-gradient(circle at 20% 20%, rgba(249, 115, 22, .18), transparent 34%),
    linear-gradient(160deg, rgba(15, 23, 42, .98), rgba(30, 41, 59, .94));
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sport-heading span {
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.sport-heading h2 {
  margin: 12px 0 10px;
  color: #fff;
  font-size: clamp(38px, 6vw, 72px);
  line-height: .9;
  font-weight: 950;
}

.sport-heading p {
  margin: 0;
  color: #cbd5e1;
  line-height: 1.65;
}

.sport-carousel {
  position: relative;
  height: clamp(280px, 34vw, 420px);
  min-height: 0;
  max-height: 420px;
  overflow: hidden;
  border: 1px solid rgba(249, 115, 22, .22);
  border-radius: 8px;
  background:
    radial-gradient(circle at 22% 18%, rgba(249, 115, 22, .18), transparent 32%),
    linear-gradient(135deg, #020617, #111827 45%, #07111f);
}

.sport-carousel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(2, 6, 23, .08) 0%, transparent 45%, rgba(2, 6, 23, .68));
  pointer-events: none;
}

.sport-carousel img {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  object-position: center 42%;
  opacity: 0;
  transform: scale(1);
  transition: opacity .7s ease, transform .7s ease;
}

.sport-carousel img.is-active {
  opacity: 1;
  transform: scale(1);
}

.sport-caption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sport-caption strong {
  color: #fff;
  font-size: 22px;
  font-weight: 950;
}

.sport-caption span {
  max-width: 620px;
  color: #e2e8f0;
  line-height: 1.5;
  font-weight: 700;
}

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

  .sport-heading,
  .sport-carousel {
    height: 280px;
    min-height: 0;
  }
}

.admissions-section {
  padding-top: 70px;
}

.admissions-panel {
  max-width: 940px;
  margin: 0 auto;
  padding: 44px;
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(15,23,42,.94), rgba(17,24,39,.88)),
    linear-gradient(135deg, var(--brand-start), var(--brand-end), var(--accent-purple));
  text-align: center;
  box-shadow: 0 28px 70px rgba(15, 23, 42, .22);
}

.admissions-panel h2 { color: var(--white); }
.admissions-panel > p { color: #dbeafe; }

.admissions-mark {
  width: 62px;
  height: 62px;
  margin: 0 auto;
  border-radius: 8px;
  font-size: 26px;
}

.step-grid {
  max-width: 720px;
  margin: 30px auto 0;
  text-align: left;
}

.step-grid article {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 15px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  color: #e2e8f0;
  line-height: 1.55;
}

.step-grid span {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  border-radius: 999px;
}

.site-footer {
  color: var(--white);
  background: var(--dark-2);
  padding: 56px 24px 28px;
}

.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 34px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
}

.footer-brand span {
  width: 42px;
  height: 42px;
  border-radius: 8px;
}

.site-footer h2 {
  margin: 0 0 16px;
  font-size: 16px;
}

.site-footer a,
.site-footer p {
  display: block;
  margin: 0 0 10px;
  color: #cbd5e1;
  font-size: 14px;
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  color: var(--white);
  text-transform: uppercase;
  font-size: 12px;
}

.copyright {
  max-width: 1280px;
  margin: 30px auto 0 !important;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.12);
  text-align: center;
  color: #94a3b8 !important;
}

.announcement-card {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 60;
  width: min(390px, calc(100vw - 32px));
  padding: 22px;
  border-radius: 8px;
  color: var(--white);
  background: rgba(17, 24, 39, .96);
  box-shadow: 0 22px 54px rgba(0,0,0,.26);
  transform: translateY(28px);
  opacity: 0;
  pointer-events: none;
  transition: .28s ease;
}

.announcement-card.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.announcement-card button {
  position: absolute;
  top: 12px;
  right: 14px;
  border: 0;
  color: #cbd5e1;
  background: transparent;
  font-size: 28px;
  cursor: pointer;
}

.announcement-card > span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand-start), var(--brand-end), var(--accent-purple));
  font-size: 12px;
  font-weight: 900;
}

.announcement-card h2 {
  margin: 14px 34px 8px 0;
  font-size: 22px;
}

.announcement-card p {
  color: #cbd5e1;
  line-height: 1.6;
}

.about-page {
  background:
    linear-gradient(180deg, #020617 0%, #0f172a 44%, #111827 100%);
}

.about-hero {
  max-width: 1280px;
  margin: 0 auto;
  padding: 82px 24px 70px;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(360px, 1.08fr);
  gap: 42px;
  align-items: center;
}

.about-hero-copy {
  min-width: 0;
}

.about-hero-copy h1 {
  margin: 18px 0 0;
  color: var(--dark);
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
}

.about-hero-copy p {
  max-width: 700px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.7;
}

.about-page .about-hero .hero-actions {
  justify-content: flex-start;
}

.secondary-button.dark {
  border-color: var(--line);
  color: var(--dark);
  background: #111827;
}

.about-hero-media {
  min-width: 0;
}

.about-hero-no-media {
  grid-template-columns: minmax(0, 900px);
}

.proprietor-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(249, 115, 22, .22);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .03)),
    linear-gradient(160deg, rgba(15, 23, 42, .98), rgba(17, 24, 39, .98));
  box-shadow: 0 26px 70px rgba(2, 6, 23, .34);
}

.proprietor-photo {
  position: relative;
  height: clamp(300px, 34vw, 430px);
  overflow: hidden;
  background: #0f172a;
}

.proprietor-photo img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center 38%;
}

.proprietor-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 52%, rgba(2, 6, 23, .78)),
    linear-gradient(90deg, rgba(2, 6, 23, .32), transparent 45%);
  pointer-events: none;
}

.proprietor-photo-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, .26);
  border-radius: 999px;
  color: #fff;
  background: rgba(15, 23, 42, .74);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.proprietor-copy {
  padding: 28px 30px 30px;
}

.proprietor-kicker {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--brand);
  background: rgba(249, 115, 22, .12);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.proprietor-copy h2 {
  max-width: 640px;
  margin: 16px 0 14px;
  color: #fff;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.05;
  font-weight: 950;
}

.proprietor-copy p {
  margin: 0;
  color: #cbd5e1;
  font-size: 16px;
  line-height: 1.7;
}

.proprietor-lede {
  max-width: 640px;
}

.proprietor-quote {
  margin-top: 20px;
  padding: 18px 18px 18px 20px;
  border-left: 4px solid var(--brand);
  border-radius: 0 8px 8px 0;
  background: rgba(255, 255, 255, .06);
}

.proprietor-quote p {
  color: #f8fafc;
  font-size: 17px;
  font-weight: 800;
}

.proprietor-pillars {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.proprietor-pillars span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(249, 115, 22, .28);
  border-radius: 999px;
  color: #fed7aa;
  background: rgba(249, 115, 22, .10);
  font-size: 13px;
  font-weight: 800;
}

.proprietor-signoff {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(148, 163, 184, .2);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.proprietor-signoff strong {
  color: #fff;
  font-size: 17px;
  font-weight: 950;
}

.proprietor-signoff small {
  color: #94a3b8;
  font-weight: 800;
}

.about-story-section,
.about-gallery-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 26px 24px 76px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .78fr);
  gap: 24px;
  align-items: stretch;
}

.about-story-card,
.about-principles,
.about-gallery-copy {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(15, 23, 42, .98), rgba(30, 41, 59, .92));
  box-shadow: 0 18px 45px rgba(15, 23, 42, .08);
}

.about-story-card,
.about-gallery-copy {
  padding: 34px;
}

.section-kicker {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--brand-end);
  background: rgba(236, 72, 153, .10);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.about-story-card h2,
.about-gallery-copy h2 {
  margin: 16px 0 0;
  color: var(--dark);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  font-weight: 900;
}

.about-story-card p,
.about-gallery-copy p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.about-principles {
  padding: 18px;
  display: grid;
  gap: 14px;
}

.about-principles article {
  padding: 20px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(249,115,22,.10), rgba(236,72,153,.08), rgba(139,92,246,.08));
}

.about-principles strong {
  display: block;
  color: var(--dark);
  font-size: 36px;
  line-height: 1;
  font-weight: 900;
}

.about-principles span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 800;
}

.about-values-section {
  padding-top: 70px;
  padding-bottom: 78px;
}

.about-gallery-section {
  grid-template-columns: .72fr minmax(0, 1.28fr);
  align-items: center;
}

.about-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.about-gallery-grid.single-gallery-image {
  grid-template-columns: minmax(0, 1fr);
}

.about-gallery-grid article {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(15, 23, 42, .98), rgba(30, 41, 59, .92));
  box-shadow: 0 18px 45px rgba(15, 23, 42, .08);
}

.about-gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.about-gallery-grid strong {
  display: block;
  padding: 14px;
  color: var(--dark);
  font-size: 15px;
  line-height: 1.35;
}

.programs-page {
  background:
    linear-gradient(180deg, #020617 0%, #0f172a 48%, #111827 100%);
}

.programs-hero {
  max-width: 1280px;
  margin: 0 auto;
  padding: 82px 24px 62px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .58fr);
  gap: 34px;
  align-items: center;
}

.programs-hero-copy h1 {
  margin: 18px 0 0;
  color: var(--dark);
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
}

.programs-hero-copy p {
  max-width: 760px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.7;
}

.programs-page .programs-hero .hero-actions {
  justify-content: flex-start;
}

.programs-hero-panel {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(15,23,42,.95), rgba(17,24,39,.9)),
    linear-gradient(135deg, var(--brand-start), var(--brand-end), var(--accent-purple));
  box-shadow: 0 22px 58px rgba(15, 23, 42, .18);
}

.programs-hero-panel strong {
  display: block;
  font-size: 28px;
  line-height: 1.18;
  font-weight: 900;
}

.programs-hero-panel p {
  margin: 14px 0 0;
  color: #dbeafe;
  line-height: 1.7;
}

.programs-hero-panel div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.programs-hero-panel span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: #f8fafc;
  font-size: 13px;
  font-weight: 900;
}

.programs-list-section,
.programs-method-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 54px 24px 78px;
}

.programs-list-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.program-detail-card {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(190px, .82fr) minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(15, 23, 42, .98), rgba(30, 41, 59, .92));
  box-shadow: 0 18px 45px rgba(15, 23, 42, .08);
}

.program-detail-image {
  min-height: 320px;
  background: #1e293b;
}

.program-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.program-detail-copy {
  padding: 26px;
  display: grid;
  align-content: center;
  gap: 12px;
}

.program-detail-copy .value-icon {
  margin-bottom: 4px;
}

.program-detail-copy h3 {
  margin: 0;
  color: var(--dark);
  font-size: 28px;
  line-height: 1.15;
  font-weight: 900;
}

.program-detail-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.program-link {
  width: fit-content;
  margin-top: 6px;
  color: var(--brand-end);
  font-weight: 900;
}

.programs-method-section {
  display: grid;
  grid-template-columns: .72fr minmax(0, 1.28fr);
  gap: 24px;
  align-items: start;
}

.programs-method-copy {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(15, 23, 42, .98), rgba(30, 41, 59, .92));
  box-shadow: 0 18px 45px rgba(15, 23, 42, .08);
}

.programs-method-copy h2 {
  margin: 16px 0 0;
  color: var(--dark);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  font-weight: 900;
}

.programs-method-copy p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.programs-method-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.programs-method-grid article {
  min-height: 260px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(15, 23, 42, .98), rgba(30, 41, 59, .92));
  box-shadow: 0 18px 45px rgba(15, 23, 42, .08);
}

.programs-method-grid span {
  color: var(--brand-end);
  font-size: 13px;
  font-weight: 900;
}

.programs-method-grid strong {
  display: block;
  margin-top: 16px;
  color: var(--dark);
  font-size: 22px;
  line-height: 1.2;
  font-weight: 900;
}

.programs-method-grid p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .55s ease, transform .55s ease;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1000px) {
  .menu-toggle { display: block; }

  .nav-inner {
    min-height: 76px;
    flex-wrap: wrap;
    padding-block: 14px;
  }

  .site-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding-top: 14px;
    border-top: 1px solid var(--line);
  }

  .site-links.is-open { display: flex; }
  .site-links a { padding: 12px 8px; }
  .nav-portal { width: fit-content; padding-inline: 18px !important; }
  .value-grid, .program-grid, .news-grid, .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-hero,
  .about-story-section,
  .about-gallery-section,
  .programs-hero,
  .programs-method-section {
    grid-template-columns: 1fr;
  }
  .about-hero-media { min-height: 430px; }
  .about-gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .programs-list-grid,
  .programs-method-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .top-bar-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .top-bar span { display: none; }
  .nav-inner { padding-inline: 16px; }
  .site-brand strong { max-width: 210px; font-size: 16px; }
  .site-brand small { max-width: 210px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .hero { min-height: 560px; }
  .hero-content { padding-inline: 16px; }
  .hero h1 { font-size: clamp(34px, 12vw, 52px); }
  .hero p, .section-heading p, .admissions-panel > p { font-size: 17px; }
  .section { padding: 64px 16px; }
  .value-grid, .program-grid, .news-grid, .footer-grid { grid-template-columns: 1fr; }
  .about-hero { padding: 58px 16px 48px; }
  .about-page .about-hero .hero-actions { justify-content: center; }
  .about-hero-copy { text-align: center; }
  .about-hero-copy p { font-size: 17px; }
  .about-hero-media {
    min-height: auto;
  }
  .proprietor-photo {
    height: 280px;
  }
  .proprietor-copy {
    padding: 20px;
    text-align: left;
  }
  .proprietor-copy h2 {
    font-size: 28px;
  }
  .about-story-section,
  .about-gallery-section {
    padding: 16px 16px 58px;
  }
  .about-story-card,
  .about-gallery-copy {
    padding: 24px;
  }
  .about-gallery-grid { grid-template-columns: 1fr; }
  .about-gallery-grid img { height: 230px; }
  .programs-hero {
    padding: 58px 16px 42px;
    text-align: center;
  }
  .programs-page .programs-hero .hero-actions { justify-content: center; }
  .programs-hero-copy p { font-size: 17px; }
  .programs-hero-panel { padding: 24px; text-align: left; }
  .programs-list-section,
  .programs-method-section {
    padding: 46px 16px 58px;
  }
  .program-detail-card {
    grid-template-columns: 1fr;
  }
  .program-detail-image { min-height: 230px; }
  .program-detail-copy { padding: 22px; }
  .programs-method-copy { padding: 24px; }
  .programs-method-grid article { min-height: auto; }
  .program-card, .program-card > div { min-height: 320px; }
  .testimonial-shell { min-height: 430px; }
  .testimonial-card { padding: 20px; }
  .testimonial-card img { height: 230px; padding: 8px; }
  .testimonial-card p { font-size: 19px; }
  .admissions-panel { padding: 30px 20px; }
  .announcement-card { left: 16px; right: 16px; bottom: 16px; }
}
