/* ============================================
   VERSION 3 — Editorial Light + StoryBrand
   Cream bg, dark purple text, gold accents
   ============================================ */

:root {
    --bg: #faf8f5;
    --bg-alt: #f3eff8;
    --text-dark: #2d1450;
    --text-body: #3d2560;
    --text-muted: #6b5a7d;
    --accent: #e4bf61;
    --accent-dark: #c9a84e;
    --purple: #4f045e;
    --purple-dark: #1a0a2e;
    --white: #fff;
    --border: rgba(79, 4, 94, 0.1);
    --border-light: rgba(79, 4, 94, 0.06);
    --shadow: 0 8px 30px rgba(45, 20, 80, 0.08);
    --shadow-lg: 0 20px 60px rgba(45, 20, 80, 0.12);
    --radius: 16px;
    --radius-sm: 10px;
    --transition: 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text-body);
    line-height: 1.75;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Reveal animations */
.section-label, .section-title, .hero-grid, .stakes-content, .value-grid,
.guide-grid, .plan-step, .bloom-step, .program-card, .testimonial-card,
.event-card, .offer-content, .story-content, .story-full, .timeline-item,
.faq-item, .final-cta-content {
    opacity: 0;
    transform: translateY(25px);
    transition: all 0.6s ease;
}
.revealed {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* ============================================
   NAVBAR
   ============================================ */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    transition: all var(--transition);
    background: transparent;
}

#navbar.scrolled {
    background: rgba(250, 248, 245, 0.97);
    backdrop-filter: blur(20px);
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 2px 20px rgba(45, 20, 80, 0.05);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--text-dark);
}

.logo img { height: 42px; width: 42px; border-radius: 50%; object-fit: cover; }

.logo-text {
    display: flex;
    flex-direction: column;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 2px;
    line-height: 1.3;
    color: var(--text-dark);
    text-transform: uppercase;
}

.logo-tagline {
    font-size: 0.6rem;
    font-weight: 500;
    color: var(--accent-dark);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.8rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 500;
    transition: color var(--transition);
}

.nav-links a:hover { color: var(--purple); }
.nav-links a.active { color: var(--purple); font-weight: 600; }

.nav-cta {
    background: var(--purple-dark) !important;
    color: var(--accent) !important;
    padding: 0.55rem 1.2rem;
    border-radius: 50px;
    font-weight: 600 !important;
}

.nav-cta:hover { opacity: 0.9; }

.lang-switcher { display: flex; align-items: center; gap: 0.3rem; margin-left: 1rem; }
.lang-btn { background: none; border: none; color: var(--text-muted); font-size: 0.75rem; cursor: pointer; padding: 0.2rem 0.4rem; text-decoration: none; }
.lang-btn.active, .lang-btn:hover { color: var(--purple); font-weight: 600; }
.lang-btn.disabled { opacity: 0.4; cursor: default; }
.lang-divider { color: var(--border); font-size: 0.7rem; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 5px; }
.hamburger span { width: 24px; height: 2px; background: var(--text-dark); transition: all var(--transition); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-block;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 2px;
    border-radius: 50px;
    transition: all var(--transition);
    cursor: pointer;
    border: none;
    text-transform: uppercase;
}

.btn-primary {
    background: var(--purple-dark);
    color: var(--accent);
    padding: 1rem 2.5rem;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 10, 46, 0.2);
}

.btn-lg { padding: 1.1rem 3rem; font-size: 0.88rem; }
.btn-sm { padding: 0.6rem 1.4rem; font-size: 0.75rem; }

.btn-outline {
    background: transparent;
    color: var(--purple);
    padding: 0.85rem 2rem;
    border: 2px solid var(--purple);
}

.btn-outline:hover {
    background: var(--purple);
    color: var(--white);
}

.cta-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
    font-style: italic;
}

/* ============================================
   SECTION COMMON
   ============================================ */
section { padding: 5.5rem 0; }

