/* Premium Footer & Bottom Section Styles - Vogue meets Apple 2026 */

/* Section Spacing - Editorial Breath */
section.new-standard-section,
section.editorial-quote-section {
    padding: 120px 0;
}

/* Typography Overrides */
h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    letter-spacing: -0.02em;
}

/* Benefits / Standard Section */
.new-standard-section {
    background: #FFFFFF;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.standard-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-top: 80px;
}

.standard-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.standard-icon {
    width: 48px;
    height: 48px;
    background: #F5F3FF; /* Light purple tint */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9333EA;
    margin-bottom: 24px;
    font-size: 20px;
}

.standard-card h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #111;
}

.standard-card p {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Editorial Quote Section */
.editorial-quote-section {
    background: #FAFAFA;
    text-align: center;
    padding: 160px 0;
}

.quote-text {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 4vw, 48px);
    font-style: italic;
    line-height: 1.3;
    color: #111;
    max-width: 900px;
    margin: 0 auto 40px;
    position: relative;
}

.quote-text::before {
    content: "“";
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 80px;
    color: #E5E5E5;
    font-family: serif;
}

.quote-author {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #9333EA;
    font-weight: 600;
}

/* Premium Footer */
.premium-footer {
    background: #050505;
    color: #FFFFFF;
    padding: 100px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 100px;
    align-items: start;
}

.footer-brand h4 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    margin-bottom: 24px;
    color: #FFF;
    font-weight: 500;
}

.footer-tagline {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #888;
    font-size: 16px;
    max-width: 300px;
    line-height: 1.6;
}

.footer-col h5 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 32px;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 16px;
}

.footer-links a {
    color: #FFF;
    text-decoration: none;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    transition: color 0.2s ease;
    opacity: 0.8;
}

.footer-links a:hover {
    color: #9333EA;
    opacity: 1;
}

.footer-bottom-row {
    border-top: 1px solid #1A1A1A;
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    color: #444;
    font-size: 12px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Mobile */
@media (max-width: 768px) {
    .standard-grid, .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .quote-text {
        font-size: 28px;
    }
    
    .footer-bottom-row {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
}
