/* =============================================
   Al-Sabereen School — Vanilla Site Styles
   Faithful reproduction of the existing website
   ============================================= */

/* ---------- FONTS ---------- */
@import url('https://fonts.googleapis.com/css2?family=Readex+Pro:wght@200;300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* ---------- CSS VARIABLES ---------- */
:root {
  /* Colors from the existing WP theme (Jaxon / TI) */
  --bg: #161616;
  --bg-alt: rgba(255, 255, 255, 0.08);
  --bg-inv: #111111;
  --fg: #F4F4F4;
  --fg-alt: #FBFBFB;
  --accent: #F94E41;
  --accent-hover: #e0433a;
  --white: #ffffff;
  --black: #000000;
  --border: rgba(255, 255, 255, 0.12);
  --overlay: rgba(0, 0, 0, 0.65);

  /* Spacing */
  --sp-xs: 0.44rem;
  --sp-sm: 0.67rem;
  --sp-md: 1rem;
  --sp-lg: 1.5rem;
  --sp-xl: 2.25rem;
  --sp-2xl: 3.38rem;
  --sp-3xl: 5.06rem;

  /* Typography */
  --font-body: 'Readex Pro', 'Inter', sans-serif;
  --fs-sm: 14px;
  --fs-base: 16px;
  --fs-md: 18px;
  --fs-lg: 24px;
  --fs-xl: 28px;
  --fs-2xl: 32px;
  --fs-3xl: 42px;
  --fs-4xl: 56px;

  /* Layout */
  --max-w: 1200px;
  --max-w-narrow: 800px;
  --header-h: 72px;
  --radius: 8px;
  --radius-lg: 16px;

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --duration: 0.3s;
}

/* ---------- RESET ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.7;
  color: var(--fg);
  background-color: var(--bg);
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--duration) var(--ease);
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
  color: var(--fg);
}

h1 { font-size: var(--fs-4xl); }
h2 { font-size: var(--fs-2xl); }
h3 { font-size: var(--fs-xl); }
h4 { font-size: var(--fs-lg); }

p {
  margin-bottom: 1rem;
}

/* ---------- UTILITIES ---------- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-lg);
}

.container--narrow {
  max-width: var(--max-w-narrow);
  margin: 0 auto;
  padding: 0 var(--sp-lg);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 100;
  background: var(--accent);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  font-size: var(--fs-sm);
  font-weight: 500;
  transform: translateY(-200%);
  transition: transform var(--duration) var(--ease);
}

.skip-link:focus {
  transform: translateY(0);
}

.section {
  padding: var(--sp-3xl) 0;
}

.section--dark {
  background-color: var(--bg-inv);
}

.section--alt {
  background-color: var(--bg-alt);
}

.text-center {
  text-align: center;
}

.text-accent {
  color: var(--accent);
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-family: var(--font-body);
  font-size: var(--fs-base);
  font-weight: 500;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all var(--duration) var(--ease);
  text-decoration: none;
  line-height: 1.4;
}

.btn--primary {
  background: var(--accent);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(249, 78, 65, 0.35);
}

.btn--secondary {
  background: transparent;
  color: var(--fg);
  border: 1.5px solid var(--border);
}

.btn--secondary:hover {
  border-color: var(--fg);
  background: rgba(255, 255, 255, 0.05);
}

.btn--white {
  background: var(--white);
  color: var(--black);
}

.btn--white:hover {
  background: #eee;
  transform: translateY(-1px);
}

.btn--sm {
  padding: 0.5rem 1.25rem;
  font-size: var(--fs-sm);
}

/* ---------- ANNOUNCEMENT BAR ---------- */
.announcement-bar {
  background: var(--accent);
  color: var(--white);
  text-align: center;
  padding: 0.625rem var(--sp-lg);
  font-size: var(--fs-sm);
  font-weight: 500;
  position: relative;
  z-index: 50;
}

.announcement-bar a {
  color: var(--white);
  text-decoration: underline;
  font-weight: 600;
  margin-left: 0.5rem;
}

.announcement-bar a:hover {
  opacity: 0.85;
}

.announcement-close {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
  opacity: 0.7;
  transition: opacity var(--duration);
}

.announcement-close:hover {
  opacity: 1;
}

/* ---------- HEADER ---------- */
.header {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 2rem;
}

.header__logo {
  font-size: var(--fs-md);
  font-weight: 700;
  color: var(--fg);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.header__logo:hover {
  color: var(--accent);
}

/* Desktop Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav__item {
  position: relative;
}

.nav__link {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 0.875rem;
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--fg);
  opacity: 0.85;
  transition: opacity var(--duration);
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-body);
}

.nav__link:hover,
.nav__link--active {
  opacity: 1;
  color: var(--accent);
}

.nav__chevron {
  width: 12px;
  height: 12px;
  transition: transform var(--duration);
}

.nav__item:hover .nav__chevron,
.nav__item--open .nav__chevron {
  transform: rotate(180deg);
}

/* Dropdown */
.nav__dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 260px;
  background: #1e1e1e;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 0.75rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s var(--ease);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.nav__item:hover .nav__dropdown,
.nav__item--open .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav__dropdown-item {
  display: block;
  padding: 0.625rem 0.875rem;
  border-radius: var(--radius);
  transition: background var(--duration);
}

.nav__dropdown-item:hover {
  background: rgba(255,255,255,0.06);
}

.nav__dropdown-title {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--fg);
}

.nav__dropdown-desc {
  font-size: 12px;
  color: rgba(244,244,244,0.55);
  margin-top: 2px;
}

/* Header Actions */
.header__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Mobile menu toggle */
.header__hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--fg);
  cursor: pointer;
  padding: 0.5rem;
}

