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

:root {
  --cream:       #f4fbf7;
  --cream2:      #e8f7ee;
  --cream3:      #d8f0e3;
  --surface:     #ffffff;
  --border:      #c2e5d3;
  --border2:     #9fd4bc;
  --text:        #0d1f18;
  --text2:       #163325;
  --muted:       #3d7a5e;
  --faint:       #6fb898;
  --forest:      #3d9970;
  --forest-dark:  #1a4731;
  --forest-darker:#122e21;
  --forest-mid:  #4db386;
  --forest-light:#5ec99a;
  --forest-bright:#72d9ad;
  --gold:        #b07d2a;
  --gold-light:  #d4a043;
  --gold-dim:    rgba(176,125,42,0.10);
  --gold-border: rgba(176,125,42,0.28);
  --amber:       #c46f1a;
  --amber-dim:   rgba(196,111,26,0.09);
  --sky:         #1d6fa4;
  --sky-dim:     rgba(29,111,164,0.09);
  --rose:        #b5284a;
  --rose-dim:    rgba(181,40,74,0.08);
  --white:       #ffffff;
  --box-shadow-1: 0 1px 3px 0 rgba(34, 40, 42, 0.1);
  --box-shadow-2: 0 4px 20px 0 rgba(33, 37, 41, 0.05);
  --box-shadow-3: 0 4px 20px 0 rgba(33, 37, 41, 0.15);
}

html { font-family: 'Plus Jakarta Sans', sans-serif; background: var(--cream); color: var(--text); }
a { text-decoration: none; color: inherit; }
body { display: flex; flex-direction: column; min-height: 100vh; font-family: 'Plus Jakarta Sans', sans-serif; }

/* ── LAYOUT RESET ── */
.home .container.main { width: 100%; max-width: 100%; padding: 0; }
.container.layout { max-width: 100%; padding: 0;}
.container.layout .row.layout { margin: 0 }
.home .container.layout .row.layout > .cols { padding: 0 }
.pages .main-wrapper .container.main { padding: 24px 16px; }

/* ── FONTS RESET ── */
.pages h1 {
  font-size: 36px;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 18px 0;
  color: var(--text);
}

.pages h2 {
  font-size: 30px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 40px 0 18px 0;
  color: var(--text);
}

.pages h3 {
  font-size: 22px;
  line-height: 1.3;
  font-weight: 600;
  margin: 24px 0 10px 0;
  color: var(--text);
}

.pages p {
  font-size: 17px;
  line-height: 1.7;
  margin: 0 0 16px 0;
  color: var(--text);
}

.pages strong {
  font-weight: 700;
  color: var(--text);
}


table { margin: 32px 0; }

table th, table td {
  border-color: var(--border2) !important;
  padding: 8px 16px !important;
}

table td {
  color: var(--text) !important;
}

table th {
  background: var(--forest) !important;
  color: var(--white) !important;
  font-size: 13px !important;
  font-weight: bold !important;
}

table tbody tr:nth-child(even) td {
  background: var(--cream) !important;
}

@media (max-width: 992px) {
  table {
    display: block !important;
    overflow-x: auto !important;
    border: 0 !important
  }
}


@media (max-width: 768px) {
  .pages h1 {
    font-size: 30px;
    margin-bottom: 16px;
  }

  .pages h2 {
    font-size: 25px;
    margin: 32px 0 16px 0;
  }

  .pages h3 {
    font-size: 20px;
    margin: 22px 0 8px 0;
  }

  .pages p {
    font-size: 16px;
    line-height: 1.65;
    margin-bottom: 14px;
  }
}

/* ── ALERT RIBBON ── */
.ribbon {
  background: var(--forest-darker);
  padding: 9px 48px;
  display: flex; align-items: center; justify-content: center; gap: 14px;
  flex-wrap: wrap;
}
.ribbon-badge {
  background: var(--gold-light); color: var(--forest-darker);
  font-size: 10px; font-weight: 800; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 3px 9px; border-radius: 4px;
  flex-shrink: 0;
}
.ribbon-text {
  font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.72);
}
.ribbon-text strong { color: white; font-weight: 700; }
.ribbon-link {
  font-size: 12px; font-weight: 700; color: var(--gold-light);
  text-underline-offset: 2px; text-decoration: underline;
  cursor: pointer; white-space: nowrap;
}

