:root {
    --ivory: #f4f0e6;
    --ivory-light: #faf8f1;
    --ink: #191816;
    --muted: #68645c;
    --line: rgba(25, 24, 22, 0.14);
    --card: rgba(255, 255, 255, 0.42);
    --max-width: 1240px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    position: relative;
    margin: 0;
    overflow-x: hidden;
    background-color: var(--ivory);
    color: var(--ink);
    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Arial,
        sans-serif;
    line-height: 1.6;
}

body::before {
    position: fixed;
    z-index: -2;
    inset: 0;
    content: "";
    pointer-events: none;
    background:
        radial-gradient(circle at 14% 22%,
            rgba(145, 119, 72, 0.07) 0 2px,
            transparent 3px),
        radial-gradient(circle at 77% 18%,
            rgba(145, 119, 72, 0.06) 0 2px,
            transparent 3px),
        radial-gradient(circle at 84% 72%,
            rgba(145, 119, 72, 0.06) 0 2px,
            transparent 3px),
        radial-gradient(circle at 28% 82%,
            rgba(145, 119, 72, 0.06) 0 2px,
            transparent 3px),
        linear-gradient(115deg,
            transparent 0 18%,
            rgba(145, 119, 72, 0.035) 18.1% 18.2%,
            transparent 18.3% 100%),
        linear-gradient(35deg,
            transparent 0 64%,
            rgba(145, 119, 72, 0.03) 64.1% 64.2%,
            transparent 64.3% 100%);
    background-size:
        320px 320px,
        420px 420px,
        360px 360px,
        460px 460px,
        520px 520px,
        620px 620px;
}

body::after {
    position: fixed;
    z-index: -1;
    inset: 0;
    content: "";
    pointer-events: none;
    opacity: 0.24;
    background-image:
        repeating-linear-gradient(0deg,
            rgba(60, 50, 38, 0.018) 0,
            rgba(60, 50, 38, 0.018) 1px,
            transparent 1px,
            transparent 4px);
}

.navbar {
    position: sticky;
    z-index: 100;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px max(6vw, 28px);
    border-bottom: 1px solid var(--line);
    background-color: rgba(244, 240, 230, 0.9);
    backdrop-filter: blur(14px);
}

.logo {
    color: var(--ink);
    font-size: 22px;
    font-weight: 750;
    text-decoration: none;
    letter-spacing: -0.4px;
}

nav {
    display: flex;
    gap: 32px;
}

nav a {
    position: relative;
    color: var(--ink);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
}

nav a::after {
    position: absolute;
    right: 0;
    bottom: -7px;
    left: 0;
    height: 1px;
    content: "";
    background-color: var(--ink);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.25s ease;
}

nav a:hover::after,
nav a:focus-visible::after {
    transform: scaleX(1);
    transform-origin: left;
}

.section {
    width: min(var(--max-width), calc(100% - 12vw));
    margin: 0 auto;
    padding: 130px 0;
}

.section-label,
.eyebrow,
.blog-number {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    text-wrap: pretty;
}

.hero {
    display: flex;
    min-height: calc(100vh - 78px);
    align-items: center;
    padding: 90px max(6vw, 28px);
}

.hero-content {
    width: min(900px, 100%);
}

.hero h1 {
    max-width: 900px;
    margin: 24px 0 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(54px, 7vw, 104px);
    font-weight: 500;
    line-height: 0.98;
    letter-spacing: -4px;
}

.hero-intro {
    max-width: 630px;
    margin: 34px 0 0;
    color: var(--muted);
    font-size: clamp(18px, 2vw, 23px);
    line-height: 1.65;
}

.button {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    margin-top: 38px;
    padding: 14px 28px;
    border: 1px solid var(--ink);
    border-radius: 999px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition:
        background-color 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}

.button-dark {
    background-color: var(--ink);
    color: var(--ivory-light);
}

.button-dark:hover {
    background-color: transparent;
    color: var(--ink);
    transform: translateY(-2px);
}

.featured-book {
    display: grid;
    grid-template-columns: minmax(260px, 410px) minmax(300px, 580px);
    align-items: center;
    justify-content: space-between;
    gap: clamp(60px, 9vw, 140px);
    border-top: 1px solid var(--line);
}

