/* ═══════════════════════════════════════════════════════════════
   Swordistry — Main Stylesheet
   Palette: Midnight / Copper / Parchment / Verdigris
   ═══════════════════════════════════════════════════════════════ */

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

:root {
    --midnight:         #0b0c1a;
    --midnight-mid:     #141526;
    --midnight-warm:    #1e1f35;

    --copper:           #b07c28;
    --copper-light:     #ca9840;
    --copper-dim:       rgba(176, 124, 40, 0.15);

    --verdigris:        #4a7a72;
    --verdigris-light:  #62958c;

    --parchment:        #f2edd8;
    --parchment-mid:    #e8e1cc;
    --parchment-dark:   #d9d1b8;

    --white:            #faf9f5;
    --text:             #1a1a24;
    --text-mid:         #4a4a5a;
    --text-light:       #5e5e70;
    --border:           #ddd8c4;

    --font-display:     'Cinzel', serif;
    --font-body:        'Crimson Text', serif;
    --font-ui:          'Inter', sans-serif;

    --noise:            url('/img/noise-grain.webp'), url('/img/noise-grain.png');
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    font-size: 19px;
    line-height: 1.8;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }


/* ── Fixed Navigation ─────────────────────────────────────────── */
.site-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 200;
    transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
    padding: 1.2rem 0;
}

.site-nav.scrolled {
    background: rgba(11, 12, 26, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(255,255,255,0.05);
    padding: 0.7rem 0;
}

/* On inner pages nav is always solid — no hero behind it */
.site-nav.nav-solid {
    background: var(--midnight);
    padding: 0.7rem 0;
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.site-nav.scrolled .nav-logo,
.site-nav.nav-solid  .nav-logo {
    opacity: 1;
    pointer-events: auto;
}

.nav-logo img {
    height: 28px;
    width: auto;
    filter: brightness(1.1);
}

.nav-logo-text {
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--white);
}

/* Hide press link on desktop; show only in mobile overlay */
.nav-mobile-only { display: none; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.15rem;
    list-style: none;
    margin-left: auto;
}

.nav-links a {
    font-family: var(--font-ui);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    padding: 0.5rem 1rem;
    position: relative;
    transition: color 0.2s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 1rem; right: 1rem;
    height: 1px;
    background: var(--copper);
    transform: scaleX(0);
    transition: transform 0.25s ease;
}

.nav-links a:hover            { color: var(--white); }
.nav-links a:hover::after     { transform: scaleX(1); }
.nav-links a.active           { color: var(--white); }
.nav-links a.active::after    { transform: scaleX(1); }

/* Hamburger button — hidden on desktop */
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 201;
}
.nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: rgba(255,255,255,0.85);
    border-radius: 1px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ── Inner-page wrapper (non-homepage) ────────────────────────── */
.page-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

.content-wrapper {
    padding: 5.5rem 0 4rem; /* top clears fixed nav */
}


/* ── Shared Section Utilities ─────────────────────────────────── */
.section-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

.section-heading {
    font-family: var(--font-ui);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--copper);
    margin-bottom: 0.5rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: 1.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 3rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

/* Fade-up scroll animation */
.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}


/* ── Status Badges ────────────────────────────────────────────── */
/* Rendered by $books->getBookStatus() — class names must match */
.book-status { margin-top: 0.5rem; margin-bottom: 0.75rem; }

.book-status-badge {
    display: inline-block;
    font-family: var(--font-ui);
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0.25rem 0.75rem;
    border-radius: 2px;
}

.badge-available {
    background: rgba(74,122,114,0.15);
    color: var(--verdigris-light);
    border: 1px solid rgba(74,122,114,0.3);
}

.badge-coming {
    background: rgba(176,124,40,0.12);
    color: var(--copper-light);
    border: 1px solid rgba(176,124,40,0.3);
}

.badge-wip {
    background: rgba(255,255,255,0.06);
    color: var(--text-light);
    border: 1px solid var(--border);
}

.badge-draft {
    background: rgba(255,255,255,0.06);
    color: var(--text-light);
    border: 1px solid var(--border);
}

.badge-pre-order {
    background: rgba(176,124,40,0.12);
    color: var(--copper-light);
    border: 1px solid rgba(176,124,40,0.3);
}

.badge-out-of-print {
    background: rgba(122,122,140,0.1);
    color: var(--text-light);
    border: 1px solid rgba(122,122,140,0.2);
}

/* Dark-section badge overrides — on dark bg the borders lighten */
.dark-section .badge-available  { border-color: rgba(74,122,114,0.5); }
.dark-section .badge-coming     { border-color: rgba(176,124,40,0.5); }
.dark-section .badge-wip,
.dark-section .badge-draft      { border-color: rgba(255,255,255,0.2); color: rgba(255,255,255,0.95); }


