@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600&family=Inter:wght@300;400;500&display=swap');

:root {
    --background: #f7f4ee;
    --text: #2c2a26;
    --accent: #6f7b4b;
    --line: #d8d1c7;
}

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

body {
    background: var(--background);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    line-height: 1.8;
    padding: 0 24px;
}

.hero {
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid var(--line);
    text-align: center;
}

.logo {
    width: 220px;
    max-width: 80%;
    margin-bottom: 40px;
}

.claim {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    line-height: 1.5;
}

main {
    max-width: 900px;
    margin: auto;
}

section {
    padding: 100px 0;
    border-bottom: 1px solid var(--line);
}

h1, h2 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    margin-bottom: 24px;
    line-height: 1.2;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2rem;
}

p {
    margin-bottom: 24px;
    font-size: 1.05rem;
}

.facts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.fact {
    padding-bottom: 20px;
}

.contact {
    text-align: center;
}

.contact a {
    color: var(--accent);
    text-decoration: none;
}

footer {
    padding: 40px 0;
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 30px;
    font-size: 0.9rem;
}

footer a {
    color: var(--text);
    text-decoration: none;
}

@media (max-width: 768px) {
    .facts {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: 2.2rem;
    }

    .claim {
        font-size: 1.5rem;
    }

    section {
        padding: 70px 0;
    }
}
