:root {
  --navy: #08265a;
  --navy-2: #031735;
  --blue: #0d4f9f;
  --blue-soft: #eaf3ff;
  --gold: #c9a45c;
  --gold-soft: #f6ead0;
  --paper: #fbfcff;
  --white: #ffffff;
  --text: #182235;
  --muted: #64748b;
  --border: #e4eaf2;
  --shadow: 0 24px 70px rgba(8, 38, 90, 0.14);
  --radius: 28px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 0%, rgba(201, 164, 92, 0.08), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #f7faff 48%, #ffffff 100%);
  line-height: 1.7;
}

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

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

.container {
  width: min(1180px, 90%);
  margin: 0 auto;
}

.topbar {
  background: var(--navy-2);
  color: #dbeafe;
  font-size: 13px;
  padding: 8px 0;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.header-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand img {
  width: 68px;
  height: 68px;
  object-fit: contain;
  padding: 8px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(8, 38, 90, 0.12);
}

.brand-title {
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.brand-subtitle {
  color: var(--muted);
  font-size: 12px;
  margin-top: 2px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14.5px;
  color: var(--navy-2);
}

.main-nav a {
  padding: 9px 2px;
  border-bottom: 2px solid transparent;
  font-weight: 650;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--blue);
  border-bottom-color: var(--gold);
}

.nav-button {
  background: var(--navy);
  color: var(--white) !important;
  padding: 10px 18px !important;
  border-radius: 999px;
  border-bottom: none !important;
  box-shadow: 0 12px 28px rgba(8, 38, 90, 0.2);
}

.menu-toggle {
  display: none;
  border: none;
  background: var(--navy);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 10px;
  cursor: pointer;
}

/* Home hero */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 24%, rgba(201, 164, 92, 0.28), transparent 18%),
    radial-gradient(circle at 18% 20%, rgba(13, 79, 159, 0.28), transparent 22%),
    linear-gradient(135deg, #041735 0%, #08265a 52%, #0c3f7d 100%);
  color: var(--white);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.9), transparent 85%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  min-height: 690px;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 60px;
  padding: 92px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12.5px;
  font-weight: 800;
  margin-bottom: 22px;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--gold);
}

.hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(43px, 6.2vw, 78px);
  line-height: 1.04;
  letter-spacing: -1.8px;
  margin-bottom: 24px;
}

.hero p {
  color: #d9e8fb;
  font-size: 19px;
  max-width: 740px;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 800;
  transition: 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--gold);
  color: var(--navy-2);
  box-shadow: 0 14px 34px rgba(201, 164, 92, 0.32);
}

.btn-outline {
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.08);
}

.hero-card {
  position: relative;
  background: rgba(255, 255, 255, 0.94);
  color: var(--text);
  border-radius: 34px;
  padding: 34px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,0.55);
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(201, 164, 92, 0.28);
  border-radius: 24px;
  pointer-events: none;
}

.hero-card img {
  width: 250px;
  margin: 0 auto 24px;
  filter: drop-shadow(0 18px 30px rgba(8, 38, 90, 0.18));
}

.hero-card h2 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--navy);
  font-size: 30px;
  line-height: 1.2;
  margin-bottom: 12px;
}

.hero-card p {
  color: var(--muted);
  font-size: 15.5px;
  margin-bottom: 0;
}

.hero-mini-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.hero-mini-grid div {
  background: #f6f9fd;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px;
}

.hero-mini-grid strong {
  display: block;
  color: var(--navy);
  font-size: 18px;
}

.hero-mini-grid span {
  display: block;
  color: var(--muted);
  font-size: 12.5px;
}

/* Common pages */
.page-hero {
  background:
    radial-gradient(circle at 84% 18%, rgba(201, 164, 92, 0.22), transparent 24%),
    linear-gradient(135deg, var(--navy-2), var(--navy));
  color: var(--white);
  padding: 88px 0;
}

.page-hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 5.2vw, 62px);
  line-height: 1.08;
  margin-bottom: 16px;
}

.page-hero p {
  color: #dbeafe;
  max-width: 850px;
  font-size: 18px;
}

.section {
  padding: 88px 0;
}

.section-light {
  background: linear-gradient(180deg, #f5f9ff, #ffffff);
}

.section-cream {
  background: linear-gradient(180deg, #fffaf0, #ffffff);
}

.section-title {
  max-width: 850px;
  margin-bottom: 42px;
}

.section-title.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-title span {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12.5px;
  font-weight: 850;
}

.section-title h2 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--navy);
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.12;
  margin: 10px 0 14px;
  letter-spacing: -0.7px;
}

.section-title p {
  color: var(--muted);
  font-size: 17px;
}