/* ── Buttons ──────────────────────────────────────────────────── */
.btn-primary {
    display: inline-block;
    padding: 0.9rem 2.25rem;
    background: var(--copper);
    color: var(--midnight);
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    border-radius: 2px;
    transition: background 0.2s ease, transform 0.2s ease;
}
.btn-primary:hover {
    background: var(--copper-light);
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    padding: 0.9rem 2.25rem;
    border: 1px solid rgba(255,255,255,0.3);
    color: rgba(255,255,255,0.8);
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    border-radius: 2px;
    transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.btn-secondary:hover {
    border-color: var(--copper);
    color: var(--copper-light);
    transform: translateY(-2px);
}


/* ══════════════════════════════════════════════════════════════
   HOMEPAGE SECTIONS
   ══════════════════════════════════════════════════════════════ */

/* ── Hero ─────────────────────────────────────────────────────── */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        linear-gradient(105deg,
            rgba(8, 8, 18, 0.82) 0%,
            rgba(8, 8, 18, 0.70) 45%,
            rgba(8, 8, 18, 0.30) 100%
        ),
        url('/img/virtuosi-bg.jpg') center center / cover no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--noise);
    background-size: 512px;
    background-repeat: repeat;
    opacity: 0.28;
    mix-blend-mode: overlay;
    pointer-events: none;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    right: -5%;
    top: 50%;
    transform: translateY(-50%);
    width: 60%;
    height: 120%;
    background: radial-gradient(ellipse at center, rgba(176,124,40,0.25) 0%, transparent 65%);
    pointer-events: none;
    z-index: 1;
}

.hero-inner {
    position: relative;
    z-index: 5;
    max-width: 1200px;
    margin: 0 auto;
    padding: 8rem 2.5rem 6rem;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 5rem;
    align-items: center;
}

.hero-text { padding-right: 2rem; }

.hero-series-tag {
    display: inline-block;
    font-family: var(--font-ui);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--copper);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(176,124,40,0.3);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 700;
    line-height: 1.0;
    color: var(--white);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.75rem;
}

.hero-synopsis {
    font-size: 1.2rem;
    line-height: 1.85;
    color: rgba(255,255,255,0.72);
    max-width: 520px;
    margin-bottom: 2.5rem;
}

.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-cover-wrap { position: relative; }

.hero-cover-wrap::before {
    content: '';
    position: absolute;
    inset: -20px -10px;
    background: radial-gradient(ellipse, rgba(176,124,40,0.28) 0%, transparent 70%);
    pointer-events: none;
}

.hero-cover {
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
    box-shadow:
        0 4px 6px rgba(0,0,0,0.07),
        0 10px 15px rgba(0,0,0,0.1),
        0 30px 60px rgba(0,0,0,0.45),
        0 0 0 1px rgba(255,255,255,0.05),
        0 0 50px rgba(176,124,40,0.22);
    transform: perspective(800px) rotateY(-3deg);
    transition: transform 0.5s ease;
}
.hero-cover:hover {
    transform: perspective(800px) rotateY(0deg) translateY(-5px);
}

.hero-logo-anchor {
    position: absolute;
    bottom: 2.5rem;
    left: 2.5rem;
    z-index: 6;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.hero-logo-anchor img {
    height: 36px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.6));
}
.hero-logo-anchor-text {
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    text-shadow: 0 1px 6px rgba(0,0,0,0.7);
}

.hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 6;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-ui);
    font-size: 0.6rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
}
.hero-scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(176,124,40,0.6), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 0.4; transform: scaleY(1); }
    50%       { opacity: 1;   transform: scaleY(1.15); }
}


/* ── Brand Statement ──────────────────────────────────────────── */
.brand-statement {
    background: var(--midnight);
    padding: 3.5rem 0;
    position: relative;
    overflow: hidden;
}
.brand-statement::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--noise);
    background-size: 512px;
    opacity: 0.28;
    mix-blend-mode: overlay;
    pointer-events: none;
}
.brand-inner {
    position: relative;
    z-index: 2;
    max-width: 860px;
    margin: 0 auto;
    padding: 0 2.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}
.brand-rule {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(176,124,40,0.5), transparent);
}
.brand-quote {
    font-style: italic;
    font-size: 1.15rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.65);
    text-align: center;
    flex: 4;
}


/* ── Books Intro ──────────────────────────────────────────────── */
.books-intro {
    padding: 2.75rem 0 0;
    background: var(--white);
}
.books-intro-text {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.75;
    color: var(--text-light);
    border-left: 2px solid var(--copper-light);
    padding-left: 1.5rem;
    max-width: 640px;
}


