.elementor-936 .elementor-element.elementor-element-28b6424{--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);
  --error:      rgba(160,60,50,0.5);
  --error-bg:   rgba(160,60,50,0.05);
}

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;
}



/* ── MAIN SPLIT LAYOUT ── */
.page-wrap {
  min-height: calc(100vh - 68px);
  display: grid;
  grid-template-columns: 1fr 1fr;
}

/* ── LEFT PANEL ── */
.left-panel {
  background: var(--forest);
  padding: 5rem 200px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.left-panel::before {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  border: 1px solid rgba(200,217,168,0.08);
  pointer-events: none;
}
.left-panel::after {
  content: '';
  position: absolute;
  bottom: -20px; left: -20px;
  width: 180px; height: 180px;
  border-radius: 50%;
  border: 1px solid rgba(200,217,168,0.06);
  pointer-events: none;
}

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

.left-panel h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 3.5vw, 50px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--cream);
  letter-spacing: -0.01em;
  margin-bottom: 1.25rem;
}
.left-panel h1 em {
  font-style: italic;
  color: var(--sage-pale);
}

.left-panel .lead {
  font-size: 15px;
  color: var(--sage-light);
  line-height: 1.8;
  opacity: 0.85;
  max-width: 400px;
  margin-bottom: 3rem;
}

/* Context items — change based on selected mode */
.context-block {
  display: none;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 3rem;
}
.context-block.visible { display: flex; }

.context-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.context-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: rgba(200,217,168,0.12);
  border: 0.5px solid rgba(200,217,168,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.context-icon svg { width: 14px; height: 14px; }

.context-item-text strong {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 2px;
}
.context-item-text span {
  font-size: 12px;
  color: var(--sage-light);
  opacity: 0.75;
  line-height: 1.5;
}

/* Program mini-cards (visible in apply mode) */
.program-cards {
  display: none;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 3rem;
}
.program-cards.visible { display: flex; }

.program-mini {
  border: 0.5px solid rgba(200,217,168,0.2);
  border-radius: 10px;
  padding: 1rem 1.25rem;
  background: rgba(200,217,168,0.05);
}
.program-mini-label {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-light);
  margin-bottom: 0.3rem;
}
.program-mini h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 0.2rem;
}
.program-mini p {
  font-size: 12px;
  color: var(--sage-light);
  opacity: 0.7;
  line-height: 1.5;
}

/* Bottom Emily strip */
.left-divider {
  border: none;
  border-top: 0.5px solid rgba(200,217,168,0.15);
  margin-bottom: 2rem;
}

.emily-card {
  display: flex;
  align-items: center;
  gap: 14px;
}

.emily-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(200,217,168,0.12);
  border: 1px solid rgba(200,217,168,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.emily-avatar svg { width: 24px; height: 24px; opacity: 0.5; }

.emily-card-text strong {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 2px;
}
.emily-card-text span {
  font-size: 12px;
  color: var(--sage-light);
  opacity: 0.7;
  line-height: 1.4;
}

/* ── RIGHT PANEL ── */
.right-panel {
  background: var(--warm-white);
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.right-panel-inner { max-width: 460px; }

/* ── MODE SELECTOR ── */
.mode-body.elementor-page-936-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}

.mode-body.elementor-page-936 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  border: 0.5px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  background: white;
  margin-bottom: 2.5rem;
}

.mode-btn {
  padding: 0.9rem 0.75rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-align: center;
  cursor: pointer;
  border: none;
  background: transparent;
  color: var(--muted);
  border-right: 0.5px solid var(--border);
  transition: background 0.2s, color 0.2s;
  line-height: 1.3;
}
.mode-btn:last-child { border-right: none; }
.mode-btn:hover { background: var(--cream); color: var(--forest); }
.mode-btn.active { background: var(--forest); color: var(--sage-pale); }

.mode-btn .mode-btn-sub {
  display: block;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.06em;
  opacity: 0.7;
  margin-top: 2px;
}

/* ── FORM HEADING (changes per mode) ── */
.form-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 2.8vw, 34px);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 0.5rem;
  transition: opacity 0.2s;
}
.form-heading em { font-style: italic; color: var(--forest-mid); }

.form-sub {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* ── FORM FIELDS ── */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 1rem;
}

.form-group.span-2 { grid-column: 1 / -1; }

.form-group label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal);
}

.form-group label .optional {
  font-weight: 400;
  color: var(--stone);
  text-transform: none;
  letter-spacing: 0;
  font-size: 10px;
  margin-left: 4px;
}

.form-group input,
.form-group textarea,
.form-group select {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--ink);
  background: white;
  border: 0.5px solid var(--border);
  border-radius: 6px;
  padding: 11px 14px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
  line-height: 1.5;
  -webkit-appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2 4l4 4 4-4' stroke='%236b7060' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--stone); }

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(58,77,55,0.07);
}

.form-group input.error,
.form-group textarea.error,
.form-group select.error {
  border-color: var(--error);
  box-shadow: 0 0 0 3px var(--error-bg);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* Conditional apply-only fields */
.apply-fields {
  display: none;
}
.apply-fields.visible { display: contents; }

/* ── SUBMIT ── */
.form-submit {
  width: 100%;
  background: var(--forest);
  color: var(--cream);
  border: none;
  border-radius: 4px;
  padding: 14px 28px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  margin-top: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.form-submit:hover { background: var(--forest-dim); transform: translateY(-1px); }
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.form-note {
  font-size: 11px;
  color: var(--stone);
  text-align: center;
  margin-top: 1rem;
  line-height: 1.6;
}

/* ── SUCCESS STATE ── */
.success-state {
  display: none;
  text-align: center;
  padding: 3rem 0;
}

.success-state.visible { display: block; }

.success-icon {
  width: 56px; height: 56px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  border: 0.5px solid var(--border);
}
.success-icon svg { width: 24px; height: 24px; }

.success-state h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
.success-state h3 em { font-style: italic; color: var(--forest-mid); }

.success-state p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 340px;
  margin: 0 auto 2rem;
}

.success-next {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}

.success-next a {
  font-size: 12px;
  font-weight: 500;
  color: var(--forest);
  text-decoration: none;
  letter-spacing: 0.04em;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
  transition: opacity 0.2s;
}
.success-next a:hover { opacity: 0.7; }

/* ── FOOTER ── */
footer { background: var(--ink); padding: 2rem 4rem; }
.footer-inner {
  max-width: 100%;
  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);
}
.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-wrap { grid-template-columns: 1fr; }
  .left-panel { padding: 4rem 2rem; }
  .right-panel { padding: 3.5rem 2rem; }
  .right-panel-inner { max-width: 100%; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.span-2 { grid-column: 1; }
  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 */