/* ── Variables ── */
:root {
  --navy:   #162D40;
  --gold:   #8E7A55;
  --cream:  #FFFBF6;
  --warm:   #F2E7DF;
  --blue:   #B4CDDE;
  --muted:  #58646D;
  --border: #B4CDDE;
  --line:   #E5DFD6;
  --font-serif: 'Libre Baskerville', Georgia, serif;
  --font-sans:  'Manrope', system-ui, -apple-system, sans-serif;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-sans); background: var(--cream); color: var(--navy); font-size: 16px; line-height: 1.65; -webkit-font-smoothing: antialiased; }
body.is-admin { padding-top: 52px; }
img { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 400; line-height: 1.2; color: var(--navy); }
h1 { font-size: clamp(2rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.6rem); }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.1rem; }
p  { color: var(--muted); line-height: 1.75; }
em { font-style: italic; }

/* ── Utilities ── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 80px; }
.eyebrow { display: block; font-size: 11px; font-weight: 600; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.eyebrow--light { color: var(--blue); }
.lead { font-size: 1.05rem; color: var(--muted); max-width: 680px; }
.divider { height: 1px; background: var(--border); width: 100%; }

.accent-bar { width: 48px; height: 2px; background: var(--navy); margin: 16px 0 24px; }
.accent-bar--gold   { background: var(--gold); }
.accent-bar--center { margin-left: auto; margin-right: auto; }

/* ── Grid ── */
.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: 1fr 1fr; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

/* ── Buttons ── */
.btn { display: inline-block; padding: 14px 32px; font-family: var(--font-sans); font-size: 14px; font-weight: 600; cursor: pointer; transition: all 0.2s; border: none; }
.btn--gold        { background: var(--gold); color: var(--navy); }
.btn--gold:hover  { background: #7a6847; text-decoration: none; color: var(--navy); }
.btn--navy        { background: var(--navy); color: var(--cream); }
.btn--navy:hover  { background: #0d1d28; text-decoration: none; color: var(--cream); }
.btn--outline-dark  { background: transparent; color: var(--navy); border: 1px solid var(--navy); }
.btn--outline-light { background: transparent; color: var(--cream); border: 1px solid rgba(255,251,246,0.5); }
.btn--outline-light:hover { background: rgba(255,251,246,0.1); text-decoration: none; color: var(--cream); }
.btn--full { width: 100%; text-align: center; display: block; }
.link-arrow { color: var(--gold); font-size: 14px; font-weight: 600; }

/* ── Navigation ── */
.site-nav { position: sticky; top: 0; z-index: 100; background: var(--cream); border-bottom: 1px solid var(--line); }
.nav-inner { max-width: 1280px; margin: 0 auto; padding: 0 80px; height: 80px; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { font-family: var(--font-serif); font-size: 18px; font-weight: 700; color: var(--gold); }
.nav-logo:hover { text-decoration: none; }
.nav-links { display: flex; gap: 40px; align-items: center; }
.nav-links a { font-size: 13px; font-weight: 500; color: var(--navy); transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); text-decoration: none; }
.nav-cta { background: var(--gold); color: var(--navy); padding: 10px 24px; font-size: 13px; font-weight: 700; }
.nav-cta:hover { background: #7a6847; text-decoration: none; color: var(--navy); }
.nav-hamburger { display: none; background: none; border: none; font-size: 22px; cursor: pointer; color: var(--navy); }

/* ── Sections ── */
.section { padding: 100px 0; }
.section--cream { background: var(--cream); }
.section--warm  { background: var(--warm); }
.section--navy  { background: var(--navy); }
.section-header { margin-bottom: 56px; }
.section-header--center { text-align: center; display: flex; flex-direction: column; align-items: center; }
.section-header--center .lead { text-align: center; margin: 0 auto; }

/* ── Two-column layouts ── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.two-col--reverse .col-left { order: 2; }
.two-col--reverse .col-right { order: 1; }
.col-left { display: flex; flex-direction: column; gap: 20px; }
.col-right { display: flex; flex-direction: column; gap: 20px; }

/* ── Hero ── */
.hero { position: relative; overflow: hidden; }
.hero--split { display: grid; grid-template-columns: 1fr 1fr; min-height: 700px; }
.hero--navy   { background: var(--navy); }
.hero--full   { min-height: 640px; display: flex; align-items: flex-end; background-size: cover; background-position: center; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(22,45,64,0.92) 0%, rgba(22,45,64,0.65) 100%); }
.hero-left { padding: 100px 80px; display: flex; flex-direction: column; gap: 28px; justify-content: center; background: var(--cream); position: relative; z-index: 1; }
.hero-left--dark { background: var(--navy); }
.hero-left--dark h1, .hero-left--dark p { color: var(--cream); }
.hero-left--dark p { color: rgba(255,251,246,0.75); }
.hero-right { position: relative; background-size: cover; background-position: center; min-height: 500px; }
.hero-right-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(22,45,64,0.15) 0%, rgba(22,45,64,0.05) 100%); }
.hero-title { font-size: clamp(2.2rem, 4vw, 3.5rem); }
.hero-sub { font-size: 17px; max-width: 540px; }
.hero-text-content { position: relative; z-index: 1; padding: 100px 80px 80px; display: flex; flex-direction: column; gap: 24px; max-width: 800px; }
.hero-text-content h1, .hero-text-content p { color: var(--cream); }
.hero-text-content p { color: rgba(255,251,246,0.85); font-size: 17px; max-width: 640px; }
.hero-ctas { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.hero-badges { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }
.hero-badge { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); color: rgba(255,251,246,0.7); font-size: 12px; font-weight: 500; padding: 6px 14px; }

