@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@400;700&family=Source+Sans+3:wght@300;400;500;600;700&display=swap');

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 17px; line-height: 1.75;
  color: #1a1a1a; background: #fff;
  -webkit-font-smoothing: antialiased;
  padding-top: 70px;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Tokens ── */
:root {
  --navy:    #0d2240;
  --navy-md: #1a3a5c;
  --gold:    #b8860b;
  --gold-lt: #d4a017;
  --stone:   #f5f3ef;
  --mist:    #eaeff5;
  --mid:     #5a6472;
  --border:  #dde1e7;
  --white:   #ffffff;
  --max:     1160px;
  --r:       4px;
}

/* ── Layout ── */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 48px; }
.section { padding: 96px 0; }
.section--stone { background: var(--stone); }
.section--mist  { background: var(--mist); }
.section--navy  { background: var(--navy); }

/* ── Typography ── */
h1, h2, h3 { font-family: 'Merriweather', Georgia, serif; line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(2rem, 4.5vw, 3.8rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.8rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.5rem); font-weight: 400; }
h4 { font-size: 0.95rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gold); }
p { color: var(--mid); }
strong { color: #1a1a1a; font-weight: 600; }

/* ── Eyebrow ── */
.eyebrow {
  display: block; font-size: 12px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}
.section--navy .eyebrow { color: var(--gold-lt); }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Source Sans 3', sans-serif; font-size: 15px; font-weight: 600;
  padding: 13px 28px; border-radius: var(--r); cursor: pointer;
  transition: all 0.2s; white-space: nowrap; letter-spacing: 0.01em; border: 2px solid transparent;
}
.btn-primary    { background: var(--gold); color: #fff; border-color: var(--gold); }
.btn-primary:hover { background: var(--gold-lt); border-color: var(--gold-lt); box-shadow: 0 4px 16px rgba(184,134,11,0.3); transform: translateY(-1px); }
.btn-secondary  { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-secondary:hover { background: var(--navy); color: #fff; }
.btn-white      { background: #fff; color: var(--navy); border-color: #fff; }
.btn-white:hover { background: transparent; color: #fff; }
.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,0.5); }
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,0.08); }


/* ══════════════════════════════════════
   NAVIGATION
══════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav__inner {
  max-width: var(--max); margin: 0 auto; padding: 0 48px;
  height: 70px; display: flex; align-items: center; justify-content: space-between;
}
.nav__logo { display: flex; flex-direction: column; line-height: 1; gap: 3px; text-decoration: none; }
.nav__logo-name { font-family: 'Merriweather', serif; font-size: 1rem; font-weight: 700; color: #fff; }
.nav__logo-sub  { font-size: 10px; font-weight: 400; letter-spacing: 0.08em; color: rgba(255,255,255,0.45); }
.nav__links { display: flex; align-items: center; gap: 28px; }
.nav__links a { font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.7); transition: color 0.2s; white-space: nowrap; }
.nav__links a:hover, .nav__links a.active { color: #fff; }
.nav__links a.active { border-bottom: 2px solid var(--gold); padding-bottom: 2px; }
.nav__cta {
  background: var(--gold); color: #fff !important; font-size: 13px !important;
  font-weight: 600 !important; padding: 9px 18px; border-radius: var(--r);
  transition: background 0.2s !important; border-bottom: none !important;
}
.nav__cta:hover { background: var(--gold-lt) !important; }

/* Burger */
.nav__burger {
  display: none; background: none; border: none; cursor: pointer;
  padding: 6px; flex-direction: column; gap: 5px; flex-shrink: 0;
}
.nav__burger span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: all 0.3s; }

