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

body {
    font-family: 'DM Sans', sans-serif;
    color: #4a3728;
    background: #faf8f5;
}

/* Fade-in on scroll */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Top Bar */
.top-bar {
    background: #3b2a1a;
    padding: 14px 60px;
}

.top-bar-inner {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.top-bar-name {
    color: #fdf0e0;
    font-weight: 700;
    font-size: 0.95rem;
}

.top-bar-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.top-bar-links a {
    color: #e8d5bf;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-bar-links a:hover {
    color: #ffffff;
}

.top-bar-links .material-symbols-rounded {
    font-size: 16px;
}

.section {
    padding: 80px 60px;
}

.section-inner {
    max-width: 860px;
    width: 100%;
    margin: 0 auto;
}

/* Section 1: Hero Introduction */
.section-intro {
    background: linear-gradient(160deg, #f5e6d3 0%, #fce8d5 40%, #fdf0e0 100%);
    padding: 100px 60px;
    text-align: center;
}

.section-intro .tagline {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #c0885a;
    margin-bottom: 16px;
}

.section-intro h1 {
    font-family: 'DM Serif Display', serif;
    font-size: 3.2rem;
    font-weight: 400;
    color: #3b2a1a;
    margin-bottom: 28px;
    line-height: 1.15;
}

.section-intro .intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #5c4a3a;
    max-width: 680px;
    margin: 0 auto;
}

.section-intro .cta-hint {
    margin-top: 36px;
    font-size: 0.9rem;
    color: #b07d4f;
    font-weight: 500;
}

.section-intro .cta-hint span {
    display: inline-block;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

/* Section 2: What I Can Do */
.section-services {
    background: #faf8f5;
    padding-top: 90px;
    padding-bottom: 90px;
}

.section-services h2 {
    font-family: 'DM Serif Display', serif;
    font-size: 2.4rem;
    font-weight: 400;
    color: #3b2a1a;
    margin-bottom: 12px;
}

.section-services .subtitle {
    font-size: 1rem;
    color: #9a7e65;
    margin-bottom: 40px;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.service-card {
    background: #ffffff;
    border: 1px solid #ede6dd;
    border-radius: 14px;
    padding: 0;
    display: flex;
    align-items: stretch;
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 8px 30px rgba(160, 120, 70, 0.1);
    transform: translateY(-2px);
}

.service-icon {
    flex-shrink: 0;
    width: 80px;
    background: linear-gradient(160deg, #fdf0e0, #f0ddc5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon .material-symbols-rounded {
    font-size: 32px;
    color: #b07d4f;
}

.service-content {
    flex: 1;
    min-width: 0;
    padding: 28px 32px;
}

.service-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #3b2a1a;
    margin-bottom: 6px;
}

.service-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #6b5744;
}

/* Section 3: Contact */
.section-contact {
    background: linear-gradient(160deg, #f5e6d3 0%, #fce8d5 40%, #fdf0e0 100%);
    text-align: center;
    padding: 80px 60px;
}

.section-contact h2 {
    font-family: 'DM Serif Display', serif;
    font-size: 2.4rem;
    font-weight: 400;
    color: #3b2a1a;
    margin-bottom: 12px;
}

.section-contact .subtitle {
    font-size: 1rem;
    color: #9a7e65;
    margin-bottom: 36px;
}

.contact-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-card {
    background: #ffffff;
    border: 1px solid #ede6dd;
    border-radius: 14px;
    padding: 32px 40px;
    text-align: center;
    flex: 1;
    max-width: 360px;
    min-width: 240px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.contact-card:hover {
    box-shadow: 0 8px 30px rgba(160, 120, 70, 0.1);
    transform: translateY(-2px);
}

.contact-icon {
    font-size: 28px;
    color: #b07d4f;
    margin-bottom: 12px;
}

.contact-card .label {
    font-size: 0.8rem;
    color: #9a7e65;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.contact-card a {
    color: #3b2a1a;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 600;
}

.contact-card a:hover {
    color: #c0885a;
}

/* Footer */
.footer {
    text-align: center;
    padding: 24px;
    font-size: 0.8rem;
    color: #b09a82;
    background: #faf8f5;
}

/* Responsive */
@media (max-width: 700px) {
    .section {
        padding: 48px 24px;
    }

    .top-bar {
        padding: 12px 20px;
    }

    .top-bar-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .top-bar-links {
        flex-direction: column;
        gap: 6px;
        align-items: center;
    }

    .section-intro {
        padding: 64px 24px;
    }

    .section-intro h1 {
        font-size: 2.2rem;
    }

    .section-services h2,
    .section-contact h2 {
        font-size: 1.9rem;
    }

    .service-card {
        flex-direction: column;
    }

    .service-icon {
        width: 100%;
        height: 56px;
    }

    .service-icon .material-symbols-rounded {
        font-size: 28px;
    }

    .service-content {
        padding: 20px;
    }

    .contact-cards {
        flex-direction: column;
        align-items: center;
    }

    .contact-card {
        width: 100%;
        max-width: 100%;
    }

    .section-contact {
        padding: 48px 24px;
    }
}
