/* Copyright (c) 2026 LoomWright Games LLC. All rights reserved.
   loomwrightgames.com — hand-authored, dependency-free. System fonts only; no external requests. */

:root {
    --bg: #14120e;
    --bg-band: #1a1712;
    --bg-card: #211d16;
    --ink: #ede8df;
    --ink-soft: #b8b0a2;
    --ink-faint: #857d6f;
    --accent: #d9a441;
    --accent-deep: #a87a26;
    --line: #322c22;
    --radius: 10px;
    --measure: 62rem;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    background: var(--bg);
    color: var(--ink);
    font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 1.0625rem;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: Georgia, "Times New Roman", serif; font-weight: 600; line-height: 1.2; }

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

.wrap { max-width: var(--measure); margin: 0 auto; padding: 0 1.5rem; }
.wrap.narrow { max-width: 44rem; }

/* ---- Header ---- */
.site-header { border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 10;
    background: rgba(20, 18, 14, 0.92); backdrop-filter: blur(6px); }
.site-header .wrap { display: flex; align-items: center; height: 3.6rem; }
.wordmark { display: flex; align-items: center; gap: 0.6rem; color: var(--ink);
    font-family: Georgia, serif; font-size: 1.15rem; }
.wordmark:hover { text-decoration: none; }
.mono-mark {
    display: inline-flex; align-items: center; justify-content: center;
    width: 26px; height: 26px; border-radius: 6px;
    background: var(--accent-deep); color: #fff;
    font-family: Georgia, serif; font-size: 0.8rem; letter-spacing: 0.02em;
}
.site-nav { margin-left: auto; display: flex; gap: 1.4rem; font-size: 0.95rem; }
.site-nav a { color: var(--ink-soft); }
.site-nav a:hover { color: var(--ink); text-decoration: none; }

/* ---- Hero ---- */
.hero { padding: 5rem 0 4rem; text-align: center; }
.hero h1 { font-size: clamp(2rem, 5vw, 3.1rem); max-width: 40rem; margin: 0 auto 1.2rem; }
.hero .lede { font-size: 1.15rem; color: var(--ink-soft); max-width: 38rem; margin: 0 auto; }

/* ---- Bands ---- */
.band { padding: 3.5rem 0; }
.band.alt { background: var(--bg-band); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.band h2 { font-size: 1.8rem; margin-bottom: 1rem; }
.band p, .band li { color: var(--ink-soft); margin-bottom: 0.8rem; }
.band ul { padding-left: 1.4rem; }

/* ---- Product card ---- */
.product-card {
    background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius);
    padding: 1.8rem;
}
.product-card h3 { font-size: 1.5rem; }
.product-card .tagline { color: var(--ink-faint); font-style: italic; margin-bottom: 0.8rem; }
.btn {
    display: inline-block; padding: 0.6rem 1.3rem; border-radius: var(--radius);
    background: var(--accent-deep); color: #fff; font-weight: 600;
}
.btn:hover { background: var(--accent); text-decoration: none; }

/* ---- Footer ---- */
.site-footer { border-top: 1px solid var(--line); margin-top: 3rem; padding: 2rem 0 3rem;
    font-size: 0.9rem; color: var(--ink-faint); }
.site-footer .wrap { display: flex; flex-wrap: wrap; gap: 1.5rem; justify-content: space-between; }
.site-footer a { color: var(--ink-soft); }