/* ── Virtuosi Chronicles — Featured Layout ────────────────────── */
.series-featured {
    padding: 5.5rem 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
}

.featured-book {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 4rem;
    align-items: start;
    text-decoration: none;
    color: inherit;
    margin-bottom: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid var(--border);
    transition: transform 0.3s ease;
}
.featured-book:last-of-type {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}
.featured-book:hover { transform: translateY(-3px); }

.featured-book-cover {
    width: 100%;
    box-shadow: 0 8px 32px rgba(0,0,0,0.13), 0 2px 6px rgba(0,0,0,0.07);
    border-radius: 2px;
    transition: box-shadow 0.3s ease;
}
.featured-book:hover .featured-book-cover {
    box-shadow: 0 16px 48px rgba(0,0,0,0.2), 0 4px 10px rgba(0,0,0,0.1);
}

.featured-book-meta {
    font-family: var(--font-ui);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.featured-book-title {
    font-family: var(--font-display);
    font-size: 2.1rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text);
    line-height: 1.1;
    margin-bottom: 0.75rem;
}

.featured-book-synopsis {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-mid);
    margin-bottom: 1.25rem;
    max-width: 560px;
}

.learn-more {
    font-family: var(--font-ui);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--copper);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: color 0.2s ease, gap 0.2s ease;
}
.featured-book:hover .learn-more        { color: var(--copper-light); gap: 0.7rem; }
.learn-more-arrow                       { transition: transform 0.2s ease; }
.featured-book:hover .learn-more-arrow  { transform: translateX(3px); }


/* ── Pushkin Paradox — Dark Grid + Seal ───────────────────────── */
.series-pushkin {
    padding: 5.5rem 0;
    background: var(--midnight-mid);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.series-pushkin::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--noise);
    background-size: 512px;
    opacity: 0.28;
    mix-blend-mode: overlay;
    pointer-events: none;
    z-index: 1;
}
/* NKPMST seal watermark */
.series-pushkin::after {
    content: '';
    position: absolute;
    right: 4%;
    top: 50%;
    transform: translateY(-50%);
    width: 360px;
    height: 360px;
    background: url('/img/nkpmst-lg.png') center / contain no-repeat;
    opacity: 0.05;
    filter: invert(1);
    pointer-events: none;
    z-index: 1;
}
.series-pushkin .section-inner { position: relative; z-index: 2; }

.pushkin-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 3rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.pushkin-header-title {
    font-family: var(--font-display);
    font-size: 1.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    line-height: 1;
}
.pushkin-seal-small {
    height: 80px;
    width: auto;
    opacity: 0.55;
    filter: invert(1) sepia(1) saturate(0.6) brightness(0.85);
    flex-shrink: 0;
}


/* ── Lontanomai — Parchment ───────────────────────────────────── */
.series-lontanomai {
    padding: 5.5rem 0;
    background: var(--parchment);
    border-bottom: 1px solid var(--parchment-dark);
    position: relative;
    overflow: hidden;
}
.series-lontanomai::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--noise);
    background-size: 160px;
    opacity: 0.28;
    mix-blend-mode: multiply;
    pointer-events: none;
}
.series-lontanomai .section-inner { position: relative; z-index: 2; }
.series-lontanomai .section-title { border-bottom-color: var(--parchment-dark); }

.lontanomai-nocover {
    max-width: 680px;
    padding: 3rem;
    background: rgba(255,255,255,0.5);
    border: 1px solid var(--parchment-dark);
    border-left: 3px solid var(--copper);
    border-radius: 2px;
}
.lontanomai-nocover .featured-book-title { font-size: 1.8rem; }
.lontanomai-nocover .featured-book-synopsis { max-width: 100%; }
.lontanomai-note {
    font-family: var(--font-ui);
    font-size: 0.68rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-light);
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--parchment-dark);
}


/* ── Generic Series Grid ──────────────────────────────────────── */
.series-grid-section {
    padding: 5.5rem 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
}

/* Books grid — used in multiple sections */
.books-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.book-card {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}
.book-card:hover { transform: translateY(-4px); }

.book-cover,
.book-card-cover {
    width: 100%;
    margin-bottom: 1.2rem;
    box-shadow: 0 6px 20px rgba(0,0,0,0.13);
    border-radius: 2px;
    transition: box-shadow 0.3s ease;
}
.book-card:hover .book-cover,
.book-card:hover .book-card-cover {
    box-shadow: 0 12px 36px rgba(0,0,0,0.22);
}

