:root {
    --bg: #f6efe3;
    --surface: #fffaf4;
    --surface-alt: #efe1cd;
    --text: #2b211b;
    --muted: #6f5a4d;
    --primary: #7a3511;
    --secondary: #c08a43;
    --border: rgba(43, 33, 27, 0.12);
    --shadow: 0 18px 40px rgba(43, 33, 27, 0.08);
    --radius: 20px;
}

* { box-sizing: border-box; }
body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
main { min-height: calc(100vh - 180px); }
.container { width: min(1120px, calc(100% - 2rem)); margin: 0 auto; }
.narrow { width: min(760px, 100%); }
.site-header {
    position: sticky; top: 0; z-index: 10;
    backdrop-filter: blur(16px);
    background: rgba(246, 239, 227, 0.9);
    border-bottom: 1px solid var(--border);
}
.header-inner, .footer-grid, .hero-grid, .grid-3, .two-columns {
    display: grid; gap: 1.5rem;
}
.header-inner {
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 1rem 0;
}
.brand {
    display: inline-flex; align-items: center; gap: 1rem;
}
.brand img { width: 190px; height: auto; }
.brand small, .eyebrow { color: var(--muted); }
.site-nav {
    display: flex; flex-wrap: wrap; gap: 1rem;
    font-weight: 600;
}
.site-nav a.is-active, .site-nav a:hover, .text-link {
    color: var(--primary);
}
.hero, .page-heading { padding: 5rem 0 2rem; }
.hero-grid { grid-template-columns: 1.2fr 0.8fr; align-items: center; }
h1, h2, h3 {
    font-family: 'Merriweather', serif;
    line-height: 1.15;
    margin-top: 0;
}
h1 { font-size: clamp(2.4rem, 4vw, 4.5rem); margin-bottom: 1rem; }
h2 { font-size: clamp(1.5rem, 2vw, 2.2rem); }
p { margin-top: 0; }
.section { padding: 2rem 0 4rem; }
.section-alt { background: linear-gradient(180deg, transparent, rgba(192, 138, 67, 0.08)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.two-columns { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.align-start { align-items: start; }
.card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 1.5rem;
}
.card-highlight {
    background: linear-gradient(180deg, rgba(122, 53, 17, 0.96), rgba(43, 33, 27, 0.96));
    color: white;
}
.actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }
.button {
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 999px; padding: 0.9rem 1.25rem; font-weight: 700;
    background: var(--primary); color: white;
}
.button-secondary { background: transparent; color: var(--primary); border: 1px solid var(--primary); }
.check-list, .contact-list, .site-footer ul { padding-left: 1.2rem; }
.palette { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 1rem; }
.palette span {
    display: inline-flex; align-items: end; justify-content: center;
    width: 110px; height: 110px; border-radius: 18px; color: white;
    background: var(--swatch); padding-bottom: 0.75rem; font-weight: 700; font-size: 0.85rem;
}
.site-footer {
    padding: 2rem 0 3rem;
    background: #211812;
    color: #f8f2ea;
}
.footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
@media (max-width: 900px) {
    .header-inner, .hero-grid, .grid-3, .two-columns, .footer-grid { grid-template-columns: 1fr; }
    .site-nav { padding-top: 0.5rem; }
}
