/* Asian Learning Center — ICT | TECH PRO
   Institutional blue from campus banners + ICT seal crimson + gold accent. */

:root {
  --ink: #0c1220;
  --ink-2: #142038;
  --deep: #0a2463; /* banner royal blue */
  --deep-2: #0b2f7a;
  --blue: #0b2f7a;
  --blue-mid: #1546a0;
  --blue-hi: #1e5fd0;
  --blue-soft: rgba(11, 47, 122, 0.08);
  --blue-stripe: #0d3a8f;
  --gold: #c9a227;
  --gold-hi: #e0b93a;
  --gold-soft: rgba(201, 162, 39, 0.14);
  --crimson: #b01020;
  --crimson-hi: #d4182c;
  --crimson-soft: rgba(176, 16, 32, 0.1);
  --laurel: #0c7a28;
  --laurel-soft: rgba(12, 122, 40, 0.12);
  --navy: #0a2463;
  --paper: #f6f7fa;
  --paper-2: #e8ecf4;
  --white: #ffffff;
  --surface: #ffffff;
  --muted: #5a6478;
  --line: rgba(11, 47, 122, 0.1);
  --line-strong: rgba(11, 47, 122, 0.18);
  --shadow: 0 18px 50px rgba(10, 36, 99, 0.1);
  --shadow-sm: 0 4px 16px rgba(10, 36, 99, 0.06);
  --radius: 6px;
  --radius-lg: 12px;
  --header-h: 84px;
  --font: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  --font-display: "Plus Jakarta Sans", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --max: 1120px;
  color-scheme: light;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Institutional blue stripe band under the viewport top (banner language) */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  z-index: 200;
  background: linear-gradient(
    90deg,
    var(--deep) 0%,
    var(--blue-mid) 35%,
    var(--gold) 50%,
    var(--blue-mid) 65%,
    var(--deep) 100%
  );
  pointer-events: none;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 1000;
  background: var(--crimson);
  color: #fff;
  padding: 0.65rem 1rem;
  border-radius: var(--radius);
  font-weight: 600;
}
.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.container-wide {
  width: min(100% - 2rem, 1280px);
  margin-inline: auto;
}

/* —— Header —— */
.site-header {
  position: sticky;
  top: 4px; /* clear fixed blue stripe */
  z-index: 100;
  height: var(--header-h);
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(11, 47, 122, 0.04);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.brand-mark {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: 50%;
  object-fit: contain;
  padding: 2px;
  background: var(--white);
  box-shadow:
    0 0 0 2px rgba(11, 47, 122, 0.12),
    0 2px 10px rgba(10, 36, 99, 0.12);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.12;
  min-width: 0;
  gap: 0.12rem;
}

.brand-name {
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 11.5rem;
  color: var(--ink);
}

.brand-name .full {
  display: none;
}
.brand-name .short {
  display: inline;
}

.brand-sub {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue-mid);
}

@media (min-width: 480px) {
  .brand-mark {
    width: 60px;
    height: 60px;
  }
  .brand-name {
    max-width: none;
    font-size: 1.05rem;
  }
  .brand-name .full {
    display: inline;
  }
  .brand-name .short {
    display: none;
  }
}

.nav {
  display: none;
  align-items: center;
  gap: 0.15rem;
}

.nav a {
  padding: 0.45rem 0.7rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
  border-radius: var(--radius);
  transition:
    color 0.2s var(--ease),
    background 0.2s var(--ease);
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--blue);
  background: var(--blue-soft);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.icon-btn {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius);
  cursor: pointer;
  color: var(--ink);
  transition:
    border-color 0.2s var(--ease),
    background 0.2s var(--ease);
}
.icon-btn:hover {
  border-color: var(--line-strong);
}
.icon-btn:focus-visible,
.btn:focus-visible,
.nav a:focus-visible,
.gallery-item:focus-visible,
.menu-toggle:focus-visible {
  outline: 2px solid var(--crimson);
  outline-offset: 2px;
}