.book-title,
.book-card-title {
    font-family: var(--font-display);
    font-size: 1.0rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 0.3rem;
    line-height: 1.3;
}

.book-subtitle,
.book-card-sub {
    font-family: var(--font-ui);
    font-size: 0.7rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 0.4rem;
}

/* Dark section card overrides */
.series-pushkin .book-title,
.series-pushkin .book-card-title  { color: var(--white); }
.series-pushkin .book-subtitle,
.series-pushkin .book-card-sub    { color: rgba(255,255,255,0.6); }
.series-pushkin .book-card-desc   { color: rgba(255,255,255,0.55); }


/* ── Standalone Section ───────────────────────────────────────── */
.standalone-section {
    padding: 5.5rem 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
}

.standalone-book {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 3.5rem;
    align-items: start;
    text-decoration: none;
    color: inherit;
    max-width: 760px;
    transition: transform 0.3s ease;
}
.standalone-book:hover { transform: translateY(-3px); }
.standalone-book-cover {
    width: 100%;
    box-shadow: 0 8px 30px rgba(0,0,0,0.13);
    border-radius: 2px;
    transition: box-shadow 0.3s ease;
}
.standalone-book:hover .standalone-book-cover {
    box-shadow: 0 16px 48px rgba(0,0,0,0.2);
}


/* ── Author Section ───────────────────────────────────────────── */
.author-section {
    padding: 6rem 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
}
.author-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 5rem;
    align-items: start;
}
.author-photo {
    width: 100%;
    border-radius: 3px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.13);
}
.author-name {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 1.75rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}
.author-bio {
    font-size: 1.15rem;
    line-height: 1.85;
    color: var(--text-mid);
    margin-bottom: 1.1rem;
}
.author-bio-start {
    font-size: 1rem;
    font-style: normal;
    color: var(--text-light);
    margin-top: 0.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border);
}
.author-bio-start em { font-style: italic; color: var(--text-mid); }
.author-links {
    margin-top: 2rem;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.author-link {
    font-family: var(--font-ui);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--copper);
    transition: color 0.2s ease;
}
.author-link:hover { color: var(--copper-light); }


/* ── Contact CTA (homepage) ───────────────────────────────────── */
.contact-section {
    padding: 5rem 0;
    background: var(--parchment);
    border-bottom: 1px solid var(--parchment-dark);
    position: relative;
    overflow: hidden;
    text-align: center;
}
.contact-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--noise);
    background-size: 160px;
    opacity: 0.28;
    mix-blend-mode: multiply;
    pointer-events: none;
}
.contact-section .section-inner { position: relative; z-index: 2; }
.contact-cta-text {
    font-size: 1.15rem;
    color: var(--text-mid);
    margin-bottom: 2rem;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

/* ── Contact Page ─────────────────────────────────────────────── */
.contact-feedback {
    margin-bottom: 2rem;
    padding: 1rem 1.25rem;
    border-radius: 2px;
    font-family: var(--font-body);
    font-size: 1.1rem;
    line-height: 1.7;
}
.contact-feedback--success {
    background: rgba(74,122,114,0.12);
    border: 1px solid rgba(74,122,114,0.3);
    color: var(--verdigris-light);
}
.contact-feedback--error {
    background: rgba(180,60,60,0.08);
    border: 1px solid rgba(180,60,60,0.25);
    color: #a04040;
}

.contact-page-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 1.5rem;
}

.contact-page-intro p {
    font-size: 1.1rem;
    line-height: 1.85;
    color: var(--text-mid);
    margin-bottom: 1.1rem;
}

.contact-page-list {
    list-style: none;
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.contact-page-list li {
    font-family: var(--font-ui);
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-light);
    padding-left: 1rem;
    border-left: 2px solid var(--copper-dim);
}

.contact-page-list a {
    color: var(--copper);
    transition: color 0.2s ease;
}
.contact-page-list a:hover { color: var(--copper-light); }

/* Contact form (shared) */
.contact-form { max-width: 560px; }
.form-group   { margin-bottom: 1.5rem; }
.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-family: var(--font-ui);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-mid);
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.7);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 1rem;
    border-radius: 2px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--copper);
    box-shadow: 0 0 0 3px rgba(176,124,40,0.1);
}
.form-group textarea { min-height: 140px; resize: vertical; }

.submit-btn {
    padding: 0.9rem 2.25rem;
    background: var(--copper);
    color: var(--midnight);
    border: none;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    border-radius: 2px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}
.submit-btn:hover {
    background: var(--copper-light);
    transform: translateY(-2px);
}