/* Page header for interior pages */
.page-header {
    padding: 9rem 0 4rem;
    text-align: center;
    background: var(--bg-alt);
    border-bottom: 1px solid var(--border);
}
.page-header .section-label { margin-bottom: 0.8rem; }
.page-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.2;
    margin: 0.5rem auto 0;
    max-width: 800px;
    letter-spacing: -0.01em;
}
.page-header p {
    color: var(--text-muted);
    max-width: 640px;
    margin: 1.2rem auto 0;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Free Resources page */
.resources { background: var(--bg-alt); }
.resource-category { margin-bottom: 4rem; }
.resource-category:last-child { margin-bottom: 0; }
.resource-category-header {
    text-align: center;
    margin-bottom: 2.5rem;
}
.resource-category-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.6rem;
}
.resource-category-header p {
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.6;
}
.resource-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.8rem;
}
.resource-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 2rem 1.8rem;
    transition: all var(--transition);
}
.resource-card:hover {
    border-color: var(--purple);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(45, 20, 80, 0.08);
}
.resource-card-icon {
    font-size: 1.6rem;
    color: var(--accent-dark);
    margin-bottom: 1rem;
}
.resource-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 0.7rem;
    font-weight: 600;
    line-height: 1.3;
}
.resource-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.2rem;
}
.resource-card-link {
    color: var(--purple);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.resource-card-link:hover { color: var(--accent-dark); }
.resource-placeholder {
    text-align: center;
    padding: 2rem;
    color: var(--text-muted);
    font-style: italic;
}

/* Article / blog post */
.article-meta {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    margin-top: 1.2rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    letter-spacing: 0.03em;
}
.article-meta span:not(:last-child)::after {
    content: "·";
    margin-left: 1.2rem;
    color: var(--border);
}
.article-body { background: #fff; }
.article-content {
    max-width: 720px;
    margin: 0 auto;
    font-family: 'Lora', Georgia, serif;
    font-size: 1.08rem;
    line-height: 1.85;
    color: var(--text-dark);
}
.article-content p {
    margin-bottom: 1.4rem;
}
.article-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    font-weight: 600;
    color: var(--text-dark);
    margin: 3rem 0 1.2rem;
    letter-spacing: -0.01em;
}
.article-content ol, .article-content ul {
    margin: 1.2rem 0 1.8rem 0;
    padding-left: 1.5rem;
}
.article-content ol li, .article-content ul li {
    margin-bottom: 0.9rem;
    padding-left: 0.4rem;
}
.article-content ol li strong, .article-content ul li strong {
    color: var(--purple);
}
.article-content blockquote {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-style: italic;
    color: var(--purple);
    border-left: 3px solid var(--accent);
    padding: 0.5rem 0 0.5rem 1.6rem;
    margin: 2rem 0;
    line-height: 1.5;
}
.article-break {
    text-align: center;
    margin: 2.5rem 0;
    color: var(--accent);
    letter-spacing: 1rem;
    font-size: 0.8rem;
}
.article-pullquote {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    font-style: italic;
    color: var(--purple);
    text-align: center;
    margin: 2.5rem auto;
    max-width: 600px;
    line-height: 1.4;
}
.article-cta {
    background: var(--bg-alt);
    border-radius: 8px;
    padding: 2.5rem 2rem;
    margin: 3rem 0 2rem;
    text-align: center;
}
.article-cta h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    font-weight: 600;
}
.article-cta p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
}
.article-signature {
    text-align: right;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--purple);
    margin-top: 2rem;
    font-size: 1.1rem;
}
.article-back {
    display: inline-block;
    margin: 2rem 0 1rem;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition);
}
.article-back:hover { color: var(--purple); }

.section-label {
    display: block;
    text-align: center;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-dark);
    margin-bottom: 0.6rem;
}

.section-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.7rem, 3.5vw, 2.4rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.section-subtitle {
    text-align: center;
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 580px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

/* ============================================
   HERO — Editorial Light (Hero 12)
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 6rem 0 4rem;
    position: relative;
    overflow: hidden;
    background: var(--bg);
}

.hero-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Playfair Display', serif;
    font-size: clamp(8rem, 20vw, 16rem);
    font-weight: 800;
    letter-spacing: 15px;
    text-transform: uppercase;
    color: rgba(79, 4, 94, 0.03);
    white-space: nowrap;
    user-select: none;
    pointer-events: none;
    z-index: 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 1rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--purple-dark), var(--purple));
    color: var(--accent);
    padding: 0.35rem 1.2rem;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    border-radius: 50px;
    margin-bottom: 1.8rem;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.hero h1 em {
    font-style: italic;
    color: var(--purple);
}

.hero-sub {
    font-size: 1rem;
    color: var(--text-body);
    line-height: 1.75;
    margin-bottom: 2rem;
}

.hero-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem 1.3rem;
    margin-top: 1.8rem;
}

.credential {
    font-size: 0.73rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.gold-tick {
    color: var(--accent-dark);
    font-weight: 900;
    font-size: 0.85rem;
}

/* Hero photo */
.hero-photo { position: relative; }

.hero-photo-frame {
    width: 100%;
    max-width: 480px;
    height: 680px;
    overflow: hidden;
    border-radius: 20px;
    position: relative;
    z-index: 2;
}

.hero-photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

/* Quote card with gold paper */
.hero-quote-card {
    position: absolute;
    bottom: 1cm;
    left: -1cm;
    z-index: 3;
    max-width: 280px;
}

.quote-gold-bg {
    position: absolute;
    top: -8px;
    left: -8px;
    right: 8px;
    bottom: 8px;
    background: var(--accent);
    border-radius: 14px;
    z-index: 0;
}

.quote-white-card {
    position: relative;
    background: var(--white);
    border-radius: 14px;
    padding: 1.2rem 1.5rem;
    box-shadow: var(--shadow);
    z-index: 1;
}

.quote-text {
    font-family: 'Lora', serif;
    font-size: 0.85rem;
    font-style: italic;
    color: #333;
    line-height: 1.55;
    margin-bottom: 0.4rem;
}

.quote-author {
    font-size: 0.7rem;
    color: var(--accent-dark);
    font-weight: 600;
}

/* ============================================
   TRUSTED BY
   ============================================ */
.trusted-by {
    padding: 2rem 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.trusted-label {
    text-align: center;
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 1.2rem;
}

.trusted-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.trusted-logos img {
    height: 30px;
    width: auto;
    opacity: 0.35;
    filter: grayscale(100%);
    transition: opacity var(--transition);
}

.trusted-logos img:hover { opacity: 0.6; }

/* ============================================
   FAMILIAR — "Zní vám to povědomě?"
   ============================================ */
.familiar {
    padding: 5rem 0;
    background: var(--bg);
}
.familiar-content {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}
.familiar-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}
.familiar-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--text-dark);
    margin-top: 3rem;
    margin-bottom: 1.2rem;
}
.familiar-content p {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--text-body);
}
.familiar-metaphor {
    font-style: italic;
    margin-top: 1.2rem;
    opacity: 0.88;
}
.stakes-inline {
    margin-top: 2rem;
    text-align: left;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}
