:root {
    --bg: #fffaf2;
    --ink: #171412;
    --muted: #615850;
    --brand: #ef9f2b;
    --brand-dark: #1b1815;
    --line: #e6d9c8;
    --paper: #ffffff;
}

* {
    box-sizing: border-box;
}

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

a {
    color: inherit;
}

.hero {
    min-height: 92vh;
    padding: 18px;
    background: #f5eadb;
}

.small-header {
    padding: 18px;
    background: #f5eadb;
    border-bottom: 1px solid var(--line);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: min(1120px, 100%);
    margin: 0 auto;
}

.brand {
    color: var(--brand-dark);
    font-size: 30px;
    font-weight: 900;
    text-decoration: none;
}

.nav div {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 14px;
    font-weight: 700;
}

.nav a {
    text-decoration: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 480px);
    align-items: center;
    gap: 36px;
    width: min(1120px, 100%);
    margin: 54px auto 0;
}

.hero-copy h1 {
    margin: 8px 0 14px;
    font-size: clamp(42px, 7vw, 86px);
    line-height: 0.96;
    letter-spacing: 0;
}

.hero-copy p {
    max-width: 620px;
    color: var(--muted);
    font-size: 20px;
}

.eyebrow {
    margin: 0;
    color: #98621b;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0;
}

.hero-img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(42, 31, 19, 0.2);
}

.cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border: 1px solid var(--brand-dark);
    border-radius: 6px;
    color: var(--brand-dark);
    font-weight: 800;
    text-decoration: none;
}

.btn.primary {
    background: var(--brand-dark);
    color: white;
}

.section {
    width: min(1120px, 100%);
    margin: 0 auto;
    padding: 56px 18px;
}

.section-head {
    max-width: 680px;
    margin-bottom: 22px;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h2 {
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.05;
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.card,
.legal-box {
    padding: 20px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.card h3 {
    margin-bottom: 10px;
}

.muted {
    color: var(--muted);
}

.split {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
    gap: 24px;
    align-items: start;
}

dl {
    display: grid;
    grid-template-columns: 170px minmax(0, 1fr);
    gap: 8px 14px;
    margin: 0;
}

dt {
    color: var(--muted);
    font-weight: 800;
}

dd {
    margin: 0;
    font-weight: 700;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    padding-top: 10px;
}

.gallery img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid var(--line);
}

.legal-page {
    max-width: 840px;
}

.legal-page h1 {
    font-size: clamp(34px, 6vw, 64px);
    line-height: 1;
}

.legal-page h2 {
    margin-top: 28px;
    font-size: 24px;
}

.footer {
    padding: 24px 18px 38px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    text-align: center;
}

.footer p {
    margin: 4px 0;
}

@media (max-width: 760px) {
    .hero {
        min-height: auto;
    }

    .hero-grid,
    .split,
    .cards {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        margin-top: 32px;
    }

    .hero-copy p {
        font-size: 18px;
    }

    .gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    dl {
        grid-template-columns: 1fr;
    }
}
