* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #faf7f4;
    color: #1f1f1f;
    font-family: Arial, Helvetica, sans-serif;
}

.page {
    width: 88%;
    max-width: 1100px;
    margin: auto;
}

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.eyebrow,
.section-label {
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 12px;
    color: #8b7365;
    margin-bottom: 24px;
}

h1 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 92px;
    font-weight: 300;
    line-height: 1;
    margin-bottom: 28px;
}

.hero-text {
    max-width: 680px;
    font-size: 22px;
    line-height: 1.7;
    color: #5f5652;
}

.hero-links {
    margin-top: 38px;
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-links a {
    text-decoration: none;
    color: #1f1f1f;
    border: 1px solid #1f1f1f;
    padding: 14px 30px;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: 0.3s;
}

.hero-links a:hover {
    background: #1f1f1f;
    color: #faf7f4;
}

section {
    padding: 100px 0;
    text-align: center;
}

.about h2,
.contact h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 48px;
    font-weight: 300;
    line-height: 1.25;
    max-width: 850px;
    margin: 0 auto 28px;
}

.about p:last-child {
    max-width: 720px;
    margin: auto;
    font-size: 19px;
    line-height: 1.8;
    color: #5f5652;
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    margin-top: 45px;
}

.work-card {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid #eadbd3;
    padding: 42px 32px;
    min-height: 260px;
}

.work-card span {
    color: #8b7365;
    font-size: 13px;
    letter-spacing: 2px;
}

.work-card h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 30px;
    font-weight: 300;
    margin: 24px 0 14px;
}

.work-card p {
    color: #6b625e;
    line-height: 1.7;
}

.icons {
    margin-top: 38px;
    display: flex;
    justify-content: center;
    gap: 34px;
    align-items: center;
}

.icons img {
    width: 34px;
    height: 34px;
    object-fit: contain;
    transition: 0.3s;
}

.icons img:hover {
    opacity: 0.55;
    transform: translateY(-3px);
}

footer {
    padding: 50px 0;
    text-align: center;
    color: #8b7365;
    font-size: 13px;
}

@media (max-width: 850px) {
    h1 {
        font-size: 58px;
    }

    .hero-text {
        font-size: 18px;
    }

    .about h2,
    .contact h2 {
        font-size: 36px;
    }

    .work-grid {
        grid-template-columns: 1fr;
    }

    .icons {
        gap: 24px;
    }
}