/* =============================================
   INDEX PAGE STYLES - Editorial Homepage
   ============================================= */

/* Hero Section */
.hero {
    background: var(--rr-black);
    color: var(--rr-bone);
    text-align: center;
    padding: 100px 20px 80px;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subheading {
    font-size: 1.3rem;
    color: var(--rr-gold);
    font-weight: 600;
    margin-bottom: 12px;
}

.hero-body {
    color: var(--rr-muted);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero {
    padding: 14px 32px;
    font-size: 1.05rem;
}

/* On dark backgrounds, button text should be bone */
.section-black .btn-primary,
.hero .btn-primary {
    color: var(--rr-bone);
}

.section-black .btn-secondary,
.hero .btn-secondary {
    color: var(--rr-bone);
    border-color: var(--rr-border);
}

.section-black .btn-secondary:hover,
.hero .btn-secondary:hover {
    border-color: var(--rr-gold);
    background: var(--rr-gold);
    color: var(--rr-black);
}

/* Section Layout */
.section-bone {
    background: var(--rr-bone);
    color: var(--rr-charcoal);
    padding: 100px 20px;
}

.section-black {
    background: var(--rr-black);
    color: var(--rr-bone);
    padding: 100px 20px;
    text-align: center;
}

.section-narrow {
    max-width: 720px;
    margin: 0 auto;
}

.section-bone h2,
.section-black h2 {
    text-align: center;
    margin-bottom: 30px;
}

.section-bone h2 {
    font-size: 32px;
}

.section-black h2 {
    font-size: 32px;
    color: var(--rr-bone);
}

.section-bone p {
    line-height: 1.6;
    margin-bottom: 16px;
    max-width: 680px;
}

/* Feature Lists */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.feature-list li {
    padding: 8px 0 8px 24px;
    position: relative;
    line-height: 1.5;
}

.feature-list li::before {
    content: '•';
    color: var(--rr-gold);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Switch Reasons */
.switch-reasons {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 12px;
    text-align: center;
}

.switch-reasons li {
    padding: 16px;
    background: #fff;
    border-radius: var(--rr-radius);
    border: 1px solid var(--rr-border);
    font-size: 0.95rem;
}

/* Emphasis Block */
.emphasis-block {
    margin: 30px 0;
    padding-left: 20px;
    border-left: 2px solid var(--rr-gold);
}

.emphasis-block p {
    margin-bottom: 4px;
    font-weight: 600;
    font-size: 1.05rem;
}

.section-black .emphasis-block {
    display: inline-block;
    text-align: left;
}

/* Philosophy */
.philosophy-lead {
    font-family: "Cormorant Garamond", "Garamond", "Georgia", serif;
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 20px;
}

/* Differentiators Grid */
.diff-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 40px auto 0;
}

.diff-card {
    background: #fff;
    border-radius: var(--rr-radius);
    padding: 30px;
    border: 1px solid var(--rr-border);
}

.diff-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--rr-charcoal);
}

.diff-card p {
    color: var(--rr-muted);
    line-height: 1.55;
}

/* How It Works */
.how-steps {
    margin-bottom: 30px;
}

.how-steps p {
    font-size: 1.1rem;
    margin-bottom: 8px;
    max-width: none;
}

/* Trust */
.trust-tagline {
    font-family: "Cormorant Garamond", "Garamond", "Georgia", serif;
    font-size: 1.4rem;
    font-style: italic;
    margin-top: 30px;
    color: var(--rr-charcoal);
}

/* Founder */
.founder-text p {
    margin-bottom: 16px;
}

.founder-quote {
    font-family: "Cormorant Garamond", "Garamond", "Georgia", serif;
    font-size: 1.4rem;
    font-style: italic;
    padding: 20px 0;
    color: var(--rr-charcoal);
}

.founder-signature {
    margin-top: 30px;
    font-weight: 600;
}

.founder-signature span {
    font-weight: 400;
    color: var(--rr-muted);
}

/* Final CTA */
.cta-final {
    text-align: center;
}

.cta-final h2 {
    margin-bottom: 30px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        padding: 70px 20px 50px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .section-bone,
    .section-black {
        padding: 70px 20px;
    }

    .diff-grid {
        grid-template-columns: 1fr;
    }

    .switch-reasons {
        grid-template-columns: 1fr;
    }
}
