@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap");

:root {
  --brand-navy: #1a3668;
  --brand-navy-deep: #12264a;
  --brand-light: #7b8eb0;
  --brand-gold: #f5a623;
  --brand-gold-bright: #fbbf24;
  --brand-bg: #f4f6f9;
  --brand-surface: #ffffff;
  --text-body: #334155;
  --text-muted: #64748b;
  --border-soft: #e2e8f0;
  --shadow-header: 0 1px 2px rgba(26, 54, 104, 0.04);
  --shadow-card: 0 8px 20px -12px rgba(26, 54, 104, 0.12);
  --heading-rule-w: 2.5rem;
  --heading-rule-h: 2px;
  --heading-rule-gap: 0.75rem;
}

body {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  color: var(--text-body);
  background-color: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.site-content {
  min-height: 50vh;
}

h1, h2, h3, h4 {
  color: var(--brand-navy);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3.5rem;
  z-index: 100;
  border-radius: 0.5rem;
  background: var(--brand-navy);
  color: #fff;
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
}

.focus-ring:focus-visible {
  outline: 2px solid var(--brand-gold);
  outline-offset: 2px;
}

/* ——— Site header ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--border-soft);
  background: #fff;
  box-shadow: var(--shadow-header);
}

.site-header__bar {
  display: flex;
  width: 100%;
  max-width: 80rem;
  margin-inline: auto;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
}

@media (min-width: 640px) {
  .site-header__bar {
    padding-inline: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .site-header__bar {
    padding-inline: 2rem;
  }
}

.site-header__logo {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  border-radius: 0.5rem;
  padding: 0.15rem 0.25rem;
}

.site-header__logo img {
  display: block;
  height: 2rem;
  width: auto;
}

@media (min-width: 640px) {
  .site-header__logo img {
    height: 2.25rem;
  }
}

.site-header__nav {
  display: none;
  align-items: center;
  gap: 0.125rem;
}

@media (min-width: 1280px) {
  .site-header__nav {
    display: flex;
  }
}

.site-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  border-radius: 0.5rem;
  border: none;
  background: transparent;
  padding: 0.5rem 0.75rem;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 650;
  color: var(--text-muted);
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.site-nav-link:hover {
  color: var(--brand-navy);
  background: rgba(26, 54, 104, 0.05);
}

.site-nav-link.nav-active {
  color: var(--brand-navy) !important;
  background: rgba(245, 166, 35, 0.1);
}

.site-nav-chevron {
  width: 1rem;
  height: 1rem;
  opacity: 0.7;
}

.site-nav-trigger {
  cursor: pointer;
}

.site-header__dropdown {
  border-radius: 0.75rem;
  border: 1px solid var(--border-soft);
  background: #fff;
  padding: 0.5rem 0;
  box-shadow: 0 10px 24px -12px rgba(26, 54, 104, 0.2);
}

.site-header__dropdown-link {
  display: block;
  padding: 0.55rem 1rem;
  font-size: 0.875rem;
  color: #334155;
  text-decoration: none;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.site-header__dropdown-link:hover,
.site-header__dropdown-link.is-active {
  background: rgba(245, 166, 35, 0.12);
  color: var(--brand-navy);
  font-weight: 600;
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.site-header__cta {
  display: none !important;
}

@media (min-width: 640px) {
  .site-header__cta {
    display: inline-flex !important;
  }
}

.site-header__menu-btn {
  display: inline-flex;
  cursor: pointer;
  border: none;
  border-radius: 0.625rem;
  background: rgba(26, 54, 104, 0.06);
  padding: 0.5rem;
  color: var(--brand-navy);
  transition: background-color 0.2s ease;
}

.site-header__menu-btn:hover {
  background: rgba(26, 54, 104, 0.1);
}

@media (min-width: 1280px) {
  .site-header__menu-btn {
    display: none;
  }
}

.site-header__mobile {
  border-top: 1px solid var(--border-soft);
  background: #fff;
}

@media (min-width: 1280px) {
  .site-header__mobile {
    display: none !important;
  }
}

.site-header__mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 0.75rem 1rem;
}

.site-header__mobile-nav .site-nav-link {
  width: 100%;
  justify-content: space-between;
  padding: 0.75rem;
  font-weight: 650;
  color: #334155;
}

.site-header__mobile-sub {
  margin-left: 0.75rem;
  border-left: 2px solid rgba(245, 166, 35, 0.45);
  padding-left: 0.75rem;
}

.site-header__mobile-sublink {
  display: block;
  padding: 0.5rem 0;
  font-size: 0.875rem;
  color: var(--text-muted);
  text-decoration: none;
}

.site-header__mobile-sublink:hover,
.site-header__mobile-sublink.is-active {
  color: var(--brand-navy);
  font-weight: 600;
}

.site-header__mobile-cta {
  border-top: 1px solid var(--border-soft);
  padding: 1rem;
}

@media (min-width: 1280px) {
  .site-header__mobile-cta {
    display: none;
  }
}

/* Gold accent under headings — short, solid, no glow */
.oc-heading-rule::after,
.oc-page-hero__title::after,
.oc-home-hero__title::after,
.oc-page-intro__title::after,
#results-heading::after {
  content: "";
  display: block;
  width: var(--heading-rule-w);
  height: var(--heading-rule-h);
  margin-top: var(--heading-rule-gap);
  border-radius: 1px;
  background-color: var(--brand-gold);
}