/* ── NAV ── */
nav {
  background: var(--forest-dark);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; height: 66px;
  position: sticky; top: 0; z-index: 200;
  box-shadow: 0 2px 16px rgba(0,0,0,0.2);
}

.logo { max-height: 50px; }
.logo a { display: flex; }

.nav-links { display: flex; gap: 2px; align-items: center; }
.nav-links a {
  color: rgba(255,255,255,0.55); font-size: 13px; font-weight: 600;
  padding: 7px 14px; border-radius: 6px; transition: all .2s;
}
.nav-links a:hover { color: white; background: rgba(255,255,255,0.1); }
.nav-cta {
  background: var(--gold-light) !important; color: var(--forest-darker) !important;
  border-radius: 6px; margin-left: 10px; padding: 9px 20px !important;
  font-weight: 700 !important; transition: background .2s !important;
}
.nav-cta:hover { background: #e0b050 !important; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 6px; background: none; border: none;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: white; border-radius: 2px; transition: all .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none; position: fixed; top: 66px; left: 0; right: 0; z-index: 199;
  background: var(--forest-dark); border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 16px 20px 24px; flex-direction: column; gap: 4px;
  box-shadow: 0 8px 24px rgba(26,18,9,0.1);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: rgba(255,255,255,0.8); font-size: 15px; font-weight: 600;
  padding: 12px 16px; border-radius: 6px; transition: background .2s;
}
.mobile-menu a:hover { background: rgba(255,255,255,0.08); }
.mobile-menu .m-cta {
  background: var(--gold-light); color: var(--forest-darker) !important;
  text-align: center; margin-top: 8px; border-radius: 6px;
  padding: 13px 16px; font-weight: 700 !important;
}

/* ── HERO ── */
.hero {
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  padding: 80px 48px 72px;
  position: relative; overflow: hidden;
}
/* organic dot pattern */
.hero::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(61,153,112,0.06) 1.5px, transparent 1.5px);
  background-size: 32px 32px;
}
/* mint glow top-right */
.hero::after {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 480px; height: 480px; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(61,153,112,0.08) 0%, transparent 65%);
}
.hero-inner {
  max-width: 1140px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 400px;
  gap: 72px; align-items: center; position: relative; z-index: 1;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--forest);
  margin-bottom: 22px;
}
.eyebrow-dash { width: 28px; height: 2px; background: var(--forest); border-radius: 1px; }

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 700; line-height: 1.08;
  letter-spacing: -1px; color: var(--text);
  margin-bottom: 22px;
}
.hero h1 em { font-style: italic; color: var(--forest); }

.hero-sub {
  font-size: 16px; color: var(--muted);
  line-height: 1.75; max-width: 500px;
  margin-bottom: 36px; font-weight: 400;
}

