/* ============================================================
   AGLAEA LANDING PAGE STYLES
   Premium luxury, emotional, considered
   ============================================================ */

:root {
    --gold: #c9a870;
    --gold-light: #d9bd8a;
    --gold-pale: #f5ead4;
    --cream: #f5f0e8;
    --cream-light: #f9f5ed;
    --charcoal: #2a2a2a;
    --slate: #6b6b6b;
    --stone: #d4d0c8;
}

/* ============================================================
   HERO SECTION
   ============================================================ */

.landing-hero {
    background: linear-gradient(180deg, var(--cream) 0%, #ffffff 100%);
    padding: 120px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.landing-hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 168, 112, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.landing-hero-content {
    max-width: 720px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.landing-eyebrow {
    font-size: 13px;
    color: var(--gold);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-weight: 600;
    margin: 0 0 32px 0;
}

.landing-hero-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 80px;
    font-weight: 400;
    color: var(--charcoal);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin: 0 0 32px 0;
}

.landing-hero-title em {
    color: var(--gold);
    font-style: italic;
    font-weight: 400;
}

.landing-hero-subtitle {
    font-size: 19px;
    color: var(--slate);
    line-height: 1.7;
    margin: 0 0 48px 0;
    font-weight: 300;
}

.landing-hero-ctas {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin-bottom: 24px;
}

.landing-hero-note {
    font-size: 13px;
    color: var(--slate);
    margin: 0;
    font-style: italic;
}

.btn-large {
    padding: 18px 48px !important;
    font-size: 15px !important;
    letter-spacing: 0.05em;
}

.btn-text-link {
    color: var(--charcoal);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.02em;
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
    transition: border-color 0.2s ease;
}

.btn-text-link:hover {
    border-bottom-color: var(--gold);
}

.btn-text-link.gold {
    color: var(--gold);
    font-weight: 600;
}

/* ============================================================
   GENERAL SECTION STYLING
   ============================================================ */

.section-eyebrow {
    font-size: 12px;
    color: var(--gold);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-weight: 600;
    margin: 0 0 24px 0;
    text-align: center;
}

.section-heading {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 52px;
    font-weight: 400;
    color: var(--charcoal);
    line-height: 1.1;
    letter-spacing: -0.01em;
    margin: 0 0 64px 0;
    text-align: center;
}

.section-heading em {
    color: var(--gold);
    font-style: italic;
}

/* ============================================================
   PROBLEM SECTION
   ============================================================ */

.landing-problem {
    background: #ffffff;
    padding: 120px 0;
}

.landing-problem-content {
    max-width: 900px;
    margin: 0 auto;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    margin: 0 0 64px 0;
}

.problem-item p {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 22px;
    color: var(--charcoal);
    line-height: 1.5;
    font-style: italic;
    margin: 0;
    padding-top: 32px;
    border-top: 1px solid var(--gold);
    font-weight: 400;
}

.problem-conclusion {
    font-size: 19px;
    color: var(--slate);
    line-height: 1.7;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 300;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */

.landing-how {
    background: var(--cream);
    padding: 120px 0;
}

.how-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 64px;
    max-width: 1100px;
    margin: 0 auto;
}

.how-step {
    text-align: center;
}

.how-step-number {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 64px;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 24px;
    font-weight: 300;
}

.how-step-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 28px;
    font-weight: 500;
    color: var(--charcoal);
    margin: 0 0 16px 0;
    line-height: 1.2;
}

.how-step-text {
    font-size: 16px;
    color: var(--slate);
    line-height: 1.7;
    margin: 0;
}

/* ============================================================
   QUOTE SECTION
   ============================================================ */

.landing-quote {
    background: var(--charcoal);
    padding: 100px 0;
    text-align: center;
    color: white;
}

.quote-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.quote-mark {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 120px;
    color: var(--gold);
    line-height: 0.5;
    display: block;
    margin-bottom: 16px;
}

.quote-text {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 42px;
    font-style: italic;
    font-weight: 300;
    color: #ffffff;
    line-height: 1.3;
    margin: 0 0 24px 0;
}

.quote-attribution {
    font-size: 13px;
    color: var(--gold);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 500;
    margin: 0;
}

/* ============================================================
   JUST BECAUSE SECTION
   ============================================================ */

.landing-justbecause {
    background: #ffffff;
    padding: 120px 0;
}

.jb-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.jb-content .section-eyebrow,
.jb-content .section-heading {
    text-align: left;
}

.jb-content .section-heading {
    margin-bottom: 32px;
    font-size: 44px;
}

.jb-text {
    font-size: 17px;
    color: var(--slate);
    line-height: 1.8;
    margin: 0 0 20px 0;
    font-weight: 300;
}

.jb-content .btn-text-link {
    margin-top: 16px;
    display: inline-block;
}

.jb-visual {
    display: flex;
    justify-content: center;
}

.jb-card {
    background: var(--cream-light);
    padding: 48px 40px;
    border-radius: 4px;
    max-width: 380px;
    border: 1px solid rgba(201, 168, 112, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.jb-card-icon {
    font-size: 32px;
    color: var(--gold);
    margin-bottom: 24px;
}

.jb-card-eyebrow {
    font-size: 12px;
    color: var(--gold);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-weight: 600;
    margin: 0 0 16px 0;
}

.jb-card-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 32px;
    font-weight: 400;
    color: var(--charcoal);
    line-height: 1.2;
    margin: 0 0 24px 0;
}

.jb-card-title em {
    color: var(--gold);
    font-style: italic;
}

.jb-card-text {
    font-size: 15px;
    color: var(--slate);
    line-height: 1.7;
    margin: 0;
    font-weight: 300;
}

/* ============================================================
   FEATURES SECTION
   ============================================================ */

.landing-features {
    background: var(--cream);
    padding: 120px 0;
}

.features-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.feature-row {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 32px;
    align-items: start;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(201, 168, 112, 0.2);
}

.feature-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.feature-icon {
    font-size: 36px;
    color: var(--gold);
    text-align: center;
    line-height: 1;
    padding-top: 8px;
}

.feature-content h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 28px;
    font-weight: 500;
    color: var(--charcoal);
    margin: 0 0 12px 0;
    line-height: 1.2;
}

.feature-content p {
    font-size: 16px;
    color: var(--slate);
    line-height: 1.7;
    margin: 0;
    font-weight: 300;
}

/* ============================================================
   PRICING SECTION
   ============================================================ */

.landing-pricing {
    background: #ffffff;
    padding: 120px 0;
}

.pricing-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 900px;
    margin: 0 auto 32px;
}