/* Slightly longer mark under large hero titles */
.oc-page-hero__title::after,
.oc-home-hero__title::after,
.oc-page-intro__title::after {
  width: 3rem;
}

.text-center > .oc-heading-rule::after,
.text-center .oc-heading-rule::after {
  margin-inline: auto;
}

/* Tighter rule when lead text follows immediately */
.oc-heading-rule + .oc-page-hero__lead,
.oc-heading-rule + .oc-home-hero__lead,
.oc-heading-rule + .oc-page-intro__lead,
.oc-page-hero__title + .oc-page-hero__lead,
.oc-home-hero__title + .oc-home-hero__lead,
.oc-page-intro__title + .oc-page-intro__lead {
  margin-top: 1rem;
}

.oc-page-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-soft);
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.oc-page-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 100% 0%, rgba(245, 166, 35, 0.08), transparent 55%),
    radial-gradient(ellipse 50% 60% at 0% 100%, rgba(26, 54, 104, 0.05), transparent 50%);
  pointer-events: none;
}

.oc-page-hero__bg::after {
  display: none;
}

.oc-page-hero__inner {
  position: relative;
  width: 100%;
  max-width: 80rem;
  margin-inline: auto;
  padding: 2.75rem 1rem;
}

@media (min-width: 640px) {
  .oc-page-hero__inner {
    padding-inline: 1.5rem;
    padding-block: 3.25rem;
  }
}

@media (min-width: 1024px) {
  .oc-page-hero__inner {
    padding-inline: 2rem;
    padding-block: 3.5rem;
  }
}

.oc-page-hero__title {
  margin-top: 1rem;
  max-width: 48rem;
  font-size: clamp(1.875rem, 3.5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--brand-navy);
}

.oc-page-hero .oc-breadcrumb {
  margin-bottom: 0;
}

.oc-page-hero__lead,
.oc-page-hero__desc {
  margin-top: 0.75rem;
  max-width: 36rem;
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--text-muted);
}

.oc-page-intro {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-soft);
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.oc-page-intro::before {
  display: none;
}

.oc-page-intro__inner {
  position: relative;
  width: 100%;
  max-width: 80rem;
  margin-inline: auto;
  padding: 1.75rem 1rem 2rem;
}

@media (min-width: 640px) {
  .oc-page-intro__inner {
    padding-inline: 1.5rem;
    padding-block: 2rem;
  }
}

@media (min-width: 1024px) {
  .oc-page-intro__inner {
    padding-inline: 2rem;
  }
}

.oc-page-intro__title {
  margin-top: 0.5rem;
  font-size: clamp(1.625rem, 2.8vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--brand-navy);
}

.oc-page-intro__lead {
  margin-top: 0.5rem;
  max-width: 36rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--text-muted);
}