/* Hero CTA pair */
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
.btn-hero-primary {
  background: var(--forest); color: white;
  font-size: 14px; font-weight: 800; padding: 14px 28px; border-radius: 8px;
  cursor: pointer; transition: all .2s; white-space: nowrap;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-hero-primary:hover { background: var(--forest-mid); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(61,153,112,0.25); }
.btn-hero-secondary {
  background: transparent; color: var(--forest);
  border: 2px solid var(--forest);
  font-size: 14px; font-weight: 700; padding: 13px 24px; border-radius: 8px;
  cursor: pointer; transition: all .2s; white-space: nowrap;
}
.btn-hero-secondary:hover { background: var(--forest); color: white; }

/* Hero search */
.hero-search {
  display: flex; max-width: 520px;
  background: white;
  border: 2px solid var(--border2);
  border-radius: 9px; overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
  box-shadow: 0 2px 10px rgba(0,0,0,0.07);
}
.hero-search:focus-within {
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(61,153,112,0.15);
}
.hero-search input {
  flex: 1; border: none; outline: none;
  padding: 13px 18px; font-size: 14px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: transparent; color: var(--text); min-width: 0;
}
.hero-search input::placeholder { color: var(--bs-gray-600); }
.hero-search button {
  background: var(--forest); border: none; cursor: pointer;
  padding: 0 22px; color: white;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px; font-weight: 800;
  transition: background .2s; white-space: nowrap; flex-shrink: 0;
}
.hero-search button:hover { background: var(--forest-mid); }

/* Right panel — quick-access program cards */
.hero-programs { display: flex; flex-direction: column; gap: 10px; }
.hp-label {
  font-size: 10px; font-weight: 800; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--faint);
  margin-bottom: 8px;
}
.prog-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px; padding: 16px 18px;
  display: flex; align-items: center; gap: 14px;
  cursor: pointer; transition: all .2s;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}
.prog-card:hover {
  background: var(--cream2);
  border-color: var(--forest-light);
  transform: translateX(4px);
  box-shadow: 0 4px 14px rgba(61,153,112,0.12);
}
.prog-icon {
  width: 38px; height: 38px; border-radius: 8px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.pi-gold   { background: rgba(176,125,42,0.1); border: 1px solid rgba(176,125,42,0.25); }
.pi-sky    { background: rgba(29,111,164,0.09); border: 1px solid rgba(29,111,164,0.22); }
.pi-green  { background: rgba(61,153,112,0.1); border: 1px solid rgba(61,153,112,0.25); }
.pi-amber  { background: rgba(196,111,26,0.09); border: 1px solid rgba(196,111,26,0.22); }
.prog-body { flex: 1; min-width: 0; }
.prog-name { font-size: 13px; font-weight: 700; color: var(--text2); margin-bottom: 2px; }
.prog-desc { font-size: 11px; color: var(--muted); line-height: 1.4; }
.prog-arrow { color: var(--faint); font-size: 16px; flex-shrink: 0; transition: all .2s; }
.prog-card:hover .prog-arrow { color: var(--forest); transform: translateX(3px); }

/* ── TRUST BAR ── */
.trust {
  background: var(--cream2);
  border-bottom: 1px solid var(--border);
  padding: 14px 48px;
  display: flex; justify-content: center; gap: 48px; flex-wrap: wrap;
}
.ti { display: flex; align-items: center; gap: 9px; }
.ti-icon { font-size: 15px; }
.ti-text { font-size: 12px; font-weight: 700; color: var(--faint); }
.ti-text strong { color: var(--text2); }

/* ── MAIN ── */
main { max-width: 1140px; margin: 0 auto; padding: 64px 48px; }

/* ── SECTION HEADER ── */
.sh {
  display: flex; justify-content: space-between; align-items: flex-end;
  padding-bottom: 16px; border-bottom: 2px solid var(--forest);
  margin-bottom: 32px;
}
.sh-left {}
.sh-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; font-weight: 700; color: var(--forest);
  letter-spacing: -0.4px; line-height: 1;
}
.sh-sub { font-size: 13px; color: var(--muted); margin-top: 5px; }
.sh-link { font-size: 12px; font-weight: 700; color: var(--forest-light); letter-spacing: 0.04em; text-transform: uppercase; cursor: pointer; white-space: nowrap; }
.sh-link:hover { color: var(--forest); }

