:root {
    --black: #0b0a08;
    --brown: #251d16;
    --brown-soft: #35291f;
    --cream: #eee3ce;
    --muted: #c4b7a3;
    --yellow: #e2b627;
    --orange: #a64f22;
    --red: #8e2721;
    --steel: #7d8581;
    --border: rgba(238,227,206,.15);
    --shadow: 0 25px 68px rgba(0,0,0,.52);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--black);
    color: var(--cream);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.7;
}

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

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

h1,
h2,
h3,
h4 {
    margin-top: 0;
    font-family: Georgia, "Times New Roman", serif;
    line-height: 1.08;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    min-height: 78px;
    padding: 10px clamp(18px, 5vw, 80px);
    background: rgba(11,10,8,.95);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(14px);
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: Georgia, serif;
    font-weight: 700;
}

.brand img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

nav {
    display: flex;
    align-items: center;
    gap: 21px;
    color: var(--muted);
    font-size: .88rem;
}

nav a:hover {
    color: var(--yellow);
}

.amazon-store {
    padding: 9px 15px;
    background: var(--red);
    color: #fff;
    border-radius: 4px;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(300px, .92fr);
    align-items: center;
    gap: clamp(45px, 8vw, 110px);
    min-height: calc(100vh - 78px);
    padding: 85px clamp(22px, 8vw, 125px);
    background:
        linear-gradient(90deg, rgba(11,10,8,.98), rgba(11,10,8,.74)),
        radial-gradient(circle at 72% 32%, rgba(166,79,34,.22), transparent 31%);
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--yellow);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
}

.hero h1 {
    max-width: 800px;
    margin-bottom: 22px;
    font-size: clamp(3.8rem, 8vw, 7.6rem);
}

.hero h1 span {
    display: block;
    color: var(--yellow);
    font-size: .45em;
    letter-spacing: .14em;
}

.tagline {
    max-width: 730px;
    margin: 0;
    color: var(--muted);
    font-family: Georgia, serif;
    font-size: clamp(1.2rem, 2.3vw, 1.7rem);
    font-style: italic;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 12px 22px;
    border: 1px solid var(--yellow);
    font-weight: 700;
    transition: transform .2s ease, background .2s ease;
}

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

.button.primary {
    background: var(--red);
    border-color: var(--red);
}

.button.secondary {
    background: transparent;
}

.cover-frame {
    justify-self: center;
    width: min(430px, 86%);
    padding: 12px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,.03);
    box-shadow: var(--shadow);
    transform: rotate(1deg);
}

.story-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: #201812;
}

.story-strip div {
    padding: 25px 18px;
    text-align: center;
}

.story-strip div + div {
    border-left: 1px solid var(--border);
}

.story-strip strong {
    display: block;
    color: var(--yellow);
    font-family: Georgia, serif;
    font-size: 1.3rem;
}

.story-strip span {
    color: var(--muted);
    font-size: .88rem;
}

.content-section {
    padding: 100px clamp(20px, 8vw, 125px);
}

.section-heading {
    max-width: 820px;
    margin: 0 auto 54px;
    text-align: center;
}

.section-heading h2 {
    margin-bottom: 14px;
    font-size: clamp(2.6rem, 6vw, 4.8rem);
}

.section-heading > p:last-child {
    color: var(--muted);
}

.synopsis-section {
    background:
        linear-gradient(135deg, rgba(142,39,33,.12), transparent 48%),
        #15110e;
}

.synopsis-copy {
    max-width: 920px;
    margin: 0 auto;
    color: var(--muted);
    font-size: 1.07rem;
}

.lead {
    margin: 5px 0;
    color: var(--cream);
    font-family: Georgia, serif;
    font-size: 1.55rem;
    text-align: center;
}

.danger-line {
    margin: 20px 0 35px;
    color: var(--yellow);
    font-family: Georgia, serif;
    font-size: 1.55rem;
    text-align: center;
}

.short-line {
    margin: 6px 0;
    color: var(--cream);
    font-family: Georgia, serif;
    font-size: 1.3rem;
    text-align: center;
}

.turning-line {
    color: var(--yellow);
    font-family: Georgia, serif;
    font-size: 1.5rem;
}

.closing {
    margin-top: 36px;
    color: var(--cream);
    font-family: Georgia, serif;
    font-size: 1.28rem;
    text-align: center;
}

.mind-section {
    display: grid;
    grid-template-columns: minmax(320px, .95fr) minmax(0, 1.05fr);
    min-height: 720px;
    background: #0e0c0a;
}

.mind-image img {
    width: 100%;
    height: 100%;
    min-height: 720px;
    object-fit: cover;
    object-position: top center;
}

.mind-copy {
    align-self: center;
    max-width: 720px;
    padding: 70px clamp(30px, 7vw, 105px);
}

