/* ── Diagonal Coming Soon Overlay ─────────────────────────── */
.coming-soon-diagonal {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none;
    display: flex; align-items: center; justify-content: center;
    z-index: 2;
}
.coming-soon-diagonal span {
    display: block;
    font-family: var(--font-system);
    font-size: 1.1rem;
    font-weight: bold;
    color: #fff;
    background: rgba(0,0,0,0.22);
    padding: 0.25em 1.5em;
    border-radius: 8px;
    transform: rotate(-24deg);
    opacity: 0.85;
    letter-spacing: 0.12em;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
/* ============================================================
   Rustic Poet — Main Stylesheet
   Design: Parchment Glass — warm earth tones, frosted panels
   ============================================================ */

@font-face {
    font-family: 'Santa Catalina';
    src: url('../fonts/Santa Catalina1.otf') format('opentype');
    font-display: swap;
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Proxima Nova';
    src: url('../fonts/Proxima Nova Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Proxima Nova';
    src: url('../fonts/Proxima Nova Semibold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

/* ── CSS Custom Properties ──────────────────────────────────── */
:root {
    --color-bg:             #e8d5b0;
    --color-surface:        rgba(255,250,238,0.55);
    --color-border:         rgba(140,100,55,0.2);
    --color-text:           #140b02;
    --color-text-muted:     #4e3010;
    --color-primary:        #7a5c35;
    --color-primary-hover:  #5a3e1e;
    --color-accent:         #c9a882;
    --color-link:           #7a5c35;
    --color-success:        #4a7c59;
    --color-error:          #a33;
    --color-warn:           #b07700;
    --font-body:    'Proxima Nova', 'Libre Franklin', 'Avenir Next', 'Helvetica Neue', Arial, sans-serif;
    --font-serif:   'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-system:  -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-hand:    'Santa Catalina', cursive;
    --font-title:   'Santa Catalina', cursive;
    --font-book-body: 'Proxima Nova', sans-serif;
    --title-size:   clamp(1.4rem, 2.2vw, 1.9rem);

    --container-width:   1100px;
    --container-narrow:  680px;
    --container-gutter:  1.25rem;
    --radius:            10px;
    --radius-sm:         6px;

    --glass-bg:       rgba(255, 250, 238, 0.62);
    --glass-border:   rgba(140, 100, 55, 0.18);
    --glass-shadow:   0 4px 28px rgba(100,65,20,0.12), inset 0 1px 0 rgba(255,255,255,0.6);
    --glass-blur:     18px;

    --shadow-sm:  0 1px 4px rgba(60,35,10,0.1);
    --shadow-md:  0 4px 18px rgba(60,35,10,0.15);
    --shadow-lg:  0 12px 40px rgba(60,35,10,0.18);
    --transition: 0.22s ease;

    --book-paper:        #f5f1e8;
    --book-paper-soft:   #fbf8f2;
    --book-paper-deep:   #ece3d2;
    --book-ink:          #231a13;
    --book-muted:        #6a5e50;
    --book-accent:       #7a5a39;
    --book-plum:         #4c3346;
    --book-gold:         #c8a667;
    --book-shadow:       0 12px 28px rgba(36, 25, 17, 0.08);
}

/* ── Reset ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
    scroll-behavior: smooth;
    background: var(--color-bg);
    zoom: 0.9;
}
@supports not (zoom: 1) {
    html { font-size: 90%; }
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-link); text-decoration: none; }
a:hover { text-decoration: none; }
ul, ol { list-style: none; }

/* ── Background & Body ───────────────────────────────────────── */
body {
    font-family: var(--font-body);
    font-size: 1.3rem;
    line-height: 1.85;
    color: var(--color-text);
    background: var(--color-bg);
    position: relative;
    min-height: 100vh;
}
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(232, 212, 172, 0.8);
    z-index: 0;
    pointer-events: none;
}
body > * { position: relative; z-index: 1; }

/* ── Typography ──────────────────────────────────────────────── */
h1, h2, h3, h4 {
    font-family: var(--font-title);
    line-height: 1.15;
    font-weight: 400;
    margin-bottom: 0.5em;
    color: var(--color-text);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.5rem; }
p  { margin-bottom: 1em; }

.prose h2, .prose h3 { margin-top: 1.5em; }
.prose ul, .prose ol { list-style: disc; padding-left: 1.5em; margin-bottom: 1em; }
.prose a { text-decoration: underline; color: var(--color-primary); }

/* ── Layout ──────────────────────────────────────────────────── */
.container         { max-width: var(--container-width); margin: 0 auto; padding: 0 var(--container-gutter); }
.container--narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 var(--container-gutter); }

.layout-sidebar {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 2rem;
    padding: 3rem var(--container-gutter);
    max-width: var(--container-width);
    margin: 0 auto;
}

/* ── Glass Panel ─────────────────────────────────────────────── */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur)) saturate(140%);
    -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(140%);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    box-shadow: var(--glass-shadow);
    padding: 1.75rem;
    position: relative;
    overflow: hidden;
}
.glass-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(145deg, rgba(255,255,255,0.3) 0%, transparent 55%);
    pointer-events: none;
}
.glass-panel--card {
    padding: 0;
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.glass-panel--card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(100,65,20,0.2);
    border-color: rgba(140,100,55,0.38);
}

/* ── Quill Divider ───────────────────────────────────────────── */
.quill-divider {
    text-align: center;
    padding: 0.5rem 0 1.5rem;
    opacity: 0.55;
}
.quill-divider img {
    height: 48px;
    width: auto;
    display: inline-block;
    filter: sepia(1) brightness(0.5);
}
.ornament {
    text-align: center;
    font-size: 1.4rem;
    color: var(--color-accent);
    letter-spacing: 0.5em;
    margin: 1rem 0;
    opacity: 0.7;
}

/* ── Scroll Reveal ───────────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4em;
    padding: 0.55em 1.6em;
    font-family: var(--font-system);
    font-size: 0.78rem;
    font-weight: 500;
    border-radius: 3px;
    border: 1px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: all var(--transition);
    line-height: 1;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.btn--primary {
    background: var(--color-primary);
    color: #fff8ee;
    border-color: var(--color-primary);
}
.btn--primary:hover {
    background: var(--color-primary-hover);
    border-color: var(--color-primary-hover);
    color: #fff8ee;
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}
.btn--outline {
    background: transparent;
    color: var(--color-primary);
    border-color: rgba(122,92,53,0.65);
}
.btn--outline:hover {
    background: var(--color-primary);
    color: #fff8ee;
    border-color: var(--color-primary);
    transform: translateY(-1px);
}
.btn--ghost {
    background: transparent;
    color: var(--color-primary);
    border-color: rgba(122,92,53,0.5);
}
.btn--ghost:hover {
    background: var(--color-primary);
    color: #fff8ee;
    border-color: var(--color-primary);
    transform: translateY(-1px);
}
/* Hero dark-background override */
.hero .btn--ghost {
    background: rgba(255,250,238,0.12);
    color: rgba(255,250,238,0.92);
    border-color: rgba(255,250,238,0.45);
    backdrop-filter: blur(6px);
}
.hero .btn--ghost:hover {
    background: rgba(255,250,238,0.22);
    border-color: rgba(255,250,238,0.7);
    color: #fff;
    transform: translateY(-1px);
}
/* Hero-specific outlined light button */
.btn--quiet {
    background: transparent;
    color: rgba(232,215,180,0.85);
    border: 1px solid rgba(201,168,130,0.5);
    letter-spacing: 0.22em;
    font-size: 0.7rem;
}
.btn--quiet:hover {
    border-color: rgba(201,168,130,0.85);
    color: #fff;
    background: rgba(201,168,130,0.12);
}
.btn--small { padding: 0.38em 1em; font-size: 0.72rem; }

/* ── Alerts ──────────────────────────────────────────────────── */
.alert {
    padding: 0.875rem 1.25rem;
    border-radius: var(--radius-sm);
    border-left: 3px solid;
    margin: 1rem 0;
    font-family: var(--font-system);
    font-size: 0.93rem;
    display: flex;
    align-items: flex-start;
    gap: 0.6em;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
}
.alert--success { border-color: var(--color-success); color: var(--color-success); }
.alert--error   { border-color: var(--color-error); color: var(--color-error); }
.alert--info    { border-color: var(--color-primary); color: var(--color-primary); }
.alert__close   { margin-left: auto; background: none; border: none; cursor: pointer; font-size: 1.2rem; color: inherit; }
.alert__list    { margin: 0; padding-left: 1.2em; list-style: disc; }

/* ── Forms ───────────────────────────────────────────────────── */
.form-row   { margin-bottom: 0.85rem; }
.form-label {
    display: block;
    font-family: var(--font-system);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: var(--color-text-muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.form-control {
    display: block;
    width: 100%;
    padding: 0.65rem 1rem;
    font-size: 1rem;
    font-family: var(--font-body);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    background: rgba(255,250,238,0.6);
    color: var(--color-text);
    transition: border-color var(--transition), box-shadow var(--transition);
}
.form-control::placeholder { color: var(--color-text-muted); }
.form-control:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(122,92,53,0.12);
}
textarea.form-control { resize: vertical; min-height: 7rem; }
.form-note { font-size: 0.8rem; color: var(--color-text-muted); margin-top: 0.4rem; font-family: var(--font-system); }

/* ── Site Header ─────────────────────────────────────────────── */
.site-header {
    background: var(--color-bg);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid rgba(140,100,55,0.18);
    position: sticky;
    top: 0;
    z-index: 500;
    transition: background 0.3s, backdrop-filter 0.3s, box-shadow 0.3s;
}
.site-header--scrolled {
    background: rgba(255, 248, 228, 0.82);
    backdrop-filter: blur(22px) saturate(140%);
    -webkit-backdrop-filter: blur(22px) saturate(140%);
    box-shadow: 0 2px 12px rgba(100,70,20,0.10);
}
.header-inner {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 0.35rem 0;
}
.site-logo {
    display: flex;
    flex-direction: column;
    text-decoration: none !important;
    gap: 0.1rem;
    flex-shrink: 0;
}
.logo-name {
    font-family: var(--font-title);
    font-size: 1.35rem;
    color: var(--color-primary);
    letter-spacing: 0.02em;
    line-height: 1;
}
.logo-tagline {
    font-family: var(--font-system);
    font-size: 0.58rem;
    color: var(--color-text-muted);
    letter-spacing: 0.18em;
    text-transform: uppercase;
}
.site-logo img { height: 72px; width: auto; max-width: 400px; }

.header-search {
    display: flex;
    margin-left: auto;
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    overflow: hidden;
    background: rgba(255,250,238,0.5);
}
.header-search input {
    border: none;
    padding: 0.32rem 0.9rem;
    font-size: 0.82rem;
    background: transparent;
    min-width: 150px;
    color: var(--color-text);
    font-family: var(--font-system);
}
.header-search input::placeholder { color: var(--color-text-muted); }
.header-search input:focus { outline: none; }
.header-search button {
    background: none;
    border: none;
    padding: 0.32rem 0.85rem;
    cursor: pointer;
    color: var(--color-text-muted);
    transition: color var(--transition);
}
.header-search button:hover { color: var(--color-primary); }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: rgba(255,250,238,0.5);
    border: 1px solid var(--glass-border);
    cursor: pointer;
    padding: 7px 9px;
    border-radius: var(--radius-sm);
}
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--color-text); transition: all 0.22s; }

/* ── Navigation ──────────────────────────────────────────────── */
.primary-nav {
    background: rgba(255, 248, 228, 0.6);
    border-bottom: 1px solid rgba(140,100,55,0.12);
    backdrop-filter: blur(12px);
}
.nav-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    align-items: center;
}
.nav-item { position: relative; }
.nav-link {
    display: block;
    padding: 0.45rem 0.85rem;
    font-family: var(--font-system);
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--color-text-muted);
    text-decoration: none;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition: color var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--color-primary); }
.nav-link.active { border-bottom: 2px solid var(--color-primary); margin-bottom: -1px; }
.nav-link .fa-chevron-down { font-size: 0.58rem; margin-left: 3px; opacity: 0.6; }

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255,250,238,0.95);
    backdrop-filter: blur(18px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    min-width: 180px;
    display: none;
    z-index: 600;
}
.has-dropdown:hover .dropdown { display: block; }
.dropdown a {
    display: block;
    padding: 0.55rem 1.1rem;
    font-size: 0.78rem;
    color: var(--color-text-muted);
    text-decoration: none;
    font-family: var(--font-system);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color var(--transition), background var(--transition);
}
.dropdown a:hover { background: rgba(201,168,130,0.15); color: var(--color-primary); }

/* ── Hero (full-bleed background) ───────────────────────────── */
.hero {
    padding: 4.5rem 2rem 3.9rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(8,4,1,0.48) 0%, rgba(8,4,1,0.35) 60%, rgba(8,4,1,0.55) 100%);
    pointer-events: none;
}
.hero__eyebrow {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.6rem;
    letter-spacing: 0.04em;
    color: var(--color-accent);
    margin-bottom: 1.25rem;
    display: block;
    opacity: 0.9;
}
.hero__title {
    font-family: var(--font-title);
    font-size: clamp(2rem, 5.4vw, 3.9rem);
    color: #f0e8d8;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 1rem;
    text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.hero__title em {
    font-style: italic;
    color: #f0e8d8;
}
.hero__inner { position: relative; z-index: 1; }
.hero__sub,
.hero__byline {
    font-family: var(--font-body);
    font-size: 1.4rem;
    color: rgba(232,215,180,0.85);
    font-style: italic;
    margin-bottom: 1.7rem;
}
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

/* ── Poem Feature (inline display) ──────────────────────────── */
/* ── Poem Carousel ───────────────────────────────────────────── */
.section--poem-carousel { padding: 0; margin: 0; }
.poem-carousel__cell {
    max-width: none;
    padding-top: 0;
    padding-right: 0;
    padding-bottom: 0;
    padding-left: 0;
}
.poem-carousel {
    position: relative;
    overflow: hidden;
    min-height: 520px;
    background: transparent;
    width: 100%;
    border: 0;
    box-shadow: none;
    border-radius: 0;
}
.section--poem-carousel > .poem-carousel {
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}
.poem-carousel--contained {
    border: 0;
    box-shadow: none;
    border-radius: 0;
}
.poem-carousel__slide {
    display: none;
    grid-template-columns: 1fr 1fr;
    min-height: 520px;
    align-items: stretch;
    gap: 0;
}
.poem-carousel__slide.is-active { display: grid; }
.poem-carousel__image {
    position: relative;
    overflow: hidden;
    display: block;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    margin: 0;
    padding: 0;
}
.poem-carousel__image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.15);
    transform-origin: center;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    display: block;
}
.poem-carousel__content {
    padding: 3.5rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    border-radius: 0;
}
.poem-carousel__dots {
    position: absolute;
    bottom: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}
.poem-carousel__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(122,92,53,0.3);
    cursor: pointer;
    transition: background var(--transition);
    padding: 0;
}
.poem-carousel__dot.is-active { background: var(--color-primary); }
.poem-carousel__prev,
.poem-carousel__next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(245,238,224,0.85);
    border: 1px solid rgba(122,92,53,0.25);
    color: var(--color-text);
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.1rem;
    line-height: 1;
    z-index: 10;
    transition: background var(--transition);
}
.poem-carousel__prev:hover,
.poem-carousel__next:hover { background: var(--color-parchment-dark); }
.poem-carousel__prev { left: 0.8rem; }
.poem-carousel__next { right: 0.8rem; }
.poem-carousel__content .poem-feature__title {
    font-size: clamp(2rem, 3vw, 2.8rem);
}
.poem-carousel__content .poem-feature__body {
    margin: 0 0 2rem 0;
    max-width: 500px;
    padding-left: 2rem;
}
@media (max-width: 768px) {
    .poem-carousel__slide.is-active {
        grid-template-columns: 1fr;
    }
    .poem-carousel__image { min-height: 220px; position: relative; }
    .poem-carousel__image img { position: absolute; }
    .poem-carousel__content { padding: 2rem 1.5rem; }
}

.section--poem-feature {
    padding: 3rem 2rem;
    text-align: center;
}
.poem-feature__label {
    font-family: var(--font-hand);
    font-size: 1.1rem;
    letter-spacing: 0.04em;
    color: var(--color-text-muted);
    margin-bottom: 0.5rem;
}
.poem-feature__title {
    font-family: var(--font-title);
    font-size: clamp(1.8rem, 2.45vw, 2.35rem);
    color: var(--color-text);
    margin-bottom: 2rem;
}
.poem-feature__body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 2.1;
    color: var(--color-text);
    max-width: 540px;
    margin: 0 auto 2rem;
    text-align: left;
}
.poem-feature__body .stanza,
.poem-feature__body .poem-stanza { margin-bottom: 1.5em; }
.poem-stanza { margin-bottom: 1.5em; }
.poem-feature__link {
    font-family: var(--font-system);
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-primary);
    border-bottom: 1px solid rgba(122,92,53,0.4);
    padding-bottom: 2px;
    transition: border-color var(--transition), color var(--transition);
}
.poem-feature__link:hover { border-color: var(--color-primary); color: var(--color-primary-hover); }

/* ── Split Section (photo | dark quote) ─────────────────────── */
.section--split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 420px;
}
.split__image,
.split__photo {
    overflow: hidden;
    position: relative;
}
.split__image img,
.split__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}
.split__image:hover img,
.split__photo:hover img { transform: scale(1.03); }
.split__dark {
    background: rgba(12, 7, 2, 0.9);
    backdrop-filter: blur(8px);
    padding: 4rem 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}
.split__dark::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201,168,130,0.06) 0%, transparent 60%);
    pointer-events: none;
}
.split__quote {
    font-family: var(--font-serif);
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-style: italic;
    color: rgba(240,232,210,0.9);
    line-height: 1.55;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}
.split__cite {
    font-family: var(--font-hand);
    font-size: 1.1rem;
    color: var(--color-accent);
    opacity: 0.85;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}
.split__cta {
    font-family: var(--font-system);
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--color-accent);
    transition: color var(--transition);
    position: relative;
    z-index: 1;
}
.split__cta:hover { color: #fff; }

/* ── Author Preview ──────────────────────────────────────────── */
.section--author { padding: 3rem 2rem; }
.author-preview {
    display: grid;
    grid-template-columns: 340px minmax(0, 1fr);
    gap: 0.5rem;
    align-items: stretch;
    max-width: 960px;
    margin: 0 auto;
}
.author-preview__photo {
    position: relative;
    display: block;
    width: 300px;
    justify-self: start;
}
.author-preview__portrait-rail {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    width: 100%;
}
.author-preview__portrait {
    overflow: visible;
    border-radius: 0;
    border: none;
    background: transparent;
    box-shadow: none;
    width: 100%;
}
.author-preview__portrait--left,
.author-preview__portrait--right { justify-self: stretch; }
.author-preview__portrait--primary { z-index: 2; transform: none; }
.author-preview__portrait--right { z-index: 4; transform: none; }
.author-preview__portrait--left:not(.author-preview__portrait--primary) { z-index: 3; transform: none; }
.author-preview__portrait--right img {
    width: 82%;
    margin: 0 auto;
}
.author-preview__portrait img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    border-radius: 0;
    border: none;
    box-shadow: none;
    background: transparent;
}
.author-preview__text {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.author-preview__name { margin-bottom: 0.5rem; margin-top: 0; }
.author-preview__label {
    font-family: var(--font-hand);
    font-size: 1.4rem;
    color: var(--color-text-muted);
    margin-bottom: -0.15rem;
    display: block;
}
.author-preview__text .author-preview__name {
    font-size: 2rem;
    letter-spacing: 0;
    text-transform: none;
    font-family: var(--font-serif);
    color: var(--color-text);
    margin-top: 0;
    margin-bottom: 1rem;
}
.author-preview__intro,
.author-preview__bio {
    font-size: 1.3rem;
    line-height: 1.85;
    color: var(--color-text);
    margin-bottom: 1.75rem;
    font-style: italic;
}
.author-preview__bio {
    flex: 1 1 auto;
}
.author-preview__text .btn {
    align-self: flex-start;
}
.author-preview__bio > *:last-child {
    margin-bottom: 0;
}

/* ── Sections ────────────────────────────────────────────────── */
.section { padding: 1.2rem 0; }
.section--alt { background: rgba(255,250,238,0.3); }
.section__title {
    font-family: var(--font-title);
    font-size: clamp(1.9rem, 4vw, 3rem);
    font-style: normal;
    letter-spacing: 0.01em;
    text-align: center;
    margin-bottom: 0.5rem;
    color: var(--color-text);
}
.section__eyebrow {
    font-family: var(--font-system);
    font-size: 0.68rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    text-align: center;
    display: block;
    margin-bottom: 0.5rem;
}
.section__subtitle {
    text-align: center;
    font-family: 'Playfair Display', var(--font-serif);
    color: var(--color-text-muted);
    font-size: 1.5rem;
    margin-bottom: 1.15rem;
}
.section__cta { text-align: center; margin-top: 1.1rem; }

/* ── Poem Cards ──────────────────────────────────────────────── */
.poem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 1rem;
}
.poem-card {
    background: var(--glass-bg);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    display: grid;
    grid-template-columns: 40% 1fr;
    align-items: stretch;
}
.poem-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(140,100,55,0.38);
}
.poem-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}
.poem-card__body {
    padding: 0.85rem 1rem;
    overflow-y: auto;
    min-height: 0;
    /* Make every card body lay out the same way: header / content / footer link.
       Pins the READ link to the bottom regardless of whether the card has a
       book chip, excerpt, etc. — gives a consistent visual rhythm across cards. */
    display: flex;
    flex-direction: column;
}
.poem-card__cat  { font-family: var(--font-system); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--color-text-muted); font-weight: 600; text-align: center; }
.poem-card__title { font-family: var(--font-title); font-size: clamp(1.05rem, 1.7vw, 1.45rem); line-height: 1.05; margin: 0.15rem 0 0.25rem; text-align: center; }
.poem-card__title a { color: var(--color-text); transition: color var(--transition); }
.poem-card__title a:hover { color: var(--color-primary); }
.poem-card__excerpt { color: var(--color-text-muted); font-style: italic; font-size: 0.9rem; line-height: 1.45; margin-bottom: 0.4rem; }
.poem-card__date  { font-family: var(--font-system); font-size: 0.78rem; color: var(--color-text-muted); display: block; margin-bottom: 0.2rem; }
.poem-card__meta  { font-family: var(--font-system); font-size: 0.82rem; color: var(--color-text-muted); margin: 0.5rem 0; }
.poem-card__meta span + span::before { content: ' · '; }
.poem-card__link  { font-family: var(--font-system); font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-primary); margin-top: auto; align-self: flex-start; }
.poem-card__link:hover { color: var(--color-primary-hover); }
/* Reserve a consistent slot for the optional "Echoes From the Heart" book chip
   so cards with and without one have the same baseline shape. */
