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

body {
    background: linear-gradient(135deg, #fdf8f0 0%, #f9f1e6 100%);
    font-family: 'Inter', sans-serif;
    color: #3a2c1f;
    line-height: 1.5;
    min-height: 100vh;
}

/* Custom soft earthy tones */
:root {
    --cream: #fdf5e6;
    --warm-sand: #e8d9c5;
    --dusty-rose: #c9a9a0;
    --deep-burgundy: #8b5e3c;
    --olive: #6b705c;
    --gold-soft: #c6a43f;
    --charcoal: #2c2b26;
}

h1,
h2,
h3,
.logo,
.hero-title,
.quote-text {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    letter-spacing: -0.01em;
}

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

/* Header / Navigation */
header {
    background: rgba(253, 245, 230, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(139, 94, 60, 0.15);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
    flex-wrap: wrap;
}

.logo a {
    font-size: 1.8rem;
    font-weight: 600;
    text-decoration: none;
    color: var(--deep-burgundy);
    letter-spacing: 1px;
}

.logo span {
    font-weight: 300;
    color: var(--gold-soft);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #4a3727;
    font-size: 0.95rem;
    font-weight: 500;
    transition: 0.2s;
    letter-spacing: 0.3px;
}

.nav-links a:hover {
    color: var(--deep-burgundy);
}

/* Hero Section */
.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: linear-gradient(115deg, #fdf8f0 55%, rgba(201, 169, 160, 0.1) 100%);
    position: relative;
}

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

.hero-content h1 {
    font-size: 3.8rem;
    color: var(--deep-burgundy);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero-tagline {
    font-size: 1.2rem;
    color: #7a5a44;
    margin-bottom: 1.8rem;
    border-left: 3px solid var(--gold-soft);
    padding-left: 1.2rem;
}

.hero-description {
    margin-bottom: 2rem;
    color: #5a4a38;
}

.btn {
    display: inline-block;
    background: var(--deep-burgundy);
    border: none;
    padding: 0.9rem 2rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: #fef7e8;
    text-decoration: none;
    transition: 0.3s;
    border-radius: 40px;
    cursor: pointer;
}

.btn-outline {
    background: transparent;
    border: 1.5px solid var(--deep-burgundy);
    color: var(--deep-burgundy);
    margin-left: 1rem;
}

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

.btn:hover {
    background: #a06e48;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 94, 60, 0.2);
}

.hero-image {
    background: url('https://placehold.co/600x600/f5e6d3/8b5e3c?text=Lovely+Maya+Portrait') center/cover no-repeat;
    border-radius: 32px;
    min-height: 450px;
    box-shadow: 0 25px 40px -15px rgba(0, 0, 0, 0.1);
}

/* Welcome Section / Quote */
.welcome-section {
    padding: 5rem 0;
    text-align: center;
    background: linear-gradient(135deg, #faf3e8, #fff6ed);
}

.quote-icon {
    font-size: 2.5rem;
    color: var(--gold-soft);
    opacity: 0.6;
    margin-bottom: 1rem;
}

.quote-text {
    font-size: 1.8rem;
    max-width: 800px;
    margin: 0 auto;
    color: #4a3727;
    font-style: italic;
}

.quote-author {
    margin-top: 1rem;
    font-size: 0.9rem;
    letter-spacing: 2px;
    color: var(--deep-burgundy);
}

/* Features / What I Offer */
.features {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    color: var(--deep-burgundy);
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 28px;
    text-align: center;
    transition: 0.25s;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(139, 94, 60, 0.1);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--dusty-rose);
    box-shadow: 0 20px 30px -12px rgba(139, 94, 60, 0.15);
}

.feature-icon {
    font-size: 2.2rem;
    color: var(--gold-soft);
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--deep-burgundy);
}

/* Journal Preview */
.journal-preview {
    background: #fff9f2;
    padding: 5rem 0;
}

.journal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.journal-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid #f0e2d4;
}

.journal-img {
    height: 200px;
    background: #e8d9c5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--deep-burgundy);
}

.journal-content {
    padding: 1.5rem;
}

.journal-date {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold-soft);
}

.journal-title {
    font-size: 1.2rem;
    margin: 0.5rem 0;
}

/* Newsletter */
.newsletter {
    padding: 4rem 0;
    background: linear-gradient(145deg, #e8d9c5, #f0e4d4);
    text-align: center;
}

.newsletter-container {
    max-width: 550px;
    margin: 0 auto;
}

.newsletter h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.newsletter-form {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.5rem;
    justify-content: center;
}

.newsletter-form input {
    flex: 1;
    padding: 0.9rem 1.2rem;
    border: none;
    border-radius: 60px;
    background: white;
    font-size: 0.9rem;
    min-width: 200px;
}

/* Footer */
footer {
    background: #2c2b26;
    color: #d6cfc2;
    padding: 2.5rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
}

.social-links a {
    color: #d6cfc2;
    margin: 0 0.6rem;
    font-size: 1.2rem;
    transition: 0.2s;
}

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

@media (max-width: 850px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-tagline {
        border-left: none;
        padding-left: 0;
    }

    .navbar {
        flex-direction: column;
        gap: 0.8rem;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .container {
        padding: 0 1.2rem;
    }

    .quote-text {
        font-size: 1.3rem;
    }
}

/* subtle animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.feature-card,
.journal-card {
    animation: fadeIn 0.6s ease forwards;
}