:root {
    --paper: #fbfdf8;
    --paper-deep: #edf4e8;
    --ink: #24302f;
    --muted: #65716b;
    --moss: #526b55;
    --moss-dark: #344b39;
    --rose: #e85f64;
    --gold: #feb807;
    --sun: #feb807;
    --coral: #f45f63;
    --sky: #b8d9df;
    --white: #ffffff;
    --shadow: 0 22px 60px rgba(36, 48, 47, 0.14);
    --radius: 8px;
    --serif: Georgia, "Times New Roman", serif;
    --sans: Arial, Helvetica, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: var(--sans);
    line-height: 1.65;
    overflow-x: hidden;
}

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

a {
    color: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 18px clamp(18px, 5vw, 72px);
    background: rgba(255, 249, 239, 0.92);
    border-bottom: 1px solid rgba(82, 107, 85, 0.16);
    backdrop-filter: blur(16px);
}

.brand,
.site-nav {
    display: flex;
    align-items: center;
}

.brand {
    gap: 10px;
    font-weight: 800;
    text-decoration: none;
}

.brand-mark {
    display: inline-grid;
    width: 42px;
    height: 42px;
    place-items: center;
    color: var(--white);
    background: var(--moss-dark);
    border-radius: 50%;
    font-size: 0.78rem;
    letter-spacing: 0;
}

.site-nav {
    gap: clamp(12px, 2vw, 26px);
    color: var(--muted);
    font-size: 0.94rem;
    font-weight: 700;
}

.site-nav a {
    text-decoration: none;
}

.site-nav a.is-active:not(.nav-button) {
    color: var(--moss-dark);
}

.site-nav a.is-active:not(.nav-button)::after {
    content: "";
    display: block;
    width: 100%;
    height: 3px;
    margin-top: 3px;
    background: var(--rose);
    border-radius: 999px;
}

.nav-button {
    padding: 9px 15px;
    color: var(--white);
    background: var(--moss);
    border-radius: 999px;
}

.nav-button.is-active {
    background: var(--rose);
}

.section-band {
    background:
        linear-gradient(135deg, rgba(254, 184, 7, 0.34), rgba(255, 249, 239, 0) 38%),
        linear-gradient(315deg, rgba(244, 95, 99, 0.18), rgba(255, 249, 239, 0) 44%);
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.03fr) minmax(280px, 0.72fr);
    align-items: center;
    gap: clamp(34px, 6vw, 84px);
    min-height: calc(100vh - 79px);
    padding: clamp(52px, 8vw, 104px) clamp(18px, 5vw, 72px);
}

.page-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.44fr);
    align-items: center;
    gap: clamp(28px, 6vw, 72px);
    padding: clamp(58px, 8vw, 110px) clamp(18px, 5vw, 72px);
}

.page-hero.page-hero-centered {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
}

.page-hero.page-hero-centered .inner-hero-copy {
    max-width: 920px;
}

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

.inner-page .page-hero {
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(82, 107, 85, 0.16);
}

.inner-page .page-hero::after {
    content: "";
    position: absolute;
    right: -140px;
    bottom: -140px;
    width: 340px;
    height: 340px;
    background: radial-gradient(circle, rgba(254, 184, 7, 0.26), transparent 68%);
    pointer-events: none;
}

.inner-hero-copy {
    max-width: 920px;
}

.inner-stat-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 26px;
}

.inner-stat-grid article {
    padding: 14px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(82, 107, 85, 0.18);
    border-radius: var(--radius);
}

.inner-stat-grid h2 {
    margin-bottom: 6px;
    color: var(--moss-dark);
    font-size: clamp(1.6rem, 3.2vw, 2.2rem);
}

.inner-stat-grid p {
    margin: 0;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.45;
}

.inner-detail-grid,
.quote-band,
.contact-page-layout {
    padding: clamp(46px, 6vw, 82px) clamp(18px, 5vw, 72px);
}

.inner-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    background: var(--white);
}

.inner-detail-grid article {
    padding: clamp(22px, 3vw, 34px);
    border: 1px solid rgba(82, 107, 85, 0.14);
    border-radius: var(--radius);
    background: var(--paper);
}

