:root {
    --ink: #1b1714;
    --muted: #5a4a41;
    --accent: #c65d3b;
    --paper: #f7f3ec;
}

* { box-sizing: border-box; }

body {
    margin: 0;
    font-family: "Source Sans 3", sans-serif;
    background: var(--paper);
    color: var(--ink);
}

.site-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 250, 243, 0.98);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 8px 18px rgba(34, 24, 16, 0.08);
    backdrop-filter: blur(10px);
}

.nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 16px 8vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.nav-brand {
    font-family: "Fraunces", serif;
    font-size: 1.7rem;
    text-decoration: none;
    color: var(--accent);
    letter-spacing: 0.01em;
}

.nav-links {
    display: flex;
    gap: 22px;
    font-weight: 600;
    font-size: 1.05rem;
    letter-spacing: 0.01em;
}

.nav-links a {
    text-decoration: none;
    color: var(--ink);
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid rgba(18, 18, 18, 0.2);
    background: #fff7ec;
    box-shadow: 0 6px 12px rgba(34, 24, 16, 0.08);
    transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease;
    white-space: nowrap;
}

.nav-links a:hover,
.nav-links a:focus {
    transform: translateY(-1px);
    box-shadow: 0 10px 18px rgba(34, 24, 16, 0.12);
    background: #fff1df;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image: radial-gradient(circle, rgba(193, 76, 62, 0.08) 1px, transparent 1px);
    background-size: 32px 32px;
    opacity: 0.4;
    pointer-events: none;
}

.wrap {
    display: grid;
    grid-template-columns: 64px 1fr;
    min-height: 100vh;
}

.wrap.stripless {
    grid-template-columns: 1fr;
}

.strip {
    background: #1b1714;
    color: #f7f3ec;
    text-transform: uppercase;
    letter-spacing: 0.35em;
    font-size: 0.95rem;
    padding: 20px 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: relative;
}

.strip-text {
    display: block;
    line-height: 1.35;
    font-family: "Fraunces", serif;
}

.strip::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 16px;
    width: 4px;
    height: 64px;
    transform: translateX(-50%);
    background: linear-gradient(180deg, #ff6f61, transparent);
    border-radius: 999px;
    opacity: 0.7;
}

.content {
    padding: 24px 8vw 80px;
    position: relative;
}

.content-wide {
    padding-left: 8vw;
}

.content::before {
    content: "";
    position: absolute;
    top: 0;
    right: 8vw;
    width: 140px;
    height: 140px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(255, 111, 97, 0.18), transparent 70%);
}

.hero {
    display: grid;
    grid-template-columns: minmax(220px, 0.8fr) minmax(320px, 1.2fr);
    gap: 28px;
    align-items: center;
    margin-bottom: 32px;
    position: relative;
}

.hero::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -16px;
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), transparent);
}

.portrait img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
}

.portrait img.portrait-down {
    object-position: center 20%;
}

.kicker {
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-size: 0.7rem;
    color: var(--muted);
    margin: 0 0 12px;
}

.hero h1 {
    font-family: "Fraunces", serif;
    font-size: clamp(2.8rem, 4.6vw, 4rem);
    margin: 0 0 10px;
}

.deck {
    font-size: 1.15rem;
    color: var(--muted);
    margin: 0;
    max-width: 420px;
}

.story {
    max-width: 1040px;
    font-family: "Times New Roman", Times, serif;
    font-size: 1rem;
    line-height: 1.8;
}

.story p { margin: 0 0 18px; }

.story p:first-of-type::first-letter {
    float: left;
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 0.9;
    padding-right: 8px;
    color: var(--accent);
}

@media (max-width: 900px) {
    .wrap { grid-template-columns: 1fr; }
    .strip { writing-mode: horizontal-tb; }
    .hero { grid-template-columns: 1fr; }
}