.pricing-card {
    background: #ffffff;
    border: 1px solid var(--stone);
    border-radius: 4px;
    padding: 48px 40px;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.pricing-card.featured {
    border: 2px solid var(--gold);
    background: var(--cream-light);
    transform: scale(1.02);
}

.pricing-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: #ffffff;
    padding: 6px 20px;
    border-radius: 100px;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--stone);
    margin-bottom: 32px;
}

.pricing-name {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 36px;
    font-weight: 400;
    color: var(--charcoal);
    margin: 0 0 16px 0;
}

.pricing-price {
    margin: 0 0 12px 0;
}

.price-amount {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 56px;
    font-weight: 400;
    color: var(--gold);
    line-height: 1;
}

.price-period {
    font-size: 15px;
    color: var(--slate);
    margin-left: 4px;
}

.pricing-tagline {
    font-size: 14px;
    color: var(--slate);
    margin: 0;
    font-style: italic;
    font-family: 'Cormorant Garamond', Georgia, serif;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    flex: 1;
}

.pricing-features li {
    padding: 12px 0;
    font-size: 15px;
    color: var(--charcoal);
    border-bottom: 1px solid rgba(212, 208, 200, 0.4);
    display: flex;
    align-items: center;
    gap: 12px;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features .check {
    color: var(--gold);
    font-size: 18px;
    font-weight: 600;
}

.pricing-note {
    text-align: center;
    font-size: 14px;
    color: var(--slate);
    margin: 32px auto 0;
    font-style: italic;
}

.btn-full {
    width: 100%;
    display: block;
    text-align: center;
}

/* ============================================================
   STORY SECTION
   ============================================================ */

.landing-story {
    background: var(--cream);
    padding: 120px 0;
    text-align: center;
}

.story-content {
    max-width: 720px;
    margin: 0 auto;
}

.story-text {
    font-size: 17px;
    color: var(--slate);
    line-height: 1.8;
    margin: 0 0 24px 0;
    font-weight: 300;
}

.story-content .btn-text-link {
    margin-top: 16px;
    display: inline-block;
}

/* ============================================================
   FAQ SECTION
   ============================================================ */

.landing-faq {
    background: #ffffff;
    padding: 120px 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

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

.faq-item summary {
    cursor: pointer;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 22px;
    color: var(--charcoal);
    font-weight: 500;
    padding-right: 40px;
    position: relative;
    list-style: none;
    line-height: 1.4;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 28px;
    color: var(--gold);
    transition: transform 0.2s ease;
    font-weight: 300;
}

.faq-item[open] summary::after {
    content: '−';
}

.faq-item p {
    margin: 16px 0 0 0;
    font-size: 15px;
    color: var(--slate);
    line-height: 1.7;
    font-weight: 300;
}

/* ============================================================
   FINAL CTA SECTION
   ============================================================ */

.landing-final-cta {
    background: var(--charcoal);
    padding: 120px 0;
    text-align: center;
    color: #ffffff;
}

.final-cta-content {
    max-width: 720px;
    margin: 0 auto;
}

.final-cta-heading {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 56px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.1;
    margin: 0 0 32px 0;
}

.final-cta-heading em {
    color: var(--gold);
    font-style: italic;
}

.final-cta-text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin: 0 0 40px 0;
    font-weight: 300;
}

.final-cta-note {
    margin-top: 20px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
    background: var(--cream-light);
    padding: 80px 0 32px;
    border-top: 1px solid var(--stone);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    margin-bottom: 48px;
}

.footer-brand .footer-logo {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 32px;
    color: var(--gold);
    letter-spacing: 0.2em;
    margin: 0 0 8px 0;
    font-weight: 400;
}

.footer-brand .footer-tagline {
    font-size: 14px;
    color: var(--slate);
    margin: 0;
    font-style: italic;
}

.footer-links {
    display: flex;
    justify-content: flex-end;
    gap: 32px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--charcoal);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-copyright {
    text-align: center;
    font-size: 13px;
    color: var(--slate);
    padding-top: 32px;
    border-top: 1px solid var(--stone);
    margin: 0;
}

/* ============================================================
   MOBILE RESPONSIVENESS
   ============================================================ */

@media (max-width: 768px) {
    .landing-hero {
        padding: 80px 0 60px;
    }
    
    .landing-hero-title {
        font-size: 48px;
    }
    
    .landing-hero-subtitle {
        font-size: 17px;
    }
    
    .landing-hero-ctas {
        flex-direction: column;
        gap: 16px;
    }
    
    .section-heading {
        font-size: 36px;
    }
    
    .problem-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .how-steps {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .jb-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .jb-content .section-heading {
        text-align: center;
        font-size: 36px;
    }
    
    .jb-content .section-eyebrow {
        text-align: center;
    }
    
    .quote-text {
        font-size: 28px;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .feature-row {
        grid-template-columns: 1fr;
        gap: 16px;
        text-align: center;
    }
    
    .final-cta-heading {
        font-size: 36px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .landing-problem,
    .landing-how,
    .landing-justbecause,
    .landing-features,
    .landing-pricing,
    .landing-story,
    .landing-faq,
    .landing-final-cta {
        padding: 80px 0;
    }
}