.inner-list {
    margin: 14px 0 0;
    padding-left: 18px;
    color: var(--muted);
}

.inner-list li + li {
    margin-top: 8px;
}

.quote-band {
    background: var(--paper-deep);
}

.quote-band blockquote {
    max-width: 860px;
    margin: 0 auto;
    padding: clamp(24px, 4vw, 38px);
    border-left: 5px solid var(--rose);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 16px 36px rgba(36, 48, 47, 0.08);
}

.quote-band p {
    margin: 0;
    color: var(--ink);
    font-family: var(--serif);
    font-size: clamp(1.2rem, 2.3vw, 1.8rem);
    line-height: 1.4;
}

.quote-band cite {
    margin-top: 10px;
}

.contact-page-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    gap: 20px;
    background: linear-gradient(180deg, rgba(82, 107, 85, 0.06), rgba(251, 253, 248, 0));
}

.contact-card {
    padding: clamp(20px, 4vw, 34px);
    border: 1px solid rgba(82, 107, 85, 0.16);
    border-radius: var(--radius);
    background: var(--white);
}

.contact-card h2 {
    font-size: clamp(1.8rem, 3.2vw, 2.6rem);
}

.contact-form {
    display: grid;
    gap: 10px;
    margin-top: 18px;
}

.contact-form label {
    margin-top: 8px;
    color: var(--moss-dark);
    font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    color: var(--ink);
    font: inherit;
    background: var(--paper);
    border: 1px solid rgba(82, 107, 85, 0.26);
    border-radius: var(--radius);
}

.contact-form textarea {
    resize: vertical;
}

.contact-form .button {
    margin-top: 12px;
}

.form-notice {
    margin: 16px 0 0;
    padding: 12px 14px;
    border-radius: var(--radius);
    font-weight: 700;
}

.form-notice.success {
    color: var(--moss-dark);
    background: rgba(82, 107, 85, 0.14);
}

.form-notice.error {
    color: #8a2f32;
    background: rgba(244, 95, 99, 0.14);
}

.field-error {
    color: #8a2f32;
    font-size: 0.88rem;
    font-weight: 700;
}

.contact-aside p,
.contact-aside a,
.contact-aside li {
    color: var(--muted);
}

.featured-story {
    display: grid;
    grid-template-columns: minmax(220px, 0.52fr) minmax(0, 1fr);
    align-items: center;
    gap: clamp(24px, 4vw, 42px);
    background: var(--white);
}

.featured-story-media {
    justify-self: center;
    width: min(100%, 330px);
}

.featured-story-media img,
.featured-story-media .cover-placeholder {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

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

.library-section {
    background:
        linear-gradient(180deg, rgba(82, 107, 85, 0.08), rgba(251, 253, 248, 0));
}

.library-list {
    display: grid;
    gap: 16px;
}

.library-entry {
    padding: clamp(20px, 4vw, 28px);
    border: 1px solid rgba(82, 107, 85, 0.16);
    border-radius: var(--radius);
    background: var(--white);
}

.library-entry h3 {
    margin-bottom: 10px;
}

.library-entry p {
    margin: 0 0 10px;
    color: var(--muted);
}

.entry-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 10px 0 16px;
}

.entry-meta span {
    padding: 8px 12px;
    color: var(--moss-dark);
    background: var(--paper);
    border: 1px solid rgba(82, 107, 85, 0.16);
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 700;
}

.future-books {
    background:
        linear-gradient(180deg, rgba(244, 95, 99, 0.08), rgba(251, 253, 248, 0));
}

.inner-section {
    padding: clamp(50px, 7vw, 94px) clamp(18px, 5vw, 72px);
}

.about-journey {
    background: var(--white);
}

.journey-grid,
.signature-grid,
.roadmap-grid,
.themes-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.journey-grid article,
.signature-grid article,
.roadmap-grid article,
.themes-grid article {
    padding: 22px;
    border: 1px solid rgba(82, 107, 85, 0.14);
    border-radius: var(--radius);
    background: var(--paper);
}

.journey-grid article p,
.signature-grid article p,
.roadmap-grid article p,
.themes-grid article p,
.catalog-overview p,
.catalog-card p,
.family-story-copy p,
.reviewer-note p,
.contact-checklist li {
    color: var(--muted);
}

