:root {
    --bg: #f7f4f1;
    --paper: #ffffff;
    --text: #211c1a;
    --muted: #746b67;
    --line: #e7dfda;
    --accent: #9d6257;
    --accent-dark: #70443d;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.notice {
    padding: 9px 20px;
    background: var(--text);
    color: white;
    text-align: center;
    font-size: 13px;
    letter-spacing: .04em;
}

header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid var(--line);
    background: rgba(247,244,241,.96);
    backdrop-filter: blur(12px);
}

.nav {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.logo {
    font-family: Georgia, serif;
    font-size: 26px;
    letter-spacing: .11em;
}

.logo small {
    display: block;
    margin-top: -5px;
    color: var(--muted);
    font: 9px Arial, sans-serif;
    letter-spacing: .32em;
    text-align: center;
}

nav {
    display: flex;
    gap: 25px;
    font-size: 14px;
}

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

.hero {
    min-height: 720px;
    display: flex;
    align-items: end;
    background:
        linear-gradient(90deg, rgba(20,14,12,.48), rgba(20,14,12,.06)),
        url('https://images.unsplash.com/photo-1483985988355-763728e1935b?auto=format&fit=crop&w=2000&q=85')
        center/cover;
}

.hero-content {
    max-width: 650px;
    padding: 100px 0;
    color: white;
}

.eyebrow {
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: .22em;
    font-size: 12px;
}

h1, h2, h3 {
    font-family: Georgia, serif;
    font-weight: 400;
    line-height: 1.08;
}

h1 {
    margin: 0 0 22px;
    font-size: clamp(52px, 8vw, 94px);
}

h2 {
    margin: 0 0 18px;
    font-size: clamp(34px, 5vw, 56px);
}

.hero p {
    max-width: 530px;
    font-size: 18px;
}

.button {
    display: inline-block;
    margin-top: 18px;
    padding: 14px 24px;
    border: 1px solid var(--text);
    background: var(--text);
    color: white;
    font-size: 13px;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.button.light {
    border-color: white;
    background: white;
    color: var(--text);
}

.button:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
}

section {
    padding: 95px 0;
}

.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 38px;
}

.section-head p {
    max-width: 480px;
    color: var(--muted);
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.card {
    background: var(--paper);
}

.card img {
    height: 500px;
}

.card-body {
    padding: 18px 18px 22px;
}

.card h3 {
    margin: 0;
    font-size: 24px;
}

.card p {
    margin: 8px 0 0;
    color: var(--muted);
}

.price {
    display: block;
    margin-top: 10px;
    font-weight: bold;
}

.story {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    background: var(--paper);
}

.story img {
    min-height: 620px;
}

.story-text {
    padding: 70px;
    align-self: center;
}

.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.feature {
    padding: 35px;
    text-align: center;
}

.feature + .feature {
    border-left: 1px solid var(--line);
}

.feature h3 {
    margin: 0 0 8px;
    font-size: 22px;
}

.feature p {
    margin: 0;
    color: var(--muted);
}

.contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
}

.contact-box {
    padding: 42px;
    background: var(--paper);
}

.contact-box p {
    color: var(--muted);
}

footer {
    padding: 55px 0;
    background: var(--text);
    color: white;
}

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

.footer-grid h3 {
    margin-top: 0;
}

.footer-links {
    display: grid;
    gap: 10px;
    color: #d8cfca;
}

.footer-bottom {
    margin-top: 45px;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,.16);
    color: #bfb5b0;
    font-size: 13px;
}

.page {
    min-height: 65vh;
    padding: 100px 0;
}

.page article {
    max-width: 820px;
    padding: 55px;
    background: var(--paper);
}

.page h1 {
    color: var(--text);
    font-size: 54px;
}

.page h2 {
    margin-top: 40px;
    font-size: 30px;
}

@media (max-width: 850px) {
    nav {
        display: none;
    }

    .hero {
        min-height: 620px;
    }

    .grid,
    .story,
    .contact,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .features {
        grid-template-columns: 1fr;
    }

    .feature + .feature {
        border-left: 0;
        border-top: 1px solid var(--line);
    }

    .story-text {
        padding: 40px 28px;
    }

    .card img {
        height: 440px;
    }

    .section-head {
        display: block;
    }
}
