:root {
    /* Coffee palette */
    --espresso: #2b1b14;
    --coffee: #4a2c23;
    --latte: #cbb39a;
    --cream: #f6f1ea;
    --paper: #fbfaf8;
    --line: #e6ded3;
    --muted: #6f635b;
    --accent: #8b5a3c;

    --radius: 8px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial;
    background: var(--paper);
    color: var(--espresso);
    line-height: 1.65;
}

section[id] {
    scroll-margin-top: 80px;
}

.container {
    max-width: 1040px;
    margin: 0 auto;
    padding: 0 18px;
}

/* Header */
.header {
    border-bottom: 1px solid var(--line);
    background: var(--paper);
}

.header-row {
    height: 66px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.brand-logo {
    height: 34px;
    /* adjust if you want bigger/smaller */
    width: auto;
    display: block;
}
.nav {
    display: flex;
    gap: 16px;
}

.nav a {
    text-decoration: none;
    color: var(--muted);
    font-weight: 700;
}

.nav a:hover {
    color: var(--espresso);
    border-bottom: 2px solid var(--accent);
}

/* Hero */
.hero {
    padding: 52px 0 28px;
}

.hero-inner {
    max-width: 760px;
}

.eyebrow {
    font-size: 12px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 700;
}

h1 {
    margin: 12px 0;
    font-size: clamp(30px, 3.6vw, 46px);
}

.lead {
    color: var(--muted);
    font-weight: 600;
}

/* Buttons */
.cta {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}

.btn {
    padding: 10px 14px;
    border-radius: var(--radius);
    background: var(--espresso);
    color: var(--cream);
    text-decoration: none;
    font-weight: 800;
    border: 1px solid var(--espresso);
}

.btn-ghost {
    background: transparent;
    color: var(--espresso);
    border: 1px solid var(--line);
}

/* Sections */
.section {
    padding: 44px 0;
    border-top: 1px solid var(--line);
}

.section-alt {
    background: var(--cream);
}

h2 {
    margin: 0 0 8px;
}

.sub {
    margin: 0 0 20px;
    color: var(--muted);
    font-weight: 600;
}

/* Services */
.services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media(max-width:900px) {
    .services {
        grid-template-columns: 1fr;
    }
}

/* Two-column list */
.section-header {
    max-width: 720px;
    margin-bottom: 28px;
}

.two-column-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

@media(max-width:900px) {
    .two-column-list {
        grid-template-columns: 1fr;
    }
}

.list-heading {
    font-size: 17px;
    font-weight: 800;
    margin-bottom: 14px;
}

.clean-list {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid var(--line);
}

.clean-list li {
    display: flex;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
}

.clean-list a {
    text-decoration: none;
    font-weight: 800;
    color: var(--espresso);
}

.clean-list a:hover {
    color: var(--accent);
    text-decoration: underline;
}

.meta {
    font-size: 13px;
    color: var(--muted);
    white-space: nowrap;
}

/* Footer */
.footer {
    border-top: 1px solid var(--line);
    padding: 20px 0;
}

.footer-row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--muted);
}

.muted {
    color: var(--muted);
}
@media (max-width: 520px) {
    .brand-logo {
        height: 30px;
    }
}