/* ── Cities Skyline Panel ─────────────────────────────────────── */
.place-panel {
    background: var(--white);
    padding: 3rem 0 0;
    overflow: hidden;
}
.cities-skyline {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 0;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2.5rem;
}
/* Buildings colorized to midnight blue — bridge into the creature band below */
.city img { display: block; width: auto;  }
.city-stpetersburg img { max-height: 160px; }
.city-columbus img     { max-height: 140px; }
.city-cleveland img    { max-height: 120px; }


/* ── Creature Parade ──────────────────────────────────────────── */
.creature-band {
    background: var(--midnight-warm);
    height: 110px;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid rgba(176,124,40,0.15);
}
.creature-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--noise);
    background-size: 512px;
    opacity: 0.28;
    mix-blend-mode: overlay;
    pointer-events: none;
    z-index: 1;
}
/* Edge fades */
.creature-band::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        var(--midnight-warm) 0%,
        transparent 8%,
        transparent 92%,
        var(--midnight-warm) 100%
    );
    pointer-events: none;
    z-index: 3;
}
.creature-track {
    display: flex;
    align-items: center;
    gap: 5rem;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    animation: creatureDrift 55s linear infinite;
    z-index: 2;
    white-space: nowrap;
}
@keyframes creatureDrift {
    from { transform: translateY(-50%) translateX(0); }
    to   { transform: translateY(-50%) translateX(-50%); }
}
.creature-track img {
    height: 64px;
    width: auto;
    display: inline-block;
    filter: invert(1) sepia(1) saturate(1.2) hue-rotate(5deg) brightness(0.8);
    opacity: 0.55;
    flex-shrink: 0;
}
.creature-track img.c-tall  { height: 76px; }
.creature-track img.c-short { height: 50px; }
.creature-track img.c-wide  { height: 60px; }


/* ── Codex Harmonicus Teaser ──────────────────────────────────── */
.codex-section {
    background: var(--midnight);
    padding: 5.5rem 0;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(74,122,114,0.2);
}
.codex-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--noise);
    background-size: 512px;
    opacity: 0.28;
    mix-blend-mode: overlay;
    pointer-events: none;
    z-index: 1;
}
.codex-section::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(74,122,114,0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}
.codex-inner { position: relative; z-index: 2; max-width: 1140px; margin: 0 auto; padding: 0 2.5rem; }
.codex-label {
    font-family: var(--font-ui);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--verdigris);
    margin-bottom: 0.6rem;
}
.codex-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 0.4rem;
}
.codex-subtitle {
    font-family: var(--font-ui);
    font-size: 0.72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(74,122,114,0.6);
    margin-bottom: 3rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(74,122,114,0.2);
}
.codex-entries {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
}
.codex-entry {
    padding: 1.5rem;
    border: 1px solid rgba(74,122,114,0.2);
    border-radius: 2px;
    background: rgba(74,122,114,0.04);
    transition: border-color 0.2s ease, background 0.2s ease;
}
.codex-entry:hover {
    border-color: rgba(74,122,114,0.4);
    background: rgba(74,122,114,0.08);
}
.codex-entry-id {
    display: block;
    font-family: var(--font-ui);
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--verdigris);
    margin-bottom: 0.75rem;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid rgba(74,122,114,0.15);
}
.codex-entry-text {
    font-size: 1rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.5);
}
.codex-entry-date {
    display: block;
    font-family: var(--font-ui);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--verdigris);
    opacity: 0.8;
    margin-bottom: 0.3rem;
}
.codex-article-link {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s, background 0.2s;
}
.codex-article-link:hover {
    border-left-color: var(--verdigris);
    background: rgba(74,122,114,0.06);
}
.codex-article-link:hover .codex-entry-id { color: rgba(255,255,255,0.9); }
.codex-article-link:hover .codex-entry-text { color: rgba(255,255,255,0.65); }
.codex-link {
    font-family: var(--font-ui);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--verdigris-light);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.2s ease, gap 0.2s ease;
}
.codex-link:hover { color: var(--white); gap: 0.8rem; }


/* ── Newsletter ───────────────────────────────────────────────── */
.newsletter-section {
    background: var(--midnight-mid);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}
.newsletter-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--noise);
    background-size: 512px;
    opacity: 0.28;
    mix-blend-mode: overlay;
    pointer-events: none;
}
.newsletter-inner {
    position: relative;
    z-index: 2;
    max-width: 560px;
    margin: 0 auto;
    padding: 0 2.5rem;
    text-align: center;
}
.newsletter-label {
    font-family: var(--font-ui);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--copper);
    margin-bottom: 0.6rem;
}
.newsletter-title {
    font-family: var(--font-display);
    font-size: 1.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 1.25rem;
    line-height: 1.15;
}
.newsletter-body {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.55);
    margin-bottom: 2rem;
}
/* Kit form wrapper override */
.kit-form-wrapper { display: flex; justify-content: center; }