.menu-toggle {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--ink);
  position: relative;
}
.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 1.5px;
  background: var(--ink);
}
.menu-toggle span::before {
  top: -6px;
}
.menu-toggle span::after {
  top: 6px;
}

.mobile-nav {
  display: none;
  border-top: 1px solid var(--line);
  background: var(--paper);
  padding: 0.75rem 0 1rem;
}
.mobile-nav.open {
  display: block;
}
.mobile-nav a {
  display: block;
  padding: 0.75rem 0;
  font-weight: 500;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}
.mobile-nav a:last-child {
  border-bottom: 0;
}

@media (min-width: 900px) {
  .nav {
    display: flex;
  }
  .menu-toggle {
    display: none;
  }
  .mobile-nav {
    display: none !important;
  }
  .brand-name {
    font-size: 1.12rem;
  }
  .brand-sub {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
  }
  .brand-mark {
    width: 68px;
    height: 68px;
    padding: 3px;
    box-shadow:
      0 0 0 2px rgba(11, 47, 122, 0.14),
      0 4px 14px rgba(10, 36, 99, 0.14);
  }
  .brand {
    gap: 0.95rem;
  }
  --header-h: 92px;
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.75rem 1.2rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    background 0.2s var(--ease),
    color 0.2s var(--ease),
    border-color 0.2s var(--ease),
    transform 0.2s var(--ease);
  text-align: center;
  white-space: nowrap;
}
.btn:active {
  transform: translateY(1px);
}
.btn-primary {
  background: var(--crimson);
  color: #fff;
  border-color: var(--crimson);
}
.btn-primary:hover {
  background: var(--crimson-hi);
  border-color: var(--crimson-hi);
}
.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn-secondary:hover {
  background: var(--white);
  border-color: var(--ink);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.18);
}
.btn-lg {
  padding: 0.9rem 1.45rem;
  font-size: 0.95rem;
}
.btn-sm {
  padding: 0.5rem 0.85rem;
  font-size: 0.82rem;
}
.btn-icon {
  flex-shrink: 0;
  display: block;
}
/* Official page — prominent in header */
.btn-facebook {
  background: #1877f2;
  color: #fff;
  border-color: #1877f2;
  gap: 0.4rem;
  padding-inline: 0.75rem;
  box-shadow: 0 1px 0 rgba(11, 47, 122, 0.08);
}
.btn-facebook:hover {
  background: #0f65d8;
  border-color: #0f65d8;
  color: #fff;
}
.btn-facebook .btn-icon {
  width: 15px;
  height: 15px;
}
@media (max-width: 380px) {
  .btn-facebook-label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
  .btn-facebook {
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: var(--radius);
  }
}
.mobile-nav-facebook {
  color: #1877f2 !important;
  font-weight: 700 !important;
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: min(88vh, 760px);
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
  background: var(--deep);
}

.hero-media {
  position: absolute;
  inset: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(8, 31, 86, 0.4) 0%,
      rgba(10, 36, 99, 0.55) 40%,
      rgba(8, 25, 70, 0.9) 100%
    ),
    linear-gradient(90deg, rgba(8, 31, 86, 0.55) 0%, transparent 55%);
}
.hero-overlay::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 5px;
  background: linear-gradient(
    90deg,
    var(--deep) 0%,
    var(--gold) 50%,
    var(--deep) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 3.5rem 0 3.25rem;
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
  max-width: 40rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #c5d8ff;
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: "";
  width: 1.25rem;
  height: 1px;
  background: currentColor;
}

.hero h1 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5.5vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 700;
}

.hero-lead {
  margin: 0 0 1.75rem;
  font-size: 1.05rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
  max-width: 34rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.72);
}
.hero-meta strong {
  display: block;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.15rem;
}

@media (max-width: 480px) {
  .hero-cta {
    display: grid;
  }
  .hero-cta .btn {
    width: 100%;
  }
}