.oc-page-intro__desc {
  margin-top: 0.625rem;
  max-width: 40rem;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.oc-breadcrumb {
  font-size: 0.875rem;
  color: #94a3b8;
}

.oc-breadcrumb a {
  color: inherit;
  text-decoration: none;
  transition: color 0.15s ease;
}

.oc-breadcrumb a:hover {
  color: var(--brand-navy);
}

.oc-breadcrumb__current {
  font-weight: 600;
  color: var(--brand-navy);
}

.oc-home-hero {
  position: relative;
  overflow: hidden;
  min-height: 22rem;
  display: flex;
  align-items: flex-end;
  border-bottom: 1px solid var(--border-soft);
  background: #f4f1ec;
}

.oc-home-hero__media-wrap {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.oc-home-hero__media {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: oc-home-hero-fade 0.7s ease-out both;
}

@keyframes oc-home-hero-fade {
  from {
    opacity: 0.88;
  }
  to {
    opacity: 1;
  }
}

.oc-home-hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      105deg,
      rgba(255, 255, 255, 0.96) 0%,
      rgba(255, 255, 255, 0.92) 30%,
      rgba(255, 255, 255, 0.68) 46%,
      rgba(255, 255, 255, 0.22) 62%,
      transparent 78%
    ),
    linear-gradient(to top, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0.2) 34%, transparent 58%);
}

.oc-home-hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 80rem;
  margin-inline: auto;
  padding: 2.5rem 1rem 2.25rem;
  animation: oc-home-hero-rise 0.55s ease-out both;
}

@keyframes oc-home-hero-rise {
  from {
    opacity: 0;
    transform: translateY(0.5rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 640px) {
  .oc-home-hero {
    min-height: 24rem;
  }

  .oc-home-hero__inner {
    padding: 2.75rem 1.5rem 2.5rem;
  }
}

@media (min-width: 1024px) {
  .oc-home-hero {
    min-height: 26rem;
  }

  .oc-home-hero__inner {
    padding: 3rem 2rem 2.75rem;
  }
}

.oc-home-hero__brand {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-navy);
}

.oc-home-hero__title {
  margin-top: 0.7rem;
  max-width: 36rem;
  font-size: clamp(1.85rem, 3.6vw, 2.85rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--brand-navy);
}

.oc-home-hero__lead,
.oc-home-hero__desc {
  margin-top: 0.85rem;
  max-width: 30rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--text-muted);
}

.oc-home-hero__actions {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

@media (prefers-reduced-motion: reduce) {
  .oc-home-hero__media,
  .oc-home-hero__inner {
    animation: none;
    transform: none;
    opacity: 1;
  }
}

.card-hover {
  transition: box-shadow 0.2s ease, transform 0.2s ease, background-color 0.2s ease;
}

.card-hover:hover {
  box-shadow: var(--shadow-card);
}

@media (prefers-reduced-motion: reduce) {
  .card-hover {
    transition: none;
  }
}

/* Homepage — borderless surfaces (spacing + soft panels) */
.oc-home {
  background: #f7f8fb;
}

.oc-home .oc-home-hero {
  border-bottom: none;
}

.oc-home-band {
  background: transparent;
}

.oc-home-band--soft {
  background: rgba(255, 255, 255, 0.72);
}

.oc-home-panel {
  background: #fff;
  box-shadow: 0 1px 2px rgba(26, 54, 104, 0.03), 0 10px 28px -18px rgba(26, 54, 104, 0.18);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.oc-home-panel--tint {
  background: linear-gradient(160deg, #ffffff 0%, #f3f6fb 100%);
}

a.oc-home-panel:hover,
.card-hover.oc-home-panel:hover {
  box-shadow: 0 2px 4px rgba(26, 54, 104, 0.05), 0 16px 36px -16px rgba(26, 54, 104, 0.22);
  transform: translateY(-2px);
}

@media (prefers-reduced-motion: reduce) {
  a.oc-home-panel:hover,
  .card-hover.oc-home-panel:hover {
    transform: none;
  }
}

/* Homepage — Why editorial split */
.oc-why-split {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .oc-why-split {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 3.5rem;
  }
}

.oc-why-split__media {
  margin: 0;
  overflow: hidden;
  border-radius: 1.25rem;
  box-shadow: 0 1px 2px rgba(26, 54, 104, 0.04), 0 18px 40px -24px rgba(26, 54, 104, 0.28);
  background: #dde3ee;
  aspect-ratio: 4 / 3;
}

.oc-why-split__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s ease;
}

.oc-why-split:hover .oc-why-split__media img {
  transform: scale(1.03);
}

.oc-why-split__lead {
  margin-top: 1rem;
  max-width: 32rem;
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.55;
  color: var(--text-muted);
}

.oc-why-split__list {
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.oc-why-split__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 0.975rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--brand-navy);
}

.oc-why-split__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  flex-shrink: 0;
  border-radius: 0.75rem;
  background: rgba(245, 166, 35, 0.14);
  color: var(--brand-navy);
}