/* Mobile menu */
.nav__mob {
  display: none; flex-direction: column;
  background: var(--navy); border-top: 1px solid rgba(255,255,255,0.1);
}
.nav__mob a {
  padding: 14px 24px; font-size: 15px;
  color: rgba(255,255,255,0.8); border-bottom: 1px solid rgba(255,255,255,0.05);
}
.nav__mob a:hover { color: #fff; background: rgba(255,255,255,0.04); }
.nav__mob.open { display: flex; }

@media (max-width: 960px) {
  .nav__links { gap: 18px; }
  .nav__links a { font-size: 12px; }
}
@media (max-width: 820px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .nav__inner { padding: 0 20px; }
}


/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  background: var(--navy);
  display: grid; grid-template-columns: 55% 45%;
  min-height: calc(92vh - 70px);
}
.hero__content {
  display: flex; flex-direction: column; justify-content: center;
  padding: 72px 56px 72px 48px;
}
.hero__content h1 { color: #fff; margin-bottom: 20px; }
.hero__content h1 em { font-style: italic; color: var(--gold-lt); }
.hero__lead { font-size: 1.05rem; color: rgba(255,255,255,0.7); max-width: 520px; margin-bottom: 36px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero__image { position: relative; overflow: hidden; }
.hero__image img { width: 100%; height: 100%; object-fit: cover; }
.hero__image::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, var(--navy) 0%, rgba(13,34,64,0.1) 40%);
}
.hero__divider { background: var(--gold); height: 4px; width: 100%; }

