:root {
  --navy: #2d3561;
  --navy-dark: #1b2240;
  --navy-deep: #111729;
  --navy-mid: #3d4878;
  --navy-light: #4a5691;
  --gold: #b8924a;
  --gold-light: #d4af72;
  --gold-pale: #edd89a;
  --ink: #0d0d0d;
  --charcoal: #2c2c2c;
  --warm-gray: #6b6560;
  --parchment: #e8e4d4;
  --parchment-lt: #f4f1e8;
  --white: #ffffff;
  --border: #c8c4b8;
  --border-navy: rgba(45, 53, 97, 0.15);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Source Sans 3", sans-serif;
  background: var(--white);
  color: var(--ink);
  overflow-x: hidden;
}
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--navy-deep);
  border-bottom: 3px solid var(--gold);
}
.nav-top {
  padding: 6px 48px;
  display: flex;
  justify-content: flex-end;
  gap: 24px;
  border-bottom: 1px solid rgba(184, 146, 74, 0.2);
}
.nav-top a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}
.nav-top a:hover {
  color: var(--gold-light);
}
.nav-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 64px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.logo-mark {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: block;
  object-fit: cover;
  object-position: center 52%;
}
.logo-mark--video {
  border-radius: 50%;
  background: transparent;
}
.logo-text-group {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 3px;
}
.logo-name {
  font-family: "EB Garamond", serif;
  font-size: 21px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.logo-sub {
  font-family: "Source Sans 3", sans-serif;
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition:
    color 0.2s,
    border-color 0.2s;
}
.nav-links a:hover {
  color: var(--gold-light);
  border-bottom-color: var(--gold);
}
.nav-cta {
  background: var(--gold) !important;
  color: var(--navy-deep) !important;
  padding: 10px 22px !important;
  border: none !important;
  font-weight: 600 !important;
  transition: background 0.2s !important;
  border-bottom: none !important;
}
.nav-cta:hover {
  background: var(--gold-light) !important;
}
.hamburger {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.hamburger span {
  width: 20px;
  height: 2px;
  background: rgba(255, 255, 255, 0.8);
  margin: 3px 0;
  transition: 0.3s;
  display: block;
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}
.hero {
  margin-top: 101px;
  position: relative;
  height: 84vh;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--navy-deep);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      105deg,
      rgba(17, 23, 41, 0.97) 40%,
      rgba(27, 34, 64, 0.75) 100%
    ),
    url("https://images.unsplash.com/photo-1541339907198-e08756dedf3f?w=1600&fit=crop&fm=webp&q=75")
      center/cover no-repeat;
}
.hero-globe-deco {
  position: absolute;
  right: -120px;
  top: 50%;
  transform: translateY(-50%);
  width: 640px;
  height: 640px;
  border-radius: 50%;
  border: 1px solid rgba(184, 146, 74, 0.12);
  box-shadow:
    inset 0 0 80px rgba(45, 53, 97, 0.6),
    0 0 0 40px rgba(184, 146, 74, 0.03),
    0 0 0 80px rgba(184, 146, 74, 0.02);
  background: radial-gradient(
    circle at 35% 40%,
    rgba(45, 53, 97, 0.4) 0%,
    rgba(17, 23, 41, 0.1) 60%,
    transparent 100%
  );
}
.hero-globe-deco::before {
  content: "";
  position: absolute;
  inset: 24px;
  border-radius: 50%;
  border: 1px solid rgba(184, 146, 74, 0.08);
}
.hero-lines {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 119px,
      rgba(184, 146, 74, 0.04) 119px,
      rgba(184, 146, 74, 0.04) 120px
    ),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 119px,
      rgba(184, 146, 74, 0.04) 119px,
      rgba(184, 146, 74, 0.04) 120px
    );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 80px 88px;
  max-width: 760px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  animation: fadeUp 0.7s ease both;
}
.eyebrow-line {
  width: 28px;
  height: 1px;
  background: var(--gold);
}
.eyebrow-text {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero h1 {
  font-family: "EB Garamond", serif;
  font-size: clamp(42px, 5.5vw, 68px);
  font-weight: 500;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
  animation: fadeUp 0.7s 0.15s ease both;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-pale);
}
.hero-desc {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 44px;
  max-width: 540px;
  font-weight: 300;
  animation: fadeUp 0.7s 0.28s ease both;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  animation: fadeUp 0.7s 0.4s ease both;
}
.btn-primary {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 16px 36px;
  text-decoration: none;
  border: 1px solid var(--navy-mid);
  transition:
    background 0.25s,
    border-color 0.25s;
}
.btn-primary:hover {
  background: var(--navy-mid);
  border-color: var(--navy-light);
}
.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: var(--navy-deep);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 16px 36px;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-gold:hover {
  background: var(--gold-light);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 2px;
  transition:
    color 0.2s,
    border-color 0.2s;
}
.btn-outline:hover {
  color: var(--gold-pale);
  border-color: var(--gold);
}
.stats-bar {
  background: var(--navy);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 26px 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}