.stakes-inline ul { list-style: none; padding: 0; }
.stakes-inline li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-body);
}
.stakes-inline li::before {
    content: "\2013";
    position: absolute;
    left: 0;
    color: #8b6f7e;
}
.familiar-bridge {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-light);
    text-align: center;
}
.familiar-bridge p {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-style: italic;
    color: #2d1b3d;
    margin-bottom: 1.5rem;
}

/* ============================================
   STAKES
   ============================================ */
.stakes {
    background: var(--bg-alt);
}

.stakes-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.stakes h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: var(--text-dark);
    margin-bottom: 2.5rem;
}

.stakes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.stake-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 1.3rem;
    text-align: left;
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
}

.stake-icon {
    color: var(--purple);
    font-size: 0.6rem;
    margin-top: 0.4rem;
    flex-shrink: 0;
}

.stake-item p {
    font-size: 0.9rem;
    color: var(--text-body);
    line-height: 1.6;
}

.stakes-shift {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--accent-dark);
    font-style: italic;
    margin-top: 1rem;
}

/* ============================================
   VALUE PROPOSITION
   ============================================ */
.value-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: stretch;
    margin-top: 2.5rem;
}

.value-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
}

.value-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid var(--border);
}

.value-card-after {
    border-color: var(--accent);
    background: linear-gradient(135deg, rgba(228, 191, 97, 0.05) 0%, var(--white) 100%);
}

.value-card-after h3 {
    color: var(--accent-dark);
    border-bottom-color: var(--accent);
}

.value-card ul {
    list-style: none;
}

.value-card li {
    padding: 0.5rem 0;
    padding-left: 1.3rem;
    position: relative;
    font-size: 0.9rem;
    color: var(--text-body);
}

.value-card li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--text-muted);
}

.value-card-after li::before {
    content: '\2713';
    color: var(--accent-dark);
    font-weight: 700;
}

.value-arrow {
    display: flex;
    align-items: center;
    font-size: 2rem;
    color: var(--accent);
    font-weight: 300;
}

/* ============================================
   GUIDE
   ============================================ */
.guide { background: var(--bg-alt); }

.guide-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 3rem;
    align-items: center;
}

.guide-photo img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.guide-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.guide-text p {
    font-size: 0.92rem;
    color: var(--text-body);
    margin-bottom: 1rem;
    line-height: 1.75;
}

.guide-text blockquote {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--accent-dark);
    font-style: italic;
    margin: 1.5rem 0;
    padding-left: 1rem;
    border-left: 3px solid var(--accent);
}

/* ============================================
   PLAN — 3 Steps
   ============================================ */
.plan-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.plan-step {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.plan-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--purple-dark);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.plan-step h3 {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.plan-step p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.plan-cta { text-align: center; }

/* ============================================
   BLOOM METHOD
   ============================================ */
.bloom { background: var(--bg-alt); }

.bloom-steps {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 2.5rem;
}

.bloom-step {
    flex: 1;
    min-width: 180px;
    max-width: 210px;
    text-align: center;
    padding: 2rem 1.2rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all var(--transition);
}

.bloom-step:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.bloom-letter {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-dark);
    margin-bottom: 0.5rem;
}

.bloom-step h3 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.4rem;
}

.bloom-step p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ============================================
   PROGRAMS
   ============================================ */
.programs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2.5rem;
}

.program-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.5rem;
    text-align: center;
    transition: all var(--transition);
}

.program-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.program-logo { height: 65px; width: auto; margin-bottom: 1.2rem; border-radius: 8px; }

.program-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--purple);
    margin-bottom: 0.8rem;
}

.program-for { font-size: 0.88rem; color: var(--text-body); margin-bottom: 1rem; }

.program-card ul { list-style: none; text-align: left; margin-bottom: 1.5rem; }

.program-card li {
    padding: 0.45rem 0;
    padding-left: 1.3rem;
    position: relative;
    font-size: 0.85rem;
    color: var(--text-body);
    border-bottom: 1px solid var(--border-light);
}

