:root {
  --navy: #1F3864;
  --navy-dark: #142544;
  --gold: #B08D57;
  --grey: #595959;
  --light: #F2F2F2;
  --border: #E3E3E3;
  --max-width: 1120px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #1A1A1A;
  line-height: 1.6;
  background: #fff;
}

h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--navy);
  margin: 0 0 16px;
  line-height: 1.25;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 12px;
}
.eyebrow-light { color: #D9C7A6; }
.center { text-align: center; margin-left: auto; margin-right: auto; }

/* Header */
.site-header {
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 50;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  font-family: Georgia, serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--navy);
  font-size: 18px;
}
.logo span { color: var(--gold); }
nav#mainNav { display: flex; align-items: center; gap: 28px; }
nav#mainNav a {
  text-decoration: none;
  color: #333;
  font-size: 15px;
  font-weight: 500;
}
nav#mainNav a:hover { color: var(--navy); }
.nav-cta {
  background: var(--navy);
  color: #fff !important;
  padding: 9px 18px;
  border-radius: 6px;
}
.nav-cta:hover { background: var(--navy-dark); }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
}

/* Hero */
.hero {
  background: linear-gradient(180deg, #F7F5F1 0%, #fff 100%);
  padding: 96px 0 88px;
}
.hero-inner { max-width: 780px; margin: 0 auto; text-align: center; }
.hero h1 { font-size: 40px; }
.hero-sub { font-size: 18px; color: var(--grey); margin-bottom: 32px; }
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn-primary { background: var(--navy); color: #fff; }
.btn-primary:hover { background: var(--navy-dark); }
.btn-ghost { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-ghost:hover { background: var(--navy); color: #fff; }

/* Sections */
.section { padding: 88px 0; }
.section-alt { background: var(--light); }
.section-sub {
  max-width: 640px;
  color: var(--grey);
  font-size: 17px;
  margin: 0 auto 48px;
}
h2 { font-size: 30px; }
.light { color: #fff; }

/* Module grid */
.module-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 8px;
}
.module-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px;
}
.module-card-wide { grid-column: span 2; }
.module-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.module-card h3 { font-size: 19px; margin-bottom: 10px; }
.module-card p { color: var(--grey); font-size: 15px; margin: 0; }

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 16px;
}
.step { text-align: center; }
.step-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Georgia, serif;
  font-size: 18px;
  margin: 0 auto 16px;
}
.step h3 { font-size: 17px; margin-bottom: 8px; }
.step p { color: var(--grey); font-size: 14.5px; margin: 0; }

/* Community */
.community-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 56px;
  align-items: center;
}
.check-list { list-style: none; padding: 0; margin: 24px 0 0; }
.check-list li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 12px;
  color: #333;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}
