/* ============================================
   COACHING PAGE — coaching.css
============================================ */

.coaching-page { background: var(--cream-light); }

.nav--static {
  position: relative;
  background: var(--cream-light);
  box-shadow: 0 1px 0 rgba(0,0,0,0.07);
}
.nav__links--dark a { color: var(--text) !important; opacity: 0.65; }
.nav__links--dark a:hover { opacity: 1 !important; }
.nav--static .nav__logo { color: var(--text); }

/* ============================================
   FORM SECTION
============================================ */
.coaching-form-section {
  padding: 3rem 2rem 6rem;
  background: var(--cream-light);
}

.form-container {
  max-width: 860px;
  margin: 0 auto;
}

.coaching-form__wrap {
  width: 100%;
  border: 1px solid rgba(100, 110, 90, 0.18);
  border-radius: 2px;
  overflow: hidden;
}

.coaching-iframe {
  width: 100% !important;
  min-width: 100% !important;
  min-height: 700px;
  display: block;
  border: none;
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 700px) {
  .coaching-form-section { padding: 2rem 1rem 4rem; }
  .coaching-iframe { min-height: 600px; }
}