@media (prefers-reduced-motion: reduce) {
  .oc-why-split__media img,
  .oc-why-split:hover .oc-why-split__media img {
    transition: none;
    transform: none;
  }
}

/* About — process steps (Option A: editorial numbers) */
.oc-process {
  list-style: none;
  margin: 0;
  padding: 0;
}

.oc-process__title {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--brand-navy);
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.oc-process__desc {
  margin: 0.625rem 0 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-body);
}

.oc-process--editorial {
  display: grid;
  gap: 2.5rem;
}

.oc-process--editorial .oc-process__step {
  position: relative;
  padding-top: 0.5rem;
}

.oc-process--editorial .oc-process__watermark {
  display: block;
  margin-bottom: 0.875rem;
  font-size: clamp(2.75rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--brand-navy);
  opacity: 0.1;
  user-select: none;
}

.oc-process--editorial .oc-process__title {
  position: relative;
  padding-bottom: 0.75rem;
}

.oc-process--editorial .oc-process__title::after {
  content: "";
  display: block;
  width: 2.5rem;
  height: 2px;
  margin-top: 0.75rem;
  background: var(--brand-gold);
  border-radius: 1px;
}

.oc-process--editorial .oc-process__desc {
  max-width: 34ch;
}

@media (min-width: 768px) {
  .oc-process--editorial {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.5rem 2rem;
  }
}

@media (min-width: 1024px) {
  .oc-process--editorial {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2rem 1.75rem;
  }

  .oc-process--editorial .oc-process__desc {
    max-width: none;
  }
}

/* Career coaching — denser editorial grid + bullet lists */
.oc-career-services {
  gap: 1.5rem;
}