.stat-item:last-child {
  border-right: none;
}
.stat-number {
  font-family: "EB Garamond", serif;
  font-size: 36px;
  font-weight: 500;
  color: var(--gold-pale);
  display: block;
  line-height: 1;
  margin-bottom: 5px;
}
.stat-label {
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 600;
}
.section-eyebrow {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.section-eyebrow::after {
  content: "";
  display: block;
  width: 28px;
  height: 1px;
  background: var(--navy);
}
.section-title {
  font-family: "EB Garamond", serif;
  font-size: clamp(30px, 3.5vw, 46px);
  font-weight: 500;
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}
.about-image {
  position: relative;
  background: url("https://images.unsplash.com/photo-1573496359142-b8d87734a5a2?w=900&q=75&fit=crop&fm=webp")
    center 58% / cover no-repeat;
}
.about-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(17, 23, 41, 0.35) 0%,
    transparent 60%
  );
}
.about-image::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gold);
}
.about-content {
  background: var(--parchment-lt);
  padding: 80px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-content p {
  font-size: 16px;
  line-height: 1.78;
  color: var(--warm-gray);
  margin-bottom: 20px;
}
.about-content p strong {
  color: var(--ink);
  font-weight: 600;
}
.divider {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 28px 0;
}
.services {
  padding: 100px 80px;
  background: var(--white);
}
.services-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
}
.service-card {
  padding: 44px 40px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
  cursor: pointer;
  text-decoration: none;
  display: block;
  color: inherit;
}
.service-card:nth-child(3),
.service-card:nth-child(6) {
  border-right: none;
}
.service-card:nth-child(4),
.service-card:nth-child(5),
.service-card:nth-child(6) {
  border-bottom: none;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--navy);
  transition: width 0.4s ease;
}
.service-card:hover::before {
  width: 100%;
}
.service-card:hover {
  background: var(--parchment-lt);
}
.service-num {
  font-family: "EB Garamond", serif;
  font-size: 48px;
  color: #2e2e2e;
  line-height: 1;
  margin-bottom: 20px;
  transition: color 0.3s;
}
.service-card:hover .service-num {
  color: rgba(45, 53, 97, 0.12);
}
.service-title {
  font-family: "EB Garamond", serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.25;
}
.service-desc {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--warm-gray);
  margin-bottom: 24px;
}
.service-link {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transition:
    opacity 0.3s,
    gap 0.3s;
}
.service-card:hover .service-link {
  opacity: 1;
  gap: 14px;
}
.programs {
  background: var(--navy-deep);
  padding: 100px 80px;
}
.programs .section-eyebrow {
  color: var(--gold);
}
.programs .section-eyebrow::after {
  background: var(--gold);
}
.programs .section-title {
  color: var(--white);
}
.programs-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.programs-intro {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 24px;
  font-weight: 300;
}
.programs-quote {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.programs-quote p {
  font-family: "EB Garamond", serif;
  font-size: 22px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.55;
  border-left: 3px solid var(--gold);
  padding-left: 24px;
}
.programs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.program-card {
  background: rgba(255, 255, 255, 0.04);
  padding: 36px 30px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition: background 0.3s;
  cursor: pointer;
}
.program-card:hover {
  background: rgba(45, 53, 97, 0.35);
}
.program-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--navy);
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 15px;
  color: var(--gold-pale);
}
.program-name {
  font-family: "EB Garamond", serif;
  font-size: 19px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.3;
}
.program-desc {
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.48);
  margin-bottom: 20px;
}
.program-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #d4af72;
  border: 1px solid rgba(184, 146, 74, 0.3);
  padding: 4px 10px;
}
.universities {
  padding: 100px 80px;
  background: var(--white);
}
.universities-header {
  text-align: center;
  margin-bottom: 64px;
}
.universities-intro {
  font-size: 16px;
  line-height: 1.6;
  color: var(--warm-gray);
  max-width: 600px;
  margin: 24px auto 0;
}
.universities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}
.university-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.university-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--navy);
  transition: width 0.4s ease;
}
.university-card:hover::before {
  width: 100%;
}
.university-card:hover {
  box-shadow: 0 8px 24px rgba(45, 53, 97, 0.1);
  transform: translateY(-2px);
}
.university-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}
.university-name {
  font-family: "EB Garamond", serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.2;
  margin: 0;
}
.university-type {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--parchment-lt);
  padding: 4px 8px;
  border-radius: 4px;
  white-space: nowrap;
}
.university-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
}
.university-location,
.university-established {
  font-size: 12px;
  color: var(--warm-gray);
  font-weight: 500;
}
.university-details {
  margin-bottom: 16px;
}
.university-duration,
.university-language {
  font-size: 13px;
  color: var(--ink);
  margin-bottom: 4px;
  font-weight: 500;
}
.university-recognition {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}
.recognition-tag {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(184, 146, 74, 0.1);
  padding: 3px 6px;
  border-radius: 3px;
  border: 1px solid rgba(184, 146, 74, 0.2);
}
.university-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--warm-gray);
  margin-bottom: 24px;
}
.university-cta {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}
.university-cta::after {
  content: "â†’";
  transition: transform 0.3s ease;
}
.university-card:hover .university-cta {
  gap: 12px;
}
.university-card:hover .university-cta::after {
  transform: translateX(4px);
}
.about-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  align-items: center;
  gap: 80px;
  padding: 100px 80px;
}
.about-hero-content {
  max-width: 500px;
}
.about-hero-title {
  font-family: "EB Garamond", serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 24px;
}
.about-hero-desc {
  font-size: 18px;
  line-height: 1.6;
  color: var(--warm-gray);
  margin-bottom: 32px;
}
.about-hero-image {
  background: url("https://images.unsplash.com/photo-1559757148-5c350d0d3c56?w=600&q=75&fit=crop&fm=webp")
    center/cover no-repeat;
  border-radius: 12px;
  min-height: 400px;
  position: relative;
}
.about-hero-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(45, 53, 97, 0.1),
    rgba(184, 146, 74, 0.1)
  );
  border-radius: 12px;
}
.our-story {
  padding: 100px 80px;
  background: var(--parchment-lt);
}
.story-content {
  max-width: 1200px;
  margin: 0 auto;
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 48px;
}
.story-text p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--warm-gray);
  margin-bottom: 20px;
}
.story-text p:last-child {
  margin-bottom: 0;
}
.story-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.story-stat {
  text-align: center;
  padding: 32px;
  background: var(--white);
  border-radius: 8px;
  border: 1px solid var(--border);
}
.stat-number {
  font-family: "EB Garamond", serif;
  font-size: 48px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 8px;
}
.stat-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--warm-gray);
}
.our-values {
  padding: 100px 80px;
  background: var(--white);
}
.values-header {
  text-align: center;
  margin-bottom: 64px;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.value-card {
  text-align: center;
  padding: 40px 24px;
  background: var(--parchment-lt);
  border-radius: 8px;
  border: 1px solid var(--border);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(45, 53, 97, 0.1);
}
.value-icon {
  font-size: 48px;
  margin-bottom: 20px;
}
.value-title {
  font-family: "EB Garamond", serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 16px;
}
.value-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--warm-gray);
}
.our-team {
  padding: 100px 80px;
  background: var(--parchment-lt);
}
.team-header {
  text-align: center;
  margin-bottom: 64px;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.team-member {
  text-align: center;
  background: var(--white);
  border-radius: 8px;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.3s ease;
}
.team-member:hover {
  transform: translateY(-4px);
}
.member-image {
  height: 200px;
  background: linear-gradient(135deg, var(--navy-light), var(--navy));
  position: relative;
}
.member-image::before {
  content: "ðŸ‘¨â€âš•ï¸";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 48px;
}
.member-name {
  font-family: "EB Garamond", serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  margin: 24px 20px 8px;
}
.member-role {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.member-bio {
  font-size: 14px;
  line-height: 1.6;
  color: var(--warm-gray);
  padding: 0 20px 24px;
}
.programs-hero {
  background: var(--navy-deep);
  padding: 100px 80px;
  text-align: center;
}
.programs-hero-content {
  max-width: 800px;
  margin: 0 auto;
}
.programs-hero-title {
  font-family: "EB Garamond", serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 500;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
}
.programs-hero-desc {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
}
.programs-section {
  padding: 100px 80px;
  background: var(--white);
}
.programs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.program-card {
  background: var(--parchment-lt);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.program-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 4px;
  background: var(--navy);
  transition: width 0.4s ease;
}
.program-card:hover::before {
  width: 100%;
}
.program-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(45, 53, 97, 0.15);
}
.program-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}
.program-name {
  font-family: "EB Garamond", serif;
  font-size: 28px;
  font-weight: 500;
  color: var(--ink);
  margin: 0;
}
.program-price {
  font-size: 16px;
  font-weight: 600;
  color: var(--gold);
  background: rgba(184, 146, 74, 0.1);
  padding: 8px 16px;
  border-radius: 20px;
  border: 1px solid rgba(184, 146, 74, 0.2);
}
.program-desc {
  font-size: 16px;
  line-height: 1.6;
  color: var(--warm-gray);
  margin-bottom: 24px;
}
.program-features {
  list-style: none;
  padding: 0;
  margin-bottom: 32px;
}
.program-features li {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}
.program-features li::before {
  content: "âœ“";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: bold;
}
.program-cta {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 14px 28px;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s ease;
}
.program-cta:hover {
  background: var(--navy-dark);
}
.why-choose-us {
  padding: 100px 80px;
  background: var(--parchment-lt);
}
.why-header {
  text-align: center;
  margin-bottom: 64px;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.why-card {
  text-align: center;
  background: var(--white);
  border-radius: 8px;
  padding: 40px 24px;
  border: 1px solid var(--border);
  transition: transform 0.3s ease;
}
.why-card:hover {
  transform: translateY(-4px);
}
.why-icon {
  font-size: 48px;
  margin-bottom: 20px;
}
.why-title {
  font-family: "EB Garamond", serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 16px;
}
.why-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--warm-gray);
}
.program-comparison {
  padding: 100px 80px;
  background: var(--white);
}
.comparison-header {
  text-align: center;
  margin-bottom: 64px;
}
.comparison-table {
  max-width: 1200px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}
