:root {
    color-scheme: light;
    --bg: #fbf3ec;
    --text: #241209;
    --text-muted: rgba(36, 18, 9, 0.68);
    --accent: #b3401f;
    --accent-bright: #d85a34;
    --surface: rgba(255, 255, 255, 0.86);
    --border: rgba(36, 18, 9, 0.1);
    --shadow: 0 18px 40px rgba(36, 18, 9, 0.08);
    --max-width: 960px;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

a {
    color: var(--accent);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 1.5rem 1.25rem;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--text);
}

.brand-mark {
    width: 1.1rem;
    height: 1.1rem;
    border-radius: 4px;
    background: var(--accent);
    display: inline-block;
}

.topnav a {
    margin-left: 1.5rem;
    color: var(--text-muted);
    font-weight: 600;
}

main {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.25rem 4rem;
}

.hero {
    text-align: center;
    padding: 3rem 0 3.5rem;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent);
    margin: 0 0 0.75rem;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin: 0 0 1rem;
}

.lede {
    max-width: 640px;
    margin: 0 auto;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
}

.card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.5rem;
    box-shadow: var(--shadow);
}

.card h2 {
    margin: 0 0 0.5rem;
    font-size: 1.1rem;
}

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

.footer {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 2rem 1.25rem 3rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    text-align: center;
}

.panel {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: var(--shadow);
    padding: 2rem;
    margin: 2.5rem 0;
}

.panel-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.panel h1 {
    margin: 0.25rem 0 0;
    font-size: 1.8rem;
}

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

.ghost-button {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    border: 1px solid var(--border);
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
}

.panel h2 {
    margin-top: 2rem;
}

.panel h3 {
    margin-top: 1.25rem;
}

address {
    font-style: normal;
}