.program-card li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--accent-dark);
    font-weight: 700;
}

/* ============================================
   OFFER
   ============================================ */
.offer { background: var(--bg-alt); }

.offer-content {
    max-width: 620px;
    margin: 0 auto;
    text-align: center;
}

.offer-lead {
    font-size: 1rem;
    color: var(--text-body);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.offer-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.offer-detail {
    padding: 1rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    text-align: left;
}

.offer-detail strong {
    display: block;
    color: var(--text-dark);
    font-size: 0.82rem;
    margin-bottom: 0.15rem;
}

.offer-detail p { font-size: 0.82rem; color: var(--text-muted); margin: 0; }

.offer-limited {
    font-size: 0.85rem;
    color: var(--purple);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.testimonial-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.8rem;
    transition: all var(--transition);
}

.testimonial-card:hover { border-color: var(--accent); }

.testimonial-stars { color: var(--accent-dark); font-size: 0.85rem; margin-bottom: 0.7rem; letter-spacing: 2px; }

.testimonial-quote {
    font-size: 0.83rem;
    color: var(--text-body);
    line-height: 1.65;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding-top: 0.8rem;
    border-top: 1px solid var(--border-light);
}

.testimonial-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--purple), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--white);
    flex-shrink: 0;
}

.testimonial-avatar-img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.testimonial-name { font-weight: 600; font-size: 0.82rem; color: var(--text-dark); }
.testimonial-role { font-size: 0.72rem; color: var(--text-muted); }

/* ============================================
   ABOUT / STORY
   ============================================ */
.about { background: var(--bg-alt); }

/* Magazine-style article layout */
.story-content {
    max-width: 800px;
    margin: 2rem auto 0;
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 2rem;
    align-items: start;
}

.story-photo-side {
    position: sticky;
    top: 100px;
}

.story-photo-side img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.story-text p, .story-full p {
    margin-bottom: 1.2rem;
    color: var(--text-body);
    line-height: 1.9;
    font-size: 1.05rem;
}

.story-text p:first-child::first-letter {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    float: left;
    line-height: 1;
    margin-right: 0.5rem;
    margin-top: 0.1rem;
    color: var(--accent-dark);
    font-weight: 700;
}

.story-full {
    max-width: 800px;
    margin: 0 auto;
}

.story-full em { color: var(--purple); }
.story-full strong { color: var(--text-dark); }

.story-divider {
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--purple));
    margin: 2rem auto;
}

.story-emphasis {
    font-size: 1.1rem;
    color: var(--text-dark) !important;
    text-align: center;
    margin: 2rem 0;
    padding: 1.5rem 2rem;
    border-left: 3px solid var(--accent);
    background: rgba(255,255,255,0.5);
    border-radius: 0 var(--radius) var(--radius) 0;
}

.story-closing {
    text-align: center;
    font-size: 1.05rem;
    margin-top: 1.5rem;
}

.story-quote {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    text-align: center;
    color: var(--accent-dark);
    font-style: italic;
    margin-top: 2.5rem;
    padding: 1.5rem 2rem;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

/* ============================================
   TIMELINE
   ============================================ */
.timeline-track {
    position: relative;
    max-width: 680px;
    margin: 2rem auto 0;
    padding-left: 50px;
}

.timeline-track::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--accent), var(--purple), var(--accent));
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 2rem;
}

.timeline-year {
    position: absolute;
    left: -55px;
    top: 0.2rem;
    font-family: 'Playfair Display', serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--accent-dark);
    width: 60px;
    text-align: right;
}

.timeline-icon {
    position: absolute;
    left: -12px;
    top: 0.2rem;
    font-size: 1.1rem;
    background: var(--bg);
    padding: 2px 0;
    z-index: 1;
}

.timeline-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 1rem 1.3rem;
    transition: all var(--transition);
}

.timeline-card:hover { border-color: var(--accent); }

.timeline-card h4 { font-size: 0.9rem; color: var(--text-dark); margin-bottom: 0.15rem; }
.timeline-card p { font-size: 0.78rem; color: var(--text-muted); }

.timeline-sub { list-style: none; margin-top: 0.4rem; padding-top: 0.4rem; border-top: 1px solid var(--border-light); }
.timeline-sub li { font-size: 0.75rem; color: var(--text-muted); padding: 0.1rem 0 0.1rem 0.8rem; position: relative; }
.timeline-sub li::before { content: '>'; position: absolute; left: 0; color: var(--accent-dark); font-size: 0.65rem; }

/* ============================================
   EVENTS
   ============================================ */
.events { background: var(--bg-alt); }

.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.event-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    transition: all var(--transition);
}

.event-card:hover { border-color: var(--accent); transform: translateY(-3px); }

.event-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.6rem;
    line-height: 1.3;
}

.event-card p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; }

/* ============================================
   FAQ
   ============================================ */
.faq-list { max-width: 680px; margin: 2rem auto 0; }