/* ── PROGRAM CATEGORY CARDS ── */
.program-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; margin-bottom: 64px;
}
.pgrid-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 14px; padding: 30px 26px; cursor: pointer;
  transition: all .22s; display: flex; flex-direction: column;
  position: relative; overflow: hidden;
}
.pgrid-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  transform: scaleX(0); transform-origin: left; transition: transform .25s;
}
.pgrid-card:hover { box-shadow: 0 8px 32px rgba(27,67,50,0.12); transform: translateY(-3px); border-color: var(--border2); }
.pgrid-card:hover::after { transform: scaleX(1); }
.pgrid-card.pg-forest::after { background: var(--forest); }
.pgrid-card.pg-gold::after   { background: var(--gold); }
.pgrid-card.pg-sky::after    { background: var(--sky); }
.pgrid-card.pg-amber::after  { background: var(--amber); }
.pgrid-card.pg-rose::after   { background: var(--rose); }
.pgrid-card.pg-bright::after { background: var(--forest-bright); }

.pgc-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 16px; }
.pgc-icon { font-size: 30px; line-height: 1; }
.pgc-badge {
  font-size: 10px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 3px 9px; border-radius: 4px;
}
.pb-forest { background: rgba(27,67,50,0.08); color: var(--forest); border: 1px solid rgba(27,67,50,0.18); }
.pb-gold   { background: var(--gold-dim); color: var(--gold); border: 1px solid var(--gold-border); }
.pb-sky    { background: var(--sky-dim); color: var(--sky); border: 1px solid rgba(29,111,164,0.22); }
.pb-amber  { background: var(--amber-dim); color: var(--amber); border: 1px solid rgba(196,111,26,0.25); }
.pb-rose   { background: var(--rose-dim); color: var(--rose); border: 1px solid rgba(181,40,74,0.2); }

.pgc-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 700; color: var(--text);
  letter-spacing: -0.3px; margin-bottom: 8px; line-height: 1.2;
}
.pgc-desc { font-size: 13px; color: var(--muted); line-height: 1.65; margin-bottom: 16px; flex: 1; }
.pgc-footer {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: auto;
}
.pgc-count { font-size: 11px; font-weight: 700; color: var(--faint); letter-spacing: 0.04em; text-transform: uppercase; }
.pgc-arrow {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--cream2); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; color: var(--muted);
  transition: all .2s;
}
.pgrid-card:hover .pgc-arrow { background: var(--forest); border-color: var(--forest); color: white; }

/* ── FEATURED — editorial split ── */
.editorial-split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; margin-bottom: 64px;
}
.edit-main {
  background: var(--forest-dark); border-radius: 16px; padding: 44px 38px;
  cursor: pointer; position: relative; overflow: hidden;
  transition: box-shadow .2s; display: flex; flex-direction: column;
}
.edit-main::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(250,247,242,0.04) 1.5px, transparent 1.5px);
  background-size: 28px 28px; pointer-events: none;
}
.edit-main::after {
  content: '';
  position: absolute; bottom: -60px; right: -60px;
  width: 260px; height: 260px; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(176,125,42,0.12), transparent 70%);
}
.edit-main:hover { box-shadow: 0 16px 48px rgba(27,67,50,0.3); }
.em-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 10px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold-light); background: rgba(176,125,42,0.15);
  border: 1px solid rgba(212,160,67,0.3);
  border-radius: 4px; padding: 4px 10px; margin-bottom: 20px;
  display: inline-block; position: relative; z-index: 1;
}
.edit-main h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; font-weight: 700; color: white;
  line-height: 1.2; letter-spacing: -0.5px; margin-bottom: 14px;
  position: relative; z-index: 1;
}
.edit-main p {
  font-size: 14px; color: rgba(255,255,255,0.52);
  line-height: 1.72; margin-bottom: 28px; flex: 1;
  position: relative; z-index: 1;
}
.em-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gold-light); color: var(--forest);
  font-size: 13px; font-weight: 800; padding: 12px 22px; border-radius: 7px;
  cursor: pointer; transition: background .2s;
  position: relative; z-index: 1; align-self: flex-start;
}
.edit-main:hover .em-cta { background: #e0b050; }

/* Right — stacked guide cards */
.edit-stack { display: flex; flex-direction: column; gap: 12px; }
.edit-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 12px; padding: 22px; cursor: pointer;
  display: flex; gap: 16px; align-items: flex-start;
  transition: all .2s; flex: 1;
}
.edit-card:hover { border-color: var(--border2); box-shadow: 0 4px 16px rgba(27,67,50,0.08); transform: translateX(3px); }
.ec-icon {
  width: 42px; height: 42px; border-radius: 9px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 20px;
  background: var(--cream2); border: 1px solid var(--border);
}
.ec-tag { font-size: 10px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--faint); margin-bottom: 5px; }
.ec-title { font-size: 14px; font-weight: 700; color: var(--text2); line-height: 1.4; margin-bottom: 3px; transition: color .2s; }
.edit-card:hover .ec-title { color: var(--forest); }
.ec-meta { font-size: 11px; color: var(--faint); }

