/*
 * Watson Headache® Approach — page styles.
 * Pre-scoped under .mhcc-watson; enqueued via wp_add_inline_style() on pages
 * that use the [mh_watson] shortcode.
 */

/* ── DESIGN TOKENS + RESET ───────────────────────────────────────────── */
.mhcc-watson {
  --dark:           #1A2B2A;
  --dark-mid:       #243B39;
  --white:          #FFFFFF;
  --warm-gray:      #F8F7F4;
  --mid-gray:       #E8E6E1;
  --teal:           #1D9E75;
  --teal-light:     #E1F5EE;
  --teal-mid:       #9FE1CB;
  --teal-dark:      #0F6E56;
  --teal-deep:      #085041;
  --text-primary:   #1A1A18;
  --text-secondary: #5C5B56;
  --text-muted:     #888780;
  --text-light:     #D3D1C7;
  --border:         #E0DED6;
  --font-display:   'DM Serif Display', Georgia, serif;
  --font-body:      'DM Sans', -apple-system, sans-serif;
  --max-w:          1160px;
  --section-pad:    80px;
  --section-pad-sm: 60px;

  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.mhcc-watson *, .mhcc-watson *::before, .mhcc-watson *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.mhcc-watson img { max-width: 100%; height: auto; display: block; }
.mhcc-watson a { color: var(--teal-dark); text-decoration: none; }
.mhcc-watson a:hover { text-decoration: underline; }

/* ── LAYOUT ──────────────────────────────────────────────────────────── */
.mhcc-watson .container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── BUTTONS ─────────────────────────────────────────────────────────── */
.mhcc-watson .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  padding: 13px 26px;
  border-radius: 4px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}
.mhcc-watson .btn-primary { background: var(--teal); color: var(--white); border-color: var(--teal); }
.mhcc-watson .btn-primary:hover { background: var(--teal-dark); border-color: var(--teal-dark); text-decoration: none; color: var(--white); }
.mhcc-watson .btn-outline { background: transparent; color: var(--teal-mid); border-color: var(--teal-mid); }
.mhcc-watson .btn-outline:hover { background: rgba(157,225,203,0.1); text-decoration: none; color: var(--teal-mid); }
.mhcc-watson .btn-outline-dark { background: transparent; color: var(--text-primary); border-color: var(--border); }
.mhcc-watson .btn-outline-dark:hover { border-color: var(--teal); color: var(--teal-dark); text-decoration: none; }
.mhcc-watson .btn-group { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }

/* ── SECTION BASE ────────────────────────────────────────────────────── */
.mhcc-watson .section    { padding: var(--section-pad) 0; }
.mhcc-watson .section-sm { padding: var(--section-pad-sm) 0; }
.mhcc-watson .bg-dark       { background: var(--dark); }
.mhcc-watson .bg-warm       { background: var(--warm-gray); }
.mhcc-watson .bg-white      { background: var(--white); }
.mhcc-watson .bg-teal-light { background: var(--teal-light); }

.mhcc-watson .section-label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}
.mhcc-watson .section-label-light { color: var(--teal-mid); }

/* ── TYPOGRAPHY ──────────────────────────────────────────────────────── */
.mhcc-watson h1,
.mhcc-watson h2,
.mhcc-watson h3,
.mhcc-watson h4 { font-family: var(--font-display); font-weight: 400; line-height: 1.2; color: var(--text-primary); }
.mhcc-watson h1 { font-size: clamp(32px, 5vw, 48px); }
.mhcc-watson h2 { font-size: clamp(26px, 3.5vw, 36px); }
.mhcc-watson h3 { font-size: clamp(20px, 2.5vw, 24px); }
.mhcc-watson h4 { font-size: 19px; }
.mhcc-watson h5 { font-family: var(--font-body); font-size: 13px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); }

.mhcc-watson .text-white h1,
.mhcc-watson .text-white h2,
.mhcc-watson .text-white h3,
.mhcc-watson .text-white h4 { color: var(--white); }
.mhcc-watson .text-white p { color: var(--text-light); }

.mhcc-watson p { margin-bottom: 16px; }
.mhcc-watson p:last-child { margin-bottom: 0; }
.mhcc-watson .text-muted  { color: var(--text-muted); }
.mhcc-watson .text-sm     { font-size: 14px; }
.mhcc-watson .text-xs     { font-size: 13px; }
.mhcc-watson .text-center { text-align: center; }

