:root {
    --paper: #f4efed;
    --surface: #fffaf8;
    --ink: #332b30;
    --muted: #756970;
    --navy: #5d3343;
    --copper: #a85d68;
    --stone: #d9c9ca;
    --line: rgba(93, 51, 67, .16);
    --shadow: 0 22px 60px rgba(77, 42, 54, .13);
}

[data-theme=dark] {
    --paper: #181116;
    --surface: #261a21;
    --ink: #f5ebef;
    --muted: #c4adb6;
    --navy: #efb8c7;
    --copper: #dc8f9c;
    --stone: #5c444e;
    --line: rgba(245, 235, 239, .15);
}

.hero {
    background:
        radial-gradient(circle at 50% 36%, color-mix(in srgb, var(--copper) 18%, transparent), transparent 33%),
        linear-gradient(135deg, transparent 0 46%, color-mix(in srgb, var(--copper) 5%, transparent) 46% 54%, transparent 54%);
}

@media (max-width: 580px) {
    .hero,
    .hero .subtitle,
    .hero blockquote {
        min-width: 0;
        max-width: 100%;
        overflow-wrap: anywhere;
    }

    .architecture {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: .8rem;
        padding: 1rem .35rem;
    }

    .architecture i {
        display: none;
    }
}