.craft-signature {
    background:
        linear-gradient(180deg, rgba(254, 184, 7, 0.14), rgba(251, 253, 248, 0));
}

.family-story {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.85fr);
    align-items: stretch;
    gap: 20px;
}

.family-story blockquote {
    margin: 0;
    display: grid;
    align-content: center;
    padding: clamp(24px, 4vw, 34px);
    border-left: 5px solid var(--gold);
    border-radius: var(--radius);
    background: var(--paper-deep);
}

.family-story blockquote p {
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(1.3rem, 2.5vw, 1.9rem);
    line-height: 1.35;
}

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

.catalog-overview article {
    padding: clamp(22px, 3vw, 30px);
    border: 1px solid rgba(82, 107, 85, 0.14);
    border-radius: var(--radius);
    background: var(--white);
}

.book-catalog {
    background: var(--white);
}

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

.catalog-card {
    display: grid;
    grid-template-columns: minmax(190px, 0.6fr) minmax(0, 1fr);
    gap: 18px;
    padding: 20px;
    border: 1px solid rgba(82, 107, 85, 0.16);
    border-radius: var(--radius);
    background: var(--paper);
}

.catalog-cover img,
.catalog-cover .cover-placeholder {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    border-radius: var(--radius);
}

.catalog-card .hero-actions {
    margin-top: 16px;
}

.release-roadmap {
    background:
        linear-gradient(180deg, rgba(244, 95, 99, 0.09), rgba(251, 253, 248, 0));
}

.review-wall {
    background: var(--white);
}

.review-wall-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.review-wall-grid blockquote {
    margin: 0;
    padding: 24px;
    border: 1px solid rgba(82, 107, 85, 0.14);
    border-radius: var(--radius);
    background: var(--paper);
    box-shadow: 0 14px 32px rgba(36, 48, 47, 0.07);
}

.review-wall-grid p {
    margin: 0;
    color: var(--ink);
    font-family: var(--serif);
    font-size: 1.06rem;
    line-height: 1.5;
}

.feedback-themes {
    background:
        linear-gradient(180deg, rgba(82, 107, 85, 0.08), rgba(251, 253, 248, 0));
}

.reviewer-note {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid rgba(82, 107, 85, 0.14);
}

.contact-checklist {
    background: var(--white);
}

.checklist {
    max-width: 760px;
    margin: 0;
    padding-left: 20px;
}

.checklist li + li {
    margin-top: 10px;
}

.page-hero > div:first-child {
    max-width: 880px;
}

.page-hero h1 {
    font-size: clamp(3rem, 7vw, 6.8rem);
}

.page-hero p:not(.eyebrow) {
    max-width: 720px;
    margin: 24px 0 0;
    color: var(--muted);
    font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.page-hero-media img {
    width: min(100%, 420px);
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center;
    border: 10px solid var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.hero-copy,
.book-copy,
.about-copy {
    min-width: 0;
    max-width: 100%;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--rose);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    overflow-wrap: anywhere;
}

h1,
h2,
h3 {
    margin: 0;
    font-family: var(--serif);
    line-height: 1.04;
}

h1 {
    max-width: 820px;
    font-size: clamp(3.3rem, 9vw, 8.4rem);
}

h2 {
    font-size: clamp(2rem, 4.6vw, 4.1rem);
}

h3 {
    font-size: 1.35rem;
}

.hero-lede {
    max-width: 690px;
    margin: 24px 0 0;
    color: var(--muted);
    font-size: clamp(1.08rem, 2vw, 1.35rem);
}

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

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 22px;
    border: 2px solid transparent;
    border-radius: 999px;
    font-weight: 800;
    text-decoration: none;
}

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

.button.secondary {
    color: var(--moss-dark);
    border-color: rgba(52, 75, 57, 0.24);
    background: rgba(255, 255, 255, 0.52);
}

.author-portrait {
    position: relative;
}