/* —— Sections —— */
.section {
  padding: 4.5rem 0;
}
.section-tight {
  padding: 3rem 0;
}
.section-head {
  max-width: 36rem;
  margin-bottom: 2.5rem;
}
.section-head.center {
  margin-inline: auto;
  text-align: center;
}
.section-kicker {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue-mid);
  margin: 0 0 0.65rem;
}
.section-head h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.65rem, 3.5vw, 2.25rem);
  line-height: 1.15;
  letter-spacing: -0.025em;
}
.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.section-alt {
  background: var(--white);
  border-block: 1px solid var(--line);
  position: relative;
}
/* Thin blue edge stripes — campus banner language */
.section-alt::before,
.section-alt::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--blue) 12%,
    var(--blue-mid) 40%,
    var(--gold) 50%,
    var(--blue-mid) 60%,
    var(--blue) 88%,
    transparent 100%
  );
  opacity: 0.85;
}
.section-alt::before {
  top: 0;
}
.section-alt::after {
  bottom: 0;
}

/* —— Perks strip —— */
.perks {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.perk {
  background: var(--surface);
  padding: 1.35rem 1.4rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.perk-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--blue-soft);
  color: var(--blue);
  flex-shrink: 0;
  font-weight: 800;
  font-size: 0.85rem;
}
.perk h3 {
  margin: 0 0 0.25rem;
  font-size: 1rem;
}
.perk p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}
@media (min-width: 768px) {
  .perks {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* —— Programs —— */
.programs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
}
@media (min-width: 640px) {
  .programs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .programs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.program-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
}
.program-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.program-card figure {
  margin: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--ink-2);
}
.program-card figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--ease);
}
.program-card:hover figure img {
  transform: scale(1.04);
}
.program-body {
  padding: 1.25rem 1.3rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.program-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-mid);
}
.program-body h3 {
  margin: 0;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  line-height: 1.25;
}
.program-with {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
}
.nc-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  background: var(--laurel-soft);
  color: var(--laurel);
  width: fit-content;
  margin-top: auto;
}

/* —— About split —— */
.split {
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 900px) {
  .split {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3.5rem;
  }
  .split.reverse {
    grid-template-columns: 0.95fr 1.05fr;
  }
  .split.reverse > :first-child {
    order: 2;
  }
}
.split-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--ink-2);
  max-height: 520px;
}
.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 5;
}
@media (min-width: 900px) {
  .split-media img {
    aspect-ratio: 5 / 6;
    max-height: 520px;
  }
}
.split-body h2 {
  margin: 0 0 0.9rem;
  font-size: clamp(1.65rem, 3.2vw, 2.15rem);
  letter-spacing: -0.025em;
  line-height: 1.15;
}
.split-body p {
  color: var(--muted);
  margin: 0 0 1rem;
}
.checklist {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}
.checklist li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.95rem;
}
.checklist li::before {
  content: "";
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--crimson-soft)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23b01020' stroke-width='2'%3E%3Cpath d='M3.5 8.5l3 3 6-6'/%3E%3C/svg%3E")
    center/0.7rem no-repeat;
}

/* —— Stats —— */
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
@media (min-width: 768px) {
  .stats {
    grid-template-columns: repeat(4, 1fr);
  }
}
.stat {
  background: var(--surface);
  padding: 1.4rem 1.2rem;
  text-align: center;
}
.stat strong {
  display: block;
  font-size: 1.65rem;
  letter-spacing: -0.03em;
  color: var(--blue);
  margin-bottom: 0.2rem;
}
.stat span {
  font-size: 0.85rem;
  color: var(--muted);
}

/* —— Gallery —— */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
}
@media (min-width: 700px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.85rem;
  }
}
@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.gallery-item {
  position: relative;
  display: block;
  border: 0;
  padding: 0;
  margin: 0;
  background: var(--ink-2);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: zoom-in;
  aspect-ratio: 1;
  width: 100%;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}