/* ── ELIGIBILITY SECTION ── */
.eligibility-section { margin-bottom: 64px; }
.elig-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.elig-tile {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 12px; padding: 26px 22px; cursor: pointer;
  transition: all .22s; text-align: center;
}
.elig-tile:hover { box-shadow: 0 6px 24px rgba(27,67,50,0.1); transform: translateY(-2px); border-color: var(--border2); }
.et-icon { font-size: 32px; margin-bottom: 14px; display: block; }
.et-title { font-size: 14px; font-weight: 800; color: var(--text); margin-bottom: 7px; line-height: 1.3; }
.et-desc { font-size: 12px; color: var(--muted); line-height: 1.6; margin-bottom: 12px; }
.et-link {
  font-size: 12px; font-weight: 800; color: var(--forest-light);
  display: inline-flex; align-items: center; gap: 5px;
  transition: gap .2s;
}
.elig-tile:hover .et-link { gap: 8px; color: var(--forest); }

/* ── HOW IT WORKS ── */
.hiw-block {
  background: var(--cream2); border: 1px solid var(--border);
  border-radius: 16px; overflow: hidden; margin-bottom: 64px;
}
.hiw-top {
  background: var(--forest-dark); padding: 24px 36px;
  display: flex; align-items: baseline; justify-content: space-between; flex-wrap: wrap; gap: 8px;
}
.hiw-top-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 700; color: white; letter-spacing: -0.3px;
}
.hiw-top-sub { font-size: 13px; color: rgba(255,255,255,0.45); }
.hiw-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.hiw-step {
  padding: 30px 26px; border-right: 1px solid var(--border);
  transition: background .2s; cursor: pointer;
}
.hiw-step:last-child { border-right: none; }
.hiw-step:hover { background: var(--cream3); }
.hs-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px; font-weight: 700; color: var(--border2);
  line-height: 1; margin-bottom: 14px; display: block;
  transition: color .2s;
}
.hiw-step:hover .hs-num { color: var(--forest-bright); }
.hs-title { font-size: 15px; font-weight: 800; color: var(--text); margin-bottom: 8px; }
.hs-desc { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--cream2) 0%, var(--surface) 100%);
  border: 1px solid var(--gold-border);
  border-radius: 16px; padding: 52px 48px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 40px; margin-bottom: 52px; flex-wrap: wrap;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; right: -60px; top: -60px;
  width: 280px; height: 280px; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(176,125,42,0.07), transparent 70%);
}
.cta-left { position: relative; z-index: 1; }
.cta-left h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px; font-weight: 700; color: var(--forest);
  letter-spacing: -0.5px; margin-bottom: 8px;
}
.cta-left p { font-size: 14px; color: var(--muted); line-height: 1.6; }
.cta-form { display: flex; gap: 10px; flex-shrink: 0; position: relative; z-index: 1; flex-wrap: wrap; }
.cta-form input {
  background: white; border: 1.5px solid var(--border2);
  color: var(--text); padding: 13px 18px; border-radius: 8px;
  font-size: 14px; font-family: 'Plus Jakarta Sans', sans-serif;
  outline: none; width: 230px; min-width: 0; transition: border-color .2s;
}
.cta-form input:focus { border-color: var(--forest); }
.cta-form input::placeholder { color: var(--faint); }
.cta-form button {
  background: var(--forest); color: white; border: none; cursor: pointer;
  padding: 13px 26px; border-radius: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px; font-weight: 800; white-space: nowrap;
  transition: background .2s;
}
.cta-form button:hover { background: var(--forest-mid); }