.header__hamburger svg {
  width: 24px;
  height: 24px;
}

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--bg);
  transform: translateX(100%);
  transition: transform 0.35s var(--ease);
  overflow-y: auto;
  padding: 1.5rem;
}

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

.mobile-nav__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.mobile-nav__close {
  background: none;
  border: none;
  color: var(--fg);
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-nav__close svg {
  width: 24px;
  height: 24px;
}

.mobile-nav__link {
  display: block;
  padding: 0.75rem 0;
  font-size: var(--fs-md);
  font-weight: 500;
  border-bottom: 1px solid var(--border);
}

.mobile-nav__sub-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.75rem 0;
  font-size: var(--fs-md);
  font-weight: 500;
  border-bottom: 1px solid var(--border);
  background: none;
  border-left: none;
  border-right: none;
  border-top: none;
  color: var(--fg);
  cursor: pointer;
  font-family: var(--font-body);
}

.mobile-nav__sub {
  display: none;
  padding-left: 1rem;
}

.mobile-nav__sub--open {
  display: block;
}

.mobile-nav__sub-link {
  display: block;
  padding: 0.5rem 0;
  font-size: var(--fs-base);
  opacity: 0.8;
}

.mobile-nav__cta {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* ---------- HERO SECTION ---------- */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg-inv);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(17,17,17,0.9) 0%, rgba(17,17,17,0.4) 100%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 6rem 0;
}

.hero__eyebrow {
  display: inline-block;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.hero__title {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.hero__subtitle {
  font-size: var(--fs-md);
  line-height: 1.7;
  color: rgba(244,244,244,0.8);
  margin-bottom: 2rem;
  max-width: 560px;
}

.hero__cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ---------- WELCOME SECTION ---------- */
.welcome {
  padding: var(--sp-3xl) 0;
}

.welcome__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.welcome__eyebrow {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.welcome__heading {
  font-size: var(--fs-2xl);
  margin-bottom: 1.25rem;
}

.welcome__body {
  color: rgba(244,244,244,0.75);
  line-height: 1.8;
  margin-bottom: 2rem;
  white-space: pre-line;
}

.welcome__stats {
  display: flex;
  gap: 2.5rem;
}

.welcome__stat-value {
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--accent);
}

.welcome__stat-label {
  font-size: var(--fs-sm);
  color: rgba(244,244,244,0.6);
}

.welcome__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}

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

/* ---------- PILLARS SECTION ---------- */
.pillars {
  background: var(--bg-inv);
  padding: var(--sp-3xl) 0;
}

.pillars__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.pillars__eyebrow {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.pillars__heading {
  font-size: var(--fs-2xl);
  margin-bottom: 1rem;
}

.pillars__intro {
  color: rgba(244,244,244,0.7);
}

.pillars__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.pillar-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  transition: all var(--duration) var(--ease);
}

.pillar-card:hover {
  border-color: var(--accent);
  background: rgba(249, 78, 65, 0.05);
  transform: translateY(-4px);
}

.pillar-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(249, 78, 65, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--accent);
  font-size: 1.25rem;
}

