/* SHARPENED BY IRON - CORE GLOBAL BRAND STYLES
   Heraldic palette, weighted correctly:
   1. Sable  — the field. Dominant. Everything sits on black.
   2. Or     — the structure. Headings, rules, links, the button face.
   3. Gules  — the wolf's eyes and tongue. Small, sharp, precise.
                Never a wash. Never a background. A strike, not a coat.
*/

:root {
    --sable:        #0a0a0a;   /* the field */
    --sable-raised:  #161616;   /* raised surface off the field */
    --or:            #d4af37;   /* structural gold */
    --or-dim:        #9c8228;   /* gold, receded */
    --gules:         #b22222;   /* the strike — used sparingly, on purpose */
    --text:          #e8e4da;   /* parchment-white body text */
    --text-muted:    #8a8580;
    --border:        #2a2a2a;
}

* , *::before, *::after {
    box-sizing: border-box;
}

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

/* The 650px Core Constraints */
.container {
    max-width: 650px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

/* Aligns the Layout to the Top of the Page */
.hero-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    text-align: center;
    padding-top: 10vh;
    box-sizing: border-box;
}

/* Typography — heavy, uppercase, no apology */
h1, h2, h3 {
    color: var(--or);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin-top: 0;
}

h1 {
    font-size: 2.75rem;
    letter-spacing: 0.01em;
    position: relative;
    padding-bottom: 0.5rem;
}

/* The strike. One short, thick gules underline beneath h1 only —
   the tongue, not the whole mouth. Never full-width. */
h1::after {
    content: "";
    display: block;
    width: 64px;
    height: 4px;
    background-color: var(--gules);
    margin: 0.75rem auto 0;
}

.hero-wrapper h1::after {
    margin: 0.75rem auto 0;
}

h2 {
    font-size: 1.6rem;
    border-left: 3px solid var(--or);
    padding-left: 0.75rem;
}

h3 {
    font-size: 1.2rem;
}

p {
    color: var(--text);
}

a {
    color: var(--or);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.15s ease;
}

a:hover {
    color: var(--gules);
}

/* Action Button — solid gold field, black hardware, sharp corners.
   No rounded softness anywhere. Gules only appears on the strike/hover. */
.btn {
    display: inline-block;
    background-color: var(--or);
    color: var(--sable);
    border: 2px solid var(--sable);
    padding: 14px 32px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.9rem;
    margin-top: 24px;
    transition: background-color 0.15s ease, color 0.15s ease;
}

.btn:hover {
    background-color: var(--gules);
    color: var(--text);
    border-color: var(--gules);
}

.site-header {
    padding: 60px 0 20px 0;
    border-bottom: 1px solid var(--border);
}

.site-title {
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.site-title a {
    color: var(--text);
}

.post-entry {
    margin-bottom: 60px;
    background-color: var(--sable-raised);
    border-left: 3px solid var(--or);
    padding: 24px 28px;
}

.post-meta {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin: -6px 0 20px 0;
}

/* Small gules marker — a single struck point ahead of the meta line,
   the same restraint as the h1 underline. Not a color change to the
   text itself, just one fixed mark. */
.post-meta::before {
    content: "■";
    color: var(--gules);
    font-size: 0.6em;
    margin-right: 0.5em;
    vertical-align: middle;
}

blockquote {
    border-left: 3px solid var(--gules);
    background-color: var(--sable-raised);
    padding: 1rem 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--text-muted);
}

/* Section divider — thin gules rule, not a block. */
hr {
    border: none;
    border-top: 2px solid var(--gules);
    margin: 3rem 0;
    width: 100%;
}

/* The single point of gules punctuation in body copy — a small,
   fixed mark, not a color applied broadly. Use sparingly, e.g.
   <span class="mark"> around one word per post at most. */
.mark {
    color: var(--gules);
    font-weight: 700;
}