.gallery-item:hover img {
  transform: scale(1.05);
}
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(11, 13, 18, 0.45));
  opacity: 0;
  transition: opacity 0.25s var(--ease);
}
.gallery-item:hover::after {
  opacity: 1;
}

/* —— Highlights / timeline —— */
.highlights {
  display: grid;
  gap: 0.75rem;
}
.highlight {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1rem 1.15rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.highlight-dot {
  width: 10px;
  height: 10px;
  margin-top: 0.45rem;
  border-radius: 50%;
  background: var(--blue-mid);
  box-shadow: 0 0 0 4px var(--blue-soft);
}
.highlight h3 {
  margin: 0 0 0.2rem;
  font-size: 0.98rem;
}
.highlight p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
}

/* —— Enrollment / CTA band —— */
.cta-band {
  position: relative;
  overflow: hidden;
  background: var(--deep);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 2.5rem 1.5rem;
}
@media (min-width: 768px) {
  .cta-band {
    padding: 3rem 3rem;
  }
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      135deg,
      transparent 0%,
      transparent 42%,
      rgba(255, 255, 255, 0.04) 42%,
      rgba(255, 255, 255, 0.04) 44%,
      transparent 44%,
      transparent 58%,
      rgba(255, 255, 255, 0.04) 58%,
      rgba(255, 255, 255, 0.04) 60%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 55% 70% at 100% 0%,
      rgba(30, 95, 208, 0.45),
      transparent 60%
    ),
    radial-gradient(
      ellipse 40% 55% at 0% 100%,
      rgba(201, 162, 39, 0.18),
      transparent 55%
    );
  pointer-events: none;
}
.cta-band::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--blue-hi), var(--gold));
  opacity: 0.9;
}
.cta-inner {
  position: relative;
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 800px) {
  .cta-inner {
    grid-template-columns: 1.3fr 1fr;
    align-items: center;
  }
}
.cta-band h2 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: -0.025em;
}
.cta-band p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  max-width: 32rem;
}
.req-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}
.req-list li {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.9);
}
.req-list li::before {
  content: "→";
  color: #c5d8ff;
  font-weight: 700;
}

/* —— Contact form —— */
.form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}
@media (min-width: 640px) {
  .form-card {
    padding: 2rem;
  }
}
.form-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 640px) {
  .form-grid.two {
    grid-template-columns: 1fr 1fr;
  }
}
.field {
  display: grid;
  gap: 0.4rem;
}
.field label {
  font-size: 0.82rem;
  font-weight: 600;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--paper);
  transition:
    border-color 0.15s var(--ease),
    box-shadow 0.15s var(--ease);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--crimson);
  box-shadow: 0 0 0 3px var(--crimson-soft);
}
.field textarea {
  min-height: 120px;
  resize: vertical;
}
.hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}
.form-note {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0.75rem 0 0;
}
.form-status {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  display: none;
}
.form-status.show {
  display: block;
}
.form-status.ok {
  background: var(--laurel-soft);
  color: var(--laurel);
}
.form-status.err {
  background: var(--crimson-soft);
  color: var(--crimson);
}

.contact-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 3rem;
    align-items: start;
  }
}
.contact-detail {
  display: grid;
  gap: 1.1rem;
}
.contact-item {
  display: grid;
  gap: 0.2rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid var(--line);
}
.contact-item:last-child {
  border-bottom: 0;
}
.contact-item span {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact-item strong {
  font-size: 1.02rem;
  font-weight: 600;
}
.contact-item a {
  color: var(--blue-mid);
  font-weight: 600;
}
.contact-item a:hover {
  text-decoration: underline;
}
.map-embed {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--paper-2);
  aspect-ratio: 16 / 10;
  box-shadow: inset 0 0 0 1px rgba(11, 47, 122, 0.06);
}
.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.08) saturate(1.05);
}
.map-link {
  margin: 0.75rem 0 0;
  font-size: 0.9rem;
  font-weight: 600;
}
.map-link a {
  color: var(--blue-mid);
}
.map-link a:hover {
  color: var(--blue-hi);
  text-decoration: underline;
}