.poem-card__book {
    font-family: var(--font-system);
    font-size: 0.78rem;
    color: var(--color-text-muted);
    margin: 0.4rem 0 0;
    min-height: 1.2em;
}
.poem-card__book a { color: var(--color-primary); }
.poem-card__book a:hover { color: var(--color-primary-hover); }

/* ── Poem List (concept-style) ───────────────────────────────── */
.poem-list { display: flex; flex-direction: column; }
.poem-list-item {
    padding: 2rem 0;
    border-bottom: 1px solid rgba(140,100,55,0.18);
}
.poem-list-item:last-child { border-bottom: none; }
.poem-list-item__date { font-family: var(--font-system); font-size: 0.78rem; color: var(--color-text-muted); margin-bottom: 0.3rem; }
.poem-list-item__title { font-family: var(--font-title); font-size: clamp(2.2rem, 3vw, 2.9rem); line-height: 1.06; color: var(--color-text); margin-bottom: 0.5rem; }
.poem-list-item__title a { color: var(--color-text); }
.poem-list-item__title a:hover { color: var(--color-primary); }
.poem-list-item__excerpt { font-style: italic; color: var(--color-text-muted); font-size: 1rem; line-height: 1.7; margin-bottom: 0.75rem; }
.poem-list-item__link { font-family: var(--font-system); font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--color-primary); }
.poem-list-item__link:hover { color: var(--color-primary-hover); }
.poem-list-item__cat { font-family: var(--font-system); font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--color-text-muted); font-weight: 600; display: block; margin-bottom: 0.4rem; }
.poem-list-item--featured { padding: 2.5rem; margin-bottom: 1.5rem; }
.poem-list-item--featured .poem-list-item__title { font-size: clamp(2.4rem, 3.3vw, 3.1rem); }

.poem-grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 2rem;
    border-top: 1px solid rgba(140,100,55,0.15);
}

/* ── Poem Single (no-image fallback) ─────────────────────────── */
.poem-single__header { padding: 2.5rem 0 1.5rem; }
.poem-single__title  { font-family: var(--font-title); font-size: clamp(1.8rem, 3vw, 2.4rem); font-style: normal; text-align: left; }
.poem-single__meta   { font-family: var(--font-system); font-size: 0.95rem; color: var(--color-text-muted); display: flex; gap: 1.5rem; flex-wrap: wrap; margin-top: 0.75rem; }
.poem-single__body { font-family: var(--font-book-body); padding: 2rem 2.2rem; background: linear-gradient(180deg, rgba(244,235,216,0.98) 0%, rgba(236,224,198,0.98) 100%); border: 1px solid var(--book-rule); border-radius: 12px; box-shadow: var(--book-shadow); }

/* ── Poem Split Layout (with image) ──────────────────────────── */
.poem-split {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    height: calc(100vh - 70px - var(--preview-banner-height, 0px));
    overflow: hidden;
}
.poem-split__image {
    position: sticky;
    top: calc(70px + var(--preview-banner-height, 0px));
    height: calc(100vh - 70px - var(--preview-banner-height, 0px));
    overflow: hidden;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}
.poem-split__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}
.poem-split__image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(140, 100, 55, 0.08);
}
.poem-split__image-placeholder img {
    width: 30%;
    max-width: 200px;
    height: auto;
    opacity: 0.35;
    object-fit: contain;
}
.poem-split__panel {
    overflow-y: auto;
    overflow-x: hidden;
    background: rgba(255,250,238,0.3);
    padding: 0;
}
.poem-split__inner {
    padding: 0 2.75rem 3.25rem;
    max-width: 520px;
}
.poem-split__header {
    position: sticky;
    top: 0;
    z-index: 2;
    background: transparent;
    padding-top: 0.75rem;
}
.poem-split__cat {
    display: inline-block;
    font-family: var(--font-system);
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-text);
    text-decoration: none;
    margin-bottom: 0.75rem;
}
.poem-split__topline {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 0.4rem;
    padding-bottom: 0.4rem;
    border-bottom: 1px solid var(--glass-border);
}
.poem-split__topline .poem-split__cat { margin-bottom: 0; }
.poem-split__date {
    font-family: var(--font-system);
    font-size: 0.82rem;
    color: var(--color-text-muted);
    white-space: nowrap;
}
.poem-split__title {
    font-family: var(--font-title);
    font-size: clamp(1.8rem, 2.8vw, 2.35rem);
    font-style: italic;
    line-height: 1.15;
    margin: 0 0 0.5rem;
    text-align: left;
}
.poem-split__meta {
    font-family: var(--font-system);
    font-size: 0.82rem;
    color: var(--color-text-muted);
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--glass-border);
}
.poem-split__body .stanza {
    font-family: var(--font-book-body);
    margin-bottom: 1em;
    line-height: 1.9;
    font-size: 17px;
    color: var(--color-text);
}
.poem-split__tags { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 0.5rem; }
.poem-split__books {
    margin-top: 1.5rem;
    font-family: var(--font-system);
    font-size: 0.83rem;
    color: var(--color-text-muted);
    border-top: 1px solid var(--glass-border);
    padding-top: 1rem;
}
.poem-split__aside-label {
    display: block;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
}
.poem-split__books a { color: var(--color-accent); text-decoration: none; }
.poem-split__nav { margin-top: 1rem; }

@media (max-width: 860px) {
    .poem-split { grid-template-columns: 1fr; min-height: auto; }
    .poem-split__image { position: relative; top: 0; height: 55vw; max-height: 420px; }
    .poem-split__inner { padding: 2.5rem 1.5rem; max-width: 100%; }
}
.poem-single .stanza { margin-bottom: 2.2em; line-height: 2.1; font-size: 1.3rem; }
.poem-single__body .stanza:last-child,
.poem-split__body .stanza:last-child { margin-bottom: 0; }
.seo-only-tags {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
}
.poem-single__notes, .poem-single__publications, .poem-single__books {
    border-top: 1px solid var(--glass-border);
    padding: 1.5rem 0;
    margin-top: 1.5rem;
}
.poem-single__notes h2, .poem-single__publications h2, .poem-single__books h2 {
    font-size: 1rem;
    font-family: var(--font-system);
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.poem-single__note-intro {
    margin-bottom: 0.65rem;
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}
.poem-single__note-meta {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.35rem;
}
.poem-single__note-meta li {
    font-size: 0.92rem;
    line-height: 1.55;
    color: var(--color-text);
}
.poem-single__note-meta strong {
    color: var(--color-text-muted);
    font-family: var(--font-system);
    font-size: 0.76rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-right: 0.3rem;
}

/* ── Tags ────────────────────────────────────────────────────── */
.tag {
    display: inline-block;
    padding: 0.2em 0.75em;
    background: rgba(255,250,238,0.5);
    border: 1px solid var(--glass-border);
    border-radius: 2px;
    font-family: var(--font-system);
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-decoration: none;
    margin: 2px;
    transition: all var(--transition);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.tag:hover { background: var(--color-primary); color: #fff8ee; border-color: var(--color-primary); }
.tag-cloud { display: flex; flex-wrap: wrap; gap: 4px; }

/* ── Book Cards ──────────────────────────────────────────────── */
.book-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 2rem; }
.book-card {
    text-align: center;
    background: transparent;
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}
.book-card:hover {
    transform: translateY(-5px) rotate(-0.4deg);
    box-shadow: var(--shadow-lg);
}
.book-card__cover-link { display: block; }
.book-card__cover {
    width: 100%;
    aspect-ratio: 2/3;
    object-fit: cover;
    display: block;
}
.book-card__cover--placeholder { display: flex; align-items: center; justify-content: center; background: rgba(201,168,130,0.15); aspect-ratio: 2/3; color: var(--color-text-muted); font-style: italic; font-size: 0.9rem; padding: 1rem; }
.book-card__info { padding: 0.75rem 1.25rem 1.25rem; background: var(--glass-bg); backdrop-filter: blur(14px); border: 1px solid var(--glass-border); border-top: none; display: flex; flex-direction: column; flex: 1; gap: 0.25rem; }
.book-card__info .btn { margin-top: auto; align-self: center; }
.book-card__title { font-size: 1.05rem; }
.book-card__title { font-family: var(--font-title); }
.book-card__title a { color: var(--color-text); transition: color var(--transition); }
.book-card__title a:hover { color: var(--color-primary); }
.book-card__sub  { font-style: italic; color: var(--color-text-muted); font-size: 0.88rem; min-height: 1.2em; }
.book-card__year { font-family: var(--font-system); font-size: 0.75rem; color: var(--color-text-muted); min-height: 1.1em; }

.book-feature { display: grid; grid-template-columns: 200px 1fr; gap: 2.5rem; align-items: start; padding: 2.5rem 0; border-bottom: 1px solid var(--glass-border); }
.book-feature__cover-link { display: block; }
.book-feature__cover {
    width: 100%;
    aspect-ratio: 2/3;
    object-fit: cover;
    background: transparent;
    box-shadow: var(--shadow-lg);
    border-radius: 3px;
    display: block;
}
.book-feature__cover--placeholder { display: flex; align-items: center; justify-content: center; background: rgba(201,168,130,0.15); aspect-ratio: 2/3; border-radius: 3px; color: var(--color-text-muted); font-style: italic; font-size: 0.9rem; padding: 1rem; }
.book-feature__title { font-size: 1.75rem; }
.book-feature__sub   { font-style: italic; color: var(--color-text-muted); margin-bottom: 0.5rem; }
.book-feature__meta  { font-family: var(--font-system); font-size: 0.82rem; color: var(--color-text-muted); margin-bottom: 1rem; }
.book-feature__meta span + span::before { content: ' · '; }
.book-feature__actions { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 1rem; }

/* ── Book List (public /books page) ──────────────────────────── */
.book-list { display: flex; flex-direction: column; gap: 0; margin: 2rem 0; }

.book-card-row {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 2.5rem;
    align-items: start;
    padding: 2.5rem 0;
    border-bottom: 1px solid var(--glass-border);
}
.book-card-row:first-child { border-top: 1px solid var(--glass-border); }
.book-card-row--upcoming { opacity: 0.85; }

.book-card-row__cover-wrap {
    position: relative;
    display: block;
    flex-shrink: 0;
}
.book-card-row__cover {
    width: 100%;
    aspect-ratio: 2/3;
    object-fit: cover;
    background: transparent;
    border-radius: 4px;
    box-shadow: 0 8px 28px rgba(0,0,0,0.18);
    display: block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.book-card-row__cover-wrap:hover .book-card-row__cover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(0,0,0,0.24);
}
.book-card-row__cover--placeholder {
    width: 100%;
    aspect-ratio: 2/3;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201,168,130,0.12);
    border: 1px solid var(--glass-border);
    border-radius: 4px;
    color: var(--color-text-muted);
    font-style: italic;
    font-size: 0.9rem;
    padding: 1rem;
    text-align: center;
}
.book-card-row__badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--color-accent);
    color: #fff;
    padding: 0.25em 0.8em;
    border-radius: 2em;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    pointer-events: none;
}

.book-card-row__info {
    display: flex;
    flex-direction: column;
    padding-top: 0.25rem;
}
.book-card-row__title {
    font-size: 1.8rem;
    line-height: 1.2;
    margin: 0 0 0.35rem;
}
.book-card-row__title a { color: var(--color-text); text-decoration: none; transition: color var(--transition); }
.book-card-row__title a:hover { color: var(--color-primary); }
.book-card-row__subtitle {
    font-family: 'Playfair Display', var(--font-serif);
    font-style: italic;
    color: var(--color-text-muted);
    font-size: 1.05rem;
    margin: 0 0 0.75rem;
}
.book-card-row__meta {
    font-family: var(--font-system);
    font-size: 0.85rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 1rem;
}
.book-card-row__meta span + span::before { content: ' · '; }
.book-card-row__excerpt {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--color-text);
    margin-bottom: 1.5rem;
    max-width: 55ch;
}
.book-card-row__actions { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: auto; }

/* ── Book sidebar items ──────────────────────────────────────── */
.widget__list--books { list-style: none; padding: 0; margin: 0; }
.widget__list--books li { margin-bottom: 0; }

.book-sidebar-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 0.5rem;
    border-radius: var(--radius);
    text-decoration: none;
    color: var(--color-text);
    transition: background var(--transition), color var(--transition);
    border-bottom: 1px solid var(--glass-border);
}
.book-sidebar-item:last-child { border-bottom: none; }
.book-sidebar-item:hover { background: var(--glass-bg); color: var(--color-primary); }
.book-sidebar-item.active { background: var(--glass-bg); color: var(--color-primary); font-weight: 600; }