/* ── CONTACT US FORM ── */
#contact-form {
  margin: 45px auto 0;
  max-width: 500px;
}
#contact-form input,
#contact-form textarea {
  flex: 1; border: 2px solid var(--bs-gray-300); border-radius: 6px; outline: none;
  padding: 14px 18px; font-size: 14px;
  color: var(--text); min-width: 100%;
}

#contact-form input:active,
#contact-form textarea:active,
#contact-form input:focus,
#contact-form textarea:focus {
  border: 2px solid var(--forest)
}

#contact-form input::placeholder,
#contact-form textarea::placeholder {color: var(--bs-gray-600);}

#contact-form button {
  background: var(--forest); border: none; border-radius: 10px; cursor: pointer;
  padding: 16px; color: white;
  font-size: 13px; font-weight: 900; letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background .2s; white-space: nowrap; width: 100%;
}
#contact-form button:hover { background: var(--forest-mid);}


/* ── FOOTER ── */
footer {
  background: var(--forest-dark); padding: 40px 48px;
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 32px; flex-wrap: wrap;
}
.foot-brand { display: flex; flex-direction: column; gap: 10px; }
.foot-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 700; color: white; letter-spacing: -0.3px;
  display: flex; align-items: center; gap: 9px;
}
.foot-logo em { font-style: italic; color: var(--gold-light); }
.foot-logo-icon {
  width: 30px; height: 30px; background: rgba(255,255,255,0.1);
  border-radius: 7px; display: flex; align-items: center; justify-content: center; font-size: 14px;
}
.foot-tagline { font-size: 12px; color: rgba(255,255,255,0.3); max-width: 240px; line-height: 1.6; }
.foot-right { display: flex; flex-direction: column; gap: 12px; align-items: flex-end; }
.foot-links { display: flex; gap: 20px; flex-wrap: wrap; }
.foot-links a { font-size: 12px; color: rgba(255,255,255,0.3); font-weight: 600; transition: color .2s; }
.foot-links a:hover { color: rgba(255,255,255,0.7); }
.foot-disclaimer { font-size: 11px; color: rgba(255,255,255,0.18); line-height: 1.6; max-width: 420px; text-align: right; }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity:0; transform:translateY(18px); } to { opacity:1; transform:translateY(0); } }
.hero-eyebrow { animation: fadeUp .5s ease .05s both; }
.hero h1      { animation: fadeUp .5s ease .12s both; }
.hero-sub     { animation: fadeUp .5s ease .19s both; }
.hero-ctas    { animation: fadeUp .5s ease .26s both; }
.hero-search  { animation: fadeUp .5s ease .32s both; }
.hero-programs { animation: fadeUp .5s ease .2s both; }


/* ═══════════════════════════════════
   TABLET ≤ 1024px
═══════════════════════════════════ */
@media (max-width: 1024px) {
  .ribbon { padding: 9px 24px; }
  nav { padding: 0 24px; }

  .hero { padding: 60px 24px 56px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero h1 { font-size: clamp(38px, 5.5vw, 54px); }
  .hero-sub { max-width: 100%; }
  .hero-search { max-width: 100%; }
  .hero-programs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }

  .trust { padding: 14px 24px; gap: 28px; }
  main { padding: 52px 24px; }

  .program-grid { grid-template-columns: repeat(2, 1fr); }
  .editorial-split { grid-template-columns: 1fr; }
  .edit-main { padding: 36px 30px; }
  .edit-stack { flex-direction: row; flex-wrap: wrap; }
  .edit-card { flex: 1; min-width: 200px; }

  .elig-grid { grid-template-columns: repeat(2, 1fr); }
  .hiw-steps { grid-template-columns: repeat(2, 1fr); }
  .hiw-step:nth-child(2) { border-right: none; }
  .hiw-step:nth-child(3) { border-top: 1px solid var(--border); }
  .hiw-step:nth-child(4) { border-top: 1px solid var(--border); border-right: none; }

  .cta-banner { padding: 40px 32px; }
  footer { padding: 32px 24px; }
}