.author-portrait img,
.portrait-placeholder {
    width: min(100%, 460px);
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center;
    border: 10px solid var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.portrait-placeholder {
    display: grid;
    place-items: center;
    color: var(--white);
    background:
        linear-gradient(rgba(52, 75, 57, 0.14), rgba(52, 75, 57, 0.14)),
        linear-gradient(145deg, var(--moss), var(--sun) 52%, var(--coral));
    font-family: var(--serif);
    font-size: clamp(1.7rem, 4vw, 3rem);
    text-align: center;
}

.portrait-caption {
    width: min(88%, 360px);
    margin: -54px 0 0 auto;
    padding: 20px;
    background: var(--white);
    border-left: 5px solid var(--gold);
    border-radius: var(--radius);
    box-shadow: 0 18px 36px rgba(36, 48, 47, 0.12);
    position: relative;
}

.portrait-caption strong,
.portrait-caption span {
    display: block;
}

.portrait-caption span {
    margin-top: 6px;
    color: var(--muted);
    font-size: 0.95rem;
}

.feature-strip,
.book-section,
.world-section,
.about-section,
.reviews-section,
.contact-section {
    padding: clamp(56px, 8vw, 104px) clamp(18px, 5vw, 72px);
}

.feature-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    padding-top: 0;
    background: var(--moss-dark);
}

.feature-strip article {
    min-height: 210px;
    padding: clamp(24px, 4vw, 42px);
    background: var(--white);
}

.feature-strip p,
.section-heading p,
.book-copy p,
.world-grid p,
.about-copy p,
.contact-section p {
    color: var(--muted);
}

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

.section-heading.align-left {
    margin-left: 0;
    text-align: left;
}

.book-section {
    background:
        linear-gradient(160deg, rgba(254, 184, 7, 0.12), rgba(251, 253, 248, 0) 32%),
        linear-gradient(20deg, rgba(244, 95, 99, 0.1), rgba(251, 253, 248, 0) 36%);
}

.book-layout {
    display: grid;
    grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1fr);
    align-items: center;
    gap: clamp(32px, 6vw, 78px);
    max-width: 1120px;
    margin: 0 auto;
}

.book-cover {
    justify-self: center;
    width: min(100%, 390px);
}