.faq-item { border-bottom: 1px solid var(--border); }

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: var(--text-dark);
    font-size: 0.95rem;
    font-weight: 500;
    text-align: left;
    padding: 1.2rem 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Inter', sans-serif;
    transition: color var(--transition);
}

.faq-question:hover { color: var(--purple); }

.faq-toggle {
    font-size: 1.2rem;
    color: var(--accent-dark);
    transition: transform var(--transition);
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.active .faq-toggle { transform: rotate(45deg); }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.active .faq-answer { max-height: 300px; padding-bottom: 1rem; }
.faq-answer p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.7; }

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
    background: linear-gradient(135deg, var(--purple-dark), var(--purple), #6b1480);
    padding: 5rem 0;
}

.final-cta-content {
    text-align: center;
    max-width: 580px;
    margin: 0 auto;
}

.final-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.final-cta-content p {
    color: rgba(255,255,255,0.85);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.final-cta-emphasis {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem !important;
    color: var(--accent) !important;
    margin: 1.5rem 0 2rem;
}

.final-cta .section-label {
    color: var(--accent);
}

/* ============================================
   QUIZ PAGE
   ============================================ */
.quiz-page {
    min-height: 100vh;
    padding: 8rem 0 5rem;
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
}

.quiz-container {
    max-width: 760px;
}

/* Form group (used inside quiz email gate) */
.quiz-form .form-group {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.quiz-form .form-group label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.4rem;
    letter-spacing: 0.5px;
}

.quiz-form .form-group input {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--text-body);
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 0.85rem 1rem;
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}

.quiz-form .form-group input:focus {
    border-color: var(--purple);
    box-shadow: 0 0 0 3px rgba(79, 4, 94, 0.1);
}

.quiz-form .form-group input::placeholder {
    color: var(--text-muted);
    opacity: 0.6;
}

/* INTRO */
.quiz-intro {
    text-align: center;
}

.quiz-intro .section-label {
    margin-bottom: 1.5rem;
    display: inline-block;
}

.quiz-headline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.2rem);
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.quiz-subhead {
    font-size: 1.1rem;
    color: var(--text-body);
    max-width: 560px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

.quiz-bullets {
    list-style: none;
    padding: 0;
    margin: 0 auto 2.5rem;
    max-width: 460px;
    text-align: left;
    display: inline-block;
}

.quiz-bullets li {
    padding: 0.6rem 0 0.6rem 2rem;
    position: relative;
    color: var(--text-body);
    font-size: 0.98rem;
}

.quiz-bullets li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-dark);
    font-weight: 700;
    font-size: 1.1rem;
}

.quiz-note {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 1.5rem;
}

/* PROGRESS BAR */
.quiz-progress {
    margin-bottom: 3rem;
}

.quiz-progress-track {
    height: 6px;
    background: var(--border-light);
    border-radius: 100px;
    overflow: hidden;
    margin-bottom: 0.6rem;
}

.quiz-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--purple) 0%, var(--accent) 100%);
    width: 0%;
    transition: width 0.5s ease;
    border-radius: 100px;
}

.quiz-progress-text {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-align: center;
    font-weight: 600;
}

/* QUESTION */
.quiz-question {
    animation: quizFadeIn 0.4s ease;
}

@keyframes quizFadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

.quiz-q-text {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 3.5vw, 2.1rem);
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 2.5rem;
    line-height: 1.3;
    font-weight: 600;
}

.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.quiz-option {
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    padding: 1.1rem 1.4rem;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--text-body);
    text-align: left;
    cursor: pointer;
    transition: all 0.25s ease;
    line-height: 1.5;
}

.quiz-option:hover {
    border-color: var(--purple);
    background: var(--bg);
    transform: translateX(4px);
    box-shadow: var(--shadow);
}

.quiz-option.selected {
    border-color: var(--purple);
    background: var(--purple);
    color: var(--white);
    transform: translateX(8px);
}

/* EMAIL GATE */
.quiz-email-gate {
    text-align: center;
    animation: quizFadeIn 0.4s ease;
}

.quiz-gate-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.quiz-email-gate h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.quiz-gate-subhead {
    color: var(--text-body);
    max-width: 520px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

.quiz-form {
    max-width: 460px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.quiz-form .btn {
    margin-top: 0.5rem;
}

.quiz-privacy {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-top: 0.5rem;
}

/* LOADING */
.quiz-loading {
    text-align: center;
    padding: 4rem 0;
}

.quiz-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--border-light);
    border-top-color: var(--purple);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    animation: quizSpin 1s linear infinite;
}

@keyframes quizSpin {
    to { transform: rotate(360deg); }
}

.quiz-loading p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* RESULT */
.quiz-result {
    animation: quizFadeIn 0.5s ease;
    text-align: center;
}

.quiz-result .section-label {
    margin-bottom: 1rem;
    display: inline-block;
}