/* ═══════════════════════════════════
   MOBILE ≤ 768px
═══════════════════════════════════ */
@media (max-width: 768px) {
  .ribbon { padding: 8px 16px; gap: 8px; }
  .ribbon-text { display: none; }

  nav { padding: 0 16px; height: 58px; }
  .logo { max-height: 40px}
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { top: 58px; }

  .hero { padding: 44px 16px 48px; }
  .hero h1 { font-size: clamp(34px, 8vw, 46px); letter-spacing: -0.5px; }
  .hero-sub { font-size: 15px; margin-bottom: 28px; }
  .hero-ctas { gap: 10px; }
  .btn-hero-primary, .btn-hero-secondary { font-size: 13px; padding: 12px 20px; }
  .hero-search { flex-direction: column; padding: 6px 6px 6px 6px;}
  .hero-search input { padding: 12px 14px; }
  .hero-search button { border-radius: 8px; padding: 12px 20px; font-size: 13px; }
  .hero-programs { grid-template-columns: 1fr; }
  .prog-card { padding: 14px 16px; }

  .trust { padding: 12px 16px; gap: 16px; justify-content: justify; }
  .ti-text { font-size: 11px; }

  main { padding: 40px 16px; }

  .sh-title { font-size: 24px; }

  .program-grid { grid-template-columns: 1fr; gap: 12px; }
  .pgrid-card { padding: 24px 20px; }

  .editorial-split { gap: 12px; }
  .edit-main { padding: 28px 24px; }
  .edit-main h3 { font-size: 24px; }
  .edit-stack { flex-direction: column; }
  .edit-card { flex: none; }

  .elig-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .elig-tile { padding: 20px 16px; }
  .et-icon { font-size: 26px; margin-bottom: 10px; }

  .hiw-top { padding: 18px 20px; }
  .hiw-top-title { font-size: 18px; }
  .hiw-steps { grid-template-columns: 1fr; }
  .hiw-step {
    border-right: none; border-bottom: 1px solid var(--border);
    display: flex; gap: 16px; align-items: flex-start; padding: 20px 20px;
  }
  .hiw-step:last-child { border-bottom: none; }
  .hiw-step:nth-child(3), .hiw-step:nth-child(4) { border-top: none; }
  .hs-num { font-size: 36px; margin-bottom: 0; flex-shrink: 0; width: 44px; }
  .hs-body { flex: 1; }

  .cta-banner { flex-direction: column; align-items: flex-start; padding: 32px 22px; gap: 24px; }
  .cta-left h2 { font-size: 24px; }
  .cta-form { flex-direction: column; width: 100%; }
  .cta-form input { width: 100%; }
  .cta-form button { width: 100%; text-align: center; padding: 14px; }

  footer { flex-direction: column; gap: 20px; padding: 28px 16px; }
  .foot-right { align-items: flex-start; }
  .foot-disclaimer { text-align: left; }
  .foot-links { gap: 14px; }
}


/* ═══════════════════════════════════
   SMALL MOBILE ≤ 480px
═══════════════════════════════════ */
@media (max-width: 480px) {
  .hero h1 { font-size: 30px; }
  .hero-ctas { flex-direction: column; }
  .btn-hero-primary, .btn-hero-secondary { width: 100%; text-align: center; justify-content: center; }
  .elig-grid { grid-template-columns: 1fr; }
  .ribbon-badge { display: none; }
}



/* ═══════════════════════════════════
            WIDGETS
═══════════════════════════════════ */

.item-current-image img {
  box-shadow: none !important;
  border-radius: 4px !important;
  border-color: var(--bs-gray-300) !important;
}

