:root {
    --pine: #1a1b2e;
    --pine-deep: #0d0e1f;
    --sage: #7a7a96;
    --moss: #9a9ab8;
    --sand: #ffffff;
    --stone: #f0f0f5;
    --clay: #c41e3a;
    --ink: #111111;
    --muted: #55556a;
    --line: #e0dfe8;
    --white: #ffffff;
    --shadow: 0 20px 50px rgba(13, 14, 31, 0.12);
    --radius-xl: 28px;
    --radius-lg: 22px;
    --radius-md: 16px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--sand);
    font-family: 'Source Sans 3', sans-serif;
    line-height: 1.6;
}

body::before {
    content: none;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

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

.container {
    width: min(var(--container), calc(100% - 2rem));
    margin: 0 auto;
}

.skip-link {
    position: absolute;
    left: -999px;
    top: 1rem;
    z-index: 20;
    background: var(--pine);
    color: var(--white);
    padding: 0.75rem 1rem;
    border-radius: 999px;
}

.skip-link:focus {
    left: 1rem;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    backdrop-filter: blur(18px);
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(200, 200, 220, 0.7);
}

.nav-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1rem 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.brand-mark {
    width: 3rem;
    height: 3rem;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--pine), #2e2f50);
    color: var(--white);
    box-shadow: var(--shadow);
    font-family: 'Merriweather', serif;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-text strong,
.footer-brand strong {
    font-size: 1rem;
}

.brand-text span,
.footer-brand span {
    font-size: 0.82rem;
    color: var(--muted);
    font-weight: 500;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.nav-link {
    padding: 0.7rem 0.95rem;
    border-radius: 999px;
    font-weight: 600;
    color: var(--muted);
    transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.nav-link:hover,
.nav-link.is-active {
    background: rgba(196, 30, 58, 0.08);
    color: var(--clay);
}

.menu-toggle {
    display: none;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.8);
    border-radius: 999px;
    padding: 0.8rem 1rem;
    font: inherit;
    font-weight: 700;
    color: var(--ink);
}

.hero {
    padding: 2.8rem 0 1.5rem;
}

.hero-page {
    padding-top: 2.2rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(320px, 0.9fr);
    gap: 2rem;
    align-items: start;
}

.hero-grid-split {
    align-items: center;
}

.hero-copy h1,
.section-head h2,
.callout h2,
.prose-panel h2,
.prose-panel h3,
.hero-card h2,
.card h3 {
    font-family: 'Merriweather', serif;
    line-height: 1.1;
    letter-spacing: 0;
    margin: 0;
}

.hero-copy h1 {
    font-size: clamp(1.65rem, 2.6vw, 2.5rem);
    max-width: 22ch;
    margin: 0.4rem 0 1rem;
    font-weight: 700;
}

.lede {
    font-size: 1.18rem;
    color: var(--muted);
    max-width: 62ch;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.76rem;
    color: var(--clay);
    font-weight: 800;
    margin: 0;
}

.hero-actions {
    display: flex;
    gap: 0.9rem;
    flex-wrap: wrap;
    margin: 1.8rem 0 1.2rem;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 3.15rem;
    padding: 0.8rem 1.2rem;
    border-radius: 999px;
    font-weight: 700;
    border: 1px solid transparent;
    transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
    transform: translateY(-1px);
}

.button-primary {
    background: linear-gradient(135deg, var(--clay), #a01830);
    color: var(--white);
    box-shadow: 0 14px 30px rgba(196, 30, 58, 0.25);
}

.button-secondary {
    background: rgba(255, 255, 255, 0.72);
    border-color: var(--line);
    color: var(--ink);
}

.hero-points {
    list-style: none;
    padding: 0;
    margin: 1.4rem 0 0;
    color: var(--muted);
    display: grid;
    gap: 0.6rem;
}

.hero-points li::before {
    content: '•';
    color: var(--clay);
    margin-right: 0.65rem;
}

.panel {
    background: #fff;
    border: 1px solid rgba(212, 208, 196, 0.95);
    border-radius: var(--radius-xl);
    padding: 1.6rem;
    box-shadow: var(--shadow);
}

.hero-card {
    position: relative;
    overflow: hidden;
}

.hero-card::after {
    content: '';
    position: absolute;
    inset: auto -8% -18% auto;
    width: 12rem;
    height: 12rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(196, 30, 58, 0.15), transparent 70%);
}

.stats-list,
.bullets {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
    display: grid;
    gap: 0.9rem;
}

.stats-list li strong,
.stats-list li span {
    display: block;
}

.stats-list li strong {
    font-size: 1rem;
}

.stats-list li span,
.prose-panel p,
.card p,
.callout p,
.footer-copy,
.footer-note {
    color: var(--muted);
}

.section {
    padding: 1.8rem 0 0;
}

.section-head {
    margin-bottom: 1.1rem;
}

.section-head h2,
.callout h2,
.prose-panel h2 {
    font-size: clamp(1.35rem, 2vw, 1.85rem);
    margin: 0.35rem 0 0.8rem;
}

.card-grid,
.compact-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.compact-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
    min-height: 100%;
}

.card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.6rem;
}

