
:root {
  --lake: #6E89A8;
  --forest: #5D7257;
  --sage: #AAB8A3;
  --earth: #8A6E56;
  --sand: #D9D0C3;
  --chocolate: #3A322C;
  --cream: #F8F5EF;
  --white: #FFFFFF;
  --ink-soft: rgba(58,50,44,.74);
  --shadow: 0 24px 70px rgba(58,50,44,.13);
  --shadow-soft: 0 14px 42px rgba(58,50,44,.10);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --max: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--chocolate);
  font-family: "Source Sans Pro", "Open Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 15% 2%, rgba(170,184,163,.45), transparent 25rem),
    radial-gradient(circle at 90% 8%, rgba(110,137,168,.24), transparent 30rem),
    linear-gradient(180deg, #fbf8f2 0%, #f4eee5 100%);
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
button, .btn { font: inherit; }
.page { overflow: hidden; }
.container { width: min(var(--max), calc(100% - 72px)); margin: 0 auto; }
.muted { color: var(--ink-soft); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--forest); font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; font-size: 12px;
}
.eyebrow:before { content: ""; width: 34px; height: 1px; background: var(--forest); opacity: .7; }
h1, h2, h3 {
  margin: 0;
  font-family: "Avenir Next", Montserrat, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: -.035em;
  line-height: .98;
}
h1 { font-size: clamp(56px, 6.8vw, 96px); color: var(--chocolate); }
h2 { font-size: clamp(36px, 4.6vw, 64px); color: var(--lake); }
h3 { font-size: 24px; color: var(--chocolate); line-height: 1.08; }
p { margin: 0; }
.header {
  position: sticky; top: 0; z-index: 10;
  background: rgba(248,245,239,.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(58,50,44,.08);
}
.header-inner {
  min-height: 88px;
  display: grid;
  grid-template-columns: 260px 1fr auto;
  gap: 18px;
  align-items: center;
}
.brand { display: flex; align-items: center; gap: 14px; }
.brand-mark {
  width: 46px; height: 46px; border-radius: 16px;
  background: linear-gradient(135deg, rgba(110,137,168,.98), rgba(93,114,87,.95));
  display: grid; place-items: center;
  color: #fff; font-weight: 900; font-size: 18px;
  box-shadow: 0 10px 24px rgba(93,114,87,.2);
}
.brand-name { font-weight: 900; font-size: 20px; line-height: 1; }
.brand-sub { font-size: 12px; color: var(--ink-soft); margin-top: 5px; }
.nav { display: flex; gap: 17px; justify-content: center; align-items: center; font-size: 13px; color: rgba(58,50,44,.78); }
.nav a { white-space: nowrap; }
.nav a:hover { color: var(--lake); }
.header-ctas { display: flex; gap: 10px; align-items: center; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px; padding: 0 21px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  letter-spacing: -.01em;
  cursor: pointer;
  white-space: nowrap;
  line-height: 1;
  transition: transform .18s ease, box-shadow .18s ease;
}
.btn.primary { background: var(--forest); color: white; box-shadow: 0 18px 34px rgba(93,114,87,.22); }
.btn.secondary { border-color: rgba(58,50,44,.18); color: var(--chocolate); background: rgba(255,255,255,.7); }
.btn.light { background: var(--sand); color: var(--chocolate); }
.btn:hover { transform: translateY(-1px); }
.hero { position: relative; padding: 70px 0 132px; }
.hero:before {
  content: "";
  position: absolute; inset: 0 0 auto auto;
  width: 60%; height: 680px;
  background:
    radial-gradient(circle at 60% 38%, rgba(255,255,255,.34), transparent 5px) 0 0 / 38px 38px,
    linear-gradient(135deg, rgba(217,208,195,.42), rgba(170,184,163,.18));
  clip-path: ellipse(72% 58% at 71% 30%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 64px;
  align-items: center;
}
.hero-copy { position: relative; z-index: 2; padding: 26px 0; }
.promise {
  display: inline-flex; padding: 10px 14px; border-radius: 999px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(110,137,168,.18);
  color: var(--forest); font-size: 13px; font-weight: 800;
  box-shadow: 0 12px 32px rgba(58,50,44,.07);
  margin-bottom: 28px;
}
.hero-copy h1 span { color: var(--lake); }
.hero-sub { max-width: 620px; margin: 28px 0 30px; font-size: 21px; color: rgba(58,50,44,.77); line-height: 1.48; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-card {
  position: relative;
  min-height: 600px;
  display: grid;
  place-items: center;
}
.hero-image-frame {
  position: relative;
  width: min(520px, 100%);
  padding: 18px;
  border-radius: 42px;
  background: rgba(217,208,195,.72);
  box-shadow: var(--shadow);
}
.hero-image-frame:before {
  content: "";
  position: absolute;
  inset: -22px 32px 34px -26px;
  border-radius: 44px;
  background: rgba(170,184,163,.20);
  z-index: -1;
}
.hero-image-frame img { width: 100%; display: block; border-radius: 30px; box-shadow: 0 14px 34px rgba(58,50,44,.12); }
.hero-note {
  position: absolute;
  left: -20px;
  bottom: -92px;
  width: 330px;
  padding: 24px 24px;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(58,50,44,.08);
  border-radius: 26px;
  box-shadow: var(--shadow-soft);
}
.hero-note strong { display:block; font-family: Merriweather, Georgia, serif; font-style: italic; color: var(--earth); font-size: 18px; line-height: 1.42; }
.hero-note span { display:block; margin-top: 12px; color: rgba(58,50,44,.62); font-size: 13px; }
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 32px; max-width: 620px; }
.stat-mini { background: rgba(255,255,255,.74); border: 1px solid rgba(58,50,44,.08); border-radius: 18px; padding: 15px; box-shadow: 0 12px 26px rgba(58,50,44,.05); }
.stat-mini strong { display:block; color: var(--forest); font-size: 15px; }
.stat-mini span { display:block; margin-top: 4px; color: rgba(58,50,44,.62); font-size: 12px; line-height: 1.25; }
.section { padding: 86px 0; position: relative; }
.section-tight { padding: 64px 0; }
.section-head {
  display: grid;
  grid-template-columns: .95fr .78fr;
  gap: 46px;
  align-items: end;
  margin-bottom: 42px;
}
.section-head p { font-size: 19px; color: rgba(58,50,44,.72); }
.search-shell {
  background: rgba(255,255,255,.70);
  border: 1px solid rgba(58,50,44,.08);
  border-radius: 30px;
  box-shadow: var(--shadow-soft);
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
  margin-top: -20px;
  position: relative;
  z-index: 2;
}
.search-box {
  min-height: 58px;
  border-radius: 999px;
  border: 1px solid rgba(58,50,44,.12);
  background: rgba(248,245,239,.82);
  display: flex;
  align-items: center;
  padding: 0 22px;
  color: rgba(58,50,44,.50);
  font-weight: 750;
}

.search-input {
  width: 100%;
  min-height: 58px;
  border-radius: 999px;
  border: 1px solid rgba(58,50,44,.12);
  background: rgba(248,245,239,.82);
  padding: 0 22px;
  color: var(--chocolate);
  font: inherit;
  font-weight: 750;
  outline: none;
}
.search-input::placeholder { color: rgba(58,50,44,.50); }
.search-input:focus { border-color: rgba(93,114,87,.48); box-shadow: 0 0 0 4px rgba(93,114,87,.10); }
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
.library-search-hidden { display: none !important; }

.learning-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.topic-card {
  min-height: 250px;
  background: rgba(255,255,255,.74);
  border: 1px solid rgba(58,50,44,.08);
  border-radius: 28px;
  padding: 24px;
  box-shadow: 0 14px 34px rgba(58,50,44,.06);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.topic-card:before {
  content:"";
  position:absolute;
  right:-42px;
  top:-42px;
  width:112px;
  height:112px;
  border-radius:50%;
  background: rgba(170,184,163,.24);
}
.topic-card.featured {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(93,114,87,.96), rgba(58,50,44,.94));
  color: #fff;
}
.topic-card.featured h3, .topic-card.featured p, .topic-card.featured .topic-link, .topic-card.featured .topic-kicker { color: #fff; }
.topic-kicker { color: var(--forest); font-size: 12px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.topic-card h3 { margin-top: 18px; font-size: 25px; }
.topic-card p { margin-top: 12px; color: rgba(58,50,44,.66); font-size: 15px; }
.topic-card.featured p { color: rgba(255,255,255,.78); }
.topic-link { margin-top: 22px; font-weight: 900; color: var(--forest); }
.path-band {
  background:
    linear-gradient(180deg, rgba(255,255,255,.42), rgba(217,208,195,.34)),
    radial-gradient(circle at 11% 30%, rgba(93,114,87,.16), transparent 18rem),
    radial-gradient(circle at 90% 8%, rgba(110,137,168,.15), transparent 22rem);
}
.path-shell {
  background: rgba(255,255,255,.56);
  border: 1px solid rgba(58,50,44,.08);
  border-radius: 44px;
  padding: 38px;
  box-shadow: var(--shadow-soft);
}
.feature-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 34px; align-items: center; }
.feature-art { position: relative; min-height: 420px; }
.feature-art img {
  position: absolute;
  border-radius: 28px;
  border: 8px solid rgba(255,255,255,.72);
  box-shadow: var(--shadow-soft);
  object-fit: cover;
}
.feature-art .img-main { width: 330px; left: 18px; top: 10px; }
.feature-art .img-second { width: 300px; right: 12px; bottom: 18px; }
.feature-art .note-card {
  position: absolute;
  left: 64px;
  bottom: -14px;
  width: 300px;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255,255,255,.94);
  box-shadow: var(--shadow-soft);
  font-family: Merriweather, Georgia, serif;
  font-style: italic;
  color: var(--earth);
  line-height: 1.36;
}
.lesson-list { display:grid; gap: 14px; margin-top: 26px; }
.lesson-item {
  display:grid;
  grid-template-columns: 48px 1fr auto;
  gap: 16px;
  align-items: center;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(58,50,44,.08);
  border-radius: 22px;
  padding: 16px 18px;
}
.lesson-num { width: 48px; height: 48px; border-radius: 16px; display:grid; place-items:center; background: rgba(110,137,168,.16); color: var(--lake); font-weight: 900; }
.lesson-item strong { display:block; font-size: 18px; }
.lesson-item span { color: rgba(58,50,44,.64); font-size: 14px; }
.lesson-item a { font-weight: 900; color: var(--forest); white-space: nowrap; }
.advisor-band {
  background: linear-gradient(135deg, rgba(58,50,44,.98), rgba(93,114,87,.96));
  color: #fff;
  padding: 86px 0;
}
.advisor-grid { display:grid; grid-template-columns: .9fr 1.1fr; gap: 50px; align-items: center; }
.advisor-band h2 { color: #fff; }
.advisor-band p { margin-top: 20px; color: rgba(255,255,255,.78); font-size: 19px; }
.advisor-cards { display:grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.advisor-card { background: rgba(255,255,255,.11); border: 1px solid rgba(255,255,255,.13); border-radius: 22px; padding: 20px; }
.advisor-card strong { display:block; color: #fff; font-size: 18px; }
.advisor-card span { display:block; margin-top: 8px; color: rgba(255,255,255,.72); font-size: 14px; }
.resource-shelf { display:grid; grid-template-columns: .94fr 1.06fr; gap: 30px; align-items: stretch; }
.guide-panel {
  border-radius: 38px;
  background: linear-gradient(135deg, rgba(217,208,195,.80), rgba(255,255,255,.72));
  border: 1px solid rgba(58,50,44,.08);
  box-shadow: var(--shadow-soft);
  padding: 34px;
  display: grid;
  grid-template-columns: 1fr 164px;
  gap: 26px;
  align-items: center;
}
.guide-panel h2 { font-size: clamp(34px, 3.4vw, 52px); }
.guide-panel p { margin-top: 18px; color: rgba(58,50,44,.70); font-size: 17px; }
.guide-panel p strong { color: var(--chocolate); font-weight: 900; }
.guide-cover {
  width: 164px;
  height: 214px;
  border-radius: 22px;
  background: linear-gradient(145deg, var(--lake), var(--forest));
  color: #fff;
  padding: 20px;
  box-shadow: 0 18px 36px rgba(58,50,44,.18);
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  margin: 0;
}
.guide-cover strong { line-height: 1.02; font-size: 27px; letter-spacing: -.04em; }
.guide-cover span { font-size: 12px; opacity: .88; line-height: 1.25; }
.guide-actions { display:flex; flex-wrap:wrap; gap: 12px; margin-top: 26px; }
.guide-actions .btn { min-width: 145px; padding-inline: 22px; }
.guide-actions .btn.secondary { background: rgba(255,255,255,.82); }
.article-grid { display:grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
.article-card {
  background: rgba(255,255,255,.72);
  border:1px solid rgba(58,50,44,.08);
  border-radius: 26px;
  padding: 22px;
  min-height: 154px;
  box-shadow: 0 14px 34px rgba(58,50,44,.06);
}
.article-card .tag { display:inline-flex; padding: 7px 10px; border-radius: 999px; background: rgba(170,184,163,.26); color: var(--forest); font-weight: 850; font-size: 11px; text-transform: uppercase; letter-spacing:.07em; }
.article-card h3 { margin-top: 14px; font-size: 22px; }
.article-card p { margin-top: 10px; color: rgba(58,50,44,.63); font-size: 14px; }
.process-note {
  margin-top: 22px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(110,137,168,.12);
  border: 1px solid rgba(110,137,168,.18);
  color: rgba(58,50,44,.72);
  font-size: 15px;
}
.final-cta { padding: 96px 0 70px; }
.cta-shell {
  position: relative; overflow:hidden;
  border-radius: 48px;
  padding: 64px;
  background: linear-gradient(135deg, var(--lake), #5f7894);
  color:white;
  box-shadow: var(--shadow);
}
.cta-shell:after { content:""; position:absolute; right:-120px; top:-120px; width:360px; height:360px; border-radius:50%; background: rgba(255,255,255,.12); }
.cta-shell h2 { color:white; max-width: 780px; }
.cta-shell p { margin: 24px 0 30px; max-width: 720px; color: rgba(255,255,255,.82); font-size: 20px; }
.cta-actions { display:flex; gap: 14px; flex-wrap:wrap; }
.footer { background: var(--chocolate); color: rgba(255,255,255,.72); padding: 34px 0; font-size: 13px; }
.footer-grid { display:grid; grid-template-columns: 1fr 1.1fr; gap: 34px; align-items:start; }
.footer strong { color:#fff; display:block; margin-bottom: 4px; }
.footer-links { display:flex; gap: 16px; flex-wrap:wrap; justify-content:flex-end; }
.disclaimer { margin-top: 12px; color: rgba(255,255,255,.58); }
@media (max-width: 980px) {
  .container { width: min(100% - 32px, var(--max)); }
  .header-inner { grid-template-columns: 1fr; padding: 14px 0; }
  .nav { justify-content:flex-start; overflow:auto; padding-bottom: 4px; }
  .header-ctas { flex-wrap: wrap; }
  .hero-grid, .section-head, .feature-grid, .advisor-grid, .resource-shelf { grid-template-columns: 1fr; }
  .hero-card { min-height: auto; padding-bottom: 56px; }
  .hero-note { position: relative; left: auto; bottom: auto; width: auto; margin: -20px 18px 0; }
  .search-shell { grid-template-columns: 1fr; }
  .learning-grid { grid-template-columns: 1fr 1fr; }
  .topic-card.featured { grid-column: span 1; }
  .feature-art { min-height: 520px; }
  .article-grid, .advisor-cards { grid-template-columns: 1fr; }
  .guide-panel { grid-template-columns: 1fr; }
  .guide-cover { width: 100%; max-width: 220px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-links { justify-content:flex-start; }
}
@media (max-width: 640px) {
  h1 { font-size: 50px; }
  .hero { padding-top: 38px; }
  .learning-grid { grid-template-columns: 1fr; }
  .lesson-item { grid-template-columns: 42px 1fr; }
  .lesson-item a { grid-column: 2; }
  .hero-stats { grid-template-columns: 1fr; }
  .feature-art img { position: relative !important; width: 100% !important; left: auto !important; right: auto !important; top: auto !important; bottom: auto !important; margin-bottom: 14px; }
  .feature-art .note-card { position: relative; left: auto; bottom: auto; width: auto; }
  .cta-shell { padding: 36px; }
}



.search-status {
  grid-column: 1 / -1;
  margin: -2px 0 0;
  color: rgba(58,50,44,.62);
  font-size: 14px;
  line-height: 1.35;
}
@media (max-width: 720px) {
  html, body, .page { overflow-x: hidden !important; }
  .container { width: min(100% - 32px, var(--max)) !important; max-width: 100% !important; }
  .hero { padding: 38px 0 70px !important; }
  .hero-grid { gap: 24px !important; }
  .hero-card { min-height: auto !important; padding-bottom: 18px !important; }
  .hero-image-frame { width: 100% !important; max-width: 360px !important; margin: 0 auto !important; }
  .hero-note { position: relative !important; left: auto !important; bottom: auto !important; width: auto !important; max-width: calc(100% - 16px) !important; margin: -34px auto 0 !important; padding: 20px !important; }
  .search-shell { margin-top: 8px !important; padding: 18px !important; grid-template-columns: 1fr !important; }
  .search-input { min-width: 0 !important; width: 100% !important; }
  .learning-grid, .article-grid, .advisor-cards, .resource-shelf, .feature-grid, .section-head { grid-template-columns: 1fr !important; }
  .topic-card, .article-card, .advisor-card, .guide-panel, .path-shell { min-width: 0 !important; width: 100% !important; max-width: 100% !important; }
  .path-shell { padding: 24px 16px !important; overflow: hidden !important; }
  .feature-art { min-height: auto !important; }
  .feature-art img { position: relative !important; width: 100% !important; max-width: 100% !important; left: auto !important; right: auto !important; top: auto !important; bottom: auto !important; margin-bottom: 14px !important; }
  .feature-art .note-card { position: relative !important; left: auto !important; bottom: auto !important; width: auto !important; }
  .guide-panel { padding: 24px 18px !important; }
  .guide-actions .btn { width: 100% !important; }
  .cta-shell { padding: 34px 22px !important; overflow: hidden !important; }
}