.grid {
  display: grid;
  gap: 24px;
}

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

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

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  position: relative;
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: 0 12px 32px rgba(8, 38, 90, 0.065);
  transition: 0.22s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: rgba(201, 164, 92, 0.55);
}

.card h3 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--navy);
  font-size: 25px;
  line-height: 1.2;
  margin-bottom: 12px;
}

.card p,
.card li {
  color: var(--muted);
  font-size: 15.5px;
}

.card ul {
  padding-left: 18px;
  margin-top: 12px;
}

.icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--blue-soft), #ffffff);
  color: var(--navy);
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-weight: 900;
  margin-bottom: 18px;
  border: 1px solid #d9e8fb;
}

.feature-band {
  background:
    radial-gradient(circle at 10% 20%, rgba(201, 164, 92, 0.15), transparent 22%),
    linear-gradient(135deg, #041735, #08265a);
  color: var(--white);
  padding: 58px 0;
}

.stat {
  text-align: center;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 22px;
  padding: 28px 20px;
  background: rgba(255,255,255,0.06);
}

.stat strong {
  color: var(--gold);
  font-size: 39px;
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1;
  margin-bottom: 9px;
}

.stat span {
  color: #dbeafe;
  font-size: 14px;
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 46px;
  align-items: center;
}

.panel {
  background: var(--white);
  border-radius: 30px;
  padding: 36px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.panel h3 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--navy);
  font-size: 31px;
  margin-bottom: 14px;
}

.panel p,
.panel li {
  color: var(--muted);
}

.panel ul {
  padding-left: 20px;
  margin-top: 14px;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.badge {
  background: #ffffff;
  color: var(--navy);
  border: 1px solid #d7e8ff;
  padding: 9px 13px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 13px;
  box-shadow: 0 8px 22px rgba(8, 38, 90, 0.06);
}

.program-card {
  border-left: 5px solid var(--gold);
}

.course-list {
  margin-top: 16px;
  display: grid;
  gap: 10px;
}

.course-list div {
  padding: 12px 14px;
  background: #f7faff;
  border-radius: 12px;
  color: var(--text);
  border: 1px solid var(--border);
  font-size: 14px;
}

.timeline {
  display: grid;
  gap: 18px;
}

.timeline-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 26px;
  box-shadow: 0 10px 30px rgba(8, 38, 90, 0.06);
}

.timeline-item strong {
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}

.timeline-item h3 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--navy);
  margin-bottom: 8px;
}

.timeline-item p {
  color: var(--muted);
}

.notice {
  background: #fff8e7;
  border-left: 5px solid var(--gold);
  border-radius: 16px;
  padding: 22px;
  color: #5f4608;
}

.cta {
  background:
    radial-gradient(circle at 12% 22%, rgba(201, 164, 92, 0.2), transparent 26%),
    linear-gradient(135deg, var(--navy), var(--navy-2));
  color: var(--white);
  border-radius: 34px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1.5fr 0.5fr;
  gap: 24px;
  align-items: center;
  box-shadow: var(--shadow);
}

.cta h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 38px;
  line-height: 1.15;
  margin-bottom: 10px;
}

.cta p {
  color: #dbeafe;
}

.contact-list {
  display: grid;
  gap: 16px;
}

.contact-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 10px 28px rgba(8, 38, 90, 0.06);
}

.contact-item h3 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--navy);
  margin-bottom: 8px;
}

.contact-item p {
  color: var(--muted);
}

.contact-item a {
  color: var(--blue);
  font-weight: 800;
}

.footer {
  background: #020f23;
  color: #cbd5e1;
  padding: 48px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 30px;
  margin-bottom: 34px;
}

.footer h3,
.footer h4 {
  color: var(--white);
  margin-bottom: 12px;
  font-family: Georgia, "Times New Roman", serif;
}

.footer p,
.footer a {
  color: #cbd5e1;
  font-size: 14px;
}

.footer a:hover {
  color: var(--gold);
}

.footer-links {
  display: grid;
  gap: 8px;
}

.copyright {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: #94a3b8;
}

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

  .main-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 6%;
    border-bottom: 1px solid var(--border);
    display: none;
  }

  .main-nav.open {
    display: flex;
  }

  .hero-inner,
  .two-column,
  .cta,
  .footer-grid,
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    min-height: auto;
    padding: 72px 0;
  }

  .hero-card img {
    width: 220px;
  }

  .brand img {
    width: 58px;
    height: 58px;
  }

  .brand-title {
    font-size: 15px;
  }

  .brand-subtitle {
    display: none;
  }

  .cta {
    padding: 34px;
  }
}