.oc-career-services .oc-process__step {
  padding: 1.75rem 1.5rem;
  border: 1px solid var(--border-soft);
  border-radius: 1rem;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.oc-career-services .oc-process__step:hover {
  border-color: rgba(245, 166, 35, 0.4);
  box-shadow: var(--shadow-card);
}

@media (prefers-reduced-motion: reduce) {
  .oc-career-services .oc-process__step {
    transition: none;
  }
}

@media (min-width: 768px) {
  .oc-career-services {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .oc-career-services .oc-process__step {
    padding: 2rem 1.75rem;
  }
}

@media (min-width: 1024px) {
  .oc-career-services {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .oc-career-services .oc-process__step.is-wide {
    grid-column: 1 / -1;
  }
}

.oc-career-services .oc-process__desc {
  max-width: none;
}

.oc-career-services__list {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.oc-career-services__list.is-wide {
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .oc-career-services__list.is-wide {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem 1.5rem;
  }
}

.oc-career-services__list > li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--text-body);
}

.oc-career-services__bullet {
  flex-shrink: 0;
  width: 0.375rem;
  height: 0.375rem;
  margin-top: 0.45rem;
  border-radius: 999px;
  background: var(--brand-gold);
}

.oc-career-services__link {
  display: block;
  color: inherit;
  text-decoration: none;
  border-radius: 0.5rem;
  transition: opacity 0.2s ease;
}

.oc-career-services__link:hover .oc-process__title {
  color: var(--brand-navy);
}

.oc-career-services__link:hover .oc-career-services__cta {
  color: var(--brand-navy);
}

.oc-career-services__cta {
  margin: 1.25rem 0 0;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--brand-gold);
}

body.menu-open {
  overflow: hidden;
}

.nav-active {
  color: var(--brand-navy) !important;
  background: rgba(245, 166, 35, 0.12);
}

.flag-img {
  width: 3rem;
  height: 2rem;
  border-radius: 0.25rem;
  object-fit: cover;
  border: 1px solid rgba(26, 54, 104, 0.12);
  box-shadow: 0 1px 2px rgba(26, 54, 104, 0.08);
}

.nav-dropdown-panel {
  display: none;
}

.nav-dropdown:focus-within .nav-dropdown-panel,
.nav-dropdown:hover .nav-dropdown-panel {
  display: block;
}

@media (prefers-reduced-motion: no-preference) {
  .nav-dropdown-panel {
    animation: fadeIn 0.15s ease;
  }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

.mobile-submenu {
  display: none;
}

.mobile-submenu.is-open {
  display: block;
}

.hero-gradient {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.85) 70%, #fff 100%);
}

.city-card-img {
  height: 11rem;
  object-fit: cover;
  background: var(--brand-bg);
}

.info-card-img {
  height: 10rem;
  object-fit: cover;
  background: var(--brand-bg);
}

.icon-lucide {
  stroke-width: 1.75;
  flex-shrink: 0;
}

.icon-lucide svg {
  stroke-width: 1.75;
}

.icon-xs { width: 1rem; height: 1rem; }
.icon-sm { width: 1.25rem; height: 1.25rem; }
.icon-md { width: 1.5rem; height: 1.5rem; }
.icon-lg { width: 1.75rem; height: 1.75rem; }
.icon-xl { width: 2rem; height: 2rem; }

.icon-feature-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: rgba(26, 54, 104, 0.08);
  color: var(--brand-navy);
  margin-bottom: 0.75rem;
}

.icon-service-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: rgba(26, 54, 104, 0.08);
  color: var(--brand-navy);
  transition: background-color 0.2s ease, color 0.2s ease;
}

.group:hover .icon-service-box {
  background: rgba(245, 166, 35, 0.2);
  color: var(--brand-gold);
}

.icon-contact-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background: rgba(26, 54, 104, 0.08);
  color: var(--brand-navy);
  flex-shrink: 0;
}

.icon-contact-box.is-gold {
  background: rgba(245, 166, 35, 0.2);
}

.icon-feature-box.is-gold {
  background: rgba(245, 166, 35, 0.2);
}

.icon-check {
  color: var(--brand-gold);
  flex-shrink: 0;
}

.icon-badge-navy {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 9999px;
  background: var(--brand-navy);
  color: #fff;
  box-shadow: 0 4px 12px rgba(26, 54, 104, 0.25);
}

.icon-badge-gold {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background: var(--brand-gold);
  color: var(--brand-navy);
}

.icon-field-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-navy);
}

.why-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(226, 232, 240, 1);
  background: #fff;
  transition: border-color 0.2s ease;
}

.why-item:hover {
  border-color: rgba(245, 166, 35, 0.4);
}

.why-circle {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(26, 54, 104, 0.15);
  background: #fff;
  color: var(--brand-navy);
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.why-item:hover .why-circle {
  border-color: rgba(245, 166, 35, 0.5);
  background: rgba(245, 166, 35, 0.08);
}

.icon-pin {
  color: var(--brand-navy);
  margin-top: 0.125rem;
}

.maple-leaf {
  width: 3.5rem;
  height: 3.5rem;
  color: var(--brand-gold);
  flex-shrink: 0;
}

.cta-banner {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  background: var(--brand-navy);
}

.cta-banner-skyline {
  position: absolute;
  left: -0.5rem;
  bottom: -0.25rem;
  width: 14rem;
  height: auto;
  opacity: 0.22;
  pointer-events: none;
  user-select: none;
}

@media (min-width: 640px) {
  .cta-banner-skyline {
    left: 0;
    width: 18rem;
    opacity: 0.18;
  }
}

@media (min-width: 1024px) {
  .cta-banner-skyline {
    width: 22rem;
    opacity: 0.16;
  }
}

.cta-banner-inner {
  position: relative;
  z-index: 1;
}

.cta-btn-primary {
  display: inline-flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 0.5rem;
  background: var(--brand-gold);
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--brand-navy);
  white-space: nowrap;
  transition: background-color 0.2s ease;
}