.book-sidebar-item__cover {
    width: 42px;
    height: 58px;
    object-fit: cover;
    border-radius: 2px;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.18);
}
.book-sidebar-item__cover--placeholder {
    width: 42px;
    height: 58px;
    background: var(--color-primary-light, #e8d9c5);
    border-radius: 2px;
    flex-shrink: 0;
}
.book-sidebar-item__title {
    font-size: 0.9rem;
    line-height: 1.3;
    flex: 1;
}
.book-sidebar-item__badge {
    display: inline-block;
    font-size: 0.7rem;
    background: var(--color-primary);
    color: #fff;
    border-radius: 1em;
    padding: 0.1em 0.5em;
    margin-left: 0.25rem;
    vertical-align: middle;
    font-weight: 600;
}

/* ── Book detail panel ───────────────────────────────────────── */
.books-detail-shell {
    padding-top: 1.5rem;
    padding-bottom: 0;
}
.book-detail__header {
    margin-bottom: 1rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.book-detail__header-main {
    position: relative;
    width: fit-content;
    max-width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.book-detail__title-frame {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}
.book-detail__title {
    font-size: clamp(1.9rem, 3.4vw, 2.8rem);
    line-height: 1.2;
    margin: 0;
    text-align: center;
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 400;
}
.book-detail__title .book-title__sub {
    margin-top: 0.3em;
}
.book-title__series {
    display: block;
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 400;
    font-size: 1.4em;
    line-height: 0.88;
    letter-spacing: 0.015em;
    margin: 0 0 0.32em;
    color: inherit;
    transform: scaleY(1.08);
    transform-origin: center bottom;
    white-space: nowrap;
}
.book-title__sub {
    display: block;
    font-family: var(--font-title);
    font-weight: normal;
    font-style: normal;
    color: inherit;
    line-height: 0.94;
    white-space: nowrap;
    margin-top: 0.12em;
}
.book-detail__subtitle {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 400;
    font-style: italic;
    color: var(--color-text-muted);
    font-size: 1.55rem;
    margin: 0.35rem 0 0;
    text-align: center;
}
.book-detail__status-cell {
    position: absolute;
    top: 1.3rem;
    right: calc(1.1rem - 2.6in);
    width: max-content;
    z-index: 1;
    pointer-events: none;
}
.book-detail__badge {
    display: block;
    text-align: center;
    background: var(--color-primary);
    color: #fff;
    padding: 0.4em 1.2em;
    border-radius: 1em;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0.5rem auto 0;
    width: fit-content;
}
.book-detail__badge--panel {
    width: max-content;
    margin: 0;
    padding: 0.56rem 1.22rem;
    min-height: auto;
    border-radius: 999px;
    background: linear-gradient(135deg, #7e5a35 0%, #a87946 52%, #c39257 100%);
    box-shadow: 0 12px 28px rgba(78, 55, 30, 0.26);
    border: 1px solid rgba(255, 248, 238, 0.52);
    font-family: var(--font-system);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.17em;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: 0 1px 1px rgba(48, 30, 12, 0.28);
    transform: rotate(18deg);
    transform-origin: center;
}

.book-detail__intro {
    display: grid;
    grid-template-columns: 540px 1fr;
    gap: 2.2rem;
    align-items: start;
    margin-bottom: 2rem;
}
.book-detail__cover {
    width: 100%;
    display: block;
    border-radius: var(--radius);
    box-shadow: 0 6px 28px rgba(0,0,0,0.18);
}
.book-detail__cover--placeholder {
    width: 100%;
    aspect-ratio: 2/3;
    background: var(--color-primary-light, #e8d9c5);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    text-align: center;
    color: var(--color-text-muted);
}
.book-detail__description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 1rem;
}
.book-detail__actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}
.book-detail__actions .btn--primary {
    min-width: 15rem;
}
/* Colophon line — sits below the buy actions like the imprint line on a real
   book's title page. Small, subtle, expected by readers. Clickable to imprint. */
.book-detail__imprint {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin: 1.5rem 0 0;
    padding-top: 0.9rem;
    border-top: 1px solid rgba(122,92,53,0.18);
    font-family: var(--font-system);
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color var(--transition);
}
.book-detail__imprint:hover { color: var(--color-primary); }
.book-detail__imprint strong {
    color: var(--color-text);
    font-weight: 700;
    transition: color var(--transition);
}
.book-detail__imprint:hover strong { color: var(--color-primary); }
.book-detail__imprint-mark {
    width: auto;
    height: 22px;
    max-width: 18px;
    object-fit: contain;
    object-position: center;
    opacity: 0.95;
}
.preorder-banner--book-detail {
    margin-bottom: 0.95rem;
    box-shadow: 0 12px 24px rgba(52, 36, 20, 0.08);
}
.preorder-contact--book-detail {
    text-align: left;
    padding-top: 0;
}

.book-detail__poems {
    border-top: 1px solid var(--glass-border);
    padding-top: 1.35rem;
    margin-top: 0.5rem;
}
.book-detail__poems-heading {
    font-size: clamp(1.35rem, 1.9vw, 1.7rem);
    font-weight: 400;
    letter-spacing: 0.02em;
    margin-bottom: 1rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    font-family: var(--font-system);
    text-align: left;
}
.book-detail__poems-heading em {
    font-style: italic;
    color: var(--color-text);
    font-family: var(--font-serif);
    text-transform: none;
    letter-spacing: 0;
}

@media (max-width: 1100px) {
    .book-detail__intro { grid-template-columns: 400px 1fr; gap: 2.5rem; }
}
@media (max-width: 860px) {
    .book-detail__intro { grid-template-columns: 300px 1fr; gap: 2rem; }
    .book-detail__title { font-size: 2.5rem; }
    .book-detail__status-cell {
        top: 1.02rem;
        right: calc(0.8rem - 1.35in);
    }
    .book-detail__badge--panel {
        font-size: 0.71rem;
        padding: 0.5rem 1.02rem;
        transform: rotate(16deg);
    }
}
@media (max-width: 600px) {
    .book-detail__intro { grid-template-columns: 1fr; gap: 1.5rem; }
    .book-detail__cover { max-width: 340px; margin: 0 auto; }
    .book-detail__status-cell {
        top: 0.88rem;
        right: calc(0.45rem - 0.66in);
    }
    .book-detail__badge--panel {
        font-size: 0.66rem;
        letter-spacing: 0.12em;
        padding: 0.46rem 0.82rem;
        transform: rotate(14deg);
    }
    .book-detail__title { font-size: 2rem; }
}

/* ── Testimonials ────────────────────────────────────────────── */
/* ── Testimonial Carousel ─────────────────────────────────── */
.tcarousel { position: relative; max-width: 1200px; margin: 0 auto; }
.tcarousel__track {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.25rem;
    min-height: 320px;
    align-items: start;
}
.tcarousel__slide {
    display: none;
    animation: tFadeIn 0.5s ease;
}
.tcarousel__slide.is-active,
.tcarousel__slide.is-active-2,
.tcarousel__slide.is-active-3 { display: block; }
@keyframes tFadeIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

.tcarousel__dots { display: flex; justify-content: center; gap: 0.5rem; margin-top: 1.5rem; }
.tcarousel__dot {
    width: 10px; height: 10px; border-radius: 50%;
    background: var(--color-text-muted); opacity: 0.35;
    border: none; cursor: pointer; padding: 0; transition: opacity var(--transition), background var(--transition);
}
.tcarousel__dot.is-active { background: var(--color-accent); opacity: 1; }

.testimonial-card {
    background: var(--glass-bg);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 2.5rem 2rem 2rem;
    text-align: center;
    position: relative;
}
.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: -0.3rem;
    left: 1.2rem;
    font-family: var(--font-serif);
    font-size: 5rem;
    line-height: 1;
    color: var(--color-accent);
    opacity: 0.3;
    pointer-events: none;
}
.testimonial-card__avatar-wrap { margin: 0 auto 1rem; width: 80px; height: 80px; }
.testimonial-card__avatar { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; border: 3px solid var(--glass-border); display: block; }
.testimonial-card__stars { color: #c9973a; font-size: 1rem; margin-bottom: 0.75rem; letter-spacing: 0.15em; }
.testimonial-card__text { font-style: italic; font-size: 1rem; line-height: 1.8; color: var(--color-text); margin-bottom: 1.25rem; }
.testimonial-card__author { font-family: var(--font-system); font-size: 0.78rem; font-weight: 600; color: var(--color-primary); letter-spacing: 0.08em; text-transform: uppercase; }
.testimonial-card__role { font-family: var(--font-system); font-size: 0.75rem; color: var(--color-text-muted); margin-top: 0.2rem; }
.testimonial-card__date { font-family: var(--font-system); font-size: 0.72rem; color: var(--color-text-muted); margin-top: 0.3rem; opacity: 0.75; }

/* ── Quote / legacy ──────────────────────────────────────────── */
.quote-item { color: var(--color-text); padding: 2rem; text-align: center; max-width: 700px; margin: 0 auto; }
.quote-item__text { font-size: 1.3rem; font-style: italic; line-height: 1.55; margin-bottom: 1rem; }
.quote-item__source cite { font-style: normal; font-family: var(--font-system); font-size: 0.85rem; font-weight: 600; color: var(--color-primary); }
.quote-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 2rem; }

/* ── Post Cards ──────────────────────────────────────────────── */
.post-list { display: flex; flex-direction: column; gap: 1rem; }
.post-card {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--glass-bg);
    backdrop-filter: blur(14px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.post-card:hover { transform: translateX(4px); border-color: rgba(140,100,55,0.38); box-shadow: var(--shadow-md); }
.post-card--full {
    grid-template-columns: clamp(240px, 28vw, 320px) 1fr;
    align-items: start;
}
.post-card__image-link {
    display: block;
    width: 100%;
    min-height: 0;
    height: auto;
    background: transparent;
    border: 0;
    border-radius: 0;
    overflow: hidden;
}
.post-card__image {
    width: 100%;
    height: auto;
    object-fit: unset;
    object-position: center center;
    border-radius: 0;
    display: block;
}
.post-card__date  { font-family: var(--font-system); font-size: 0.75rem; color: var(--color-text-muted); display: block; margin-bottom: 0.3rem; }
.post-card__cat   { font-family: var(--font-system); font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--color-text-muted); }
.post-card__title { font-family: var(--font-title); font-size: var(--title-size); margin: 0.28rem 0 0.5rem; line-height: 1.3; }
.post-card__excerpt { font-style: italic; color: var(--color-text-muted); font-size: 1.02rem; line-height: 1.68; margin-bottom: 0.55rem; }
.post-card__title a { color: var(--color-text); transition: color var(--transition); }
.post-card__title a:hover { color: var(--color-primary); }
.post-card__link  { font-family: var(--font-system); font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-primary); }

.post-single__body img,
.post-single__body .journal-image,
.post-single__body figure {
    display: block;
    margin: 1.15rem auto;
    max-width: min(86%, 760px);
}
.post-single__body img {
    width: auto;
    height: auto;
    border-radius: 0;
}
.post-single__body figure img {
    width: 100%;
    object-fit: cover;
}

/* ── Events ──────────────────────────────────────────────────── */
.events-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(220px, 320px);
    gap: 2rem;
    align-items: center;
    padding: 1.5rem 1.75rem;
    margin: 0 0 2rem;
}
.events-hero__eyebrow {
    font-family: var(--font-system);
    font-size: 0.75rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 0.5rem;
}
.events-hero__title {
    font-family: var(--font-title);
    font-size: var(--title-size);
    margin-bottom: 0.65rem;
}
.events-hero__text {
    max-width: 60ch;
    color: var(--color-text-muted);
    line-height: 1.75;
    margin: 0;
}
.events-hero__portrait-wrap {
    justify-self: end;
    width: min(100%, 320px);
}
.events-hero__portrait {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center top;
    border-radius: 0;
    border: none;
    box-shadow: var(--shadow-lg);
}
.events-section {
    margin-bottom: 2rem;
}
.events-section__title {
    font-family: var(--font-title);
    font-size: var(--title-size);
    margin-bottom: 1rem;
}
.event-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.4rem;
}
.event-card {
    display: grid;
    grid-template-rows: auto 1fr;
    background: var(--glass-bg);
    backdrop-filter: blur(14px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.event-card__image-link {
    display: block;
}
.event-card__image {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    object-position: center;
    display: block;
}
.event-card__body {
    display: grid;
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 1rem;
    padding: 1.15rem 1.2rem 1.25rem;
}
.event-card__date {
    text-align: center;
    padding-top: 0.1rem;
}
.event-card__month,
.event-card__year {
    display: block;
    font-family: var(--font-system);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-text-muted);
}
.event-card__day {
    display: block;
    font-family: var(--font-serif);
    font-size: 2rem;
    line-height: 1;
    margin: 0.2rem 0;
}
.event-card__type {
    display: inline-block;
    font-family: var(--font-system);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-text-muted);
    margin-bottom: 0.45rem;
}
.event-card__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: var(--title-size);
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 0.35rem;
}
.event-card__title a {
    color: var(--color-text);
}
.event-card__location,
.event-card__price {
    color: var(--color-text-muted);
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 0.55rem;
}
.event-card__price.free {
    color: var(--color-primary);
    font-weight: 600;
}
.event-card__info .btn {
    margin-right: 0.45rem;
    margin-top: 0.2rem;
}
.event-list { display: flex; flex-direction: column; gap: 0.6rem; }
.event-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.1rem 1.4rem;
    background: var(--glass-bg);
    backdrop-filter: blur(14px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    transition: transform var(--transition), border-color var(--transition);
}
.event-item:hover { transform: translateX(4px); border-color: rgba(140,100,55,0.38); }
.event-item__thumb-link {
    flex-shrink: 0;
}
.event-item__thumb {
    width: 92px;
    height: 92px;
    object-fit: cover;
    object-position: center;
    border-radius: 0;
    border: none;
    display: block;
}
.event-item__content {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 0;
}
.event-item__date { text-align: left; min-width: 0; font-family: var(--font-system); font-size: 0.78rem; color: var(--color-text-muted); }
.event-item__month { display: block; font-family: var(--font-system); font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--color-text-muted); }
.event-item__day   { display: block; font-family: var(--font-serif); font-size: 1.75rem; line-height: 1; color: var(--color-text); }
.event-item__info  { flex: 1; }
.event-item__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: var(--title-size);
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 0.15rem;
}
.event-item__meta  { font-family: var(--font-system); font-size: 0.78rem; color: var(--color-text-muted); }

.event-single .page-header h1 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: 0;
    margin: 0.35rem 0 0;
    color: var(--color-text);
}
.event-single__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem 1.25rem;
    margin-top: 0.75rem;
    font-family: var(--font-system);
    font-size: 0.95rem;
    line-height: 1.45;
    color: var(--color-text);
}
.event-single__meta > span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.25rem 0;
}
.event-single__meta > span + span {
    padding-left: 1.25rem;
    border-left: 1px solid rgba(43, 30, 16, 0.18);
}
.event-single__meta i {
    color: var(--color-accent, #7a4e24);
    font-size: 0.9rem;
}
@media (max-width: 640px) {
    .event-single__meta { flex-direction: column; gap: 0.35rem; }
    .event-single__meta > span + span { padding-left: 0; border-left: none; }
}

/* ── Gallery ─────────────────────────────────────────────────── */
/* Home 2-row × 4-col gallery grid */
.home-gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: .75rem; margin: 1.5rem 0; }
.home-gallery-grid--six { grid-template-columns: repeat(3, 1fr); }
.home-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    display: block;
    aspect-ratio: 4 / 3;
    background: transparent;
}

.home-gallery-item img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    transition: opacity .25s ease;
}
.home-gallery-item:hover img { opacity: 0.96; }
.home-gallery-item__title { position: absolute; bottom: 0; left: 0; right: 0; padding: .65rem .85rem; background: linear-gradient(transparent, rgba(28,15,5,.7)); color: #f0e6d0; font-size: 1.12rem; line-height: 1.05; font-family: var(--font-title); opacity: 0; transition: opacity .3s; }
.home-gallery-item:hover .home-gallery-item__title { opacity: 1; }

/* Home gallery rotator */
.home-gallery-rotator { position: relative; }
.home-gallery-rotator__slide { display: none; }
.home-gallery-rotator__slide.is-active { display: block; animation: galleryFadeIn .4s ease; }
@keyframes galleryFadeIn { from { opacity: 0; } to { opacity: 1; } }
.home-gallery-rotator__controls { display: flex; align-items: center; justify-content: center; gap: 1rem; margin: .75rem 0 .5rem; }
.home-gallery-rotator__dots { display: flex; gap: .5rem; align-items: center; }
.home-gallery-rotator__dot { width: 10px; height: 10px; border-radius: 50%; background: var(--color-muted, #bba99a); border: none; padding: 0; cursor: pointer; transition: background .2s, transform .2s; }
.home-gallery-rotator__dot.is-active { background: var(--color-accent, #8b5e3c); transform: scale(1.3); }
.home-gallery-rotator__btn { background: none; border: 1px solid var(--color-border, #c8b49a); border-radius: 50%; width: 34px; height: 34px; display: flex; align-items: center; justify-content: center; cursor: pointer; color: var(--color-text, #3d2b1a); font-size: 1rem; transition: background .2s, color .2s; }
.home-gallery-rotator__btn:hover { background: var(--color-accent, #8b5e3c); color: #fff; border-color: var(--color-accent, #8b5e3c); }

.gallery-masonry { columns: 4 200px; column-gap: 1rem; padding: 1rem 0; }
.gallery-masonry-item {
    break-inside: avoid;
    margin-bottom: 1rem;
    position: relative;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid rgba(140,100,55,0.2);
    cursor: pointer;
}
.gallery-masonry-item img { width: 100%; height: auto; display: block; transition: transform 0.4s ease; }
.gallery-masonry-item:hover img { transform: scale(1.04); }
.gallery-masonry-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(30,15,5,0.4) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s;
}
.gallery-masonry-item:hover::after { opacity: 1; }

.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1.25rem; padding: 2rem 0; }
.gallery-item {
    overflow: hidden;
    border-radius: var(--radius-sm);
    border: 0;
    position: relative;
    cursor: pointer;
    background: transparent;
}
.gallery-page--book .gallery-item {
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: 0 14px 28px rgba(36, 25, 17, 0.08);
}
.title-cap__first { display: inline; }
.gallery-item__link {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: inherit;
    background: transparent;
    aspect-ratio: 2 / 3;
}
.gallery-item img {
    display: block;
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: opacity 0.25s ease;
}
.gallery-item:hover img { opacity: 0.96; }
.gallery-item figcaption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: .6rem .75rem .5rem;
    background: linear-gradient(transparent, rgba(20,10,2,.72));
    transform: translateY(100%);
    transition: transform 0.3s ease;
}
.gallery-item:hover figcaption { transform: translateY(0); }
.gallery-page--book .gallery-item figcaption {
    background: linear-gradient(transparent, rgba(52, 34, 16, 0.82));
}
.gallery-item__title {
    display: block;
    color: #f0e6d0;
    font-family: var(--font-serif);
    font-size: .94rem;
    text-decoration: none;
    font-style: italic;
    line-height: 1.3;
}
.gallery-item__title:hover { text-decoration: underline; color: #fff; }
.gallery-item__book {
    display: block;
    color: rgba(240,230,208,.7);
    font-family: var(--font-system);
    font-size: .72rem;
    letter-spacing: .04em;
    margin-top: .2rem;
}
.gallery-page--book .album-filter a {
    background: rgba(247, 236, 212, 0.96);
    border: 1px solid rgba(140, 100, 55, 0.22);
    color: var(--book-ink);
}
.gallery-page--book .album-filter a.active,
.gallery-page--book .album-filter a:hover {
    background: var(--book-accent);
    color: #fff8ee;
    border-color: var(--book-accent);
}
.album-filter { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-top: 1rem; }
.album-filter a { font-family: var(--font-system); font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.3rem 0.9rem; border: 1px solid var(--glass-border); border-radius: 2px; color: var(--color-text-muted); transition: all var(--transition); }
.album-filter a.active, .album-filter a:hover { background: var(--color-primary); color: #fff8ee; border-color: var(--color-primary); }

/* ── Newsletter ──────────────────────────────────────────────── */
.section--newsletter { padding: 3rem 2rem; text-align: center; }
.newsletter-cta__title {
    font-family: var(--font-title);
    font-size: var(--title-size);
    color: var(--color-text);
    margin-bottom: 0.75rem;
}
.newsletter-cta__hand {
    font-family: var(--font-hand);
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}
.newsletter-cta { max-width: 440px; margin: 0 auto; }
.newsletter-cta__text {
    font-size: 1rem;
    color: var(--color-text-muted);
    line-height: 1.75;
    margin-bottom: 1.75rem;
    font-style: italic;
}
.newsletter-cta__form { display: flex; flex-direction: column; gap: 0.75rem; align-items: stretch; }
.newsletter-cta__form input[type=email] {
    width: 100%;
    padding: 0.75rem 1.2rem;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: var(--font-body);
    background: rgba(255,250,238,0.6);
    color: var(--color-text);
    text-align: center;
}
.newsletter-cta__form input[type=email]::placeholder { color: var(--color-text-muted); }
.newsletter-cta__form input[type=email]:focus { outline: none; border-color: var(--color-primary); }
.newsletter-cta__form .btn { align-self: center; padding: 0.65em 2.5em; }

/* ── Lightbox ────────────────────────────────────────────────── */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}
.lightbox-overlay.open { opacity: 1; pointer-events: all; }
.lightbox-img { max-width: 94vw; max-height: 94vh; width: auto; height: auto; display: block; border-radius: 0; border: none; outline: none; }
.lightbox-caption { position: fixed; bottom: 1.5rem; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,0.75); font-family: var(--font-system); font-size: 0.85rem; white-space: nowrap; }
.lightbox-close, .lightbox-prev, .lightbox-next {
    position: absolute;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    color: #fff;
    font-size: 1.3rem;
    cursor: pointer;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.75;
    transition: all 0.2s;
}
.lightbox-close { top: .75rem; right: .75rem; }
.lightbox-prev  { left: .75rem;  top: 50%; transform: translateY(-50%); }
.lightbox-next  { right: .75rem; top: 50%; transform: translateY(-50%); }
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { opacity: 1; background: rgba(201,168,130,0.25); }

/* ── Footer ──────────────────────────────────────────────────── */
.site-footer {
    margin-top: 0;
    position: relative;
    isolation: isolate;
}
.site-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(245, 234, 205, 0.99) 0%, rgba(238, 225, 194, 0.99) 100%);
    z-index: -1;
    pointer-events: none;
}
.footer-main {
    background: rgba(233, 214, 178, 0.72);
    backdrop-filter: blur(22px) saturate(130%);
    -webkit-backdrop-filter: blur(22px) saturate(130%);
    border-top: 1px solid rgba(168, 131, 72, 0.18);
}
.footer-main__inner {
    padding: 1.4rem 0 1.3rem;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    gap: 2rem;
}
.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0.4rem;
    min-width: 0;
    width: 100%;
    max-width: 420px;
    justify-self: start;
    margin-left: -1.1rem;
}
.footer-brand__top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    min-width: 0;
    transform: translateX(-0.9rem);
}
.footer-brand__logo-wrap {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 0;
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    transform: translateX(-0.35rem);
}
.footer-brand .footer-logo {
    height: auto;
    width: min(100%, 155px);
    max-width: 155px;
    margin-bottom: 0;
    display: block;
    filter: drop-shadow(0 1px 2px rgba(90, 58, 20, 0.18));
}
.footer-tagline {
    color: #6c461e;
    font-size: clamp(0.96rem, 1.6vw, 1.08rem);
    font-style: italic;
    margin-bottom: 0;
    line-height: 1.22;
    max-width: 34rem;
    margin-left: 0;
    text-align: center;
}
.social-links {
    display: grid;
    grid-template-columns: repeat(3, 28px);
    gap: 0.55rem;
    margin-top: 0;
}
.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(248, 238, 217, 0.95);
    border: 1px solid rgba(188, 160, 113, 0.26);
    color: #6a4318;
    font-size: 0.72rem;
    box-shadow: 0 2px 8px rgba(115, 80, 36, 0.06);
    transition: all var(--transition);
}
.social-links a i {
    font-size: 0.9rem !important;
    line-height: 1 !important;
    width: 1em;
    height: 1em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.social-links a svg {
    width: 0.9rem !important;
    height: 0.9rem !important;
}
.social-links a:hover { background: rgba(243, 231, 206, 0.98); color: var(--color-primary); transform: translateY(-1px); }
.footer-newsletter {
    width: 100%;
    max-width: 320px;
    justify-self: end;
}
.footer-newsletter__title { font-family: var(--font-system); font-size: 0.63rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--color-primary); margin-bottom: 0.5rem; font-weight: 700; }
.footer-newsletter__text  { font-size: 0.83rem; margin-bottom: 0.5rem; color: var(--color-text-muted); line-height: 1.45; }
.footer-newsletter__row   { display: flex; gap: 0.4rem; }
.footer-newsletter__form input {
    flex: 1;
    padding: 0.45rem 0.75rem;
    font-size: 0.85rem;
    border: 1px solid var(--glass-border);
    background: rgba(255,250,238,0.5);
    color: var(--color-text);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    min-width: 0;
}
.footer-newsletter__form input::placeholder { color: var(--color-text-muted); }
.footer-newsletter__form input:focus { outline: none; border-color: var(--color-primary); }
.footer-newsletter__form button {
    background: var(--color-primary);
    border: none;
    padding: 0.45rem 0.9rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-weight: 600;
    color: #fff8ee;
    font-family: var(--font-system);
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: background var(--transition);
    white-space: nowrap;
}
.footer-newsletter__form button:hover { background: var(--color-primary-hover); }
.footer-portrait {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    grid-column: 2;
    width: min(100%, 220px);
    margin-inline: auto;
    justify-self: center;
    align-self: center;
}
.footer-portrait img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--glass-border);
    box-shadow: var(--shadow-md);
    margin: 0 auto 0.6rem;
    display: block;
}
.footer-portrait__name { font-family: var(--font-serif); font-style: italic; color: var(--color-primary); font-size: 1.1rem; line-height: 1.2; margin: 0; }
.footer-portrait__name,
.footer-portrait__role { text-align: center; width: 100%; }
.footer-portrait__role { font-family: var(--font-system); font-size: 0.68rem; color: var(--color-text-muted); letter-spacing: 0.1em; text-transform: uppercase; margin: 0.2rem 0 0; line-height: 1.2; }
.footer-bottom {
    border-top: 1px solid rgba(140,100,55,0.15);
    background: rgba(160,125,75,0.24);
    width: 100%;
}
.footer-bottom__inner {
    padding: 0.72rem 2rem;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    gap: 1rem;
    font-family: var(--font-system);
    font-size: 0.82rem;
    color: var(--color-text-muted);
}
.footer-bottom__copy {
    margin: 0;
    min-width: 0;
    justify-self: start;
}
.footer-bottom__center {
    justify-self: center;
}
.footer-bottom__right {
    justify-self: end;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
}
.footer-credit__icon--press {
    width: auto;
    height: 28px;
    max-width: 22px;     /* portrait silhouette — keep narrow so it doesn't dominate */
    object-fit: contain;
    object-position: center;
}
.footer-credit__link--press {
    /* Non-link span — has no hover/href, just a credit. Keep visuals consistent. */
    cursor: default;
}
@media (max-width: 720px) {
    .footer-bottom__inner {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        text-align: center;
    }
    .footer-bottom__copy,
    .footer-bottom__center,
    .footer-bottom__right { justify-self: center; }
    .footer-bottom__right { flex-wrap: wrap; justify-content: center; }
}
.footer-bottom__inner p {
    margin: 0;
    min-width: 0;
    justify-self: start;
}
.footer-credit__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    justify-self: center;
    color: var(--color-text-muted);
    text-decoration: none;
    font-family: var(--font-system);
    font-size: 0.76rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    white-space: nowrap;
}
.footer-credit__icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    display: block;
}
.footer-credit__label {
    line-height: 1;
    font-weight: 400;
}
.footer-credit__label strong {
    font-weight: 700;
}
.footer-credit__link:hover {
    color: var(--color-primary);
}
.footer-admin-link {
    font-family: var(--font-system);
    font-size: 0.76rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(122,92,53,0.4);
    text-decoration: none;
    transition: color var(--transition);
    white-space: nowrap;
    justify-self: end;
}
.footer-admin-link:hover { color: var(--color-primary); }