.pillar-card__title {
  font-size: var(--fs-md);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.pillar-card__desc {
  font-size: var(--fs-sm);
  color: rgba(244,244,244,0.65);
  line-height: 1.6;
}

/* ---------- PROGRAMS SECTION ---------- */
.programs {
  padding: var(--sp-3xl) 0;
}

.programs__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.programs__eyebrow {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.programs__heading {
  font-size: var(--fs-2xl);
  margin-bottom: 1rem;
}

.programs__intro {
  color: rgba(244,244,244,0.7);
}

.programs__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.program-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--duration) var(--ease);
}

.program-card:hover {
  border-color: rgba(249, 78, 65, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.program-card__image {
  height: 200px;
  overflow: hidden;
}

.program-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

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

.program-card__body {
  padding: 1.5rem;
}

.program-card__title {
  font-size: var(--fs-md);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.program-card__desc {
  font-size: var(--fs-sm);
  color: rgba(244,244,244,0.65);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.program-card__link {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}

.program-card__link:hover {
  text-decoration: underline;
}

/* ---------- ENROLLMENT SECTION ---------- */
.enrollment {
  background: var(--bg-inv);
  padding: var(--sp-3xl) 0;
}

.enrollment__header {
  max-width: 600px;
  margin-bottom: 3rem;
}

.enrollment__eyebrow {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.enrollment__heading {
  font-size: var(--fs-2xl);
  margin-bottom: 1rem;
}

.enrollment__body {
  color: rgba(244,244,244,0.7);
}

.enrollment__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.enrollment__step {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  position: relative;
}

.enrollment__step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  font-size: var(--fs-sm);
  font-weight: 700;
  margin-bottom: 1rem;
}

.enrollment__step-title {
  font-size: var(--fs-md);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.enrollment__step-desc {
  font-size: var(--fs-sm);
  color: rgba(244,244,244,0.65);
  line-height: 1.6;
}

/* ---------- FAQ SECTION ---------- */
.faq {
  padding: var(--sp-3xl) 0;
}

.faq__heading {
  font-size: var(--fs-2xl);
  text-align: center;
  margin-bottom: 3rem;
}

.faq__list {
  max-width: 800px;
  margin: 0 auto;
}

.faq__item {
  border-bottom: 1px solid var(--border);
}

.faq__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1.25rem 0;
  background: none;
  border: none;
  color: var(--fg);
  font-family: var(--font-body);
  font-size: var(--fs-md);
  font-weight: 500;
  cursor: pointer;
  text-align: left;
  gap: 1rem;
}

.faq__question:hover {
  color: var(--accent);
}

.faq__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform var(--duration);
  color: var(--accent);
}

.faq__item--open .faq__icon {
  transform: rotate(45deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.4s var(--ease);
}

.faq__item--open .faq__answer {
  max-height: 500px;
  padding-bottom: 1.25rem;
}

.faq__answer p {
  font-size: var(--fs-base);
  color: rgba(244,244,244,0.7);
  line-height: 1.7;
}

/* ---------- CTA SECTION ---------- */
.cta-section {
  background: linear-gradient(135deg, var(--accent) 0%, #d92d0b 100%);
  padding: var(--sp-3xl) 0;
  text-align: center;
}

.cta-section__heading {
  font-size: var(--fs-2xl);
  color: var(--white);
  max-width: 600px;
  margin: 0 auto 1rem;
}

.cta-section__body {
  color: rgba(255,255,255,0.85);
  max-width: 560px;
  margin: 0 auto 2rem;
}

.cta-section__buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--bg-inv);
  padding: 4rem 0 1.5rem;
  border-top: 1px solid var(--border);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer__brand h3 {
  font-size: var(--fs-lg);
  margin-bottom: 1rem;
}

.footer__brand p {
  font-size: var(--fs-sm);
  color: rgba(244,244,244,0.6);
  line-height: 1.6;
}

.footer__contact {
  margin-top: 1rem;
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: var(--fs-sm);
  color: rgba(244,244,244,0.7);
  margin-bottom: 0.5rem;
}

.footer__contact-item strong {
  color: var(--fg);
}

.footer__col-title {
  font-size: var(--fs-base);
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.footer__link {
  display: block;
  font-size: var(--fs-sm);
  color: rgba(244,244,244,0.6);
  padding: 0.25rem 0;
  transition: color var(--duration);
}

.footer__link:hover {
  color: var(--accent);
}

.footer__social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  color: var(--fg-alt);
  transition: all var(--duration);
}

.footer__social a:hover {
  background: var(--accent);
  color: var(--white);
}

.footer__social svg {
  width: 20px;
  height: 20px;
}

.footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__copy {
  font-size: 13px;
  color: rgba(244,244,244,0.45);
}

.footer__legal {
  display: flex;
  gap: 1.5rem;
}

.footer__legal a {
  font-size: 13px;
  color: rgba(244,244,244,0.45);
}

.footer__legal a:hover {
  color: var(--accent);
}

/* ---------- GENERIC PAGE ---------- */
.page-hero {
  position: relative;
  padding: 6rem 0 4rem;
  background: var(--bg-inv);
  overflow: hidden;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
}

.page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}

.page-hero__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.page-hero__title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.75rem;
}

.page-hero__subtitle {
  font-size: var(--fs-md);
  color: rgba(244,244,244,0.75);
}

.page-content {
  padding: var(--sp-3xl) 0;
}

.page-content__body {
  max-width: var(--max-w-narrow);
  margin: 0 auto;
  font-size: var(--fs-md);
  color: rgba(244,244,244,0.8);
  line-height: 1.85;
  white-space: pre-line;
}

.page-content__body strong {
  color: var(--fg);
  font-weight: 600;
}

.page-items {
  padding-bottom: var(--sp-3xl);
}

.page-items__heading {
  font-size: var(--fs-xl);
  text-align: center;
  margin-bottom: 2.5rem;
}

.page-items__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-lg);
}