.cta-btn-primary:hover {
  background: #fbbf24;
}

.cta-btn-ghost {
  display: inline-flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 0.5rem;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  background: transparent;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.cta-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.8);
}

a.oc-btn,
button.oc-btn {
  appearance: none;
  -webkit-appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
  border: none;
  text-decoration: none;
  font-family: inherit;
  font-weight: 700;
  line-height: 1.25;
  white-space: nowrap;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.oc-btn-gold {
  border-radius: 0.5rem;
  background: var(--brand-gold);
  color: var(--brand-navy);
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
}

.oc-btn-gold:hover {
  background: #fbbf24;
}

.oc-btn-gold-lg {
  border-radius: 0.75rem;
  padding: 0.875rem 1.5rem;
}

.oc-btn-navy {
  border-radius: 0.75rem;
  background: var(--brand-navy);
  color: #fff;
  font-size: 0.875rem;
  padding: 0.625rem 1rem;
}

.oc-btn-navy:hover {
  background: rgba(26, 54, 104, 0.9);
}

.oc-btn-navy-lg {
  padding: 0.875rem 1.5rem;
}

.oc-btn-outline {
  border-radius: 0.75rem;
  background: #fff;
  color: var(--brand-navy);
  border: 2px solid rgba(26, 54, 104, 0.2);
  font-size: 0.875rem;
  padding: 0.875rem 1.5rem;
}

.oc-btn-outline:hover {
  border-color: var(--brand-gold);
  background: rgba(245, 166, 35, 0.05);
}

.oc-btn-outline-light {
  border-radius: 0.5rem;
  background: #fff;
  color: var(--brand-navy);
  border: 1.5px solid rgba(26, 54, 104, 0.2);
  font-size: 0.875rem;
  padding: 0.625rem 1.25rem;
}

.oc-btn-outline-light:hover {
  border-color: var(--brand-gold);
  background: rgba(245, 166, 35, 0.05);
}

.oc-btn-block {
  width: 100%;
}

@media (min-width: 640px) {
  .oc-btn-block-sm-auto {
    width: auto;
  }
}

.oc-btn-shrink-0 {
  flex-shrink: 0;
}

.program-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid #e2e8f0;
  background: #fff;
}

@media (min-width: 640px) {
  .program-card {
    flex-direction: row;
  }
}

.program-card__media {
  position: relative;
  min-height: 11rem;
  background: var(--brand-bg);
}

@media (min-width: 640px) {
  .program-card__media {
    min-height: 100%;
    width: 14rem;
    flex-shrink: 0;
  }
}

@media (min-width: 1024px) {
  .program-card__media {
    width: 16rem;
  }
}

.program-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.25rem;
}

@media (min-width: 640px) {
  .program-card__body {
    padding: 1.5rem;
  }
}

.program-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding-top: 1.25rem;
  margin-top: auto;
}

.program-tag {
  display: inline-flex;
  align-items: center;
  border-radius: 9999px;
  background: rgba(26, 54, 104, 0.08);
  padding: 0.25rem 0.625rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--brand-navy);
}

.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  cursor: pointer;
  border-radius: 9999px;
  border: 1px solid rgba(26, 54, 104, 0.15);
  background: #fff;
  padding: 0.375rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--brand-navy);
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.filter-chip:hover {
  border-color: rgba(245, 166, 35, 0.5);
  background: rgba(245, 166, 35, 0.08);
}

.pagination-btn {
  display: inline-flex;
  height: 2.25rem;
  width: 2.25rem;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  border: 1px solid #e2e8f0;
  background: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brand-navy);
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.pagination-btn:hover {
  border-color: rgba(245, 166, 35, 0.5);
}

