@import url("https://fonts.googleapis.com/css2?family=Bodoni+Moda:wght@700&display=swap");

/* ================================
   BOUND IN INK
   Global Styles
================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;

    display: flex;
    flex-direction: column;

    background: #080a0a;
    color: #f5f5f5;
    font-family: Arial, Helvetica, sans-serif;
}

body > main {
    flex: 1 0 auto;
}

#site-header,
#site-footer {
    width: 100%;
    flex: 0 0 auto;
}


/* ================================
   HEADER
================================ */

.site-header {
    width: 100%;
    background: #080a0a;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-container {
    width: min(1200px, 92%);
    min-height: 82px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* Logo */

.site-logo {
    color: #ffffff;
    text-decoration: none;
    font-family: "Bodoni Moda", Didot, "Times New Roman", serif;
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    white-space: nowrap;
}


/* Desktop Navigation */

.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.main-nav a {
    color: #d8d8d8;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.main-nav a:hover {
    color: #36d6cf;
}


/* Shop Direct Button */

.main-nav .shop-button {
    color: #36d6cf;
    border: 1px solid #36d6cf;
    padding: 10px 18px;
    border-radius: 4px;
}

.main-nav .shop-button:hover {
    background: #36d6cf;
    color: #080a0a;
}


/* ================================
   MOBILE MENU BUTTON
================================ */

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;

    background: transparent;
    border: 0;
    cursor: pointer;

    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: #ffffff;
}


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

@media (max-width: 1000px) {

    .nav-container {
        position: relative;
        min-height: 70px;
    }

    .site-logo {
        font-size: 1.05rem;
    }

    .menu-toggle {
        display: flex;
    }

    .main-nav {
        display: none;

        position: absolute;
        top: 70px;
        left: 0;
        right: 0;

        padding: 24px;

        background: #0d1010;
        border: 1px solid rgba(255, 255, 255, 0.08);

        flex-direction: column;
        align-items: stretch;
        gap: 0;

        z-index: 1000;
    }

    .main-nav.nav-open {
        display: flex;
    }

    .main-nav a {
        padding: 15px 5px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .main-nav .shop-button {
        margin-top: 15px;
        text-align: center;
        border: 1px solid #36d6cf;
    }
}
/* ================================
   HOMEPAGE HERO
================================ */

.hero {
    position: relative;

    min-height: 700px;

    display: flex;
    align-items: flex-end;
    justify-content: center;

    padding: 0 20px 80px;

    background-image: url("../assets/images/home-hero.png");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;

    overflow: hidden;
}


/* Dark fade toward the bottom */

.hero::after {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(
        to bottom,
        transparent 45%,
        rgba(0, 0, 0, 0.15) 60%,
        rgba(0, 0, 0, 0.75) 100%
    );

    pointer-events: none;
}


.hero-content {
    position: relative;
    z-index: 1;

    width: min(850px, 100%);

    text-align: center;
}


/* Small top line */

.hero-eyebrow {
    margin-bottom: 12px;

    color: #c8b59b;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 0.8rem;

    letter-spacing: 0.12em;
}


/* Main hero statement */

.hero h1 {
    color: #e8e2da;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 400;

    line-height: 1.05;
}


.hero h1 span {
    display: block;

    color: #9d7856;

    font-style: italic;
}


/* Genre line */

.hero-genres {
    margin-top: 20px;

    color: #c8b59b;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 0.8rem;

    letter-spacing: 0.08em;
}


/* Hero buttons */

.hero-buttons {
    margin-top: 35px;

    display: flex;
    justify-content: center;
    gap: 16px;
}


.hero-button {
    width: 190px;

    padding: 13px 15px;

    color: #d8c9b6;

    border: 1px solid #8d6848;

    text-decoration: none;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}


.hero-button strong,
.hero-button small {
    display: block;
}


.hero-button strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 0.75rem;
    font-weight: 400;

    letter-spacing: 0.06em;
}


.hero-button small {
    margin-top: 7px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 0.68rem;
}


.hero-button:hover {
    background: rgba(157, 120, 86, 0.15);
    transform: translateY(-2px);
}


/* Center button */

.hero-button-primary {
    background: #c5a47e;
    color: #15110e;
}


.hero-button-primary:hover {
    background: #d3b58f;
    color: #15110e;
}


/* ================================
   HERO - MOBILE
================================ */

@media (max-width: 700px) {

    .hero {
        min-height: 680px;

        padding: 0 20px 45px;

        background-position: center top;
    }

    .hero-content {
        width: 100%;
    }

    .hero-eyebrow,
    .hero-genres {
        font-size: 0.65rem;
        line-height: 1.5;
    }

    .hero h1 {
        font-size: clamp(2rem, 10vw, 3rem);
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;

        gap: 10px;

        margin-top: 25px;
    }

    .hero-button {
        width: min(280px, 100%);
    }
}

@media (max-width: 650px) {

    .hero h1 {
        position: relative;
        isolation: isolate;
    }

    .hero h1::before {
        content: "";
        position: absolute;
        z-index: -1;
        inset: -28px -18px;

        background: radial-gradient(
            ellipse at center,
            rgba(0, 0, 0, 0.52) 0%,
            rgba(0, 0, 0, 0.38) 42%,
            rgba(0, 0, 0, 0.14) 68%,
            transparent 86%
        );

        pointer-events: none;
    }
}
/* ================================
   FEATURED BOOKS
================================ */

.featured-books {
    position: relative;
    padding: 85px 20px 95px;

    background:
        radial-gradient(
            ellipse at top,
            rgba(120, 120, 120, 0.12) 0%,
            rgba(30, 30, 30, 0.08) 35%,
            transparent 65%
        ),
        #080a0a;

    overflow: hidden;
}


/* Section Heading */

.section-heading {
    max-width: 800px;
    margin: 0 auto 55px;

    text-align: center;
}

.section-heading p {
    margin-bottom: 8px;

    color: #9d7856;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 0.72rem;

    letter-spacing: 0.22em;
}

.section-heading h2 {
    color: #e8e2da;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 400;
}

.section-heading span {
    display: block;

    margin-top: 12px;

    color: #75685d;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 0.6rem;

    letter-spacing: 0.16em;
}


/* Book Grid */

.featured-book-grid {
    width: min(1100px, 100%);
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 34px;
}


/* Individual Book */

.featured-book {
    display: block;

    color: inherit;
    text-align: center;
    text-decoration: none;
}

.featured-book img {
    display: block;

    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;

    border: 1px solid rgba(157, 120, 86, 0.25);

    box-shadow:
        0 18px 35px rgba(0, 0, 0, 0.45);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.featured-book:hover img {
    transform: translateY(-8px);

    box-shadow:
        0 24px 45px rgba(0, 0, 0, 0.65);
}

.featured-book h3 {
    margin-top: 20px;

    color: #e8e2da;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.05rem;
    font-weight: 400;
}

.featured-book p {
    margin-top: 7px;

    color: #9d7856;

    font-size: 0.72rem;

    letter-spacing: 0.08em;
    text-transform: uppercase;
}


/* View All */

.view-all-books {
    margin-top: 55px;

    text-align: center;
}

.view-all-books a {
    display: inline-block;

    padding: 12px 22px;

    color: #c8b59b;

    border-bottom: 1px solid #8d6848;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 0.78rem;

    letter-spacing: 0.14em;

    text-decoration: none;

    transition:
        color 0.2s ease,
        border-color 0.2s ease;
}

.view-all-books a:hover {
    color: #ffffff;
    border-color: #c5a47e;
}


/* ================================
   FEATURED BOOKS - TABLET
================================ */

@media (max-width: 900px) {

    .featured-book-grid {
        max-width: 650px;

        grid-template-columns: repeat(2, 1fr);
        gap: 45px 30px;
    }
}


/* ================================
   FEATURED BOOKS - MOBILE
================================ */

@media (max-width: 520px) {

    .featured-books {
        padding: 65px 18px 75px;
    }

    .section-heading {
        margin-bottom: 40px;
    }

    .featured-book-grid {
        max-width: 360px;

        grid-template-columns: repeat(2, 1fr);
        gap: 35px 16px;
    }

    .featured-book h3 {
        margin-top: 13px;

        font-size: 0.88rem;
        line-height: 1.3;
    }

    .featured-book p {
        font-size: 0.6rem;
    }

    .view-all-books {
        margin-top: 45px;
    }
}
/* ================================
   HOME - ABOUT THE AUTHOR
================================ */

.home-about {
    position: relative;

    padding: 100px 20px;

    background: #eee8e1;
    color: #201b18;

    overflow: hidden;
}


.home-about-container {
    width: min(1050px, 100%);
    margin: 0 auto;

    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    align-items: center;

    gap: 90px;
}


/* ================================
   AUTHOR IMAGE
================================ */

.home-about-image {
    position: relative;

    display: flex;
    justify-content: center;
    align-items: center;
}


.author-image-frame {
    position: relative;
    z-index: 2;

    width: min(330px, 100%);
    aspect-ratio: 1;

    border-radius: 50%;

    overflow: hidden;

    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.18);
}


.author-image-frame img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    filter: grayscale(100%);
}


/* Rough ink-style circle behind photo */

.author-ink-accent {
    position: absolute;
    z-index: 1;

    width: 360px;
    height: 360px;

    border: 7px solid #111;
    border-radius: 48% 52% 46% 54%;

    opacity: 0.9;

    transform: rotate(-8deg);
}


.author-ink-accent::before,
.author-ink-accent::after {
    content: "";

    position: absolute;

    background: #111;

    border-radius: 50%;
}


.author-ink-accent::before {
    width: 18px;
    height: 18px;

    left: -25px;
    top: 90px;
}


.author-ink-accent::after {
    width: 9px;
    height: 9px;

    right: -20px;
    bottom: 80px;
}


/* ================================
   ABOUT CONTENT
================================ */

.home-about-content {
    position: relative;
    z-index: 2;
}


.about-eyebrow {
    margin-bottom: 10px;

    color: #9d7856;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 0.7rem;

    letter-spacing: 0.2em;
}


.home-about-content h2 {
    margin-bottom: 25px;

    color: #211b18;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
}


.home-about-content p {
    max-width: 600px;

    margin-bottom: 17px;

    color: #4b433e;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 0.95rem;

    line-height: 1.8;
}


.about-button {
    display: inline-block;

    margin-top: 14px;
    padding: 12px 25px;

    background: #111;
    color: #eee8e1;

    border: 1px solid #111;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 0.72rem;

    letter-spacing: 0.14em;

    text-decoration: none;

    transition:
        background 0.2s ease,
        color 0.2s ease;
}


.about-button:hover {
    background: transparent;
    color: #111;
}


/* Decorative ink feather-ish slash */

.home-about::after {
    content: "";

    position: absolute;

    right: -80px;
    bottom: -120px;

    width: 280px;
    height: 400px;

    border-left: 2px solid rgba(0, 0, 0, 0.15);

    transform: rotate(30deg);
}


/* ================================
   ABOUT - MOBILE
================================ */

@media (max-width: 750px) {

    .home-about {
        padding: 70px 22px;
    }

    .home-about::after {
        display: none;
    }

    .home-about-container {
        grid-template-columns: 1fr;

        gap: 50px;

        text-align: center;
    }

    .author-image-frame {
        width: min(250px, 75vw);
    }

    .author-ink-accent {
        width: min(275px, 82vw);
        height: min(275px, 82vw);
    }

    .home-about-content p {
        margin-left: auto;
        margin-right: auto;

        font-size: 0.9rem;
    }
}
/* ================================
   HOW WOULD YOU LIKE TO READ?
================================ */

.reading-options {
    padding: 85px 20px 100px;

    background: #eee8e1;
    color: #211b18;
}


/* Heading */

.reading-options-heading {
    width: min(700px, 100%);
    margin: 0 auto 50px;

    text-align: center;
}


.moon-divider {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    margin-bottom: 15px;

    color: #9d7856;

    font-size: 0.85rem;
}


.reading-options-heading h2 {
    color: #211b18;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 400;

    text-transform: uppercase;
}


.reading-options-heading p {
    max-width: 550px;

    margin: 15px auto 0;

    color: #5d534c;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 0.85rem;

    line-height: 1.6;
}


/* ================================
   READING CARDS
================================ */

.reading-option-grid {
    width: min(1150px, 100%);
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 18px;
}


.reading-card {
    position: relative;

    min-height: 390px;

    padding: 38px 22px 28px;

    display: flex;
    flex-direction: column;
    align-items: center;

    background:
        linear-gradient(
            180deg,
            #161218 0%,
            #211726 55%,
            #151116 100%
        );

    border: 1px solid rgba(157, 120, 86, 0.45);
    border-radius: 8px;

    color: #eee8e1;

    text-align: center;
    text-decoration: none;

    box-shadow:
        0 12px 28px rgba(0, 0, 0, 0.18);

    overflow: hidden;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}


.reading-card::before {
    content: "";

    position: absolute;

    width: 170px;
    height: 170px;

    top: -90px;
    left: 50%;

    transform: translateX(-50%);

    background: rgba(157, 120, 86, 0.12);

    border-radius: 50%;

    filter: blur(15px);
}


.reading-card:hover {
    transform: translateY(-7px);

    border-color: #9d7856;

    box-shadow:
        0 18px 38px rgba(0, 0, 0, 0.28);
}


/* Card Icon */

.reading-card-icon {
    position: relative;
    z-index: 2;

    width: 65px;
    height: 65px;

    margin-bottom: 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #9d7856;
    border-radius: 50%;

    color: #c5a47e;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.6rem;
}


/* Card Text */

.reading-card-eyebrow {
    color: #c5a47e;

    font-size: 0.65rem;

    letter-spacing: 0.16em;
}


.reading-card h3 {
    margin-top: 5px;

    color: #f1e9df;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.65rem;
    font-weight: 400;
}


.reading-card-description {
    margin-top: 20px;

    color: #bdb2aa;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 0.78rem;

    line-height: 1.6;
}


.reading-card-link {
    margin-top: auto;
    padding-top: 30px;

    color: #c5a47e;

    font-size: 0.63rem;

    letter-spacing: 0.1em;
}


/* Small variation between cards */