@media (max-width: 1024px) {
  .hero { grid-template-columns: 60% 40%; }
  .hero__content { padding: 56px 40px 56px 36px; }
}
@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero__content { padding: 48px 24px; }
  .hero__image { height: 280px; }
  .hero__image::after { background: linear-gradient(to bottom, var(--navy) 0%, transparent 40%); }
}
@media (max-width: 480px) {
  .hero__content { padding: 36px 20px; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
}


/* ══════════════════════════════════════
   INTRO SPLIT
══════════════════════════════════════ */
.intro { background: var(--white); }
.intro__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.intro__text h2 { color: var(--navy); margin-bottom: 20px; }
.intro__text p + p { margin-top: 14px; }
.intro__callout {
  background: var(--stone); border-left: 4px solid var(--gold);
  padding: 36px; border-radius: 0 var(--r) var(--r) 0;
}
.intro__callout h3 { font-family: 'Merriweather', serif; font-size: 1.2rem; font-weight: 700; color: var(--navy); margin-bottom: 14px; }
.intro__callout p { font-size: 15px; }
.intro__callout p + p { margin-top: 12px; }
.intro__callout .btn { margin-top: 24px; }

@media (max-width: 768px) { .intro__grid { grid-template-columns: 1fr; gap: 40px; } }


/* ══════════════════════════════════════
   FEATURE CARDS
══════════════════════════════════════ */
.features { background: var(--stone); }
.features__header { margin-bottom: 48px; }
.features__header h2 { color: var(--navy); margin-top: 8px; }
.features__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.feat-card {
  background: var(--white); padding: 40px 32px;
  border-top: 3px solid transparent; transition: border-color 0.25s, box-shadow 0.25s;
}
.feat-card:hover { border-top-color: var(--gold); box-shadow: 0 8px 32px rgba(0,0,0,0.07); }
.feat-card__icon { width: 48px; height: 48px; margin-bottom: 20px; }
.feat-card h3 { font-family: 'Merriweather', serif; font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.feat-card p { font-size: 15px; }

@media (max-width: 768px) { .features__grid { grid-template-columns: 1fr; gap: 2px; } }


/* ══════════════════════════════════════
   IMPACT BAND
══════════════════════════════════════ */
.impact { background: var(--navy); }
.impact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.impact__text h2 { color: #fff; margin-top: 8px; margin-bottom: 20px; }
.impact__text p { color: rgba(255,255,255,0.72); font-size: 1.05rem; }
.impact__stats { display: flex; flex-direction: column; }
.impact__stat { padding: 24px 0; border-bottom: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; gap: 20px; }
.impact__stat:first-child { border-top: 1px solid rgba(255,255,255,0.1); }
.impact__stat-num { font-family: 'Merriweather', serif; font-size: 2.4rem; font-weight: 700; color: var(--gold-lt); min-width: 90px; line-height: 1; }
.impact__stat-label { font-size: 15px; color: rgba(255,255,255,0.75); }

@media (max-width: 768px) { .impact__grid { grid-template-columns: 1fr; gap: 40px; } }


/* ══════════════════════════════════════
   PATHWAY TEASERS (home)
══════════════════════════════════════ */
.path-home { background: var(--white); }
.path-home__header { margin-bottom: 40px; }
.path-home__header h2 { color: var(--navy); margin-top: 8px; }
.path-home__intro { max-width: 580px; margin-top: 12px; }
.path-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-bottom: 40px; }
.path-card {
  border: 1px solid var(--border); border-radius: var(--r);
  padding: 32px 26px; transition: all 0.22s; display: block;
}
.path-card:hover { border-color: var(--gold); box-shadow: 0 8px 28px rgba(0,0,0,0.08); transform: translateY(-3px); }
.path-card__label { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; display: block; }
.path-card h3 { font-family: 'Merriweather', serif; font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.path-card p { font-size: 15px; }
.path-card__level { display: inline-block; margin-top: 12px; font-size: 12px; font-weight: 600; background: var(--mist); color: var(--navy-md); padding: 4px 12px; border-radius: 20px; }

@media (max-width: 768px) { .path-cards { grid-template-columns: 1fr; } }


/* ══════════════════════════════════════
   CTA BAND
══════════════════════════════════════ */
.cta-band { background: var(--stone); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.cta-band__inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; padding: 52px 0; flex-wrap: wrap; }
.cta-band__text h2 { color: var(--navy); font-size: clamp(1.3rem, 2.5vw, 2rem); margin-bottom: 6px; }
.cta-band__text p { font-size: 1rem; }

@media (max-width: 600px) {
  .cta-band__inner { flex-direction: column; align-items: flex-start; gap: 20px; }
  .cta-band__inner .btn { width: 100%; justify-content: center; }
}


/* ══════════════════════════════════════
   PAGE HERO (inner pages)
══════════════════════════════════════ */
.page-hero { background: var(--navy); padding: 64px 0 64px; }
.page-hero h1 { color: #fff; margin-top: 10px; }
.page-hero p { color: rgba(255,255,255,0.68); font-size: 1.05rem; max-width: 600px; margin-top: 16px; }

@media (max-width: 480px) { .page-hero { padding: 48px 0; } }


/* ══════════════════════════════════════
   PATHWAY BLOCKS (pathways page)
══════════════════════════════════════ */
.pathway-block { padding: 72px 0; }
.pathway-block + .pathway-block { border-top: 1px solid var(--border); }
.pathway-block__grid { display: grid; grid-template-columns: 260px 1fr; gap: 64px; align-items: start; }
.pathway-block__meta { position: sticky; top: 88px; }
.pathway-block__meta .eyebrow { margin-bottom: 8px; }
.pathway-block__meta h2 { font-size: 1.9rem; color: var(--navy); margin-bottom: 6px; }
.pathway-block__meta .level-badge {
  display: inline-block; font-size: 12px; font-weight: 600; letter-spacing: 0.06em;
  background: var(--mist); color: var(--navy-md); padding: 5px 14px; border-radius: 20px; margin-top: 6px;
}
.pathway-block__content img {
  width: 100%; height: 260px; object-fit: cover; border-radius: var(--r); margin-bottom: 28px;
}
.pathway-details { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.pd-box { background: var(--stone); border-radius: var(--r); padding: 22px 24px; }
.pd-box.full { grid-column: 1 / -1; }
.pd-box h4 { margin-bottom: 8px; }
.pd-box p { font-size: 15px; color: var(--mid); }
.pd-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.pd-tag { font-size: 13px; font-weight: 500; background: var(--mist); color: var(--navy-md); padding: 4px 14px; border-radius: 20px; border: 1px solid var(--border); }
.pd-box .to-confirm { color: var(--gold); font-style: italic; font-weight: 600; font-size: 14px; }

@media (max-width: 900px) {
  .pathway-block__grid { grid-template-columns: 220px 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .pathway-block__grid { grid-template-columns: 1fr; gap: 28px; }
  .pathway-block__meta { position: static; }
  .pathway-details { grid-template-columns: 1fr; }
  .pathway-block { padding: 48px 0; }
}


/* ══════════════════════════════════════
   PROCESS STEPS
══════════════════════════════════════ */
.process { background: var(--navy); }
.process h2 { color: #fff; margin-top: 8px; margin-bottom: 48px; }
.process__row { display: grid; grid-template-columns: repeat(4,1fr); gap: 28px; position: relative; }
.process__row::before {
  content: ''; position: absolute; top: 24px; left: 10%; right: 10%;
  height: 1px; background: rgba(255,255,255,0.12); z-index: 0;
}
.proc-step { text-align: center; position: relative; z-index: 1; }
.proc-num {
  width: 48px; height: 48px; border-radius: 50%; background: var(--gold);
  color: #fff; font-family: 'Merriweather', serif; font-size: 1.1rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 18px;
}
.proc-step h4 { color: rgba(255,255,255,0.95); font-size: 0.85rem; margin-bottom: 8px; }
.proc-step p { font-size: 14px; color: rgba(255,255,255,0.55); }

@media (max-width: 768px) {
  .process__row { grid-template-columns: 1fr 1fr; gap: 32px; }
  .process__row::before { display: none; }
}
@media (max-width: 480px) {
  .process__row { grid-template-columns: 1fr; gap: 24px; }
}


/* ══════════════════════════════════════
   EMPLOYER BENEFITS
══════════════════════════════════════ */
.benefits { background: var(--white); }
.benefits__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.benefits__left h2 { color: var(--navy); margin-top: 8px; margin-bottom: 28px; }
.benefit-list { display: flex; flex-direction: column; margin-bottom: 32px; }
.benefit-row { display: flex; gap: 14px; align-items: flex-start; padding: 16px 0; border-bottom: 1px solid var(--border); }
.benefit-row:first-child { border-top: 1px solid var(--border); }
.benefit-tick {
  width: 24px; height: 24px; border-radius: 50%; background: var(--navy);
  color: #fff; font-size: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px;
}
.benefit-row p { font-size: 15px; color: #1a1a1a; }
.cic-box { background: var(--navy); color: #fff; border-radius: var(--r); padding: 40px 36px; }
.cic-box h3 { font-family: 'Merriweather', serif; font-size: 1.3rem; font-weight: 700; color: #fff; margin-bottom: 16px; margin-top: 10px; }
.cic-box p { color: rgba(255,255,255,0.72); font-size: 15px; line-height: 1.75; }
.cic-box p + p { margin-top: 12px; }

@media (max-width: 768px) { .benefits__grid { grid-template-columns: 1fr; gap: 40px; } }


/* ══════════════════════════════════════
   MOJ SECTION
══════════════════════════════════════ */
.moj-section { background: var(--stone); }
.moj-section__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.moj-section__visual { background: var(--mist); border-radius: var(--r); padding: 48px 36px; text-align: center; border: 1px solid var(--border); }
.moj-section__visual p { font-size: 14px; color: var(--mid); margin-top: 10px; }
.moj-section h2 { color: var(--navy); margin-top: 8px; margin-bottom: 16px; }
.moj-section p { font-size: 1rem; }
.moj-section p + p { margin-top: 14px; }
.moj-section .to-confirm { font-size: 13px; color: var(--gold); font-weight: 600; margin-top: 16px; font-style: italic; display: block; }

@media (max-width: 768px) { .moj-section__grid { grid-template-columns: 1fr; gap: 36px; } }


/* ══════════════════════════════════════
   CONTACT / FORM
══════════════════════════════════════ */
.contact { background: var(--white); }
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.contact__left h2 { color: var(--navy); margin-top: 8px; margin-bottom: 14px; }
.contact__left .lead { font-size: 1rem; margin-bottom: 36px; }
.contact-row { display: flex; gap: 14px; align-items: flex-start; padding: 14px 0; border-bottom: 1px solid var(--border); }
.contact-row:first-of-type { border-top: 1px solid var(--border); }
.contact-icon { width: 36px; height: 36px; border-radius: var(--r); background: var(--mist); display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; margin-top: 1px; }
.contact-row strong { display: block; font-size: 13px; font-weight: 700; color: var(--navy); }
.contact-row span { font-size: 14px; color: var(--mid); }
.form-panel { background: var(--stone); border: 1px solid var(--border); border-radius: var(--r); padding: 40px; }
.form-panel h3 { font-family: 'Merriweather', serif; font-size: 1.15rem; color: var(--navy); margin-bottom: 24px; }
.fg { margin-bottom: 18px; }
.fg label { display: block; font-size: 13px; font-weight: 700; color: #1a1a1a; margin-bottom: 6px; }
.fg input, .fg select, .fg textarea {
  width: 100%; font-family: 'Source Sans 3', sans-serif; font-size: 15px; color: #1a1a1a;
  background: #fff; border: 1px solid var(--border); border-radius: var(--r);
  padding: 11px 14px; outline: none; transition: border-color 0.2s; appearance: none; -webkit-appearance: none;
}
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--navy); }
.fg textarea { min-height: 110px; resize: vertical; }
.form-success { display: none; background: #edf7ed; border: 1px solid #8bc34a; border-radius: var(--r); padding: 14px 18px; color: #2e6b2e; font-size: 14px; font-weight: 600; margin-top: 14px; }

@media (max-width: 768px) {
  .contact__grid { grid-template-columns: 1fr; gap: 40px; }
  .form-panel { padding: 28px 20px; }
}


/* ══════════════════════════════════════
   LIMITLESS PAGE — responsive grids
   (overrides inline styles at mobile)
══════════════════════════════════════ */
.limitless-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.limitless-2col--center { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.limitless-3col { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }

@media (max-width: 768px) {
  .limitless-2col,
  .limitless-2col--center { grid-template-columns: 1fr; gap: 36px; }
  .limitless-3col { grid-template-columns: 1fr; gap: 2px; }
}


/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.footer { background: var(--navy); padding: 64px 0 32px; }
.footer__top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer__brand { font-family: 'Merriweather', serif; font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 10px; }
.footer__tagline { font-size: 13px; color: rgba(255,255,255,0.42); line-height: 1.65; max-width: 280px; }
.footer__tagline a { color: rgba(255,255,255,0.6); }
.footer__tagline a:hover { color: #fff; }
.footer__col h5 { font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-lt); margin-bottom: 18px; }
.footer__col li + li { margin-top: 10px; }
.footer__col a { font-size: 14px; color: rgba(255,255,255,0.52); transition: color 0.2s; }
.footer__col a:hover { color: #fff; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; }
.footer__legal { font-size: 12px; color: rgba(255,255,255,0.32); line-height: 1.9; }
.footer__legal strong { color: rgba(255,255,255,0.55); }
.footer__legal a { color: rgba(255,255,255,0.42); }
.footer__legal a:hover { color: rgba(255,255,255,0.7); }

@media (max-width: 768px) { .footer__top { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 480px) { .footer__top { grid-template-columns: 1fr; gap: 28px; } }


/* ══════════════════════════════════════
   GLOBAL RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1024px) {
  .wrap { padding: 0 36px; }
  .section { padding: 80px 0; }
}
@media (max-width: 768px) {
  .wrap { padding: 0 24px; }
  .section { padding: 64px 0; }
}
@media (max-width: 480px) {
  .wrap { padding: 0 16px; }
  .section { padding: 48px 0; }
  .btn { font-size: 14px; padding: 12px 22px; }
}