.card p {
    margin-top: 0;
}

.text-link {
    display: inline-flex;
    margin-top: 1rem;
    font-weight: 700;
    color: var(--pine);
}

.text-link::after {
    content: '→';
    margin-left: 0.45rem;
}

.two-column {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.prose-panel h2,
.prose-panel h3 {
    margin-bottom: 0.8rem;
}

.bullets li {
    position: relative;
    padding-left: 1.15rem;
}

.bullets li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7rem;
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 50%;
    background: var(--clay);
}

.section-accent {
    padding: 2rem 0;
}

.callout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.8rem 2rem;
    border-radius: calc(var(--radius-xl) + 4px);
    background: linear-gradient(135deg, rgba(26, 27, 46, 0.97), rgba(13, 14, 31, 0.97));
    color: var(--white);
}

.callout .eyebrow,
.callout p {
    color: rgba(255, 255, 255, 0.78);
}

.callout .button-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.24);
}

.site-footer {
    margin-top: 4rem;
    padding: 2.2rem 0 1.3rem;
    border-top: 1px solid rgba(200, 200, 220, 0.7);
    background: var(--stone);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr 0.9fr;
    gap: 1.5rem;
}

.footer-brand {
    margin-bottom: 0.9rem;
}

.footer-heading {
    margin: 0 0 0.75rem;
    font-weight: 800;
    color: var(--pine);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size: 0.78rem;
}

.footer-links {
    display: grid;
    gap: 0.55rem;
}

.footer-contact {
    display: inline-flex;
    font-weight: 700;
    color: var(--pine);
}

.footer-meta {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1.2rem;
    margin-top: 1.2rem;
    border-top: 1px solid rgba(200, 200, 220, 0.7);
    color: var(--muted);
    font-size: 0.95rem;
}

.portrait,
.product-art {
    min-height: 21rem;
    border-radius: 22px;
    display: grid;
    place-items: end start;
    padding: 1.4rem;
    color: var(--white);
    background:
        linear-gradient(180deg, rgba(13, 14, 31, 0.18), rgba(13, 14, 31, 0.55)),
        linear-gradient(135deg, rgba(26, 27, 46, 0.92), rgba(45, 46, 80, 0.9));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22);
    font-family: 'Merriweather', serif;
    font-size: 1.4rem;
}

.bio-photo-panel {
    padding: 0;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    background: var(--stone);
}

.bio-photo {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: var(--radius-xl);
}

.product-art {
    place-items: center;
    text-align: center;
    gap: 0.55rem;
}

.product-art strong {
    font-size: 2rem;
    max-width: 8ch;
    line-height: 1;
}

@media (max-width: 980px) {
    .hero-grid,
    .two-column,
    .card-grid,
    .compact-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .callout {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-copy h1 {
        max-width: 14ch;
    }
}

@media (max-width: 760px) {
    .nav-shell {
        flex-wrap: wrap;
    }

    .menu-toggle {
        display: inline-flex;
        margin-left: auto;
    }

    .site-nav {
        display: none;
        width: 100%;
        padding: 0.75rem 0 0.25rem;
    }

    .site-nav.is-open {
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }

    .nav-link {
        width: 100%;
    }

    .hero {
        padding-top: 2.6rem;
    }

    .hero-copy h1 {
        font-size: clamp(2.5rem, 11vw, 4rem);
    }

    .hero-actions,
    .footer-meta {
        flex-direction: column;
        align-items: flex-start;
    }

    .section {
        padding-top: 1.5rem;
    }
}