.reading-card-app {
    background:
        linear-gradient(180deg, #111b1c, #162324, #101718);
}


.reading-card-bonus {
    background:
        linear-gradient(180deg, #211912, #302318, #18120e);
}


.reading-card-kindle {
    background:
        linear-gradient(180deg, #161616, #222222, #101010);
}


.reading-card-reviews {
    background:
        linear-gradient(180deg, #1b1420, #28192f, #151018);
}


/* ================================
   READING OPTIONS - MOBILE
================================ */

@media (max-width: 650px) {

    .reading-options {
        padding: 48px clamp(10px, 3.75vw, 18px) 56px;
    }

    .reading-options-heading {
        margin-bottom: 26px;
    }

    .reading-options-heading h2 {
        font-size: clamp(1.45rem, 6.4vw, 1.85rem);
        line-height: 1.08;
    }

    .reading-options-heading p {
        margin-top: 11px;

        font-size: 0.78rem;
        line-height: 1.5;
    }

    .reading-option-grid {
        width: 100%;
        max-width: 620px;

        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: clamp(8px, 2.5vw, 14px);
    }

    .reading-card {
        min-width: 0;
        min-height: 0;

        padding: clamp(14px, 4vw, 22px) clamp(8px, 2.8vw, 16px)
            clamp(15px, 4vw, 22px);
    }

    .reading-card-icon {
        width: clamp(38px, 11vw, 48px);
        height: clamp(38px, 11vw, 48px);

        margin-bottom: clamp(10px, 3vw, 14px);

        font-size: clamp(1.05rem, 4.5vw, 1.3rem);
    }

    .reading-card-eyebrow {
        font-size: clamp(0.47rem, 1.8vw, 0.58rem);
        line-height: 1.3;
        letter-spacing: 0.1em;
    }

    .reading-card h3 {
        margin-top: 4px;

        font-size: clamp(0.98rem, 4.4vw, 1.35rem);
        line-height: 1.12;
    }

    .reading-card-description {
        margin-top: clamp(9px, 2.6vw, 13px);

        font-size: clamp(0.62rem, 2.3vw, 0.72rem);
        line-height: 1.42;
    }

    .reading-card-link {
        margin-top: clamp(11px, 3vw, 16px);
        padding-top: 0;

        font-size: clamp(0.48rem, 1.8vw, 0.58rem);
        line-height: 1.3;
        letter-spacing: 0.07em;
    }
}
/* ================================
   PACK LIBRARY
================================ */

.pack-library {
    background: #071011;
    color: #eee8e1;

    border-top: 1px solid rgba(197, 164, 126, 0.25);
}


/* Pack Library artwork */

.pack-library-hero {
    width: 100%;
    max-height: 520px;

    overflow: hidden;

    background: #050909;
}


.pack-library-hero img {
    display: block;

    width: 100%;
    height: 100%;

    max-height: 520px;

    object-fit: cover;
    object-position: center;

    opacity: 0.95;
}


/* ================================
   PACK LIBRARY INTRO
================================ */

.pack-library-intro {
    width: min(1050px, 90%);
    margin: 0 auto;

    padding: 80px 0 90px;

    display: grid;
    grid-template-columns: 1.3fr 0.7fr;

    align-items: center;

    gap: 90px;
}


.pack-eyebrow {
    margin-bottom: 10px;

    color: #c5a47e;

    font-size: 0.68rem;

    letter-spacing: 0.2em;
}


.pack-library-copy h2 {
    max-width: 600px;

    margin-bottom: 25px;

    color: #eee8e1;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;

    line-height: 1.1;
}


.pack-library-copy p:not(.pack-eyebrow) {
    max-width: 620px;

    margin-bottom: 15px;

    color: #b8b4ae;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 0.9rem;

    line-height: 1.75;
}


/* ================================
   PACK LIBRARY BUTTONS
================================ */

.pack-library-actions {
    display: flex;
    flex-direction: column;

    gap: 16px;
}


.pack-button {
    display: block;

    padding: 17px 20px;

    border: 1px solid #8d6848;

    color: #d7c3a7;

    text-align: center;
    text-decoration: none;

    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}


.pack-button strong,
.pack-button span {
    display: block;
}


.pack-button strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 0.76rem;
    font-weight: 400;

    letter-spacing: 0.08em;
}


.pack-button span {
    margin-top: 6px;

    color: #99918a;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 0.68rem;
}


.pack-button:hover {
    transform: translateY(-2px);

    border-color: #c5a47e;

    background: rgba(197, 164, 126, 0.08);
}


/* Main Pack Library CTA */

.pack-button-primary {
    background: #c5a47e;
    color: #111;
}


.pack-button-primary span {
    color: #45382c;
}


.pack-button-primary:hover {
    background: #d3b58f;
    color: #111;
}


/* ================================
   PACK LIBRARY - MOBILE
================================ */

@media (max-width: 750px) {

    .pack-library-hero {
        max-height: 350px;
    }

    .pack-library-hero img {
        max-height: 350px;

        object-position: center;
    }

    .pack-library-intro {
        width: min(90%, 550px);

        padding: 55px 0 65px;

        grid-template-columns: 1fr;

        gap: 35px;

        text-align: center;
    }

    .pack-library-copy h2,
    .pack-library-copy p {
        margin-left: auto;
        margin-right: auto;
    }

    .pack-library-actions {
        width: min(320px, 100%);

        margin: 0 auto;
    }
}
/* ================================
   PACK LIBRARY FEATURES
================================ */

.pack-features {
    padding: 25px 20px 100px;

    background: #071011;
}


.pack-features-heading {
    margin-bottom: 45px;

    text-align: center;
}


.pack-features-heading p {
    margin-bottom: 8px;

    color: #c5a47e;

    font-size: 0.65rem;

    letter-spacing: 0.2em;
}


.pack-features-heading h2 {
    color: #eee8e1;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
}


/* Feature Grid */

.pack-feature-grid {
    width: min(1000px, 100%);
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 28px;
}


/* Feature Card */

.pack-feature-card {
    background: #0c1516;

    border: 1px solid rgba(197, 164, 126, 0.25);

    overflow: hidden;

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.35);
}


.pack-feature-image {
    overflow: hidden;

    background: #050909;
}


.pack-feature-image img {
    display: block;

    width: 100%;
    height: auto;

    transition: transform 0.35s ease;
}


.pack-feature-card:hover .pack-feature-image img {
    transform: scale(1.025);
}


.pack-feature-content {
    padding: 25px 22px 28px;

    text-align: center;
}


.pack-feature-content h3 {
    color: #d6b88d;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.25rem;
    font-weight: 400;
}


.pack-feature-content p {
    margin-top: 12px;

    color: #aaa49e;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 0.78rem;

    line-height: 1.6;
}


/* ================================
   PACK LIBRARY CTA
================================ */

.pack-trial {
    padding: 80px 20px 90px;

    background:
        radial-gradient(
            circle at center,
            rgba(20, 105, 108, 0.17),
            transparent 55%
        ),
        #050b0c;

    border-top: 1px solid rgba(197, 164, 126, 0.2);

    text-align: center;
}


.pack-trial > p {
    color: #c5a47e;

    font-size: 0.65rem;

    letter-spacing: 0.2em;
}


.pack-trial h2 {
    margin-top: 9px;

    color: #eee8e1;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
}


.pack-trial > span {
    display: block;

    margin-top: 12px;

    color: #aaa49e;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 0.85rem;
}


.pack-trial-buttons {
    width: min(600px, 100%);

    margin: 35px auto 0;

    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 15px;
}


/* ================================
   PACK LIBRARY CTA - MOBILE
================================ */

@media (max-width: 750px) {

    .pack-trial {
        padding: 65px 20px 75px;
    }

    .pack-trial-buttons {
        width: min(320px, 100%);

        grid-template-columns: 1fr;
    }
}


/* ================================
   PACK FEATURES - MOBILE
================================ */

@media (max-width: 650px) {

    .pack-features {
        padding: 15px 12px 70px;
    }

    .pack-feature-grid {
        width: 100%;
        max-width: 626px;

        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: clamp(5px, 2vw, 10px);
    }

    .pack-feature-card {
        min-width: 0;
    }

    .pack-feature-image {
        aspect-ratio: 436 / 774;
    }

    .pack-feature-image img {
        width: 100%;
        height: 100%;

        object-fit: contain;
    }

    .pack-feature-content {
        padding: 8px 3px 9px;
    }

    .pack-feature-content h3 {
        font-size: clamp(0.58rem, 2.4vw, 0.82rem);
        line-height: 1.2;
    }

    .pack-feature-content p {
        display: none;
    }
}

/* ================================
   SITE FOOTER
================================ */

.site-footer {
    width: 100%;
    padding: 75px 20px 25px;

    background: #050707;
    color: #aaa49e;

    border-top: 1px solid rgba(197, 164, 126, 0.25);
}


.footer-container {
    width: min(1150px, 100%);
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1.1fr 1.9fr;

    gap: 90px;
}


/* ================================
   FOOTER BRAND
================================ */

.footer-brand {
    max-width: 340px;
}


.footer-logo {
    display: inline-block;

    margin-bottom: 20px;

    color: #eee8e1;

    font-size: 1.2rem;
    font-weight: 700;

    letter-spacing: 0.16em;

    text-decoration: none;
}


.footer-brand p {
    color: #827b75;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 0.8rem;

    line-height: 1.7;
}


.footer-brand .footer-author {
    margin-top: 18px;

    color: #c5a47e;

    font-size: 0.72rem;

    letter-spacing: 0.12em;
    text-transform: uppercase;
}


/* ================================
   FOOTER LINKS
================================ */

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 45px;
}


.footer-column {
    display: flex;
    flex-direction: column;

    gap: 11px;
}


.footer-column h3 {
    margin-bottom: 7px;

    color: #c5a47e;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 0.75rem;
    font-weight: 400;

    letter-spacing: 0.16em;
    text-transform: uppercase;
}


.footer-column a {
    width: fit-content;

    color: #99928c;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 0.78rem;

    text-decoration: none;

    transition: color 0.2s ease;
}


.footer-column a:hover,
.footer-column a:focus-visible {
    color: #eee8e1;
}


/* ================================
   FOOTER BOTTOM
================================ */

.footer-bottom {
    width: min(1150px, 100%);

    margin: 55px auto 0;
    padding-top: 22px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    border-top: 1px solid rgba(255, 255, 255, 0.08);
}


.footer-bottom p,
.footer-legal a {
    color: #625d59;

    font-size: 0.65rem;

    text-decoration: none;
}


.footer-legal {
    display: flex;

    gap: 20px;
}


.footer-legal a:hover,
.footer-legal a:focus-visible {
    color: #c5a47e;
}

.footer-logo:focus-visible,
.footer-column a:focus-visible,
.footer-legal a:focus-visible {
    outline: 2px solid #c5a47e;
    outline-offset: 4px;
}

/* ================================
   FOOTER - TABLET
================================ */

@media (max-width: 900px) {

    .footer-container {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .footer-brand {
        max-width: 520px;
    }
}


/* ================================
   FOOTER - MOBILE
================================ */

@media (max-width: 650px) {

    .site-footer {
        padding: 42px 16px 20px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-brand {
        max-width: 450px;
    }

    .footer-logo {
        margin-bottom: 12px;
    }

    .footer-brand p {
        line-height: 1.55;
    }

    .footer-brand .footer-author {
        display: none;
    }

    .footer-links {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 12px;
    }

    .footer-column {
        min-width: 0;
        gap: 7px;
    }

    .footer-column h3 {
        margin-bottom: 4px;
        font-size: 0.7rem;
        letter-spacing: 0.12em;
    }

    .footer-column a {
        max-width: 100%;
        min-height: 36px;
        padding: 7px 0;

        display: inline-flex;
        align-items: center;

        font-size: 0.72rem;
        line-height: 1.45;
        overflow-wrap: normal;
    }

    .footer-bottom {
        margin-top: 28px;
        padding-top: 18px;
        align-items: flex-start;
        flex-wrap: wrap;
        gap: 10px 20px;
    }
}

@media (max-width: 375px) {

    .footer-links {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .footer-column {
        gap: 2px;
    }

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

/* ==================================================
   BOOKS PAGE
================================================== */
/* ==================================================
   BOOKS PAGE - DIRECT BOOKS
================================================== */


/* --------------------------------------------------
   DIRECT BOOKS SECTION
-------------------------------------------------- */

.direct-books-section {
    padding: 95px 20px 110px;

    background: #eee8e1;
    color: #171515;
}


/* --------------------------------------------------
   DIRECT BOOKS HEADING
-------------------------------------------------- */

.direct-books-heading {
    width: min(1150px, 100%);
    margin: 0 auto 70px;

    text-align: center;
}


.books-eyebrow {
    margin-bottom: 12px;

    color: #9d7856;

    font-size: 0.67rem;
    letter-spacing: 0.2em;
}


.direct-books-heading h1 {
    color: #171515;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.8rem, 6vw, 5.2rem);
    font-weight: 400;

    line-height: 0.95;

    text-transform: uppercase;
}


.books-heading-tagline {
    margin-top: 20px;

    color: #5f554e;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 0.9rem;
}


/* --------------------------------------------------
   DIRECT BOOK LIST
-------------------------------------------------- */

.direct-books-list {
    width: min(1050px, 100%);
    margin: 0 auto;

    display: flex;
    flex-direction: column;

    gap: 90px;
}


.direct-book {
    display: grid;
    grid-template-columns: 280px 1fr;

    align-items: center;

    gap: 75px;
}


/* Alternate second book */

.direct-book-reverse {
    grid-template-columns: 1fr 280px;
}


.direct-book-reverse .direct-book-visual {
    grid-column: 2;
    grid-row: 1;
}


.direct-book-reverse .direct-book-info {
    grid-column: 1;
    grid-row: 1;
}


/* --------------------------------------------------
   BOOK COVER
-------------------------------------------------- */

.direct-book-visual {
    width: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;
}


.direct-book-cover {
    width: 100%;

    position: relative;
}


.direct-book-cover::after {
    content: "";

    position: absolute;
    z-index: 0;

    left: 15px;
    right: -15px;
    top: 15px;
    bottom: -15px;

    border: 1px solid rgba(157, 120, 86, 0.5);
}


.direct-book-cover img {
    position: relative;
    z-index: 1;

    display: block;

    width: 100%;
    height: auto;

    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.22);
}


.book-preview-link {
    min-height: 44px;
    margin-top: 17px;
    padding: 10px 8px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: #795b42;

    font-size: 0.64rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    line-height: 1.4;

    text-align: center;
    text-decoration: none;

    transition:
        color 0.2s ease,
        transform 0.2s ease;
}


.book-preview-link:hover {
    color: #211b18;
    transform: translateY(-1px);
}


.book-preview-link:focus-visible {
    outline: 2px solid #9d7856;
    outline-offset: 2px;
}


/* --------------------------------------------------
   BOOK INFORMATION
-------------------------------------------------- */

.book-format {
    margin-bottom: 9px;

    color: #9d7856;

    font-size: 0.65rem;
    letter-spacing: 0.18em;
}


.direct-book-info h2 {
    color: #211b18;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 400;

    line-height: 1.05;
}


.book-hook {
    margin-top: 17px;

    color: #493d35;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 1rem;
    font-style: italic;

    line-height: 1.6;
}


.book-description {
    max-width: 620px;
    margin-top: 18px;

    color: #675d56;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 0.86rem;

    line-height: 1.75;
}


/* --------------------------------------------------
   BOOK TAGS
-------------------------------------------------- */

.book-tags {
    margin-top: 24px;

    display: flex;
    flex-wrap: wrap;

    gap: 8px;
}


.book-tags span {
    padding: 7px 11px;

    border: 1px solid rgba(157, 120, 86, 0.45);

    color: #695547;

    font-size: 0.61rem;
    letter-spacing: 0.06em;

    text-transform: uppercase;
}


/* --------------------------------------------------
   BOOK BUTTONS
-------------------------------------------------- */

.direct-book-buttons {
    margin-top: 30px;

    display: flex;
    flex-wrap: wrap;

    gap: 10px;
}


.book-button {
    min-width: 115px;

    padding: 12px 17px;

    border: 1px solid #211b18;

    color: #211b18;

    font-size: 0.64rem;
    letter-spacing: 0.08em;

    text-align: center;
    text-decoration: none;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}


.book-button:hover {
    transform: translateY(-2px);

    background: #211b18;
    color: #eee8e1;
}


.book-button-primary {
    background: #211b18;
    color: #eee8e1;
}


.book-button-primary:hover {
    background: #9d7856;
    border-color: #9d7856;

    color: #ffffff;
}


/* --------------------------------------------------
   BOOKS PAGE - TABLET
-------------------------------------------------- */

@media (max-width: 800px) {

    .direct-book,
    .direct-book-reverse {
        grid-template-columns: 220px 1fr;

        gap: 45px;
    }


    .direct-book-reverse .direct-book-visual {
        grid-column: 1;
    }


    .direct-book-reverse .direct-book-info {
        grid-column: 2;
    }
}


/* --------------------------------------------------
   BOOKS PAGE - MOBILE
-------------------------------------------------- */

@media (max-width: 600px) {

    .direct-books-section {
        padding: 70px 20px 80px;
    }


    .direct-books-heading {
        margin-bottom: 55px;
    }


    .direct-books-heading h1 {
        font-size: clamp(2.4rem, 13vw, 3.5rem);
    }


    .direct-books-list {
        gap: 75px;
    }


    .direct-book,
    .direct-book-reverse {
        display: flex;
        flex-direction: column;

        gap: 35px;
    }


    .direct-book-visual {
        width: min(230px, 75%);
        align-self: center;
    }


    .direct-book-info {
        text-align: center;
    }


    .book-description {
        margin-left: auto;
        margin-right: auto;
    }


    .book-tags,
    .direct-book-buttons {
        justify-content: center;
    }


    .direct-book-buttons {
        width: min(320px, 100%);

        margin-left: auto;
        margin-right: auto;
    }


    .book-button {
        flex: 1 1 100px;
    }
}

/* ==================================================
   BOOKS PAGE - KINDLE HELP
================================================== */

.kindle-help-section {
    position: relative;

    padding: 95px 20px;

    background:
        radial-gradient(
            circle at 78% 45%,
            rgba(54, 214, 207, 0.13),
            transparent 28%
        ),
        #071011;

    color: #eee8e1;

    overflow: hidden;
}


.kindle-help-container {
    width: min(1050px, 100%);
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1.2fr 0.8fr;

    align-items: center;

    gap: 90px;
}


/* --------------------------------------------------
   KINDLE HELP CONTENT
-------------------------------------------------- */

.kindle-help-eyebrow {
    margin-bottom: 10px;

    color: #36d6cf;

    font-size: 0.67rem;

    letter-spacing: 0.2em;
}


.kindle-help-content h2 {
    color: #eee8e1;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.6rem, 6vw, 4.8rem);
    font-weight: 400;

    line-height: 1;
}


.kindle-help-lead {
    margin-top: 22px;

    color: #d7c3a7 !important;

    font-size: 1rem !important;
    font-style: italic;
}


.kindle-help-content > p:not(.kindle-help-eyebrow) {
    max-width: 600px;

    margin-bottom: 16px;

    color: #aaa49e;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 0.87rem;

    line-height: 1.75;
}


.kindle-help-button {
    display: inline-block;

    margin-top: 18px;
    padding: 14px 22px;

    border: 1px solid #36d6cf;

    color: #36d6cf;

    font-size: 0.67rem;

    letter-spacing: 0.1em;

    text-decoration: none;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}


.kindle-help-button:hover {
    transform: translateY(-2px);

    background: #36d6cf;
    color: #071011;
}


/* --------------------------------------------------
   KINDLE VISUAL
-------------------------------------------------- */

.kindle-help-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
}


.kindle-device {
    position: relative;

    width: min(240px, 80vw);
    aspect-ratio: 0.68;

    padding: 12px;

    background: #101414;

    border: 2px solid #292e2e;
    border-radius: 17px;

    box-shadow:
        0 0 50px rgba(54, 214, 207, 0.12),
        0 25px 45px rgba(0, 0, 0, 0.45);
}


.kindle-device-screen {
    width: 100%;
    height: 100%;

    padding: 35px 20px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    background:
        radial-gradient(
            circle at center,
            rgba(54, 214, 207, 0.12),
            transparent 55%
        ),
        #e7e1d8;

    border-radius: 8px;

    color: #171515;

    text-align: center;
}


.kindle-moon {
    margin-bottom: 22px;

    color: #177e7a;

    font-size: 2.4rem;
}


.kindle-device-screen p {
    margin-bottom: 10px;

    color: #177e7a;

    font-size: 0.55rem;

    letter-spacing: 0.2em;
}


.kindle-device-screen strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.65rem;
    font-weight: 400;

    line-height: 1.1;
}


.kindle-device-screen small {
    margin-top: 25px;

    color: #776d65;

    font-size: 0.55rem;

    letter-spacing: 0.15em;
}


.kindle-visual-caption {
    margin-top: 17px;

    color: #696f6e;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 0.7rem;
}


/* --------------------------------------------------
   KINDLE HELP - MOBILE
-------------------------------------------------- */

@media (max-width: 650px) {

    .kindle-help-section {
        padding: 36px clamp(14px, 5vw, 22px);
    }


    .kindle-help-container {
        grid-template-columns: 1fr;

        gap: 20px;

        text-align: center;
    }


    .kindle-help-content > p {
        margin-left: auto;
        margin-right: auto;
    }


    .kindle-help-eyebrow {
        margin-bottom: 7px;
    }


    .kindle-help-content h2 {
        font-size: clamp(2rem, 10vw, 2.75rem);
        line-height: 1.05;
    }


    .kindle-help-lead {
        margin-top: 12px;
    }


    .kindle-help-content > p:not(.kindle-help-eyebrow) {
        margin-bottom: 10px;

        font-size: 0.82rem;
        line-height: 1.55;
    }


    .kindle-help-content > p:nth-of-type(4) {
        display: none;
    }


    .kindle-help-button {
        min-height: 40px;
        margin-top: 7px;
        padding: 0 16px;

        display: inline-flex;
        align-items: center;
        justify-content: center;

        line-height: 1.2;
    }


    .kindle-device {
        width: clamp(110px, 31vw, 150px);
        padding: 7px;

        border-width: 1px;
        border-radius: 11px;
    }


    .kindle-device-screen {
        padding: 12px 6px;

        border-radius: 5px;
    }


    .kindle-moon {
        margin-bottom: 8px;

        font-size: 1.35rem;
    }


    .kindle-device-screen p {
        margin-bottom: 5px;

        font-size: 0.38rem;
    }


    .kindle-device-screen strong {
        font-size: 0.9rem;
    }


    .kindle-device-screen small {
        margin-top: 10px;

        font-size: 0.4rem;
    }


    .kindle-visual-caption {
        display: none;
    }
}
/* ==================================================
   BOOKS PAGE - KINDLE UNLIMITED SERIES
================================================== */

.ku-series-section {
    padding: 100px 20px 115px;

    background: #e7e9df;
    color: #1b1a18;
}


/* --------------------------------------------------
   KU SERIES HEADING
-------------------------------------------------- */

.ku-series-heading {
    width: min(780px, 100%);
    margin: 0 auto 70px;

    text-align: center;
}


.ku-eyebrow {
    margin-bottom: 13px;

    color: #8d6847;

    font-size: 0.67rem;
    letter-spacing: 0.2em;
}


.ku-series-heading h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 400;

    line-height: 1.05;
}


.ku-series-subtitle {
    margin-top: 18px;

    color: #554c45;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 1rem;
    font-style: italic;
}


.ku-series-description {
    max-width: 650px;

    margin: 20px auto 0;

    color: #69625d;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 0.86rem;

    line-height: 1.75;
}


/* --------------------------------------------------
   KU BOOK GRID
-------------------------------------------------- */

.ku-book-grid {
    scroll-margin-top: 24px;

    width: min(1050px, 100%);
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 35px;
}


/* --------------------------------------------------
   KU BOOK CARD
-------------------------------------------------- */

.ku-book-card {
    position: relative;

    padding: 38px 30px 32px;

    background: rgba(255, 255, 255, 0.4);

    border: 1px solid rgba(108, 94, 76, 0.25);

    text-align: center;
}


.ku-book-number {
    margin-bottom: 25px;

    color: #8d6847;

    font-size: 0.62rem;
    letter-spacing: 0.2em;
}


/* --------------------------------------------------
   KU BOOK COVER
-------------------------------------------------- */

.ku-book-cover {
    width: min(190px, 80%);
    margin: 0 auto 30px;

    position: relative;
}


.ku-book-cover::after {
    content: "";

    position: absolute;
    z-index: 0;

    left: 10px;
    right: -10px;
    top: 10px;
    bottom: -10px;

    border: 1px solid rgba(141, 104, 71, 0.45);
}


.ku-book-cover img {
    position: relative;
    z-index: 1;

    display: block;

    width: 100%;
    height: auto;

    box-shadow:
        0 15px 30px rgba(0, 0, 0, 0.18);
}


/* --------------------------------------------------
   KU BOOK CONTENT
-------------------------------------------------- */

.ku-book-content h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.5rem;
    font-weight: 400;

    line-height: 1.15;
}