/* ── HERO ────────────────────────────────────────────────────────────── */
.mhcc-watson .hero {
  background: var(--dark);
  padding: 100px 0 90px;
  position: relative;
  overflow: hidden;
}
.mhcc-watson .hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%;
  height: 100%;
  /* background: url('/path/to/hero-image.jpg') center/cover no-repeat; — add when image is available */
  opacity: 0.12;
}
.mhcc-watson .hero-inner { position: relative; z-index: 1; max-width: 720px; }
.mhcc-watson .hero h1 { color: var(--white); margin-bottom: 20px; }
.mhcc-watson .hero-sub { font-size: 18px; line-height: 1.7; color: var(--text-light); margin-bottom: 36px; max-width: 620px; }
.mhcc-watson .hero-note { margin-top: 20px; font-size: 13px; color: var(--text-muted); }

/* ── EMPATHY ─────────────────────────────────────────────────────────── */
.mhcc-watson .empathy-inner { max-width: 780px; margin: 0 auto; text-align: center; }
.mhcc-watson .empathy-inner h2 { margin-bottom: 24px; }

/* ── 2-COL LAYOUT ────────────────────────────────────────────────────── */
.mhcc-watson .two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.mhcc-watson .two-col.wide-left  { grid-template-columns: 55fr 45fr; }
.mhcc-watson .two-col.wide-right { grid-template-columns: 42fr 58fr; }
.mhcc-watson .col-content h2 { margin-bottom: 20px; }
.mhcc-watson .col-content p  { color: var(--text-secondary); }

/* ── IMAGE PLACEHOLDER ───────────────────────────────────────────────── */
.mhcc-watson .img-placeholder {
  background: var(--mid-gray);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 13px;
  text-align: center;
  padding: 24px;
  min-height: 320px;
}
.mhcc-watson .img-placeholder svg { opacity: 0.4; }
.mhcc-watson .img-placeholder strong { font-weight: 500; font-size: 14px; color: var(--text-secondary); }

/* ── HIGHLIGHT / RESEARCH BOXES ──────────────────────────────────────── */
.mhcc-watson .highlight-box {
  border-left: 3px solid var(--teal);
  background: var(--teal-light);
  padding: 16px 20px;
  border-radius: 0 6px 6px 0;
  margin-top: 24px;
}
.mhcc-watson .highlight-box p { font-size: 14px; color: var(--teal-deep); margin: 0; }
.mhcc-watson .highlight-box strong { color: var(--teal-deep); }

.mhcc-watson .research-note { background: var(--teal-light); border-radius: 6px; padding: 14px 18px; margin-top: 20px; }
.mhcc-watson .research-note p { font-size: 13px; color: var(--teal-deep); margin: 0; }
.mhcc-watson .research-note a { color: var(--teal-dark); font-weight: 500; }

/* ── 3-COLUMN STEP CARDS ─────────────────────────────────────────────── */
.mhcc-watson .cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 32px; }
.mhcc-watson .step-card { background: var(--warm-gray); border-radius: 8px; padding: 28px 24px; }
.mhcc-watson .step-card.white-card { background: var(--white); border: 1px solid var(--border); }
.mhcc-watson .step-num { font-family: var(--font-display); font-size: 40px; color: var(--teal); line-height: 1; margin-bottom: 12px; }
.mhcc-watson .step-card h4 { margin-bottom: 10px; }
.mhcc-watson .step-card p  { font-size: 14px; color: var(--text-secondary); }
.mhcc-watson .step-card .card-meta { font-size: 13px; color: var(--text-muted); margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--border); }

/* ── AUDIENCE CARDS ──────────────────────────────────────────────────── */
.mhcc-watson .audience-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 32px; }
.mhcc-watson .audience-card { background: var(--white); border: 1px solid var(--border); border-radius: 8px; padding: 28px 24px; }
.mhcc-watson .card-icon { width: 44px; height: 44px; background: var(--teal-light); border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.mhcc-watson .card-icon svg { color: var(--teal-dark); }
.mhcc-watson .audience-card h3 { font-size: 20px; margin-bottom: 10px; }
.mhcc-watson .audience-card p  { font-size: 14px; color: var(--text-secondary); }

/* ── MID CTA BANNER ──────────────────────────────────────────────────── */
.mhcc-watson .mid-cta { background: var(--dark); padding: var(--section-pad-sm) 0; }
.mhcc-watson .mid-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.mhcc-watson .mid-cta h3 { color: var(--white); font-size: 24px; margin-bottom: 6px; }
.mhcc-watson .mid-cta p  { color: var(--text-light); font-size: 15px; }

/* ── FEATURE PILLS ───────────────────────────────────────────────────── */
.mhcc-watson .feature-pills { display: flex; flex-direction: column; gap: 12px; }
.mhcc-watson .feature-pill { background: var(--warm-gray); border-left: 3px solid var(--teal); border-radius: 0 6px 6px 0; padding: 16px 20px; }
.mhcc-watson .feature-pill strong { display: block; font-size: 14px; font-weight: 500; color: var(--text-primary); margin-bottom: 3px; }
.mhcc-watson .feature-pill span { font-size: 13px; color: var(--text-secondary); }

/* ── PHASE TAG ───────────────────────────────────────────────────────── */
.mhcc-watson .phase-tag { font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal); margin-bottom: 8px; display: block; }