.book-cover img,
.cover-placeholder {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.cover-placeholder {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 34px 26px;
    color: var(--white);
    background:
        radial-gradient(circle at 76% 18%, rgba(255, 255, 255, 0.3), transparent 22%),
        linear-gradient(160deg, #467552, var(--sun) 54%, var(--coral));
    text-align: center;
}

.cover-placeholder span,
.cover-placeholder small {
    font-weight: 800;
}

.cover-placeholder strong {
    font-family: var(--serif);
    font-size: clamp(3rem, 8vw, 5rem);
    line-height: 0.9;
}

.book-copy {
    font-size: 1.08rem;
}

.book-copy blockquote {
    margin: 28px 0;
    padding: 26px;
    background: var(--paper-deep);
    border-left: 5px solid var(--rose);
    border-radius: var(--radius);
    font-family: var(--serif);
    font-size: clamp(1.25rem, 2.6vw, 1.8rem);
    line-height: 1.35;
}

cite {
    display: block;
    margin-top: 14px;
    color: var(--muted);
    font-family: var(--sans);
    font-size: 0.92rem;
    font-style: normal;
    font-weight: 800;
}

.book-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.book-points span {
    padding: 9px 13px;
    color: var(--moss-dark);
    background: var(--white);
    border: 1px solid rgba(82, 107, 85, 0.16);
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 800;
}

.book-banner {
    max-width: 1180px;
    margin: clamp(38px, 7vw, 78px) auto 0;
}

.book-banner img {
    width: 100%;
    min-height: 220px;
    object-fit: cover;
    object-position: center;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.world-section {
    background: var(--white);
}

.story-feature {
    display: grid;
    grid-template-columns: minmax(260px, 0.92fr) minmax(0, 0.78fr);
    align-items: center;
    gap: clamp(24px, 5vw, 60px);
    max-width: 1120px;
    margin: 0 auto 28px;
    padding: clamp(18px, 3vw, 28px);
    background:
        linear-gradient(135deg, rgba(254, 184, 7, 0.18), rgba(255, 255, 255, 0) 42%),
        linear-gradient(315deg, rgba(244, 95, 99, 0.14), rgba(255, 255, 255, 0) 46%),
        var(--paper);
    border: 1px solid rgba(82, 107, 85, 0.14);
    border-radius: var(--radius);
}

.story-feature img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    object-position: center;
    border-radius: var(--radius);
}

.story-feature p:last-child {
    color: var(--muted);
}

.world-grid,
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.world-grid article,
.reviews-grid blockquote {
    margin: 0;
    padding: 24px;
    border: 1px solid rgba(82, 107, 85, 0.14);
    border-radius: var(--radius);
    background: var(--paper);
}

.card-icon {
    display: inline-grid;
    width: 42px;
    height: 42px;
    margin-bottom: 28px;
    place-items: center;
    color: var(--white);
    background: var(--rose);
    border-radius: 50%;
    font-weight: 800;
}

.about-section {
    display: grid;
    grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
    gap: clamp(28px, 6vw, 76px);
}

.about-copy {
    columns: 2 280px;
    column-gap: 38px;
}

.about-copy p {
    margin-top: 0;
}

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

.reviews-grid blockquote {
    background: var(--white);
    box-shadow: 0 16px 40px rgba(36, 48, 47, 0.08);
}

.reviews-grid p {
    margin: 0;
    color: var(--ink);
    font-family: var(--serif);
    font-size: 1.12rem;
    line-height: 1.45;
}

.contact-section {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    color: var(--white);
    background:
        linear-gradient(100deg, rgba(52, 75, 57, 0.96), rgba(52, 75, 57, 0.82) 52%, rgba(244, 95, 99, 0.72)),
        var(--moss-dark);
}

.contact-section div {
    position: relative;
    z-index: 1;
    max-width: 760px;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.28);
}

.contact-section h2 {
    font-size: clamp(2rem, 4.2vw, 3.6rem);
}

.contact-section p,
.contact-section .eyebrow {
    color: rgba(255, 255, 255, 0.78);
}

.contact-section .button.primary {
    position: relative;
    z-index: 1;
    flex: 0 0 auto;
    color: var(--moss-dark);
    background: var(--white);
}

.contact-art {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.2;
}

.site-footer {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 26px clamp(18px, 5vw, 72px);
    color: var(--muted);
    background: #ffffff;
}

.site-footer p {
    margin: 0;
}

.site-footer a {
    font-weight: 800;
    text-decoration: none;
}

@media (max-width: 980px) {
    .hero,
    .page-hero,
    .book-layout,
    .story-feature,
    .about-section,
    .contact-page-layout,
    .inner-detail-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
    }

    .author-portrait {
        max-width: 520px;
    }

    .feature-strip,
    .world-grid,
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .story-feature {
        max-width: 720px;
    }

    .inner-stat-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .catalog-grid,
    .review-wall-grid,
    .catalog-overview,
    .family-story,
    .featured-story {
        grid-template-columns: 1fr;
    }

    .journey-grid,
    .signature-grid,
    .roadmap-grid,
    .themes-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .site-header {
        position: static;
        align-items: flex-start;
        flex-direction: column;
    }

    .site-nav {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 4px;
    }

    .hero {
        padding-top: 42px;
    }

    h1 {
        font-size: clamp(3rem, 17vw, 5.4rem);
    }

    .feature-strip,
    .world-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .feature-strip article {
        min-height: auto;
    }

    .portrait-caption {
        width: calc(100% - 18px);
        margin-top: -28px;
    }

    .contact-section,
    .site-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .inner-stat-grid {
        grid-template-columns: 1fr;
    }

    .journey-grid,
    .signature-grid,
    .roadmap-grid,
    .themes-grid {
        grid-template-columns: 1fr;
    }

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

    .reviewer-note {
        align-items: flex-start;
        flex-direction: column;
    }

    .contact-section .button {
        width: 100%;
    }

    .book-banner img,
    .story-feature img {
        min-height: 0;
        aspect-ratio: 4 / 3;
    }
}

@media (max-width: 420px) {
    .site-nav {
        gap: 10px;
        font-size: 0.86rem;
    }

    .nav-button {
        padding-inline: 12px;
    }

    .hero-actions .button {
        width: 100%;
    }

    .book-copy blockquote,
    .world-grid article,
    .reviews-grid blockquote {
        padding: 20px;
    }
}

@media (max-width: 540px) {
    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .button {
        width: 100%;
    }
}