.ku-book-content p {
    min-height: 90px;

    margin-top: 15px;

    color: #68615c;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 0.8rem;

    line-height: 1.7;
}


/* --------------------------------------------------
   KU AMAZON BUTTON
-------------------------------------------------- */

.ku-book-button {
    display: inline-block;

    margin-top: 22px;
    padding: 12px 18px;

    border: 1px solid #1b1a18;

    color: #1b1a18;

    font-size: 0.62rem;
    letter-spacing: 0.1em;

    text-decoration: none;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}


.ku-book-button:hover {
    transform: translateY(-2px);

    background: #1b1a18;
    color: #f1ece6;
}


.ku-book-details-trigger,
.ku-book-details-hint {
    display: none;
}


/* --------------------------------------------------
   KU SERIES - TABLET
-------------------------------------------------- */

@media (max-width: 850px) {

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


    .ku-book-card:last-child {
        grid-column: 1 / -1;

        width: min(500px, 100%);
        margin: 0 auto;
    }
}


/* --------------------------------------------------
   KU SERIES - MOBILE
-------------------------------------------------- */

@media (max-width: 650px) {

    .ku-series-section {
        padding-top: 75px;
    }


    .ku-series-heading {
        margin-bottom: 38px;
    }


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

        align-items: start;

        gap: clamp(5px, 2vw, 12px);
    }


    .ku-book-card:last-child {
        grid-column: auto;

        width: auto;
        margin: 0;
    }


    .ku-book-card {
        min-width: 0;
        padding: 10px 1px 12px;

        background: transparent;

        border: 0;

        cursor: pointer;
    }


    .ku-book-number {
        min-height: 1.2em;
        margin-bottom: 8px;

        font-size: clamp(0.43rem, 1.8vw, 0.56rem);
        letter-spacing: 0.08em;
    }


    .ku-book-cover {
        width: clamp(75px, 25vw, 120px);
        max-width: 100%;
        margin-bottom: 11px;
    }


    .ku-book-cover::after {
        top: 4px;
        right: -4px;
        bottom: -4px;
        left: 4px;
    }


    .ku-book-cover img {
        height: auto;

        object-fit: contain;
    }


    .ku-book-content h3 {
        font-size: clamp(0.72rem, 2.8vw, 1rem);
        line-height: 1.2;
    }


    .ku-book-content p,
    .ku-book-content .ku-book-button {
        display: none;
    }


    .ku-book-details-trigger {
        position: absolute;
        z-index: 3;

        inset: 0;

        display: block;

        border: 0;

        background: transparent;

        cursor: pointer;
    }


    .ku-book-details-trigger:focus-visible {
        outline: 2px solid #8d6847;
        outline-offset: -3px;
    }


    .ku-book-details-hint {
        display: block;

        margin-top: 20px;

        color: #8d6847;

        font-size: 0.56rem;
        letter-spacing: 0.16em;

        text-align: center;
    }


    .ku-book-dialog {
        position: fixed;

        inset: 0;

        width: min(430px, calc(100% - 40px));
        max-height: calc(100vh - 24px);
        max-height: calc(100dvh - 24px);

        margin: auto;
        padding: 0;

        overflow: hidden;

        border: 1px solid rgba(201, 155, 99, 0.55);

        background: #0b1011;
        color: #f1ece6;
    }


    .ku-book-dialog::backdrop {
        background: rgba(0, 0, 0, 0.84);

        backdrop-filter: blur(4px);
    }


    .ku-book-dialog-close {
        position: absolute;
        z-index: 2;

        top: 8px;
        right: 8px;

        width: 40px;
        height: 40px;

        border: 1px solid rgba(201, 155, 99, 0.35);

        background: rgba(5, 7, 7, 0.88);
        color: #f1ece6;

        font-size: 1.45rem;
        line-height: 1;

        cursor: pointer;
    }


    .ku-book-dialog-close:focus-visible,
    .ku-dialog-retailer:focus-visible {
        outline: 2px solid #c99b63;
        outline-offset: 2px;
    }


    .ku-book-dialog-scroll {
        max-height: calc(100vh - 24px);
        max-height: calc(100dvh - 24px);

        padding: 48px 18px 24px;

        overflow-x: hidden;
        overflow-y: auto;

        overscroll-behavior: contain;

        text-align: center;
    }


    .ku-dialog-cover {
        display: block;

        width: clamp(125px, 43vw, 175px);
        max-width: 100%;
        max-height: 35vh;
        max-height: 35dvh;

        margin: 0 auto 18px;

        object-fit: contain;

        box-shadow: 0 16px 35px rgba(0, 0, 0, 0.42);
    }


    .ku-dialog-number {
        margin-bottom: 8px;

        color: #c99b63;

        font-size: 0.58rem;
        letter-spacing: 0.18em;
    }


    .ku-book-dialog h3 {
        color: #f1ece6;

        font-family: Georgia, "Times New Roman", serif;
        font-size: clamp(1.5rem, 8vw, 2.15rem);
        font-weight: 400;

        line-height: 1.08;
    }


    .ku-dialog-description {
        margin: 14px auto 0;

        color: #aaa49e;

        font-family: Georgia, "Times New Roman", serif;
        font-size: 0.82rem;

        line-height: 1.6;
    }


    .ku-dialog-retailers {
        margin-top: 19px;

        display: grid;
        gap: 9px;
    }


    .ku-dialog-retailer {
        min-height: 40px;
        padding: 8px 14px;

        display: flex;
        align-items: center;
        justify-content: center;

        border: 1px solid #c99b63;

        color: #d9b17d;

        font-size: 0.62rem;
        letter-spacing: 0.09em;
        line-height: 1.2;

        text-decoration: none;
    }
}
/* ==================================================
   BOOKS PAGE - AUDIOBOOK NARRATOR
================================================== */

.narrator-feature {
    width: min(850px, 100%);
    margin: 80px auto 0;
    padding: 0 20px;

    color: #211b18;
}


/* --------------------------------------------------
   DECORATIVE LINE
-------------------------------------------------- */

.narrator-line {
    width: 70px;
    height: 1px;

    margin: 0 auto 45px;

    background: #9d7856;
}


/* --------------------------------------------------
   NARRATOR LAYOUT
-------------------------------------------------- */

.narrator-content {
    display: grid;
    grid-template-columns: 150px 1fr;

    align-items: center;

    gap: 40px;
}


/* --------------------------------------------------
   NARRATOR PHOTO
-------------------------------------------------- */

.narrator-photo {
    position: relative;

    width: 150px;
    height: 150px;

    padding: 7px;

    background: rgba(255, 255, 255, 0.45);

    border: 1px solid rgba(157, 120, 86, 0.65);
    border-radius: 50%;

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.08);
}


.narrator-photo img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    border-radius: 50%;
}


/* --------------------------------------------------
   NARRATOR INFORMATION
-------------------------------------------------- */

.narrator-info {
    text-align: left;
}


.narrator-eyebrow {
    margin-bottom: 10px;

    color: #8d6847;

    font-size: 0.62rem;
    letter-spacing: 0.18em;

    text-transform: uppercase;
}


.narrator-info h3 {
    margin: 0;

    color: #211b18;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;

    line-height: 1.1;
}


.narrator-description {
    max-width: 560px;

    margin-top: 15px;

    color: #625a54;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 0.86rem;

    line-height: 1.7;
}


/* --------------------------------------------------
   NARRATOR WEBSITE BUTTON
-------------------------------------------------- */

.narrator-button {
    display: inline-block;

    margin-top: 22px;
    padding: 12px 18px;

    border: 1px solid #9d7856;

    color: #7b593d;

    font-size: 0.6rem;
    letter-spacing: 0.09em;

    text-decoration: none;

    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}


.narrator-button:hover {
    transform: translateY(-2px);

    background: #211b18;
    border-color: #211b18;

    color: #f1ece6;
}


/* --------------------------------------------------
   NARRATOR - MOBILE
-------------------------------------------------- */

@media (max-width: 600px) {

    .narrator-feature {
        margin-top: 65px;
        padding: 0;
    }


    .narrator-line {
        margin-bottom: 35px;
    }


    .narrator-content {
        grid-template-columns: 1fr;

        gap: 25px;

        text-align: center;
    }


    .narrator-photo {
        width: 130px;
        height: 130px;

        margin: 0 auto;
    }


    .narrator-info {
        text-align: center;
    }


    .narrator-description {
        margin-left: auto;
        margin-right: auto;
    }

}

/* ==================================================
   SHOP PAGE
================================================== */


/* --------------------------------------------------
   SHOP HERO
-------------------------------------------------- */

.shop-hero {
    position: relative;

    min-height: 620px;

    display: grid;
    grid-template-columns: 1.15fr 0.85fr;

    align-items: stretch;

    background: #080c0d;
    color: #f1ece6;

    overflow: hidden;
}


.shop-hero-image {
    position: relative;

    min-height: 620px;
}


.shop-hero-image::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(8, 12, 13, 0.05) 45%,
            rgba(8, 12, 13, 0.95) 100%
        );
}


.shop-hero-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}


.shop-hero-content {
    position: relative;
    z-index: 2;

    padding: 80px 8vw 80px 45px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    background: #080c0d;
}


.shop-eyebrow {
    margin-bottom: 14px;

    color: #c99b63;

    font-size: 0.67rem;
    letter-spacing: 0.2em;

    text-transform: uppercase;
}


.shop-hero-content h1 {
    margin: 0;

    color: #f1ece6;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.8rem, 5.5vw, 5rem);
    font-weight: 400;

    line-height: 0.98;
}


.shop-hero-content > p:not(.shop-eyebrow) {
    max-width: 520px;

    margin-top: 25px;

    color: #aaa49e;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 0.9rem;

    line-height: 1.8;
}


.shop-hero-button {
    align-self: flex-start;

    margin-top: 30px;
    padding: 14px 22px;

    border: 1px solid #c99b63;

    color: #c99b63;

    font-size: 0.65rem;
    letter-spacing: 0.1em;

    text-decoration: none;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}


.shop-hero-button:hover {
    transform: translateY(-2px);

    background: #c99b63;
    color: #080c0d;
}


/* --------------------------------------------------
   STICKY SHOP CATEGORY NAVIGATION
-------------------------------------------------- */

.shop-category-nav {
    position: sticky;
    top: 0;
    z-index: 50;

    width: 100%;

    background: rgba(8, 12, 13, 0.97);

    border-top: 1px solid rgba(201, 155, 99, 0.2);
    border-bottom: 1px solid rgba(201, 155, 99, 0.3);

    backdrop-filter: blur(10px);
}


.shop-category-nav-inner {
    width: min(950px, 100%);
    margin: 0 auto;

    padding: 0 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow-x: auto;

    scrollbar-width: none;
}


.shop-category-nav-inner::-webkit-scrollbar {
    display: none;
}


.shop-category-nav a {
    flex: 0 0 auto;

    padding: 18px 24px;

    color: #d0c8c0;

    font-size: 0.62rem;
    letter-spacing: 0.13em;

    text-decoration: none;
    text-transform: uppercase;

    transition:
        color 0.2s ease,
        background 0.2s ease;
}


.shop-category-nav a:hover {
    color: #36d6cf;

    background: rgba(54, 214, 207, 0.05);
}


/* --------------------------------------------------
   GENERAL SHOP COLLECTION
-------------------------------------------------- */

.shop-collection {
    scroll-margin-top: 70px;

    padding: 90px 20px 100px;

    overflow: hidden;
}


.shop-collection-heading {
    width: min(700px, 100%);
    margin: 0 auto 50px;

    text-align: center;
}


.shop-section-eyebrow {
    margin-bottom: 11px;

    color: #9d7856;

    font-size: 0.65rem;
    letter-spacing: 0.2em;

    text-transform: uppercase;
}


.shop-collection-heading h2 {
    margin: 0;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.5rem, 5vw, 4.3rem);
    font-weight: 400;

    line-height: 1;
}


.shop-collection-heading > p:last-child {
    max-width: 580px;

    margin: 18px auto 0;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 0.85rem;

    line-height: 1.75;
}


/* --------------------------------------------------
   FEATURED COLLECTION
-------------------------------------------------- */

.shop-featured {
    background: #f1ece6;
    color: #211b18;
}


.shop-featured .shop-collection-heading > p:last-child {
    color: #675d56;
}


/* --------------------------------------------------
   STICKERS COLLECTION
-------------------------------------------------- */

.shop-stickers {
    background: #e5e8df;
    color: #211b18;
}


.shop-stickers .shop-section-eyebrow {
    color: #7f654c;
}


.shop-stickers .shop-collection-heading > p:last-child {
    color: #625d57;
}


/* --------------------------------------------------
   ACCESSORIES COLLECTION
-------------------------------------------------- */

.shop-accessories {
    background:
        radial-gradient(
            circle at 50% 10%,
            rgba(201, 155, 99, 0.08),
            transparent 35%
        ),
        #0b1011;

    color: #f1ece6;
}


.shop-accessories .shop-section-eyebrow {
    color: #c99b63;
}


.shop-accessories .shop-collection-heading > p:last-child {
    color: #aaa49e;
}


/* --------------------------------------------------
   TUMBLERS COLLECTION
-------------------------------------------------- */

.shop-tumblers {
    background: #eee8e1;
    color: #211b18;
}


.shop-tumblers .shop-collection-heading > p:last-child {
    color: #675d56;
}


/* --------------------------------------------------
   CANDLES COLLECTION
-------------------------------------------------- */

.shop-candles {
    background:
        radial-gradient(
            circle at 50% 30%,
            rgba(54, 214, 207, 0.08),
            transparent 35%
        ),
        #091112;

    color: #f1ece6;
}


.shop-candles .shop-section-eyebrow {
    color: #36d6cf;
}


.shop-candles .shop-collection-heading > p:last-child {
    color: #aaa49e;
}


/* --------------------------------------------------
   PRODUCT CAROUSEL
-------------------------------------------------- */

.product-carousel-wrapper {
    position: relative;

    width: min(1180px, 100%);
    margin: 0 auto;

    padding: 0 55px;
}


.product-carousel {
    display: flex;

    gap: 24px;

    overflow-x: auto;

    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;

    overscroll-behavior-inline: contain;

    padding: 10px 5px 25px;

    scrollbar-width: none;
}


.product-carousel::-webkit-scrollbar {
    display: none;
}


/* Future product cards */

.product-card {
    flex: 0 0 calc((100% - 48px) / 3);

    min-width: 0;

    scroll-snap-align: start;
}


/* --------------------------------------------------
   CAROUSEL ARROWS
-------------------------------------------------- */

.carousel-arrow {
    position: absolute;
    z-index: 5;

    top: 50%;

    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    transform: translateY(-50%);

    border: 1px solid rgba(157, 120, 86, 0.55);
    border-radius: 50%;

    background: rgba(8, 12, 13, 0.92);
    color: #f1ece6;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.6rem;

    line-height: 1;

    cursor: pointer;

    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}


.carousel-arrow:hover {
    background: #c99b63;
    border-color: #c99b63;

    color: #080c0d;
}


.carousel-arrow-left {
    left: 0;
}


.carousel-arrow-right {
    right: 0;
}


/* --------------------------------------------------
   SHOP PROMOTION
-------------------------------------------------- */

.shop-promo {
    padding: 85px 20px;

    background: #dfe3d9;

    color: #211b18;

    text-align: center;
}


.shop-promo-content {
    width: min(650px, 100%);
    margin: 0 auto;
}


.shop-promo-content h2 {
    margin: 0;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 400;

    line-height: 1;
}


.shop-promo-content > p:last-child {
    margin-top: 18px;

    color: #625d57;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 0.86rem;

    line-height: 1.7;
}


/* --------------------------------------------------
   WHY SHOP BOUND IN INK
-------------------------------------------------- */

.why-shop {
    padding: 90px 20px 100px;

    background: #f1ece6;
    color: #211b18;
}


.why-shop-heading {
    width: min(700px, 100%);
    margin: 0 auto 55px;

    text-align: center;
}


.why-shop-heading h2 {
    margin: 0;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 400;

    line-height: 1;
}