/* ── Rustic Press standalone page (/rustic-press.php) ─────────── */
.rustic-press-page {
    max-width: 880px;
    padding: 2rem 1.25rem 4rem;
    margin: 0 auto;
}
.rustic-press-hero {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}
.rustic-press-hero__figure { margin: 0; }
.rustic-press-hero__figure img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 8px 24px rgba(43,30,16,.18));
}
.rustic-press-hero__story p {
    font-size: 1.02rem;
    line-height: 1.85;
    margin: 0 0 1rem;
}
.rustic-press-hero__story p:last-child { margin-bottom: 0; }
.rustic-press-hero__story strong { color: var(--color-text); }

.rustic-press-titles {
    margin-bottom: 3rem;
    padding: 1.6rem 1.85rem;
    background: rgba(255,255,255,0.45);
    border: 1px solid rgba(122,92,53,0.18);
    border-radius: 8px;
}
.rustic-press-titles__heading {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 700;
    margin: 0 0 1rem;
    color: var(--color-text);
}
.rustic-press-titles__list { list-style: none; padding: 0; margin: 0; }
.rustic-press-titles__item {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(122,92,53,0.10);
}
.rustic-press-titles__item:last-child { border-bottom: 0; }
.rustic-press-titles__link {
    color: var(--color-text);
    text-decoration: none;
    flex: 1;
    min-width: 0;
}
.rustic-press-titles__link:hover .rustic-press-titles__title { color: var(--color-primary); }
.rustic-press-titles__title {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.3;
    transition: color var(--transition);
}
.rustic-press-titles__subtitle {
    display: block;
    font-style: italic;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-top: 2px;
}
.rustic-press-titles__year {
    font-family: var(--font-system);
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    color: var(--color-text-muted);
    white-space: nowrap;
}
.rustic-press-titles__pill {
    font-family: var(--font-system);
    font-size: 0.66rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-primary);
    padding: 3px 10px;
    border: 1px solid var(--color-primary);
    border-radius: 999px;
    white-space: nowrap;
    font-weight: 700;
}

.rustic-press-contact {
    text-align: center;
    padding: 1.75rem 0 0;
    border-top: 1px dashed rgba(122,92,53,0.28);
}
.rustic-press-contact__lead {
    font-size: 0.92rem;
    color: var(--color-text-muted);
    margin: 0 0 0.4rem;
}
.rustic-press-contact__email {
    margin: 0;
    font-family: var(--font-serif);
    font-size: 1.1rem;
}
.rustic-press-contact__email a { color: var(--color-primary); text-decoration: none; }
.rustic-press-contact__email a:hover { color: var(--color-primary-hover); text-decoration: underline; }

@media (max-width: 768px) {
    .rustic-press-hero {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    .rustic-press-hero__figure { max-width: 220px; margin: 0 auto; }
    .rustic-press-titles__item { flex-direction: column; align-items: flex-start; gap: 0.35rem; }
}

.about-shell {
    position: relative;
    isolation: isolate;
    padding-bottom: 2rem;
}
.about-shell::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        linear-gradient(to bottom, rgba(24,18,10,0.72) 0%, rgba(24,18,10,0.58) 18%, rgba(24,18,10,0.36) 46%, rgba(24,18,10,0.18) 100%),
        linear-gradient(to right, rgba(24,18,10,0.2) 0%, rgba(24,18,10,0.08) 24%, rgba(24,18,10,0) 48%),
        url('/images/site/author-writing.jpg') center 28% / cover no-repeat;
    pointer-events: none;
    z-index: -1;
}
.about-page {
    position: relative;
    z-index: 1;
    padding-top: 1.75rem;
}
.about-page__sheet {
    position: relative;
    margin-top: 0;
    padding: 1.5rem 2rem 2.5rem;
    background: rgba(255, 249, 239, 0.19);
    backdrop-filter: blur(20px) saturate(135%);
    -webkit-backdrop-filter: blur(20px) saturate(135%);
    border: 1px solid rgba(255, 245, 230, 0.24);
    border-radius: calc(var(--radius) + 6px);
    box-shadow: 0 26px 54px rgba(24, 14, 4, 0.16);
    overflow: hidden;
}
.about-page__sheet::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(140deg, rgba(255,255,255,0.24) 0%, rgba(255,255,255,0.06) 42%, transparent 72%);
    pointer-events: none;
}
.about-page__profile {
    position: relative;
    z-index: 1;
}
.about-page__introline {
    margin: 0 auto 1rem;
    text-align: center;
    font-family: 'Playfair Display', var(--font-serif);
    font-style: italic;
    font-weight: 700;
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    line-height: 1.5;
    color: #f8eddc;
    text-shadow: 0 1px 10px rgba(34, 20, 8, 0.28);
    white-space: nowrap;
}
.about-feature {
    display: grid;
    grid-template-columns: minmax(280px, 360px) 1fr;
    gap: 1.2rem;
    align-items: stretch;
}
.about-feature__media {
    margin: 0;
    border-radius: calc(var(--radius) + 2px);
    overflow: hidden;
    border: 1px solid var(--glass-border);
    background: rgba(255, 250, 238, 0.3);
    box-shadow: 0 14px 36px rgba(24, 14, 4, 0.2);
    animation: aboutFeatureRise 560ms ease-out both;
}
.about-feature__portrait {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
    object-position: center top;
    display: block;
}
.about-feature__story {
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    background: rgba(255, 250, 238, 0.5);
    padding: 1.05rem 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    animation: aboutFeatureRise 640ms ease-out both;
    animation-delay: 80ms;
}
.about-feature__story p {
    margin: 0;
    font-size: 1.15rem;
    line-height: 1.55;
}
.about-feature__meta {
    margin: 0;
    font-family: var(--font-system);
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}
.about-feature__headline {
    margin: 0;
    font-size: clamp(2.1rem, 4vw, 3.1rem);
    line-height: 1.08;
}
.about-feature__intro {
    margin: 0;
    font-size: 1.3rem;
    line-height: 1.58;
    font-style: italic;
}
.about-feature__pull {
    margin: 0.1rem 0;
    padding: 0.55rem 0.75rem;
    border-left: 2px solid rgba(122, 92, 53, 0.42);
    background: rgba(255, 255, 255, 0.26);
    font-size: 1.2rem;
    line-height: 1.58;
    font-style: italic;
    color: var(--color-text-muted);
}
.about-feature__actions {
    margin-top: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}
.about-feature__trust {
    margin: 0.55rem 0 0;
    font-family: var(--font-system);
    font-size: 0.76rem;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    color: rgba(62, 38, 18, 0.72);
}
.about-feature__bio {
    margin: 0;
    max-width: 66ch;
    font-size: clamp(1.05rem, 1.2vw, 1.15rem);
    line-height: 1.72;
    color: var(--color-text);
}
.about-feature__bio > * {
    margin-top: 0;
    margin-bottom: 2.5rem;
    padding-bottom: 0.5rem;
}
.about-feature__bio > *:last-child {
    margin-bottom: 0;
}
.about-feature__bio h2,
.about-feature__bio h3 {
    margin-top: 0.3rem;
    margin-bottom: 0.45rem;
    font-size: clamp(1.58rem, 2.1vw, 1.78rem);
}
.about-page .section { padding: 2rem 0; }
.about-page .section--author { padding-top: 1rem; }
.about-page .section--quotes {
    padding-top: 2.1rem;
    margin-top: 1rem;
    border-top: 1px solid rgba(140,100,55,0.2);
}
.about-page .section--quotes .tcarousel {
    max-width: 980px;
}
.about-quotes__intro {
    max-width: 760px;
    margin: 0 auto 1.1rem;
    padding: 1.05rem 1.15rem;
    text-align: center;
}
.about-quotes__intro .section__title,
.about-quotes__intro .section__subtitle {
    margin-left: auto;
    margin-right: auto;
}
.about-quotes__intro .section__subtitle {
    margin-bottom: 0;
}
.about-page .section--quotes .section__title {
    color: #201207;
    font-size: clamp(1.7rem, 3vw, 2.35rem);
    margin-bottom: 0.45rem;
}
.about-page .section--quotes .section__subtitle {
    color: #3a2411;
    font-family: 'Playfair Display', var(--font-serif);
    font-size: clamp(0.95rem, 1.6vw, 1.1rem);
    font-style: italic;
    line-height: 1.5;
}
.about-page .glass-panel { overflow: hidden; }

/* ── Page Header ─────────────────────────────────────────────── */
.page-header { border-bottom: 1px solid var(--glass-border); padding: 1.15rem 0 0.95rem; }
.page-header--roomy-title { padding-top: 1.75rem; }
.page-header--image { padding: 2.55rem 0 1.8rem; border-bottom: none; }
.page-header--about {
    background: transparent;
    position: relative;
    z-index: 1;
    padding-bottom: 0.75rem;
}
.page-header--about .page-header__title,
.page-header--about .page-header__desc {
    text-shadow: 0 6px 24px rgba(24, 14, 4, 0.34);
}
.page-header .container { max-width: var(--container-width); margin: 0 auto; padding: 0 var(--container-gutter); }
.page-header__title { font-family: var(--font-title); font-size: clamp(2rem, 4.6vw, 3.35rem); font-style: normal; font-weight: 400; letter-spacing: 0.01em; line-height: 1.18; color: var(--color-text); margin: 0; }
.page-header--events .page-header__title { font-size: clamp(1.5rem, 3.2vw, 2.25rem); }
.page-header__sub   { font-family: var(--font-system); color: var(--color-text-muted); margin-top: 0.15rem; font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; }
.page-header__sub--brand-tagline {
    margin-top: 0.4rem;
    font-family: var(--font-system);
    font-size: clamp(0.95rem, 1.3vw, 1.15rem);
    font-weight: 800;
    letter-spacing: 0.18em;
    color: #3b2513;
    text-transform: uppercase;
}
.page-header__desc  { max-width: 600px; color: var(--color-text-muted); font-style: italic; }

.poetry-archive-summary {
    border-bottom: 1px solid var(--glass-border);
    padding: 0.5rem 0 0.8rem;
}

.poetry-archive-summary .container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-gutter);
}

.poetry-archive-summary__line {
    font-family: var(--font-system);
    color: var(--color-text-muted);
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    line-height: 1.35;
    margin: 0;
}

.poetry-archive-summary__line + .poetry-archive-summary__line {
    margin-top: 0.35rem;
}

.poetry-archive-summary__line--muted {
    opacity: 0.82;
}

.poetry-archive-summary__line a {
    font-size: 0.9em;
    opacity: 0.8;
    text-decoration: none;
}
@media (max-width: 1100px) {
    .about-page__introline {
        white-space: normal;
    }
}
@keyframes aboutFeatureRise {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@media (prefers-reduced-motion: reduce) {
    .about-feature__media,
    .about-feature__story {
        animation: none;
    }
}
.breadcrumb { font-family: var(--font-system); font-size: 0.8rem; color: var(--color-text-muted); margin-bottom: 0.5rem; }
.breadcrumb a { color: var(--color-primary); }
.breadcrumb-cat { font-family: var(--font-system); font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--color-text-muted); font-weight: 600; display: block; margin-bottom: 0.25rem; }

/* ── Sidebar ─────────────────────────────────────────────────── */
.sidebar { padding: 1.5rem 0; }
.widget { margin-bottom: 1.85rem; }
.widget__title { font-family: var(--font-system); font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.16em; color: var(--color-primary); margin-bottom: 0.75rem; }
.widget__list { display: flex; flex-direction: column; gap: 0.2rem; }
.widget__list li a { font-family: var(--font-system); font-size: 0.92rem; color: var(--color-text-muted); display: flex; justify-content: space-between; padding: 0.3rem 0; border-bottom: 1px solid rgba(140,100,55,0.08); transition: color var(--transition); }
.widget__list li a:hover { color: var(--color-primary); }
.widget__list li a.active { color: var(--color-primary); font-weight: 600; }
.count { color: var(--color-text-muted); font-weight: 400; }

/* ── Shop ────────────────────────────────────────────────────── */
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1.75rem; padding: 1.4rem 0; }
.product-card { border-radius: var(--radius); overflow: hidden; background: transparent; transition: transform var(--transition), box-shadow var(--transition); display: flex; flex-direction: column; }
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.product-card__body { padding: 1rem 1.25rem 1.25rem; background: var(--glass-bg); backdrop-filter: blur(14px); border: 1px solid var(--glass-border); border-top: none; display: flex; flex-direction: column; flex: 1; }
.product-card__body .btn { margin-top: auto; align-self: flex-start; }
.store-page--book .page-header {
    background: transparent;
    border-color: rgba(140, 100, 55, 0.24);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}