/* ── Programs ── */
.programs-grid { margin-top: 8px; }
.program-card { background: var(--cream); border: 1px solid var(--line); display: flex; flex-direction: column; overflow: hidden; }
.program-card-img { height: 240px; background-size: cover; background-position: center; position: relative; }
.program-card-body { padding: 32px 28px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.program-tag { font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); }
.program-card h3 { font-size: 1.3rem; margin: 4px 0; }

/* ── Partnership ── */
.partnership-layout { display: grid; grid-template-columns: 560px 1fr; min-height: 520px; }
.partnership-img { background-size: cover; background-position: center; }
.partnership-content { padding: 80px; display: flex; flex-direction: column; gap: 20px; justify-content: center; }
.partnership-content h2, .partnership-content p { color: var(--cream); }
.partnership-content p { color: rgba(255,251,246,0.8); }
.stats-row { display: flex; gap: 48px; margin-top: 16px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.15); }
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-val { font-family: var(--font-serif); font-size: 28px; color: var(--gold); }
.stat-label { font-size: 13px; color: rgba(255,251,246,0.6); }
.stats-row--light { border-top-color: var(--line); }
.stat--dark .stat-val { color: var(--gold); }
.stat--dark .stat-label { color: var(--muted); }

/* ── Who Cards ── */
.who-card { background: var(--cream); border: 1px solid var(--border); padding: 36px 28px; display: flex; flex-direction: column; gap: 12px; }
.who-card h4 { font-size: 1.05rem; }

/* ── Feature Cards ── */
.feature-card { background: var(--cream); border: 1px solid var(--border); padding: 40px 32px; display: flex; flex-direction: column; gap: 14px; }
.feature-num { font-family: var(--font-serif); font-size: 28px; color: var(--gold); }
.feature-card h4 { font-size: 1.05rem; }

/* ── Belief Card ── */
.belief-card { background: var(--warm); border: 1px solid var(--border); padding: 48px 40px; display: flex; flex-direction: column; gap: 20px; }
.belief-label { font-size: 13px; font-weight: 600; color: var(--gold); letter-spacing: 1px; }
.belief-item { display: flex; flex-direction: column; gap: 6px; }
.belief-item h4 { font-size: 1rem; color: var(--navy); font-weight: 700; }
.belief-item p { font-size: 14px; }
.pullquote { background: var(--cream); padding: 20px 24px; }
.pullquote em { font-style: italic; font-family: var(--font-serif); font-size: 15px; color: var(--navy); line-height: 1.6; }

/* ── Session Cards ── */
.session-grid { gap: 32px; }
.session-card { background: var(--warm); border: 1px solid var(--border); padding: 48px 40px; display: flex; flex-direction: column; gap: 20px; }
.session-card--featured { border-color: var(--navy); }
.session-badge { display: inline-block; background: var(--gold); color: var(--navy); font-size: 10px; font-weight: 700; letter-spacing: 2px; padding: 4px 12px; align-self: flex-start; }
.session-card h3 { font-size: 1.5rem; }