/* ── Footer ───────────────────────────────────────────────────── */
.footer-wrapper {
    background: var(--midnight);
    padding: 2.5rem 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}
footer {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}
.footer-links,
.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.25rem 1.5rem;
}
.footer-link,
.footer-nav a {
    font-family: var(--font-ui);
    font-size: 0.68rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    text-decoration: none;
    transition: color 0.2s ease;
}
.footer-link:hover,
.footer-nav a:hover { color: rgba(255,255,255,0.7); }

.footer-social {
    display: flex;
    gap: 1rem;
}
.social-link,
.footer-social a {
    color: rgba(255,255,255,0.3);
    display: flex;
    align-items: center;
    transition: color 0.2s ease;
}
.social-link:hover,
.footer-social a:hover { color: var(--copper-light); }

footer p,
.footer-copy {
    font-family: var(--font-ui);
    font-size: 0.65rem;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.2);
    text-align: center;
}
.footer-copy a { color: rgba(255,255,255,0.35); transition: color 0.2s ease; }
.footer-copy a:hover { color: var(--copper); }


/* ══════════════════════════════════════════════════════════════
   INNER PAGE STYLES
   ══════════════════════════════════════════════════════════════ */

/* ── Book Detail Page ─────────────────────────────────────────── */
.back-link {
    display: inline-block;
    margin-bottom: 2rem;
    font-family: var(--font-ui);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--copper);
    transition: color 0.2s ease, padding-left 0.2s ease;
}
.back-link:hover { color: var(--copper-light); padding-left: 4px; }

.book-detail {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border);
}

.book-cover-large {
    width: 100%;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    border-radius: 2px;
}

.book-info h1 {
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.15;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.4rem;
}

.book-meta {
    font-style: italic;
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.book-description {
    font-size: 1.15rem;
    line-height: 1.85;
    color: var(--text-mid);
    margin-bottom: 2rem;
}
.book-description p {
    margin-bottom: 1em;
}
.book-description ul {
    padding-left: 1.5em;
    list-style: disc;
    margin: 0.75em 0;
}
.book-description li {
    margin-bottom: 0.35em;
}

.buy-links { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 1.5rem; }

.buy-link {
    padding: 0.8rem 1.75rem;
    background: var(--copper);
    color: var(--midnight);
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 2px;
    transition: background 0.2s ease, transform 0.2s ease;
}
.buy-link:hover { background: var(--copper-light); transform: translateY(-2px); }

.buy-link.secondary {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
}
.buy-link.secondary:hover {
    border-color: var(--copper);
    color: var(--copper);
    background: rgba(176,124,40,0.05);
}

.book-metadata { padding-top: 15px; }

.series-nav {
    margin-top: 1rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border);
}
.series-nav h3 {
    font-family: var(--font-display);
    font-size: 0.85rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.goodreads-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 1.25rem;
    font-family: var(--font-ui);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--copper);
    border-bottom: 1px solid rgba(176,124,40,0.3);
    transition: border-color 0.2s ease;
}
.goodreads-link:hover { border-bottom-color: var(--copper); }

.book-credits {
    margin-top: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.book-credit { font-size: 0.9rem; color: var(--text-mid); }
.credit-role { font-style: italic; margin-right: 0.25rem; }
.book-credit a { color: var(--copper); border-bottom: 1px solid transparent; transition: border-color 0.2s; }
.book-credit a:hover { border-bottom-color: var(--copper); }


/* ── 404 Page ─────────────────────────────────────────────────── */
.error-page {
    padding: 5rem 0 6rem;
    text-align: center;
}
.error-code {
    font-family: var(--font-display);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--copper);
    margin-bottom: 1rem;
}
.error-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 1rem;
}
.error-body {
    font-family: var(--font-body);
    font-size: 1.2rem;
    color: var(--text-mid);
    margin-bottom: 2.5rem;
}
.error-links {
    display: inline-block;
    text-align: left;
}
.error-links-label {
    font-family: var(--font-ui);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-light);
    margin-bottom: 0.75rem;
}
.error-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.error-links li {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--text-mid);
    padding: 0.35rem 0;
    border-bottom: 1px solid var(--border);
}
.error-links li:last-child { border-bottom: none; }
.error-links a {
    color: var(--copper);
    font-weight: 600;
    transition: color 0.2s;
}
.error-links a:hover { color: var(--copper-light); }


