:root {
    /* Color Palette */
    --primary-color: #002045;
    /* Deep Navy */
    --accent-color: #C6955E;
    /* Warm Gold / Brass */
    --text-color: #191C1E;
    --text-muted: #43474E;
    --bg-color: #FFFFFF;
    --bg-alt: #F7F9FB;
    /* Light Gray/Blue */

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: left;
}

/* Header */
header {
    padding: 60px 0;
    background-color: #fff;
}

.centered-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

#site-logo {
    width: auto;
    height: 100px;
    /* initial */
    max-width: 100%;
    object-fit: contain;
}

.logo-subtitle {
    font-family: var(--font-heading);
    font-size: 20px;
    letter-spacing: 2.5px;
    color: #000000;
    margin-top: 15px;
    font-weight: 400;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
}

.accent-text {
    color: #334cd6;
}

/* Main Content */
main {
    flex: 1;
    padding-bottom: 70px;
}

.minimal-section-title {
    font-family: var(--font-heading);
    font-size: 22px;
    text-transform: capitalize;
    letter-spacing: 1px;
    color: var(--primary-color);
    background-color: #efefef;
    padding: 8px 24px;
    border-radius: 100px;
    display: inline-block;
    margin-bottom: 40px;
    font-weight: 400;
}

.main-services-title {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 500;
    line-height: 1.2;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 40px;
}

.minimal-services-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-item h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 500;
}

.service-item p {
    font-size: 18px;
    color: var(--text-muted);
}

.contact-item {
    margin-top: 20px;
}

.contact-text {
    font-size: 18px;
    font-weight: 500;
    margin: 0;
}

.email-link {
    text-decoration: underline;
    font-weight: 600;
}

/* Footer */
footer {
    padding: 20px 0 40px;
    background-color: transparent;
    border-top: none;
}

footer .container {
    text-align: center;
    /* center the container content */
}

footer p {
    font-size: 12px;
    color: var(--text-muted);
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 600px) {
    .logo-text {
        font-size: 24px;
    }

    #site-logo {
        height: 60px;
        /* smaller for mobile */
    }

    .logo-subtitle {
        font-size: 14px;
        letter-spacing: 1.5px;
        margin-top: 10px;
    }
}