.mind-copy h2 {
    margin-bottom: 20px;
    font-size: clamp(2.7rem, 5vw, 4.7rem);
}

.mind-copy p {
    color: var(--muted);
}

blockquote {
    margin: 34px 0 0;
    padding: 18px 24px;
    border-left: 4px solid var(--yellow);
    color: var(--cream);
    background: rgba(226,182,39,.06);
    font-family: Georgia, serif;
    font-size: 1.25rem;
    font-style: italic;
}

.characters-section {
    background: #0a0908;
}

.character-group {
    max-width: 1320px;
    margin: 0 auto 90px;
}

.character-group:last-child {
    margin-bottom: 0;
}

.group-heading {
    margin-bottom: 28px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
}

.group-heading h3 {
    margin-bottom: 0;
    font-size: clamp(2rem, 4vw, 3.2rem);
}

.character-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 25px;
}

.character-card {
    display: grid;
    grid-template-columns: minmax(190px, .82fr) 1.18fr;
    overflow: hidden;
    border: 1px solid var(--border);
    background: #1c1611;
    box-shadow: var(--shadow);
    transition: transform .22s ease, border-color .22s ease;
}

.character-card:hover {
    transform: translateY(-7px);
    border-color: rgba(226,182,39,.52);
}

.character-card img {
    width: 100%;
    height: 100%;
    min-height: 350px;
    object-fit: cover;
    object-position: top center;
}

.character-card > div {
    align-self: center;
    padding: 25px;
}

.role {
    margin: 0 0 8px;
    color: var(--yellow);
    font-size: .69rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.character-card h4,
.wide-character-card h4 {
    margin-bottom: 10px;
    font-size: 1.7rem;
}

.character-card p:last-child,
.wide-character-card p:last-child {
    margin-bottom: 0;
    color: var(--muted);
    font-size: .95rem;
}

.single-character-layout {
    max-width: 720px;
}

.wide-character-card {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr);
    overflow: hidden;
    border: 1px solid var(--border);
    background: #1c1611;
    box-shadow: var(--shadow);
}

.wide-character-card img {
    width: 100%;
    height: 100%;
    min-height: 480px;
    object-fit: cover;
    object-position: center;
}

.wide-character-card > div {
    align-self: center;
    padding: 35px;
}

.locations-section {
    padding: 100px clamp(20px, 8vw, 125px);
    background:
        linear-gradient(135deg, rgba(166,79,34,.12), transparent 48%),
        #17120e;
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    max-width: 1320px;
    margin: 0 auto;
}

.location-card {
    overflow: hidden;
    border: 1px solid var(--border);
    background: #1d1712;
    box-shadow: var(--shadow);
}

.location-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.location-card > div {
    padding: 28px;
}

.location-card h3 {
    margin-bottom: 12px;
    font-size: 2rem;
}

.location-card p:last-child {
    color: var(--muted);
}

.themes-section {
    padding: 100px clamp(20px, 8vw, 125px);
    background:
        linear-gradient(135deg, rgba(142,39,33,.15), transparent 45%),
        #18120f;
}

.theme-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    max-width: 1180px;
    margin: 0 auto;
}

.theme-grid article {
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,.025);
}

.theme-grid h3 {
    margin-bottom: 8px;
    color: var(--yellow);
    font-size: 1.45rem;
}

.theme-grid p {
    margin: 0;
    color: var(--muted);
}

footer {
    padding: 55px 20px;
    background: #070605;
    border-top: 1px solid var(--border);
    color: var(--muted);
    text-align: center;
}

footer img {
    width: 105px;
    margin: 0 auto 18px;
    border-radius: 50%;
}

footer p {
    margin: 4px 0;
}

footer a {
    display: inline-block;
    margin-top: 10px;
    color: var(--yellow);
}

@media (max-width: 1050px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .tagline {
        margin-right: auto;
        margin-left: auto;
    }

    .mind-section {
        grid-template-columns: 1fr;
    }

    .mind-image img {
        min-height: auto;
        max-height: 760px;
    }

    .character-grid {
        grid-template-columns: 1fr;
    }

    .wide-character-card {
        grid-template-columns: 1fr;
    }

    .theme-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 760px) {
    .site-header {
        align-items: flex-start;
    }

    nav {
        flex-wrap: wrap;
        justify-content: flex-end;
        gap: 10px 15px;
    }

    .story-strip {
        grid-template-columns: 1fr;
    }

    .story-strip div + div {
        border-top: 1px solid var(--border);
        border-left: 0;
    }

    .character-card {
        grid-template-columns: 1fr;
    }

    .character-card img {
        min-height: auto;
        max-height: 580px;
    }

    .location-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    .brand span {
        display: none;
    }

    .hero-actions {
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .theme-grid {
        grid-template-columns: 1fr;
    }
}
