.elementor-794 .elementor-element.elementor-element-f8025af{--display:flex;}/* Start custom CSS */<style>
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --forest:     #3a4d37;
  --forest-mid: #4e6349;
  --forest-dim: #2c3a29;
  --sage:       #7a9e6b;
  --sage-light: #a8c4a0;
  --sage-pale:  #c8d9a8;
  --cream:      #f7f3ec;
  --cream-dark: #ede8df;
  --warm-white: #faf8f4;
  --stone:      #c2c9b8;
  --ink:        #1c2419;
  --charcoal:   #3d3d3a;
  --muted:      #6b7060;
  --border:     rgba(58,77,55,0.12);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--warm-white);
  color: var(--charcoal);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}



/* ── SHARED ── */
.btn-primary {
  background: var(--forest);
  color: var(--cream) !important;
  padding: 14px 28px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
}
.btn-primary:hover { background: var(--forest-dim); transform: translateY(-1px); }

.btn-ghost {
  font-size: 13px;
  color: var(--forest);
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
  transition: opacity 0.2s;
}
.btn-ghost:hover { opacity: 0.7; }

.section-tag {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-tag::before {
  content: '';
  display: block;
  width: 28px;
  height: 1.5px;
  background: var(--sage);
  flex-shrink: 0;
}

.section-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.section-heading em {
  font-style: italic;
  color: var(--forest-mid);
}

/* ── HERO ── */
.page-hero {
  background: var(--warm-white);
  padding: 6rem 4rem 5rem;
}

.page-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 6rem;
  align-items: center;
}

.page-hero-copy .section-tag { margin-bottom: 1.5rem; }

/* "vs 6-month" pill */
.hero-compare-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cream);
  border: 0.5px solid var(--border);
  border-radius: 20px;
  padding: 5px 14px 5px 6px;
  margin-bottom: 1.75rem;
}

.hero-compare-pill-dot {
  width: 22px;
  height: 22px;
  background: var(--forest);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-compare-pill-dot svg { width: 10px; height: 10px; }

.hero-compare-pill span {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--muted);
}

.hero-compare-pill a {
  font-size: 11px;
  font-weight: 500;
  color: var(--forest);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 0px;
  letter-spacing: 0.03em;
}

.page-hero-copy h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.08;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}
.page-hero-copy h1 em {
  font-style: italic;
  color: var(--forest-mid);
}

.page-hero-copy .lead {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 2.25rem;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* Summary card */
.hero-summary-card {
  background: var(--forest);
  border-radius: 16px;
  padding: 2.5rem;
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.hero-summary-card::before {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 180px; height: 180px;
  border-radius: 50%;
  border: 1px solid rgba(200,217,168,0.1);
  pointer-events: none;
}
.hero-summary-card::after {
  content: '';
  position: absolute;
  top: -10px; right: -10px;
  width: 100px; height: 100px;
  border-radius: 50%;
  border: 1px solid rgba(200,217,168,0.07);
  pointer-events: none;
}

.hero-card-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage-light);
  margin-bottom: 1.25rem;
}

.hero-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 21px;
  font-weight: 500;
  color: var(--sage-pale);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.hero-card-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 1.75rem;
}
.hero-card-items li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--cream-dark);
  line-height: 1.5;
}
.hero-card-items li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--sage);
  flex-shrink: 0;
  margin-top: 6px;
}

.hero-card-divider {
  border: none;
  border-top: 0.5px solid rgba(200,217,168,0.2);
  margin-bottom: 1.25rem;
}

.hero-card-meta {
  display: flex;
  gap: 1.5rem;
}
.hero-card-meta-item strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 300;
  color: var(--sage-pale);
  line-height: 1;
  margin-bottom: 3px;
}
.hero-card-meta-item span {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage-light);
  opacity: 0.75;
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--forest);
  padding: 1.25rem 4rem;
}
.trust-bar-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  justify-content: center;
}
.trust-item {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage-light);
  display: flex;
  align-items: center;
  gap: 8px;
}
.trust-item::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--sage);
  flex-shrink: 0;
}
.trust-divider {
  width: 1px;
  height: 20px;
  background: rgba(200,217,168,0.2);
}

/* ── FOR WHOM ── */
.for-whom-section {
  background: var(--cream);
  padding: 7rem 4rem;
}
.for-whom-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.for-whom-copy .section-tag { margin-bottom: 1.5rem; }
.for-whom-copy .section-heading { margin-bottom: 1.25rem; }