/* ── Check Lists ── */
.check-list { display: flex; flex-direction: column; gap: 10px; }
.check-list li { padding-left: 20px; position: relative; color: var(--muted); font-size: 15px; }
.check-list li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-weight: 700; }
.check-list--gold li { color: var(--navy); }
.x-list { display: flex; flex-direction: column; gap: 10px; }
.x-list li { padding-left: 20px; position: relative; color: var(--muted); font-size: 15px; }
.x-list li::before { content: '✕'; position: absolute; left: 0; color: #c0a0a0; }

/* ── Compare Grid ── */
.compare-grid { gap: 24px; }
.compare-card { padding: 40px 36px; display: flex; flex-direction: column; gap: 24px; }
.compare-card--not { background: var(--cream); border: 1px solid var(--border); }
.compare-card--is  { background: var(--cream); border: 2px solid var(--navy); }
.compare-card h3 { font-size: 1.3rem; }

/* ── Principle Cards ── */
.principle-card { background: var(--cream); border: 1px solid var(--border); padding: 48px 40px; display: flex; flex-direction: column; gap: 16px; }
.principle-card h3 { font-size: 1.25rem; }

/* ── Process Strip ── */
.process-strip { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; border: 1px solid var(--border); }
.process-step { background: var(--warm); padding: 40px 28px; display: flex; flex-direction: column; gap: 14px; border-right: 1px solid var(--border); }
.process-step:last-child { border-right: none; }
.step-num { font-family: var(--font-serif); font-size: 48px; color: rgba(22,45,64,0.1); line-height: 1; }
.process-step h4 { font-size: 1rem; }

/* ── Quote Panel ── */
.quote-panel { display: grid; grid-template-columns: 1fr 1fr; min-height: 480px; }
.quote-panel-left { background: var(--navy); padding: 80px; display: flex; flex-direction: column; gap: 28px; justify-content: center; }
.quote-panel-left .eyebrow { color: var(--blue); }
.quote-panel-left blockquote { font-family: var(--font-serif); font-size: 1.6rem; font-weight: 400; color: var(--cream); line-height: 1.45; font-style: italic; }
.quote-panel-left p { color: rgba(255,251,246,0.75); }
.quote-panel-right { background-size: cover; background-position: center; }

/* ── CTA Section ── */
.cta-section { position: relative; min-height: 480px; background-size: cover; background-position: center; display: flex; align-items: center; justify-content: center; }
.cta-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(22,45,64,0.92) 0%, rgba(22,45,64,0.75) 100%); }
.cta-content { position: relative; z-index: 1; text-align: center; max-width: 720px; padding: 80px 40px; display: flex; flex-direction: column; align-items: center; gap: 24px; }
.cta-content h2 { color: var(--cream); font-size: 2.8rem; }
.cta-content p { color: rgba(255,251,246,0.85); max-width: 540px; }
.cta-note { font-size: 12px; color: rgba(255,255,255,0.4); }

/* ── Meet Layout ── */
.meet-layout { display: grid; grid-template-columns: 520px 1fr; min-height: 600px; }
.meet-img { background-size: cover; background-position: center top; }
.meet-content { padding: 80px; display: flex; flex-direction: column; gap: 20px; justify-content: center; }

/* ── Story Quote ── */
.story-quote { background: var(--navy); padding: 48px 40px; display: flex; flex-direction: column; gap: 16px; }
.story-quote-mark { font-family: var(--font-serif); font-size: 64px; color: var(--gold); line-height: 1; }
.story-quote blockquote { font-family: var(--font-serif); font-size: 1.25rem; color: var(--cream); line-height: 1.5; font-style: italic; }
.story-quote-divider { height: 1px; background: rgba(180,205,222,0.3); }
.story-quote cite { color: rgba(255,251,246,0.5); font-size: 13px; font-style: normal; }

/* ── Value Cards ── */
.value-card { background: var(--warm); border: 1px solid var(--border); padding: 40px 32px; display: flex; flex-direction: column; gap: 14px; }
.value-card h4 { font-size: 1.15rem; }

/* ── Enrollment Steps ── */
.enroll-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.enroll-step { padding: 48px 32px; display: flex; flex-direction: column; gap: 16px; border-right: 1px solid var(--border); }
.enroll-step:last-child { border-right: none; }
.enroll-step--warm  { background: var(--warm); }
.enroll-step--cream { background: var(--cream); }
.enroll-step--navy  { background: var(--navy); }
.enroll-step--navy h4, .enroll-step--navy p { color: rgba(255,251,246,0.9); }
.enroll-step--navy p { color: rgba(255,251,246,0.7); }
.step-num-lg { font-family: var(--font-serif); font-size: 56px; color: rgba(22,45,64,0.12); line-height: 1; }
.enroll-step--navy .step-num-lg { color: rgba(255,255,255,0.12); }