.book-cover img {
    display: block;
    width: 100%;
    max-width: 400px;
    border: 1px solid rgba(25, 24, 22, 0.12);
    border-radius: 4px;
    box-shadow:
        0 35px 70px rgba(55, 45, 30, 0.17),
        0 10px 22px rgba(55, 45, 30, 0.1);
}

.book-text h2,
.section-heading h2,
.contact h2 {
    margin: 20px 0 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(48px, 6vw, 78px);
    font-weight: 500;
    line-height: 1;
    letter-spacing: -2px;
}

.book-question {
    margin: 34px 0 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(27px, 3vw, 40px);
    line-height: 1.25;
}

.book-summary {
    max-width: 580px;
    margin-top: 36px;
    color: var(--muted);
    font-size: 18px;
}

.book-summary p {
    margin: 0 0 18px;
}

.text-link,
.card-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--ink);
    color: var(--ink);
    font-weight: 700;
    text-decoration: none;
}

.text-link {
    margin-top: 22px;
}

.text-link span,
.card-link span {
    transition: transform 0.2s ease;
}

.text-link:hover span,
.card-link:hover span {
    transform: translateX(5px);
}

.about {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    align-items: end;
    gap: 100px;
    border-top: 1px solid var(--line);
}

.about-text {
    max-width: 680px;
    color: var(--muted);
    font-size: clamp(20px, 2.3vw, 30px);
    line-height: 1.55;
}

.about-text p {
    margin: 0;
}

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

.blog .section-heading {
    max-width: 760px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 70px;
}

.blog-card {
    display: flex;
    min-height: 360px;
    flex-direction: column;
    padding: 34px;
    border: 1px solid var(--line);
    background-color: var(--card);
    transition:
        transform 0.25s ease,
        background-color 0.25s ease;
}

.blog-card:hover {
    background-color: rgba(255, 255, 255, 0.68);
    transform: translateY(-5px);
}

.blog-card h3 {
    min-height: 138px;
    margin: 65px 0 18px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 30px;
    font-weight: 500;
    line-height: 1.15;
}

.blog-card>p:not(.blog-number) {
    margin: 0;
    color: var(--muted);
}

.card-link {
    align-self: flex-start;
    margin-top: auto;
    padding-top: 30px;
}

.contact {
    border-top: 1px solid var(--line);
    text-align: center;
}

.contact>p:not(.section-label) {
    max-width: 670px;
    margin: 30px auto 0;
    color: var(--muted);
    font-size: 20px;
}

footer {
    display: flex;
    width: min(var(--max-width), calc(100% - 12vw));
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    padding: 35px 0;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 14px;
}

footer p {
    margin: 0;
}

footer a {
    color: var(--ink);
    text-decoration: none;
}

