/* ── Coaching Site Theme: "Embracing your whole spectrum" ── */

.coaching-theme {
  --color-accent-border: var(--color-spectrum-7); /* Default to soft purple for coaching */
}

/* ── Hero ── */
.hero {
  padding: var(--space-4xl) var(--space-lg);
  text-align: center;
  background-color: var(--color-surface);
  border-radius: var(--radius-lg);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-4xl);
  position: relative;
  overflow: hidden;
}

/* Spectrum Accent Border */
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, 
    var(--color-spectrum-1),
    var(--color-spectrum-2),
    var(--color-spectrum-3),
    var(--color-spectrum-4),
    var(--color-spectrum-5),
    var(--color-spectrum-6),
    var(--color-spectrum-7)
  );
}

.hero h1 {
  font-size: var(--text-4xl);
  margin-bottom: var(--space-lg);
  color: var(--color-primary-dark);
}

.hero p {
  font-size: var(--text-lg);
  color: var(--color-text-secondary);
  max-width: 50ch;
  margin: 0 auto var(--space-xl);
}

/* ── Content Sections ── */
.section-intro {
  text-align: center;
  max-width: 60ch;
  margin: 0 auto var(--space-3xl);
}

.coaching-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-2xl);
  margin-bottom: var(--space-4xl);
}

.feature-card {
  padding: var(--space-xl);
  background: white;
  border-radius: var(--radius-md);
  border: var(--border-thin);
  border-bottom: 3px solid var(--color-accent-border);
  transition: transform var(--transition-fast);
}

.feature-card:hover,
.feature-card:focus-within {
  transform: translateY(-4px);
}

.feature-card h3 {
  margin-bottom: var(--space-sm);
  color: var(--color-primary-dark);
}

/* ── Book Feature ── */
.book-teaser {
  background: var(--color-primary-light);
  padding: var(--space-3xl) var(--space-xl);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  gap: var(--space-3xl);
  margin-bottom: var(--space-4xl);
}

.book-image-placeholder {
  width: 240px;
  height: 320px;
  background: var(--color-primary-dark);
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: var(--font-heading);
  text-align: center;
  padding: var(--space-lg);
}

/* ── Blog Teaser ── */
.recent-insights {
  margin-bottom: var(--space-4xl);
}

.insight-card {
  text-decoration: none;
  color: inherit;
  display: block;
  padding-bottom: var(--space-md);
  border-bottom: var(--border-thin);
}

.insight-card:hover h3,
.insight-card:focus-visible h3 {
  color: var(--color-primary);
}

.insight-card h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-xs);
  transition: color var(--transition-fast);
}

.insight-date {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  text-transform: uppercase;
}

/* ── Contact Form Status ── */
.form-status {
  font-size: var(--text-sm);
  min-height: 1.5em;
}

.form-status-success {
  color: var(--color-success, #2e7d32);
}

.form-status-success::before {
  content: '\2713 ';
}

.form-status-error {
  color: var(--color-error, #c62828);
}

.form-status-error::before {
  content: '\2717 ';
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .book-teaser {
    flex-direction: column;
    text-align: center;
  }
  .book-image-placeholder {
    width: 180px;
    height: 240px;
  }
}
