/* Granite — Removals & storage. Self-contained: no external requests. */
*, *::before, *::after { box-sizing: border-box; }

:root {
    --ink: #26201c;
    --paper: #faf8f5;
    --surface: #efe9e3;
    --accent: #a2542c;
    --accent-ink: #ffffff;
    --muted: #6a5f56;
    --line: #e2d9d0;
    --band: #26201c;
    --band-ink: #efe9e3;
    --radius: 2px;
}

html { -webkit-text-size-adjust: 100%; }

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Noto Sans", sans-serif;
    font-size: 17px;
    line-height: 1.65;
}

h1, h2, h3, h4 {
    font-family: Rockwell, "Courier Bold", Consolas, Georgia, serif;
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.15;
    margin: 0 0 .6em;
}

h1 { font-size: 3rem; }
h2 { font-size: 1.65rem; }
h3 { font-size: 1.15rem; }

p { margin: 0 0 1.1em; }
a { color: var(--accent); text-decoration: none; }
a:hover, a:focus-visible { text-decoration: underline; }
img { max-width: 100%; height: auto; }

.wrap { width: 100%; max-width: 1080px; margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 720px; }

/* ── header / nav ─────────────────────────────────────────────── */
.site-head { border-bottom: 1px solid var(--line); background: var(--surface); }
.site-head .wrap {
    display: flex; align-items: center; justify-content: space-between;
    gap: 24px; padding-top: 18px; padding-bottom: 18px; flex-wrap: wrap;
}
.brand { font-family: Rockwell, "Courier Bold", Consolas, Georgia, serif; font-weight: 700; font-size: 1.2rem; color: var(--ink); }
.brand small { display: block; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Noto Sans", sans-serif; font-weight: 400; font-size: .72rem; color: var(--muted); letter-spacing: .06em; text-transform: uppercase; }
nav ul { display: flex; gap: 20px; list-style: none; margin: 0; padding: 0; flex-wrap: wrap; }
nav a { color: var(--ink); font-size: .93rem; text-transform: none; letter-spacing: .02em; }
nav a:hover { color: var(--accent); }

/* ── generic sections ─────────────────────────────────────────── */
.section { padding: 68px 0; }
.section + .section { border-top: 1px solid var(--line); }
.section-alt { background: var(--surface); }
.eyebrow { font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: var(--accent); margin: 0 0 14px; }
.lede { font-size: 1.16rem; color: var(--muted); }

.btn {
    display: inline-block; padding: 12px 22px; border-radius: var(--radius);
    background: var(--accent); color: var(--accent-ink);
    font-weight: 600; font-size: .95rem; border: 0;
}
.btn:hover, .btn:focus-visible { filter: brightness(1.08); text-decoration: none; }
.btn-quiet { background: transparent; color: var(--accent); border: 1px solid var(--accent); }

/* ── hero ─────────────────────────────────────────────────────── */
.hero { padding: 84px 0 72px; }
.hero .lede { max-width: 46ch; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; }

/* ── services ─────────────────────────────────────────────────── */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; }
.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.card h3 { margin-bottom: .4em; }
.card p { margin: 0; color: var(--muted); font-size: .96rem; }

.rows { display: grid; gap: 0; }
.row-item { display: grid; grid-template-columns: 3rem 1fr; gap: 20px; padding: 22px 0; border-top: 1px solid var(--line); }
.row-item:last-child { border-bottom: 1px solid var(--line); }
.row-num { font-family: Rockwell, "Courier Bold", Consolas, Georgia, serif; font-size: 1.1rem; color: var(--accent); }
.row-item p { margin: 0; color: var(--muted); font-size: .96rem; }

/* ── facts ────────────────────────────────────────────────────── */
.facts { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 26px; }
.fact strong { display: block; font-family: Rockwell, "Courier Bold", Consolas, Georgia, serif; font-size: 1.9rem; color: var(--accent); line-height: 1.1; }
.fact span { font-size: .88rem; color: var(--muted); }

/* ── band ─────────────────────────────────────────────────────── */
.band { background: var(--band); color: var(--band-ink); padding: 56px 0; }
.band h2 { color: var(--band-ink); }
.band p { color: var(--band-ink); opacity: .85; }
.band .btn { background: var(--band-ink); color: var(--band); }

/* ── two-column split ────────────────────────────────────────── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: start; }
.aside { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.aside h3 { font-size: 1rem; }
.aside dl { margin: 0; font-size: .93rem; }
.aside dt { color: var(--muted); }
.aside dd { margin: 0 0 12px; }

/* ── prose (legal, about) ────────────────────────────────────── */
.prose h2 { font-size: 1.3rem; margin-top: 1.8em; }
.prose ul { padding-left: 1.2em; color: var(--muted); }
.prose li { margin-bottom: .5em; }
.prose-meta { color: var(--muted); font-size: .9rem; }

/* ── form ─────────────────────────────────────────────────────── */
.field { display: block; margin-bottom: 16px; }
.field span { display: block; font-size: .86rem; color: var(--muted); margin-bottom: 6px; }
.field input, .field textarea {
    width: 100%; padding: 11px 12px; font: inherit; font-size: .96rem;
    color: var(--ink); background: var(--paper);
    border: 1px solid var(--line); border-radius: var(--radius);
}
.field input:focus-visible, .field textarea:focus-visible { outline: 2px solid var(--accent); outline-offset: 1px; }

/* ── footer ───────────────────────────────────────────────────── */
.site-foot { border-top: 1px solid var(--line); background: var(--surface); padding: 34px 0; font-size: .89rem; color: var(--muted); }
.site-foot .wrap { display: flex; gap: 18px; justify-content: space-between; flex-wrap: wrap; }
.site-foot a { color: var(--muted); }
.site-foot ul { display: flex; gap: 16px; list-style: none; margin: 0; padding: 0; flex-wrap: wrap; }

/* ── responsive ───────────────────────────────────────────────── */
@media (max-width: 780px) {
    body { font-size: 16px; }
    h1 { font-size: calc(3rem * .68); }
    .split { grid-template-columns: 1fr; gap: 32px; }
    .section { padding: 46px 0; }
    .hero { padding: 52px 0 44px; }
    .site-head .wrap { padding-top: 14px; padding-bottom: 14px; }
}

/* Respecting this costs nothing and the alternative is motion nobody asked for. */
@media (prefers-reduced-motion: reduce) {
    * { animation: none !important; transition: none !important; }
}