.store-page--book .product-card {
    background: transparent;
    border: none;
    box-shadow: 0 14px 28px rgba(36, 25, 17, 0.08);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-radius: 12px;
}
.product-card__image {
    width: 100%;
    aspect-ratio: 2/3;
    object-fit: cover;
    display: block;
    background: transparent;
}
.product-card__image--placeholder { display: flex; align-items: center; justify-content: center; background: rgba(201,168,130,0.12); aspect-ratio: 2/3; color: var(--color-text-muted); font-style: italic; font-size: 0.9rem; }
.product-card__title {
    font-family: var(--font-title);
    font-size: clamp(1rem, 1.45vw, 1.18rem);
    line-height: 1.05;
    margin-bottom: 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.product-card__title a {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.product-card__body { display: flex; flex-direction: column; flex: 1; }
.product-card__body .btn { margin-top: auto; align-self: center; }
.price { font-family: var(--font-system); font-weight: 700; font-size: 1.05rem; color: var(--color-primary); }
.price--sale { color: var(--color-error); }
.price--original { color: var(--color-text-muted); font-size: 0.9em; text-decoration: line-through; }
.category-filter { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-top: 0.75rem; }
.category-filter a { font-family: var(--font-system); font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.3rem 0.85rem; border: 1px solid var(--glass-border); border-radius: 2px; color: var(--color-text-muted); transition: all var(--transition); }
.category-filter a.active, .category-filter a:hover { background: var(--color-primary); color: #fff8ee; border-color: var(--color-primary); }

/* ── Shop Card extras ────────────────────────────────────────── */
.product-card__image-link { display: block; }
.product-card__formats { display: flex; flex-wrap: wrap; gap: 0.3rem; margin: 0.5rem 0; }
.product-card__format-tag { font-family: var(--font-system); font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.2rem 0.55rem; border: 1px solid var(--glass-border); border-radius: 2px; color: var(--color-text-muted); }
.product-card__price { font-family: var(--font-system); font-weight: 700; font-size: 1rem; color: var(--color-primary); margin-bottom: 0.5rem; }
.product-card__excerpt { font-size: 0.88rem; color: var(--color-text-muted); margin-bottom: 0.75rem; line-height: 1.5; }

/* ── Shop Single ─────────────────────────────────────────────── */
.product-single { padding: 2.25rem 0; }
.store-page--book .product-single {
    padding-bottom: 0.9rem;
}
.store-page--book .product-single__layout,
.store-page--book .product-single__description {
    background: linear-gradient(180deg, rgba(247, 236, 212, 0.97) 0%, rgba(239, 225, 193, 0.97) 100%);
    border: 1px solid rgba(140, 100, 55, 0.22);
    border-radius: 18px;
    box-shadow: 0 18px 32px rgba(36, 25, 17, 0.08);
}
.store-page--book .product-single__layout {
    padding: clamp(1.4rem, 2.5vw, 2.2rem);
}
.store-page--book .product-single__description {
    max-width: none;
    margin: 0 0 1.2rem;
    padding: clamp(1.4rem, 2.5vw, 2.2rem);
}
.store-page--book + .about-author-band {
    margin-top: 0.35rem;
}
.product-single__layout { display: grid; grid-template-columns: 320px 1fr; gap: 2.1rem; align-items: start; margin-bottom: 2.25rem; }
.product-single__images { position: sticky; top: 5rem; }
.product-single__main-img { width: 100%; border-radius: 0; display: block; }
.product-single__title {
    font-size: clamp(2.35rem, 5vw, 4rem);
    margin-bottom: 0.25rem;
    max-width: none;
}
.product-single__title .book-title__series {
    font-size: 1.46em;
    line-height: 0.84;
}
.product-single__title .book-title__sub {
    margin-top: 0.3em;
}
.product-single__subtitle { font-size: 1.05rem; color: var(--color-text-muted); margin-bottom: 0.5rem; font-style: italic; }
.product-single__author { font-family: var(--font-system); font-size: 0.88rem; color: var(--color-text-muted); letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 1.1rem; }
.preorder-banner { background: linear-gradient(135deg, rgba(122,92,53,0.1), rgba(122,92,53,0.05)); border: 1px solid rgba(122,92,53,0.3); border-radius: 8px; padding: 1rem 1.25rem; margin-bottom: 1.5rem; }
.preorder-banner__badge { display: inline-block; background: var(--color-primary); color: #fff; font-family: var(--font-system); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.25rem 0.75rem; border-radius: 20px; margin-bottom: 0.5rem; }
.preorder-banner__text { font-family: var(--font-system); font-size: 0.9rem; color: var(--color-text-muted); margin: 0; line-height: 1.5; }
.product-format__price--tba { color: var(--color-text-muted); font-weight: 400; font-size: 0.85rem; }
.preorder-contact { text-align: center; padding: 0.75rem 0; }
.preorder-contact__msg { display: block; font-family: var(--font-system); font-size: 0.9rem; color: var(--color-text-muted); }
.product-single__excerpt { font-size: 1rem; line-height: 1.7; color: var(--color-text); margin: 1rem 0; }
.product-single__description { max-width: 72ch; margin: 0 auto 2.25rem; padding: 0; line-height: 1.8; }
.product-single__meta { display: grid; grid-template-columns: auto 1fr; gap: 0.25rem 1rem; font-family: var(--font-system); font-size: 0.85rem; margin: 1rem 0 1.15rem; }
.product-single__meta dt { color: var(--color-text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.75rem; align-self: center; }
.product-single__meta dd { color: var(--color-text); margin: 0; }

/* Format selector */
.product-formats { display: flex; flex-wrap: wrap; gap: 0.6rem; margin: 1rem 0 0.8rem; }
.product-format { padding: 0.65rem 1.1rem; border: 2px solid var(--glass-border); border-radius: var(--radius-sm); cursor: pointer; transition: all var(--transition); background: var(--glass-bg); min-width: 90px; text-align: center; }
.product-format:hover { border-color: var(--color-primary); }
.product-format--active { border-color: var(--color-primary); background: rgba(122,92,53,0.08); }
.product-format__label { font-family: var(--font-system); font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--color-text-muted); font-weight: 600; }
.product-format--active .product-format__label { color: var(--color-primary); }
.product-format__price { font-family: var(--font-system); font-size: 1rem; font-weight: 700; color: var(--color-primary); margin-top: 0.2rem; }
.product-format__stock { font-size: 0.75rem; margin-top: 0.15rem; }
.product-buy-action { margin: 0.8rem 0; }
.btn--full { width: 100%; text-align: center; justify-content: center; }

@media (max-width: 768px) {
    .product-single__layout { grid-template-columns: 1fr; gap: 2rem; }
    .product-single__images { position: static; max-width: 280px; margin: 0 auto; }
    .store-page--book .product-single__layout,
    .store-page--book .product-single__description {
        padding: 1.2rem;
    }
}

/* ── Pagination ──────────────────────────────────────────────── */
.pagination { display: flex; justify-content: center; padding: 1.35rem 0; }
.pagination ul { display: flex; gap: 0.3rem; }
.pagination a, .pagination span { display: block; padding: 0.42rem 0.85rem; font-family: var(--font-system); font-size: 0.82rem; border: 1px solid var(--glass-border); border-radius: var(--radius-sm); color: var(--color-text-muted); background: var(--glass-bg); backdrop-filter: blur(8px); text-decoration: none; transition: all var(--transition); }
.pagination a.current, .pagination a:hover { background: var(--color-primary); color: #fff8ee; border-color: var(--color-primary); }

/* ── Review Block ────────────────────────────────────────────── */
.review-block-wrap {
    width: min(calc(100% - 2rem), 600px);
    margin: 1.25rem auto;
}
.books-detail-shell .review-block-wrap {
    margin-bottom: 1.25rem;
}
.books-detail-shell + .about-author-band {
    margin-top: 0;
}
.review-block-wrap.container--narrow {
    max-width: none;
    padding: 0;
}
.review-block {
    display: grid;
    grid-template-columns: 144px minmax(0, 1fr);
    gap: 0;
    overflow: hidden;
    border-radius: 12px;
}
.review-block.glass-panel {
    padding: 0;
}
.review-block__totals {
    padding: 0.8rem 0.62rem;
    background: rgba(122,92,53,0.1);
    border-right: 1px solid var(--glass-border);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    gap: 0.12rem;
}
.review-block__score {
    font-size: 2.1rem;
    font-weight: 700;
    line-height: 1;
    color: var(--color-primary);
    font-family: var(--font-serif);
}
.review-block__stars {
    color: #c9973a;
    font-size: 0.88rem;
    letter-spacing: 0.05em;
    margin: 0.12rem 0;
}
.review-block__count {
    font-size: 0.72rem;
    color: var(--color-text-muted);
    margin-bottom: 0.45rem;
}
.review-block__bars {
    width: 100%;
    margin-top: 0.32rem;
}
.review-block__bar-row {
    display: flex;
    align-items: center;
    gap: 0.26rem;
    margin-bottom: 0.24rem;
}
.review-block__bar-label {
    font-size: 0.72rem;
    color: var(--color-text-muted);
    width: 10px;
    text-align: right;
    flex-shrink: 0;
}
.review-block__bar-star {
    color: #c9973a;
    font-size: 0.66rem;
    flex-shrink: 0;
}
.review-block__bar-track {
    flex: 1;
    min-width: 28px;
    height: 5px;
    background: var(--glass-border);
    border-radius: 3px;
    overflow: hidden;
}
.review-block__bar-fill {
    height: 100%;
    background: #c9973a;
    border-radius: 3px;
}
.review-block__bar-pct {
    font-size: 0.68rem;
    color: var(--color-text-muted);
    width: 28px;
    text-align: right;
    flex-shrink: 0;
}
.review-block__bar-n {
    font-size: 0.68rem;
    color: var(--color-text-muted);
    width: 18px;
    text-align: right;
    flex-shrink: 0;
}
.review-block__empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding-top: 1rem;
}
.review-block__empty-stars {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    opacity: 0.4;
}
.review-block__empty p {
    font-size: 0.72rem;
    color: var(--color-text-muted);
    line-height: 1.35;
    margin: 0;
}
.review-block__form {
    padding: 0.68rem;
    min-width: 0;
}

/* ── Public review list disclosure (stands BELOW the review-block, not inside) ── */
.review-list-disclosure {
    margin: 1rem 0 0;
}
.review-list-disclosure__toggle {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.7rem 1.1rem;
    background: #fff;
    border: 1px solid rgba(43,30,16,0.18);
    border-radius: 999px;
    font-family: var(--font-system);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--color-text);
    transition: background .15s, border-color .15s, color .15s, box-shadow .15s;
}
.review-list-disclosure__toggle::-webkit-details-marker { display: none; }
.review-list-disclosure__toggle:hover {
    background: #fffbe6;
    border-color: #b8864e;
    color: #7a4e24;
    box-shadow: 0 1px 3px rgba(184,134,78,.18);
}
.review-list-disclosure__label { display: inline-flex; align-items: center; gap: 0.55rem; }
.review-list-disclosure__label i { color: #b8864e; }
.review-list-disclosure__chev {
    font-size: 0.8rem;
    color: #94a3b8;
    transition: transform .2s ease;
}
.review-list-disclosure[open] .review-list-disclosure__chev { transform: rotate(180deg); }
.review-list-disclosure[open] .review-list-disclosure__toggle {
    background: #fffbe6;
    border-color: #b8864e;
}
.review-list-disclosure__body {
    padding-top: 1rem;
    animation: reviewFadeIn .25s ease;
}
@keyframes reviewFadeIn {
    from { opacity: 0; transform: translateY(-4px); }
    to   { opacity: 1; transform: translateY(0); }
}
.review-item {
    padding: 1rem 1.1rem;
    margin-bottom: 0.8rem;
    background: rgba(255,255,255,0.5);
    border: 1px solid rgba(43,30,16,0.10);
    border-radius: 8px;
    transition: background .2s, border-color .2s;
}
.review-item:target {
    background: #fffbe6;
    border-color: #b8864e;
    box-shadow: 0 0 0 3px rgba(184,134,78,.18);
}
.review-item__head {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.5rem 1rem;
    margin-bottom: 0.5rem;
}
.review-item__byline { display: flex; flex-wrap: wrap; align-items: baseline; gap: 0.5rem; }
.review-item__name {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-text);
}
.review-item__title {
    font-family: var(--font-system);
    font-size: 0.78rem;
    color: var(--color-text-muted);
    font-style: italic;
}
.review-item__stars { font-size: 0.95rem; letter-spacing: 0.05em; }
.review-item__star { color: #d6c08a; }
.review-item__star.is-on { color: #b8864e; }
.review-item__quote {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 0.98rem;
    line-height: 1.55;
    color: var(--color-text);
    margin: 0 0 0.55rem;
    padding-left: 0.85rem;
    border-left: 3px solid rgba(184,134,78,.45);
}
.review-item__foot {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem 0.9rem;
    font-family: var(--font-system);
    font-size: 0.74rem;
    letter-spacing: 0.04em;
    color: var(--color-text-muted);
    text-transform: uppercase;
}
.review-item__source { opacity: 0.85; }
.review-block__form form {
    margin: 0;
}
.review-block__form-title {
    font-family: var(--font-title);
    font-size: 1.08rem;
    margin-bottom: 0.15rem;
}
.review-block__form-sub {
    font-family: var(--font-system);
    font-size: 0.62rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 0.28rem;
}
.review-block__form-sub strong {
    font-size: 0.74rem;
    letter-spacing: 0.02em;
    text-transform: none;
    color: var(--color-text);
}
.review-block__fields {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 124px;
    gap: 0.45rem;
    margin-bottom: 0.45rem;
}
.review-block__fields .form-group,
.review-block__form .form-group {
    margin: 0;
}
.review-block label {
    display: block;
    margin-bottom: 0.18rem;
    font-family: var(--font-system);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}
.review-block .form-control {
    width: 100%;
    max-width: 100%;
    padding: 0.46rem 0.56rem;
    font-size: 0.88rem;
    border-radius: 7px;
}
.review-block textarea.form-control {
    min-height: 4.2rem;
}
.review-block__fields > .btn {
    align-self: end;
    width: 100%;
}
.review-block select.form-control {
    min-width: 0;
    font-size: 0.84rem;
}
.review-block__footer {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.45rem;
    align-items: end;
}
.review-block__photo-group .form-control {
    padding-top: 0.34rem;
    padding-bottom: 0.34rem;
}

.review-submit-wrap {
    width: min(calc(100% - 2rem), 700px);
    margin: 0 auto;
}
.review-submit-block {
    display: grid;
    grid-template-columns: 144px minmax(0, 1fr);
    gap: 0;
    overflow: hidden;
    border-radius: 12px;
}
.review-submit-block.glass-panel {
    padding: 0;
}
.review-submit-block__totals {
    padding: 0.8rem 0.62rem;
    background: rgba(122,92,53,0.1);
    border-right: 1px solid var(--glass-border);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.12rem;
}
.review-submit-block__form {
    padding: 0.72rem;
    min-width: 0;
}
.review-submit-block__form-title {
    font-family: var(--font-title);
    font-size: 1.08rem;
    margin-bottom: 0.14rem;
}
.review-submit-block__form-sub {
    font-size: 0.74rem;
    color: var(--color-text-muted);
    margin-bottom: 0.5rem;
}
.review-submit-block__grid {
    display: grid;
    gap: 0.45rem;
}
.review-submit-block__grid--double {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}
.review-submit-block__grid--subject {
    grid-template-columns: minmax(0, 1fr) 124px;
}
.review-submit-block label {
    display: block;
    margin-bottom: 0.18rem;
    font-family: var(--font-system);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}
.review-submit-block .form-group {
    margin: 0;
}
.review-submit-block .form-control {
    width: 100%;
    max-width: 100%;
    padding: 0.46rem 0.56rem;
    font-size: 0.88rem;
    border-radius: 7px;
}
.review-submit-block textarea.form-control {
    min-height: 4.2rem;
}
.review-submit-block__footer {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.45rem;
    align-items: end;
}
.review-submit-block__photo .form-control {
    padding-top: 0.34rem;
    padding-bottom: 0.34rem;
}

@media (max-width: 700px) {
    .post-card--full { grid-template-columns: 1fr; }
    .post-card__image-link { min-height: 0; height: auto; }
    .post-card__image { aspect-ratio: auto; height: auto; object-fit: unset; border-radius: 0; }
    .review-block { grid-template-columns: 1fr; }
    .review-block__totals { border-right: none; border-bottom: 1px solid var(--glass-border); flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 0.9rem; }
    .review-block__fields { grid-template-columns: 1fr; }
    .review-block__footer { grid-template-columns: 1fr; }
    .review-submit-wrap { width: min(calc(100% - 2rem), 700px); }
    .review-submit-block { grid-template-columns: 1fr; }
    .review-submit-block__totals { border-right: none; border-bottom: 1px solid var(--glass-border); flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 0.9rem; }
    .review-submit-block__grid--double,
    .review-submit-block__grid--subject,
    .review-submit-block__footer { grid-template-columns: 1fr; }
}

/* ── Book Selector Header ────────────────────────────────────── */
.book-selector-header {
    background: transparent;
    border-bottom: 1px solid var(--glass-border);
    padding: 1.15rem 0 0.95rem;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}
.book-selector-inner {
    display: flex;
    align-items: center;
    gap: 1.1rem;
}
.book-selector-heading {
    font-family: var(--font-title);
    font-size: clamp(2rem, 4.6vw, 3.35rem);
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0.01em;
    line-height: 1.18;
    color: var(--color-text);
    white-space: nowrap;
    margin: 0;
    padding-right: 0.95rem;
    border-right: 1px solid var(--glass-border);
    flex-shrink: 0;
}
.book-selector-strip {
    display: flex;
    gap: 0.55rem;
    overflow-x: auto;
    padding: 0.15rem 0;
    scrollbar-width: thin;
    flex: 1;
}
.book-selector-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    text-decoration: none;
    color: var(--color-text);
    flex-shrink: 0;
    padding: 0.22rem 0.38rem;
    border-radius: var(--radius);
    transition: background var(--transition), color var(--transition);
    border: 2px solid transparent;
}
.book-selector-card:hover { background: rgba(0,0,0,0.04); }
.book-selector-card.active { border-color: var(--color-primary); background: var(--glass-bg); }
.book-selector-card__cover {
    width: 46px;
    height: 64px;
    object-fit: cover;
    background: transparent;
    border-radius: 2px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.18);
    display: block;
}
.book-selector-card__cover--placeholder {
    width: 46px;
    height: 64px;
    background: var(--color-primary-light, #e8d9c5);
    border-radius: 2px;
}
.book-selector-card__title {
    font-size: 0.66rem;
    text-align: center;
    line-height: 1.1;
    max-width: 80px;
    font-weight: 500;
}

/* ── Book Cover Viewer ───────────────────────────────────────── */
.book-cover-viewer { display: flex; flex-direction: column; align-items: center; gap: 0.75rem; }
.book-cover-viewer__img {
    width: 100%;
    display: block;
    object-fit: contain;
    background: transparent;
    border-radius: var(--radius);
    box-shadow: 0 6px 28px rgba(0,0,0,0.18);
    transition: opacity 0.2s ease;
}
.book-cover-viewer__tabs { display: flex; gap: 0.6rem; justify-content: center; flex-wrap: wrap; }
.book-cover-viewer__tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    padding: 0.35rem 0.35rem 0.45rem;
    border: 2px solid var(--glass-border);
    border-radius: var(--radius-sm);
    background: rgba(255, 250, 238, 0.82);
    cursor: pointer;
    transition: border-color var(--transition), box-shadow var(--transition);
    overflow: hidden;
}
.book-cover-viewer__tab img {
    width: 60px;
    height: 84px;
    object-fit: contain;
    background: rgba(255, 250, 238, 0.9);
    display: block;
}
.book-cover-viewer__tab span {
    font-size: 0.68rem;
    font-family: var(--font-system);
    color: var(--color-text-muted);
    line-height: 1;
}
.book-cover-viewer__tab:hover { border-color: var(--color-primary); box-shadow: 0 2px 8px rgba(0,0,0,0.15); }
.book-cover-viewer__tab.active { border-color: var(--color-primary); box-shadow: 0 0 0 2px var(--color-primary); }
.book-cover-viewer__tab.active span { color: var(--color-primary); font-weight: 600; }

/* ── About Author Band ───────────────────────────────────────── */
.about-author-band {
    background: var(--glass-bg);
    border-top: 1px solid var(--glass-border);
    padding: 1.25rem 0 2.5rem;
    margin-top: 1rem;
}
.about-author {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2rem;
    align-items: center;
}
.about-author__photo {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    object-position: center top;
    border-radius: var(--radius);
    box-shadow: 0 6px 28px rgba(0,0,0,0.15);
    display: block;
}
.about-author__heading {
    font-size: 2rem;
    margin: 0 0 0.75rem;
}
.about-author__bio {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 1.25rem;
}
.about-author__link { margin-top: 0.25rem; }

@media (max-width: 700px) {
    .about-author { grid-template-columns: 1fr; }
    .about-author__photo { max-width: 180px; }
}

/* ── Contact Layout ─────────────────────────────────────────── */
.contact-section {
    padding-top: 1.35rem;
    padding-bottom: 2.25rem;
}
.contact-section__container {
    display: grid;
    gap: 1.1rem;
}
.contact-full {
    display: grid;
    grid-template-columns: minmax(260px, 33%) minmax(0, 1fr);
    gap: clamp(1rem, 2vw, 2rem);
    align-items: stretch;
    padding: clamp(1.2rem, 2vw, 1.8rem);
    position: relative;
    overflow: visible;
}
.contact-full::after {
    content: '';
    position: absolute;
    inset: 1.2rem 1.2rem 1.2rem auto;
    width: min(60%, 540px);
    background: linear-gradient(180deg, rgba(255, 251, 241, 0.16), rgba(255, 251, 241, 0.04));
    border-radius: calc(var(--radius) - 6px);
    pointer-events: none;
}
.contact-full__photo {
    position: relative;
    display: flex;
    align-items: stretch;
    justify-content: center;
    z-index: 3;
    pointer-events: none;
    min-height: 100%;
    align-self: stretch;
}
.contact-full__photo-stage {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: clamp(1.1rem, 2vw, 1.8rem) 0 0;
}
.contact-full__photo-stage::before {
    content: none;
}
.contact-standing {
    width: auto;
    max-width: 100%;
    max-height: none;
    height: 100%;
    object-fit: contain;
    object-position: bottom center;
    display: block;
    position: relative;
    transform: translateX(16%);
    filter: drop-shadow(0 22px 28px rgba(78, 46, 21, 0.18));
}
.contact-full__content {
    padding: clamp(1.1rem, 2vw, 1.8rem) clamp(1rem, 2.2vw, 2rem) 0 0;
    max-width: 760px;
    position: relative;
    z-index: 2;
}
.contact-full__title {
    font-family: var(--font-title);
    font-size: clamp(2rem, 4.6vw, 3.35rem);
    font-weight: 400;
    line-height: 1.18;
    letter-spacing: 0.01em;
    font-style: normal;
    color: var(--color-text);
    margin-bottom: 0.95rem;
}

/* ── About Standing ──────────────────────────────────────────── */
.about-standing {
    text-align: center;
    margin: 2rem 0;
}
.about-standing__photo {
    max-height: 420px;
    object-fit: contain;
    display: inline-block;
}

/* ── Services Full Layout ────────────────────────────────────── */
.services-section {
    padding-top: 1.8rem;
    padding-bottom: 2.25rem;
}
.services-section__container {
    display: grid;
    gap: 1.1rem;
}
.services-full {
    display: grid;
    grid-template-columns: minmax(280px, 34%) minmax(0, 1fr);
    gap: clamp(1rem, 2vw, 2rem);
    align-items: stretch;
    padding: clamp(1.2rem, 2vw, 1.8rem);
    position: relative;
    overflow: visible;
}
.services-full__photo {
    position: relative;
    display: flex;
    align-items: stretch;
    justify-content: center;
    min-height: 100%;
}
.services-full__photo-stage {
    position: relative;
    width: 100%;
    min-height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 0.6rem 0 0;
}
.services-standing {
    width: min(100%, 440px);
    max-height: 860px;
    height: auto;
    object-fit: contain;
    object-position: bottom center;
    display: block;
    position: relative;
    transform: translateX(10%) translateY(0.5rem);
    filter: drop-shadow(0 22px 28px rgba(78, 46, 21, 0.18));
}
.services-full__content {
    padding: clamp(1.5rem, 2.4vw, 2rem) clamp(1rem, 2.2vw, 2rem) clamp(1rem, 1.8vw, 1.5rem) 0;
    max-width: 760px;
    position: relative;
    z-index: 2;
}
.services-full__title {
    font-family: var(--font-title);
    font-size: clamp(2rem, 4.6vw, 3.35rem);
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.01em;
    line-height: 1.1;
    color: var(--color-text);
    margin: 0 0 0.7rem;
}
.services-full__intro {
    color: var(--color-text-muted);
    font-size: 1.08rem;
    line-height: 1.8;
    margin-bottom: 1.7rem;
    max-width: 44rem;
}
.services-list {
    display: grid;
    gap: 1rem;
}
.service-card__body {
    padding-top: 0.55rem;
}
.service-card__title {
    margin-top: 0.6rem;
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1.25;
    letter-spacing: 0;
}
.services-cta {
    width: 100%;
}
.services-cta__panel {
    width: 100%;
    padding: clamp(1.2rem, 2vw, 1.8rem);
    text-align: center;
}
.services-cta__title {
    margin-bottom: 0.35rem;
}
.services-cta__text {
    margin-bottom: 0.8rem;
    color: var(--color-text-muted);
}

/* ── Service Detail Page ─────────────────────────────────────── */
.service-detail-wrap { padding-top: 1.8rem; padding-bottom: 2.4rem; }
.service-detail-body {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 2.2rem;
    align-items: start;
}
.service-detail-prose {
    font-size: 1.25rem;
    line-height: 1.9;
    margin-bottom: 2.5rem;
    color: var(--color-text);
}
.service-expect {
    padding: 1.75rem 2rem;
    margin-bottom: 2.5rem;
}
.service-expect__heading {
    font-size: 1rem;
    font-family: var(--font-system);
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin: 0 0 1rem;
}
.service-expect__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.service-expect__list li {
    padding-left: 1.4em;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.5;
}
.service-expect__list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: 700;
}
.service-detail-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    padding-top: 0.5rem;
}
.service-detail-aside {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.service-author-card {
    padding: 1.5rem;
    text-align: center;
}
.service-author-card__photo {
    width: 100%;
    max-height: 360px;
    object-fit: cover;
    object-position: top center;
    border-radius: var(--radius);
    margin-bottom: 1.25rem;
    display: block;
}
.service-author-card__name {
    font-size: 1.4rem;
    margin: 0 0 0.5rem;
}
.service-author-card__bio {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: 1rem;
}
.service-pricing-card {
    padding: 1.5rem;
    text-align: center;
}
.service-pricing-card__label {
    font-size: 0.75rem;
    font-family: var(--font-system);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    margin-bottom: 0.25rem;
}
.service-pricing-card__price {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--color-primary);
    font-weight: 700;
    line-height: 1;
}
.service-price {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--color-primary);
    font-style: italic;
    margin-top: 0.25rem;
}
@media (max-width: 800px) {
    .service-detail-body { grid-template-columns: 1fr; }
    .service-detail-aside { flex-direction: row; flex-wrap: wrap; }
    .service-author-card, .service-pricing-card { flex: 1; min-width: 240px; }
    .service-author-card__photo { max-height: 200px; }
}