.why-shop-grid {
    width: min(1050px, 100%);
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(5, 1fr);

    gap: 18px;
}


.why-shop-item {
    padding: 25px 18px;

    border-top: 1px solid rgba(157, 120, 86, 0.5);

    text-align: center;
}


.why-shop-item strong {
    display: block;

    color: #342b26;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 0.95rem;
    font-weight: 400;
}


.why-shop-item span {
    display: block;

    margin-top: 9px;

    color: #756c65;

    font-size: 0.7rem;

    line-height: 1.55;
}


/* --------------------------------------------------
   PRODUCT LIGHTBOX
-------------------------------------------------- */

.product-lightbox {

    position: fixed;
inset: 0;
margin: auto;

    width: min(900px, calc(100% - 40px));
    max-height: calc(100% - 40px);

    padding: 0;

    border: 1px solid rgba(201, 155, 99, 0.5);

    background: #0b1011;
    color: #f1ece6;
}


.product-lightbox::backdrop {
    background: rgba(0, 0, 0, 0.82);

    backdrop-filter: blur(4px);
}


.lightbox-close {
    position: absolute;
    z-index: 5;

    top: 12px;
    right: 15px;

    width: 42px;
    height: 42px;

    border: 0;

    background: rgba(0, 0, 0, 0.65);
    color: #f1ece6;

    font-size: 1.6rem;

    cursor: pointer;
}


.lightbox-content {
    display: grid;
    grid-template-columns: 1fr 0.85fr;

    align-items: center;
}


.lightbox-image {
    min-height: 450px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 30px;

    background: #111718;
}


.lightbox-image img {
    display: block;

    max-width: 100%;
    max-height: 600px;

    object-fit: contain;
}


.lightbox-product-info {
    padding: 45px;
}


.lightbox-category {
    margin-bottom: 10px;

    color: #c99b63;

    font-size: 0.6rem;
    letter-spacing: 0.18em;

    text-transform: uppercase;
}


.lightbox-product-info h2 {
    color: #f1ece6;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;

    line-height: 1.05;
}


.lightbox-price {
    margin-top: 15px;

    color: #36d6cf;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.1rem;
}


.lightbox-description {
    margin-top: 18px;

    color: #aaa49e;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 0.82rem;

    line-height: 1.7;
}


.lightbox-shop-button {
    display: inline-block;

    margin-top: 25px;
    padding: 12px 18px;

    border: 1px solid #c99b63;

    color: #c99b63;

    font-size: 0.62rem;
    letter-spacing: 0.1em;

    text-decoration: none;
}


/* ==================================================
   SHOP PAGE - TABLET
================================================== */

@media (max-width: 900px) {

    .shop-hero {
        grid-template-columns: 1fr 1fr;

        min-height: 520px;
    }


    .shop-hero-image {
        min-height: 520px;
    }


    .shop-hero-content {
        padding: 60px 35px;
    }


    .product-card {
        flex-basis: calc((100% - 24px) / 2);
    }


    .why-shop-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}


/* ==================================================
   SHOP PAGE - MOBILE
================================================== */