.for-whom-copy p {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(17px, 2vw, 20px);
  font-style: italic;
  font-weight: 300;
  line-height: 1.75;
  color: var(--charcoal);
  margin-bottom: 1.25rem;
}
.for-whom-copy p strong {
  font-style: normal;
  font-weight: 500;
  color: var(--forest);
}

/* Good fit / not a fit cards */
.fit-cards {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.fit-card {
  background: white;
  border: 0.5px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem 2rem;
}

.fit-card-label {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.fit-card-label.good { color: var(--forest); }
.fit-card-label.not  { color: var(--muted); }

.fit-card-label::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
.fit-card-label.good::before { background: var(--sage); }
.fit-card-label.not::before  { background: var(--stone); }

.fit-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.fit-list li {
  font-size: 13.5px;
  color: var(--charcoal);
  line-height: 1.5;
  padding-left: 1rem;
  position: relative;
}
.fit-list li::before {
  position: absolute;
  left: 0;
  font-size: 10px;
}
.fit-card.good .fit-list li::before { content: '✔'; color: var(--sage); }
.fit-card.not  .fit-list li::before { content: '—'; color: var(--stone); }

/* ── PROGRAM HEADER ── */
.program-header-section {
  background: var(--warm-white);
  padding: 6rem 4rem 3rem;
}
.program-header-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 3rem;
}
.program-header-copy .section-tag { margin-bottom: 1.25rem; }
.program-header-copy .section-heading { margin-bottom: 0; }
.program-header-note {
  max-width: 360px;
  flex-shrink: 0;
}
.program-header-note p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
  text-align: right;
}

/* ── 3-MONTH CARDS ── */
.months-section {
  background: var(--warm-white);
  padding: 2rem 4rem 7rem;
}
.months-inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* Big 3-column grid — one card per month */
.months-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.month-card {
  background: white;
  border: 0.5px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.month-card:hover {
  border-color: var(--sage);
  box-shadow: 0 6px 32px rgba(58,77,55,0.09);
}

.month-card-top {
  background: var(--forest);
  padding: 2rem 2rem 1.75rem;
  position: relative;
  overflow: hidden;
}
.month-card-top::after {
  content: '';
  position: absolute;
  bottom: -30px; right: -30px;
  width: 100px; height: 100px;
  border-radius: 50%;
  border: 1px solid rgba(200,217,168,0.12);
  pointer-events: none;
}

.month-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.month-badge {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage-light);
  background: rgba(200,217,168,0.12);
  padding: 4px 10px;
  border-radius: 20px;
  border: 0.5px solid rgba(200,217,168,0.2);
}

.month-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 300;
  color: rgba(200,217,168,0.2);
  line-height: 1;
}

.month-card-top h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 0.4rem;
}

.month-card-top .tagline {
  font-size: 13px;
  color: var(--sage-light);
  opacity: 0.8;
  line-height: 1.5;
  font-style: italic;
}

.month-card-body {
  padding: 1.75rem 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.month-section-label {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 0.5rem;
}

.month-focus-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--forest);
  background: var(--cream);
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 0.75rem;
}

.month-deliverables {
  list-style: none;
}
.month-deliverables li {
  font-size: 13px;
  color: var(--charcoal);
  line-height: 1.55;
  padding: 0.3rem 0;
  padding-left: 1rem;
  position: relative;
  border-bottom: 0.5px solid var(--border);
}
.month-deliverables li:last-child { border-bottom: none; }
.month-deliverables li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--sage);
  font-size: 10px;
}

.month-impl {
  background: var(--cream);
  border-radius: 8px;
  padding: 1rem 1.125rem;
  margin-top: auto;
}
.month-impl-label {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 0.5rem;
}
.month-impl-items {
  list-style: none;
}
.month-impl-items li {
  font-size: 12px;
  color: var(--charcoal);
  line-height: 1.5;
  padding: 0.2rem 0;
  padding-left: 1rem;
  position: relative;
}
.month-impl-items li::before {
  content: '✔';
  position: absolute;
  left: 0;
  font-size: 9px;
  color: var(--sage);
}

/* ── WHAT'S INCLUDED BAND ── */
.included-section {
  background: var(--forest);
  padding: 5rem 4rem;
}
.included-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.included-copy .section-tag { color: var(--sage-light); }
.included-copy .section-tag::before { background: var(--sage-light); }
.included-copy .section-heading { color: var(--cream); margin-bottom: 1rem; }
.included-copy .section-heading em { color: var(--sage-pale); }
.included-copy p {
  font-size: 15px;
  color: var(--sage-light);
  line-height: 1.8;
  opacity: 0.85;
}