/* ── Generic Page Body (DB-rendered type='page') ─────────────── */
.page-body { font-size: 1.15rem; color: var(--text-mid); line-height: 1.85; }
.page-body img { max-width: 280px; height: auto; float: left; margin: 0.25rem 1.75rem 1rem 0; border-radius: 3px; }
.page-body::after { content: ''; display: table; clear: both; }
.page-body p { margin-bottom: 1.15rem; }
.page-body p:last-child { margin-bottom: 0; }
.page-body h2 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; color: var(--text); letter-spacing: 1px; margin: 2.5rem 0 0.75rem; padding-top: 2.5rem; border-top: 1px solid var(--border); }
.page-body a { color: var(--copper); border-bottom: 1px solid rgba(176,124,40,0.35); transition: border-color 0.2s; }
.page-body a:hover { border-bottom-color: var(--copper); }


/* ── About Page ───────────────────────────────────────────────── */
.about-intro {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
    align-items: start;
    margin-bottom: 3rem;
}
.about-body { padding-top: 0.5rem; }
.about-body p {
    font-size: 1.15rem;
    line-height: 1.85;
    color: var(--text-mid);
    margin-bottom: 1.25rem;
}
.about-body a { color: var(--copper); border-bottom: 1px solid rgba(176,124,40,0.3); transition: border-color 0.2s ease; }
.about-body a:hover { border-bottom-color: var(--copper); }

.about-section {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border);
}
.about-section h2 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.25rem;
}
.about-section p {
    font-size: 1.15rem;
    line-height: 1.85;
    color: var(--text-mid);
    margin-bottom: 1.25rem;
}
.about-photo-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 1.5rem 0;
}
.about-photo-block img { width: 100%; border-radius: 3px; box-shadow: 0 4px 16px rgba(0,0,0,0.12); }


/* ── News / Article Pages ─────────────────────────────────────── */
.news-list { margin-top: 2rem; }
.news-item {
    padding-bottom: 2.25rem;
    margin-bottom: 2.25rem;
    border-bottom: 1px solid var(--border);
}
.news-item:last-child { border-bottom: none; padding-bottom: 0; margin-bottom: 0; }
.news-item-date {
    font-family: var(--font-ui);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-light);
    margin-bottom: 0.45rem;
}
.news-item-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 0.6rem;
}
.news-item-title a { color: var(--text); transition: color 0.2s; }
.news-item-title a:hover { color: var(--copper); }
.news-item-teaser { font-size: 1.1rem; color: var(--text-mid); line-height: 1.75; }
.news-empty { font-style: italic; color: var(--text-light); font-size: 1.1rem; margin-top: 1rem; }

.page-article { max-width: 720px; }
.article-header { margin-bottom: 2.25rem; padding-bottom: 1.75rem; border-bottom: 1px solid var(--border); }
.article-date {
    font-family: var(--font-ui);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--text-light);
    margin-bottom: 0.6rem;
}
.article-header h1 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.25;
    letter-spacing: 0.5px;
}
.article-body { font-size: 1.15rem; color: var(--text-mid); line-height: 1.85; }
.article-body p { margin-bottom: 1.15rem; }
.article-body p:last-child { margin-bottom: 0; }
.article-body h2 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; color: var(--text); letter-spacing: 1px; margin: 2rem 0 0.75rem; }
.article-body h3 { font-family: var(--font-display); font-size: 0.88rem; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; color: var(--text-mid); margin: 1.5rem 0 0.5rem; }
.article-body a { color: var(--copper); border-bottom: 1px solid rgba(176,124,40,0.35); transition: border-color 0.2s; }
.article-body a:hover { border-bottom-color: var(--copper); }
.article-body blockquote { margin: 1.5rem 0; padding: 0.25rem 0 0.25rem 1.25rem; border-left: 3px solid var(--border); color: var(--text-light); font-style: italic; }
.article-body ul, .article-body ol { margin: 0 0 1.15rem 1.5rem; }
.article-body li { margin-bottom: 0.35rem; }
.article-body img { max-width: 100%; height: auto; display: block; margin: 1.5rem auto; }
.article-back { display: inline-block; margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border); font-family: var(--font-ui); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 2px; color: var(--text-light); text-decoration: none; transition: color 0.2s; }
.article-back:hover { color: var(--text); }


/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════ */

