/* ==========================================================================
   FAQ Sub-Pages — shared styles
   Used on: all six FAQ sub-pages (Hypnosis, LiveEntertainment, Speaking,
            Fundraising, Training, Corporate)
   Extends: main.css, faq.css, service-nav-strip.css, faq-nav-strip.css
   Do NOT redeclare global tokens here
   ========================================================================== */

/* ── Hero ─────────────────────────────────────────────────────────────────── */
/* No image. Gradient is set per-page in faq-[topic].css.
   Height is fixed — never driven by content length.
   Nav is fixed at ~82px — content pushed clear with padding-top on inner.
   Training FAQ is the reference page for positioning.                        */
.faq-sub-hero {
    position: relative;
    min-height: 60vh;
    padding: 0 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-sub-hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    padding-top: 115px;   /* nav ~82px + 33px breathing room — Training is reference */
    padding-bottom: 54px;
}

/* Gold eyebrow tag — always gold regardless of page gradient */
.faq-sub-hero-content .hero-tag {
    color: var(--electric-blue);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 20px;
}

.faq-sub-hero-content h1 {
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 0.9;
    margin-bottom: 24px;
    text-shadow: none;
    /* Color set per-page in faq-[topic].css */
}

.faq-sub-hero-content .faq-sub-hero-sub {
    font-size: clamp(16px, 2vw, 22px);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.55;
    letter-spacing: 0.02em;
}

/* ── Nav strip active state ───────────────────────────────────────────────── */
.sh-nav-item--active .sh-nav-title {
    color: var(--gold-dark) !important;
    -webkit-text-fill-color: var(--gold-dark) !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    border-bottom: 2px solid var(--gold);
    padding-bottom: 2px;
}

.sh-nav-item--inactive .sh-nav-title {
    color: rgba(0, 0, 0, 0.30) !important;
    -webkit-text-fill-color: rgba(0, 0, 0, 0.30) !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
}

.sh-nav-item--inactive .sh-nav-circle {
    opacity: 0.25;
}

/* ── Opening prose block ──────────────────────────────────────────────────── */
.faq-sub-opening {
    background: var(--white);
    padding: 64px 20px 56px;
}

.faq-sub-opening-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.faq-sub-opening-eyebrow {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.30);
    display: block;
    margin-bottom: 14px;
}

.faq-sub-opening-headline {
    font-size: clamp(28px, 3.5vw, 48px);
    font-weight: 900;
    color: var(--dark-grey);
    letter-spacing: -0.03em;
    line-height: 0.95;
    margin-bottom: 40px;
}

.faq-sub-opening-inner p {
    font-size: 19px;
    line-height: 1.82;
    color: rgba(0, 0, 0, 0.68);
    margin-bottom: 24px;
}

.faq-sub-opening-inner p:last-child {
    margin-bottom: 0;
}

/* ── Content section groups ───────────────────────────────────────────────── */
.faq-sub-section {
    background: var(--white);
    padding: 64px 20px;
}

.faq-sub-section-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.faq-sub-section-eyebrow {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.30);
    display: block;
    margin-bottom: 14px;
}

.faq-sub-section-headline {
    font-size: clamp(28px, 3.5vw, 48px);
    font-weight: 900;
    color: var(--dark-grey);
    letter-spacing: -0.03em;
    line-height: 0.95;
    margin-bottom: 40px;
}

/* ── Sources citation block ───────────────────────────────────────────────── */
.faq-sub-sources {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(254, 192, 39, 0.20);
}

.faq-sub-sources-label {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.28);
    display: block;
    margin-bottom: 8px;
}

.faq-sub-sources-list {
    font-size: 12px;
    line-height: 1.7;
    color: rgba(0, 0, 0, 0.38);
    list-style: none;
    padding: 0;
    margin: 0;
}

.faq-sub-sources-list li {
    padding-left: 12px;
    position: relative;
}

.faq-sub-sources-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: #FEC027;
    opacity: 0.6;
}

/* ── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
    .faq-sub-hero { min-height: 50vh; }
    .faq-sub-hero-content { padding-top: 100px; padding-bottom: 44px; }
    .faq-sub-hero-content h1 { font-size: 48px; }
    .faq-sub-section { padding: 48px 20px; }
    .faq-sub-section-headline { font-size: 28px; }
}