.pagination-btn.is-active {
  border-color: var(--brand-gold);
  background: rgba(245, 166, 35, 0.15);
}

/* Site footer — colors in theme CSS, not Tailwind CDN */
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background-color: var(--brand-navy);
  color: #fff;
}

.site-footer a {
  text-decoration: none;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.site-footer__tagline {
  color: rgba(255, 255, 255, 0.7);
}

.site-footer__heading {
  color: var(--brand-gold);
  font-weight: 700;
}

.site-footer__links {
  color: rgba(255, 255, 255, 0.8);
}

.site-footer__links a {
  color: rgba(255, 255, 255, 0.8);
}

.site-footer__links a:hover {
  color: var(--brand-gold);
}

.site-footer__dim {
  color: rgba(255, 255, 255, 0.6);
}

.site-footer__bar {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
}

.site-footer__bar a {
  color: rgba(255, 255, 255, 0.5);
}

.site-footer__bar a:hover {
  color: var(--brand-gold);
}

.site-footer__social {
  display: flex;
  height: 2.25rem;
  width: 2.25rem;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.site-footer__social:hover {
  background: var(--brand-gold);
  color: var(--brand-navy);
}

/* Contact form */
.oc-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.oc-form-notice {
  margin-top: 1.5rem;
  border-radius: 0.75rem;
  border: 1px solid transparent;
  padding: 0.875rem 1rem;
  font-size: 0.875rem;
  line-height: 1.5;
}

.oc-form-notice.is-success {
  border-color: #86efac;
  background: #f0fdf4;
  color: #166534;
}

.oc-form-notice.is-error {
  border-color: #fca5a5;
  background: #fef2f2;
  color: #991b1b;
}

.oc-field.is-invalid .oc-field-control,
.oc-field.is-invalid input[type="file"],
.oc-field.is-invalid select,
.oc-field.is-invalid textarea {
  border-color: #ef4444 !important;
}

.oc-field.is-invalid > label.flex {
  border-color: #fca5a5;
  background: #fef2f2;
}

.oc-field-error {
  margin-top: 0.5rem;
  font-size: 0.8125rem;
  line-height: 1.4;
  color: #b91c1c;
}

.oc-captcha-question {
  display: inline-flex;
  min-width: 5rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  background: var(--brand-bg);
  padding: 0.75rem 1rem;
  font-weight: 700;
  color: var(--brand-navy);
}

.oc-recaptcha-wrap {
  overflow: hidden;
}

/* Job search cards — rendered via JS */
.job-card {
  border-radius: 1rem;
  border: 1px solid #e2e8f0;
  background: #fff;
  padding: 1.5rem;
}

.job-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.job-card__brand {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
}

.job-type-badge {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  border-radius: 9999px;
  background: rgba(26, 54, 104, 0.08);
  padding: 0.375rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--brand-navy);
}

.job-type-badge.is-soft {
  background: rgba(245, 166, 35, 0.15);
  color: #92400e;
}

.job-card__meta {
  margin-top: 1rem;
  display: grid;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #475569;
}

@media (min-width: 640px) {
  .job-card__meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.job-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

/* Job details page */
.job-details__card {
  border-radius: 1rem;
  border: 1px solid #e2e8f0;
  background: #fff;
  padding: 1.5rem;
}

.job-details__heading {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--brand-navy);
}

.prose-job {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #475569;
}

.prose-job p + p {
  margin-top: 0.75rem;
}

.prose-job ul,
.prose-job ol {
  margin: 0.75rem 0 0.75rem 1.25rem;
}

.prose-job li + li {
  margin-top: 0.35rem;
}

.job-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.job-modal.hidden {
  display: none;
}

body.job-modal-open {
  overflow: hidden;
}

.job-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
}

.job-modal__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 42rem);
  max-height: calc(100vh - 2rem);
  overflow: auto;
  border-radius: 1rem;
  border: 1px solid #e2e8f0;
  background: #fff;
  padding: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(26, 54, 104, 0.25);
}

.job-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: inline-flex;
  height: 2.25rem;
  width: 2.25rem;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border: 1px solid #e2e8f0;
  background: #fff;
  color: var(--brand-navy);
}