@media (max-width: 650px) {

    /* Shop Hero */

    .shop-hero {
        display: block;

        min-height: auto;
    }


    .shop-hero-image {
        min-height: auto;
        height: auto;
    }


    .shop-hero-image::after {
        background:
            linear-gradient(
                180deg,
                rgba(8, 12, 13, 0) 55%,
                #080c0d 100%
            );
    }


    .shop-hero-image img {
        width: 100%;
        height: auto;

        object-fit: contain;
    }


    .shop-hero-content {
        margin-top: -35px;

        padding: 45px 24px 65px;

        text-align: center;
    }


    .shop-hero-content h1 {
        font-size: clamp(2.5rem, 12vw, 3.6rem);
    }


    .shop-hero-content > p:not(.shop-eyebrow) {
        margin-left: auto;
        margin-right: auto;
    }


    .shop-hero-button {
        align-self: center;
    }


    /* Sticky Navigation */

    .shop-category-nav::before,
    .shop-category-nav::after {
        content: "";

        position: absolute;
        z-index: 1;
        top: 0;
        bottom: 0;

        width: 24px;

        opacity: 0;
        pointer-events: none;

        transition: opacity 0.2s ease;
    }

    .shop-category-nav::before {
        left: 0;

        background: linear-gradient(
            to right,
            rgba(8, 12, 13, 0.97),
            rgba(8, 12, 13, 0)
        );
    }

    .shop-category-nav::after {
        right: 0;

        background: linear-gradient(
            to left,
            rgba(8, 12, 13, 0.97),
            rgba(8, 12, 13, 0)
        );
    }

    .shop-category-nav.can-scroll-left::before,
    .shop-category-nav.can-scroll-right::after {
        opacity: 1;
    }

    .shop-category-nav-inner {
        position: relative;

        justify-content: flex-start;

        padding: 0 14px;

        flex-wrap: nowrap;

        scroll-behavior: smooth;
        scroll-padding-inline: 14px;
        overscroll-behavior-inline: contain;
        -webkit-overflow-scrolling: touch;
    }


    .shop-category-nav a {
        padding: 16px 18px;

        font-size: 0.6rem;
        letter-spacing: 0.12em;
        white-space: nowrap;
    }


    /* Collections */

    .shop-collection {
        padding: 70px 0 80px;
    }


    .shop-collection-heading {
        padding: 0 22px;

        margin-bottom: 40px;
    }


    /* Why Shop */

    .why-shop {
        padding: 70px 20px 80px;
    }


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


    /* Lightbox */

    .product-lightbox {
        width: calc(100% - 24px);
        max-height: calc(100vh - 24px);
        max-height: calc(100dvh - 24px);

        overflow-x: hidden;
        overflow-y: auto;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
    }


    .lightbox-close {
        position: sticky;
        top: 8px;

        width: 42px;
        height: 42px;

        margin: 8px 8px -50px auto;

        display: flex;
        align-items: center;
        justify-content: center;

        background: rgba(0, 0, 0, 0.82);
    }


    .lightbox-content {
        grid-template-columns: 1fr;
        align-items: stretch;
    }


    .lightbox-image {
        min-height: 0;
        height: clamp(280px, 80vw, 380px);

        padding: 16px 24px;
    }


    .lightbox-image img {
        max-width: 100%;
        max-height: 100%;
    }


    .lightbox-product-info {
        padding: 18px 20px 22px;

        text-align: center;
    }


    .lightbox-category {
        margin-bottom: 6px;

        font-size: 0.54rem;
        letter-spacing: 0.14em;
        line-height: 1.3;
    }


    .lightbox-product-info h2 {
        margin: 0;

        font-size: clamp(1.6rem, 7vw, 2rem);
        line-height: 1.08;
    }


    .lightbox-price {
        margin-top: 9px;
        font-size: 0.98rem;
    }


    .lightbox-description {
        margin-top: 10px;

        font-size: 0.77rem;
        line-height: 1.55;
    }


    .lightbox-shop-button {
        min-height: 40px;

        margin-top: 16px;
        padding: 10px 16px;

        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

}


@media (max-width: 650px) and (max-height: 600px) {

    .lightbox-image {
        height: clamp(240px, 60vw, 300px);
    }

}


/* ==================================================
   SHOP PAGE - SMALL MOBILE
================================================== */

@media (max-width: 400px) {

    .lightbox-image {
        height: clamp(260px, 80vw, 320px);
        padding: 14px 18px;
    }


    .lightbox-product-info {
        padding: 16px 14px 18px;
    }


    .lightbox-description {
        line-height: 1.5;
    }

    .why-shop-grid {
        grid-template-columns: 1fr;
    }

}

/* ==================================================
   SHOP PRODUCT CAROUSELS
================================================== */

.product-carousel-wrapper {
    position: relative;
    width: min(1180px, 100%);
    margin: 45px auto 0;
    padding: 0 65px;
}

.product-carousel {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 10px 4px 25px;
}

.product-carousel::-webkit-scrollbar {
    display: none;
}


/* ==================================================
   PRODUCT CARDS
================================================== */

.product-card {
    flex: 0 0 calc((100% - 72px) / 4);
    min-width: 0;

    display: flex;
    flex-direction: column;

    background: #0d1110;
    border: 1px solid rgba(176, 133, 83, 0.45);

    scroll-snap-align: start;
    overflow: hidden;
}

.product-image-button {
    width: 100%;
    height: 320px;

    margin: 0;
    padding: 14px;

    border: 0;
    background: #080a09;

    cursor: pointer;
    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image {
    display: block;
    width: 100%;
    height: 100%;

    object-fit: contain;
    object-position: center;

    transition: transform 0.3s ease;
}

.product-image-button:hover .product-image {
    transform: scale(1.025);
}


/* ==================================================
   PRODUCT CARD TEXT
================================================== */

.product-card-content {
    display: flex;
    flex-direction: column;
    flex: 1;

    padding: 22px 20px 24px;
    text-align: center;
}

.product-badge {
    margin: 0 0 10px;

    color: #c8955c;

    font-size: 0.62rem;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.product-card h3 {
    margin: 0;

    color: #f2ece5;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.25;
}

.product-type {
    margin: 10px 0 20px;

    color: #aaa19a;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 0.82rem;
}

.product-shop-button {
    display: inline-block;

    margin: auto auto 0;
    padding: 11px 20px;

    border: 1px solid #b08553;

    color: #d9b47f;

    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-decoration: none;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.product-shop-button:hover {
    background: #b08553;
    color: #0b0d0c;
    transform: translateY(-2px);
}


/* ==================================================
   CAROUSEL ARROWS
================================================== */

.product-carousel-wrapper .carousel-arrow {
    position: absolute;
    top: 50%;
    z-index: 5;

    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #b08553;
    border-radius: 50%;

    background: #101311;
    color: #f1e9df;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.6rem;

    cursor: pointer;

    transform: translateY(-50%);
}

.product-carousel-wrapper .carousel-arrow-left {
    left: 5px;
}

.product-carousel-wrapper .carousel-arrow-right {
    right: 5px;
}

.product-carousel-wrapper .carousel-arrow:hover {
    background: #b08553;
    color: #0b0d0c;
}


/* ==================================================
   PRODUCT CAROUSEL - TABLET
================================================== */

@media (max-width: 900px) {

    .product-carousel-wrapper {
        padding: 0 55px;
    }

    .product-card {
        flex: 0 0 calc((100% - 24px) / 2);
    }

}


/* ==================================================
   PRODUCT CAROUSEL - MOBILE
================================================== */

@media (max-width: 600px) {

    .product-carousel-wrapper {
        width: 100%;
        padding: 0 12px;
    }

    .product-carousel {
        gap: 10px;
        padding: 8px 4px 18px;
        scroll-padding-inline: 4px;
    }

    .product-card {
        flex: 0 0 calc((100% - 10px) / 2);
    }

    .product-image-button {
        height: clamp(148px, 43vw, 185px);
        padding: 9px;
    }

    .product-card-content {
        padding: 13px 8px 15px;
    }

    .product-badge {
        margin-bottom: 7px;
        font-size: 0.52rem;
        line-height: 1.3;
        letter-spacing: 0.11em;
    }

    .product-card h3 {
        font-size: clamp(0.84rem, 3.6vw, 1rem);
        line-height: 1.2;
    }

    .product-type {
        margin: 7px 0 13px;
        font-size: clamp(0.66rem, 2.7vw, 0.74rem);
        line-height: 1.35;
    }

    .product-shop-button {
        max-width: 100%;
        min-height: 40px;
        padding: 9px 10px;

        display: inline-flex;
        align-items: center;
        justify-content: center;

        font-size: 0.56rem;
        line-height: 1.1;
        letter-spacing: 0.09em;
    }

    .product-carousel-wrapper .carousel-arrow {
        top: clamp(82px, 23vw, 100px);

        width: 30px;
        height: 30px;

        display: flex;
        font-size: 1.15rem;
        background: rgba(16, 19, 17, 0.88);
    }

    .product-carousel-wrapper .carousel-arrow-left {
        left: 1px;
    }

    .product-carousel-wrapper .carousel-arrow-right {
        right: 1px;
    }

}


/* ==================================================
   PRODUCT CAROUSEL - VERY NARROW MOBILE
================================================== */

@media (max-width: 320px) {

    .product-carousel-wrapper {
        padding: 0 10px;
    }

    .product-carousel {
        gap: 8px;
    }

    .product-card {
        flex-basis: calc((100% - 8px) / 2);
    }

    .product-image-button {
        height: 142px;
        padding: 7px;
    }

    .product-card-content {
        padding: 11px 6px 13px;
    }

    .product-badge {
        font-size: 0.48rem;
        letter-spacing: 0.08em;
    }

    .product-card h3 {
        font-size: 0.8rem;
        line-height: 1.18;
    }

    .product-type {
        font-size: 0.63rem;
    }

    .product-shop-button {
        min-height: 38px;
        padding: 8px 7px;
        font-size: 0.52rem;
        letter-spacing: 0.07em;
    }

    .product-carousel-wrapper .carousel-arrow {
        top: 79px;
        width: 27px;
        height: 27px;
        font-size: 1rem;
    }

}

/* =========================================================
   BOOK PREVIEWS PAGE
   ========================================================= */


/* ---------------------------------------------------------
   PAGE BASE
   --------------------------------------------------------- */

.preview-page {
    background: #071011;
    color: #eee8e1;
}


/* ---------------------------------------------------------
   PREVIEW HERO
   --------------------------------------------------------- */

.preview-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 40px 90px;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 50% 35%,
            rgba(0, 200, 200, 0.08),
            transparent 42%
        ),
        #071011;

    border-bottom: 1px solid rgba(197, 164, 126, 0.25);
}

.preview-hero-inner {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.preview-eyebrow {
    margin: 0 0 18px;
    color: #37d4d0;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.preview-hero h1 {
    margin: 0;
    color: #eee8e1;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3.8rem, 7vw, 6.5rem);
    font-weight: 400;
    line-height: 0.92;
}

.preview-hero h1 span {
    display: block;
    color: #c5a47e;
    font-style: italic;
}

.preview-hero-lead {
    max-width: 650px;
    margin: 30px auto 0;
    color: #d2c8bd;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.1rem;
    line-height: 1.75;
}

.preview-hero-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;

    color: #c5a47e;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}


/* ---------------------------------------------------------
   BOOK FEATURE SECTIONS
   --------------------------------------------------------- */

.preview-feature {
    position: relative;
    padding: 100px 50px;
}

.preview-feature-veil {
    background: #0a1415;
}

.preview-feature-desire {
    background: #eee9df;
    color: #171515;
}

.preview-feature-inner {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    align-items: center;
    gap: 90px;
}

.preview-feature-reverse {
    grid-template-columns: 1.15fr 0.85fr;
}

.preview-feature-reverse .preview-book-visual {
    order: 2;
}

.preview-feature-reverse .preview-book-content {
    order: 1;
}


/* ---------------------------------------------------------
   BOOK IMAGE / MOCKUP
   --------------------------------------------------------- */

.preview-book-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.preview-image-frame {
    position: relative;
    width: min(100%, 390px);
    display: flex;
    justify-content: center;
    align-items: center;
}

.preview-image-frame::before {
    content: "";
    position: absolute;
    width: 72%;
    height: 72%;
    border-radius: 50%;
    background: rgba(197, 164, 126, 0.12);
    filter: blur(45px);
    z-index: 0;
}

.preview-feature-veil .preview-image-frame::before {
    background: rgba(55, 212, 208, 0.09);
}

.preview-image-frame img {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    max-height: 560px;
    object-fit: contain;
}


/* ---------------------------------------------------------
   BOOK CONTENT
   --------------------------------------------------------- */

.preview-book-content {
    max-width: 600px;
}

.preview-book-status {
    margin: 0 0 15px;

    color: #c5a47e;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.preview-feature-desire .preview-book-status {
    color: #9b633a;
}

.preview-book-content h2 {
    margin: 0;

    color: #eee8e1;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3rem, 5vw, 5rem);
    font-weight: 400;
    line-height: 0.98;
}

.preview-feature-desire .preview-book-content h2 {
    color: #171515;
}

.preview-book-tagline {
    margin: 18px 0 0;

    color: #c5a47e;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.15rem;
    font-style: italic;
    line-height: 1.5;
}

.preview-feature-desire .preview-book-tagline {
    color: #8a5734;
}

.preview-divider {
    width: 72px;
    height: 1px;
    margin: 28px 0;

    background: #c5a47e;
}

.preview-book-description {
    margin: 0 0 16px;

    color: #cfc5ba;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1rem;
    line-height: 1.8;
}

.preview-feature-desire .preview-book-description {
    color: #51453d;
}


/* ---------------------------------------------------------
   TROPE TAGS
   --------------------------------------------------------- */

.preview-tropes {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 27px;
}

.preview-tropes span {
    display: inline-flex;
    align-items: center;

    min-height: 32px;
    padding: 7px 12px;

    border: 1px solid rgba(197, 164, 126, 0.55);

    color: #d9c2a6;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.08em;
    line-height: 1.2;
    text-transform: uppercase;
}

.preview-feature-desire .preview-tropes span {
    background-color: #cbb397;
    border-color: rgba(138, 87, 52, 0.45);
    color: #241b16;
}


/* ---------------------------------------------------------
   AVAILABILITY / STATUS LINE
   --------------------------------------------------------- */

.preview-availability {
    margin: 25px 0 0;

    color: #8f9694;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    line-height: 1.6;
    text-transform: uppercase;
}

.preview-availability span {
    margin: 0 6px;
    color: #c5a47e;
}

.preview-feature-desire .preview-availability {
    color: #76695f;
}


/* ---------------------------------------------------------
   BUTTONS
   --------------------------------------------------------- */

.preview-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.preview-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;

    min-height: 46px;
    padding: 13px 22px;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;

    transition:
        background-color 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

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

.preview-button-primary {
    border: 1px solid #37d4d0;
    background: #37d4d0;
    color: #071011;
}

.preview-button-primary:hover {
    background: transparent;
    color: #37d4d0;
}

.preview-button-secondary {
    border: 1px solid #c5a47e;
    background: transparent;
    color: #c5a47e;
}

.preview-button-secondary:hover {
    background: #c5a47e;
    color: #071011;
}


/* Light section button treatment */

.preview-feature-desire .preview-button-primary {
    border-color: #171515;
    background: #171515;
    color: #eee9df;
}

.preview-feature-desire .preview-button-primary:hover {
    background: transparent;
    color: #171515;
}


/* ---------------------------------------------------------
   PACK LIBRARY CTA
   --------------------------------------------------------- */

.preview-pack-cta {
    position: relative;
    padding: 100px 30px;

    background:
        radial-gradient(
            circle at 50% 50%,
            rgba(55, 212, 208, 0.07),
            transparent 42%
        ),
        #071011;

    border-top: 1px solid rgba(197, 164, 126, 0.2);
}

.preview-pack-cta-inner {
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.preview-pack-cta h2 {
    margin: 0;

    color: #eee8e1;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 400;
    line-height: 1.05;
}

.preview-pack-cta p:not(.preview-eyebrow) {
    max-width: 580px;
    margin: 22px auto 30px;

    color: #cfc5ba;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1rem;
    line-height: 1.75;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    .preview-hero {
        min-height: 460px;
        padding: 80px 30px 70px;
    }

    .preview-feature {
        padding: 75px 30px;
    }

    .preview-feature-inner,
    .preview-feature-reverse {
        grid-template-columns: 0.8fr 1.2fr;
        gap: 45px;
    }

    .preview-image-frame {
        max-width: 310px;
    }

    .preview-book-content h2 {
        font-size: clamp(2.7rem, 6vw, 4rem);
    }

}


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

@media (max-width: 650px) {

    /* HERO */

    .preview-hero {
        min-height: auto;
        padding: 60px 20px 55px;
    }

    .preview-eyebrow {
        margin-bottom: 13px;
        font-size: 0.64rem;
        letter-spacing: 0.2em;
    }

    .preview-hero h1 {
        font-size: clamp(2.8rem, 15vw, 4.25rem);
        line-height: 0.94;
    }

    .preview-hero-lead {
        margin-top: 22px;
        font-size: 0.92rem;
        line-height: 1.65;
    }

    .preview-hero-meta {
        gap: 7px;
        margin-top: 23px;
        font-size: 0.57rem;
        letter-spacing: 0.1em;
    }


    /* FEATURES */

    .preview-feature {
        padding: 48px 20px 52px;
    }

    .preview-feature-inner,
    .preview-feature-reverse {
        display: flex;
        flex-direction: column;
        gap: 27px;
    }

    .preview-feature-reverse .preview-book-visual,
    .preview-feature-reverse .preview-book-content {
        order: initial;
    }

    .preview-book-visual {
        width: 100%;
    }

    .preview-image-frame {
        width: min(72vw, 245px);
    }

    .preview-image-frame img {
        max-height: 330px;
    }

    .preview-book-content {
        width: 100%;
        max-width: 480px;
        margin: 0 auto;
        text-align: center;
    }

    .preview-book-status {
        margin-bottom: 10px;
        font-size: 0.62rem;
        letter-spacing: 0.18em;
    }

    .preview-book-content h2 {
        font-size: clamp(2.25rem, 12vw, 3.25rem);
        line-height: 1;
    }

    .preview-book-tagline {
        margin-top: 11px;
        font-size: 0.98rem;
    }

    .preview-divider {
        width: 55px;
        margin: 20px auto;
    }

    .preview-book-description {
        margin-bottom: 12px;
        font-size: 0.9rem;
        line-height: 1.65;
    }


    /* TROPE TAGS */

    .preview-tropes {
        justify-content: center;
        gap: 6px;
        margin-top: 20px;
    }

    .preview-tropes span {
        min-height: 29px;
        padding: 6px 9px;
        font-size: 0.55rem;
        letter-spacing: 0.06em;
    }


    /* STATUS */

    .preview-availability {
        margin-top: 20px;
        font-size: 0.61rem;
        line-height: 1.5;
    }


    /* BUTTONS */

    .preview-actions {
        justify-content: center;
        gap: 9px;
        margin-top: 23px;
    }

    .preview-button {
        min-height: 40px;
        padding: 10px 15px;
        font-size: 0.6rem;
        letter-spacing: 0.09em;
    }


    /* PACK LIBRARY CTA */

    .preview-pack-cta {
        padding: 58px 20px;
    }

    .preview-pack-cta h2 {
        font-size: clamp(2.2rem, 11vw, 3.2rem);
    }

    .preview-pack-cta p:not(.preview-eyebrow) {
        margin: 18px auto 24px;
        font-size: 0.9rem;
        line-height: 1.65;
    }

}


/* =========================================================
   VERY SMALL PHONES
   ========================================================= */

@media (max-width: 320px) {

    .preview-hero {
        padding-left: 16px;
        padding-right: 16px;
    }

    .preview-feature {
        padding-left: 16px;
        padding-right: 16px;
    }

    .preview-image-frame {
        width: 205px;
        max-width: 78vw;
    }

    .preview-tropes span {
        font-size: 0.52rem;
        padding-left: 7px;
        padding-right: 7px;
    }

    .preview-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .preview-button {
        width: 100%;
    }

}

/* =========================================================
   REVIEWS PAGE
   ========================================================= */


/* ---------------------------------------------------------
   REVIEWS HERO
   --------------------------------------------------------- */

.reviews-hero {
    position: relative;
    min-height: 540px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 30px 90px;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 50% 40%,
            rgba(55, 212, 208, 0.08),
            transparent 42%
        ),
        #071011;

    border-bottom: 1px solid rgba(197, 164, 126, 0.22);
}

.reviews-hero-inner {
    width: 100%;
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.reviews-eyebrow,
.reviews-section-eyebrow,
.leave-review-eyebrow {
    margin: 0 0 17px;

    color: #37d4d0;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.23em;
    text-transform: uppercase;
}

.reviews-hero h1 {
    margin: 0;

    color: #eee8e1;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3.8rem, 7vw, 6.5rem);
    font-weight: 400;
    line-height: 0.94;
}

.reviews-hero-lead {
    max-width: 650px;
    margin: 28px auto 30px;

    color: #d0c6bb;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.05rem;
    line-height: 1.75;
}


/* ---------------------------------------------------------
   SHARED REVIEW BUTTONS
   --------------------------------------------------------- */

.reviews-primary-button,
.reviews-secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 46px;
    padding: 13px 23px;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;

    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.reviews-primary-button {
    border: 1px solid #37d4d0;
    background: #37d4d0;
    color: #071011;
}

.reviews-primary-button:hover {
    background: transparent;
    color: #37d4d0;
    transform: translateY(-2px);
}

.reviews-secondary-button {
    border: 1px solid #c5a47e;
    background: transparent;
    color: #c5a47e;
}

.reviews-secondary-button:hover {
    background: #c5a47e;
    color: #071011;
    transform: translateY(-2px);
}


/* ---------------------------------------------------------
   APPROVED REVIEWS SECTION
   --------------------------------------------------------- */

.reader-reviews-section {
    padding: 90px 40px 100px;
    background: #eee9df;
    color: #171515;
}

.reader-reviews-inner {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
}

.reader-reviews-heading {
    max-width: 650px;
}

.reader-reviews-heading .reviews-section-eyebrow {
    color: #8b5b39;
}

.reader-reviews-heading h2 {
    margin: 0;

    color: #171515;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    font-weight: 400;
    line-height: 1;
}

.reader-reviews-heading > p:last-child {
    margin: 19px 0 0;

    color: #655950;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1rem;
    line-height: 1.7;
}


/* ---------------------------------------------------------
   REVIEW CONTROLS
   --------------------------------------------------------- */

.review-controls {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin: 35px 0 28px;
}

.review-control {
    min-width: 0;
}

.review-control label {
    display: block;
    margin-bottom: 7px;

    color: #62554b;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.review-control select {
    width: 100%;
    min-width: 0;
    min-height: 44px;
    padding: 9px 38px 9px 13px;

    border: 1px solid rgba(104, 72, 49, 0.4);
    border-radius: 0;
    background: #f7f2ea;
    color: #28211d;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.8rem;

    cursor: pointer;
}

.review-mobile-filter-trigger,
.review-mobile-filter-actions {
    display: none;
}

.review-mobile-filter-panel {
    display: contents;
}


/* ---------------------------------------------------------
   REVIEW CAROUSEL
   --------------------------------------------------------- */

.reviews-carousel {
    width: 100%;
    min-width: 0;
}

.reviews-grid {
    display: flex;
    align-items: flex-start;
    gap: 20px;

    min-width: 0;
    padding: 6px 3px 22px;

    overflow-x: auto;
    overscroll-behavior-inline: contain;

    scroll-behavior: smooth;
    scroll-padding-inline: 3px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.reviews-grid::-webkit-scrollbar {
    display: none;
}

.reviews-grid:focus-visible {
    outline: 2px solid #8a5b39;
    outline-offset: 4px;
}

.review-card {
    position: relative;
    flex: 0 0 calc((100% - 40px) / 3);
    min-width: 0;
    padding: 28px 26px 25px;

    scroll-snap-align: start;

    border: 1px solid rgba(126, 91, 63, 0.2);
    background: #f8f4ed;

    box-shadow: 0 8px 25px rgba(32, 24, 19, 0.05);
}

.review-card-stars {
    margin-bottom: 17px;

    color: #a86e3e;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1rem;
    letter-spacing: 0.08em;
}

.review-card-text {
    margin: 0;

    color: #403630;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 0.94rem;
    line-height: 1.72;
    white-space: pre-line;
}

.review-card-footer {
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid rgba(126, 91, 63, 0.17);

    display: flex;
    align-items: baseline;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 6px 20px;
}

.review-card-name {
    margin: 0;

    color: #171515;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1.35;
    text-transform: uppercase;
}

.review-card-source {
    margin: 0 0 0 auto;

    color: #805234;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1.4;
    text-align: right;
    text-transform: uppercase;
}

.review-card-book {
    flex: 0 0 100%;
    margin: 5px 0 0;

    color: #8a5b39;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 0.8rem;
    font-style: italic;
    line-height: 1.4;
}

.reviews-carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: 2px;
}

.reviews-carousel-arrow {
    width: 42px;
    height: 42px;
    padding: 0;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #8a5b39;
    border-radius: 50%;
    background: transparent;
    color: #70452d;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.25rem;
    line-height: 1;

    cursor: pointer;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        opacity 0.2s ease;
}

.reviews-carousel-arrow:hover:not(:disabled) {
    background: #8a5b39;
    color: #f8f4ed;
}

.reviews-carousel-arrow:focus-visible {
    outline: 2px solid #171515;
    outline-offset: 3px;
}

.reviews-carousel-arrow:disabled {
    opacity: 0.35;
    cursor: default;
}

.reviews-carousel-counter {
    min-width: 76px;
    margin: 0;

    color: #4f4239;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1;
    text-align: center;
}


/* ---------------------------------------------------------
   LOADING / EMPTY REVIEWS
   --------------------------------------------------------- */

.reviews-loading {
    grid-column: 1 / -1;
    margin: 20px 0;

    color: #76695f;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1rem;
    text-align: center;
}

.reviews-empty {
    max-width: 600px;
    margin: 45px auto 0;
    text-align: center;
}

.reviews-empty-small {
    margin: 0 0 10px;

    color: #8a5b39;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.reviews-empty h3 {
    margin: 0;

    color: #171515;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2rem;
    font-weight: 400;
}

.reviews-empty > p:not(.reviews-empty-small) {
    margin: 13px auto;
    color: #655950;
    font-family: Georgia, "Times New Roman", serif;
    line-height: 1.6;
}

.reviews-empty a {
    color: #875638;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
}


/* ---------------------------------------------------------
   LEAVE A REVIEW SECTION
   --------------------------------------------------------- */

.leave-review-section {
    padding: 100px 40px;
    background: #091314;
    color: #eee8e1;

    scroll-margin-top: 24px;
}

.leave-review-inner {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 85px;
    align-items: start;
}


/* LEFT COPY */

.leave-review-intro {
    padding-top: 18px;
}

.leave-review-intro h2 {
    margin: 0;

    color: #eee8e1;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3rem, 5vw, 4.8rem);
    font-weight: 400;
    line-height: 0.98;
}

.leave-review-intro > p:not(.leave-review-eyebrow) {
    margin: 27px 0 0;

    color: #cec4b9;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 0.98rem;
    line-height: 1.75;
}

.leave-review-intro .review-note {
    padding-left: 15px;
    border-left: 1px solid #c5a47e;

    color: #8e9895;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.72rem;
    line-height: 1.65;
}


/* ---------------------------------------------------------
   REVIEW FORM CARD
   --------------------------------------------------------- */

.review-form-card {
    padding: 35px;

    border: 1px solid rgba(197, 164, 126, 0.25);
    background: #101c1d;

    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.15);
}

.review-form-field {
    margin-bottom: 24px;
}

.review-form-field label,
.review-rating-field legend {
    display: block;
    margin-bottom: 9px;

    color: #d9c9b7;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.review-form-field input,
.review-form-field select,
.review-form-field textarea {
    display: block;
    width: 100%;
    box-sizing: border-box;

    border: 1px solid rgba(197, 164, 126, 0.3);
    border-radius: 0;

    background: #0a1415;
    color: #eee8e1;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 0.9rem;

    outline: none;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.review-form-field input,
.review-form-field select {
    min-height: 46px;
    padding: 10px 13px;
}

.review-form-field textarea {
    min-height: 150px;
    padding: 13px;
    line-height: 1.65;
    resize: vertical;
}

.review-form-field input::placeholder,
.review-form-field textarea::placeholder {
    color: #77817f;
    opacity: 1;
}

.review-form-field input:focus,
.review-form-field select:focus,
.review-form-field textarea:focus {
    border-color: #37d4d0;
    box-shadow: 0 0 0 2px rgba(55, 212, 208, 0.08);
}

.review-field-help {
    display: block;
    margin-top: 7px;

    color: #788380;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.66rem;
    line-height: 1.5;
}


/* ---------------------------------------------------------
   STAR RATING
   --------------------------------------------------------- */

.review-rating-field {
    margin: 0 0 24px;
    padding: 0;
    border: 0;
}

.review-stars {
    display: inline-flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 3px;
}

.review-stars input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.review-stars label {
    margin: 0;

    color: #59615f;
    font-size: 2rem;
    line-height: 1;

    cursor: pointer;

    transition:
        color 0.15s ease,
        transform 0.15s ease;
}

.review-stars label:hover,
.review-stars label:hover ~ label,
.review-stars input:checked ~ label {
    color: #c5a47e;
}

.review-stars label:hover {
    transform: scale(1.08);
}

.review-stars input:focus-visible + label {
    outline: 2px solid #37d4d0;
    outline-offset: 3px;
}


/* ---------------------------------------------------------
   CHARACTER COUNT
   --------------------------------------------------------- */

.review-character-count {
    margin-top: 6px;

    color: #788380;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.63rem;
    text-align: right;
}


/* ---------------------------------------------------------
   CONSENT CHECKBOX
   --------------------------------------------------------- */

.review-consent {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px;
    align-items: start;
    margin: 4px 0 26px;
}

.review-consent input {
    width: 17px;
    height: 17px;
    margin: 2px 0 0;
    accent-color: #37d4d0;
}

.review-consent label {
    color: #aeb6b3;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.7rem;
    line-height: 1.55;
}


/* ---------------------------------------------------------
   SUBMIT BUTTON
   --------------------------------------------------------- */

.review-submit-button {
    width: 100%;
    min-height: 48px;
    padding: 12px 20px;

    border: 1px solid #37d4d0;
    border-radius: 0;

    background: #37d4d0;
    color: #071011;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;

    cursor: pointer;

    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        opacity 0.2s ease;
}

.review-submit-button:hover {
    background: transparent;
    color: #37d4d0;
}

.review-submit-button:disabled {
    opacity: 0.55;
    cursor: wait;
}


/* ---------------------------------------------------------
   FORM SUCCESS / ERROR MESSAGE
   --------------------------------------------------------- */

.review-form-message {
    display: none;
    margin-top: 18px;
    padding: 13px 15px;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.72rem;
    line-height: 1.55;
}

.review-form-message.is-visible {
    display: block;
}

.review-form-message.is-success {
    border: 1px solid rgba(55, 212, 208, 0.45);
    background: rgba(55, 212, 208, 0.08);
    color: #a8e4df;
}

.review-form-message.is-error {
    border: 1px solid rgba(197, 110, 96, 0.5);
    background: rgba(197, 110, 96, 0.08);
    color: #e2b2aa;
}


/* ---------------------------------------------------------
   GOODREADS SECTION
   --------------------------------------------------------- */

.reviews-goodreads {
    padding: 85px 30px;
    background: #071011;
    color: #eee8e1;
    border-top: 1px solid rgba(197, 164, 126, 0.2);
}

.reviews-goodreads-inner {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.reviews-goodreads h2 {
    margin: 0;

    color: #eee8e1;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 400;
    line-height: 1.05;
}

.reviews-goodreads p:not(.reviews-section-eyebrow) {
    max-width: 560px;
    margin: 20px auto 28px;

    color: #c8beb3;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 0.95rem;
    line-height: 1.7;
}


/* =========================================================
   REVIEWS PAGE — TABLET
   ========================================================= */

@media (max-width: 900px) {

    .reviews-hero {
        min-height: 470px;
        padding: 80px 30px 70px;
    }

    .reader-reviews-section {
        padding: 70px 30px 80px;
    }

    .review-card {
        flex-basis: calc((100% - 20px) / 2);
    }

    .leave-review-section {
        padding: 75px 30px;
    }

    .leave-review-inner {
        grid-template-columns: 0.75fr 1.25fr;
        gap: 45px;
    }

    .review-form-card {
        padding: 30px;
    }

}


/* =========================================================
   REVIEWS PAGE — MOBILE
   ========================================================= */

@media (max-width: 650px) {

    /* HERO */

    .reviews-hero {
        min-height: auto;
        padding: 58px 20px 55px;
    }

    .reviews-eyebrow,
    .reviews-section-eyebrow,
    .leave-review-eyebrow {
        margin-bottom: 12px;
        font-size: 0.61rem;
        letter-spacing: 0.18em;
    }

    .reviews-hero h1 {
        font-size: clamp(2.8rem, 14vw, 4.2rem);
        line-height: 0.96;
    }

    .reviews-hero-lead {
        margin: 20px auto 24px;
        font-size: 0.9rem;
        line-height: 1.62;
    }

    .reviews-primary-button,
    .reviews-secondary-button {
        min-height: 40px;
        padding: 10px 15px;
        font-size: 0.6rem;
        letter-spacing: 0.09em;
    }


    /* REVIEWS */

    .reader-reviews-section {
        padding: 50px 18px 58px;
    }

    .reader-reviews-heading {
        text-align: center;
    }

    .reader-reviews-heading h2 {
        font-size: clamp(2.3rem, 11vw, 3.3rem);
    }

    .reader-reviews-heading > p:last-child {
        margin-top: 14px;
        font-size: 0.88rem;
        line-height: 1.6;
    }


    /* REVIEW CONTROLS */

    .review-controls {
        grid-template-columns: 1fr;
        gap: 0;
        margin: 27px 0 20px;
    }

    .review-control label {
        font-size: 0.6rem;
    }

    .review-control select {
        min-height: 44px;
    }

    .review-mobile-filter-trigger {
        min-height: 44px;
        margin-top: 9px;
        padding: 8px 0 8px 12px;

        display: inline-flex;
        align-items: center;
        justify-self: end;
        gap: 6px;

        border: 0;
        background: transparent;
        color: #805234;

        font-family: Arial, Helvetica, sans-serif;
        font-size: 0.62rem;
        font-weight: 700;
        letter-spacing: 0.11em;
        text-transform: uppercase;

        cursor: pointer;
    }

    .review-mobile-filter-trigger svg {
        fill: none;
        stroke: currentColor;
        stroke-linecap: round;
        stroke-width: 1.6;
    }

    .review-mobile-filter-trigger:focus-visible,
    .review-mobile-filter-actions button:focus-visible {
        outline: 2px solid #805234;
        outline-offset: 3px;
    }

    .review-mobile-filter-count:empty {
        display: none;
    }

    .review-mobile-filter-panel {
        max-height: 0;
        margin-top: 0;
        padding: 0 14px;

        display: grid;
        grid-template-columns: 1fr;
        gap: 0;

        overflow: hidden;
        visibility: hidden;
        opacity: 0;

        border: 1px solid transparent;
        background: rgba(247, 242, 234, 0.72);

        transition:
            max-height 0.25s ease,
            margin-top 0.25s ease,
            padding 0.25s ease,
            opacity 0.18s ease,
            visibility 0s linear 0.25s;
    }

    .review-mobile-filter-panel.is-open {
        max-height: 280px;
        margin-top: 5px;
        padding: 16px 14px 12px;

        gap: 13px;
        visibility: visible;
        opacity: 1;

        border-color: rgba(104, 72, 49, 0.22);

        transition-delay: 0s;
    }

    .review-mobile-filter-actions {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-top: 1px;
    }

    .review-mobile-filter-actions button {
        min-width: 72px;
        min-height: 44px;
        padding: 8px 0;

        border: 0;
        background: transparent;
        color: #805234;

        font-family: Arial, Helvetica, sans-serif;
        font-size: 0.61rem;
        font-weight: 700;
        letter-spacing: 0.11em;
        text-transform: uppercase;

        cursor: pointer;
    }

    #review-mobile-filter-apply {
        border-bottom: 1px solid #805234;
    }


    /* CARDS */

    .reviews-grid {
        gap: 13px;
        padding-right: 0;
        scroll-padding-inline: 3px;
    }

    .review-card {
        flex-basis: calc(100% - 38px);
        padding: 22px 19px 20px;
    }

    .review-card-stars {
        margin-bottom: 12px;
        font-size: 0.9rem;
    }

    .review-card-text {
        font-size: 0.88rem;
        line-height: 1.62;
    }

    .review-card-footer {
        margin-top: 18px;
        padding-top: 14px;
    }

    .review-card-book {
        margin-top: 5px;
        font-size: 0.74rem;
    }

    .reviews-carousel-controls {
        gap: 15px;
    }

    .reviews-carousel-arrow {
        width: 40px;
        height: 40px;
    }


    /* LEAVE REVIEW */

    .leave-review-section {
        padding: 52px 18px 58px;
    }

    .leave-review-inner {
        display: block;
    }

    .leave-review-intro {
        max-width: 500px;
        margin: 0 auto 30px;
        padding-top: 0;
        text-align: center;
    }

    .leave-review-intro h2 {
        font-size: clamp(2.5rem, 12vw, 3.5rem);
        line-height: 1;
    }

    .leave-review-intro > p:not(.leave-review-eyebrow) {
        margin-top: 18px;
        font-size: 0.88rem;
        line-height: 1.62;
    }

    .leave-review-intro .review-note {
        padding: 12px 0 0;
        border-left: 0;
        border-top: 1px solid rgba(197, 164, 126, 0.5);

        font-size: 0.66rem;
    }


    /* FORM */

    .review-form-card {
        max-width: 500px;
        margin: 0 auto;
        padding: 23px 18px;
    }

    .review-form-field {
        margin-bottom: 20px;
    }

    .review-form-field label,
    .review-rating-field legend {
        font-size: 0.62rem;
    }

    .review-form-field input,
    .review-form-field select {
        min-height: 42px;
    }

    .review-form-field textarea {
        min-height: 135px;
        font-size: 0.85rem;
    }

    .review-stars label {
        font-size: 1.85rem;
    }

    .review-consent label {
        font-size: 0.66rem;
    }

    .review-submit-button {
        min-height: 42px;
        font-size: 0.62rem;
    }


    /* GOODREADS */

    .reviews-goodreads {
        padding: 55px 20px;
    }

    .reviews-goodreads h2 {
        font-size: clamp(2.1rem, 10vw, 3rem);
    }

    .reviews-goodreads p:not(.reviews-section-eyebrow) {
        margin: 16px auto 22px;
        font-size: 0.87rem;
        line-height: 1.6;
    }

}


/* Stack review attribution before it becomes crowded. */
@media (max-width: 375px) {

    .review-card-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .review-card-source {
        margin-left: 0;
        text-align: left;
    }

}


/* =========================================================
   REVIEWS PAGE — VERY SMALL PHONES
   ========================================================= */

@media (max-width: 320px) {

    .reviews-hero,
    .reader-reviews-section,
    .leave-review-section,
    .reviews-goodreads {
        padding-left: 15px;
        padding-right: 15px;
    }

    .review-form-card {
        padding: 20px 14px;
    }

    .review-card {
        flex-basis: 100%;
    }

    .review-stars label {
        font-size: 1.7rem;
    }

}


@media (prefers-reduced-motion: reduce) {

    .review-mobile-filter-panel {
        transition: none;
    }

    .reviews-grid {
        scroll-behavior: auto;
    }

    .reviews-carousel-arrow {
        transition: none;
    }

}

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


/* =========================================================
   CONTACT HERO
========================================================= */

.contact-hero {
  position: relative;
  overflow: hidden;
  padding: 92px 24px 88px;
  background: linear-gradient(
    135deg,
    #091314 0%,
    #101c1d 52%,
    #070d0e 100%
  );
}

.contact-hero::after {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  right: -90px;
  top: -100px;
  border: 1px solid rgba(190, 133, 92, 0.12);
  border-radius: 50%;
  pointer-events: none;
}

.contact-hero-inner {
  position: relative;
  z-index: 1;
  width: min(100%, 1180px);
  margin: 0 auto;
}

.contact-eyebrow,
.contact-section-eyebrow {
  margin: 0 0 14px;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #b77952;
}

.contact-hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 7vw, 6.2rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.035em;
  color: #f4eee5;
}

.contact-hero-lead {
  max-width: 650px;
  margin: 28px 0 0;
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(244, 238, 229, 0.72);
}


/* =========================================================
   CONTACT MAIN SECTION
========================================================= */

.contact-main-section {
  padding: 90px 24px;
  background: #f2ece2;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: 56px;
  width: min(100%, 1180px);
  margin: 0 auto;
  align-items: start;
}

.contact-section-heading {
  max-width: 650px;
  margin-bottom: 32px;
}

.contact-section-heading h2,
.contact-help-card h2,
.contact-social-heading h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 400;
  line-height: 1.08;
  color: #101c1d;
}

.contact-section-heading > p:last-child {
  max-width: 600px;
  margin: 16px 0 0;
  font-size: 0.98rem;
  line-height: 1.75;
  color: #4f5957;
}


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

.contact-form-card {
  padding: 38px;
  border: 1px solid rgba(197, 164, 126, 0.28);
  background: #101c1d;
  color: #eee8e1;
  box-shadow: 0 20px 50px rgba(7, 16, 17, 0.18);
}

.contact-form {
  display: grid;
  gap: 24px;
}

.contact-form-field {
  min-width: 0;
}

.contact-form-field label {
  display: block;
  margin-bottom: 9px;
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #d9c9b7;
}

.contact-form-field input,
.contact-form-field select,
.contact-form-field textarea {
  display: block;
  width: 100%;
  box-sizing: border-box;
  border: 1px solid rgba(197, 164, 126, 0.34);
  border-radius: 0;
  outline: none;
  background: #0a1415;
  color: #eee8e1;
  color-scheme: dark;
  font: inherit;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease;
}

.contact-form-field input,
.contact-form-field select {
  min-height: 52px;
  padding: 0 15px;
}

.contact-form-field textarea {
  min-height: 190px;
  padding: 15px;
  line-height: 1.65;
  resize: vertical;
}

.contact-form-field input::placeholder,
.contact-form-field textarea::placeholder {
  color: #8e9895;
  opacity: 1;
}

.contact-form-field select option {
  background: #0a1415;
  color: #eee8e1;
}

.contact-form-field input:focus,
.contact-form-field select:focus,
.contact-form-field textarea:focus {
  border-color: #37d4d0;
  box-shadow: 0 0 0 2px rgba(55, 212, 208, 0.1);
  background: #0a1415;
}

.contact-form-field input[aria-invalid="true"],
.contact-form-field select[aria-invalid="true"],
.contact-form-field textarea[aria-invalid="true"] {
  border-color: rgba(220, 132, 118, 0.82);
}

.contact-form-field input:-webkit-autofill,
.contact-form-field input:-webkit-autofill:hover,
.contact-form-field input:-webkit-autofill:focus {
  -webkit-text-fill-color: #eee8e1;
  caret-color: #eee8e1;
  box-shadow: 0 0 0 1000px #0a1415 inset;
  transition: background-color 9999s ease-out 0s;
}

.contact-label-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}

.contact-character-count {
  flex-shrink: 0;
  font-size: 0.74rem;
  color: #a4aeaa;
}

.contact-field-error {
  display: block;
  min-height: 0;
  margin-top: 7px;
  font-size: 0.78rem;
  line-height: 1.45;
  color: #e2b2aa;
}

.contact-field-error:empty {
  display: none;
}


/* =========================================================
   CONTACT SUBMIT BUTTON
========================================================= */

.contact-submit-button {
  min-height: 52px;
  padding: 14px 26px;
  border: 1px solid #c5a47e;
  background: #eee8e1;
  color: #071011;
  font: inherit;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

.contact-submit-button:hover {
  background: transparent;
  border-color: #c5a47e;
  color: #eee8e1;
  transform: translateY(-1px);
}

.contact-submit-button:focus-visible {
  outline: 2px solid #37d4d0;
  outline-offset: 3px;
}

.contact-submit-button:disabled {
  cursor: wait;
  opacity: 0.65;
  transform: none;
}

.contact-form-message {
  display: none;
  padding: 13px 15px;
  background: #0a1415;
  font-size: 0.88rem;
  line-height: 1.55;
}

.contact-form-message:not(:empty) {
  display: block;
}

.contact-form-message.is-success {
  border: 1px solid rgba(55, 212, 208, 0.45);
  background: rgba(55, 212, 208, 0.08);
  color: #a8e4df;
}

.contact-form-message.is-error {
  border: 1px solid rgba(197, 110, 96, 0.5);
  background: rgba(197, 110, 96, 0.08);
  color: #e2b2aa;
}


/* =========================================================
   QUICK HELP CARD
========================================================= */

.contact-help-column {
  position: sticky;
  top: 32px;
}

.contact-help-card {
  padding: 34px;
  border: 1px solid rgba(183, 121, 82, 0.2);
  background: #101c1d;
  color: #f4eee5;
}

.contact-help-card h2 {
  color: #f4eee5;
}

.contact-help-intro {
  margin: 15px 0 28px;
  line-height: 1.65;
  color: rgba(244, 238, 229, 0.65);
}

.contact-help-links {
  border-top: 1px solid rgba(244, 238, 229, 0.12);
}

.contact-help-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(244, 238, 229, 0.12);
  color: inherit;
  text-decoration: none;
  transition:
    padding-left 160ms ease,
    color 160ms ease;
}

.contact-help-link:hover {
  padding-left: 6px;
  color: #d08b5d;
}

.contact-help-link-content {
  display: grid;
  gap: 5px;
}

.contact-help-link-content strong {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #f4eee5;
}

.contact-help-link-content > span {
  max-width: 290px;
  font-size: 0.79rem;
  line-height: 1.55;
  color: rgba(244, 238, 229, 0.58);
}

.contact-help-arrow {
  flex-shrink: 0;
  font-size: 1.15rem;
  color: #b77952;
}


/* =========================================================
   SOCIAL SECTION
========================================================= */

.contact-social-section {
  padding: 92px 24px 100px;
  background: #091314;
}

.contact-social-inner {
  width: min(100%, 1180px);
  margin: 0 auto;
}

.contact-social-heading {
  max-width: 680px;
  margin-bottom: 44px;
}

.contact-social-heading h2 {
  color: #f4eee5;
}

.contact-social-heading > p:last-child {
  max-width: 600px;
  margin: 16px 0 0;
  font-size: 0.96rem;
  line-height: 1.75;
  color: rgba(244, 238, 229, 0.62);
}

.contact-social-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.contact-social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-width: 0;
  min-height: 116px;
  padding: 17px 10px 15px;
  border: 1px solid rgba(244, 238, 229, 0.12);
  background: #101c1d;
  color: #f4eee5;
  text-align: center;
  text-decoration: none;
  transition:
    border-color 170ms ease,
    background-color 170ms ease,
    transform 170ms ease;
}

.contact-social-card:hover {
  border-color: rgba(183, 121, 82, 0.65);
  background: rgba(183, 121, 82, 0.08);
  transform: translateY(-2px);
}

.contact-social-card:focus-visible {
  outline: 2px solid #37d4d0;
  outline-offset: 2px;
}

.contact-social-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
}

