:root {
    --cream: #f6f2eb;
    --sand: #e8dfd2;
    --gold: #a8895d;
    --anthracite: #292725;
    --soft: #6d6861;
    --white: #fffdfa;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--cream);
    color: var(--anthracite);
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 300;
    line-height: 1.7;
}

header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(246,242,235,.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(41,39,37,.1);
    padding: 24px 7%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 15px;
    letter-spacing: 4px;
    font-weight: 500;
}

nav {
    display: flex;
    gap: 28px;
}

nav a {
    color: var(--anthracite);
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: .3s;
}

nav a:hover {
    color: var(--gold);
}

.hero {
    min-height: 82vh;
    display: flex;
    align-items: center;
    padding: 100px 10%;
    background: var(--cream);
}

.hero-content {
    max-width: 900px;
}

.eyebrow,
.section-label {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 13px;
    margin-bottom: 22px;
}

h1 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(54px, 7vw, 90px);
    line-height: .9;
    font-weight: 400;
    letter-spacing: -2px;
    margin-bottom: 35px;
}

h2 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(42px, 5vw, 60px);
    line-height: 1;
    font-weight: 400;
    margin-bottom: 30px;
}

h3 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 38px;
    font-weight: 400;
    margin-bottom: 12px;
}

.hero-text,
.intro {
    max-width: 650px;
    color: var(--soft);
    font-size: 17px;
    margin-bottom: 35px;
}

.gold-line {
    width: 70px;
    height: 1px;
    background: var(--gold);
    margin: 30px 0;
}

.button {
    display: inline-block;
    padding: 15px 30px;
    background: var(--anthracite);
    color: white;
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: .3s;
}

.button:hover {
    background: var(--gold);
}

.button-outline {
    background: transparent;
    color: var(--anthracite);
    border: 1px solid rgba(41,39,37,.35);
    margin-left: 10px;
}

.button-outline:hover {
    color: white;
}

section {
    padding: 120px 10%;
}

.light-section {
    background: var(--white);
}

.sand-section {
    background: var(--sand);
}

.dark-section {
    background: var(--anthracite);
    color: var(--cream);
}

.dark-section .section-label {
    color: #c8aa78;
}

.dark-section .intro {
    color: #d1cbc2;
}

.content {
    max-width: 900px;
}

.list {
    margin-top: 40px;
    border-top: 1px solid #d9d1c5;
}

.list-item {
    padding: 30px 0;
    border-bottom: 1px solid #d9d1c5;
}

.list-item p {
    color: var(--soft);
    max-width: 700px;
}

.quote {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 38px;
    line-height: 1.2;
    color: #d7bd91;
    margin-top: 45px;
}

.page-hero {
    padding: 130px 10% 100px;
    background: var(--sand);
}

.page-hero h1 {
    max-width: 900px;
}

.contact {
    text-align: center;
}

.contact .intro {
    margin-left: auto;
    margin-right: auto;
}

footer {
    background: #211f1d;
    color: #aaa49c;
    padding: 35px 10%;
    display: flex;
    justify-content: space-between;
    font-size: 11px;
}

@media(max-width:800px) {

    header {
        padding: 20px 6%;
    }

    nav {
        gap: 12px;
    }

    nav a {
        font-size: 9px;
        letter-spacing: .8px;
    }

    .hero {
        min-height: 75vh;
        padding: 80px 8%;
    }

    h1 {
        font-size: 65px;
    }

    section,
    .page-hero {
        padding: 85px 8%;
    }

    .button-outline {
        margin-left: 0;
        margin-top: 12px;
    }

    footer {
        flex-direction: column;
        gap: 10px;

    }.about-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center;
}

.about-image img {
    width: 100%;
    display: block;
}

.about-text {
    max-width: 600px;
}

@media(max-width:800px) {

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

}