.quiz-score-block {
    background: var(--white);
    border-radius: var(--radius);
    padding: 3rem 2rem;
    margin-bottom: 2.5rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.quiz-score-label {
    font-size: 0.95rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin: 0;
}

.quiz-score-number {
    font-family: 'Playfair Display', serif;
    font-size: clamp(5rem, 14vw, 8rem);
    font-weight: 700;
    line-height: 1;
    background: linear-gradient(135deg, var(--purple) 0%, var(--accent-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0.5rem 0;
}

.quiz-score-opportunity {
    color: var(--text-body);
    font-style: italic;
    margin-top: 1.5rem;
    line-height: 1.6;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

/* ARCHETYPE BLOCK */
.quiz-archetype-block {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2.5rem 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.archetype-emoji {
    font-size: 4rem;
    margin-bottom: 1rem;
    line-height: 1;
}

.archetype-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.archetype-name {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4.5vw, 2.8rem);
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.archetype-stage {
    font-size: 0.85rem;
    color: var(--accent-dark);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.archetype-description {
    color: var(--text-body);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 580px;
    margin: 0 auto;
}

/* SIGNS + NEXT STEP */
.quiz-signs-block,
.quiz-next-block {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    text-align: left;
}

.quiz-signs-block h3,
.quiz-next-block h3 {
    font-family: 'Playfair Display', serif;
    color: var(--text-dark);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.quiz-signs-block ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.quiz-signs-block li {
    padding: 0.6rem 0 0.6rem 2rem;
    position: relative;
    color: var(--text-body);
    line-height: 1.5;
    border-bottom: 1px solid var(--border-light);
}

.quiz-signs-block li:last-child {
    border-bottom: none;
}

.quiz-signs-block li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-dark);
    font-weight: 700;
}

.quiz-next-block p {
    color: var(--text-body);
    line-height: 1.7;
}

/* CTA */
.quiz-cta-block {
    background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple) 100%);
    border-radius: var(--radius);
    padding: 3rem 2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--white);
}

.quiz-cta-block .btn-primary {
    background: var(--accent);
    color: var(--purple-dark);
    margin-bottom: 1rem;
    box-shadow: 0 8px 30px rgba(228, 191, 97, 0.3);
}

.quiz-cta-block .btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(228, 191, 97, 0.4);
}

.quiz-cta-block #ctaSubtext {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.92rem;
    line-height: 1.5;
    max-width: 460px;
    margin: 0 auto;
}

/* SHARE */
.quiz-share-block {
    text-align: center;
    padding: 2rem 0;
}

.quiz-share-block p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.quiz-share-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 600px) {
    .quiz-page {
        padding: 7rem 0 3rem;
    }
    .quiz-score-block,
    .quiz-archetype-block {
        padding: 2rem 1.2rem;
    }
    .quiz-cta-block {
        padding: 2.5rem 1.2rem;
    }
    .quiz-option {
        padding: 1rem 1.1rem;
        font-size: 0.95rem;
    }
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    background: var(--purple-dark);
    color: #c4b0d4;
    padding: 3rem 0 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo { height: 45px; width: 45px; border-radius: 50%; object-fit: cover; margin-bottom: 0.8rem; }
.footer-tagline { font-size: 0.75rem; color: var(--accent); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 0.6rem; }
.footer-mission { font-size: 0.82rem; color: #a890b8; font-style: italic; line-height: 1.5; }

.footer-links h4, .footer-contact h4 {
    font-size: 0.8rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.8rem;
}

.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 0.4rem; }
.footer-links a, .footer-contact a { color: #a890b8; text-decoration: none; font-size: 0.82rem; transition: color var(--transition); }
.footer-links a:hover, .footer-contact a:hover { color: var(--accent); }
.footer-contact p { font-size: 0.82rem; margin-bottom: 0.3rem; }

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin: 0.75rem 0;
}

.footer-social a {
    color: #a890b8;
    transition: color var(--transition);
}

.footer-social a:hover {
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p { font-size: 0.72rem; color: #8070a0; }
.footer-bottom .footer-desc { font-size: 0.8rem; color: #a890b8; margin-bottom: 0.75rem; }

footer .btn-outline {
    color: var(--accent);
    border-color: var(--accent);
    margin-top: 0.8rem;
}

footer .btn-outline:hover {
    background: var(--accent);
    color: var(--purple-dark);
}

/* ============================================
   BM VISION / MISSION
   ============================================ */
.bm-vision { background: var(--bg-alt); }

.bm-vision .container { max-width: 960px; }

.bm-vision-intro {
    max-width: 720px;
    margin: 0 auto 2.5rem;
    text-align: center;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-body);
}

.bm-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.bm-vision-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
}

.bm-vision-card .bm-vision-label {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent-dark);
    font-weight: 700;
    margin-bottom: 0.6rem;
}

.bm-vision-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: var(--text-dark);
    line-height: 1.4;
    margin-bottom: 1rem;
}

.bm-vision-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-body);
    margin: 0;
}

.bm-pillars {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.bm-pillar {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 1.2rem;
    text-align: center;
    font-size: 0.88rem;
    line-height: 1.5;
    color: var(--text-body);
}

.bm-pillar strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
    font-size: 0.92rem;
}

/* ============================================
   SALES PAGE — shared styles for program landing pages
   ============================================ */