.included-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(200,217,168,0.1);
  border-radius: 12px;
  overflow: hidden;
  border: 0.5px solid rgba(200,217,168,0.15);
}
.included-item {
  background: rgba(58,77,55,0.6);
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.included-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(200,217,168,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.included-check svg { width: 10px; height: 10px; }
.included-item-text strong {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 2px;
}
.included-item-text span {
  font-size: 12px;
  color: var(--sage-light);
  opacity: 0.7;
  line-height: 1.45;
}

/* ── VS 6-MONTH COMPARE ── */
.compare-section {
  background: var(--cream);
  padding: 7rem 4rem;
}
.compare-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.compare-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.compare-header .section-tag {
  display: inline-flex;
  margin-bottom: 1.25rem;
}
.compare-header .section-heading { margin-bottom: 0.75rem; }
.compare-header p {
  font-size: 15px;
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.75;
}

.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.compare-card {
  background: white;
  border: 0.5px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.compare-card-header {
  padding: 1.75rem 2rem 1.5rem;
  border-bottom: 0.5px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.compare-card.featured .compare-card-header {
  background: var(--forest);
  border-bottom-color: rgba(200,217,168,0.15);
}

.compare-card-header-left {}

.compare-card-eyebrow {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.4rem;
}
.compare-card.featured .compare-card-eyebrow { color: var(--sage-light); }

.compare-card-header h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.15;
}
.compare-card.featured .compare-card-header h3 { color: var(--cream); }

.compare-card-badge {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--sage-pale);
  color: var(--forest-dim);
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
}

.compare-card-body {
  padding: 1.75rem 2rem;
}

.compare-card-body p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.compare-rows {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.compare-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.7rem 0;
  border-bottom: 0.5px solid var(--border);
  gap: 1rem;
}
.compare-row:last-child { border-bottom: none; }

.compare-row-label {
  font-size: 13px;
  color: var(--charcoal);
}
.compare-row-value {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  text-align: right;
}

.compare-cta {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 0.5px solid var(--border);
}
.compare-card.featured .compare-cta { border-top-color: var(--border); }

/* ── TESTIMONIAL ── */
.testimonial-section {
  background: var(--cream-dark);
  padding: 6rem 4rem;
}
.testimonial-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.testimonial-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 120px;
  line-height: 0.6;
  color: var(--sage-pale);
  display: block;
  margin-bottom: 1rem;
}
.testimonial-inner blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 2.75vw, 28px);
  font-style: italic;
  font-weight: 300;
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 2rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 40px;
  height: 40px;
  background: var(--forest);
  color: var(--sage-pale);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.05em;
}
.testimonial-author-info { text-align: left; }
.testimonial-author-info strong { display: block; font-size: 14px; font-weight: 500; color: var(--ink); }
.testimonial-author-info span  { font-size: 12px; color: var(--muted); }

/* ── CTA ── */
.cta-section {
  background: var(--warm-white);
  padding: 7rem 4rem;
  text-align: center;
}
.cta-section .section-tag { display: inline-flex; margin-bottom: 1.25rem; }
.cta-section .section-heading { margin-bottom: 1rem; }
.cta-section .section-sub {
  font-size: 16px;
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
}
.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* ── FOOTER ── */
footer { background: var(--ink); padding: 2.5rem 4rem; }
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: 0.01em;
}
.footer-logo span {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
  margin-top: -2px;
}
.footer-links { display: flex; gap: 2rem; list-style: none; }
.footer-links a {
  font-size: 12px;
  font-weight: 500;
  color: rgba(250,248,244,0.45);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--cream); }
.footer-copy { font-size: 11px; color: rgba(250,248,244,0.3); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 0 2rem; }

  .page-hero { padding: 4rem 2rem; }
  .page-hero-inner { grid-template-columns: 1fr; gap: 3rem; }

  .for-whom-section { padding: 5rem 2rem; }
  .for-whom-inner { grid-template-columns: 1fr; gap: 3rem; }

  .program-header-section { padding: 5rem 2rem 2rem; }
  .program-header-inner { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .program-header-note p { text-align: left; }

  .months-section { padding: 1.5rem 2rem 5rem; }
  .months-grid { grid-template-columns: 1fr; }

  .included-section { padding: 4rem 2rem; }
  .included-inner { grid-template-columns: 1fr; gap: 3rem; }
  .included-list { grid-template-columns: 1fr; }

  .compare-section { padding: 5rem 2rem; }
  .compare-grid { grid-template-columns: 1fr; }

  .testimonial-section { padding: 5rem 2rem; }
  .cta-section { padding: 5rem 2rem; }

  footer { padding: 2rem; }
  .footer-inner { flex-direction: column; gap: 1.25rem; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
}
</style>/* End custom CSS */