/* —— Page hero (inner pages) —— */
.page-hero {
  padding: 3.25rem 0 2.5rem;
  background: linear-gradient(
    145deg,
    #081f56 0%,
    var(--deep) 45%,
    var(--blue-mid) 100%
  );
  color: #fff;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -18deg,
    transparent,
    transparent 28px,
    rgba(255, 255, 255, 0.035) 28px,
    rgba(255, 255, 255, 0.035) 30px
  );
  pointer-events: none;
}
.page-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--gold) 0%,
    var(--blue-hi) 50%,
    var(--gold) 100%
  );
  pointer-events: none;
}
.page-hero .container {
  position: relative;
  z-index: 1;
}
.page-hero h1 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  letter-spacing: -0.03em;
}
.page-hero p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  max-width: 36rem;
  font-size: 1.05rem;
}

/* —— Footer —— */
.site-footer {
  background: linear-gradient(180deg, #0a2463 0%, #071a4a 100%);
  color: rgba(255, 255, 255, 0.72);
  padding: 3.5rem 0 1.75rem;
  margin-top: 0;
  position: relative;
  border-top: 4px solid transparent;
  border-image: linear-gradient(90deg, var(--gold), var(--blue-hi), var(--gold))
    1;
}
.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 700px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  max-width: 20rem;
}
.footer-brand img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #fff;
  object-fit: cover;
}
.footer-brand p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
}
.footer-col h3 {
  margin: 0 0 0.85rem;
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.footer-col a,
.footer-col p {
  display: block;
  margin: 0 0 0.5rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.72);
}
.footer-col a:hover {
  color: #fff;
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.82rem;
}
.footer-source a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 600;
}
.footer-source a:hover {
  color: var(--gold-hi);
}

/* —— Lightbox —— */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(8, 10, 14, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.lightbox.open {
  display: flex;
}
.lightbox img {
  max-width: min(100%, 1100px);
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.lightbox-caption {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  text-align: center;
  max-width: 90%;
}
.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
}

/* —— Reveal —— */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.55s var(--ease),
    transform 0.55s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* —— Utility —— */
.rule {
  height: 1px;
  background: var(--line);
  border: 0;
  margin: 0;
}
.mt-0 {
  margin-top: 0;
}
.mb-0 {
  margin-bottom: 0;
}
.text-muted {
  color: var(--muted);
}
.stack-sm {
  display: grid;
  gap: 0.5rem;
}
.stack {
  display: grid;
  gap: 1rem;
}
.stack-lg {
  display: grid;
  gap: 1.5rem;
}
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.25rem;
}
.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1rem;
}
.pill {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  color: var(--muted);
  background: var(--surface);
}
.prose {
  max-width: 40rem;
}
.prose p {
  color: var(--muted);
  margin: 0 0 1rem;
}
.prose h2 {
  margin: 2rem 0 0.75rem;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}
.prose h3 {
  margin: 1.5rem 0 0.5rem;
  font-size: 1.05rem;
}
.table-simple {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}
.table-simple th,
.table-simple td {
  text-align: left;
  padding: 0.85rem 0.75rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.table-simple th {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}

/* Programs detail page cards full width list */
.program-detail {
  display: grid;
  gap: 1.25rem;
}
.program-detail article {
  display: grid;
  gap: 1.25rem;
  padding: 1.25rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
@media (min-width: 768px) {
  .program-detail article {
    grid-template-columns: 200px 1fr;
    align-items: center;
    padding: 1.5rem;
  }
}
.program-detail figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--ink-2);
}
.program-detail figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.program-detail h3 {
  margin: 0 0 0.4rem;
  font-size: 1.2rem;
}
.program-detail p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}