/* ---- SUBLIST ---- */

.item-sublist a {
 width: 100%;
 height: 100%;
}

.item.item-bubbles {
  margin-bottom: 32px;
}

.item-bubbles .row {
  margin: 0;
}

.bubbles-chip {
  align-items: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text);
  display: flex;
  font-weight: 500;
  height: 100%;
  padding: 16px 48px 16px 24px;
  position: relative;
  transition: padding 0.2s ease-in-out
}

.bubbles-chip:hover {
  color: var(--forest-darker);
  background: var(--cream2);
  border-color: var(--forest-light);
  padding-left: 20px
}

.bubbles-chip:active,
.bubbles-chip:focus {
  background: var(--forest); color: var(--white);
}

.bubbles-link {
  display: block;
  width: 100%;
  max-width: 100%;
  text-decoration: none;
}

.bubbles-link .bubbles-outer {
  height: 100%;
  padding: 5px;
  max-width: 100%;
}

.col-gap:has(> .item-bubbles)::before {display: none !important}

.bubbles-chip::after {
  content: url("data:image/svg+xml,%3Csvg width='13' height='12' viewBox='0 0 13 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.87771 7.01782H1.02042C0.737361 7.01782 0.496528 6.91886 0.297917 6.72094C0.0993056 6.52317 0 6.2833 0 6.00136C0 5.71942 0.0993056 5.4781 0.297917 5.2774C0.496528 5.07657 0.737361 4.97615 1.02042 4.97615H8.87771L5.66583 1.76428C5.46111 1.55955 5.35681 1.31719 5.35292 1.03719C5.34889 0.757332 5.45076 0.510249 5.65854 0.295943C5.86632 0.0948319 6.11014 -0.00377823 6.39 0.000110661C6.66986 0.00399955 6.91236 0.108583 7.1175 0.313861L12.0713 5.27407C12.1699 5.37282 12.2464 5.4856 12.3008 5.6124C12.3551 5.73935 12.3823 5.86865 12.3823 6.00032C12.3823 6.13199 12.3551 6.26122 12.3008 6.38803C12.2464 6.51497 12.1727 6.62497 12.0798 6.71803L7.10958 11.688C6.89403 11.9037 6.65368 12.0081 6.38854 12.0012C6.12354 11.9942 5.88715 11.8862 5.67938 11.6772C5.4716 11.4629 5.36771 11.2166 5.36771 10.9382C5.36771 10.6599 5.4716 10.4192 5.67938 10.2162L8.87771 7.01782Z' fill='%233d9970'/%3E%3C/svg%3E%0A");
  position: absolute;
  right:16px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.2s ease-in-out
}

.bubbles-chip:hover::after {
  right: 10px;
}

/* SUBLIST CARDS */

.item-sublist:has(.sublist.card) .row > div {
  padding: 5px !important;
}

.sublist.card {
  border: none;
  border-radius: 6px;
  box-shadow: var(--box-shadow-2);
  transition: all 0.2s ease-in;
}

.sublist.card:hover {
  box-shadow: var(--box-shadow-3);
  color: var(--forest);
  transform: translateY(-4px);
}

.sublist.card h5 {
  margin-bottom: 0;
  font-weight: 500;
}

.sublist.card .card-body {
  padding: 16px;
}

@media (max-width: 767.98px) {

  .row div:has(> .sublist.card) {
    padding: 0 !important;
  }

  .row:has(> div .sublist.card) {
    margin:0;
    gap: 10px;
  }

  .sublist.card {
    display: flex;
    flex-direction: row;
    align-items: center;
  }

  .sublist.card .card-img-top {
    border-radius: calc(var(--bs-border-radius) - (var(--bs-border-width)));
    width: 120px;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
  }

  .sublist.card .card-body {
    flex: 1;
    padding: 1rem;
  }

  .sublist.card .card-body * {
    line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }

  .sublist.card .card-body h5 {
    font-size: 16px;
  }
}