/* ── Journal Layout ──────────────────────────────────────────── */
.journal-layout { display: grid; grid-template-columns: 1fr 260px; gap: 2rem; align-items: start; margin-top: 2rem; }
.post-single__header { padding: 1.8rem 0 1rem; border-bottom: 1px solid var(--glass-border); text-align: center; }
.post-single__date { font-family: var(--font-system); font-size: 0.78rem; color: var(--color-text-muted); letter-spacing: 0.08em; text-transform: uppercase; }
.post-single__tagline {
    margin: 0 0 0.85rem;
    font-family: var(--font-system);
    font-size: clamp(0.92rem, 1.2vw, 1.05rem);
    font-weight: 600;
    color: color-mix(in srgb, var(--book-accent) 62%, white 38%);
    letter-spacing: 0.18em;
    text-transform: uppercase;
}
.post-single__title { font-family: var(--font-title); font-size: var(--title-size); margin: 0.5rem 0 0.3rem; }
.post-single__author { color: var(--color-text-muted); font-size: 0.95rem; margin: 0; }
.post-single__hero { margin: 0; max-width: none; padding: 0; width: 100%; }
.post-single__hero img {
    display: block;
    width: 100%;
    height: 60vh;
    max-height: 60vh;
    object-fit: cover;
    object-position: center;
    border-radius: 0;
    border: 0;
    box-shadow: none;
    background: transparent;
}
.post-single__body { font-size: 1.3rem; line-height: 1.86; margin-top: 1.5rem; }
.post-single__body img,
.post-single__body figure img {
    display: block;
    margin: 1.25rem auto;
    width: auto;
    max-width: min(100%, 760px);
    height: auto;
    max-height: 520px;
    border-radius: var(--radius-sm);
    object-fit: contain;
}
.poem-pull {
    margin: 3.5rem auto;
    padding: 1.4rem 1.4rem 1.4rem 2.1rem;
    background: linear-gradient(90deg, rgba(186, 157, 112, 0.12) 0, rgba(186, 157, 112, 0.12) 1.05rem, rgba(140, 100, 55, 0.06) 1.05rem, rgba(140, 100, 55, 0.06) 100%);
    border: 1px solid rgba(140, 100, 55, 0.16);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(140, 100, 55, 0.07);
}
.poem-pull::before {
    content: '';
    position: absolute;
    left: 0.58rem;
    top: 0.8rem;
    bottom: 0.8rem;
    width: 2px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(215, 194, 168, 0.72) 0%, rgba(122, 92, 53, 0.94) 14%, rgba(122, 92, 53, 0.94) 86%, rgba(215, 194, 168, 0.72) 100%);
    box-shadow: 0 0 0 1px rgba(122, 92, 53, 0.08);
    pointer-events: none;
}
.poem-pull::after {
    content: '';
    position: absolute;
    left: -1px;
    top: -1px;
    bottom: -1px;
    width: 1.1rem;
    border-left: 1px solid rgba(140, 100, 55, 0.42);
    border-top: 1px solid rgba(140, 100, 55, 0.3);
    border-bottom: 1px solid rgba(140, 100, 55, 0.3);
    border-top-right-radius: 1rem;
    border-bottom-right-radius: 1rem;
    pointer-events: none;
}
.poem-pull p { margin: 0; font-style: italic; line-height: 1.85; white-space: normal; font-size: 1.05rem; }
.poem-pull p::before {
    content: 'Poem Reference';
    display: block;
    margin-bottom: 0.6rem;
    font-family: var(--font-system);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-primary);
    font-style: normal;
}
.poem-pull cite { display: block; margin-top: 0.75rem; font-size: 0.84rem; color: var(--color-text-muted); font-style: normal; letter-spacing: 0.01em; }
.journal-image-concept {
    margin: 0.5rem auto;
    padding: 0.5rem 1.1rem 0.5rem 1.6rem;
    background: linear-gradient(135deg, rgba(248, 241, 231, 0.96) 0%, rgba(240, 230, 215, 0.92) 100%);
    border: 1px solid rgba(140, 100, 55, 0.22);
    border-radius: 8px;
    color: var(--color-text);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(140, 100, 55, 0.09);
}
.journal-image-concept::before,
.journal-image-concept.glass-panel::before {
    content: '';
    position: absolute;
    left: 0.58rem;
    top: 0.8rem;
    bottom: 0.8rem;
    width: 2px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(215, 194, 168, 0.72) 0%, rgba(122, 92, 53, 0.94) 14%, rgba(122, 92, 53, 0.94) 86%, rgba(215, 194, 168, 0.72) 100%);
    box-shadow: 0 0 0 1px rgba(122, 92, 53, 0.08);
    pointer-events: none;
}
.journal-image-concept::after {
    content: '';
    position: absolute;
    left: -1px;
    top: -1px;
    bottom: -1px;
    width: 1.1rem;
    border-left: 1px solid rgba(140, 100, 55, 0.42);
    border-top: 1px solid rgba(140, 100, 55, 0.3);
    border-bottom: 1px solid rgba(140, 100, 55, 0.3);
    border-top-right-radius: 1rem;
    border-bottom-right-radius: 1rem;
    pointer-events: none;
}
.journal-image-concept__label {
    font-family: var(--font-system);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 0.2rem;
    padding-bottom: 0.15rem;
    border-bottom: 1px solid rgba(140, 100, 55, 0.18);
}
.journal-image-concept p {
    margin: 0;
    font-style: italic;
    line-height: 1.45;
    white-space: normal;
    color: inherit;
    font-size: 1.0rem;
}

/* Breathing room when poem-pull and image-concept are near each other */
.post-single__body .poem-pull + p + .journal-image-concept,
.post-single__body .poem-pull + .journal-image-concept {
    margin-top: 5rem;
}
.post-single__body p + .poem-pull,
.post-single__body p + .journal-image-concept {
    margin-top: 3.5rem;
}
.post-single__body .journal-image-concept + p,
.post-single__body .poem-pull + p {
    margin-top: 2.5rem;
}
.journal-sidebar__author {
    padding: 1.5rem;
    text-align: center;
    position: sticky;
    top: 5rem;
}
.journal-sidebar__photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center 15%;
    border: 2px solid var(--glass-border);
    margin: 0 auto 0.75rem;
    display: block;
}
.journal-sidebar__name { font-family: var(--font-title); font-style: normal; color: var(--color-primary); font-size: 1.25rem; margin-bottom: 0.4rem; }
.journal-sidebar__bio { font-size: 0.9rem; color: var(--color-text-muted); line-height: 1.65; margin-bottom: 1rem; }

/* Sidebar imprint widget — visual sibling of the author panel above it.
   Used on poetry.php (and reusable anywhere a glass-panel sidebar wants
   a "Published by Rustic Press" mini-card.) */
.sidebar-imprint {
    padding: 1.4rem 1.25rem 1.5rem;
    text-align: center;
}
.sidebar-imprint__lead {
    font-family: var(--font-system);
    font-size: 0.66rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    font-weight: 700;
    margin: 0 0 0.6rem;
}
.sidebar-imprint__logo {
    width: 90px;
    height: auto;
    display: block;
    margin: 0 auto 0.55rem;
    filter: drop-shadow(0 4px 14px rgba(43,30,16,.16));
}
.sidebar-imprint__name {
    font-family: var(--font-title);
    color: var(--color-primary);
    font-size: 1.25rem;
    margin: 0 0 0.5rem;
}
.sidebar-imprint__copy {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.55;
    margin: 0 0 1rem;
}

/* ── Book Author Bio ─────────────────────────────────────────── */
.book-author-bio {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin: 3rem 0 1.5rem;
    padding: 1.75rem 2rem;
}
.book-author-bio__photo {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top;
    flex-shrink: 0;
    border: 2px solid var(--glass-border);
    box-shadow: var(--shadow-md);
}
.book-author-bio__label {
    font-family: var(--font-hand);
    font-size: 1rem;
    color: var(--color-accent);
    display: block;
    margin-bottom: 0.2rem;
}
.book-author-bio__name { font-family: var(--font-title); font-size: 1.45rem; color: var(--color-primary); margin-bottom: 0.5rem; }
.book-author-bio__text p { font-size: 0.92rem; color: var(--color-text-muted); margin-bottom: 0.75rem; }