.comparison-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
}
.comparison-header-row {
  background: var(--navy);
  color: var(--white);
}
.comparison-header-row .comparison-cell {
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 12px;
}
.comparison-row:nth-child(even) {
  background: var(--parchment-lt);
}
.comparison-cell {
  padding: 20px;
  border-right: 1px solid var(--border);
  text-align: center;
  font-size: 14px;
  line-height: 1.4;
}
.comparison-cell:last-child {
  border-right: none;
}
.comparison-row:first-child .comparison-cell:first-child {
  text-align: left;
}
.faq-hero {
  background: var(--navy-deep);
  padding: 100px 80px;
  text-align: center;
}
.faq-hero-content {
  max-width: 800px;
  margin: 0 auto;
}
.faq-hero-title {
  font-family: "EB Garamond", serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 500;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
}
.faq-hero-desc {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
}
.faq-categories {
  padding: 100px 80px;
  background: var(--white);
}
.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}
.category-card {
  background: var(--parchment-lt);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px;
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}
.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(45, 53, 97, 0.1);
  border-color: var(--navy);
}
.category-icon {
  font-size: 48px;
  margin-bottom: 20px;
}
.category-title {
  font-family: "EB Garamond", serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 12px;
}
.category-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--warm-gray);
}
.faq-accordion {
  padding: 100px 80px;
  background: var(--parchment-lt);
}
.accordion-container {
  max-width: 1000px;
  margin: 0 auto;
}
.faq-section {
  margin-bottom: 64px;
}
.faq-section:last-child {
  margin-bottom: 0;
}
.faq-section-title {
  font-family: "EB Garamond", serif;
  font-size: 32px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 32px;
  text-align: center;
}
.accordion-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 16px;
  overflow: hidden;
}
.accordion-item.active {
  box-shadow: 0 4px 12px rgba(45, 53, 97, 0.1);
}
.accordion-header {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 32px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  transition: background 0.2s ease;
}
.accordion-header:hover {
  background: var(--parchment-lt);
}
.accordion-header span:first-child {
  flex: 1;
  margin-right: 16px;
}
.accordion-icon {
  font-size: 20px;
  font-weight: bold;
  color: var(--navy);
  transition: transform 0.2s ease;
}
.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
}
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: var(--parchment-lt);
  border-top: 1px solid var(--border);
}
.accordion-content p {
  margin-bottom: 16px;
  line-height: 1.6;
  color: var(--warm-gray);
}
.accordion-content ul {
  margin: 0;
  padding-left: 20px;
}
.accordion-content li {
  margin-bottom: 8px;
  line-height: 1.6;
  color: var(--warm-gray);
}
.accordion-content li:last-child {
  margin-bottom: 0;
}
.accordion-content {
  padding: 0 32px 24px;
}
.faq-cta {
  background: var(--navy);
  padding: 80px 80px;
  text-align: center;
}
.cta-content {
  max-width: 600px;
  margin: 0 auto;
}
.cta-title {
  font-family: "EB Garamond", serif;
  font-size: 36px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 16px;
}
.cta-desc {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
}
.cta-button {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 16px 32px;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s ease;
}
.cta-button:hover {
  background: var(--gold-light);
}
.contact-hero {
  background: var(--navy-deep);
  padding: 100px 80px;
  text-align: center;
}
.contact-hero-content {
  max-width: 800px;
  margin: 0 auto;
}
.contact-hero-title {
  font-family: "EB Garamond", serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 500;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
}
.contact-hero-desc {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
}
.contact-section {
  padding: 100px 80px;
  background: var(--white);
}
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1400px;
  margin: 0 auto;
}
.contact-form-container {
  background: var(--parchment-lt);
  border-radius: 12px;
  padding: 48px;
  border: 1px solid var(--border);
}
.contact-form-title {
  font-family: "EB Garamond", serif;
  font-size: 32px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 32px;
  text-align: center;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.form-group {
  display: flex;
  flex-direction: column;
}
.form-group.is-invalid input,
.form-group.is-invalid select,
.form-group.is-invalid textarea {
  border-color: #a74141;
  box-shadow: 0 0 0 3px rgba(167, 65, 65, 0.08);
}
.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 16px;
  font-family: "Source Sans 3", sans-serif;
  background: var(--white);
  transition: border-color 0.3s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(45, 53, 97, 0.1);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.form-error {
  min-height: 18px;
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.4;
  color: #8d3636;
}
.form-status {
  min-height: 22px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--navy);
  transition: opacity 0.5s ease;
}
.form-status.is-error {
  color: #8d3636;
}
.form-status.is-success {
  color: #2d5a39;
}
.form-status.is-fading {
  opacity: 0;
}
.form-submit {
  background: var(--navy);
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 16px 32px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
  margin-top: 8px;
}
.form-submit:hover {
  background: var(--navy-dark);
}
.form-submit[disabled] {
  opacity: 0.7;
  cursor: wait;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.contact-info-section {
  background: var(--parchment-lt);
  border-radius: 8px;
  padding: 32px;
  border: 1px solid var(--border);
}
.contact-info-title {
  font-family: "EB Garamond", serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 24px;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-icon {
  font-size: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--warm-gray);
}
.contact-text a {
  color: var(--navy);
  text-decoration: none;
}
.contact-text a:hover {
  text-decoration: underline;
}
.contact-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
}
.contact-benefits li {
  font-size: 14px;
  line-height: 1.6;
  color: var(--warm-gray);
  margin-bottom: 12px;
  padding-left: 0;
}
.contact-benefits li:last-child {
  margin-bottom: 0;
}
.response-time {
  font-size: 14px;
  line-height: 1.6;
  color: var(--warm-gray);
  margin-bottom: 16px;
}
.emergency-link {
  color: var(--gold) !important;
  font-weight: 600;
}
.office-locations {
  padding: 100px 80px;
  background: var(--parchment-lt);
}
.locations-header {
  text-align: center;
  margin-bottom: 64px;
}
.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}
.location-card {
  background: var(--white);
  border-radius: 8px;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.3s ease;
}
.location-card:hover {
  transform: translateY(-4px);
}
.location-image {
  height: 160px;
  background: linear-gradient(135deg, var(--navy-light), var(--navy));
  position: relative;
}
.location-image::before {
  content: "ðŸ¢";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 48px;
}
.location-content {
  padding: 24px;
}
.location-title {
  font-family: "EB Garamond", serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 12px;
}
.location-address {
  font-size: 14px;
  line-height: 1.6;
  color: var(--warm-gray);
  margin-bottom: 16px;
}
.location-contact p {
  font-size: 13px;
  line-height: 1.5;
  color: var(--warm-gray);
  margin-bottom: 4px;
}
.location-contact p:last-child {
  margin-bottom: 0;
}
.process {
  padding: 100px 80px;
  background: var(--parchment-lt);
}
.process-header {
  text-align: center;
  margin-bottom: 72px;
}
.process-header .section-eyebrow {
  justify-content: center;
}
.process-header .section-eyebrow::after,
.process-header .section-eyebrow::before {
  display: none;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
}
.process-steps::before {
  content: "";
  position: absolute;
  top: 36px;
  left: calc(12.5% + 16px);
  right: calc(12.5% + 16px);
  height: 1px;
  background: var(--border);
}
.step {
  padding: 0 28px;
  text-align: center;
}
.step-num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  font-family: "EB Garamond", serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--navy);
  position: relative;
  z-index: 1;
  transition:
    background 0.3s,
    color 0.3s,
    border-color 0.3s;
}
.step:hover .step-num {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.step-title {
  font-family: "EB Garamond", serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 10px;
}
.step-desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--warm-gray);
}
.testimonials {
  padding: 100px 80px;
  background: var(--white);
}
.testimonials-header {
  text-align: center;
  margin-bottom: 64px;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.testimonial {
  padding: 44px 40px;
  border: 1px solid var(--border);
  position: relative;
  transition: border-color 0.3s;
}
.testimonial:hover {
  border-color: var(--navy);
}
.testimonial::before {
  content: "\201C";
  font-family: "EB Garamond", serif;
  font-size: 80px;
  color: var(--navy);
  line-height: 0.8;
  display: block;
  margin-bottom: 20px;
  opacity: 0.18;
}
.testimonial-text {
  font-family: "EB Garamond", serif;
  font-size: 18.5px;
  font-style: italic;
  line-height: 1.6;
  color: var(--charcoal);
  margin-bottom: 28px;
}
.testimonial-divider {
  width: 32px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 20px;
}
.testimonial-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.04em;
}
.testimonial-role {
  font-size: 12px;
  color: var(--warm-gray);
  margin-top: 4px;
}
.school-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.06em;
  margin-top: 8px;
}
.placements {
  background: var(--parchment);
  padding: 64px 80px;
  border-top: 3px solid var(--navy);
  border-bottom: 3px solid var(--navy);
}
.placements-label {
  text-align: center;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--warm-gray);
  margin-bottom: 36px;
}
.schools-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.school-name {
  font-family: "EB Garamond", serif;
  font-size: 19px;
  font-weight: 500;
  color: var(--charcoal);
  padding: 10px 28px;
  border-right: 1px solid var(--border);
  white-space: nowrap;
  transition: color 0.2s;
}
.school-name:last-child {
  border-right: none;
}
.school-name:hover {
  color: var(--navy);
}
.cta-section {
  background: var(--navy);
  padding: 100px 80px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 80px;
  position: relative;
  overflow: hidden;
}
.cta-section::after {
  content: "";
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(184, 146, 74, 0.15);
  pointer-events: none;
}
.cta-section h2 {
  font-family: "EB Garamond", serif;
  font-size: clamp(34px, 3.8vw, 50px);
  font-weight: 500;
  color: var(--white);
  line-height: 1.18;
  letter-spacing: -0.01em;
}
.cta-section h2 em {
  font-style: italic;
  color: var(--gold-pale);
}
.cta-group {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.btn-white {
  display: inline-block;
  background: var(--white);
  color: var(--navy-deep);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 16px 40px;
  text-decoration: none;
  text-align: center;
  transition: background 0.2s;
}
.btn-white:hover {
  background: var(--parchment);
}
.btn-ghost {
  display: inline-block;
  background: transparent;
  color: rgba(255, 255, 255, 0.75);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 15px 40px;
  text-decoration: none;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition:
    border-color 0.2s,
    color 0.2s;
}
.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.6);
  color: var(--white);
}
footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.6);
}
.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  padding: 72px 80px 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-tagline {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 20px;
  max-width: 280px;
  font-weight: 300;
}
.footer-col-title {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-links {
  list-style: none;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--white);
}
.footer-bottom {
  padding: 22px 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
}
.footer-accred {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.consultation-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 20px;
  background: rgba(17, 23, 41, 0.62);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.28s ease,
    visibility 0.28s ease;
  z-index: 1200;
}
.consultation-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.consultation-modal__dialog {
  width: min(100%, 560px);
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  background: var(--parchment-lt);
  border: 1px solid rgba(45, 53, 97, 0.12);
  box-shadow: 0 28px 60px rgba(17, 23, 41, 0.22);
  padding: 36px 36px 32px;
  position: relative;
  transform: translateY(18px) scale(0.97);
  transition:
    transform 0.28s ease,
    opacity 0.28s ease;
  opacity: 0;
}
.consultation-modal.is-open .consultation-modal__dialog {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.consultation-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(45, 53, 97, 0.12);
  background: var(--white);
  color: var(--navy);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s,
    border-color 0.2s;
}
.consultation-modal__close:hover,
.consultation-modal__close:focus-visible {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  outline: none;
}
.consultation-modal__eyebrow {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 14px;
}
.consultation-modal__title {
  font-family: "EB Garamond", serif;
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 500;
  line-height: 1.08;
  color: var(--ink);
  margin-bottom: 14px;
  padding-right: 48px;
}
.consultation-modal__desc {
  color: var(--warm-gray);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 440px;
}
.consultation-modal__form {
  display: grid;
  gap: 18px;
}
.consultation-modal__group {
  display: grid;
  gap: 8px;
}
.consultation-modal__group label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
}
.consultation-modal__group input,
.consultation-modal__group textarea {
  width: 100%;
  border: 1px solid var(--border);
  background: var(--white);
  padding: 14px 16px;
  font-size: 15px;
  color: var(--ink);
  font-family: inherit;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.consultation-modal__group input:focus,
.consultation-modal__group textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(45, 53, 97, 0.08);
}
.consultation-modal__group textarea {
  min-height: 140px;
  resize: vertical;
}
.consultation-modal__group.is-invalid input,
.consultation-modal__group.is-invalid textarea {
  border-color: #a74141;
  box-shadow: 0 0 0 3px rgba(167, 65, 65, 0.08);
}
.consultation-modal__error {
  min-height: 18px;
  font-size: 13px;
  line-height: 1.4;
  color: #8d3636;
}
.consultation-modal__status {
  min-height: 22px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--navy);
  transition: opacity 0.5s ease;
}
.consultation-modal__status.is-error {
  color: #8d3636;
}
.consultation-modal__status.is-success {
  color: #2d5a39;
}
.consultation-modal__status.is-fading {
  opacity: 0;
}
.consultation-modal__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 4px;
}
.consultation-modal__submit {
  min-width: 190px;
  cursor: pointer;
}
.consultation-modal__submit[disabled] {
  opacity: 0.7;
  cursor: wait;
}
body.consultation-modal-open {
  overflow: hidden;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (min-width: 1356px) {
  .about-image {
    background-position: center 62%;
  }
}
@media (max-width: 1024px) {
  .hero-globe-deco {
    width: 500px;
    height: 500px;
    right: -100px;
  }
  .cta-section::after {
    width: 300px;
    height: 300px;
    right: -60px;
  }
  .universities {
    padding: 80px 40px;
  }
  .universities-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
  }
  .about-hero {
    padding: 80px 40px;
    gap: 40px;
  }
  .story-grid {
    gap: 40px;
  }
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .programs-hero {
    padding: 80px 40px;
  }
  .programs-section {
    padding: 80px 40px;
  }
  .programs-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .comparison-row {
    grid-template-columns: 1fr;
  }
  .comparison-cell {
    border-bottom: 1px solid var(--border);
    border-right: none;
  }
  .comparison-cell:first-child {
    font-weight: 600;
    background: var(--parchment-lt);
  }
  .faq-hero {
    padding: 80px 40px;
  }
  .faq-categories {
    padding: 80px 40px;
  }
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .faq-accordion {
    padding: 80px 40px;
  }
  .faq-cta {
    padding: 60px 40px;
  }
  .contact-hero {
    padding: 80px 40px;
  }
  .contact-section {
    padding: 80px 40px;
  }
  .contact-container {
    gap: 40px;
  }
  .office-locations {
    padding: 80px 40px;
  }
  .locations-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
@media (max-width: 768px) {
  .nav-top {
    padding: 6px 20px;
  }
  .nav-main {
    padding: 0 20px;
    height: auto;
    min-height: 64px;
    position: relative;
  }
  .hamburger {
    display: flex;
  }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy-deep);
    flex-direction: column;
    gap: 0;
    padding: 20px;
    display: none;
    border-top: 1px solid rgba(184, 146, 74, 0.2);
    z-index: 10;
  }
  .nav-links.active {
    display: flex;
  }
  .nav-links li {
    margin-bottom: 16px;
  }
  .nav-links a {
    padding: 12px 0;
    min-height: auto;
    font-size: 11.5px;
  }
  .nav-cta {
    margin-top: 0;
  }
  .hero {
    min-height: 460px;
  }
  .hero-content {
    padding: 0 20px 60px;
    max-width: none;
  }
  .hero-globe-deco {
    display: none;
  }
  .hero h1 {
    font-size: clamp(28px, 7vw, 42px);
  }
  .hero-desc {
    font-size: 16px;
    margin-bottom: 32px;
  }
  .hero-actions {
    gap: 16px;
  }
  .btn-primary,
  .btn-gold {
    padding: 14px 28px;
    font-size: 10.5px;
  }
  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-item {
    padding: 20px 16px;
  }
  .stat-number {
    font-size: 28px;
  }
  .section-title {
    font-size: clamp(24px, 5vw, 36px);
  }
  .about {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .about-content {
    padding: 40px 20px;
  }
  .services {
    padding: 60px 20px;
  }
  .services-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 40px;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-card {
    padding: 32px 20px;
    border-right: none !important;
  }
  .service-card:nth-child(3),
  .service-card:nth-child(6) {
    border-right: none !important;
  }
  .service-card:nth-child(4),
  .service-card:nth-child(5),
  .service-card:nth-child(6) {
    border-bottom: 1px solid var(--border);
  }
  .programs {
    padding: 60px 20px;
  }
  .programs-header {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 48px;
  }
  .programs-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .program-card {
    padding: 24px 20px;
  }
  .process {
    padding: 60px 20px;
  }
  .process-steps {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .process-steps::before {
    display: none;
  }
  .step {
    padding: 0;
    margin-bottom: 0;
  }
  .testimonials {
    padding: 60px 20px;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .testimonial {
    padding: 32px 20px;
  }
  .placements {
    padding: 40px 20px;
  }
  .schools-row {
    flex-direction: column;
    align-items: stretch;
  }
  .school-name {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
    text-align: center;
  }
  .cta-section {
    padding: 60px 20px;
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  .cta-section::after {
    display: none;
  }
  .cta-group {
    flex-direction: row;
    justify-content: center;
    gap: 16px;
  }
  .footer-main {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 20px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    padding: 20px;
    text-align: center;
  }
  .btn-primary,
  .btn-gold,
  .btn-outline,
  .btn-white,
  .btn-ghost {
    min-height: 44px;
    padding: 12px 24px;
    font-size: 10.5px;
  }
  .universities {
    padding: 60px 20px;
  }
  .universities-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .university-card {
    padding: 24px;
  }
  .university-name {
    font-size: 20px;
  }
  .about-hero {
    grid-template-columns: 1fr;
    padding: 60px 20px;
    text-align: center;
  }
  .about-hero-content {
    max-width: none;
  }
  .about-hero-image {
    min-height: 300px;
  }
  .our-story,
  .our-values,
  .our-team {
    padding: 60px 20px;
  }
  .story-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .story-stats {
    grid-template-columns: 1fr;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .team-grid {
    grid-template-columns: 1fr;
  }
  .value-card,
  .team-member {
    max-width: 400px;
    margin: 0 auto;
  }
  .programs-hero {
    padding: 60px 20px;
  }
  .programs-section {
    padding: 60px 20px;
  }
  .program-card {
    padding: 32px;
  }
  .program-name {
    font-size: 24px;
  }
  .why-choose-us,
  .program-comparison {
    padding: 60px 20px;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .comparison-table {
    font-size: 12px;
  }
  .faq-hero {
    padding: 60px 20px;
  }
  .faq-categories {
    padding: 60px 20px;
  }
  .categories-grid {
    grid-template-columns: 1fr;
  }
  .category-card {
    max-width: 400px;
    margin: 0 auto;
  }
  .faq-accordion {
    padding: 60px 20px;
  }
  .accordion-header {
    padding: 20px 24px;
    font-size: 15px;
  }
  .accordion-content {
    padding: 0 24px 20px;
  }
  .faq-cta {
    padding: 40px 20px;
  }
  .cta-title {
    font-size: 28px;
  }
  .contact-hero {
    padding: 60px 20px;
  }
  .contact-section {
    padding: 60px 20px;
  }
  .contact-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .contact-form-container {
    padding: 32px;
  }
  .contact-form-title {
    font-size: 24px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .office-locations {
    padding: 60px 20px;
  }
  .locations-grid {
    grid-template-columns: 1fr;
  }
  .consultation-modal {
    padding: 20px 16px;
  }
  .consultation-modal__dialog {
    padding: 28px 24px 24px;
  }
  .consultation-modal__title {
    padding-right: 40px;
  }
  .consultation-modal__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .consultation-modal__submit {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .hero {
    min-height: 360px;
  }
  .hero-content {
    padding: 0 16px 40px;
  }
  .hero h1 {
    font-size: clamp(24px, 8vw, 36px);
  }
  .hero-actions {
    flex-direction: column;
    gap: 12px;
  }
  .stats-bar {
    grid-template-columns: 1fr;
  }
  .programs-grid {
    grid-template-columns: 1fr;
  }
  .cta-group {
    flex-direction: column;
  }
  .universities {
    padding: 40px 16px;
  }
  .university-card {
    padding: 20px;
  }
  .university-header {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }
  .university-meta {
    flex-direction: column;
    gap: 4px;
  }
  .university-recognition {
    flex-wrap: wrap;
  }
  .about-hero {
    padding: 40px 16px;
  }
  .about-hero-title {
    font-size: clamp(28px, 6vw, 36px);
  }
  .our-story,
  .our-values,
  .our-team {
    padding: 40px 16px;
  }
  .story-stat {
    padding: 24px;
  }
  .stat-number {
    font-size: 36px;
  }
  .value-card {
    padding: 24px 16px;
  }
  .member-image {
    height: 150px;
  }
  .programs-hero {
    padding: 40px 16px;
  }
  .programs-hero-title {
    font-size: clamp(28px, 6vw, 36px);
  }
  .programs-section {
    padding: 40px 16px;
  }
  .program-card {
    padding: 24px;
  }
  .program-header {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
  .program-name {
    font-size: 20px;
  }
  .why-choose-us,
  .program-comparison {
    padding: 40px 16px;
  }
  .why-card {
    padding: 24px 16px;
  }
  .comparison-cell {
    padding: 12px;
    font-size: 12px;
  }
  .faq-hero {
    padding: 40px 16px;
  }
  .faq-hero-title {
    font-size: clamp(28px, 6vw, 36px);
  }
  .faq-categories {
    padding: 40px 16px;
  }
  .category-card {
    padding: 24px;
  }
  .faq-accordion {
    padding: 40px 16px;
  }
  .faq-section-title {
    font-size: 24px;
  }
  .accordion-header {
    padding: 16px 20px;
    font-size: 14px;
  }
  .accordion-content {
    padding: 0 20px 16px;
  }
  .faq-cta {
    padding: 32px 16px;
  }
  .cta-title {
    font-size: 24px;
  }
  .cta-desc {
    font-size: 16px;
  }
  .contact-hero {
    padding: 40px 16px;
  }
  .contact-hero-title {
    font-size: clamp(28px, 6vw, 36px);
  }
  .contact-section {
    padding: 40px 16px;
  }
  .contact-form-container {
    padding: 24px;
  }
  .contact-form-title {
    font-size: 20px;
  }
  .contact-info-section {
    padding: 24px;
  }
  .office-locations {
    padding: 40px 16px;
  }
  .location-card {
    max-width: 400px;
    margin: 0 auto;
  }
  .consultation-modal__dialog {
    padding: 24px 18px 20px;
  }
  .consultation-modal__close {
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
  }
  .consultation-modal__desc {
    font-size: 15px;
  }
}
.fee-disclaimer {
  margin-bottom: 2rem;
}
.fee-disclaimer-inner {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: #fffbeb;
  border-left: 4px solid #f59e0b;
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  flex-wrap: wrap;
}
.fee-disclaimer-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.fee-disclaimer-text {
  flex: 1;
  min-width: 200px;
}
.fee-disclaimer-text strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.4rem;
  color: #92400e;
}
.fee-disclaimer-text p {
  margin: 0 0 0.4rem;
  font-size: 0.9rem;
  color: #78350f;
  line-height: 1.5;
}
.fee-disclaimer-text p:last-child {
  margin-bottom: 0;
}
.fee-contact-btn {
  background: #f59e0b;
  color: #fff;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  align-self: center;
  transition: background 0.2s;
}
.fee-contact-btn:hover {
  background: #d97706;
}
.fee-table-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.fee-university-block {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  overflow: hidden;
}
.fee-uni-name {
  margin: 0;
  padding: 1rem 1.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  background: rgba(0, 0, 0, 0.04);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.fee-program-group {
  padding: 1rem 1.5rem;
}
.fee-program-group + .fee-program-group {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.fee-program-type {
  margin: 0 0 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.6;
}
.fee-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.fee-table thead tr {
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}
.fee-table th {
  text-align: left;
  padding: 0.6rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.7;
}
.fee-table td {
  padding: 0.6rem 0.75rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.fee-table tbody tr:last-child td {
  border-bottom: none;
}
.fee-table tbody tr:hover {
  background: rgba(0, 0, 0, 0.02);
}
.fee-table td:nth-child(2),
.fee-table th:nth-child(2) {
  text-align: right;
}
.fee-table td:nth-child(3),
.fee-table th:nth-child(3) {
  text-align: center;
  white-space: nowrap;
}
@media (max-width: 600px) {
  .fee-disclaimer-inner {
    flex-direction: column;
  }
  .fee-contact-btn {
    width: 100%;
    text-align: center;
  }
  .fee-table th,
  .fee-table td {
    padding: 0.5rem;
    font-size: 0.82rem;
  }
  .fee-uni-name {
    font-size: 1rem;
  }
  .fee-program-group {
    padding: 0.75rem 1rem;
  }
}
