/* -----------------------------------------------------------
   mannin.cash — mobile-first stylesheet — v1
   Palette:
     BCH green   #0AC18E   accent / brand
     Manx red    #CF142B   sparingly, for emphasis
     Charcoal    #1f2421   body text (softer than pure black)
     Cream       #faf7f0   background (warm, easier on eyes)
----------------------------------------------------------- */

:root {
    --bch-green: #0AC18E;
    --bch-green-dark: #079067;
    --manx-red: #CF142B;
    --ink: #1f2421;
    --ink-soft: #4a524d;
    --cream: #faf7f0;
    --cream-deep: #f1ece0;
    --max-width: 38rem;
}

* { box-sizing: border-box; }

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

body {
    margin: 0;
    font-family: Georgia, "Iowan Old Style", "Palatino Linotype",
                 "Times New Roman", serif;
    line-height: 1.65;
    color: var(--ink);
    background: var(--cream);
}

img, svg { max-width: 100%; height: auto; display: block; }

a {
    color: var(--bch-green-dark);
    text-decoration: underline;
    text-underline-offset: 2px;
}
a:hover, a:focus { color: var(--manx-red); }

/* ---------- Header ---------- */

.site-header {
    background: var(--cream-deep);
    border-bottom: 4px solid var(--bch-green);
    padding: 1.75rem 1.25rem 1.5rem;
}

.header-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    text-align: center;
}

.brand-logo {
    width: 100%;
    max-width: 22rem;
    margin: 0 auto 1.25rem;
}

.failt {
    margin: 0 0 0.25rem;
    font-style: italic;
    color: var(--manx-red);
    font-size: 1rem;
}

.site-header h1 {
    margin: 0;
    font-size: 2.4rem;
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--ink);
    font-weight: normal;
}

.initiative {
    margin: 0.4rem 0 0.5rem;
    font-size: 0.95rem;
    color: var(--ink-soft);
}

.tagline {
    margin: 0.75rem 0 0;
    font-size: 0.95rem;
    color: var(--bch-green-dark);
    font-style: italic;
}

.tagline strong { color: var(--ink); font-style: normal; }

/* ---------- Main content ---------- */

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

section { margin-bottom: 2.5rem; }

h2 {
    font-size: 1.5rem;
    color: var(--bch-green-dark);
    margin: 0 0 0.75rem;
    font-weight: normal;
    letter-spacing: -0.01em;
}

p { margin: 0 0 1rem; }

.intro p {
    font-size: 1.15rem;
    line-height: 1.55;
}

.aside {
    font-size: 0.95rem;
    color: var(--ink-soft);
    border-left: 3px solid var(--cream-deep);
    padding-left: 0.9rem;
}

/* ---------- Redeem section ---------- */

.redeem {
    background: var(--cream-deep);
    padding: 1.25rem 1.25rem 1rem;
    border-radius: 4px;
    border-left: 4px solid var(--bch-green);
}

.steps {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.steps li {
    margin-bottom: 0.85rem;
    padding-left: 0.25rem;
}

.step-label {
    display: inline-block;
    font-weight: bold;
    color: var(--bch-green-dark);
    margin-right: 0.35rem;
}

.done {
    margin-top: 0.75rem;
    margin-bottom: 0;
    font-weight: bold;
    color: var(--bch-green-dark);
    font-size: 1.1rem;
}

/* ---------- Dean section ---------- */

.dean .role {
    margin-top: -0.5rem;
    margin-bottom: 1rem;
    font-style: italic;
    color: var(--ink-soft);
}

.dean figure {
    margin: 1rem 0 1.25rem;
}

.dean figure img {
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

blockquote {
    margin: 1.25rem 0 0;
    padding: 1rem 1.1rem;
    background: var(--cream-deep);
    border-left: 4px solid var(--bch-green);
    border-radius: 2px;
}

blockquote p {
    margin: 0 0 0.5rem;
    font-size: 1.1rem;
    font-style: italic;
}

blockquote cite {
    font-style: normal;
    font-size: 0.9rem;
    color: var(--ink-soft);
}

/* ---------- Pop in ---------- */

.popin {
    text-align: center;
    padding: 1.5rem 1rem;
    background: var(--cream-deep);
    border-radius: 4px;
}

.popin h2 { margin-bottom: 0.5rem; }

.address {
    font-size: 1.15rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

/* ---------- Footer ---------- */

.site-footer {
    background: var(--ink);
    color: var(--cream);
    padding: 2rem 1.25rem 1.75rem;
    text-align: center;
}

.triskelion-footer {
    width: 4rem;
    margin: 0 auto 1.25rem;
    opacity: 0.95;
}

.bch-wordmark {
    max-width: 16rem;
    margin: 0 auto 1rem;
}

.footer-text {
    margin: 0;
    font-size: 0.85rem;
    color: var(--cream-deep);
    opacity: 0.75;
}

/* ---------- Tablet / desktop ---------- */

@media (min-width: 640px) {
    html { font-size: 18px; }

    .site-header { padding: 2.5rem 2rem 2rem; }

    .brand-logo { max-width: 28rem; }

    .site-header h1 { font-size: 3rem; }

    main { padding: 2.5rem 2rem 3rem; }

    h2 { font-size: 1.75rem; }

    .intro p { font-size: 1.25rem; }

    .triskelion-footer { width: 5rem; }

    .bch-wordmark { max-width: 22rem; }
}