.page-item-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: all var(--duration) var(--ease);
}

.page-item-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.page-item-card__title {
  font-size: var(--fs-md);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.page-item-card__desc {
  font-size: var(--fs-sm);
  color: rgba(244,244,244,0.65);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.page-item-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--accent);
}

.page-item-card__link:hover {
  text-decoration: underline;
}

/* ---------- REGISTRATION PAGE (legacy content) ---------- */
.registration-content {
  max-width: var(--max-w-narrow);
  margin: 0 auto;
  padding: 3rem var(--sp-lg);
}

.registration-content p {
  font-size: var(--fs-md);
  color: rgba(244,244,244,0.8);
  line-height: 1.85;
  margin-bottom: 1rem;
}

.registration-content a {
  color: var(--accent);
  text-decoration: underline;
}

.registration-content a:hover {
  opacity: 0.8;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .pillars__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  :root {
    --header-h: 64px;
  }

  .nav,
  .header__actions .btn {
    display: none;
  }

  .header__hamburger {
    display: flex;
  }

  .hero__content {
    padding: 4rem 0;
  }

  h1 { font-size: var(--fs-3xl); }
  h2 { font-size: var(--fs-xl); }

  .welcome__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .welcome__image {
    order: -1;
  }

  .welcome__stats {
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .pillars__grid {
    grid-template-columns: 1fr;
  }

  .programs__grid {
    grid-template-columns: 1fr;
  }

  .enrollment__steps {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero__cta {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .cta-section__buttons {
    flex-direction: column;
    align-items: center;
  }
}