@media (max-width: 900px) {
    .hero-inner      { grid-template-columns: 1fr; gap: 3rem; padding-top: 7rem; }
    .hero-text       { padding-right: 0; }
    .hero-cover-wrap { max-width: 280px; margin: 0 auto; }

    .featured-book   { grid-template-columns: 160px 1fr; gap: 2rem; }

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

    .author-layout   { grid-template-columns: 1fr; gap: 2.5rem; }
    .author-photo    { max-width: 220px; }

    .codex-entries   { grid-template-columns: 1fr; }
    .pushkin-seal-small { display: none; }

    .book-detail     { grid-template-columns: 1fr; gap: 2rem; }
    .book-info h1    { font-size: 1.8rem; }

    .about-intro     { grid-template-columns: 1fr; gap: 2rem; }
    .about-intro .author-photo { max-width: 260px; margin: 0 auto; display: block; }
    .about-photo-block { grid-template-columns: 1fr; }

    .standalone-book { grid-template-columns: 160px 1fr; gap: 2rem; }
}

@media (max-width: 600px) {
    body { font-size: 17px; }

    .hero-inner      { padding: 6rem 1.5rem 4rem; }
    .section-inner,
    .page-container  { padding: 0 1.5rem; }
    .content-wrapper { padding-top: 4.5rem; }

    .books-grid      { grid-template-columns: 1fr; }
    .featured-book   { grid-template-columns: 1fr; }
    .standalone-book { grid-template-columns: 1fr; }
    .standalone-book-cover { max-width: 200px; }

    .brand-inner     { flex-direction: column; gap: 1rem; }
    .brand-rule      { width: 60px; height: 1px; flex: none; }

    .codex-entries   { grid-template-columns: 1fr; }

    .nav-logo-text   { display: none; }

    /* Hamburger: show button, collapse links into overlay */
    .nav-hamburger   { display: flex; }
    .nav-links {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(11,12,26,0.98);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.25rem;
        z-index: 150;
        padding: 2rem;
        list-style: none;
    }
    .nav-links.open  { display: flex; }
    .nav-links li    { width: 100%; text-align: center; }
    .nav-links a     { font-size: 0.95rem; padding: 0.9rem 2rem; letter-spacing: 3px; display: block; }
    .nav-mobile-only { display: list-item; }

    .article-header h1    { font-size: 1.5rem; }
    .article-body         { font-size: 1.05rem; }
    .contact-page-layout  { grid-template-columns: 1fr; gap: 2.5rem; }

    .press-release-card   { flex-direction: column; }
    .press-release-cover  { max-width: 220px; margin: 0 auto; }
    .press-bio            { flex-direction: column; }
    .press-bio-photo      { max-width: 180px; margin: 0 auto; }
    .press-downloads      { flex-direction: column; }
}


/* ── Press Page ──────────────────────────────────────────────── */
.press-page {
    max-width: 820px;
}

.press-intro {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    line-height: 1.7;
}

.press-section {
    margin-bottom: 3.5rem;
}

.press-section-title {
    font-family: var(--font-display);
    font-size: 0.75rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--copper);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border);
}

.press-release-card {
    display: flex;
    gap: 2.5rem;
    align-items: flex-start;
}

.press-release-cover {
    flex-shrink: 0;
    width: 180px;
}

.press-release-cover img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.5);
}

.press-release-body {
    flex: 1;
}

.press-release-label {
    font-family: var(--font-display);
    font-size: 0.65rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.press-release-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 1.25rem;
    line-height: 1.4;
}

.press-release-dateline {
    color: var(--text-light);
    font-size: 0.95rem;
}

.press-release-body p {
    margin-bottom: 1rem;
    line-height: 1.75;
    color: var(--text);
    font-size: 0.97rem;
}

.press-event-details {
    background: var(--copper-dim);
    border-left: 2px solid var(--copper);
    padding: 1.25rem 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 4px 4px 0;
}

.press-event-details p {
    margin-bottom: 0.4rem !important;
    font-size: 0.92rem !important;
}

.press-series-note {
    color: var(--text-light);
    font-style: italic;
    font-size: 0.9rem !important;
}

.press-downloads {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.press-download-btn {
    display: inline-block;
    padding: 0.7rem 1.5rem;
    border: 1px solid var(--border);
    border-radius: 3px;
    font-family: var(--font-display);
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text);
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s;
}

.press-download-btn:hover {
    border-color: var(--copper);
    color: var(--copper);
}

.press-bio {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.press-bio-photo {
    flex-shrink: 0;
    width: 150px;
}

.press-bio-photo img {
    width: 100%;
    border-radius: 4px;
    filter: grayscale(20%);
}

.press-bio-text p {
    margin-bottom: 0.9rem;
    line-height: 1.75;
    color: var(--text);
    font-size: 0.97rem;
}

.press-page .press-section p {
    line-height: 1.75;
    color: var(--text);
}

.press-page p a {
    color: var(--copper);
    border-bottom: 1px solid rgba(176,124,40,0.3);
    transition: border-color 0.2s;
}
.press-page p a:hover { border-bottom-color: var(--copper); }