/* ── Inquiry Form ── */
.inquiry-form-card { background: var(--cream); border: 1px solid var(--border); padding: 48px 40px; }
.inquiry-form-card h3 { font-size: 1.4rem; margin-bottom: 4px; }
.inquiry-form { display: flex; flex-direction: column; gap: 16px; margin-top: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 12px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); }
.form-group input, .form-group select, .form-group textarea { padding: 12px 14px; border: 1px solid var(--border); background: var(--warm); font-family: var(--font-sans); font-size: 15px; color: var(--navy); width: 100%; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--navy); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: 12px; color: var(--muted); text-align: center; }

/* ── Contact Info ── */
.contact-info { display: flex; flex-direction: column; gap: 12px; margin-top: 8px; padding-top: 24px; border-top: 1px solid var(--border); }
.contact-row { display: flex; flex-direction: column; gap: 2px; }
.contact-label { font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); }
.contact-row span:last-child { font-size: 15px; font-weight: 500; color: var(--navy); }

/* ── FAQ ── */
.faq-list { border-top: 1px solid var(--border); }
.faq-item { padding: 28px 0; border-bottom: 1px solid var(--border); display: flex; flex-direction: column; gap: 10px; }
.faq-item h4 { font-size: 1.05rem; cursor: default; }

/* ── Img Block ── */
.img-block { background-size: cover; background-position: center; min-height: 440px; }

/* ── Footer ── */
.site-footer { background: var(--navy); }
.footer-main { display: flex; gap: 80px; padding: 72px 80px; }
.footer-brand { display: flex; flex-direction: column; gap: 16px; width: 320px; flex-shrink: 0; }
.footer-logo { font-family: var(--font-serif); font-size: 18px; color: var(--gold); }
.footer-tagline { font-size: 14px; color: rgba(255,251,246,0.5); line-height: 1.7; }
.footer-bar { width: 32px; height: 1px; background: var(--gold); }
.footer-links { display: flex; gap: 64px; flex: 1; }
.footer-col { display: flex; flex-direction: column; gap: 14px; }
.footer-col-label { font-size: 11px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,251,246,0.35); margin-bottom: 4px; }
.footer-col a, .footer-col span { font-size: 14px; color: rgba(255,251,246,0.55); display: block; }
.footer-col a:hover { color: var(--gold); text-decoration: none; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 20px 80px; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-bottom span { font-size: 12px; color: rgba(255,251,246,0.25); }
.footer-legal { display: flex; gap: 32px; }
.footer-legal a { font-size: 12px; color: rgba(255,251,246,0.25); }
.footer-legal a:hover { color: rgba(255,251,246,0.5); text-decoration: none; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .container { padding: 0 40px; }
  .nav-inner { padding: 0 40px; }
  .section { padding: 72px 0; }
  .grid--4 { grid-template-columns: 1fr 1fr; }
  .process-strip { grid-template-columns: 1fr 1fr 1fr; }
  .enroll-steps { grid-template-columns: 1fr 1fr; }
  .footer-main { padding: 56px 40px; gap: 40px; }
  .footer-bottom { padding: 20px 40px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: block; }
  .nav-inner { padding: 0 20px; }
  .hero--split { grid-template-columns: 1fr; }
  .hero-right { min-height: 300px; }
  .hero-left { padding: 60px 24px; }
  .hero-text-content { padding: 60px 24px; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .two-col--reverse .col-left { order: 0; }
  .two-col--reverse .col-right { order: 0; }
  .partnership-layout { grid-template-columns: 1fr; }
  .partnership-img { min-height: 280px; }
  .partnership-content { padding: 48px 24px; }
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .process-strip { grid-template-columns: 1fr; }
  .enroll-steps { grid-template-columns: 1fr; }
  .quote-panel { grid-template-columns: 1fr; }
  .quote-panel-right { min-height: 280px; }
  .quote-panel-left { padding: 56px 24px; }
  .meet-layout { grid-template-columns: 1fr; }
  .meet-img { min-height: 320px; }
  .meet-content { padding: 48px 24px; }
  .footer-main { flex-direction: column; padding: 48px 20px; gap: 32px; }
  .footer-brand { width: 100%; }
  .footer-links { flex-direction: column; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 12px; padding: 20px; text-align: center; }
  .container { padding: 0 20px; }
  .section { padding: 56px 0; }
  .enroll-step, .process-step { border-right: none; border-bottom: 1px solid var(--border); }
  .form-row { grid-template-columns: 1fr; }
}

/* ── Mobile nav open state ── */
.nav-links.nav-open { display: flex; flex-direction: column; position: fixed; top: 80px; left: 0; right: 0; background: var(--cream); padding: 24px; gap: 16px; border-bottom: 1px solid var(--line); z-index: 99; }