/* ── Reviews ─────────────────────────────────────────────────── */
.review-item { padding: 1.75rem; border-bottom: 1px solid var(--glass-border); }
.review-item__stars .filled { color: #c9a030; }
.review-item__stars i { color: rgba(140,100,55,0.2); }
.review-item__text { font-style: italic; margin: 0.75rem 0; }
.review-item__footer { font-family: var(--font-system); font-size: 0.82rem; color: var(--color-text-muted); }
.review-item__footer cite { font-style: normal; font-weight: 600; color: var(--color-primary); }

/* ── Misc ────────────────────────────────────────────────────── */
.error-page { text-align: center; padding: 8rem 0; }
.error-page__code { font-size: 7rem; color: var(--color-accent); opacity: 0.35; line-height: 1; }
.error-page__message { font-size: 1.5rem; margin-bottom: 1rem; }
.empty-state { color: var(--color-text-muted); font-style: italic; text-align: center; padding: 3rem 0; font-family: var(--font-body); }
.section--newsletter__inner { max-width: var(--container-width); margin: 0 auto; padding: 0 var(--container-gutter); }
.social-link-card { display: flex; align-items: center; gap: 1rem; padding: 1.1rem 1.4rem; border: 1px solid var(--glass-border); border-radius: var(--radius-sm); font-family: var(--font-system); font-weight: 600; color: var(--color-text); text-decoration: none !important; margin-bottom: 0.6rem; background: var(--glass-bg); backdrop-filter: blur(12px); transition: all var(--transition); }
.social-link-card:hover { background: rgba(122,92,53,0.12); border-color: var(--color-primary); color: var(--color-primary); transform: translateX(4px); }
.links-list { max-width: 500px; padding: 2rem 0; }
.faq-page__body { padding-top: 2rem; padding-bottom: 2rem; }
.faq-group { margin-top: 2.5rem; }
.faq-group:first-child { margin-top: 0; }
.faq-group__title { font-size: 1.05rem; text-transform: uppercase; letter-spacing: .08em; color: var(--color-text-muted); margin: 0 0 0; padding-bottom: .5rem; border-bottom: 2px solid var(--color-primary); }
.faq-list { padding-top: 0; }
.faq-item { border-bottom: 1px solid var(--glass-border); }
.faq-item summary { padding: 1.1rem 0; cursor: pointer; font-weight: 600; font-family: var(--font-system); font-size: 0.95rem; list-style: none; display: flex; justify-content: space-between; color: var(--color-text); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.2rem; color: var(--color-primary); }
.faq-item[open] summary::after { content: '−'; }
.faq-item__answer { padding: 0 0 1.5rem; color: var(--color-text-muted); }
.press-item { display: grid; grid-template-columns: 120px 1fr; gap: 1.5rem; padding: 1.75rem 0; border-bottom: 1px solid var(--glass-border); align-items: start; }
.press-item__image img { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: 0; }
.press-item__meta { display: flex; gap: 0.75rem; flex-wrap: wrap; align-items: center; margin-bottom: 0.5rem; font-family: var(--font-system); font-size: 0.78rem; color: var(--color-text-muted); }
.badge { display: inline-block; padding: 0.15em 0.65em; border-radius: 3px; font-family: var(--font-system); font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; border: 1px solid; }
.badge--published { background: rgba(74,124,89,0.12); color: #4a7c59; border-color: rgba(74,124,89,0.25); }
.badge--draft     { background: rgba(176,119,0,0.1); color: #b07700; border-color: rgba(176,119,0,0.2); }
.badge--archived  { background: rgba(140,100,55,0.08); color: var(--color-text-muted); border-color: var(--glass-border); }
.badge--scheduled { background: rgba(60,100,180,0.1); color: #446; border-color: rgba(60,100,180,0.2); }
.badge--free      { background: rgba(74,124,89,0.12); color: #4a7c59; border-color: rgba(74,124,89,0.25); }
.badge--type      { background: var(--glass-bg); color: var(--color-text-muted); border-color: var(--glass-border); }
.poems-admin-table__toggle-form { display: inline-flex; margin: 0; }
.poems-admin-table__toggle-button {
    background: transparent;
    border: 0;
    padding: 0;
    cursor: pointer;
    font: inherit;
    line-height: 1;
    transition: transform 0.16s ease;
}
.poems-admin-table__toggle-button:hover { transform: translateY(-1px); }
.poems-admin-table__toggle-badge {
    min-width: 3.8rem;
    padding: 0.45rem 0.95rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: none;
    text-align: center;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.25), 0 1px 2px rgba(16,24,40,0.08);
}
.poems-admin-table__toggle-badge--on {
    background: linear-gradient(180deg, #34c759 0%, #1f9d45 100%);
    color: #ffffff;
    border-color: #187a35;
}
.poems-admin-table__toggle-badge--off {
    background: linear-gradient(180deg, #e14b4b 0%, #bf2f2f 100%);
    color: #ffffff;
    border-color: #972323;
}
.poems-admin-table__toggle-button:focus-visible .poems-admin-table__toggle-badge {
    outline: 2px solid rgba(74,124,89,0.35);
    outline-offset: 2px;
}
.contact-form { padding: 2rem 0; max-width: 600px; }
.contact-form--contact { padding: 0.6rem 0 0; max-width: 100%; }
.contact-form--contact .form-row { margin-bottom: 0.9rem; }
.contact-form--contact .form-row:last-child { margin-bottom: 0; }
.contact-form--contact textarea.form-control { min-height: 10rem; }
.page-intro { max-width: 600px; color: var(--color-text-muted); font-style: italic; margin-bottom: 1.5rem; }
.page-intro--contact { max-width: 44rem; margin-bottom: 1.3rem; font-size: 1.08rem; line-height: 1.8; }
.contact-updates {
    padding-top: 0;
    margin-top: 0;
    width: 100%;
}
.contact-updates__panel {
    width: 100%;
    max-width: none;
    margin-left: 0;
    padding: clamp(1.2rem, 2vw, 1.8rem);
    text-align: center;
}
.contact-updates__title {
    font-family: var(--font-title);
    font-size: clamp(1.7rem, 3vw, 2.35rem);
    margin-bottom: 0.35rem;
}
.contact-updates__text {
    margin-bottom: 0.8rem;
    color: var(--color-text-muted);
}
.subscribe-form { max-width: 480px; }
.newsletter-page__intro { font-style: italic; font-size: 1.15rem; margin-bottom: 2rem; color: var(--color-text-muted); }
.search-section__sub {
    margin: 0.35rem 0 0.9rem;
    font-family: var(--font-system);
    font-size: clamp(0.9rem, 1.05vw, 1rem);
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: color-mix(in srgb, var(--color-text) 60%, white 40%);
}
.book-single__title,
.book-single__sub,
.search-result__title,
.post-single__title,
.post-card__title,
.poem-single__title,
.poem-split__title,
.poem-feature__title,
.events-hero__title,
.events-section__title,
.newsletter-cta__title,
.home-gallery-item__title,
.widget__title,
.review-item__title,
.press-item__title,
.product-single__title,
.product-card__title,
.book-feature__title,
.book-card-row__title {
    font-family: var(--font-title);
    font-style: normal;
    letter-spacing: 0.01em;
}

.book-single__title,
.post-single__title,
.product-single__title,
.book-detail__title {
    font-size: clamp(2rem, 4.4vw, 3.25rem);
    line-height: 1.08;
}

.book-single__sub,
.book-detail__subtitle {
    font-size: clamp(1.3rem, 2.4vw, 1.9rem);
}

.services-full__title,
.newsletter-cta__title,
.contact-updates__title,
.section__title,
.events-section__title,
.review-block__form-title {
    text-wrap: balance;
}

/* ── Book-Style Poetry Surface (scoped overrides) ───────────── */
.poetry-page--book,
.journal-page--book,
.newsletter-page--book,
.post-single--book,
.poem-single--book {
    color: var(--book-ink);
}

.poetry-page--book,
.journal-page--book,
.newsletter-page--book {
    background: transparent;
}

.newsletter-page--book .newsletter-status h1,
.post-single--book .post-single__title,
.poetry-page--book .poem-card__title,
.journal-page--book .post-card__title,
.poem-single--book .poem-split__title,
.poem-single--book .poem-single__title {
    font-family: var(--font-title);
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0;
}

.poetry-page--book .page-header__sub,
.journal-page--book .page-header__sub,
.poetry-page--book .poetry-archive-summary__line,
.journal-page--book .post-card__date,
.journal-page--book .post-card__cat,
.post-single--book .post-single__date,
.poem-single--book .poem-split__meta,
.poem-single--book .poem-single__meta,
.newsletter-page--book .form-label {
    font-family: var(--font-system);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.poetry-page--book .poem-card__excerpt,
.poetry-page--book .poem-card__book,
.journal-page--book .post-card__excerpt,
.post-single--book .post-single__author,
.post-single--book .post-single__body,
.post-single--book .post-single__notes,
.post-single--book .post-single__publications,
.post-single--book .post-single__books,
.newsletter-page--book .services-full__intro,
.newsletter-page--book .form-note,
.newsletter-page--book .newsletter-status p,
.newsletter-page--book .subscribe-form,
.poem-single--book .poem-single__notes,
.poem-single--book .poem-single__publications,
.poem-single--book .poem-single__books {
    font-family: var(--font-book-body);
    color: var(--book-ink);
}

.poetry-page--book .page-header,
.poetry-page--book .poetry-archive-summary {
    background: #f7f4ee;
    border-color: var(--book-rule);
}
.poetry-page--book .page-header {
    padding: 1.15rem 0 0.95rem;
}
.poetry-page--book .page-header__sub,
.poetry-page--book .poetry-archive-summary__line {
    font-size: 0.74rem;
    letter-spacing: 0.1em;
    color: var(--book-muted);
}
.poetry-page--book .layout-sidebar {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 1.6rem var(--container-gutter) 2.2rem;
    gap: 1.6rem;
}
.poetry-page--book .sidebar {
    padding: 0;
}
.poetry-page--book .widget {
    margin-bottom: 1.35rem;
    background: var(--book-paper-soft);
    border: 1px solid var(--book-rule);
    border-radius: 8px;
    padding: 0.85rem 0.9rem;
    box-shadow: var(--book-shadow);
}
.poetry-page--book .widget > div:first-child,
.poetry-page--book .widget__title {
    font-family: var(--font-system);
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--book-accent);
}
.poetry-page--book .widget__list li a {
    border-bottom-color: #e6dece;
    color: var(--book-muted);
}
.poetry-page--book .widget__list li a.active,
.poetry-page--book .widget__list li a:hover {
    color: var(--book-accent);
}
.poetry-page--book .widget__list img {
    object-fit: contain !important;
    background: rgba(255,255,255,0.8);
    border: 1px solid rgba(196, 180, 152, 0.6);
}
.poetry-page--book .poem-grid--archive {
    gap: 1.25rem;
}
.poetry-page--book .poem-card {
    background: #ffffff;
    border: 1px solid var(--book-rule);
    box-shadow: var(--book-shadow);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-radius: 10px;
}
.poetry-page--book .poem-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(16, 10, 2, 0.08);
    border-color: #c8b89f;
}
.poetry-page--book .poem-card__body {
    padding: 0.85rem 0.9rem 0.95rem;
}
.poetry-page--book .poem-card__title,
.book-detail__poems .poem-card__title {
    font-size: clamp(1.3rem, 2vw, 1.7rem);
    line-height: 1.15;
    color: var(--book-accent);
}
.poetry-page--book .poem-card__title a,
.book-detail__poems .poem-card__title a {
    color: var(--book-accent);
}
.poetry-page--book .poem-card__title a:hover,
.book-detail__poems .poem-card__title a:hover {
    color: var(--book-plum);
}
.poetry-page--book .poem-card__date,
.poetry-page--book .poem-card__cat {
    color: var(--book-muted);
}
.poetry-page--book .poem-card__excerpt,
.poetry-page--book .poem-card__book {
    font-size: 0.95rem;
    line-height: 1.76;
}
.poetry-page--book .poem-card__link {
    color: var(--book-plum);
}

.poem-single--book {
    background: linear-gradient(180deg, #f7f4ee 0%, #f0eadf 100%);
    color: var(--book-ink);
}
.poem-single--book .poem-split {
    grid-template-columns: minmax(0, 1.26fr) minmax(0, 0.74fr);
}
.poem-single--book .poem-split__image {
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}
.poem-single--book .poem-split__panel {
    background: linear-gradient(180deg, #fbf8f2 0%, #f4eee2 100%);
    border-left: 1px solid var(--book-rule);
}
.poem-single--book .poem-split__inner {
    max-width: 520px;
    padding: 2.5rem 2.35rem 2.8rem;
}
.poem-single--book .poem-split__title,
.poem-single--book .poem-single__title {
    font-family: var(--font-title);
    font-size: clamp(1.9rem, 2.9vw, 2.55rem);
    line-height: 1.08;
    letter-spacing: 0.01em;
    font-style: normal;
    color: var(--book-accent);
    text-align: left;
}
.poem-single--book .poem-split__meta,
.poem-single--book .poem-single__meta {
    font-family: var(--font-serif);
    font-size: 1.02rem;
    color: #3b3b39;
    border-bottom-color: var(--book-rule);
}
.poem-single--book .poem-split__body .stanza,
.poem-single--book .poem-single .stanza {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    line-height: 1.86;
    margin-bottom: 1.8rem;
}
.poem-single--book .poem-split__cat,
.poem-single--book .breadcrumb-cat {
    color: var(--book-accent);
}
.poem-single--book .tag {
    background: #ffffff;
    border-color: var(--book-rule);
    color: var(--book-accent);
}
.poem-single--book .poem-single__header {
    background: #f7f4ee;
    border-bottom: 1px solid var(--book-rule);
}
.poem-single--book .poem-single__body {
    background: #ffffff;
    border: 1px solid var(--book-rule);
    border-radius: 10px;
    box-shadow: var(--book-shadow);
    padding: 2rem 2.2rem;
}
.poem-single--book .poem-single__notes,
.poem-single--book .poem-single__publications,
.poem-single--book .poem-single__books {
    background: #ffffff;
    border: 1px solid var(--book-rule);
    border-radius: 10px;
    box-shadow: var(--book-shadow);
}
.poem-single--book .poem-single__notes h2,
.poem-single--book .poem-single__publications h2,
.poem-single--book .poem-single__books h2 {
    color: var(--book-accent);
}
.poem-single--book .review-block-wrap {
    margin-top: 2rem;
}

/* ── Book-Style Journal Surface ─────────────────────────────── */
.journal-page--book,
.post-single--book {
    background: transparent;
}
.journal-page--book .page-header,
.post-single--book .post-single__header {
    background: transparent;
    border-color: rgba(140, 100, 55, 0.24);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}
.post-single--book .post-single__series-title,
.post-single--book .post-single__title {
    color: var(--book-accent);
    font-size: clamp(1.95rem, 3.2vw, 2.7rem);
    line-height: 0.96;
    margin: 0.3rem 0 0.5rem;
}
.journal-page--book .page-header__title { color: var(--color-text); }
.post-single--book .post-single__series-title {
    font-family: var(--font-title);
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0;
    font-size: clamp(3.1rem, 7vw, 5.2rem);
    line-height: 0.9;
    color: #4d2c12;
    text-shadow: 0 3px 12px rgba(80, 47, 18, 0.18);
}
.post-single--book .post-single__tagline {
    color: #3b2513;
    font-weight: 800;
    letter-spacing: 0.18em;
}
.post-single--book .post-single__title {
    font-family: var(--font-title);
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0;
}
.journal-page--book .page-header__sub,
.post-single--book .post-single__date {
    color: var(--book-muted);
}
.journal-page--book .journal-layout {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 1.6rem var(--container-gutter) 2.5rem;
    gap: 1.6rem;
}
.journal-page--book .journal-sidebar {
    padding-top: 0;
}
.journal-page--book .widget {
    margin-bottom: 1.35rem;
    background: linear-gradient(180deg, rgba(247, 236, 212, 0.96) 0%, rgba(239, 225, 193, 0.96) 100%);
    border: 1px solid var(--book-rule);
    border-radius: 10px;
    padding: 0.95rem;
    box-shadow: var(--book-shadow);
}
.journal-page--book .post-card {
    background: linear-gradient(180deg, rgba(247, 236, 212, 0.97) 0%, rgba(239, 225, 193, 0.97) 100%);
    border: 1px solid rgba(140, 100, 55, 0.22);
    box-shadow: 0 14px 28px rgba(36, 25, 17, 0.08);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-radius: 12px;
}
.journal-page--book .post-card:hover {
    transform: translateY(-2px);
    border-color: #ccb99d;
    box-shadow: 0 12px 24px rgba(36, 25, 17, 0.08);
}
.journal-page--book .post-card__image-link {
    background: transparent;
    border-color: transparent;
}
.journal-page--book .post-card__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.65rem, 2vw, 2.15rem);
    font-weight: 400;
    line-height: 1.05;
    color: var(--book-accent);
    font-style: normal;
}
.journal-page--book .post-card__title a {
    color: var(--book-accent);
}
.journal-page--book .post-card__title a:hover {
    color: var(--book-plum);
}
.journal-page--book .post-card__excerpt {
    font-style: normal;
    font-size: 0.96rem;
    line-height: 1.8;
    color: var(--book-ink);
}
.post-card__poem-link {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    font-style: normal;
    font-size: 1.22em;
    letter-spacing: 0.01em;
    color: var(--book-accent);
}
.post-card__poem-link:hover {
    color: var(--book-plum);
}
.post-single--book > .container--narrow {
    background: linear-gradient(180deg, rgba(243, 230, 201, 0.97) 0%, rgba(234, 219, 184, 0.97) 100%);
    border: 1px solid rgba(140, 100, 55, 0.22);
    border-radius: 18px;
    padding: 1.5rem 1.5rem 2rem;
    margin-bottom: 1.25rem;
    box-shadow: 0 18px 32px rgba(36, 25, 17, 0.08);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}
.post-single--book .post-single__hero + .container--narrow {
    margin-top: 1rem;
}
.journal-page--book .post-card__link {
    color: var(--book-plum);
}

.post-single--book .post-single__author {
    color: var(--book-muted);
    font-size: 0.92rem;
}
.post-single--book .post-single__hero {
    display: block;
    padding: 0;
    margin: 0;
    max-width: none;
    width: 100%;
}
.post-single--book .post-single__hero img {
    display: block;
    width: 100%;
    max-width: none;
    height: 60vh;
    max-height: 60vh;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    object-fit: cover;
    object-position: center;
}
.post-single--book .post-single__body {
    background: linear-gradient(180deg, rgba(244, 235, 216, 0.98) 0%, rgba(236, 224, 198, 0.98) 100%);
    border: 1px solid var(--book-rule);
    border-radius: 12px;
    box-shadow: var(--book-shadow);
    padding: 2rem 2.2rem;
    font-size: 1.3rem;
    line-height: 1.92;
}
.post-single--book .post-single__body blockquote {
    background: linear-gradient(180deg, rgba(240, 229, 207, 0.96) 0%, rgba(231, 217, 188, 0.96) 100%);
    border: 1px solid rgba(140, 100, 55, 0.18);
    border-left: 3px solid rgba(168, 131, 72, 0.55);
    border-radius: 8px;
    margin: 1.25rem 0;
    padding: 0.95rem 1.1rem;
    box-shadow: 0 8px 18px rgba(36, 25, 17, 0.04);
}
.post-single--book .post-single__body a,
.post-single--book .post-single__notes a,
.post-single--book .post-single__publications a {
    color: var(--book-plum);
}
.post-single--book .post-single__notes,
.post-single--book .post-single__publications,
.post-single--book .post-single__books {
    background: linear-gradient(180deg, rgba(242, 230, 206, 0.98) 0%, rgba(233, 220, 191, 0.98) 100%);
    border: 1px solid var(--book-rule);
    border-radius: 10px;
    box-shadow: var(--book-shadow);
}
.post-single--book .post-single__tags .tag {
    background: rgba(238, 226, 198, 0.95);
    border-color: rgba(168, 131, 72, 0.24);
    color: var(--book-accent);
}
.post-single--book .post-single__notes h2,
.post-single--book .post-single__publications h2,
.post-single--book .post-single__books h2 {
    color: var(--book-accent);
}
.post-single--book .journal-image-concept {
    background: rgba(232, 220, 197, 0.96);
    border: 1px solid rgba(140, 100, 55, 0.22);
    box-shadow: 0 10px 20px rgba(36, 25, 17, 0.05);
}
.post-single--book .journal-image-concept.glass-panel::before {
    left: 0.58rem;
    top: 0.8rem;
    bottom: 0.8rem;
    width: 2px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(215, 194, 168, 0.72) 0%, rgba(122, 92, 53, 0.94) 14%, rgba(122, 92, 53, 0.94) 86%, rgba(215, 194, 168, 0.72) 100%);
    box-shadow: 0 0 0 1px rgba(122, 92, 53, 0.08);
}
.post-single--book .journal-image-concept__label {
    display: inline-block;
    padding: 0.22rem 0.5rem;
    background: rgba(186, 157, 112, 0.46);
    border-radius: 4px;
    color: #8a6940;
}
.journal-entry {
    padding-bottom: 2.75rem;
}
.journal-entry__header .container--narrow {
    position: relative;
}
.journal-entry__author {
    margin-top: 0.45rem;
}
.journal-entry__hero {
    padding-inline: 0;
    margin: 0 auto;
    display: block;
    width: 100%;
}
.journal-entry__hero-frame {
    width: 100%;
    max-width: none;
    margin: 0 auto;
    line-height: 0;
    background: transparent;
}
.journal-entry__hero-frame img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: unset;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
}
.journal-entry__image-concept-wrap {
    max-width: 820px;
    padding: 0 1rem;
    margin-top: 1.25rem;
}
.journal-entry__image-concept-wrap .journal-image-concept {
    margin: 0;
}
.journal-entry__shell {
    background: linear-gradient(180deg, rgba(243, 230, 201, 0.97) 0%, rgba(234, 219, 184, 0.97) 100%);
    max-width: 820px;
    padding-left: 1rem;
    padding-right: 1rem;
    margin-top: 1.25rem;
}
.journal-entry__meta-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 1.4rem;
}
.journal-entry__meta-card,
.journal-entry__note,
.journal-entry__tags-wrap {
    background: linear-gradient(180deg, rgba(245, 235, 214, 0.98) 0%, rgba(235, 221, 190, 0.98) 100%);
    border: 1px solid rgba(140, 100, 55, 0.2);
    border-radius: 12px;
    box-shadow: 0 10px 22px rgba(36, 25, 17, 0.05);
    padding: 1rem 1.1rem;
}
.journal-entry__section-kicker {
    font-family: var(--font-system);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--book-accent);
    margin-bottom: 0.55rem;
}
.journal-entry__section-heading {
    margin: 0 0 0.9rem;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.4rem, 2.3vw, 1.85rem);
    color: var(--book-accent);
}
.journal-entry__meta-copy {
    margin: 0;
    line-height: 1.8;
    color: var(--book-ink);
}
.journal-entry__poem-link {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.18rem;
    font-weight: 700;
    color: var(--book-plum);
}
.journal-entry__poem-link:hover {
    color: var(--book-accent);
}
.journal-entry__note {
    margin-bottom: 1.4rem;
}
.journal-entry__tags-wrap {
    margin-top: 0;
}
.journal-entry__body {
    margin-top: 0;
}
.journal-entry__tags {
    margin-top: 0.2rem;
}
.journal-entry__tags .tag {
    background: rgba(238, 226, 198, 0.95);
    border-color: rgba(168, 131, 72, 0.24);
    color: var(--book-accent);
}
.journal-entry__nav {
    margin-top: 1.5rem;
}
@media (max-width: 800px) {
    .journal-entry__meta-grid {
        grid-template-columns: 1fr;
    }
    .post-single--book > .container--narrow.journal-entry__shell {
        padding: 1.15rem;
    }
    .post-single--book .post-single__body.journal-entry__body {
        padding: 1.4rem 1.2rem;
    }
}

/* ── Book-Style Newsletter Surface ──────────────────────────── */
.newsletter-page--book {
    padding: 2rem 0 3rem;
}
.newsletter-page--book .services-full--book {
    max-width: var(--container-width);
    margin: 0 auto;
    background: linear-gradient(180deg, #fbf8f2 0%, #f3ede1 100%);
    border: 1px solid var(--book-rule);
    border-top: 8px solid var(--book-plum);
    border-radius: 14px;
    box-shadow: 0 18px 34px rgba(36, 25, 17, 0.1);
}
.newsletter-page--book .services-full__photo {
    background: linear-gradient(180deg, rgba(76, 51, 70, 0.12) 0%, rgba(200, 166, 103, 0.08) 100%);
}
.newsletter-page--book .services-standing {
    transform: translateX(4%) translateY(0.25rem);
    filter: drop-shadow(0 18px 26px rgba(76, 51, 70, 0.14));
}
.newsletter-page--book .services-full__content {
    padding-right: clamp(1rem, 2vw, 2rem);
}
.newsletter-page--book .newsletter-status h1 {
    color: var(--book-accent);
    font-size: clamp(2.1rem, 3.4vw, 3rem);
    line-height: 1.04;
}
.newsletter-page--book .services-full__intro,
.newsletter-page--book .newsletter-status p {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--book-ink);
}
.newsletter-page--book .subscribe-form,
.newsletter-page--book .newsletter-status {
    background: rgba(244, 229, 196, 0.55);
    border: 1px solid var(--book-rule);
    border-radius: 10px;
    box-shadow: var(--book-shadow);
    padding: 1.25rem 1.35rem 1.4rem;
}
.newsletter-page--book .form-control {
    font-family: var(--font-book-body);
    border-color: rgba(184, 168, 140, 0.8);
    background: rgba(244, 229, 196, 0.6);
}
.newsletter-page--book .form-note {
    margin-top: 0.8rem;
    font-size: 0.84rem;
    color: var(--book-muted);
}
.newsletter-page--book .alert {
    background: rgba(255,255,255,0.82);
    border-color: var(--book-rule);
}