.sp-hero {
    padding: 10rem 0 5rem;
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.sp-hero .container { position: relative; z-index: 2; }
.sp-hero .hero-watermark {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    font-size: clamp(8rem, 22vw, 22rem);
    color: rgba(79, 4, 94, 0.04);
    letter-spacing: -0.02em;
    line-height: 1; pointer-events: none; z-index: 1;
    white-space: nowrap;
}
.sp-hero .hero-badge {
    display: inline-block;
    background: rgba(228, 191, 97, 0.15);
    color: var(--accent-dark);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}
.sp-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    color: var(--text-dark);
    line-height: 1.15;
    margin-bottom: 1.5rem;
    font-weight: 700;
}
.sp-hero h1 em { font-style: italic; color: var(--purple); font-weight: 600; }
.sp-hero .hero-sub {
    font-family: 'Lora', serif;
    font-size: 1.15rem;
    color: var(--text-body);
    max-width: 720px;
    margin: 0 auto 2.2rem;
    line-height: 1.7;
}
.sp-hero .hero-cta-row {
    display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
}

/* Breadcrumb */
.sp-breadcrumb {
    position: relative; z-index: 2;
    margin-bottom: 1.5rem;
    font-size: 0.8rem; color: var(--text-muted); letter-spacing: 1px;
}
.sp-breadcrumb a { color: var(--text-muted); text-decoration: none; transition: color var(--transition); }
.sp-breadcrumb a:hover { color: var(--purple); }
.sp-breadcrumb .sep { margin: 0 0.5rem; color: var(--accent-dark); }

/* Pain section */
.sp-pain { padding: 5rem 0; background: var(--white); }
.sp-pain-content {
    max-width: 720px; margin: 0 auto; text-align: center;
}
.sp-pain-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: var(--text-dark); margin-bottom: 1.5rem;
}
.sp-pain-content p {
    font-size: 1.05rem; line-height: 1.85; color: var(--text-body); margin-bottom: 1rem;
}
.sp-pain-list {
    list-style: none; text-align: left; max-width: 580px;
    margin: 2rem auto; padding: 0;
}
.sp-pain-list li {
    position: relative; padding-left: 1.5rem; margin-bottom: 0.8rem;
    font-size: 1rem; line-height: 1.7; color: var(--text-body);
}
.sp-pain-list li::before {
    content: "\2013"; position: absolute; left: 0; color: #8b6f7e;
}
.sp-pain-quote {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem; font-style: italic; color: var(--purple);
    margin-top: 2rem; padding-top: 1.5rem;
    border-top: 1px solid var(--border-light);
}

/* Stakes section */
.sp-stakes { padding: 5rem 0; background: var(--bg-alt); }
.sp-stakes-content {
    max-width: 700px; margin: 0 auto; text-align: center;
}
.sp-stakes-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--text-dark); margin-bottom: 1.5rem;
}
.sp-stakes-content p {
    font-size: 1rem; line-height: 1.8; color: var(--text-body); margin-bottom: 1rem;
}
.sp-stakes-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 1rem; margin: 2rem 0; text-align: left;
}
.sp-stakes-card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius-sm); padding: 1.3rem;
    display: flex; gap: 0.8rem; align-items: flex-start;
}
.sp-stakes-card .icon { color: var(--purple); font-size: 1.1rem; flex-shrink: 0; margin-top: 0.15rem; }
.sp-stakes-card p { font-size: 0.9rem; color: var(--text-body); line-height: 1.6; margin: 0; }

/* Transform section */
.sp-transform { padding: 5rem 0; background: var(--white); }

/* Program structure */
.sp-program { padding: 5rem 0; background: var(--bg-alt); }
.sp-program-content { max-width: 900px; margin: 0 auto; }
.sp-month-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem; margin-top: 2.5rem;
}
.sp-month-card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 2rem 1.5rem;
    transition: all var(--transition);
}
.sp-month-card:hover { border-color: var(--accent); transform: translateY(-4px); box-shadow: var(--shadow); }
.sp-month-label {
    display: block; font-size: 0.7rem; letter-spacing: 2px;
    text-transform: uppercase; color: var(--accent-dark);
    font-weight: 700; margin-bottom: 0.6rem;
}
.sp-month-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem; color: var(--text-dark); margin-bottom: 0.8rem;
}
.sp-month-card ul { list-style: none; padding: 0; }
.sp-month-card li {
    padding: 0.35rem 0 0.35rem 1.3rem; position: relative;
    font-size: 0.85rem; color: var(--text-body); line-height: 1.5;
}
.sp-month-card li::before {
    content: '\2713'; position: absolute; left: 0;
    color: var(--accent-dark); font-weight: 700;
}

