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

body {
    font-family: Georgia, 'Times New Roman', serif;
    background-color: #ffffff;
    color: #1a1a1a;
    line-height: 1.7;
    padding: 4rem 1.5rem 2rem;
}

main {
    max-width: 640px;
    margin: 0 auto;
}

/* Hero */
.hero {
    text-align: center;
    padding-bottom: 3rem;
    border-bottom: 1px solid #e8e8e8;
    margin-bottom: 3rem;
}

.logo {
    width: 160px;
    height: auto;
    margin-bottom: 1.5rem;
}

h1 {
    font-size: 1.85rem;
    font-weight: normal;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.tagline {
    font-style: italic;
    color: #555;
    font-size: 1rem;
}

/* Sections */
section {
    margin-bottom: 3rem;
}

h2 {
    font-size: 1.15rem;
    font-weight: normal;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #1a1a1a;
    margin-bottom: 1.25rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e8e8e8;
}

section p {
    color: #333;
    font-size: 1rem;
    margin-bottom: 1rem;
}

section p:last-child {
    margin-bottom: 0;
}

/* Services */
.service-list {
    display: grid;
    gap: 1.75rem;
}

.service h3 {
    font-size: 1rem;
    font-weight: normal;
    font-style: italic;
    color: #1a1a1a;
    margin-bottom: 0.35rem;
}

.service p {
    color: #444;
    font-size: 0.95rem;
}

/* Contact */
.contact .email {
    margin: 0.75rem 0;
    font-size: 1.05rem;
}

.contact a {
    color: #1a1a1a;
    text-decoration: none;
    border-bottom: 1px solid #1a1a1a;
    padding-bottom: 1px;
}

.contact a:hover {
    color: #555;
    border-bottom-color: #555;
}

.contact .note {
    color: #777;
    font-size: 0.9rem;
    font-style: italic;
}

/* Footer */
footer {
    border-top: 1px solid #e8e8e8;
    padding-top: 1.5rem;
    margin-top: 4rem;
    text-align: center;
    font-size: 0.8rem;
    color: #888;
}

@media (max-width: 480px) {
    body {
        padding: 2.5rem 1.25rem 2rem;
    }
    .logo {
        width: 130px;
    }
    h1 {
        font-size: 1.45rem;
    }
    h2 {
        font-size: 1rem;
    }
}
