/* ==============================================
   faq.css — page-specific styles for faq.html
   Shared styles (nav, footer, vars) are in shared.css
   ============================================== */

/* ---------- PAGE HEADER ---------- */
  .page-header {
    background: var(--purple);
    color: white;
    padding: 70px 0 0;
    position: relative;
    overflow: hidden;
    margin-bottom: -4px;
  }
  .page-header::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 320px; height: 320px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
  }
  .page-header .eyebrow { color: #a7e6bb; font-weight: 700; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 14px; display: block; }
  .page-header h1 { color: white; font-size: clamp(34px, 5vw, 50px); max-width: 640px; margin-bottom: 14px; }
  .page-header p { color: #e2d4f2; font-size: 17px; max-width: 560px; margin-bottom: 40px; }

  .ragged {
    display: block;
    width: 100%;
    height: 60px;
    margin-top: 0;
    margin-bottom: -3px;
    vertical-align: bottom;
  }

  /* ---------- QUICK JUMP ---------- */
  .quick-jump {
    margin-top: -4px;
    background: var(--white);
    border-bottom: 1px solid rgba(98,52,146,0.08);
    padding: 24px 0;
    position: sticky;
    top: 73px;
    z-index: 50;
  }
  .quick-jump-inner {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    max-width: 980px;
    margin: 0 auto;
    padding: 0 32px;
  }
  .jump-pill {
    background: var(--cream-deep);
    color: var(--ink-soft);
    font-size: 13.5px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 100px;
    transition: background 0.15s, color 0.15s;
  }
  .jump-pill:hover { background: var(--purple); color: white; }

  /* ---------- FAQ CONTENT ---------- */
  .faq-section { padding: 70px 0; }
  .faq-category-title {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--green);
    margin-bottom: 6px;
  }
  .faq-category-head { margin-bottom: 36px; }
  .faq-category-head h2 { font-size: 28px; }

  .faq-item {
    background: var(--white);
    border-radius: 16px;
    margin-bottom: 14px;
    overflow: hidden;
    border: 1px solid rgba(98,52,146,0.1);
  }
  .faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    font-family: 'Fraunces', serif;
    font-size: 17px;
    font-weight: 600;
    color: var(--ink);
    padding: 22px 26px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
  }
  .faq-question .plus {
    flex-shrink: 0;
    width: 26px; height: 26px;
    border-radius: 50%;
    background: var(--purple-light);
    color: var(--purple);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    transition: transform 0.2s, background 0.2s;
  }
  .faq-item.open .faq-question .plus { background: var(--green); color: white; transform: rotate(45deg); }
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }
  .faq-answer-inner {
    padding: 0 26px 24px;
    color: var(--ink-soft);
    font-size: 15px;
    line-height: 1.65;
  }
  .faq-answer-inner a { color: var(--purple); font-weight: 600; }
  .faq-section-block { margin-bottom: 64px; }
  .faq-section-block:last-child { margin-bottom: 0; }

  .events-callout {
    background: var(--green);
    color: white;
    border-radius: 20px;
    padding: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 8px;
  }
  .events-callout h3 { color: white; font-size: 21px; margin-bottom: 6px; }
  .events-callout p { color: #d7ecdc; font-size: 14.5px; max-width: 420px; }
  .events-callout-btn {
    background: white;
    color: var(--green);
    padding: 13px 26px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 14.5px;
    white-space: nowrap;
    transition: transform 0.15s;
  }
  .events-callout-btn:hover { transform: translateY(-1px); }

  .still-questions {
    background: var(--cream-deep);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    margin-top: 50px;
  }
  .still-questions h3 { font-size: 24px; margin-bottom: 10px; }
  .still-questions p { color: var(--ink-soft); margin-bottom: 22px; }
  .still-questions-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
  .btn-primary {
    background: var(--green);
    color: white;
    padding: 14px 28px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 14.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .btn-outline {
    background: transparent;
    color: var(--purple);
    border: 1.5px solid var(--purple);
    padding: 13px 26px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 14.5px;
  }

/* ==============================================
   MOBILE STYLES — max-width: 640px
   ============================================== */
@media (max-width: 640px) {

  /* ---------- PAGE HEADER ---------- */
  .page-header { padding: 48px 0 0; }
  .page-header h1 { font-size: clamp(28px, 7vw, 40px); }
  .page-header p { font-size: 15px; }

  /* ---------- QUICK JUMP ---------- */
  .quick-jump { top: 62px; padding: 14px 0; }
  .quick-jump-inner { padding: 0 16px; gap: 8px; }
  .jump-pill { font-size: 12.5px; padding: 7px 14px; }

  /* ---------- FAQ CONTENT ---------- */
  .faq-section { padding: 50px 0; }
  .faq-question { font-size: 15px; padding: 18px 20px; }
  .faq-answer-inner { padding: 0 20px 20px; font-size: 14px; }
  .faq-section-block { margin-bottom: 48px; }

  /* ---------- EVENTS CALLOUT ---------- */
  .events-callout {
    flex-direction: column;
    gap: 16px;
    padding: 24px 20px;
  }
  .events-callout-btn { width: 100%; text-align: center; }

  /* ---------- STILL QUESTIONS ---------- */
  .still-questions { padding: 28px 20px; }
  .still-questions-actions { flex-direction: column; align-items: center; }
  .btn-primary, .btn-outline { width: 100%; max-width: 280px; justify-content: center; }

}