/* ── PRACTITIONER CARDS ──────────────────────────────────────────────── */
.mhcc-watson .practitioner-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 28px; }
.mhcc-watson .practitioner-card { background: var(--warm-gray); border-radius: 8px; padding: 24px; display: flex; gap: 20px; align-items: flex-start; }
.mhcc-watson .practitioner-photo { width: 80px; height: 80px; border-radius: 6px; background: var(--mid-gray); flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 11px; color: var(--text-muted); text-align: center; line-height: 1.3; }
.mhcc-watson .practitioner-info h4 { font-size: 18px; margin-bottom: 3px; }
.mhcc-watson .practitioner-role { font-size: 13px; color: var(--text-muted); margin-bottom: 10px; }
.mhcc-watson .cred-list { list-style: none; }
.mhcc-watson .cred-list li { font-size: 13px; color: var(--text-secondary); padding: 3px 0; display: flex; align-items: baseline; gap: 8px; }
.mhcc-watson .cred-list li::before { content: '—'; color: var(--teal); font-size: 12px; flex-shrink: 0; }

/* ── FAQ ─────────────────────────────────────────────────────────────── */
.mhcc-watson .faq-list { margin-top: 32px; border-top: 1px solid var(--border); }
.mhcc-watson .faq-item { border-bottom: 1px solid var(--border); }
.mhcc-watson .faq-trigger { width: 100%; background: none; border: none; padding: 22px 0; display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; cursor: pointer; text-align: left; font-family: var(--font-body); }
.mhcc-watson .faq-question { font-size: 15px; font-weight: 500; color: var(--text-primary); line-height: 1.5; flex: 1; }
.mhcc-watson .faq-icon { width: 24px; height: 24px; border-radius: 50%; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; transition: all 0.2s; color: var(--text-muted); }
.mhcc-watson .faq-item.open .faq-icon { background: var(--teal); border-color: var(--teal); color: var(--white); transform: rotate(45deg); }
.mhcc-watson .faq-answer { display: none; padding: 0 0 24px; }
.mhcc-watson .faq-answer.open { display: block; }
.mhcc-watson .faq-answer p { font-size: 15px; color: var(--text-secondary); }
.mhcc-watson .faq-answer p + p { margin-top: 12px; }

/* ── FINAL CTA ───────────────────────────────────────────────────────── */
.mhcc-watson .final-cta { background: var(--dark); padding: 90px 0; text-align: center; }
.mhcc-watson .final-cta h2 { color: var(--white); max-width: 620px; margin: 0 auto 20px; }
.mhcc-watson .final-cta p  { color: var(--text-light); font-size: 17px; max-width: 580px; margin: 0 auto 36px; }
.mhcc-watson .final-note   { margin-top: 18px; font-size: 13px; color: var(--text-muted); }

/* ── DIVIDER ─────────────────────────────────────────────────────────── */
.mhcc-watson .section-divider { border: none; border-top: 1px solid var(--border); }

/* ── RESPONSIVE ──────────────────────────────────────────────────────── */
@media (max-width: 960px) {
  .mhcc-watson { --section-pad: 60px; --section-pad-sm: 48px; }
  .mhcc-watson .two-col,
  .mhcc-watson .two-col.wide-left,
  .mhcc-watson .two-col.wide-right { grid-template-columns: 1fr; gap: 40px; }
  .mhcc-watson .two-col .col-image { order: -1; }
  .mhcc-watson .cards-3            { grid-template-columns: 1fr; }
  .mhcc-watson .audience-cards     { grid-template-columns: 1fr; }
  .mhcc-watson .practitioner-cards { grid-template-columns: 1fr; }
  .mhcc-watson .mid-cta-inner      { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 640px) {
  .mhcc-watson { --section-pad: 48px; --section-pad-sm: 40px; }
  .mhcc-watson .hero { padding: 60px 0 56px; }
  .mhcc-watson .hero::before { width: 100%; opacity: 0.06; }
  .mhcc-watson .btn-group { flex-direction: column; align-items: flex-start; }
  .mhcc-watson .practitioner-card { flex-direction: column; }
  .mhcc-watson .cards-3 { gap: 16px; }
}