/* What's included */
.sp-includes { padding: 5rem 0; background: var(--white); }
.sp-includes-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.2rem; max-width: 900px; margin: 2.5rem auto 0;
}
.sp-include-item {
    background: var(--bg); border: 1px solid var(--border-light);
    border-radius: var(--radius-sm); padding: 1.2rem 1.4rem;
    display: flex; align-items: flex-start; gap: 0.8rem;
}
.sp-include-item .icon { font-size: 1.2rem; flex-shrink: 0; }
.sp-include-item strong { display: block; font-size: 0.88rem; color: var(--text-dark); margin-bottom: 0.2rem; }
.sp-include-item p { font-size: 0.82rem; color: var(--text-muted); margin: 0; line-height: 1.5; }

/* Pricing */
.sp-pricing { padding: 5rem 0; background: var(--bg-alt); }
.sp-price-card {
    max-width: 520px; margin: 2rem auto 0;
    background: var(--white); border: 2px solid var(--accent);
    border-radius: var(--radius); padding: 2.5rem;
    text-align: center; box-shadow: var(--shadow);
}
.sp-price-card .price-label {
    font-size: 0.72rem; letter-spacing: 3px; text-transform: uppercase;
    color: var(--accent-dark); font-weight: 700; margin-bottom: 0.5rem;
}
.sp-price-card .price-amount {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem; color: var(--text-dark); font-weight: 700; margin-bottom: 0.3rem;
}
.sp-price-card .price-period { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.sp-price-card .price-note { font-size: 0.82rem; color: var(--text-muted); margin-top: 1rem; font-style: italic; }

/* Coach mini-bio */
.sp-coach { padding: 5rem 0; background: var(--white); }
.sp-coach-grid {
    display: grid; grid-template-columns: 1fr 1.6fr;
    gap: 3rem; align-items: center;
    max-width: 900px; margin: 2rem auto 0;
}
.sp-coach-photo { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.sp-coach-photo img { width: 100%; display: block; object-fit: cover; }
.sp-coach-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem; color: var(--text-dark); margin-bottom: 1rem;
}
.sp-coach-text p { color: var(--text-body); margin-bottom: 1rem; line-height: 1.8; font-size: 0.95rem; }
.sp-coach-text blockquote {
    font-family: 'Playfair Display', serif;
    font-style: italic; color: var(--purple); font-size: 1.15rem;
    border-left: 3px solid var(--accent); padding-left: 1.2rem; margin: 1.5rem 0;
}

/* FAQ on sales page */
.sp-faq { padding: 5rem 0; background: var(--bg-alt); }

/* Final CTA on sales page */
.sp-final-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--purple-dark), var(--purple), #6b1480);
    text-align: center;
}
.sp-final-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    color: var(--white); margin-bottom: 1rem;
}
.sp-final-cta p {
    color: rgba(255,255,255,0.85); font-size: 1.05rem;
    max-width: 600px; margin: 0 auto 1rem; line-height: 1.7;
}
.sp-final-cta .cta-emphasis {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem !important; color: var(--accent) !important;
    margin: 1.5rem auto 2rem;
}
.sp-final-cta .section-label { color: var(--accent); }

/* Disclaimer */
.sp-disclaimer {
    max-width: 700px; margin: 2rem auto 0;
    font-size: 0.78rem; color: rgba(255,255,255,0.5);
    text-align: center; line-height: 1.6;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 968px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-photo { display: flex; justify-content: center; margin-top: 2rem; }
    .hero-photo-frame { max-width: 350px; height: 480px; }
    .hero-credentials { justify-content: center; }
    .story-content { grid-template-columns: 1fr; }
    .story-photo-side { position: static; }
    .story-photo-side img { max-width: 250px; margin: 0 auto; display: block; }
    .guide-grid { grid-template-columns: 1fr; }
    .guide-photo img { max-width: 400px; margin: 0 auto; display: block; }
    .programs-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr 1fr; }
    .value-grid { grid-template-columns: 1fr; }
    .value-arrow { transform: rotate(90deg); justify-content: center; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .stakes-grid { grid-template-columns: 1fr; }
    .bm-vision-grid { grid-template-columns: 1fr; }
    .bm-pillars { grid-template-columns: 1fr; }
    .sp-month-grid { grid-template-columns: 1fr; }
    .sp-stakes-grid { grid-template-columns: 1fr; }
    .sp-coach-grid { grid-template-columns: 1fr; }
    .sp-coach-photo { max-width: 320px; margin: 0 auto; }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 0; left: 0;
        width: 100%; height: 100vh;
        background: rgba(250, 248, 245, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1.5rem;
        z-index: 999;
    }
    .nav-links.active { display: flex; }
    .nav-links a { font-size: 1.1rem; color: var(--text-dark); }
    .hamburger { display: flex; z-index: 1001; }
    .hero { min-height: auto; padding: 6rem 0 3rem; }
    .hero h1 { font-size: 2rem; }
    .hero-quote-card { position: relative; bottom: auto; left: auto; margin-top: 1rem; }
    .plan-steps { grid-template-columns: 1fr; }
    .bloom-steps { flex-direction: column; align-items: center; }
    .bloom-step { max-width: 100%; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .events-grid { grid-template-columns: 1fr; }
    .offer-details { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    section { padding: 3.5rem 0; }
}