.contact-social-icon img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 48px;
  max-height: 48px;
  object-fit: contain;
}

.contact-social-name {
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.04em;
}


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

@media (max-width: 900px) {

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-help-column {
    position: static;
  }

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


@media (max-width: 650px) {

  .contact-hero {
    padding: 64px 20px 62px;
  }

  .contact-hero::after {
    width: 230px;
    height: 230px;
    right: -100px;
    top: -70px;
  }

  .contact-hero h1 {
    font-size: clamp(2.7rem, 14vw, 4.3rem);
  }

  .contact-hero-lead {
    margin-top: 22px;
    font-size: 0.96rem;
    line-height: 1.7;
  }

  .contact-main-section {
    padding: 62px 18px 68px;
  }

  .contact-layout {
    gap: 40px;
  }

  .contact-section-heading {
    margin-bottom: 25px;
  }

  .contact-section-heading h2,
  .contact-help-card h2,
  .contact-social-heading h2 {
    font-size: 2.2rem;
  }

  .contact-form-card {
    padding: 24px 20px;
  }

  .contact-form {
    gap: 21px;
  }

  .contact-form-field input,
  .contact-form-field select {
    min-height: 50px;
  }

  .contact-form-field textarea {
    min-height: 175px;
  }

  .contact-submit-button {
    width: 100%;
    min-height: 52px;
  }

  .contact-help-card {
    padding: 28px 22px;
  }

  .contact-help-intro {
    display: none;
  }

  .contact-help-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
    margin-top: 24px;
    border-top: 0;
  }

  .contact-help-link {
    justify-content: center;
    min-width: 0;
    min-height: 48px;
    padding: 10px 8px;
    border: 1px solid rgba(183, 121, 82, 0.3);
    background: #0a1415;
    text-align: center;
  }

  .contact-help-link:hover {
    padding-left: 8px;
    border-color: rgba(183, 121, 82, 0.68);
    background: #101c1d;
  }

  .contact-help-link:focus-visible {
    outline: 2px solid #37d4d0;
    outline-offset: 2px;
  }

  .contact-help-link-content {
    min-width: 0;
  }

  .contact-help-link-content strong {
    font-size: 0.78rem;
    line-height: 1.3;
  }

  .contact-help-link-content > span {
    display: none;
  }

  .contact-help-arrow {
    display: none;
  }

  .contact-social-section {
    padding: 66px 18px 72px;
  }

  .contact-social-heading {
    margin-bottom: 30px;
  }

  .contact-social-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 9px;
  }

  .contact-social-card {
    min-height: 100px;
    padding: 13px 6px 11px;
  }

  .contact-social-icon {
    width: 46px;
    height: 46px;
  }

  .contact-social-icon img {
    max-width: 42px;
    max-height: 42px;
  }

  .contact-social-name {
    font-size: 0.7rem;
  }
}


@media (max-width: 360px) {

  .contact-help-links,
  .contact-social-grid {
    gap: 7px;
  }

  .contact-social-card {
    min-height: 92px;
    padding-right: 3px;
    padding-left: 3px;
  }

  .contact-social-icon {
    width: 40px;
    height: 40px;
  }

  .contact-social-icon img {
    max-width: 38px;
    max-height: 38px;
  }

  .contact-social-name {
    font-size: 0.65rem;
    letter-spacing: 0.02em;
  }

  .contact-label-row {
    align-items: flex-start;
  }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

  .contact-form-field input,
  .contact-form-field select,
  .contact-form-field textarea,
  .contact-submit-button,
  .contact-help-link,
  .contact-social-card {
    transition: none;
  }
}

/* =========================================================
   ABOUT SAMANTHA
   ========================================================= */

.about-page {
  --about-black: #07100f;
  --about-deep: #0b1716;
  --about-teal: #37c9c8;
  --about-teal-soft: #8ededd;
  --about-cream: #f5f1e8;
  --about-white: #fffdf8;
  --about-gold: #c6a15b;
  --about-text: #1d1a17;
  --about-muted: #6f6860;
  --about-purple-secret: #75608e;

  background: var(--about-cream);
  color: var(--about-text);
  overflow: hidden;
}

.about-page *,
.about-page *::before,
.about-page *::after {
  box-sizing: border-box;
}


/* =========================================================
   SHARED ABOUT TYPOGRAPHY
   ========================================================= */

.about-page .about-eyebrow {
  margin: 0 0 18px;
  color: var(--about-teal);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  line-height: 1.4;
  text-transform: uppercase;
}

.about-page .about-eyebrow-dark {
  color: var(--about-gold);
}

