/* Version 3: Warm & Trustworthy - Earthy tones with organic shapes */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --terracotta: #D4896B;
    --cream: #F5F1E8;
    --olive: #8B9556;
    --warm-brown: #6B4E3D;
    --soft-cream: #FDFCF9;
    --text-dark: #3A3A3A;
    --text-medium: #6B6B6B;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.8;
    color: var(--text-dark);
    background: var(--soft-cream);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 32px;
}

/* Hero Section */
.hero {
    min-height: 95vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 32px;
    background: linear-gradient(180deg, var(--cream) 0%, var(--soft-cream) 100%);
    position: relative;
    overflow: hidden;
}

.hero-decoration {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--olive) 0%, transparent 70%);
    opacity: 0.12;
    border-radius: 50%;
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 32px;
    color: var(--warm-brown);
    letter-spacing: -0.01em;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.hero-subtitle {
    font-size: 1.375rem;
    color: var(--text-medium);
    margin-bottom: 52px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 300;
}

.cta-button {
    display: inline-block;
    padding: 18px 44px;
    background: var(--terracotta);
    color: var(--soft-cream);
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 40px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 28px rgba(212, 137, 107, 0.25);
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(212, 137, 107, 0.35);
    background: #C17858;
}

.cta-button.secondary {
    background: var(--olive);
    color: var(--soft-cream);
    box-shadow: 0 6px 24px rgba(139, 149, 86, 0.25);
}

.cta-button.secondary:hover {
    background: #7A8449;
    box-shadow: 0 10px 32px rgba(139, 149, 86, 0.35);
}

/* Features Section */
.features {
    padding: 100px 32px;
    background: var(--soft-cream);
}

.features .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 48px;
}

.feature-card {
    background: var(--cream);
    padding: 52px 40px;
    border-radius: 24px;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(107, 78, 61, 0.08);
    border: 1px solid rgba(212, 137, 107, 0.15);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(107, 78, 61, 0.12);
}

.feature-card:nth-child(1) .feature-icon {
    background: linear-gradient(135deg, var(--terracotta) 0%, #C17858 100%);
}

.feature-card:nth-child(2) .feature-icon {
    background: linear-gradient(135deg, var(--olive) 0%, #7A8449 100%);
}

.feature-card:nth-child(3) .feature-icon {
    background: linear-gradient(135deg, var(--warm-brown) 0%, #5A3F30 100%);
}

.feature-icon {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
    color: var(--soft-cream);
    box-shadow: 0 6px 20px rgba(107, 78, 61, 0.15);
}

.feature-card h3 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 18px;
    color: var(--warm-brown);
    font-family: 'Georgia', 'Times New Roman', serif;
    letter-spacing: -0.01em;
}

.feature-card p {
    font-size: 1.0625rem;
    color: var(--text-medium);
    margin-bottom: 26px;
    line-height: 1.8;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 300;
}

.feature-link {
    color: var(--terracotta);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.feature-link:hover {
    color: var(--warm-brown);
}

/* CTA Section */
.cta-section {
    padding: 100px 32px;
    background: linear-gradient(135deg, var(--terracotta) 0%, var(--warm-brown) 100%);
    text-align: center;
    border-radius: 0;
}

.cta-section h2 {
    font-size: 3.5rem;
    color: var(--soft-cream);
    margin-bottom: 24px;
    font-weight: 400;
    letter-spacing: -0.01em;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.cta-subtitle {
    font-size: 1.375rem;
    color: var(--soft-cream);
    opacity: 0.95;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 300;
}

/* Footer */
.footer {
    padding: 60px 32px;
    background: var(--cream);
    text-align: center;
}

.footer p {
    color: var(--text-medium);
    font-size: 0.9375rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 300;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 80px 24px;
        min-height: 80vh;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .features {
        padding: 80px 24px;
    }

    .features .container {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .feature-card {
        padding: 44px 32px;
        border-radius: 20px;
    }

    .feature-icon {
        width: 68px;
        height: 68px;
    }

    .cta-section {
        padding: 80px 24px;
    }

    .cta-section h2 {
        font-size: 2.5rem;
    }

    .footer {
        padding: 50px 24px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.25rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .cta-button {
        padding: 15px 36px;
        font-size: 1rem;
    }

    .feature-card h3 {
        font-size: 1.75rem;
    }

    .feature-card p {
        font-size: 1rem;
    }

    .cta-section h2 {
        font-size: 2rem;
    }

    .feature-icon {
        width: 64px;
        height: 64px;
    }

    .feature-icon svg {
        width: 36px;
        height: 36px;
    }
}