@media (max-width: 850px) {

    .navbar {
        align-items: flex-start;
        gap: 22px;
    }

    nav {
        flex-wrap: wrap;
        justify-content: flex-end;
        gap: 12px 20px;
    }

    .hero {
        min-height: auto;
        padding-top: 150px;
        padding-bottom: 130px;
    }

    .hero h1 {
        letter-spacing: -2px;
    }

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

    .featured-book {
        gap: 70px;
    }

    .book-cover img {
        max-width: 360px;
        margin: 0 auto;
    }

    .about {
        gap: 45px;
    }

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

@media (max-width: 560px) {

    .navbar {
        position: relative;
        display: block;
        padding: 22px;
    }

    nav {
        justify-content: flex-start;
        margin-top: 20px;
    }

    nav a {
        font-size: 14px;
    }

    .hero {
        padding: 110px 22px;
    }

    .hero h1 {
        font-size: 48px;
        letter-spacing: -1.5px;
    }

    .section {
        width: calc(100% - 44px);
        padding: 95px 0;
    }

    .book-question br {
        display: none;
    }

    footer {
        width: calc(100% - 44px);
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }
}

/* ==========================================
   BOOKS PAGE
========================================== */

.books-hero {
    display: flex;
    min-height: 72vh;
    align-items: center;
    padding: 110px max(6vw, 28px);
    border-bottom: 1px solid var(--line);
}

.books-hero-content {
    width: min(920px, 100%);
}

.books-hero h1 {
    max-width: 920px;
    margin: 24px 0 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(54px, 7vw, 102px);
    font-weight: 500;
    line-height: 0.98;
    letter-spacing: -4px;
}

.books-hero-content>p:last-child {
    max-width: 680px;
    margin: 34px 0 0;
    color: var(--muted);
    font-size: clamp(18px, 2vw, 23px);
    line-height: 1.65;
}

.book-page-feature {
    display: grid;
    grid-template-columns: minmax(260px, 410px) minmax(320px, 610px);
    align-items: center;
    justify-content: space-between;
    gap: clamp(60px, 9vw, 140px);
}

.book-page-cover img {
    display: block;
    width: 100%;
    max-width: 400px;
    border: 1px solid rgba(25, 24, 22, 0.12);
    border-radius: 4px;
    box-shadow:
        0 35px 70px rgba(55, 45, 30, 0.17),
        0 10px 22px rgba(55, 45, 30, 0.1);
}

.book-page-content h2 {
    margin: 20px 0 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(52px, 6vw, 82px);
    font-weight: 500;
    line-height: 1;
    letter-spacing: -2px;
}

.book-page-tagline {
    margin: 34px 0 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(27px, 3vw, 40px);
    line-height: 1.25;
}

.book-page-blurb {
    max-width: 610px;
    margin-top: 36px;
    color: var(--muted);
    font-size: 18px;
}

.book-page-blurb p {
    margin: 0 0 18px;
}

.book-status {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 42px;
}

.book-status-item {
    min-height: 112px;
    padding: 22px;
    border: 1px solid var(--line);
    background-color: var(--card);
}

.book-status-item span,
.book-status-item strong {
    display: block;
}

.book-status-item span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.book-status-item strong {
    margin-top: 14px;
    font-size: 16px;
    line-height: 1.35;
}

.book-opening {
    border-top: 1px solid var(--line);
}

.book-opening-heading {
    text-align: center;
}

.book-opening-heading h2 {
    margin: 18px 0 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(48px, 6vw, 76px);
    font-weight: 500;
    line-height: 1;
    letter-spacing: -2px;
}

.book-page-preview {
    width: min(760px, 100%);
    margin: 70px auto 0;
    padding: clamp(42px, 7vw, 82px);
    border: 1px solid rgba(25, 24, 22, 0.14);
    background-color: rgba(250, 248, 241, 0.82);
    box-shadow:
        0 28px 65px rgba(55, 45, 30, 0.12),
        0 8px 18px rgba(55, 45, 30, 0.07);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(18px, 1.8vw, 21px);
    line-height: 1.9;
}

.book-page-preview::before {
    display: block;
    width: 80px;
    height: 1px;
    margin: 0 auto 45px;
    content: "";
    background-color: var(--line);
}

.book-page-preview p {
    margin: 0;
    text-indent: 2em;
}

.book-page-preview p+p {
    margin-top: 8px;
}

.book-page-preview-first {
    text-indent: 0 !important;
}

.next-book {
    border-top: 1px solid var(--line);
    text-align: center;
}

.next-book h2 {
    max-width: 900px;
    margin: 20px auto 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(44px, 6vw, 76px);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -2px;
}

.next-book>p:last-child {
    max-width: 680px;
    margin: 30px auto 0;
    color: var(--muted);
    font-size: 20px;
}

@media (max-width: 850px) {

    .books-hero {
        min-height: auto;
        padding-top: 150px;
        padding-bottom: 130px;
    }

    .books-hero h1 {
        letter-spacing: -2px;
    }

    .book-page-feature {
        grid-template-columns: 1fr;
        gap: 70px;
    }

    .book-page-cover img {
        max-width: 360px;
        margin: 0 auto;
    }

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

@media (max-width: 560px) {

    .books-hero {
        padding: 110px 22px;
    }

    .books-hero h1 {
        font-size: 48px;
        letter-spacing: -1.5px;
    }

    .book-page-tagline br {
        display: none;
    }

    .book-page-preview {
        margin-top: 50px;
        padding: 34px 26px;
        font-size: 18px;
        line-height: 1.8;
    }

    .book-page-preview p {
        text-indent: 1.4em;
    }

    .book-page-preview::before {
        margin-bottom: 34px;
    }
}

/* ==========================================
   ABOUT PAGE
========================================== */

.about-hero {
    display: flex;
    min-height: 60vh;
    align-items: center;
    padding: 110px max(6vw, 28px);
    border-bottom: 1px solid var(--line);
}

.about-hero-content {
    width: min(920px, 100%);
}

.about-hero h1 {
    margin: 24px 0 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(56px, 7vw, 96px);
    font-weight: 500;
    line-height: 1;
    letter-spacing: -3px;
}

.about-story {
    border-top: none;
}

.about-story-content {
    width: min(820px, 100%);
    margin: 0 auto;
}

.about-lead {
    margin: 0 0 36px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.35;
}

.about-story-content p:not(.about-lead) {
    color: var(--muted);
    font-size: 20px;
    line-height: 1.9;
    margin-bottom: 24px;
}

.about-elion,
.about-humour,
.about-future {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 90px;
    border-top: 1px solid var(--line);
}

.about-section-heading h2 {
    margin: 18px 0 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(42px, 5vw, 68px);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -2px;
}

.about-section-text {
    color: var(--muted);
    font-size: 19px;
    line-height: 1.9;
}

.about-section-text p {
    margin-bottom: 24px;
}

.about-idea {
    border-top: 1px solid var(--line);
    text-align: center;
}

.about-idea h2 {
    max-width: 900px;
    margin: 20px auto 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(42px, 5vw, 70px);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -2px;
}

.about-idea p {
    max-width: 760px;
    margin: 30px auto 0;
    color: var(--muted);
    font-size: 20px;
    line-height: 1.9;
}

@media (max-width:850px) {

    .about-hero {
        min-height: auto;
        padding-top: 150px;
        padding-bottom: 120px;
    }

    .about-elion,
    .about-humour,
    .about-future {
        grid-template-columns: 1fr;
        gap: 50px;
    }

}

@media (max-width:560px) {

    .about-hero {
        padding: 110px 22px;
    }

    .about-hero h1 {
        font-size: 48px;
        letter-spacing: -1.5px;
    }

    .about-story-content p:not(.about-lead),
    .about-section-text,
    .about-idea p {
        font-size: 18px;
    }

}

/* =========================
   CONTACT PAGE
========================= */

.contact-hero {
    padding: 9rem 8%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.contact-hero-content {
    max-width: 700px;
}

.contact-hero h1 {
    font-size: clamp(4rem, 8vw, 7rem);
    line-height: 0.95;
    margin-bottom: 2rem;
}

.contact-hero p {
    font-size: 1.3rem;
    max-width: 600px;
    color: #5b5b5b;
    line-height: 1.8;
}

.contact-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
}

.contact-right {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-item span {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #777;
    margin-bottom: 0.8rem;
}

.contact-item a {
    font-size: 1.5rem;
    color: #111;
    text-decoration: none;
    transition: opacity 0.25s ease;
}

.contact-item a:hover {
    opacity: 0.6;
}

.contact-closing {
    text-align: center;
    padding-top: 3rem;
    padding-bottom: 6rem;
}

.contact-closing p {
    font-family: Georgia, serif;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.4;
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 900px) {

    .contact-details {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

}

/* ==========================================
   CONTACT FORM
========================================== */

.contact-form-section {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    align-items: start;
    gap: clamp(60px, 9vw, 130px);
    border-top: 1px solid var(--line);
}

.contact-form-heading h2 {
    margin: 18px 0 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(42px, 5vw, 68px);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -2px;
}

.contact-form-heading>p:last-child {
    max-width: 480px;
    margin: 28px 0 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.8;
}

.contact-form {
    width: 100%;
}

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

.form-field {
    margin-bottom: 28px;
}

.form-field label {
    display: block;
    margin-bottom: 10px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 16px 0;
    border: none;
    border-bottom: 1px solid rgba(25, 24, 22, 0.3);
    border-radius: 0;
    outline: none;
    background-color: transparent;
    color: var(--ink);
    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Arial,
        sans-serif;
    font-size: 17px;
    line-height: 1.6;
    transition: border-color 0.25s ease;
}

.form-field textarea {
    min-height: 170px;
    resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
    border-bottom-color: var(--ink);
}

.contact-submit {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    margin-top: 8px;
    padding: 14px 30px;
    border: 1px solid var(--ink);
    border-radius: 999px;
    background-color: var(--ink);
    color: var(--ivory-light);
    font-family: inherit;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition:
        background-color 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}

.contact-submit:hover {
    background-color: transparent;
    color: var(--ink);
    transform: translateY(-2px);
}

.contact-honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

@media (max-width: 850px) {

    .contact-form-section {
        grid-template-columns: 1fr;
        gap: 55px;
    }

}

@media (max-width: 560px) {

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-form-heading h2 {
        font-size: 42px;
        letter-spacing: -1.5px;
    }

}

/* ==========================================
   BLOG PAGE
========================================== */

.blog-page-hero {
    display: flex;
    min-height: 60vh;
    align-items: center;
    padding: 110px max(6vw, 28px);
    border-bottom: 1px solid var(--line);
}

.blog-page-hero-content {
    width: min(920px, 100%);
}

.blog-page-hero h1 {
    margin: 24px 0 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(56px, 7vw, 96px);
    font-weight: 500;
    line-height: 1;
    letter-spacing: -3px;
}

.blog-page-hero-content>p:last-child {
    max-width: 700px;
    margin: 34px 0 0;
    color: var(--muted);
    font-size: clamp(18px, 2vw, 23px);
    line-height: 1.7;
}

.blog-page-list {
    border-top: none;
}

.blog-page-heading h2 {
    margin: 20px 0 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(48px, 6vw, 78px);
    font-weight: 500;
    line-height: 1;
    letter-spacing: -2px;
}

.blog-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 70px;
}

.blog-page-card {
    display: flex;
    min-height: 390px;
    flex-direction: column;
    padding: 34px;
    border: 1px solid var(--line);
    background-color: var(--card);
    transition:
        transform 0.25s ease,
        background-color 0.25s ease;
}

.blog-page-card:hover {
    background-color: rgba(255, 255, 255, 0.68);
    transform: translateY(-5px);
}

.blog-page-card h3 {
    min-height: 138px;
    margin: 65px 0 18px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 30px;
    font-weight: 500;
    line-height: 1.15;
}

.blog-page-card>p:not(.blog-number) {
    margin: 0;
    color: var(--muted);
}

.blog-page-card .card-link {
    align-self: flex-start;
    margin-top: auto;
    padding-top: 30px;
}

.blog-page-closing {
    border-top: 1px solid var(--line);
    text-align: center;
}

.blog-page-closing h2 {
    max-width: 920px;
    margin: 20px auto 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(42px, 5vw, 70px);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -2px;
}

.blog-page-closing .text-link {
    margin-top: 34px;
}

@media (max-width: 850px) {

    .blog-page-hero {
        min-height: auto;
        padding-top: 150px;
        padding-bottom: 120px;
    }

    .blog-page-grid {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 560px) {

    .blog-page-hero {
        padding: 110px 22px;
    }

    .blog-page-hero h1 {
        font-size: 48px;
        letter-spacing: -1.5px;
    }

    .blog-page-card {
        min-height: 340px;
        padding: 28px;
    }

}

/* ==========================================
   ARTICLE TEMPLATE
========================================== */

.article-page {
    width: min(820px, calc(100% - 12vw));
    margin: 0 auto;
    padding: 110px 0 130px;
}

.article-header {
    padding-bottom: 60px;
    border-bottom: 1px solid var(--line);
}

.article-header h1 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(54px, 6vw, 86px);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -2px;
}

.article-date {
    margin-top: 28px;
    color: var(--muted);
    font-size: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.article-introduction {
    margin: 70px 0;
    padding: clamp(34px, 5vw, 60px);
    border: 1px solid rgba(25, 24, 22, 0.14);
    background: rgba(250, 248, 241, 0.8);
}

.article-introduction h2 {
    margin-top: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 34px;
    font-weight: 500;
}

.article-introduction p {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.9;
}

.article-signature {
    margin-top: 34px;
    color: var(--ink) !important;
    font-family: Georgia, serif;
}

.article-content {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 22px;
    line-height: 2;
}

.article-content p {
    margin-bottom: 28px;
}

.article-lead {
    font-size: 28px;
    line-height: 1.6;
}

.article-content h2 {
    margin: 70px 0 30px;
    font-size: 40px;
    font-weight: 500;
    line-height: 1.2;
}

.article-content blockquote {
    margin: 50px 0;
    padding-left: 28px;
    border-left: 3px solid var(--line);
    color: var(--muted);
    font-style: italic;
}

.article-back {
    margin-top: 90px;
    padding-top: 45px;
    border-top: 1px solid var(--line);
}

@media (max-width:850px) {

    .article-page {
        width: calc(100% - 44px);
        padding: 90px 0;
    }

}

@media (max-width:560px) {

    .article-header h1 {
        font-size: 46px;
        letter-spacing: -1px;
    }

    .article-content {
        font-size: 19px;
        line-height: 1.9;
    }

    .article-content h2 {
        font-size: 32px;
    }

}

/* Kit newsletter form */
.formkit-form {
    margin-left: auto !important;
    margin-right: auto !important;
    background-color: #f4f0e6 !important;
    border: none !important;
}

.author-signature {
    text-align: right;
    font-style: italic;
    margin-top: 30px;
}

/* ==========================================
   ELION READER PAGE
========================================== */

.reader-hero {
    display: flex;
    min-height: 62vh;
    align-items: center;
    padding: 110px max(6vw, 28px);
    border-bottom: 1px solid var(--line);
}

.reader-hero-content {
    width: min(900px, 100%);
}

.reader-hero h1 {
    max-width: 900px;
    margin: 24px 0 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(58px, 7vw, 100px);
    font-weight: 500;
    line-height: 0.98;
    letter-spacing: -4px;
}

.reader-author {
    margin: 28px 0 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 21px;
}

.reader-intro {
    max-width: 650px;
    margin: 26px 0 0;
    color: var(--muted);
    font-size: clamp(18px, 2vw, 22px);
    line-height: 1.7;
}

.reader-actions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.reader-card {
    display: flex;
    min-height: 440px;
    flex-direction: column;
    padding: clamp(32px, 4vw, 52px);
    border: 1px solid var(--line);
    background-color: var(--card);
}

.reader-card h2 {
    margin: 24px 0 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(40px, 5vw, 62px);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -2px;
}

.reader-card>p:not(.section-label) {
    max-width: 520px;
    margin: 30px 0 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.8;
}

.reader-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: auto;
    padding-top: 38px;
}

.reader-button {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border: 1px solid var(--ink);
    border-radius: 999px;
    background-color: var(--ink);
    color: var(--ivory-light);
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition:
        background-color 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}

.reader-button:hover {
    background-color: transparent;
    color: var(--ink);
    transform: translateY(-2px);
}

.reader-coming-soon {
    cursor: default;
}

.reader-closing {
    border-top: 1px solid var(--line);
    text-align: center;
}

.reader-closing h2 {
    max-width: 850px;
    margin: 20px auto 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(42px, 5vw, 70px);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -2px;
}

.reader-closing>p:last-child {
    margin: 28px auto 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 21px;
    font-style: italic;
}

@media (max-width: 850px) {

    .reader-hero {
        min-height: auto;
        padding-top: 150px;
        padding-bottom: 120px;
    }

    .reader-actions {
        grid-template-columns: 1fr;
    }

    .reader-card {
        min-height: 380px;
    }
}

@media (max-width: 560px) {

    .reader-hero {
        padding: 100px 22px;
    }

    .reader-hero h1 {
        font-size: 50px;
        letter-spacing: -1.5px;
    }

    .reader-card {
        min-height: auto;
        padding: 30px 26px;
    }

    .reader-card h2 {
        font-size: 40px;
        letter-spacing: -1.5px;
    }

    .reader-buttons {
        flex-direction: column;
        padding-top: 32px;
    }

    .reader-button {
        width: 100%;
    }
}

.blog-more {
    text-align: center;
    margin-top: 50px;
}

.blog-more .button {
    display: inline-block;
    width: auto;
}