.job-modal__hero {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding-right: 2.5rem;
}

.job-modal__hero-text {
  flex: 1;
}

.job-modal__facts {
  margin-top: 1.25rem;
  display: grid;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #475569;
}

.job-modal__section {
  margin-top: 1.5rem;
}

.job-modal__section h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--brand-navy);
}

.job-modal__richtext {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #475569;
}

.job-modal__richtext ul,
.job-modal__richtext ol {
  margin: 0.5rem 0 0.5rem 1.25rem;
}

.job-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid #e2e8f0;
}

/* Blog / Resources */
.blog-category-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.blog-category-chip {
  display: inline-flex;
  align-items: center;
  border-radius: 9999px;
  border: 1px solid #e2e8f0;
  background: #fff;
  padding: 0.5rem 0.875rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--brand-navy);
  text-decoration: none;
  transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.blog-category-chip:hover {
  border-color: rgba(245, 166, 35, 0.5);
  background: rgba(245, 166, 35, 0.08);
}

.blog-category-chip.is-active {
  border-color: var(--brand-navy);
  background: var(--brand-navy);
  color: #fff;
}

.blog-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.blog-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid #e2e8f0;
  background: #fff;
}

.blog-card__media {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--brand-bg);
}

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

.blog-card__placeholder {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  color: var(--brand-light);
}

.blog-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.25rem;
}

.blog-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: #64748b;
}

.blog-card__category {
  display: inline-flex;
  border-radius: 9999px;
  background: rgba(26, 54, 104, 0.08);
  padding: 0.25rem 0.625rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--brand-navy);
  text-decoration: none;
}

.blog-card__title {
  margin-top: 0.75rem;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--brand-navy);
}

.blog-card__title a {
  color: inherit;
  text-decoration: none;
}

.blog-card__title a:hover {
  color: var(--brand-gold);
}

.blog-card__excerpt {
  margin-top: 0.5rem;
  flex: 1;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #475569;
}

.blog-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  margin-top: 1rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--brand-navy);
  text-decoration: none;
}

.blog-card__link:hover {
  color: var(--brand-gold);
}

.blog-pagination {
  margin-top: 2.5rem;
}

.blog-pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.blog-pagination .page-numbers {
  display: inline-flex;
  min-width: 2.25rem;
  height: 2.25rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  border: 1px solid #e2e8f0;
  background: #fff;
  padding: 0 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brand-navy);
  text-decoration: none;
}

.blog-pagination .page-numbers.current,
.blog-pagination .page-numbers:hover {
  border-color: var(--brand-gold);
  background: rgba(245, 166, 35, 0.15);
}

.blog-single__hero {
  margin: 0;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid #e2e8f0;
  background: #fff;
}

.blog-single__hero img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.blog-single__card {
  border-radius: 1rem;
  border: 1px solid #e2e8f0;
  background: #fff;
  padding: 1.5rem;
}

.blog-single__heading {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--brand-navy);
}

.prose-blog {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: #475569;
}

.prose-blog > *:first-child {
  margin-top: 0;
}

.prose-blog p + p {
  margin-top: 1rem;
}

.prose-blog h2,
.prose-blog h3,
.prose-blog h4 {
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
  color: var(--brand-navy);
  font-weight: 700;
}

.prose-blog h2 {
  font-size: 1.375rem;
}

.prose-blog h3 {
  font-size: 1.125rem;
}

.prose-blog ul,
.prose-blog ol {
  margin: 1rem 0 1rem 1.25rem;
}

.prose-blog li + li {
  margin-top: 0.35rem;
}

.prose-blog a {
  color: var(--brand-navy);
  font-weight: 600;
}

.prose-blog a:hover {
  color: var(--brand-gold);
}

.prose-blog blockquote {
  margin: 1.25rem 0;
  border-left: 3px solid var(--brand-gold);
  padding-left: 1rem;
  color: var(--brand-navy);
  font-weight: 500;
}

.prose-blog img {
  margin: 1.25rem 0;
  border-radius: 0.75rem;
}
