@font-face { font-family:'Lora'; font-style:normal; font-weight:500; font-display:swap; src:url(/assets/fonts/lora500.woff2) format('woff2'); }
@font-face { font-family:'Lora'; font-style:normal; font-weight:600; font-display:swap; src:url(/assets/fonts/lora600.woff2) format('woff2'); }
@font-face { font-family:'Lora'; font-style:italic; font-weight:500; font-display:swap; src:url(/assets/fonts/lora500i.woff2) format('woff2'); }
@font-face { font-family:'Poppins'; font-style:normal; font-weight:400; font-display:swap; src:url(/assets/fonts/pop400.woff2) format('woff2'); }
@font-face { font-family:'Poppins'; font-style:normal; font-weight:500; font-display:swap; src:url(/assets/fonts/pop500.woff2) format('woff2'); }
@font-face { font-family:'Poppins'; font-style:normal; font-weight:600; font-display:swap; src:url(/assets/fonts/pop600.woff2) format('woff2'); }

:root {
  --ink: #382b2e;
  --ink-soft: #6b585c;
  --rose: #bf9493;
  --rose-deep: #9c6b6a;
  --rose-dark: #7d5554;
  --cream: #faf5f2;
  --blush: #f6eae8;
  --card: #ffffff;
  --sage: #77876f;
  --line: #eddedb;
  --shadow: 0 2px 6px rgba(125,85,84,.06), 0 18px 44px -18px rgba(125,85,84,.22);
  --disp: 'Lora', Georgia, serif;
  --body: 'Poppins', 'Segoe UI', sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
html, body { background: var(--cream); }
body { font-family: var(--body); color: var(--ink); line-height: 1.7; font-size: 16px; -webkit-font-smoothing: antialiased; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior:auto; } *, *::before, *::after { animation:none !important; transition:none !important; } }

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
h1,h2,h3 { font-family: var(--disp); font-weight: 600; line-height: 1.18; text-wrap: balance; }
a { color: var(--rose-deep); }
img { max-width: 100%; display: block; }

.eyebrow { font-family: var(--body); font-size: 12px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--rose-deep); }
.btn { display: inline-flex; align-items: center; gap: 8px; font-family: var(--body); font-weight: 600; font-size: 15px; text-decoration: none; border-radius: 999px; padding: 14px 30px; transition: transform .15s ease, box-shadow .15s ease, background .15s ease; }
.btn-primary { background: var(--rose-deep); color: #fff8f6; box-shadow: 0 10px 24px -10px rgba(125,85,84,.55); }
.btn-primary:hover { background: var(--rose-dark); transform: translateY(-1px); }
.btn-ghost { color: var(--rose-dark); border: 1.5px solid var(--rose); background: transparent; }
.btn-ghost:hover { background: var(--blush); }
.btn:focus-visible, a:focus-visible, summary:focus-visible, input:focus-visible, button:focus-visible { outline: 3px solid var(--rose); outline-offset: 3px; border-radius: 6px; }
.stars { color: var(--rose); letter-spacing: 3px; font-size: 15px; }

/* nav */
.nav { position: sticky; top: 0; z-index: 50; background: rgba(250,245,242,.9); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.nav-inner { display: flex; align-items: center; gap: 28px; padding: 12px 24px; max-width: 1120px; margin: 0 auto; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); font-family: var(--disp); font-weight: 600; font-size: 19px; margin-right: auto; }
.brand img { width: 42px; height: 42px; border-radius: 50%; }
.nav-links { display: flex; gap: 26px; }
.nav-links a { text-decoration: none; color: var(--ink-soft); font-size: 14.5px; font-weight: 500; }
.nav-links a:hover { color: var(--rose-dark); }
.nav .btn { padding: 10px 22px; font-size: 14px; }
.nav-burger { display: none; background: none; border: 0; cursor: pointer; padding: 8px; border-radius: 8px; }
.nav-burger span { display: block; width: 22px; height: 2.5px; background: var(--ink); border-radius: 2px; margin: 4.5px 0; transition: transform .2s ease, opacity .2s ease; }
.nav.open .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.open .nav-burger span:nth-child(2) { opacity: 0; }
.nav.open .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* hero */
.hero { padding: 72px 0 64px; }
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
.hero h1 { font-size: clamp(34px, 4.6vw, 54px); margin: 18px 0 20px; }
.hero h1 em, .phero h1 em { font-style: italic; color: var(--rose-deep); }
.hero .lede { font-size: 17.5px; color: var(--ink-soft); max-width: 32em; margin-bottom: 30px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-bottom: 30px; }
.hero-proof { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--ink-soft); }
.hero-photo img { width: 100%; height: 560px; object-fit: cover; object-position: 50% 28%; border-radius: 260px 260px 28px 28px; box-shadow: var(--shadow); }

