@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600&family=Roboto:wght@700&display=swap');

:root {
    --bg-color: #ffffff;
    --text-main: #111111;
    --text-muted: #666666;
    --border-color: #e5e5e5;
    --accent: #111111;
    --container-width: 1100px;
    --spacing-section: 120px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Manrope', sans-serif;
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    font-size: 16px;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.03em;
    color: var(--text-main);
}

h1 {
    font-size: 64px;
    margin-bottom: 32px;
}

h2 {
    font-size: 32px;
    margin-bottom: 24px;
}

h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

p {
    color: var(--text-muted);
    font-weight: 400;
}

a {
    text-decoration: none;
    color: var(--text-main);
    transition: color 0.3s ease;
}

/* Layout Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
}

.section {
    padding-top: var(--spacing-section);
    padding-bottom: var(--spacing-section);
    border-bottom: 1px solid var(--border-color);
}

.section:last-child {
    border-bottom: none;
}

/* Navigation */
nav {
    padding: 40px 0;
    border-bottom: 1px solid var(--border-color);
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-family: 'Roboto', sans-serif;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.02em;
    text-transform: lowercase;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}

.nav-links a:hover {
    color: var(--text-main);
}

/* Hero Section */
.hero {
    padding: 160px 0 120px;
}

.hero p.lead {
    font-size: 20px;
    max-width: 600px;
    margin-bottom: 48px;
}

.btn {
    display: inline-block;
    padding: 16px 32px;
    background-color: var(--text-main);
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 1px solid var(--text-main);
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: transparent;
    color: var(--text-main);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-main);
    margin-left: 16px;
}

.btn-outline:hover {
    background-color: var(--text-main);
    color: #fff;
}

/* Services Grid */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    /* More whitespace */
}

.service-item {
    padding-top: 24px;
    border-top: 1px solid var(--text-main);
    /* Minimalist accent */
}

.service-meta {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
    display: block;
    color: var(--text-muted);
}

/* About / Philosophy */
.philosophy {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.philosophy h2 {
    font-size: 48px;
}

/* Footer */
footer {
    padding: 80px 0;
    background-color: #f9f9f9;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.contact-info p {
    margin-bottom: 8px;
    color: var(--text-main);
}

.contact-email {
    font-size: 24px;
    font-weight: 500;
    border-bottom: 1px solid var(--text-main);
    padding-bottom: 4px;
}

/* Responsive */
/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 42px;
        margin-top: 40px;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .grid-3,
    .philosophy {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;
    }

    /* As nav-links are removed from HTML, we can just ensure container padding is good */
    .container {
        padding: 0 24px;
    }

    .btn {
        display: block;
        width: 100%;
        text-align: center;
        margin-bottom: 16px;
    }

    .btn-outline {
        margin-left: 0;
        margin-bottom: 0;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 28px;
    }

    .section {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}