.about-page .about-section-title {
  margin: 0;
  color: var(--about-text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.3rem, 5vw, 4.8rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.about-page .about-section-title-dark {
  color: var(--about-white);
}


/* =========================================================
   AUTHOR HERO
   ========================================================= */

.about-page .about-hero {
  position: relative;
  background:
    radial-gradient(
      circle at 82% 22%,
      rgba(55, 201, 200, 0.12),
      transparent 31%
    ),
    var(--about-black);
  color: var(--about-white);
}

.about-page .about-hero::after {
  content: "";
  position: absolute;
  right: 7%;
  bottom: 0;
  width: 170px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--about-gold),
    transparent
  );
}

.about-page .about-hero-inner {
  width: min(1180px, calc(100% - 80px));
  min-height: 720px;
  margin: 0 auto;
  padding: 100px 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: clamp(60px, 8vw, 120px);
  align-items: center;
}

.about-page .about-title {
  margin: 0;
  color: var(--about-white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.5rem, 9vw, 8.6rem);
  font-weight: 400;
  line-height: 0.78;
  letter-spacing: -0.06em;
}

.about-page .about-title span {
  color: var(--about-teal);
  font-style: italic;
}

.about-page .about-hero-tagline {
  margin: 42px 0 0;
  max-width: 600px;
  color: var(--about-white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.4;
}

.about-page .about-hero-description {
  max-width: 610px;
  margin: 24px 0 0;
  color: rgba(255, 253, 248, 0.72);
  font-size: 1.05rem;
  line-height: 1.8;
}

.about-page .about-hero-tropes {
  margin: 32px 0 0;
  color: var(--about-gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.8;
  text-transform: uppercase;
}

.about-page .about-hero-tropes span {
  display: inline-block;
  margin: 0 9px;
  color: var(--about-teal);
}

.about-page .about-hero-image-wrap {
  width: 100%;
  max-width: 440px;
  justify-self: end;
}

.about-page .about-hero-image-frame {
  position: relative;
  padding: 10px;
  border: 1px solid rgba(198, 161, 91, 0.7);
}

.about-page .about-hero-image-frame::before {
  content: "";
  position: absolute;
  top: -13px;
  left: -13px;
  width: 80px;
  height: 80px;
  border-top: 2px solid var(--about-teal);
  border-left: 2px solid var(--about-teal);
  pointer-events: none;
}

.about-page .about-hero-image-frame::after {
  content: "";
  position: absolute;
  right: -13px;
  bottom: -13px;
  width: 80px;
  height: 80px;
  border-right: 2px solid var(--about-gold);
  border-bottom: 2px solid var(--about-gold);
  pointer-events: none;
}

.about-page .about-hero-image {
  display: block;
  width: 100%;
  height: auto;
}

.about-page .about-image-caption {
  margin: 22px 0 0;
  color: rgba(255, 253, 248, 0.56);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  line-height: 1.5;
  text-align: right;
  text-transform: uppercase;
}


/* =========================================================
   STORY SECTIONS
   ========================================================= */

.about-page .about-story {
  background: var(--about-cream);
}

.about-page .about-story-intro,
.about-page .about-story-narrow {
  width: min(850px, calc(100% - 80px));
  margin: 0 auto;
  padding: 120px 0;
}

.about-page .about-story-lead {
  margin: 52px 0 0;
  color: var(--about-text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  line-height: 1.55;
}

.about-page .about-story-lead em {
  color: var(--about-teal);
}

.about-page .about-story-copy {
  margin-top: 38px;
}

.about-page .about-story-copy p {
  margin: 0 0 24px;
  color: #413c37;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
  line-height: 1.85;
}

.about-page .about-story-copy p:last-child {
  margin-bottom: 0;
}

.about-page .about-story-copy em {
  color: #1e5f60;
}


/* =========================================================
   THE QUESTIONS
   ========================================================= */

.about-page .about-questions {
  position: relative;
  background:
    linear-gradient(
      115deg,
      rgba(55, 201, 200, 0.08),
      transparent 45%
    ),
    var(--about-deep);
  color: var(--about-white);
}

.about-page .about-questions::after {
  content: "";
  position: absolute;
  right: 8%;
  bottom: 12%;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(117, 96, 142, 0.035);
  filter: blur(18px);
  pointer-events: none;
}

.about-page .about-questions-inner {
  width: min(1050px, calc(100% - 80px));
  margin: 0 auto;
  padding: 72px 0 78px;
}

.about-page .about-question-list {
  margin-top: 36px;
}

.about-page .about-question {
  margin: 0;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 253, 248, 0.12);
  color: var(--about-white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.5rem, 3.3vw, 3rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.about-page .about-question:first-child {
  border-top: 1px solid rgba(255, 253, 248, 0.12);
}

.about-page .about-question span {
  color: var(--about-teal);
  font-style: italic;
}


/* =========================================================
   WRITING JOURNEY
   ========================================================= */

.about-page .about-story-middle {
  background: var(--about-white);
}

.about-page .about-story-middle .about-story-copy p:nth-child(2),
.about-page .about-story-middle .about-story-copy p:nth-child(6) {
  color: var(--about-text);
  font-size: 1.35rem;
  font-style: italic;
}


/* =========================================================
   1,000 READS
   ========================================================= */

.about-page .about-milestone {
  position: relative;
  background: var(--about-teal);
  color: var(--about-black);
}

.about-page .about-milestone-inner {
  width: min(1000px, calc(100% - 80px));
  margin: 0 auto;
  padding: 64px 0;
  text-align: center;
}

.about-page .about-milestone-number {
  margin: 0;
  color: var(--about-black);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(5rem, 7vw, 7rem);
  line-height: 0.82;
  letter-spacing: -0.07em;
}

.about-page .about-milestone-title {
  margin: 24px 0 0;
  color: var(--about-black);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: 400;
  line-height: 1;
}

.about-page .about-milestone-copy {
  margin: 22px 0 0;
  font-size: 1rem;
  line-height: 1.7;
}

.about-page .about-milestone-copy span {
  display: block;
  margin-top: 5px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  font-style: italic;
}


/* =========================================================
   PUBLISHING
   ========================================================= */

.about-page .about-publishing {
  background: var(--about-cream);
}


/* =========================================================
   AUTHOR MANTRA
   ========================================================= */

.about-page .about-mantra {
  position: relative;
  background:
    radial-gradient(
      circle at center,
      rgba(55, 201, 200, 0.08),
      transparent 42%
    ),
    var(--about-black);
  color: var(--about-white);
  overflow: hidden;
}

.about-page .about-mantra::before {
  content: "";
  position: absolute;
  width: 210px;
  height: 210px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(117, 96, 142, 0.045);
  filter: blur(25px);
  pointer-events: none;
}

.about-page .about-mantra-inner {
  position: relative;
  z-index: 1;
  width: min(1050px, calc(100% - 80px));
  margin: 0 auto;
  padding: 78px 0;
  text-align: center;
}

.about-page .about-mantra-quote {
  margin: 30px auto 0;
  color: var(--about-white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.5rem, 4.5vw, 4.5rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.about-page .about-mantra-quote::first-letter {
  color: var(--about-teal);
}

.about-page .about-mantra-author {
  margin: 30px 0 0;
  color: var(--about-gold);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.about-page .about-mantra-copy {
  margin: 16px 0 0;
  color: rgba(255, 253, 248, 0.6);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  font-style: italic;
}


/* =========================================================
   BOUND IN INK TODAY
   ========================================================= */

.about-page .about-today {
  background: var(--about-white);
}

.about-page .about-today-inner {
  width: min(1100px, calc(100% - 80px));
  margin: 0 auto;
  padding: 125px 0;
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: clamp(60px, 10vw, 130px);
  align-items: start;
}

.about-page .about-today-copy {
  padding-top: 34px;
}

.about-page .about-today-copy p {
  margin: 0 0 26px;
  color: #413c37;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  line-height: 1.85;
}

.about-page .about-today-copy p:last-child {
  margin-bottom: 0;
}


/* =========================================================
   BEHIND THE BOOKS
   ========================================================= */

.about-page .about-personal {
  background: var(--about-deep);
  color: var(--about-white);
}

.about-page .about-personal-inner {
  width: min(1120px, calc(100% - 80px));
  margin: 0 auto;
  padding: 120px 0;
}

.about-page .about-personal-heading {
  max-width: 700px;
}

.about-page .about-facts {
  margin-top: 65px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(198, 161, 91, 0.3);
  border-left: 1px solid rgba(198, 161, 91, 0.3);
}

.about-page .about-fact {
  min-height: 250px;
  padding: 34px 28px;
  border-right: 1px solid rgba(198, 161, 91, 0.3);
  border-bottom: 1px solid rgba(198, 161, 91, 0.3);
}

.about-page .about-fact-icon {
  margin: 0 0 35px;
  font-size: 1.7rem;
}

.about-page .about-fact h3 {
  margin: 0;
  color: var(--about-gold);
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.about-page .about-fact p:last-child {
  margin: 16px 0 0;
  color: rgba(255, 253, 248, 0.75);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  line-height: 1.65;
}

.about-page .about-fact-copy-compact {
  display: none;
}


/* =========================================================
   CLOSING
   ========================================================= */

.about-page .about-closing {
  background: var(--about-cream);
}

.about-page .about-closing-inner {
  width: min(900px, calc(100% - 80px));
  margin: 0 auto;
  padding: 130px 0;
  text-align: center;
}

.about-page .about-closing-title {
  margin: 0;
  color: var(--about-text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 6vw, 5.75rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.about-page .about-closing-copy {
  max-width: 650px;
  margin: 45px auto 0;
}

.about-page .about-closing-copy p {
  margin: 0 0 20px;
  color: #514a44;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  line-height: 1.8;
}

.about-page .about-closing-copy p:last-child {
  margin-bottom: 0;
}

.about-page .about-closing-actions {
  margin-top: 48px;
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.about-page .about-primary-button,
.about-page .about-secondary-button {
  min-height: 54px;
  padding: 16px 27px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 1px solid var(--about-black);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.about-page .about-primary-button {
  background: var(--about-black);
  color: var(--about-white);
}

.about-page .about-secondary-button {
  background: transparent;
  color: var(--about-black);
}

.about-page .about-primary-button:hover,
.about-page .about-primary-button:focus-visible {
  background: var(--about-teal);
  border-color: var(--about-teal);
  color: var(--about-black);
}

.about-page .about-secondary-button:hover,
.about-page .about-secondary-button:focus-visible {
  background: var(--about-black);
  color: var(--about-white);
}

.about-page .about-primary-button:focus-visible,
.about-page .about-secondary-button:focus-visible {
  outline: 3px solid rgba(55, 201, 200, 0.35);
  outline-offset: 4px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

  .about-page .about-hero-inner {
    width: min(100% - 50px, 760px);
    min-height: auto;
    padding: 80px 0;
    grid-template-columns: 1fr 0.75fr;
    gap: 45px;
  }

  .about-page .about-title {
    font-size: clamp(4rem, 10vw, 6.5rem);
  }

  .about-page .about-hero-image-wrap {
    max-width: 330px;
  }

  .about-page .about-story-intro,
  .about-page .about-story-narrow,
  .about-page .about-questions-inner,
  .about-page .about-milestone-inner,
  .about-page .about-mantra-inner,
  .about-page .about-personal-inner,
  .about-page .about-closing-inner {
    width: calc(100% - 50px);
  }

  .about-page .about-today-inner {
    width: calc(100% - 50px);
    grid-template-columns: 1fr 1fr;
    gap: 55px;
  }

  .about-page .about-questions-inner {
    padding: 64px 0 68px;
  }

  .about-page .about-question-list {
    margin-top: 32px;
  }

  .about-page .about-question {
    padding: 20px 0;
    font-size: clamp(2.15rem, 4.2vw, 2.65rem);
  }

  .about-page .about-milestone-inner {
    padding: 56px 0;
  }

  .about-page .about-milestone-number {
    font-size: clamp(4.75rem, 9vw, 6rem);
  }

  .about-page .about-milestone-title {
    margin-top: 22px;
    font-size: clamp(1.9rem, 4.5vw, 2.6rem);
  }

  .about-page .about-mantra-inner {
    padding: 68px 0;
  }

  .about-page .about-mantra-quote {
    font-size: clamp(3rem, 6vw, 3.75rem);
  }

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

}


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

@media (max-width: 650px) {

  .about-page .about-hero-inner {
    width: calc(100% - 40px);
    padding: 65px 0 75px;
    display: flex;
    flex-direction: column;
    gap: 55px;
  }

  .about-page .about-hero-content {
    width: 100%;
  }

  .about-page .about-title {
    font-size: clamp(4rem, 20vw, 6.3rem);
    line-height: 0.82;
  }

  .about-page .about-hero-tagline {
    margin-top: 34px;
    font-size: 1.4rem;
  }

  .about-page .about-hero-description {
    font-size: 1rem;
    line-height: 1.7;
  }

  .about-page .about-hero-tropes {
    font-size: 0.68rem;
    line-height: 2;
  }

  .about-page .about-hero-tropes span {
    margin: 0 5px;
  }

  .about-page .about-hero-image-wrap {
    width: calc(100% - 14px);
    max-width: 390px;
    margin: 0 auto;
    justify-self: auto;
  }

  .about-page .about-image-caption {
    text-align: left;
  }

  .about-page .about-story-intro,
  .about-page .about-story-narrow,
  .about-page .about-questions-inner,
  .about-page .about-milestone-inner,
  .about-page .about-mantra-inner,
  .about-page .about-personal-inner,
  .about-page .about-closing-inner {
    width: calc(100% - 40px);
  }

  .about-page .about-story-intro,
  .about-page .about-story-narrow {
    padding: 80px 0;
  }

  .about-page .about-section-title {
    font-size: clamp(2.5rem, 12vw, 4rem);
    line-height: 1.02;
  }

  .about-page .about-story-lead {
    margin-top: 38px;
    font-size: 1.3rem;
  }

  .about-page .about-story-copy {
    margin-top: 30px;
  }

  .about-page .about-story-copy p {
    font-size: 1.02rem;
    line-height: 1.75;
  }

  .about-page .about-questions-inner {
    padding: 52px 0 58px;
  }

  .about-page .about-question-list {
    margin-top: 26px;
  }

  .about-page .about-question {
    padding: 16px 0;
    font-size: clamp(1.7rem, 6.3vw, 2.2rem);
  }

  .about-page .about-milestone-inner {
    padding: 50px 0;
  }

  .about-page .about-milestone-number {
    font-size: clamp(4rem, 16vw, 5rem);
  }

  .about-page .about-milestone-title {
    margin-top: 18px;
    font-size: clamp(1.75rem, 7vw, 2.4rem);
  }

  .about-page .about-milestone-copy {
    margin-top: 20px;
  }

  .about-page .about-mantra-inner {
    padding: 60px 0;
  }

  .about-page .about-mantra-quote {
    margin-top: 25px;
    font-size: clamp(2.2rem, 9vw, 3rem);
    line-height: 1.03;
  }

  .about-page .about-mantra-author {
    margin-top: 28px;
  }

  .about-page .about-mantra-copy {
    margin-top: 16px;
  }

  .about-page .about-today-inner {
    width: calc(100% - 40px);
    padding: 85px 0;
    display: block;
  }

  .about-page .about-today-copy {
    padding-top: 45px;
  }

  .about-page .about-today-copy p {
    font-size: 1.02rem;
    line-height: 1.75;
  }

  .about-page .about-personal-inner {
    padding: 85px 0;
  }

  .about-page .about-facts {
    margin-top: 45px;
    grid-template-columns: repeat(2, 1fr);
  }

  .about-page .about-fact {
    min-height: 220px;
    padding: 25px 20px;
  }

  .about-page .about-fact-icon {
    margin-bottom: 27px;
  }

  .about-page .about-closing-inner {
    padding: 72px 0;
  }

  .about-page .about-closing-title {
    font-size: clamp(2.45rem, 11.5vw, 4rem);
    line-height: 1.03;
  }

  .about-page .about-closing-copy {
    margin-top: 35px;
  }

  .about-page .about-closing-actions {
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1fr;
  }

  .about-page .about-primary-button,
  .about-page .about-secondary-button {
    width: 100%;
  }

}


/* =========================================================
   PHONE
   ========================================================= */

@media (max-width: 430px) {

  .about-page .about-story-intro,
  .about-page .about-story-narrow,
  .about-page .about-today-inner,
  .about-page .about-personal-inner,
  .about-page .about-closing-inner {
    width: calc(100% - 48px);
  }

  .about-page .about-story-intro,
  .about-page .about-story-narrow {
    padding: 60px 0;
  }

  .about-page .about-story-middle .about-section-title {
    font-size: 2.35rem;
    line-height: 1.02;
  }

  .about-page .about-publishing .about-section-title {
    font-size: 2.35rem;
    line-height: 1.08;
  }

  .about-page .about-story-copy p {
    font-size: 1.2rem;
    line-height: 1.65;
  }

  .about-page .about-story-middle .about-story-copy p:nth-child(2),
  .about-page .about-story-middle .about-story-copy p:nth-child(6) {
    font-size: 1.2rem;
    line-height: 1.65;
  }

  .about-page .about-section-title {
    font-size: clamp(2rem, 8vw, 2.6rem);
    line-height: 1.05;
  }

  .about-page .about-personal-heading .about-section-title {
    font-size: clamp(2rem, 8vw, 2.5rem);
    line-height: 1.02;
  }

  .about-page .about-story-lead {
    margin-top: 32px;
    font-size: 1.2rem;
    line-height: 1.65;
  }

  .about-page .about-story-copy {
    margin-top: 26px;
  }

  .about-page .about-story-copy p,
  .about-page .about-today-copy p {
    margin-bottom: 22px;
  }

  .about-page .about-today-inner,
  .about-page .about-personal-inner {
    padding: 70px 0;
  }

  .about-page .about-today-copy {
    padding-top: 34px;
  }

  .about-page .about-questions .about-question {
    padding: 14px 0;
    font-size: 2rem;
    line-height: 1.12;
  }

  .about-page .about-milestone-number {
    font-size: 4rem;
    line-height: 1;
  }

  .about-page .about-milestone-title {
    font-size: 2rem;
    line-height: 1.15;
  }

  .about-page .about-milestone-copy {
    font-size: 1.1rem;
    line-height: 1.5;
  }

  .about-page .about-milestone-copy span {
    font-size: 1.6rem;
    line-height: 1.25;
  }

  .about-page .about-mantra-quote {
    font-size: 2.4rem;
    line-height: 1.08;
  }

  .about-page .about-today-inner {
    padding: 60px 0;
  }

  .about-page .about-today-heading .about-section-title {
    font-size: 2.4rem;
    line-height: 1.02;
  }

  .about-page .about-facts {
    margin-top: 28px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-page .about-fact {
    min-height: 0;
    min-width: 0;
    padding: 18px 20px;
  }

  .about-page .about-fact-icon {
    margin-bottom: 12px;
    font-size: 30px;
  }

  .about-page .about-fact h3 {
    font-size: 0.78rem;
  }

  .about-page .about-fact p:last-child {
    margin-top: 10px;
    font-size: 1.125rem;
    line-height: 1.4;
  }

  .about-page .about-fact-copy-full {
    display: none;
  }

  .about-page .about-fact-copy-compact {
    display: inline;
  }

}


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

@media (max-width: 375px) {

  .about-page .about-hero-inner,
  .about-page .about-story-intro,
  .about-page .about-story-narrow,
  .about-page .about-questions-inner,
  .about-page .about-milestone-inner,
  .about-page .about-mantra-inner,
  .about-page .about-today-inner,
  .about-page .about-personal-inner,
  .about-page .about-closing-inner {
    width: calc(100% - 30px);
  }

  .about-page .about-title {
    font-size: clamp(3.7rem, 20vw, 5rem);
  }

  .about-page .about-hero-image-wrap {
    width: calc(100% - 12px);
  }

  .about-page .about-story-intro,
  .about-page .about-story-narrow,
  .about-page .about-today-inner,
  .about-page .about-personal-inner,
  .about-page .about-closing-inner {
    width: calc(100% - 48px);
  }

  .about-page .about-questions-inner {
    padding: 46px 0 50px;
  }

  .about-page .about-milestone-inner {
    padding: 46px 0;
  }

  .about-page .about-mantra-inner {
    padding: 54px 0;
  }

  .about-page .about-closing-inner {
    padding: 64px 0;
  }

  .about-page .about-primary-button,
  .about-page .about-secondary-button {
    padding-right: 18px;
    padding-left: 18px;
    letter-spacing: 0.11em;
  }

}


@media (max-width: 320px) {

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

  .about-page .about-fact {
    min-height: 0;
    padding: 18px;
  }

  .about-page .about-fact-icon {
    margin-bottom: 12px;
    font-size: 28px;
  }

  .about-page .about-fact h3 {
    font-size: 0.75rem;
  }

  .about-page .about-fact p:last-child {
    margin-top: 10px;
    font-size: 1.0625rem;
    line-height: 1.4;
  }

  .about-page .about-story-intro,
  .about-page .about-story-narrow,
  .about-page .about-today-inner,
  .about-page .about-personal-inner,
  .about-page .about-closing-inner {
    width: calc(100% - 30px);
  }

  .about-page .about-section-title {
    font-size: clamp(1.9rem, 9.5vw, 2.15rem);
  }

  .about-page .about-personal-heading .about-section-title {
    font-size: clamp(1.9rem, 9.25vw, 2.1rem);
  }

}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

  .about-page .about-primary-button,
  .about-page .about-secondary-button {
    transition: none;
  }

}

/* =========================================================
   POLICY PAGES
   Shared by Privacy, Terms, Refunds, Shipping, etc.
   ========================================================= */

.policy-page {
  --policy-black: #081211;
  --policy-deep: #0d1b1a;
  --policy-teal: #35c8c7;
  --policy-teal-dark: #176f70;
  --policy-gold: #c7a45d;
  --policy-cream: #f5f1e8;
  --policy-white: #fffdf8;
  --policy-text: #292622;
  --policy-muted: #6e6860;
  --policy-border: rgba(41, 38, 34, 0.14);

  background: var(--policy-cream);
  color: var(--policy-text);
}

.policy-page *,
.policy-page *::before,
.policy-page *::after {
  box-sizing: border-box;
}


/* =========================================================
   POLICY HERO
   ========================================================= */

.policy-page .policy-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 82% 30%,
      rgba(53, 200, 199, 0.11),
      transparent 30%
    ),
    var(--policy-black);
  color: var(--policy-white);
}

.policy-page .policy-hero::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--policy-teal),
    var(--policy-gold),
    transparent 75%
  );
}

.policy-page .policy-hero-inner {
  width: min(1150px, calc(100% - 80px));
  margin: 0 auto;
  padding: 90px 0 85px;
}

.policy-page .policy-eyebrow {
  margin: 0 0 16px;
  color: var(--policy-gold);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  line-height: 1.4;
  text-transform: uppercase;
}

.policy-page .policy-title {
  margin: 0;
  color: var(--policy-white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.policy-page .policy-intro {
  max-width: 700px;
  margin: 28px 0 0;
  color: rgba(255, 253, 248, 0.76);
  font-size: 1.05rem;
  line-height: 1.75;
}

.policy-page .policy-updated {
  margin: 28px 0 0;
  color: var(--policy-teal);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.5;
  text-transform: uppercase;
}


/* =========================================================
   MAIN POLICY LAYOUT
   ========================================================= */

.policy-page .policy-content {
  background: var(--policy-cream);
}

.policy-page .policy-layout {
  width: min(1150px, calc(100% - 80px));
  margin: 0 auto;
  padding: 90px 0 120px;
  display: grid;
  grid-template-columns: 235px minmax(0, 760px);
  gap: clamp(55px, 8vw, 105px);
  justify-content: center;
  align-items: start;
}


/* =========================================================
   POLICY SIDE NAVIGATION
   ========================================================= */

.policy-page .policy-nav {
  position: sticky;
  top: 110px;
  padding: 24px 0;
  border-top: 2px solid var(--policy-teal);
  border-bottom: 1px solid var(--policy-border);
}

.policy-page .policy-nav-title {
  margin: 0 0 18px;
  color: var(--policy-text);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}


/* =========================================================
   ORDER SUPPORT
========================================================= */

.order-support { min-width: 0; }

.order-support-shop {
  padding: 48px 20px;
  background: #0b1213;
  color: #f1ece6;
}

.order-support-shop .order-support-inner {
  width: min(920px, 100%);
  margin: 0 auto;
  padding: 30px 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border: 1px solid rgba(54, 214, 207, 0.28);
  border-left: 3px solid #36d6cf;
  background: #101c1d;
}

.order-support-copy { min-width: 0; }

.order-support-eyebrow {
  margin: 0 0 8px;
  color: #c99b63;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.order-support h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 400;
  line-height: 1.08;
}

.order-support-copy > p:last-child {
  max-width: 610px;
  margin: 12px 0 0;
  font-size: 0.86rem;
  line-height: 1.65;
}

.order-support-shop .order-support-copy > p:last-child { color: #b8b1aa; }

.order-support-button {
  flex: 0 0 auto;
  min-height: 48px;
  padding: 14px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #36d6cf;
  background: #36d6cf;
  color: #081011;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-align: center;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.order-support-button:hover {
  transform: translateY(-2px);
  background: transparent;
  color: #36d6cf;
}

.order-support-button:focus-visible {
  outline: 3px solid rgba(54, 214, 207, 0.38);
  outline-offset: 4px;
}

.order-support-contact {
  margin-bottom: 28px;
  color: #101c1d;
}

.order-support-contact h2 { font-size: 1.9rem; }

.order-support-contact .order-support-copy > p:last-child { color: #4f5957; }
.order-support-contact .order-support-button { margin-top: 16px; }

.order-support-followup {
  margin: 10px 0 0;
  color: #596360;
  font-size: 0.78rem;
  line-height: 1.55;
}

@media (max-width: 650px) {
  .order-support-shop { padding: 32px 18px; }

  .order-support-shop .order-support-inner {
    padding: 24px 22px;
    display: block;
  }

  .order-support h2 { font-size: clamp(1.6rem, 8vw, 2rem); }

  .order-support-copy > p:last-child {
    margin-top: 10px;
    line-height: 1.55;
  }

  .order-support-shop .order-support-button,
  .order-support-contact .order-support-button { width: 100%; }

  .order-support-shop .order-support-button { margin-top: 20px; }

  .order-support-contact {
    margin-bottom: 24px;
  }

  .order-support-contact h2 { font-size: 1.65rem; }
  .order-support-contact .order-support-button { margin-top: 14px; }
  .order-support-followup { margin-top: 9px; }
}

@media (max-width: 400px) {
  .order-support-shop {
    padding-right: 14px;
    padding-left: 14px;
  }

  .order-support-shop .order-support-inner { padding: 21px 17px; }
}

@media (prefers-reduced-motion: reduce) {
  .order-support-button { transition: none; }
}

.policy-page .policy-nav-toggle {
  display: none;
}

.policy-page .policy-nav nav {
  display: flex;
  flex-direction: column;
}

@media (min-width: 651px) {

  .policy-page .policy-nav {
    max-height: calc(100vh - 134px);
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }

  .policy-page .policy-nav nav {
    min-height: 0;
    padding-bottom: 12px;
    overflow-x: hidden;
    overflow-y: auto;
    scrollbar-color: rgba(23, 111, 112, 0.45) transparent;
    scrollbar-width: thin;
  }

  .policy-page .policy-nav nav::-webkit-scrollbar {
    width: 6px;
  }

  .policy-page .policy-nav nav::-webkit-scrollbar-track {
    background: transparent;
  }

  .policy-page .policy-nav nav::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgba(23, 111, 112, 0.45);
  }

}

.policy-page .policy-nav a {
  position: relative;
  padding: 8px 0 8px 14px;
  color: var(--policy-muted);
  font-size: 0.82rem;
  line-height: 1.4;
  text-decoration: none;
  transition:
    color 160ms ease,
    transform 160ms ease;
}

.policy-page .policy-nav a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--policy-gold);
  transform: translateY(-50%);
}

.policy-page .policy-nav a:hover,
.policy-page .policy-nav a:focus-visible {
  color: var(--policy-teal-dark);
  transform: translateX(3px);
}

.policy-page .policy-nav a:focus-visible {
  outline: 2px solid var(--policy-teal);
  outline-offset: 3px;
}


/* =========================================================
   POLICY ARTICLE
   ========================================================= */

.policy-page .policy-article {
  min-width: 0;
}

.policy-page .policy-section {
  scroll-margin-top: 120px;
  padding: 0 0 62px;
  margin: 0 0 62px;
  border-bottom: 1px solid var(--policy-border);
}

.policy-page .policy-section:last-child {
  margin-bottom: 0;
}

.policy-page .policy-section-number {
  margin: 0 0 12px;
  color: var(--policy-teal-dark);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.4;
}

.policy-page .policy-section h2 {
  margin: 0 0 26px;
  color: var(--policy-text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3vw, 2.55rem);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.policy-page .policy-section h3 {
  margin: 34px 0 13px;
  color: var(--policy-teal-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.45;
  text-transform: uppercase;
}

.policy-page .policy-section p {
  margin: 0 0 20px;
  color: #47423c;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.03rem;
  line-height: 1.8;
}

.policy-page .policy-section p:last-child {
  margin-bottom: 0;
}

.policy-page .policy-section ul {
  margin: 22px 0 25px;
  padding: 0;
  list-style: none;
}

.policy-page .policy-section li {
  position: relative;
  margin: 0 0 12px;
  padding-left: 25px;
  color: #47423c;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  line-height: 1.7;
}

.policy-page .policy-section li::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border: 1px solid var(--policy-gold);
  transform: rotate(45deg);
}

.policy-page .policy-section a:not(.policy-contact-button) {
  color: var(--policy-teal-dark);
  text-decoration-color: rgba(23, 111, 112, 0.35);
  text-underline-offset: 3px;
}

.policy-page .policy-section a:not(.policy-contact-button):hover {
  text-decoration-color: currentColor;
}


/* =========================================================
   CONTACT / FINAL POLICY SECTION
   ========================================================= */

.policy-page .policy-contact {
  padding: 42px;
  border: 1px solid rgba(53, 200, 199, 0.28);
  background:
    linear-gradient(
      135deg,
      rgba(53, 200, 199, 0.07),
      rgba(199, 164, 93, 0.04)
    ),
    var(--policy-white);
}

.policy-page .policy-contact h2 {
  margin-bottom: 20px;
}

.policy-page .policy-contact-actions {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.policy-page .policy-contact-button {
  min-width: 0;
  min-height: 52px;
  margin-top: 12px;
  padding: 15px 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;

  border: 1px solid var(--policy-black);
  background: var(--policy-black);
  color: var(--policy-white);

  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.4;
  text-decoration: none;
  text-transform: uppercase;

  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    color 160ms ease;
}

.policy-page .policy-contact-actions .policy-contact-button {
  margin-top: 0;
}

.policy-page .policy-contact-button:hover,
.policy-page .policy-contact-button:focus-visible {
  border-color: var(--policy-teal);
  background: var(--policy-teal);
  color: var(--policy-black);
}

.policy-page .policy-contact-button:focus-visible {
  outline: 3px solid rgba(53, 200, 199, 0.3);
  outline-offset: 4px;
}

.policy-page .policy-contact-button-secondary {
  background: transparent;
  color: var(--policy-black);
}

.policy-page .policy-contact-label-short {
  display: none;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

  .policy-page .policy-hero-inner {
    width: calc(100% - 50px);
    padding: 75px 0 70px;
  }

  .policy-page .policy-layout {
    width: calc(100% - 50px);
    padding: 70px 0 100px;
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 45px;
  }

  .policy-page .policy-nav {
    top: 95px;
  }

  .policy-page .policy-nav a {
    font-size: 0.78rem;
  }

}

@media (min-width: 651px) and (max-width: 900px) {

  .policy-page .policy-nav {
    max-height: calc(100vh - 119px);
  }

}


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

@media (max-width: 650px) {

  .policy-page .policy-hero-inner {
    width: calc(100% - 40px);
    padding: 60px 0 55px;
  }

  .policy-page .policy-title {
    font-size: clamp(2.5rem, 12vw, 3.6rem);
    line-height: 1;
  }

  .policy-page .policy-intro {
    margin-top: 22px;
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .policy-page .policy-updated {
    margin-top: 23px;
  }

  .policy-page .policy-layout {
    width: calc(100% - 40px);
    padding: 55px 0 80px;
    display: block;
  }


  /* Compact, sticky mobile policy navigation */

  .policy-page .policy-nav {
    position: sticky;
    top: 70px;
    z-index: 900;
    width: 100%;
    margin: 0 0 55px;
    padding: 0;
    border: 0;
    background: var(--policy-black);
    box-shadow: 0 8px 20px rgba(8, 18, 17, 0.16);
  }

  .policy-page .policy-nav-title {
    display: none;
  }

  .policy-page .policy-nav-toggle {
    width: 100%;
    min-height: 56px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border: 0;
    border-top: 2px solid var(--policy-teal);
    border-bottom: 1px solid rgba(199, 164, 93, 0.45);
    background: var(--policy-black);
    color: var(--policy-white);
    font: inherit;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    line-height: 1.4;
    text-align: left;
    text-transform: uppercase;
    cursor: pointer;
  }

  .policy-page .policy-nav-toggle:focus-visible {
    position: relative;
    z-index: 1;
    outline: 3px solid var(--policy-teal);
    outline-offset: -3px;
  }

  .policy-page .policy-nav-chevron {
    width: 10px;
    height: 10px;
    flex: 0 0 auto;
    border-right: 2px solid var(--policy-gold);
    border-bottom: 2px solid var(--policy-gold);
    transform: translateY(-2px) rotate(45deg);
    transition: transform 160ms ease;
  }

  .policy-page .policy-nav-toggle[aria-expanded="true"]
    .policy-nav-chevron {
    transform: translateY(3px) rotate(225deg);
  }

  .policy-page .policy-nav nav {
    display: flex;
    max-height: calc(100vh - 126px);
    overflow-y: auto;
    overscroll-behavior: contain;
    flex-direction: column;
    background: var(--policy-deep);
  }

  .policy-page .policy-nav.is-collapsible:not(.is-open) nav {
    display: none;
  }

  .policy-page .policy-nav a {
    width: 100%;
    min-height: 44px;
    padding: 12px 18px 12px 34px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 253, 248, 0.1);
    color: rgba(255, 253, 248, 0.86);
    font-size: 0.78rem;
    line-height: 1.45;
  }

  .policy-page .policy-nav a:last-child {
    border-bottom: 0;
  }

  .policy-page .policy-nav a::before {
    left: 18px;
  }

  .policy-page .policy-nav a:hover,
  .policy-page .policy-nav a:focus-visible {
    color: var(--policy-teal);
    transform: none;
  }


  /* Policy article */

  .policy-page .policy-section {
    scroll-margin-top: 150px;
    padding-bottom: 45px;
    margin-bottom: 45px;
  }

  .policy-page .policy-section-number {
    margin-bottom: 10px;
  }

  .policy-page .policy-section h2 {
    margin-bottom: 21px;
    font-size: clamp(1.65rem, 7.5vw, 2.15rem);
    line-height: 1.12;
  }

  .policy-page .policy-section h3 {
    margin-top: 28px;
  }

  .policy-page .policy-section p {
    margin-bottom: 18px;
    font-size: 1rem;
    line-height: 1.72;
  }

  .policy-page .policy-section ul {
    margin: 19px 0 22px;
  }

  .policy-page .policy-section li {
    margin-bottom: 11px;
    font-size: 0.98rem;
    line-height: 1.65;
  }


  /* Final contact box */

  .policy-page .policy-contact {
    padding: 28px 24px;
  }

  .policy-page .policy-contact-button {
    width: 100%;
    margin-top: 8px;
    padding-right: 14px;
    padding-left: 14px;
  }

}


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

@media (max-width: 375px) {

  .policy-page .policy-hero-inner,
  .policy-page .policy-layout {
    width: calc(100% - 30px);
  }

  .policy-page .policy-title {
    font-size: clamp(2.3rem, 12vw, 3rem);
  }

  .policy-page .policy-nav a {
    min-height: 44px;
  }

  .policy-page .policy-contact {
    padding: 24px 19px;
  }

}

@media (max-width: 320px) {

  .policy-page .policy-contact-actions {
    gap: 8px;
  }

  .policy-page .policy-contact-button {
    min-height: 48px;
    padding: 12px 8px;
    gap: 5px;
    font-size: 0.66rem;
    letter-spacing: 0.08em;
    white-space: nowrap;
  }

  .policy-page .policy-contact-label-full {
    display: none;
  }

  .policy-page .policy-contact-label-short {
    display: inline;
  }

}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

  .policy-page .policy-nav a,
  .policy-page .policy-contact-button {
    transition: none;
  }

}
