:root {
    --ink: #151515;
    --paper: #f7f4ee;
    --soft: #ebe6dc;
    --muted: #716d65;
    --line: rgba(21,21,21,.16);
    --white: #fff;
    --max: 1240px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
}

a {
    color: inherit;
}

.shell {
    width: min(var(--max), calc(100% - 48px));
    margin: 0 auto;
}

.site-header {
    border-bottom: 1px solid var(--line);
    background: rgba(247,244,238,.96);
}

.header-inner {
    min-height: 102px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.brand {
    text-decoration: none;
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 28px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.brand-tagline {
    margin-top: 3px;
    color: var(--muted);
    font-size: 11px;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.main-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 25px;
}

.main-nav a {
    text-decoration: none;
    font-size: 13px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.hero {
    padding: 90px 0;
}

.hero-inner {
    min-height: 610px;
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    gap: 80px;
    align-items: center;
}

.eyebrow {
    margin-bottom: 18px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--muted);
}

.hero h1,
.section-heading h2,
.acting-feature h2 {
    font-family: Georgia, 'Times New Roman', serif;
    font-weight: 400;
}

.hero h1 {
    max-width: 800px;
    margin: 0;
    font-size: clamp(48px, 5.4vw, 78px);
    line-height: 1.03;
    letter-spacing: -.035em;
}

.hero-intro {
    max-width: 650px;
    margin: 32px 0;
    color: #4c4944;
    font-size: 19px;
}

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

.button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    padding: 0 25px;
    border: 1px solid var(--ink);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
}

.button-primary {
    background: var(--ink);
    color: var(--white);
}

.button-secondary {
    background: transparent;
}

.button-light {
    border-color: var(--white);
    color: var(--white);
}

.image-placeholder {
    aspect-ratio: 4 / 5;
    min-height: 580px;
    background:
        linear-gradient(145deg, #ded8cd, #bbb2a5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.image-placeholder span {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 38px;
}

.image-placeholder small {
    margin-top: 10px;
    color: #59544d;
}

.dual-career,
.featured-section {
    padding: 105px 0;
    border-top: 1px solid var(--line);
}

.section-heading {
    max-width: 760px;
    margin-bottom: 52px;
}

.section-heading h2 {
    margin: 0;
    font-size: clamp(40px, 4vw, 62px);
    line-height: 1.05;
}

.career-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.career-card {
    min-height: 355px;
    padding: 42px;
    border: 1px solid var(--line);
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.card-number {
    color: var(--muted);
    font-size: 12px;
    letter-spacing: .15em;
}

.career-card h3 {
    margin: 0 0 18px;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 46px;
    font-weight: 400;
}

.career-card p {
    max-width: 470px;
    color: var(--muted);
    font-size: 17px;
}

.career-card a {
    display: inline-block;
    margin-top: 20px;
    font-weight: 700;
}

.book-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.cover-placeholder {
    aspect-ratio: 2 / 3;
    margin-bottom: 22px;
    background: #d8d1c5;
    display: grid;
    place-items: center;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: 11px;
}

.book-card h3 {
    margin: 0 0 7px;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 25px;
    line-height: 1.2;
}

.book-card p {
    margin: 0;
    color: var(--muted);
}

.acting-feature {
    background: var(--ink);
    color: var(--white);
    padding: 110px 0;
}

.acting-feature-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.acting-feature .eyebrow {
    color: #aaa59e;
}

.acting-feature h2 {
    margin: 0 0 20px;
    font-size: clamp(46px, 5vw, 72px);
}

.acting-feature p {
    max-width: 560px;
    color: #d4d0c9;
    font-size: 18px;
}

.credit-preview {
    border-left: 1px solid rgba(255,255,255,.25);
    padding-left: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.credit-preview span {
    color: #aaa59e;
    margin-bottom: 22px;
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: 12px;
}

.credit-preview strong {
    padding: 13px 0;
    border-bottom: 1px solid rgba(255,255,255,.13);
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 25px;
    font-weight: 400;
}

.site-footer {
    padding: 42px 0;
    background: #0c0c0c;
    color: #ddd;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.footer-inner > div:first-child {
    display: flex;
    flex-direction: column;
}

.footer-inner span {
    color: #888;
    font-size: 12px;
}

@media (max-width: 900px) {
    .header-inner {
        align-items: flex-start;
        flex-direction: column;
        padding: 25px 0;
    }

    .main-nav {
        justify-content: flex-start;
    }

    .hero-inner,
    .acting-feature-inner,
    .career-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 60px;
    }

    .hero-inner {
        gap: 45px;
    }

    .image-placeholder {
        min-height: 400px;
    }

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

@media (max-width: 600px) {
    .shell {
        width: min(var(--max), calc(100% - 30px));
    }

    .main-nav {
        gap: 14px 18px;
    }

    .hero h1 {
        font-size: 43px;
    }

    .career-card {
        padding: 28px;
    }

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

    .footer-inner {
        flex-direction: column;
    }
}

/* =========================================================
   INTERIOR PAGES
   ========================================================= */

.page-hero {
    padding: 78px 0 65px;
    border-bottom: 1px solid var(--line);
}

.page-hero h1 {
    margin: 0;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(52px, 6vw, 82px);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -.035em;
}

.page-hero p {
    max-width: 680px;
    margin: 24px 0 0;
    color: var(--muted);
    font-size: 18px;
}

.dark-page {
    background: var(--ink);
    color: var(--white);
}

.dark-page .eyebrow,
.dark-page p {
    color: #c4beb5;
}

.page-section {
    padding: 90px 0;
}

.page-section + .page-section {
    border-top: 1px solid var(--line);
}


/* =========================================================
   HOMEPAGE
   ========================================================= */

.hero-home {
    padding-top: 60px;
    padding-bottom: 70px;
}

.hero-home .hero-inner {
    min-height: auto;
}

.hero-home .hero-copy {
    max-width: 520px;
}

.hero-home .hero-photo {
    display: flex;
    justify-content: center;
}

.hero-home .hero-photo img {
    display: block;
    width: 100%;
    max-width: 610px;
    max-height: 700px;
    object-fit: cover;
    object-position: center top;
}

.home-paths {
    padding: 65px 0 85px;
    border-top: 1px solid var(--line);
}

.home-paths .career-card {
    min-height: 275px;
}

.home-paths .career-card h2 {
    margin: 4px 0 16px;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 42px;
    font-weight: 400;
}


/* =========================================================
   ACTING
   ========================================================= */

.acting-layout {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: 80px;
    align-items: start;
}

.feature-portrait {
    display: block;
    width: 100%;
    max-width: 520px;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center top;
}

.acting-copy {
    padding-top: 25px;
}

.acting-copy h2 {
    margin: 0 0 35px;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(42px, 5vw, 66px);
    font-weight: 400;
    line-height: 1;
}

.acting-copy > p {
    max-width: 600px;
    margin-top: 35px;
    color: var(--muted);
    font-size: 17px;
}

.credit-list {
    border-top: 1px solid var(--line);
}

.credit-list > div {
    padding: 21px 0;
    border-bottom: 1px solid var(--line);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 30px;
    align-items: baseline;
}

.credit-list strong {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 22px;
    font-weight: 400;
}

.credit-list span {
    color: var(--muted);
    font-size: 14px;
    text-align: right;
}

.photo-gallery-section {
    background: #ede8df;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.photo-grid img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center top;
}


/* =========================================================
   GENERIC CONTENT
   ========================================================= */

.content-narrow {
    max-width: 820px;
}

.content-narrow h2,
.content-narrow h3 {
    font-family: Georgia, 'Times New Roman', serif;
    font-weight: 400;
}

.content-narrow p {
    font-size: 17px;
    color: #4c4944;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 900px) {

    .acting-layout {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .feature-portrait {
        max-width: 650px;
    }

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

@media (max-width: 600px) {

    .page-hero {
        padding: 55px 0 45px;
    }

    .page-section {
        padding: 60px 0;
    }

    .credit-list > div {
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .credit-list span {
        text-align: left;
    }

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

    .hero-home .hero-photo img {
        max-height: none;
    }
}

/* =========================================================
   BOOKS CATALOGUE
   ========================================================= */

.books-page-hero {
    padding-bottom: 75px;
}

.books-catalogue {
    padding: 95px 0 115px;
}

.books-catalogue-grid {
    display: flex;
    flex-direction: column;
    gap: 95px;
}

.catalogue-book {
    display: grid;
    grid-template-columns: minmax(260px, 390px) minmax(0, 1fr);
    gap: 85px;
    align-items: center;
}

.catalogue-book:nth-child(even) {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 390px);
}

.catalogue-book:nth-child(even) .catalogue-cover {
    order: 2;
    justify-self: end;
}

.catalogue-book:nth-child(even) .catalogue-book-copy {
    order: 1;
}

.catalogue-cover {
    display: block;
    width: 100%;
    max-width: 390px;
    justify-self: start;
}

.catalogue-cover img {
    display: block;
    width: 100%;
    height: auto;
    box-shadow: 0 22px 55px rgba(0,0,0,.16);
}

.catalogue-book-copy {
    max-width: 650px;
}

.catalogue-book-copy h2 {
    margin: 0 0 24px;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(38px, 4.5vw, 62px);
    font-weight: 400;
    line-height: 1.04;
}

.book-hook {
    margin: 0 0 30px;
    color: var(--muted);
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 22px;
    line-height: 1.45;
}


/* =========================================================
   INDIVIDUAL BOOK
   ========================================================= */

.book-detail-hero {
    padding: 90px 0 110px;
}

.book-detail-grid {
    display: grid;
    grid-template-columns: minmax(280px, 410px) minmax(0, 1fr);
    gap: 100px;
    align-items: center;
}

.book-detail-cover img {
    display: block;
    width: 100%;
    box-shadow: 0 25px 65px rgba(0,0,0,.18);
}

.book-series-link {
    display: inline-block;
    text-decoration: none;
}

.book-detail-intro h1 {
    max-width: 760px;
    margin: 0;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(48px, 6vw, 78px);
    font-weight: 400;
    line-height: 1.02;
    letter-spacing: -.035em;
}

.book-detail-hook {
    max-width: 670px;
    margin: 30px 0 0;
    color: var(--muted);
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 25px;
    line-height: 1.45;
}

.purchase-intro {
    margin-top: 48px;
}

.purchase-intro > span {
    display: block;
    margin-bottom: 14px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.purchase-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.purchase-buttons .button {
    min-height: 46px;
    padding-left: 18px;
    padding-right: 18px;
}

.book-about {
    padding: 105px 0;
    border-top: 1px solid var(--line);
}

.book-content-grid {
    display: grid;
    grid-template-columns: 240px minmax(0, 760px);
    gap: 80px;
}

.book-description p {
    margin: 0 0 25px;
    color: #403d38;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 20px;
    line-height: 1.75;
}

.book-praise {
    padding: 100px 0;
    background: #191919;
    color: var(--white);
}

.book-praise .eyebrow {
    color: #aaa49b;
}

.book-praise .section-heading h2 {
    color: var(--white);
}

.review-grid {
    max-width: 900px;
}

.book-review {
    margin: 0;
}

.book-review p {
    margin: 0;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(27px, 3.2vw, 42px);
    line-height: 1.4;
}

.book-review footer {
    margin-top: 30px;
    color: #ccc5bb;
    font-size: 14px;
}

.book-review footer span {
    display: block;
    margin-top: 3px;
    color: #8e887f;
}

.book-back {
    padding: 45px 0;
    border-top: 1px solid var(--line);
}

.book-back a {
    font-weight: 700;
}


/* =========================================================
   BOOK RESPONSIVE
   ========================================================= */

@media (max-width: 900px) {

    .catalogue-book,
    .book-detail-grid,
    .book-content-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .catalogue-book:nth-child(even) {
        grid-template-columns: 1fr;
    }

    .catalogue-book:nth-child(even) .catalogue-cover,
    .catalogue-book:nth-child(even) .catalogue-book-copy {
        order: initial;
    }

    .catalogue-book:nth-child(even) .catalogue-cover {
        justify-self: start;
    }

    .catalogue-cover,
    .book-detail-cover {
        max-width: 430px;
    }
}

@media (max-width: 600px) {

    .books-catalogue {
        padding: 65px 0 80px;
    }

    .books-catalogue-grid {
        gap: 75px;
    }

    .book-detail-hero {
        padding: 60px 0 75px;
    }

    .book-about,
    .book-praise {
        padding: 70px 0;
    }
}

/* =========================================================
   THE OTHER SIDE SERIES
   ========================================================= */

.tos-hero {
    overflow: hidden;
    background:
        radial-gradient(circle at 75% 40%, #343535 0, #191a1a 35%, #0d0e0e 72%),
        #0d0e0e;
    color: #fff;
    padding: 105px 0 125px;
}

.tos-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(430px, 1.05fr);
    gap: 80px;
    align-items: center;
}

.tos-hero .eyebrow {
    color: #aaa8a2;
}

.tos-hero h1 {
    margin: 0;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(68px, 8vw, 118px);
    font-weight: 400;
    line-height: .92;
    letter-spacing: -.055em;
}

.tos-tagline {
    max-width: 650px;
    margin: 35px 0 0;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(25px, 3vw, 39px);
    line-height: 1.25;
}

.tos-intro {
    max-width: 600px;
    margin: 26px 0 38px;
    color: #bbb8b1;
    font-size: 18px;
}

.tos-light-button {
    border-color: rgba(255,255,255,.55);
    background: transparent;
    color: #fff;
}

.tos-light-button:hover {
    background: #fff;
    color: #111;
}

.tos-cover-stack {
    position: relative;
    min-height: 620px;
}

.tos-cover {
    position: absolute;
    display: block;
    width: 330px;
    box-shadow: 0 35px 90px rgba(0,0,0,.55);
}

.tos-cover-one {
    top: 20px;
    left: 20px;
    transform: rotate(-5deg);
    z-index: 1;
}

.tos-cover-two {
    right: 15px;
    bottom: 0;
    transform: rotate(5deg);
    z-index: 2;
}

.tos-overview {
    padding: 115px 0;
    background: #f5f1e9;
}

.tos-overview-grid {
    display: grid;
    grid-template-columns: 230px minmax(0, 800px);
    gap: 90px;
}

.tos-series-copy p {
    margin: 0 0 26px;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 20px;
    line-height: 1.75;
    color: #3f3b36;
}

.tos-books {
    padding: 115px 0 130px;
    background: #111212;
    color: #fff;
}

.tos-books .eyebrow {
    color: #999690;
}

.tos-section-heading {
    margin-bottom: 70px;
}

.tos-section-heading h2 {
    margin: 0;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(50px, 6vw, 82px);
    font-weight: 400;
}

.tos-book-list {
    display: flex;
    flex-direction: column;
    gap: 110px;
}

.tos-book {
    display: grid;
    grid-template-columns: 80px minmax(250px, 390px) minmax(0, 1fr);
    gap: 55px;
    align-items: center;
}

.tos-book:nth-child(even) {
    grid-template-columns: 80px minmax(0, 1fr) minmax(250px, 390px);
}

.tos-book:nth-child(even) .tos-book-cover {
    order: 3;
}

.tos-book:nth-child(even) .tos-book-copy {
    order: 2;
}

.tos-book-number {
    align-self: start;
    padding-top: 10px;
    color: #777570;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.tos-book-cover img {
    display: block;
    width: 100%;
    box-shadow: 0 25px 65px rgba(0,0,0,.5);
}

.tos-book-copy {
    max-width: 660px;
}

.tos-book-copy h3 {
    margin: 0 0 23px;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(38px, 4.5vw, 64px);
    font-weight: 400;
    line-height: 1.02;
}

.tos-book-hook {
    max-width: 540px;
    margin: 0 0 32px;
    color: #bbb8b1;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 22px;
    line-height: 1.45;
}

.tos-philosophy {
    padding: 120px 0;
    background: #242525;
    color: #fff;
}

.tos-philosophy .eyebrow {
    color: #9d9a94;
}

.tos-philosophy-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 95px;
}

.tos-philosophy h2 {
    max-width: 560px;
    margin: 0;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(46px, 5vw, 72px);
    font-weight: 400;
    line-height: 1.05;
}

.tos-philosophy p {
    max-width: 670px;
    margin: 0 0 24px;
    color: #c9c6bf;
    font-size: 18px;
    line-height: 1.75;
}

.text-link-light {
    display: inline-block;
    margin-top: 14px;
    color: #fff;
    font-weight: 700;
}


/* =========================================================
   THE OTHER SIDE RESPONSIVE
   ========================================================= */

@media (max-width: 1000px) {

    .tos-hero-grid {
        grid-template-columns: 1fr;
    }

    .tos-cover-stack {
        max-width: 690px;
        width: 100%;
        margin: 0 auto;
    }

    .tos-overview-grid,
    .tos-philosophy-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .tos-book,
    .tos-book:nth-child(even) {
        grid-template-columns: 55px minmax(240px, 330px) 1fr;
    }

    .tos-book:nth-child(even) .tos-book-cover,
    .tos-book:nth-child(even) .tos-book-copy {
        order: initial;
    }
}

@media (max-width: 700px) {

    .tos-hero {
        padding: 75px 0 90px;
    }

    .tos-cover-stack {
        min-height: 500px;
    }

    .tos-cover {
        width: 245px;
    }

    .tos-book,
    .tos-book:nth-child(even) {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .tos-book-number {
        padding: 0;
    }

    .tos-book-cover {
        max-width: 330px;
    }

    .tos-overview,
    .tos-books,
    .tos-philosophy {
        padding: 80px 0;
    }
}

@media (max-width: 480px) {

    .tos-cover-stack {
        min-height: 430px;
    }

    .tos-cover {
        width: 205px;
    }

    .tos-cover-one {
        left: 0;
    }

    .tos-cover-two {
        right: 0;
    }
}

/* =========================================================
   THE OTHER SIDE — HAUNTING HORROR OVERRIDE
   ========================================================= */

.tos-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-height: 760px;
    background:
        radial-gradient(circle at 72% 40%, rgba(68, 87, 83, .18), transparent 32%),
        radial-gradient(circle at 35% 78%, rgba(92, 0, 12, .14), transparent 26%),
        linear-gradient(180deg, #060808 0%, #0b0e0e 42%, #050606 100%);
    color: #f3f1eb;
    padding: 115px 0 135px;
}

/* Cold atmospheric haze */
.tos-hero::before {
    content: "";
    position: absolute;
    inset: -20%;
    z-index: -2;
    opacity: .6;
    background:
        radial-gradient(ellipse at 15% 40%, rgba(180,195,190,.12), transparent 34%),
        radial-gradient(ellipse at 65% 62%, rgba(170,185,181,.08), transparent 38%),
        radial-gradient(ellipse at 90% 25%, rgba(110,130,127,.10), transparent 30%);
    filter: blur(35px);
    animation: tosFog 18s ease-in-out infinite alternate;
}

/* Reflection / water darkness */
.tos-hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 34%;
    z-index: -1;
    background:
        repeating-linear-gradient(
            180deg,
            rgba(255,255,255,.025) 0px,
            rgba(255,255,255,.025) 1px,
            transparent 1px,
            transparent 7px
        ),
        linear-gradient(
            180deg,
            rgba(6,8,8,0) 0%,
            rgba(4,5,5,.55) 28%,
            rgba(2,3,3,.95) 100%
        );
    opacity: .85;
}

@keyframes tosFog {
    from {
        transform: translate3d(-2%, -1%, 0) scale(1);
    }
    to {
        transform: translate3d(4%, 2%, 0) scale(1.08);
    }
}

.tos-hero-grid {
    position: relative;
    z-index: 2;
}

.tos-hero .eyebrow {
    color: #8c9c99;
    letter-spacing: .28em;
}

.tos-hero h1 {
    color: #f5f3ee;
    text-shadow:
        0 3px 18px rgba(0,0,0,.8),
        0 0 45px rgba(120,145,140,.08);
}

.tos-tagline {
    color: #d8d4cc;
    font-style: italic;
    text-shadow: 0 2px 12px rgba(0,0,0,.8);
}

.tos-intro {
    color: #9daba8;
}

.tos-light-button {
    border-color: rgba(182, 199, 194, .45);
    color: #dfe7e5;
    background: rgba(255,255,255,.015);
    backdrop-filter: blur(4px);
}

.tos-light-button:hover {
    border-color: #c8d3d0;
    background: #d9e1df;
    color: #090b0b;
}

/* Covers feel like objects emerging from darkness */
.tos-cover-stack {
    perspective: 1200px;
}

.tos-cover {
    border: 1px solid rgba(220,230,227,.08);
    box-shadow:
        0 40px 90px rgba(0,0,0,.8),
        0 0 70px rgba(63, 85, 81, .12);
    filter: saturate(.82) contrast(1.08);
}

.tos-cover-one {
    transform: rotate(-6deg) translateZ(-10px);
}

.tos-cover-two {
    transform: rotate(4deg) translateZ(25px);
}


/* =========================================================
   SERIES OVERVIEW — REMOVE WARM BOOK-SITE LOOK
   ========================================================= */

.tos-overview {
    position: relative;
    background:
        linear-gradient(180deg, #0b0d0d 0%, #101313 100%);
    color: #e7e4dd;
    border-top: 1px solid rgba(185, 201, 197, .09);
}

.tos-overview .eyebrow {
    color: #788885;
}

.tos-series-copy p {
    color: #b8c0bd;
    font-size: 20px;
}

.tos-series-copy p:first-child {
    color: #f1eee8;
    font-size: 27px;
    line-height: 1.5;
}


/* =========================================================
   READING ORDER
   ========================================================= */

.tos-books {
    position: relative;
    background:
        radial-gradient(circle at 18% 35%, rgba(56,75,72,.10), transparent 26%),
        radial-gradient(circle at 87% 68%, rgba(90,0,13,.08), transparent 21%),
        #050707;
}

.tos-books::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .3;
    background-image:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 5px,
            rgba(255,255,255,.012) 6px
        );
}

.tos-section-heading,
.tos-book-list {
    position: relative;
    z-index: 2;
}

.tos-section-heading h2 {
    color: #eeeae3;
}

.tos-book-number {
    color: #687773;
}

.tos-book-copy h3 {
    color: #f0ede7;
}

.tos-book-hook {
    color: #9ca9a6;
}


/* Faint blood-red accent — restrained */
.tos-book-copy .eyebrow,
.tos-philosophy .eyebrow {
    color: #8b343b;
}


/* =========================================================
   SCREEN-FIRST SECTION
   ========================================================= */

.tos-philosophy {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(
            135deg,
            #111414 0%,
            #0a0c0c 55%,
            #080909 100%
        );
    border-top: 1px solid rgba(255,255,255,.06);
}

.tos-philosophy::after {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    right: -160px;
    bottom: -280px;
    border-radius: 50%;
    background: rgba(93,0,15,.08);
    filter: blur(70px);
}

.tos-philosophy-grid {
    position: relative;
    z-index: 2;
}

.tos-philosophy h2 {
    color: #efebe5;
}

.tos-philosophy p {
    color: #aeb8b5;
}

.text-link-light {
    color: #cdd7d4;
}


/* =========================================================
   SUBTLE GRAIN
   ========================================================= */

.tos-hero,
.tos-overview,
.tos-books,
.tos-philosophy {
    background-blend-mode: normal;
}

.tos-hero-grid::after {
    content: "";
    position: absolute;
    inset: -100px;
    z-index: -1;
    pointer-events: none;
    opacity: .035;
    background-image:
        repeating-radial-gradient(
            circle at 20% 30%,
            #fff 0,
            #fff 1px,
            transparent 1px,
            transparent 3px
        );
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .tos-hero {
        min-height: auto;
    }

    .tos-tagline {
        font-size: 28px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .tos-hero::before {
        animation: none;
    }
}
