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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
    background: #f5f0e8;
    color: #3d3529;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.page {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 1.5rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Nav */
nav {
    padding: 2rem 0;
}

.nav-logo {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #8c7e6a;
}

/* Header */
header {
    padding: 4rem 0 3rem;
}

.label {
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #a89880;
    margin-bottom: 1.25rem;
}

header h1 {
    font-size: 2.75rem;
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: #2a2318;
    margin-bottom: 1.5rem;
}

.subtitle {
    font-size: 1.1rem;
    color: #7a6e5d;
    max-width: 520px;
    line-height: 1.7;
}

/* Products */
.products {
    padding: 2rem 0 4rem;
}

.section-title {
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #a89880;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e2dace;
}

.grid {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.card {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem;
    background: #ece7dd;
    border-radius: 10px;
    text-decoration: none;
    color: inherit;
    transition: background 0.2s ease;
}

.card:hover {
    background: #e4ded2;
}

.card-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: #ddd5c8;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7a6e5d;
    transition: background 0.2s ease, color 0.2s ease;
}

.card:hover .card-icon {
    background: #d4cbbe;
    color: #5a4f3f;
}

.card-body {
    flex: 1;
    min-width: 0;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.4rem;
}

.card h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: #2a2318;
}

.arrow {
    font-size: 1.1rem;
    color: #b8aa96;
    transition: color 0.2s ease, transform 0.2s ease;
}

.card:hover .arrow {
    color: #7a6e5d;
    transform: translateX(3px);
}

.card p {
    font-size: 0.9rem;
    color: #8c7e6a;
    line-height: 1.6;
}

/* Contact */
.contact {
    padding: 2rem 0 4rem;
}

.contact p {
    font-size: 1.05rem;
    color: #7a6e5d;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.contact-link {
    font-size: 1.05rem;
    font-weight: 600;
    color: #2a2318;
    text-decoration: none;
    border-bottom: 1px solid #c8bfb0;
    padding-bottom: 2px;
    transition: border-color 0.2s ease;
}

.contact-link:hover {
    border-color: #2a2318;
}

/* Footer */
footer {
    margin-top: auto;
    padding: 3rem 0 2rem;
    border-top: 1px solid #e2dace;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer p {
    font-size: 0.8rem;
    color: #b8aa96;
}

.footer-email {
    font-size: 0.8rem;
    color: #b8aa96;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-email:hover {
    color: #7a6e5d;
}

/* Responsive */
@media (max-width: 600px) {
    header {
        padding: 2.5rem 0 2rem;
    }

    header h1 {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .card {
        padding: 1.25rem;
        gap: 1rem;
    }
}