/* credential strip */
.creds { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fdfaf8; }
.creds-inner { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 40px; padding: 20px 24px; max-width: 1120px; margin: 0 auto; }
.cred { display: flex; align-items: center; gap: 9px; font-size: 13.5px; font-weight: 500; color: var(--ink-soft); }
.cred svg { flex: none; }

/* sections */
.section { padding: 84px 0; }
.section-head { max-width: 60ch; margin: 0 auto 52px; text-align: center; }
.section-head h2 { font-size: clamp(28px, 3.4vw, 40px); margin: 14px 0 16px; }
.section-head p { color: var(--ink-soft); }

/* pathway cards */
.paths { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.path { background: var(--card); border: 1px solid var(--line); border-radius: 24px; overflow: hidden; box-shadow: var(--shadow); display: flex; flex-direction: column; transition: transform .18s ease; }
.path:hover { transform: translateY(-4px); }
.path img { height: 320px; width: 100%; object-fit: cover; object-position: 50% 18%; }
.path-body { padding: 26px 26px 28px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.path-body h3 { font-size: 23px; }
.path-body p { font-size: 14.5px; color: var(--ink-soft); flex: 1; }
.path-link { font-weight: 600; font-size: 14.5px; text-decoration: none; color: var(--rose-dark); }
.path-link:hover { text-decoration: underline; }

/* program feature bands */
.band { background: var(--blush); }
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.feature h2 { font-size: clamp(27px, 3.2vw, 38px); margin: 14px 0 18px; }
.feature .ftext > p { color: var(--ink-soft); margin-bottom: 22px; }
.feature ul { list-style: none; margin: 0 0 26px; display: grid; gap: 12px; }
.feature li { display: flex; gap: 11px; font-size: 15px; align-items: flex-start; }
.feature li svg { flex: none; margin-top: 4px; }
.times { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.time-chip { background: var(--card); border: 1px solid var(--line); border-radius: 999px; padding: 8px 18px; font-size: 13.5px; font-weight: 500; }
.time-chip strong { color: var(--rose-dark); font-weight: 600; }
.feature-photo { position: relative; }
.feature-photo > img { width: 100%; height: 520px; object-fit: cover; border-radius: 28px; box-shadow: var(--shadow); }
.quote-card { position: absolute; bottom: -30px; background: var(--card); border: 1px solid var(--line); border-radius: 18px; padding: 20px 22px; box-shadow: var(--shadow); max-width: 340px; }
.quote-card.qc-left { left: -26px; } .quote-card.qc-right { right: -26px; }
.quote-card p { font-size: 13.5px; line-height: 1.6; color: var(--ink); font-style: italic; font-family: var(--disp); margin: 6px 0 10px; }
.quote-card cite { font-style: normal; font-size: 12.5px; font-weight: 600; color: var(--ink-soft); }
.cta-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

/* meet katie */
.about-photo img { width: 100%; height: 560px; object-fit: cover; object-position: 50% 20%; border-radius: 260px 260px 28px 28px; box-shadow: var(--shadow); }
.quals { list-style: none; margin: 22px 0 28px; display: grid; gap: 11px; }
.quals li { display: flex; gap: 11px; align-items: flex-start; font-size: 14.5px; }
.quals li svg { flex: none; margin-top: 4px; }

/* testimonials */
.tgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-bottom: 44px; }
.tgrid.two { grid-template-columns: repeat(2, 1fr); max-width: 860px; margin-left: auto; margin-right: auto; }
.tcard { background: var(--card); border: 1px solid var(--line); border-radius: 22px; padding: 30px 28px; box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 16px; }
.tcard blockquote { font-family: var(--disp); font-style: italic; font-size: 15.5px; line-height: 1.65; flex: 1; }
.t-who { display: flex; align-items: center; gap: 13px; }
.t-who img, .t-init { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
.t-init { background: var(--blush); color: var(--rose-dark); display: flex; align-items: center; justify-content: center; font-family: var(--disp); font-weight: 600; font-size: 19px; }
.t-who strong { display: block; font-size: 14.5px; }
.t-who span { font-size: 12.5px; color: var(--ink-soft); }
.t-cta { text-align: center; }

/* guides + lead forms */
.guides { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.guide { background: var(--card); border: 1px solid var(--line); border-radius: 18px; padding: 22px; text-align: center; box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 12px; }
.guide img { width: 96px; height: 128px; object-fit: cover; border-radius: 8px; margin: 0 auto; box-shadow: 0 8px 18px -8px rgba(125,85,84,.4); }
.guide h3 { font-size: 16.5px; }
.guide p { font-size: 13px; color: var(--ink-soft); flex: 1; }
.guide-solo { display: flex; gap: 30px; align-items: center; background: var(--card); border: 1px solid var(--line); border-radius: 22px; padding: 34px 38px; box-shadow: var(--shadow); max-width: 760px; margin: 0 auto; }
.guide-solo img { width: 120px; height: 160px; object-fit: cover; border-radius: 10px; box-shadow: 0 10px 22px -8px rgba(125,85,84,.4); flex: none; }
.guide-solo h3 { font-size: 21px; margin-bottom: 8px; }
.guide-solo p { font-size: 14.5px; color: var(--ink-soft); margin-bottom: 14px; }
.gform { display: flex; flex-wrap: wrap; gap: 8px; }
.gform input[type=email], .gform input[type=text], .gform textarea { flex: 1 1 130px; padding: 8px 14px; border: 1.5px solid var(--line); border-radius: 999px; font-family: var(--body); font-size: 13px; background: #fff; color: var(--ink); }
.gform textarea { border-radius: 16px; min-height: 80px; flex-basis: 100%; resize: vertical; }
.gform input:focus, .gform textarea:focus { outline: none; border-color: var(--rose); box-shadow: 0 0 0 3px rgba(191,148,147,.25); }
.gform button { cursor: pointer; border: 0; font-size: 13px; padding: 9px 18px; }
.gform .hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }
.gform-msg { font-size: 14px; font-weight: 500; padding: 12px 6px 0; }
.gform-msg.ok { color: var(--sage); }
.gform-msg.err { color: #a5484d; }
.guide-rows { display: grid; gap: 22px; max-width: 780px; margin: 0 auto; }

/* faq */
.faq { max-width: 760px; margin: 0 auto; }
.faq details { background: var(--card); border: 1px solid var(--line); border-radius: 16px; padding: 6px 26px; margin-bottom: 14px; box-shadow: var(--shadow); }
.faq summary { cursor: pointer; font-weight: 600; font-size: 15.5px; padding: 16px 0; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--disp); font-size: 24px; color: var(--rose-deep); transition: transform .2s ease; flex: none; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 0 20px; color: var(--ink-soft); font-size: 14.5px; max-width: 62ch; }

/* program page hero */
.phero { padding: 64px 0 72px; }
.phero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.phero h1 { font-size: clamp(32px, 4vw, 48px); margin: 16px 0 18px; }
.phero .lede { color: var(--ink-soft); margin-bottom: 24px; }
.phero-photo img { width: 100%; height: 480px; object-fit: cover; border-radius: 260px 260px 28px 28px; box-shadow: var(--shadow); }
.back-link { display: inline-block; font-size: 13.5px; font-weight: 500; text-decoration: none; margin-bottom: 8px; }
.back-link:hover { text-decoration: underline; }

/* final cta */
.final { background: linear-gradient(160deg, var(--rose-deep), var(--rose-dark)); color: #fff6f3; text-align: center; padding: 92px 24px; }
.final h2 { font-size: clamp(30px, 3.8vw, 44px); margin-bottom: 18px; }
.final p { max-width: 46em; margin: 0 auto 34px; color: #ffe9e3; }
.final .btn-primary { background: #fff6f3; color: var(--rose-dark); box-shadow: 0 12px 30px -10px rgba(0,0,0,.35); }
.final .btn-primary:hover { background: #fff; }
.final .sub { font-size: 13.5px; margin-top: 22px; color: #f2d3cc; }
.final .sub a { color: #fff6f3; }

/* footer */
footer { background: #33272a; color: #cfb9b4; padding: 54px 24px 40px; font-size: 14px; }
.foot-grid { max-width: 1120px; margin: 0 auto 36px; display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 44px; }
footer h4 { color: #fff; font-family: var(--disp); font-weight: 600; font-size: 16px; margin: 0 0 14px; }
footer a { color: #e6d2cd; text-decoration: none; }
footer a:hover { color: #fff; text-decoration: underline; }
footer ul { list-style: none; display: grid; gap: 9px; }
.foot-bottom { max-width: 1120px; margin: 0 auto; border-top: 1px solid #4a3a3d; padding-top: 22px; font-size: 13px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }

/* responsive */
@media (max-width: 920px) {
  .hero-grid, .feature, .phero-grid { grid-template-columns: 1fr; gap: 44px; }
  .feature.flip .feature-photo { order: -1; }
  .hero-photo img, .about-photo img, .feature-photo > img, .phero-photo img { height: 420px; }
  .paths { grid-template-columns: 1fr; }
  .guides { grid-template-columns: 1fr; }
  .tgrid, .tgrid.two { grid-template-columns: 1fr; }
  .quote-card.qc-left { left: 12px; } .quote-card.qc-right { right: 12px; }
  .foot-grid { grid-template-columns: 1fr; gap: 30px; }
}
@media (max-width: 680px) {
  body { font-size: 15.5px; }
  .nav-inner { gap: 14px; padding: 10px 16px; }
  .nav .btn { padding: 9px 16px; font-size: 13px; }
  .nav-burger { display: block; }
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; gap: 0; background: var(--cream); border-bottom: 1px solid var(--line); box-shadow: var(--shadow); padding: 8px 0; }
  .nav.open .nav-links { display: flex; }
  .nav-links a { padding: 14px 24px; font-size: 16px; border-bottom: 1px solid var(--line); }
  .nav-links a:last-child { border-bottom: 0; }
  .wrap { padding: 0 18px; }
  .hero { padding: 36px 0 48px; }
  .hero-grid, .feature, .phero-grid { gap: 32px; }
  .hero h1 { margin: 14px 0 16px; }
  .hero .lede { font-size: 16px; margin-bottom: 22px; }
  .hero-photo img { height: 380px; border-radius: 190px 190px 22px 22px; }
  .about-photo img { height: 420px; border-radius: 190px 190px 22px 22px; }
  .phero { padding: 36px 0 48px; }
  .phero-photo img { height: 340px; border-radius: 170px 170px 22px 22px; }
  .feature-photo > img { height: 340px; }
  .path img { height: 260px; }
  .section { padding: 48px 0; }
  .section-head { margin-bottom: 34px; }
  .creds-inner { gap: 10px 22px; padding: 16px 18px; }
  .cred { font-size: 12.5px; }
  .hero-ctas, .cta-row { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn, .cta-row .btn, .feature .btn, .t-cta .btn, .final .btn { width: 100%; justify-content: center; }
  .times { gap: 8px; }
  .time-chip { padding: 7px 14px; font-size: 12.5px; }
  .quote-card { position: static; margin: -46px 14px 0; max-width: none; }
  .guide-solo { flex-direction: column; text-align: center; padding: 28px 22px; }
  .final { padding: 64px 18px; }
}