.community-card {
  background: var(--navy);
  color: #fff;
  border-radius: 12px;
  padding: 40px;
  text-align: center;
}
.community-card-label {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  color: #C9D2E3;
  margin: 0 0 12px;
}
.community-card-big {
  font-family: Georgia, serif;
  font-size: 52px;
  margin: 0;
}
.community-card-big span { font-size: 18px; font-family: -apple-system, sans-serif; }
.community-card-plus { color: #D9C7A6; margin: 12px 0 0; }

/* Waitlist */
.section-dark { background: var(--navy); }
.waitlist-inner { max-width: 560px; }
.waitlist-form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}
.waitlist-form input {
  flex: 1;
  min-width: 200px;
  padding: 13px 16px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-size: 15px;
}
.waitlist-message {
  text-align: center;
  color: #D9C7A6;
  margin-top: 16px;
  font-size: 14px;
  min-height: 18px;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 32px 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-inner p { color: var(--grey); font-size: 13px; margin: 0; }
.logo-small { font-size: 15px; }

/* Page header (sub-pages) */
.page-header {
  background: linear-gradient(180deg, #F7F5F1 0%, #fff 100%);
  padding: 64px 0 56px;
  text-align: center;
}
.page-header h1 { font-size: 34px; margin-bottom: 12px; }
.page-header p { max-width: 620px; margin: 0 auto; color: var(--grey); font-size: 17px; }

/* Curriculum accordions */
.curriculum-module {
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 20px;
  overflow: hidden;
}
.curriculum-module summary {
  cursor: pointer;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  list-style: none;
  background: #fff;
}
.curriculum-module summary::-webkit-details-marker { display: none; }
.curriculum-module summary::after {
  content: "+";
  font-size: 22px;
  color: var(--gold);
  font-family: Georgia, serif;
  flex-shrink: 0;
}
.curriculum-module[open] summary::after { content: "–"; }
.curriculum-module-heading { display: flex; flex-direction: column; gap: 4px; }
.curriculum-module-tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--gold);
  text-transform: uppercase;
}
.curriculum-module-title { font-family: Georgia, serif; color: var(--navy); font-size: 19px; }
.curriculum-module-meta { font-size: 13px; color: var(--grey); font-weight: 400; }
.curriculum-lessons {
  list-style: none;
  margin: 0;
  padding: 0 26px 24px;
  border-top: 1px solid var(--border);
}
.curriculum-lessons li {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.curriculum-lessons li:last-child { border-bottom: none; }
.lesson-num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--light);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  margin-top: 2px;
}
.lesson-body { flex: 1; min-width: 0; }
.lesson-body h4 { margin: 0 0 8px; font-size: 16.5px; color: var(--navy); font-family: Georgia, serif; font-weight: 700; }
.lesson-body > p { margin: 0 0 14px; font-size: 14.5px; color: #333; line-height: 1.65; }
.lesson-label {
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--gold);
  margin: 0 0 8px !important;
}
.lesson-points {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
}
.lesson-points li {
  padding-left: 18px;
  position: relative;
  margin-bottom: 8px;
  font-size: 14px;
  color: #333;
  line-height: 1.55;
  border-bottom: none;
}
.lesson-points li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--gold);
}
.lesson-example {
  background: var(--light);
  border-radius: 8px;
  padding: 14px 16px;
  font-size: 13.5px;
  color: #333 !important;
  line-height: 1.6;
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.price-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  background: #fff;
}
.price-card-featured {
  border: 2px solid var(--gold);
  position: relative;
}
.price-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
}
.price-name { font-family: Georgia, serif; font-size: 20px; color: var(--navy); margin-bottom: 6px; }
.price-desc { font-size: 14px; color: var(--grey); margin-bottom: 20px; min-height: 40px; }
.price-amount { font-family: Georgia, serif; font-size: 38px; color: var(--navy); margin-bottom: 4px; }
.price-amount span { font-size: 14px; color: var(--grey); font-family: -apple-system, sans-serif; }
.price-note { font-size: 12.5px; color: var(--grey); margin-bottom: 20px; }
.price-features { list-style: none; padding: 0; margin: 0 0 28px; flex: 1; }
.price-features li {
  padding-left: 24px;
  position: relative;
  margin-bottom: 10px;
  font-size: 14.5px;
  color: #333;
}
.price-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}
.price-card .btn { text-align: center; }
.pricing-disclaimer {
  text-align: center;
  color: var(--grey);
  font-size: 13.5px;
  margin-top: 32px;
}
.pricing-grid-single {
  grid-template-columns: 1fr;
  max-width: 460px;
  margin: 0 auto;
}
.price-card-single .price-amount { font-size: 44px; }
.price-card-single .price-desc { min-height: 0; }

/* Responsive */
@media (max-width: 860px) {
  .module-grid { grid-template-columns: 1fr; }
  .module-card-wide { grid-column: span 1; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .community-inner { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  nav#mainNav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 16px 24px 24px;
    gap: 16px;
  }
  nav#mainNav.open { display: flex; }
  .nav-toggle { display: block; }
  .hero h1 { font-size: 30px; }
  .steps { grid-template-columns: 1fr; }
}