@media (max-width: 1100px) {
    .poem-single--book .poem-split {
        grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
    }
}
@media (max-width: 860px) {
    .poetry-page--book .layout-sidebar {
        padding-left: var(--container-gutter);
        padding-right: var(--container-gutter);
    }
    .journal-page--book .journal-layout {
        padding-left: var(--container-gutter);
        padding-right: var(--container-gutter);
    }
    .poem-single--book .poem-split {
        grid-template-columns: 1fr;
    }
    .post-single--book .post-single__body,
    .poem-single--book .poem-single__body {
        padding: 1.5rem 1.35rem;
    }
    .newsletter-page--book .services-full--book {
        border-radius: 12px;
    }
}
.char-count { font-family: var(--font-system); font-size: 0.75rem; color: var(--color-text-muted); margin-top: 0.3rem; }
.form-msg { font-family: var(--font-system); font-size: 0.88rem; margin-top: 0.5rem; }
.form-msg--ok  { color: var(--color-success); }
.form-msg--err { color: var(--color-error); }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1100px) {
    .footer-main__inner { padding-left: 0; grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr); gap: 1.65rem; }
    .footer-brand { gap: 0.45rem; margin-left: -0.55rem; }
    .footer-brand__top { gap: 0.85rem; transform: translateX(-0.45rem); }
    .footer-brand__logo-wrap { margin-left: 0; transform: translateX(-0.15rem); }
    .footer-brand .footer-logo { max-width: 145px; }
    .gallery-masonry { columns: 3 180px; }
    .home-gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .events-hero { grid-template-columns: 1fr 260px; }
}
@media (max-width: 900px) {
    .layout-sidebar   { grid-template-columns: 1fr; }
    .book-feature     { grid-template-columns: 160px 1fr; }
    .book-card-row    { grid-template-columns: 180px 1fr; gap: 1.75rem; }
    .section--split   { grid-template-columns: 1fr; }
    .split__dark      { padding: 3rem 2rem; }
    .author-preview   { grid-template-columns: 280px 1fr; gap: 0.85rem; }
    .poem-grid-2col   { grid-template-columns: 1fr; }
    .events-hero { grid-template-columns: 1fr; }
    .events-hero__portrait-wrap { justify-self: start; max-width: 260px; }
    .page-header--about.page-header--image { padding: 2.6rem 0 1.45rem; }
    .about-page { padding-top: 1.15rem; }
    .about-page__introline { margin-bottom: 0.75rem; }
    .contact-full {
        grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
        gap: 1rem;
        padding: 1rem;
    }
    .contact-standing {
        transform: translateX(12%);
    }
    .contact-full__content {
        padding: 1rem 1rem 0 0;
    }
    .hero             { padding: 3rem 1.5rem 3rem; }
}
@media (max-width: 640px) {
    .nav-list    { display: none; flex-direction: column; width: 100%; padding: 0.5rem 0 1rem; }
    .nav-list.is-open { display: flex; }
    .nav-toggle  { display: flex; }
    .header-search { display: none; }
    .site-logo img { height: 60px; max-width: 340px; }
    .hero        { padding: 4rem 1.25rem 3.5rem; }
    .footer-main__inner { padding-left: 0.65rem; grid-template-columns: 1fr; gap: 1.5rem; justify-items: center; }
    .footer-brand { align-items: center; justify-self: center; margin-left: 0; }
    .footer-brand__top { gap: 0.8rem; transform: none; }
    .footer-brand__logo-wrap { margin-left: 0; transform: none; }
    .footer-brand .footer-logo { max-width: 138px; }
    .footer-tagline { text-align: center; }
    .social-links { grid-template-columns: repeat(3, 24px); gap: 0.45rem; }
    .social-links a { width: 24px; height: 24px; font-size: 0.68rem; }
    .social-links a i { font-size: 0.8rem !important; }
    .social-links a svg { width: 0.8rem !important; height: 0.8rem !important; }
    .footer-portrait { justify-self: center; align-self: center; }
    .footer-newsletter { max-width: 100%; width: 100%; justify-self: stretch; }
    .footer-newsletter__row { flex-direction: column; }
    .footer-bottom__inner {
        padding: 0.85rem 1rem;
        gap: 0.75rem;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    .footer-bottom__inner p {
        flex-basis: 100%;
        text-align: center;
    }
    .footer-credit__link,
    .footer-admin-link {
        margin: 0 auto;
    }
    .journal-layout { grid-template-columns: 1fr; }
    .journal-sidebar { display: none; }
    .services-intro { flex-direction: column; gap: 1rem; }
    .services-intro__photo { width: 120px; }
    .event-card__body { grid-template-columns: 1fr; }
    .event-card__date { text-align: left; display: flex; gap: 0.55rem; align-items: baseline; }
    .event-card__month, .event-card__day, .event-card__year { display: inline; }
    .event-item { align-items: flex-start; gap: 1rem; }
    .event-item__thumb { width: 72px; height: 72px; }
    .contact-section {
        padding-top: 0.8rem;
        padding-bottom: 1.5rem;
    }
    .contact-full {
        grid-template-columns: 1fr;
        padding: 1.1rem;
    }
    .contact-full::after {
        inset: auto 1rem 1rem 1rem;
        width: auto;
        height: 58%;
    }
    .contact-full__photo {
        min-height: 320px;
        margin-bottom: -0.4rem;
        align-items: flex-end;
    }
    .contact-full__photo-stage {
        min-height: 320px;
        height: auto;
        padding-top: 0.4rem;
    }
    .contact-standing {
        width: min(100%, 270px);
        height: auto;
        transform: translateX(8%) translateY(0.2rem);
    }
    .contact-full__content { padding: 0.5rem 0.35rem 0; }
    .contact-updates__panel { width: 100%; margin-left: 0; padding: 1.1rem; }
    .services-section {
        padding-top: 0.8rem;
        padding-bottom: 1.5rem;
    }
    .services-full {
        grid-template-columns: 1fr;
        padding: 1.1rem;
    }
    .services-full__photo {
        min-height: 320px;
        margin-bottom: -0.4rem;
    }
    .services-full__photo-stage {
        min-height: 320px;
        padding-top: 0.4rem;
    }
    .services-standing {
        width: min(100%, 280px);
        transform: translateX(6%) translateY(0.2rem);
    }
    .services-full__content { padding: 0.6rem 0.35rem 0.2rem; }
    .services-cta__panel { padding: 1.1rem; }
    .newsletter-cta__form { flex-direction: column; }
    .book-feature { grid-template-columns: 1fr; }
    .book-card-row { grid-template-columns: 1fr; gap: 1.25rem; }
    .book-card-row__cover-wrap { max-width: 200px; }
    .book-card-row__title { font-size: 1.4rem; }
    .press-item { grid-template-columns: 1fr; }
    .author-preview { grid-template-columns: 1fr; }
    .author-preview__photo { max-width: 250px; margin: 0 auto; height: auto; }
    .author-preview__portrait-rail { width: 100%; gap: 0.65rem; height: auto; }
    .author-preview__portrait,
    .author-preview__portrait--primary,
    .author-preview__portrait--right,
    .author-preview__portrait--left {
        justify-self: center;
        height: auto;
        transform: none;
    }
    .about-feature { grid-template-columns: 1fr; }
    .about-feature__media { max-width: 360px; margin: 0 auto; }
    .about-feature__portrait { min-height: 380px; object-position: center 12%; }
    .about-page__sheet { padding: 1.1rem 1.15rem 2rem; }
    .post-card { grid-template-columns: 1fr; }
    .tcarousel { max-width: 100%; }
    .tcarousel__track { grid-template-columns: 1fr; }
    .tcarousel__slide.is-active-2,
    .tcarousel__slide.is-active-3 { display: none; }
    .gallery-masonry { columns: 2 140px; }
    .home-gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .section { padding: 2rem 0; }
}

/* ====== MANUSCRIPT / BOOK PAGE STYLES ====== */
/* Echoes From The Heart Typography System */

.manuscript-page {
    background: linear-gradient(180deg, #f5f1e8 0%, #f0eae0 100%);
    color: #1f1a17;
    font-family: "Avenir Next", "Proxima Nova", "Helvetica Neue", Arial, sans-serif;
    line-height: 1.65;
    padding: 2.5rem;
    max-width: 950px;
    margin: 0 auto;
    min-height: 100vh;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
}

.manuscript-category-opener {
    text-align: center;
    padding: 5rem 1rem 4rem;
    border-bottom: 2px solid #c9b8a0;
    margin-bottom: 4rem;
    page-break-after: avoid;
}

.manuscript-category-title {
    font-family: 'Caveat', cursive;
    font-size: clamp(2.4rem, 4vw, 3.4rem);
    font-weight: 600;
    color: #1a120d;
    margin: 0;
    letter-spacing: 0.03em;
}

.manuscript-poem {
    margin-bottom: 3.5rem;
    padding: 2rem 1rem;
    page-break-inside: avoid;
    position: relative;
}

.manuscript-poem::before {
    content: '✦';
    display: block;
    text-align: center;
    color: #c9a882;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.manuscript-poem-title {
    font-family: 'Caveat', cursive;
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 600;
    color: #1a120d;
    margin: 0 0 1.5rem 0;
    text-align: center;
    letter-spacing: 0.03em;
}

.manuscript-poem-body {
    font-family: 'Source Sans Pro', 'Lora', Georgia, serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #1f1a17;
    white-space: pre-wrap;
    text-align: center;
    letter-spacing: 0.01em;
    max-width: 700px;
    margin: 0 auto;
}

.manuscript-poem-body p {
    margin: 0.75em 0;
}

.manuscript-poem-body .stanza {
    margin: 1.2em 0;
}

.manuscript-poem-meta {
    font-size: 0.9rem;
    color: #5d4d3f;
    text-align: center;
    margin-top: 1.5rem;
    font-style: italic;
    letter-spacing: 0.02em;
}

.manuscript-footer {
    text-align: center;
    color: #5d4d3f;
    font-size: 0.85rem;
    margin-top: 5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #c9b8a0;
    font-family: 'Playfair Display', Georgia, serif;
}

@media (max-width: 768px) {
    .manuscript-page {
        padding: 1.5rem;
        max-width: 100%;
    }
    .manuscript-category-opener {
        padding: 2.5rem 0.5rem 2rem;
    }
    .manuscript-poem {
        padding: 1rem 0.5rem;
        margin-bottom: 2.5rem;
    }
}

@media print {
    .manuscript-page {
        background: white;
        box-shadow: none;
        padding: 1in;
        max-width: 100%;
        column-count: 1;
    }
    .manuscript-poem {
        page-break-inside: avoid;
    }
    .manuscript-category-opener {
        page-break-after: always;
    }
}

/* ──── MANUSCRIPT TITLE PAGE ──── */
.manuscript-title-page {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 3rem 2rem;
    text-align: center;
}

.manuscript-title-spacer {
    flex: 1;
}

.manuscript-title-spacer-mid {
    height: 2rem;
}

.manuscript-main-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(3.5rem, 8vw, 5rem);
    font-weight: 400;
    color: #1a120d;
    margin: 0;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.manuscript-subtitle {
    font-family: 'Caveat', cursive;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 600;
    color: #1a120d;
    margin: 1rem 0;
    letter-spacing: 0.02em;
}

.manuscript-byline {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 0.95rem;
    color: #1a120d;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.manuscript-author {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.4rem, 2vw, 1.8rem);
    font-weight: 400;
    color: #1a120d;
    margin-top: 0.5rem;
}
    margin: 0.5rem 0 0 0;
    font-weight: 400;
    letter-spacing: 0.1em;
}

.manuscript-byline {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 0.85rem;
    color: #5d4d3f;
    margin: 2rem 0 0.5rem 0;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.manuscript-author {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    color: #1a120d;
    margin: 0;
    font-weight: 400;
    letter-spacing: 0.05em;
}

/* ──── MANUSCRIPT DEDICATION PAGE ──── */
.manuscript-dedication-page {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 3rem 2rem;
    text-align: center;
}

.manuscript-dedication-lead {
    font-family: 'Santa Catalina', cursive;
    font-size: 2rem;
    color: #1a120d;
    margin: 0 0 1rem 0;
    font-weight: 400;
}

.manuscript-dedication-text {
    font-family: "Avenir Next", "Proxima Nova", sans-serif;
    font-size: 1.1rem;
    color: #1f1a17;
    max-width: 600px;
    line-height: 1.8;
}

/* ──── TABLE OF CONTENTS ──── */
.manuscript-toc-page {
    padding: 2rem;
}

.manuscript-toc-heading {
    font-family: 'Santa Catalina', cursive;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: #1a120d;
    text-align: center;
    margin-bottom: 3rem;
}

.manuscript-toc-section {
    margin-bottom: 2.5rem;
}

.manuscript-toc-category {
    font-family: 'Santa Catalina', cursive;
    font-size: 1.4rem;
    color: #1a120d;
    margin: 0 0 1rem 0;
    font-weight: 400;
}

.manuscript-toc-entry {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.5rem;
    font-family: "Avenir Next", "Proxima Nova", sans-serif;
    font-size: 1rem;
}

.manuscript-toc-title {
    flex: 0 0 auto;
    color: #1f1a17;
}

.manuscript-toc-leader {
    flex: 1;
    text-align: center;
    color: #c9b8a0;
    padding: 0 0.5rem;
    letter-spacing: 0.15em;
}

.manuscript-toc-page {
    flex: 0 0 auto;
    color: #5d4d3f;
    text-align: right;
    min-width: 4rem;
}

/* ──── SECTION PAGES (Preface, Introduction, About) ──── */
.manuscript-preface-page,
.manuscript-intro-page,
.manuscript-about-page {
    padding: 3rem 2rem;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.manuscript-section-heading {
    font-family: 'Caveat', cursive;
    font-size: clamp(2.2rem, 3vw, 3rem);
    font-weight: 600;
    color: #1a120d;
    margin-bottom: 2rem;
    text-align: center;
    letter-spacing: 0.05em;
}
    text-align: center;
    margin: 0 0 2.5rem 0;
    font-weight: 400;
}

.manuscript-section-body {
    font-family: 'Source Sans Pro', 'Lora', Georgia, serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #1f1a17;
    max-width: 900px;
    margin: 0 auto;
}

.manuscript-section-body p {
    margin-bottom: 1.2rem;
}

/* ──── CATEGORY OPENER PAGE ──── */
.manuscript-category-opener {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 3rem 2rem;
    text-align: center;
    page-break-after: always;
}

.manuscript-opener-spacer {
    flex: 1;
}

/* ──── POEM STYLING ──── */
.manuscript-poem {
    margin-bottom: 3.5rem;
    padding: 2rem 1rem;
    page-break-inside: avoid;
    position: relative;
}

.manuscript-poem::before {
    content: '◆';
    display: block;
    text-align: center;
    color: #c9a882;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.manuscript-poem-body {
    font-family: "Avenir Next", "Proxima Nova", sans-serif;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #1f1a17;
    white-space: pre-wrap;
    text-align: center;
    letter-spacing: 0.01em;
    max-width: 700px;
    margin: 0 auto;
}

.manuscript-poem-body p {
    margin: 0.8em auto;
}

.manuscript-poem-body .stanza {
    margin: 1.3em auto;
}

.manuscript-poem-meta {
    font-size: 0.9rem;
    color: #5d4d3f;
    text-align: center;
    margin-top: 1.5rem;
    font-style: italic;
    letter-spacing: 0.02em;
}

.manuscript-poem-break {
    height: 2rem;
    text-align: center;
    color: #c9a882;
    opacity: 0.5;
    font-size: 1.2rem;
    margin: 2rem 0;
}

/* ──── PAGE BREAKS ──── */
.manuscript-page-break {
    page-break-after: always;
    display: none;
}

/* ──── COLOPHON / END ──── */
.manuscript-colophon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 50vh;
    padding: 3rem 2rem;
    text-align: center;
}

.manuscript-colophon-text {
    font-family: 'Santa Catalina', cursive;
    font-size: 2rem;
    color: #c9a882;
    margin: 0;
    opacity: 0.7;
}

/* ──── RESPONSIVE LAYOUT ──── */
@media (max-width: 768px) {
    .manuscript-page {
        padding: 1.5rem;
        max-width: 100%;
    }
    .manuscript-title-page,
    .manuscript-dedication-page,
    .manuscript-category-opener {
        min-height: auto;
        padding: 2rem 1rem;
    }
    .manuscript-toc-entry {
        flex-direction: column;
    }
    .manuscript-toc-leader,
    .manuscript-toc-page {
        display: none;
    }
}

/* ──── PRINT STYLES ──── */
@media print {
    .manuscript-page {
        background: white;
        box-shadow: none;
        padding: 1in;
        max-width: 100%;
        column-count: 1;
    }
    .manuscript-page-break {
        display: block;
        margin: 0;
        padding: 0;
    }
    .manuscript-poem,
    .manuscript-category-opener,
    .manuscript-title-page,
    .manuscript-preface-page,
    .manuscript-intro-page {
        page-break-inside: avoid;
    }
    .manuscript-category-opener {
        page-break-after: always;
    }
    .manuscript-main-title {
        font-size: 3.5rem;
    }
}

/* FORCE EXACT PDF TYPOGRAPHY - CRITICAL OVERRIDE */
.poem-single__title,
.poem-split__title,
.poem-card__title a,
.poem-list-item__title a {
    font-family: 'Santa Catalina', 'SantaCatalina', cursive !important;
    font-style: normal !important;
    font-weight: normal !important;
}

.poem-single .stanza,
.poem-split__body .stanza,
.poem-single__body,
.poem-body {
    font-family: 'Proxima Nova', 'ProximaNova-Regular', sans-serif !important;
    font-size: 1.3rem !important;
    line-height: 1.7 !important;
    color: var(--color-text) !important;
}

.poem-single + .site-footer .footer-main__inner {
    padding-top: 0;
}
.poem-single.section { padding-bottom: 0; }
.poem-single { padding-bottom: 1.25rem; }
.poem-single .review-block-wrap { margin-bottom: 0; }

/* ── Press Kit ──────────────────────────────────────────────────── */
.press-kit-page { background: var(--color-bg, #e8d5b0); min-height: 100vh; }

.press-kit-hero {
  background-color: rgba(30,20,10,.9);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  padding: 5rem 0 4rem;
}
.press-kit-hero__inner {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 3rem;
  align-items: center;
}
.press-kit-hero__eyebrow {
  font-size: .8rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  font-family: var(--font-ui, sans-serif);
  margin-bottom: .5rem;
}
.press-kit-hero__title { font-size: clamp(2rem, 4vw, 3.2rem); margin: 0 0 .25rem; color: #f5e8cc; text-shadow: 0 1px 6px rgba(0,0,0,.45); }
.press-kit-hero__subtitle { font-size: 1.1rem; color: rgba(255,255,255,.75); margin: 0 0 .25rem; font-style: italic; }
.press-kit-hero__tagline { font-size: .95rem; color: rgba(255,255,255,.55); margin: 0 0 2rem; }
.press-kit-hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.press-kit-hero__photo img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,.4);
  display: block;
}
.press-kit-download-btn { background: #c8902e; border-color: #c8902e; color: #fff; }
.press-kit-download-btn:hover { background: #a8721e; border-color: #a8721e; }

.press-kit-body { padding: 3rem 0 4rem; }

.press-kit-section { margin-bottom: 3rem; }
.press-kit-section__title {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--color-text-muted, #7a6040);
  font-family: var(--font-ui, sans-serif);
  margin-bottom: .75rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.press-kit-section__card {
  background: var(--glass-bg);
  border: 1px solid rgba(139,105,20,.2);
  border-radius: 12px;
  padding: 2rem 2.2rem;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.press-kit-section__footer {
  border-top: 1px solid rgba(139,105,20,.15);
  padding-top: 1rem;
  margin-top: 1.5rem;
}
.press-kit-download-link {
  font-size: .85rem;
  color: var(--color-text-muted, #7a6040);
  text-decoration: none;
  font-family: var(--font-ui, sans-serif);
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .3rem .7rem;
  border: 1px solid rgba(139,105,20,.3);
  border-radius: 20px;
  transition: border-color .15s, color .15s;
  margin-right: .5rem;
}
.press-kit-download-link:hover { border-color: var(--color-primary); color: var(--color-primary); }

.press-kit-note {
  font-size: .85rem;
  color: var(--color-text-muted, #7a6040);
  font-style: italic;
  margin-bottom: 1.25rem;
}

/* Author photos grid */
.press-kit-photos { display: flex; flex-wrap: wrap; gap: 1.5rem; margin-bottom: 1rem; align-items: flex-end; }
.press-kit-photo { display: flex; flex-direction: column; align-items: center; }
.press-kit-photo__link {
  position: relative;
  display: block;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
}
.press-kit-photo__link img { display: block; height: 280px; width: auto; max-width: 240px; object-fit: contain; transition: transform .3s; }
.press-kit-photo__link:hover img { transform: scale(1.03); }
.press-kit-photo__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.45);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  opacity: 0;
  transition: opacity .2s;
}
.press-kit-photo__link:hover .press-kit-photo__overlay { opacity: 1; }
.press-kit-photo__label { font-size: .75rem; text-align: center; color: var(--color-text-muted); margin-top: .4rem; font-family: var(--font-ui, sans-serif); }

/* Book layout */
.press-kit-book__layout { display: grid; grid-template-columns: 200px 1fr; gap: 2.5rem; align-items: flex-start; }
.press-kit-book__cover img { width: 100%; border-radius: 0; }
.press-kit-book__cover--placeholder { aspect-ratio: 2/3; background: rgba(139,105,20,.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; padding: 1rem; text-align: center; color: var(--color-text-muted); }
.press-kit-book__title { font-size: 1.5rem; margin: 0 0 .25rem; }
.press-kit-book__subtitle { font-size: 1rem; color: var(--color-text-muted); margin: 0 0 1.25rem; font-style: italic; }

.press-kit-meta-table { width: 100%; border-collapse: collapse; margin-bottom: 1.5rem; }
.press-kit-meta-table th { width: 160px; text-align: left; font-size: .8rem; text-transform: uppercase; letter-spacing: .06em; color: var(--color-text-muted); padding: .4rem 0; font-weight: 600; font-family: var(--font-ui, sans-serif); }
.press-kit-meta-table td { font-size: .95rem; padding: .4rem 0; border-bottom: 1px solid rgba(139,105,20,.08); }

.press-kit-book__description h4,
.press-kit-book__press-notes h4,
.press-kit-book__buy h4 { font-size: .85rem; text-transform: uppercase; letter-spacing: .08em; color: var(--color-text-muted); margin-bottom: .75rem; font-family: var(--font-ui, sans-serif); }
.press-kit-book__description { margin-bottom: 1.5rem; line-height: 1.8; }
.press-kit-book__press-notes { margin-bottom: 1.5rem; padding: 1rem 1.25rem; background: rgba(200,144,46,.06); border-left: 3px solid #c8902e; border-radius: 0 6px 6px 0; }
.press-kit-book__buy-links { display: flex; gap: .5rem; flex-wrap: wrap; }

.press-kit-badge { display: inline-block; padding: .2rem .75rem; border-radius: 20px; font-size: .75rem; font-family: var(--font-ui, sans-serif); letter-spacing: .06em; text-transform: uppercase; margin-bottom: 1rem; }
.press-kit-badge--upcoming { background: rgba(184,134,11,.15); color: #8b6914; border: 1px solid rgba(184,134,11,.3); }

.press-kit-contact { display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: center; }
.press-kit-contact__text { line-height: 1.8; }
.press-kit-contact__actions { display: flex; flex-direction: column; gap: .75rem; }

.press-kit-bio { line-height: 1.9; }
.press-kit-bio p { margin-bottom: 1rem; }

/* Rustic Press imprint panel — color silhouette artwork on the right, story copy left */
.press-kit-imprint { display: grid; grid-template-columns: 1fr auto; gap: 2.5rem; align-items: center; }
.press-kit-imprint__body { line-height: 1.85; }
.press-kit-imprint__body p { margin: 0 0 1rem; }
.press-kit-imprint__body p:last-child { margin-bottom: 0; }
.press-kit-imprint__body strong { color: var(--color-text); }
.press-kit-imprint__figure {
    margin: 0;
    text-align: center;
    max-width: 240px;
}
.press-kit-imprint__figure img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 6px 20px rgba(43,30,16,.18));
}
.press-kit-imprint__figure figcaption {
    font-family: var(--font-system);
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-top: 0.6rem;
    line-height: 1.4;
}

@media (max-width: 768px) {
  .press-kit-hero__inner { grid-template-columns: 1fr; }
  .press-kit-hero__photo { display: none; }
  .press-kit-book__layout { grid-template-columns: 1fr; }
  .press-kit-book__cover { max-width: 180px; }
  .press-kit-contact { grid-template-columns: 1fr; }
  .press-kit-contact__actions { flex-direction: row; }
  .press-kit-imprint { grid-template-columns: 1fr; }
  .press-kit-imprint__figure { max-width: 200px; margin: 0 auto; }
}

.press-kit-book__excerpt {
  margin-bottom: 1.25rem;
  padding: 1rem 1.25rem;
  background: rgba(200,144,46,.07);
  border-left: 3px solid #c8902e;
  border-radius: 0 6px 6px 0;
  font-size: 1.05rem;
  line-height: 1.75;
  font-style: italic;
}
.press-kit-book__excerpt h4 { margin-bottom: .5rem; }
