/* ==================================================
   INDEX PAGE STYLESHEET
   Styles specific to the index/home page
   Attach after global.css for page-specific layout
   ================================================== */

:root {
    --ink: #231a14;
    --sepia-dark: #2f241c;
    --sepia-mid: #7a6453;
    --sepia-light: #d9c2a1;
    --cream: #f6efe6;
    --warm-white: #fffaf4;
    --ember: #c0603b;
    --glow: #f2b36c;
    --nav-bg: rgba(246, 239, 230, 0.94);
}

/* ==================================================
   1) Hero Section
   ================================================== */

.hero {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    overflow-x: hidden;
    overflow-y: hidden;
    min-height: 80vh;
}

/* Navbar (ink-navbar) – full width, sticky. Index: brand-bar + navbar sit above hero */
.ink-navbar {
    flex-shrink: 0;
}

/* When scrolled, fix navbar to top (homepage) */
body.scrolled .ink-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    animation: navSlideDown 0.4s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(35, 26, 20, 0.62), rgba(35, 26, 20, 0.35)),
        url('../images/bg.jpeg?v=20260306'),
        radial-gradient(ellipse 55% 70% at 50% 80%, rgba(192, 96, 59, 0.28) 0%, transparent 70%),
        radial-gradient(ellipse 30% 40% at 50% 75%, rgba(242, 179, 108, 0.16) 0%, transparent 60%),
        radial-gradient(ellipse 80% 60% at 15% 60%, rgba(23, 16, 12, 0.55) 0%, transparent 70%),
        radial-gradient(ellipse 80% 60% at 85% 60%, rgba(23, 16, 12, 0.55) 0%, transparent 70%),
        linear-gradient(180deg, #1f1712 0%, #3a2a21 30%, #4c3526 50%, #2b2018 75%, #1f1712 100%);
    background-size: cover, cover;
    background-position: center, center;
    background-repeat: no-repeat, no-repeat;
    z-index: 0;
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23noise)' opacity='0.06'/%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 1;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle 3px at 50% 74%, rgba(242, 179, 108, 0.9) 0%, rgba(192, 96, 59, 0.4) 60%, transparent 100%),
        radial-gradient(circle 6px at 50% 74%, rgba(192, 96, 59, 0.28) 0%, transparent 100%),
        radial-gradient(circle 40px at 50% 76%, rgba(192, 96, 59, 0.14) 0%, transparent 100%);
    z-index: 2;
}

.hero-vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 90% 90% at 50% 50%, transparent 40%, rgba(10, 6, 2, 0.7) 100%);
    z-index: 3;
}

.hero-trees {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 35%;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 6, 2, 0.55) 100%);
    z-index: 3;
}

.hero-content {
    position: relative;
    z-index: 10;
    flex: 1;
    text-align: center;
    max-width: 760px;
    padding: 40px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.hero-welcome {
    font-family: 'Dancing Script', cursive;
    font-size: clamp(4rem, 12vw, 8.5rem);
    color: #fffaf4;
    line-height: 0.9;
    text-shadow: 0 0 50px rgba(242, 179, 108, 0.42), 0 4px 22px rgba(0, 0, 0, 0.55), 0 2px 4px rgba(0, 0, 0, 0.4);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1.1s 0.3s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    margin-bottom: 20px;
}

.hero-body {
    font-family: 'Crimson Pro', serif;
    font-size: clamp(0.85rem, 1.7vw, 1.05rem);
    font-weight: 300;
    font-style: italic;
    line-height: 1.75;
    color: rgba(255, 247, 236, 0.86);
    max-width: 580px;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1.1s 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    margin-bottom: 22px;
}

.hero-cta-text {
    font-family: 'Libre Baskerville', serif;
    font-size: clamp(0.95rem, 2vw, 1.2rem);
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--cream);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1.1s 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-divider {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--glow), transparent);
    margin: 16px auto;
    opacity: 0;
    animation: fadeIn 1s 1.2s forwards;
}

.scroll-hint {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    opacity: 0;
    animation: fadeIn 1s 1.8s forwards;
}

.scroll-hint span {
    font-family: 'Crimson Pro', serif;
    font-size: clamp(0.75rem, 0.9vw, 0.82rem);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255, 247, 236, 0.5);
}

.scroll-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--glow);
    animation: scrollBounce 1.5s ease-in-out infinite;
}

@keyframes scrollBounce {

    0%,
    100% {
        transform: translateY(0);
        opacity: 1;
    }

    50% {
        transform: translateY(6px);
        opacity: 0.4;
    }
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* ==================================================
   2) Index Section Spacing
   ================================================== */

.hero+.featured-poems,
.featured-poems+.latest-poems,
.latest-poems+.categories-section,
.categories-section+.about-poet,
.about-poet+.newsletter,
.newsletter+.site-footer {
    margin-top: 28px;
}

/* ==================================================
   3) Generic Poem Listing Block
   ================================================== */

.poems-section {
    background: var(--cream);
    padding: clamp(48px, 8vw, 100px) 0;
    position: relative;
}

.poems-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 clamp(16px, 5vw, 48px);
}

.poems-header {
    text-align: center;
    margin-bottom: clamp(32px, 5vw, 64px);
}

.poems-title {
    font-family: 'Libre Baskerville', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--ink);
    margin-bottom: 16px;
}

.poems-subtitle {
    font-family: 'Crimson Pro', serif;
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--sepia-mid);
    font-style: italic;
}

.poem-card {
    background: var(--warm-white);
    border-radius: 12px;
    padding: clamp(20px, 3vw, 36px);
    margin-bottom: clamp(20px, 3vw, 32px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform var(--transition), box-shadow var(--transition);
}

.poem-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.poem-title {
    font-family: 'Libre Baskerville', serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--ink);
    margin-bottom: 12px;
}

.poem-meta {
    font-family: 'Crimson Pro', serif;
    font-size: clamp(0.88rem, 1.3vw, 1rem);
    color: var(--sepia-mid);
    margin-bottom: 20px;
    font-style: italic;
}

.poem-content {
    font-family: 'Crimson Pro', serif;
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    line-height: 1.8;
    color: var(--sepia-dark);
    white-space: pre-line;
}

.no-poems {
    text-align: center;
    padding: 60px 0;
    color: #4a3520;
    font-family: 'Crimson Pro', serif;
    font-size: clamp(1rem, 1.8vw, 1.25rem);
    font-style: italic;
}

/* ==================================================
   4) Featured Poems Section
   ================================================== */

.featured-poems {
    background: var(--cream);
    padding: clamp(20px, 3vw, 36px) clamp(16px, 3vw, 32px);
    height: 100vh;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.fp-container {
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.fp-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
    gap: 20px;
    flex-wrap: wrap;
}

.fp-main-title {
    font-family: 'Libre Baskerville', serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--ink);
    font-weight: 700;
    margin: 0;
}

.fp-highlight {
    color: var(--ember);
}

.fp-view-all-btn {
    font-family: 'Crimson Pro', serif;
    font-size: clamp(0.78rem, 1vw, 0.9rem);
    font-weight: 600;
    padding: 10px 24px;
    background: var(--ember);
    color: var(--cream);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.fp-view-all-btn:hover {
    background: var(--sepia-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 98, 42, 0.3);
}

.fp-featured-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    background: var(--warm-white);
    border: 1px solid rgba(201, 169, 110, 0.3);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 12px;
    box-shadow: 0 4px 12px rgba(26, 18, 8, 0.08);
    height: 34vh;
    min-height: 230px;
    max-height: 300px;
}

.fp-featured-content {
    padding: clamp(16px, 2.5vw, 24px) clamp(18px, 3vw, 28px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.fp-category-badge {
    display: inline-block;
    font-family: 'Crimson Pro', serif;
    font-size: clamp(0.75rem, 0.9vw, 0.82rem);
    font-weight: 600;
    letter-spacing: 0.05em;
    padding: 4px 12px;
    background: rgba(212, 98, 42, 0.1);
    color: var(--ember);
    border: 1px solid var(--ember);
    border-radius: 4px;
    text-transform: uppercase;
    width: fit-content;
    margin-bottom: 12px;
}

.fp-featured-title {
    font-family: 'Libre Baskerville', serif;
    font-size: clamp(1.1rem, 2vw, 1.45rem);
    color: var(--ink);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 8px;
}

.fp-featured-excerpt {
    font-family: 'Crimson Pro', serif;
    font-size: clamp(0.82rem, 1.2vw, 0.95rem);
    line-height: 1.55;
    color: var(--sepia-mid);
    margin-bottom: 10px;
}

.fp-read-link {
    font-family: 'Crimson Pro', serif;
    font-size: clamp(0.82rem, 1vw, 0.9rem);
    font-weight: 600;
    color: var(--ink);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.fp-read-link:hover {
    color: var(--ember);
    gap: 10px;
}

.fp-read-link span {
    transition: transform 0.3s ease;
}

.fp-featured-image {
    height: 100%;
}

.fp-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(12px, 2vw, 20px);
    flex: 1;
}

.fp-blog-card {
    background: var(--warm-white);
    border: 1px solid rgba(201, 169, 110, 0.3);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(26, 18, 8, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.fp-blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(26, 18, 8, 0.15);
}

.fp-blog-image {
    width: 100%;
    height: 16vh;
    min-height: 90px;
    max-height: 130px;
    overflow: hidden;
}

.fp-blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.fp-blog-card:hover .fp-blog-image img {
    transform: scale(1.08);
}

.fp-blog-card .fp-category-badge {
    margin: clamp(8px, 1.5vw, 14px) 0 clamp(6px, 1vw, 10px) 15px;
}

.fp-blog-title {
    font-family: 'Libre Baskerville', serif;
    font-size: clamp(0.88rem, 1.3vw, 1.05rem);
    color: var(--ink);
    font-weight: 700;
    line-height: 1.25;
    margin: 0 15px 8px;
}

.fp-blog-excerpt {
    font-family: 'Crimson Pro', serif;
    font-size: clamp(0.78rem, 1vw, 0.88rem);
    line-height: 1.5;
    color: var(--sepia-mid);
    margin: 0 15px 10px;
}

.fp-blog-card .fp-read-link {
    margin: 0 15px 12px;
}

/* ==================================================
   5) Latest Poems Section
   ================================================== */

.latest-poems {
    background: var(--sepia-dark);
    padding: clamp(28px, 4vw, 48px) 0;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.lp-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 clamp(16px, 5vw, 48px);
    width: 100%;
}

.lp-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: clamp(14px, 2vw, 24px);
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(245, 234, 214, 0.15);
    gap: 24px;
}

.lp-header-left {
    flex: 1;
}

.lp-issue-label {
    font-family: 'Libre Baskerville', serif;
    font-size: clamp(0.75rem, 0.9vw, 0.82rem);
    letter-spacing: 0.2em;
    color: var(--sepia-light);
    text-transform: uppercase;
    margin-bottom: 14px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.lp-issue-label::before {
    content: '';
    width: 28px;
    height: 1px;
    background: var(--sepia-light);
}

.lp-main-title {
    font-family: 'Libre Baskerville', serif;
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 700;
    line-height: 0.95;
    color: var(--cream);
    letter-spacing: -0.02em;
}

.lp-main-title em {
    font-style: italic;
    color: var(--glow);
}

.lp-header-right {
    text-align: right;
    flex-shrink: 0;
}

.lp-view-all-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 18px;
    border: 1px solid rgba(240, 168, 75, 0.55);
    background: rgba(240, 168, 75, 0.1);
    color: var(--glow);
    text-decoration: none;
    font-family: 'Libre Baskerville', serif;
    font-size: clamp(0.75rem, 0.9vw, 0.82rem);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.lp-view-all-btn:hover {
    background: rgba(240, 168, 75, 0.22);
    border-color: var(--glow);
    color: var(--cream);
}

.lp-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 2px;
    grid-auto-rows: minmax(150px, 1fr);
}

.lp-card {
    background: rgba(245, 234, 214, 0.05);
    border: 1px solid rgba(245, 234, 214, 0.15);
    padding: 20px 20px 16px;
    position: relative;
    overflow: hidden;
    transition: background 0.35s ease, border-color 0.35s ease;
    display: flex;
    flex-direction: column;
    min-height: 150px;
}

.lp-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--sepia-light);
    transition: width 0.45s cubic-bezier(.16, 1, .3, 1);
}

.lp-card:hover {
    background: rgba(245, 234, 214, 0.12);
    border-color: rgba(240, 168, 75, 0.5);
}

.lp-card:hover::after {
    width: 100%;
}

.lp-card.featured {
    grid-row: span 2;
    background: rgba(245, 234, 214, 0.12);
    border-color: rgba(240, 168, 75, 0.4);
    min-height: 302px;
    justify-content: flex-end;
    padding: 28px 24px;
}

.lp-card.featured::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 18px;
    font-family: 'Libre Baskerville', serif;
    font-size: 160px;
    color: rgba(245, 234, 214, 0.14);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.lp-card.featured::after {
    background: var(--ember);
    height: 3px;
}

.lp-card-num {
    position: absolute;
    top: 16px;
    right: 16px;
    font-family: 'Libre Baskerville', serif;
    font-size: clamp(0.75rem, 0.9vw, 0.82rem);
    font-style: italic;
    color: rgba(245, 234, 214, 0.65);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.lp-cat-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Libre Baskerville', serif;
    font-size: clamp(0.75rem, 0.9vw, 0.82rem);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--sepia-light);
    background: rgba(201, 169, 110, 0.1);
    border: 1px solid rgba(201, 169, 110, 0.25);
    padding: 4px 10px;
    border-radius: 2px;
    margin-bottom: 10px;
    width: fit-content;
}

.lp-cat-icon {
    font-size: clamp(0.75rem, 0.9vw, 0.9rem);
}

.lp-card-title {
    font-family: 'Libre Baskerville', serif;
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: var(--cream);
    line-height: 1.2;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.lp-card.featured .lp-card-title {
    font-size: clamp(1.4rem, 2.5vw, 1.85rem);
    line-height: 1.08;
}

.lp-excerpt {
    font-family: 'Crimson Pro', serif;
    font-size: clamp(0.85rem, 1.2vw, 1rem);
    font-style: italic;
    color: rgba(245, 234, 214, 0.88);
    line-height: 1.4;
    flex: 1;
}

.lp-card.featured .lp-excerpt {
    font-size: clamp(0.9rem, 1.4vw, 1.05rem);
    max-width: 320px;
}

.lp-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(245, 234, 214, 0.15);
    gap: 8px;
}

.lp-author {
    font-family: 'Crimson Pro', serif;
    font-size: clamp(0.82rem, 1.1vw, 0.95rem);
    color: rgba(245, 234, 214, 0.80);
    letter-spacing: 0.04em;
}

.lp-author span {
    color: var(--cream);
}

.lp-date {
    font-family: 'Libre Baskerville', serif;
    font-size: clamp(0.75rem, 0.9vw, 0.82rem);
    color: rgba(245, 234, 214, 0.70);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.lp-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Libre Baskerville', serif;
    font-size: clamp(0.75rem, 0.9vw, 0.82rem);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ember);
    text-decoration: none;
    margin-top: 10px;
    transition: color 0.25s ease, gap 0.3s ease;
}

.lp-read-more::after {
    content: '→';
    font-size: clamp(0.82rem, 1.1vw, 0.95rem);
}

.lp-read-more:hover {
    color: var(--glow);
    gap: 14px;
}

/* ==================================================
   6) Categories Section
   ================================================== */

.categories-section {
    background: var(--warm-white);
    padding: clamp(48px, 8vw, 100px) 0;
    position: relative;
    overflow: hidden;
}

.categories-section::before {
    content: none;
    position: absolute;
    inset: 0;
    background: url('../images/bg.jpeg') center/cover no-repeat;
    opacity: 0.12;
}

.cat-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 clamp(16px, 5vw, 48px);
    position: relative;
    z-index: 1;
}

.cat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(12px, 2vw, 20px);
}

.cat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: clamp(24px, 3vw, 40px) clamp(16px, 2vw, 20px);
    border: 1px solid rgba(201, 169, 110, 0.35);
    border-radius: 4px;
    text-decoration: none;
    text-align: center;
    transition: background 0.3s, border-color 0.3s, transform 0.3s;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.cat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201, 169, 110, 0.12), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.cat-card:hover {
    background: var(--warm-white);
    border-color: rgba(212, 98, 42, 0.45);
    transform: translateY(-4px);
}

.cat-card:hover::before {
    opacity: 1;
}

.cat-icon {
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    line-height: 1;
    color: var(--ember);
    display: block;
}

.cat-name {
    font-family: 'Libre Baskerville', serif;
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    font-weight: 700;
    color: var(--ink);
    letter-spacing: 0.04em;
}

.cat-desc {
    font-family: 'Crimson Pro', serif;
    font-size: clamp(0.82rem, 1.2vw, 0.95rem);
    font-style: italic;
    color: #4a3520;
    line-height: 1.5;
}

/* ==================================================
   7) About Poet Section
   ================================================== */

.about-poet {
    background: var(--sepia-dark);
    padding: clamp(48px, 8vw, 100px) 0;
    overflow: hidden;
}

.ap-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 clamp(16px, 5vw, 48px);
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
}

.ap-img-frame {
    position: relative;
    display: inline-block;
}

.ap-photo {
    width: 100%;
    max-width: 380px;
    aspect-ratio: 4/5;
    object-fit: cover;
    display: block;
    border-radius: 2px;
    position: relative;
    z-index: 1;
    box-shadow: 0 20px 60px rgba(26, 18, 8, 0.18);
}

.ap-img-decor {
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 2px solid var(--sepia-light);
    border-radius: 2px;
    z-index: 0;
}

.ap-eyebrow {
    font-family: 'Crimson Pro', serif;
    font-size: clamp(0.78rem, 1vw, 0.9rem);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ember);
    margin-bottom: 12px;
}

.ap-name {
    font-family: 'Dancing Script', cursive;
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    color: var(--cream);
    line-height: 1;
    margin-bottom: 20px;
}

.ap-divider {
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--ember), var(--glow));
    margin-bottom: 24px;
}

.ap-bio {
    font-family: 'Crimson Pro', serif;
    font-size: clamp(1.05rem, 1.8vw, 1.2rem);
    line-height: 1.85;
    color: rgba(245, 234, 214, 0.90);
    margin-bottom: 18px;
}

.about-poet .btn-solid {
    background: var(--cream);
    border-color: var(--cream);
    color: var(--sepia-dark);
}

.about-poet .btn-solid:hover {
    background: var(--ember);
    border-color: var(--ember);
    color: var(--cream);
}

/* ==================================================
   8) Newsletter Section
   ================================================== */

.newsletter {
    background: var(--cream);
    padding: clamp(48px, 8vw, 100px) clamp(16px, 5vw, 48px);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--sepia-light), transparent);
}

.newsletter::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--sepia-light), transparent);
}

.nl-inner {
    max-width: 620px;
    margin: 0 auto;
    position: relative;
}

.nl-deco {
    position: absolute;
    font-size: 1.4rem;
    color: var(--sepia-light);
    top: 0;
    animation: spinStar 8s linear infinite;
}

.nl-deco--left {
    left: -40px;
}

.nl-deco--right {
    right: -40px;
    animation-direction: reverse;
}

@keyframes spinStar {
    to {
        transform: rotate(360deg);
    }
}

.nl-eyebrow {
    font-family: 'Crimson Pro', serif;
    font-size: clamp(0.78rem, 1vw, 0.9rem);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ember);
    margin-bottom: 14px;
}

.nl-title {
    font-family: 'Libre Baskerville', serif;
    font-size: clamp(1.5rem, 3.5vw, 2.8rem);
    color: var(--ink);
    margin-bottom: clamp(8px, 1.5vw, 16px);
    line-height: 1.25;
}

.nl-sub {
    font-family: 'Crimson Pro', serif;
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    font-style: italic;
    color: var(--sepia-mid);
    margin-bottom: 40px;
}

.nl-input-wrap {
    display: flex;
    gap: 0;
    max-width: 500px;
    margin: 0 auto 14px;
    border: 2px solid var(--ink);
}

.nl-input {
    flex: 1;
    padding: 15px 20px;
    font-family: 'Crimson Pro', serif;
    font-size: clamp(0.9rem, 1.3vw, 1rem);
    color: var(--ink);
    background: var(--warm-white);
    border: none;
    outline: none;
}

.nl-input::placeholder {
    color: var(--sepia-mid);
    font-style: italic;
}

.nl-btn {
    padding: 15px 28px;
    background: var(--ink);
    color: var(--cream);
    font-family: 'Libre Baskerville', serif;
    font-size: clamp(0.78rem, 1vw, 0.88rem);
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.25s;
}

.nl-btn:hover {
    background: var(--ember);
}

.nl-note {
    font-family: 'Crimson Pro', serif;
    font-size: clamp(0.78rem, 1vw, 0.9rem);
    font-style: italic;
    color: var(--sepia-mid);
}

.nl-success {
    font-family: 'Crimson Pro', serif;
    font-size: 1rem;
    color: #4a7c59;
    margin-top: 12px;
    font-style: italic;
}

/* ==================================================
   9) Index Page Responsive Rules
   ================================================== */

@media (max-width: 480px) {
    .hero-welcome {
        font-size: 3.5rem;
    }

    .hero-body {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .poem-card {
        padding: 24px;
    }
}

@media (max-width: 900px) {

    .hero+.featured-poems,
    .featured-poems+.latest-poems,
    .latest-poems+.categories-section,
    .categories-section+.about-poet,
    .about-poet+.newsletter,
    .newsletter+.site-footer {
        margin-top: 20px;
    }

    .latest-poems {
        height: auto;
        min-height: auto;
        padding: 60px 0;
    }

    .featured-poems {
        height: auto;
        min-height: auto;
        padding: 30px 20px;
    }

    .fp-container {
        height: auto;
    }

    .lp-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: minmax(220px, auto);
    }

    .lp-card.featured {
        grid-row: auto;
        min-height: 320px;
    }

    .lp-card.featured .lp-card-title {
        font-size: 1.8rem;
    }

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

    .ap-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .ap-image-col {
        display: flex;
        justify-content: center;
    }

    .ap-photo {
        max-width: 280px;
    }

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

    .fp-featured-card {
        grid-template-columns: 1fr;
        height: auto;
    }

    .fp-featured-content {
        padding: 25px 20px;
    }

    .fp-featured-image {
        height: 220px;
    }
}

@media (max-width: 600px) {

    .hero+.featured-poems,
    .featured-poems+.latest-poems,
    .latest-poems+.categories-section,
    .categories-section+.about-poet,
    .about-poet+.newsletter,
    .newsletter+.site-footer {
        margin-top: 14px;
    }

    .latest-poems {
        padding: 42px 0;
    }

    .featured-poems {
        padding: 20px 16px;
    }

    .lp-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }

    .lp-header {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 36px;
        padding-bottom: 18px;
    }

    .lp-header-right {
        text-align: left;
    }

    .lp-view-all-btn {
        height: 36px;
        padding: 0 14px;
    }

    .lp-card {
        min-height: 220px;
    }

    .lp-card.featured {
        min-height: 300px;
        padding: 34px 26px;
    }

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

    .nl-input-wrap {
        flex-direction: column;
        border: none;
    }

    .nl-input {
        border: 2px solid var(--ink);
    }

    .nl-btn {
        width: 100%;
        border: 2px solid var(--ink);
    }

    .featured-poems {
        padding: 20px 16px;
    }

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

    .fp-featured-card {
        grid-template-columns: 1fr;
        height: auto;
    }

    .fp-featured-content {
        padding: 20px 18px;
    }

    .fp-featured-image {
        height: 200px;
    }

    .fp-blog-image {
        height: 160px;
    }

    .fp-header {
        text-align: center;
        justify-content: center;
    }

    .fp-view-all-btn {
        width: 100%;
    }

    .nl-deco {
        display: none;
    }
}

@media (max-width: 420px) {
    .cat-grid {
        grid-template-columns: 1fr;
    }
}

/* ==================================================
   10) Home Redesign (hpx-*)
   ================================================== */

.hpx-home {
    background: var(--warm-white);
}

.hpx-shell {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 44px);
}

.hpx-kicker {
    font-family: 'Libre Baskerville', serif;
    font-size: clamp(0.68rem, 0.85vw, 0.78rem);
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ember);
    margin-bottom: 10px;
}

.hpx-title {
    font-family: 'Libre Baskerville', serif;
    font-size: clamp(1.9rem, 4vw, 3rem);
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin: 0;
}

.hpx-link {
    font-family: 'Crimson Pro', serif;
    font-size: clamp(0.88rem, 1.1vw, 1rem);
    font-weight: 600;
    color: var(--ink);
    text-decoration: none;
    border-bottom: 1px solid rgba(26, 18, 8, 0.5);
    padding-bottom: 2px;
    transition: color 0.25s, border-color 0.25s;
}

.hpx-link:hover {
    color: var(--ember);
    border-color: var(--ember);
}

.hpx-head {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hpx-head--row {
    flex-direction: row;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
}

.hpx-muted {
    font-family: 'Crimson Pro', serif;
    color: var(--sepia-mid);
    font-style: italic;
    font-size: clamp(0.95rem, 1.2vw, 1.05rem);
}

.hpx-showcase,
.hpx-latest,
.hpx-moods,
.hpx-story,
.hpx-news {
    padding: clamp(44px, 7vw, 96px) 0;
}

.hpx-showcase {
    background: linear-gradient(180deg, rgba(245, 234, 214, 0.5) 0%, rgba(253, 246, 236, 0.96) 100%);
}

.hpx-showcase-grid {
    margin-top: clamp(24px, 4vw, 42px);
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: clamp(16px, 2vw, 22px);
}

.hpx-lead {
    background: var(--warm-white);
    border: 1px solid rgba(26, 18, 8, 0.12);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(26, 18, 8, 0.08);
}

.hpx-lead-image-wrap {
    height: clamp(220px, 32vw, 380px);
    overflow: hidden;
}

.hpx-lead-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.hpx-lead:hover .hpx-lead-image {
    transform: scale(1.04);
}

.hpx-lead-content {
    padding: clamp(20px, 3vw, 32px);
}

.hpx-chip {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid rgba(212, 98, 42, 0.35);
    background: rgba(212, 98, 42, 0.1);
    color: var(--ember);
    font-family: 'Libre Baskerville', serif;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.hpx-lead-title {
    font-family: 'Libre Baskerville', serif;
    font-size: clamp(1.35rem, 2.5vw, 2rem);
    color: var(--ink);
    line-height: 1.15;
    margin-bottom: 10px;
}

.hpx-lead-copy {
    font-family: 'Crimson Pro', serif;
    font-size: clamp(0.95rem, 1.35vw, 1.08rem);
    line-height: 1.7;
    color: var(--sepia-mid);
    margin-bottom: 16px;
}

.hpx-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 16px;
    border-radius: 10px;
    text-decoration: none;
    color: var(--cream);
    background: var(--ink);
    font-family: 'Libre Baskerville', serif;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: background 0.25s ease;
}

.hpx-cta:hover {
    background: var(--ember);
}

.hpx-side-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hpx-mini {
    display: grid;
    grid-template-columns: 108px 1fr;
    gap: 12px;
    background: #fff;
    border: 1px solid rgba(26, 18, 8, 0.1);
    border-radius: 14px;
    padding: 10px;
    align-items: center;
}

.hpx-mini img {
    width: 100%;
    height: 96px;
    border-radius: 10px;
    object-fit: cover;
}

.hpx-mini-tag {
    display: inline-block;
    font-family: 'Libre Baskerville', serif;
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    color: var(--ember);
    text-transform: uppercase;
    margin-bottom: 3px;
}

.hpx-mini h4 {
    font-family: 'Libre Baskerville', serif;
    font-size: clamp(0.9rem, 1.2vw, 1rem);
    color: var(--ink);
    line-height: 1.28;
    margin: 0 0 4px;
}

.hpx-mini a {
    font-family: 'Crimson Pro', serif;
    text-decoration: none;
    color: var(--sepia-mid);
    font-weight: 600;
}

.hpx-latest {
    background: var(--cream);
    border-top: 1px solid rgba(26, 18, 8, 0.08);
    border-bottom: 1px solid rgba(26, 18, 8, 0.08);
}

.hpx-latest .hpx-shell {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.hpx-latest .hpx-head {
    grid-column: 1 / -1;
    margin-bottom: 6px;
}

.hpx-poem-card {
    background: #fff;
    border: 1px solid rgba(26, 18, 8, 0.12);
    border-radius: 14px;
    padding: clamp(16px, 2.4vw, 22px);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hpx-poem-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.hpx-poem-no {
    font-family: 'Libre Baskerville', serif;
    font-size: 0.72rem;
    color: rgba(26, 18, 8, 0.58);
    letter-spacing: 0.1em;
}

.hpx-poem-cat {
    padding: 3px 10px;
    border-radius: 999px;
    background: rgba(212, 98, 42, 0.12);
    color: var(--ember);
    font-family: 'Libre Baskerville', serif;
    font-size: 0.68rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.hpx-poem-date {
    font-family: 'Crimson Pro', serif;
    color: var(--sepia-mid);
    font-size: 0.9rem;
    margin-left: auto;
}

.hpx-poem-title {
    font-family: 'Libre Baskerville', serif;
    font-size: clamp(1.1rem, 1.6vw, 1.28rem);
    color: var(--ink);
    line-height: 1.2;
}

.hpx-poem-excerpt {
    font-family: 'Crimson Pro', serif;
    color: var(--sepia-mid);
    line-height: 1.65;
    font-size: clamp(0.95rem, 1.3vw, 1.04rem);
}

.hpx-poem-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 6px;
}

.hpx-poem-author {
    font-family: 'Crimson Pro', serif;
    font-style: italic;
    color: var(--sepia-mid);
}

.hpx-poem-link {
    text-decoration: none;
    font-family: 'Libre Baskerville', serif;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink);
}

.hpx-moods {
    background: var(--warm-white);
}

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

.hpx-mood {
    border: 1px solid rgba(26, 18, 8, 0.14);
    border-radius: 12px;
    min-height: 72px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    font-family: 'Libre Baskerville', serif;
    color: var(--ink);
    background: #fff;
    transition: transform 0.25s, border-color 0.25s, color 0.25s;
}

.hpx-mood span {
    color: var(--ember);
}

.hpx-mood:hover {
    transform: translateY(-2px);
    border-color: var(--ember);
    color: var(--ember);
}

.hpx-story {
    background: linear-gradient(180deg, #fff 0%, #fbf5eb 100%);
}

.hpx-story-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: clamp(18px, 3vw, 30px);
    align-items: stretch;
}

.hpx-story-image {
    overflow: hidden;
    border-radius: 16px;
    min-height: 320px;
}

.hpx-story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hpx-story-content {
    background: #fff;
    border: 1px solid rgba(26, 18, 8, 0.12);
    border-radius: 16px;
    padding: clamp(20px, 3vw, 32px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hpx-story-text {
    font-family: 'Crimson Pro', serif;
    font-size: clamp(0.98rem, 1.35vw, 1.08rem);
    line-height: 1.72;
    color: var(--sepia-mid);
    margin: 0 0 12px;
}

.hpx-news {
    background: var(--ink);
}

.hpx-news-wrap {
    background: rgba(245, 234, 214, 0.03);
    border: 1px solid rgba(245, 234, 214, 0.18);
    border-radius: 16px;
    padding: clamp(20px, 4vw, 36px);
}

.hpx-news .hpx-kicker,
.hpx-news .hpx-title {
    color: var(--cream);
}

.hpx-news .hpx-muted,
.hpx-note {
    color: rgba(245, 234, 214, 0.88);
}

.hpx-news-form {
    margin-top: 16px;
    display: flex;
    border: 1px solid rgba(245, 234, 214, 0.35);
    border-radius: 10px;
    overflow: hidden;
    background: rgba(245, 234, 214, 0.05);
}

.hpx-news-input {
    flex: 1;
    border: none;
    background: transparent;
    color: var(--cream);
    font-family: 'Crimson Pro', serif;
    padding: 12px 14px;
    outline: none;
}

.hpx-news-input::placeholder {
    color: rgba(245, 234, 214, 0.72);
}

.hpx-news-btn {
    border: none;
    background: var(--ember);
    color: var(--cream);
    padding: 12px 16px;
    font-family: 'Libre Baskerville', serif;
    font-size: 0.74rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
}

.hpx-note,
.hpx-success {
    font-family: 'Crimson Pro', serif;
    margin-top: 9px;
}

.hpx-success {
    color: #9ae29f;
}

@media (max-width: 980px) {

    .hpx-showcase-grid,
    .hpx-story-grid {
        grid-template-columns: 1fr;
    }

    .hpx-latest .hpx-shell {
        grid-template-columns: 1fr;
    }

    .hpx-head--row {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .hpx-mood-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hpx-news-form {
        flex-direction: column;
    }

    .hpx-news-btn {
        width: 100%;
    }

    .hpx-mini {
        grid-template-columns: 88px 1fr;
    }

    .hpx-mini img {
        height: 84px;
    }
}

@media (max-width: 440px) {
    .hpx-mood-grid {
        grid-template-columns: 1fr;
    }
}

/* ==================================================
   12) New Home Sections (except hero/nav/brand/footer)
   ================================================== */

.shell {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 60px);
}

.eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: var(--ember);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.eyebrow::before {
    content: '';
    display: block;
    width: 24px;
    height: 1px;
    background: currentColor;
    flex-shrink: 0;
}

.sec-title {
    font-family: 'Libre Baskerville', serif;
    font-size: clamp(1.9rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -.02em;
    color: var(--ink);
}

.sec-title em {
    font-style: italic;
    color: var(--glow);
}

.sec-title--lt {
    color: var(--cream);
}

.btn {
    font-family: 'Inter', sans-serif;
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    padding: 12px 28px;
    border-radius: 2px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all var(--transition);
}

.btn-dark {
    background: var(--ink);
    color: var(--cream);
}

.btn-dark:hover {
    background: var(--ember);
    transform: translateY(-2px);
}

.btn-outline {
    border: 1px solid rgba(250, 246, 239, .5);
    color: rgba(250, 246, 239, .95);
}

.btn-outline:hover {
    border-color: var(--glow);
    color: var(--glow);
    background: rgba(201, 151, 58, .07);
}

.tag {
    font-family: 'Inter', sans-serif;
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 1px;
}

.tag-ember {
    background: var(--ember);
    color: #fff;
}

.ticker {
    background: var(--ink);
    border-top: 2px solid var(--ember);
    border-bottom: 1px solid rgba(201, 151, 58, .12);
    overflow: hidden;
    padding: 10px 0;
    display: flex;
}

.ticker-track {
    display: flex;
    white-space: nowrap;
    animation: tickerMove 30s linear infinite;
}

.ticker-item {
    font-family: 'Inter', sans-serif;
    font-size: .65rem;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(245, 234, 214, .70);
    padding: 0 28px;
    display: inline-flex;
    align-items: center;
    gap: 18px;
}

.ticker-item strong {
    color: var(--glow);
    font-weight: 600;
}

.ticker-item::after {
    content: '✦';
    font-size: .45rem;
    color: var(--ember);
    opacity: .7;
}

.showcase {
    background: linear-gradient(180deg, rgba(255, 250, 244, 0.96) 0%, rgba(246, 239, 230, 0.92) 100%);
    padding: clamp(72px, 10vw, 116px) 0;
    min-height: calc(100vh - 56px);
}

.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: clamp(36px, 5vw, 56px);
}

.bento {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: 280px 280px;
    gap: 10px;
}

.bcell {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    cursor: pointer;
}

.bcell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s cubic-bezier(.16, 1, .3, 1);
}

.bcell:hover img {
    transform: scale(1.06);
}

.bcell-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(13, 10, 7, .05) 0%, rgba(13, 10, 7, .82) 100%);
}

.bcell-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: clamp(18px, 2.5vw, 28px);
    z-index: 2;
}

.bcell-meta {
    font-family: 'Inter', sans-serif;
    font-size: .62rem;
    letter-spacing: .14em;
    color: #fff;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.45);
    margin-bottom: 8px;
    display: flex;
    gap: 12px;
}

.bcell-title {
    font-family: 'Libre Baskerville', serif;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.55);
    line-height: 1.15;
    margin-bottom: 10px;
}

.bcell-excerpt {
    font-family: 'Crimson Pro', serif;
    font-style: italic;
    color: #fff;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
    line-height: 1.6;
    margin-bottom: 12px;
}

.bcell-read {
    font-family: 'Inter', sans-serif;
    font-size: .62rem;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--glow);
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: gap .3s;
}

.bcell-read::after {
    content: '→';
}

.bcell-read:hover {
    gap: 13px;
}

.bc1 {
    grid-column: 1/8;
    grid-row: 1/3;
}

.bc1 .bcell-title {
    font-size: clamp(1.3rem, 2.5vw, 2rem);
}

.bc1 .bcell-excerpt {
    display: block;
    max-width: 420px;
}

.bc2 {
    grid-column: 8/13;
    grid-row: 1/2;
}

.bc2 .bcell-title {
    font-size: clamp(.95rem, 1.6vw, 1.2rem);
}

.bc2 .bcell-excerpt {
    display: none;
}

.bc3 {
    grid-column: 8/10;
    grid-row: 2/3;
}

.bc4 {
    grid-column: 10/13;
    grid-row: 2/3;
}

.bc3 .bcell-title,
.bc4 .bcell-title {
    font-size: .95rem;
}

.bc3 .bcell-excerpt,
.bc4 .bcell-excerpt,
.bc3 .bcell-meta,
.bc4 .bcell-meta {
    display: none;
}

.latest {
    background: linear-gradient(180deg, #2b2018 0%, #1f1712 100%);
    padding: clamp(72px, 10vw, 116px) 0;
    position: relative;
    overflow: hidden;
}

.latest::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--ember), var(--glow), transparent);
}

.latest-ambient {
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Libre Baskerville', serif;
    font-size: 36vw;
    font-weight: 700;
    line-height: 1;
    color: rgba(250, 246, 239, .018);
    user-select: none;
    pointer-events: none;
    letter-spacing: -.08em;
}

.latest-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: clamp(32px, 5vw, 52px);
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(250, 246, 239, .07);
}

.latest-head .eyebrow {
    color: var(--glow);
}

.latest-head .eyebrow::before {
    background: var(--glow);
}

.poem-list {
    display: flex;
    flex-direction: column;
}

.poem-row {
    display: grid;
    grid-template-columns: 72px 56px 1fr auto;
    gap: clamp(18px, 3vw, 36px);
    align-items: start;
    padding: clamp(22px, 3vw, 32px) 0;
    border-bottom: 1px solid rgba(250, 246, 239, .06);
    position: relative;
    transition: background var(--transition);
}

.poem-row:hover {
    background: rgba(250, 246, 239, .025);
}

.poem-row::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: var(--ember);
    transition: width var(--transition);
}

.poem-row:hover::before {
    width: 2px;
}

.pr-thumb {
    width: 72px;
    height: 72px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background: rgba(107, 76, 42, .12);
}

.pr-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pr-thumb-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(107, 76, 42, .15), rgba(192, 96, 59, .1));
}

.pr-num {
    font-family: 'Libre Baskerville', serif;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1;
    color: rgba(250, 246, 239, .45);
    letter-spacing: -.04em;
    padding-top: 4px;
    user-select: none;
}

.pr-content {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.pr-top {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.pr-cat {
    font-family: 'Inter', sans-serif;
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--ember);
}

.pr-date {
    font-family: 'Inter', sans-serif;
    font-size: .6rem;
    letter-spacing: .1em;
    color: rgba(250, 246, 239, .60);
}

.pr-title {
    font-family: 'Libre Baskerville', serif;
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    font-weight: 700;
    color: var(--cream);
    line-height: 1.2;
}

.pr-title a,
.pr-title a:visited {
    color: inherit;
    text-decoration: none;
}

.pr-title a:hover {
    color: var(--glow);
}

.pr-excerpt {
    font-family: 'Crimson Pro', serif;
    font-style: italic;
    font-size: clamp(.9rem, 1.3vw, 1.02rem);
    line-height: 1.65;
    color: rgba(250, 246, 239, .78);
}

.pr-author {
    font-family: 'Inter', sans-serif;
    font-size: .65rem;
    letter-spacing: .08em;
    color: rgba(250, 246, 239, .65);
}

.pr-author strong {
    color: rgba(250, 246, 239, .88);
}

.pr-action {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
    gap: 8px;
    padding-top: 6px;
    flex-shrink: 0;
}

.pr-read {
    font-family: 'Inter', sans-serif;
    font-size: .62rem;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--glow);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    transition: color var(--transition), gap var(--transition);
}

.pr-read:visited {
    color: var(--glow);
    text-decoration: none;
}

.pr-read::after {
    content: '→';
}

.poem-row:hover .pr-read {
    color: var(--glow);
    gap: 10px;
}

.moods {
    background: linear-gradient(180deg, #fdf8f2 0%, #f4ebde 100%);
    padding: clamp(72px, 10vw, 116px) 0;
    overflow: hidden;
}

.moods-head {
    text-align: center;
    margin-bottom: clamp(40px, 6vw, 60px);
}

.moods-head .sec-title {
    margin: 10px 0 14px;
}

.moods-head p {
    font-family: 'Crimson Pro', serif;
    font-style: italic;
    color: var(--sepia-mid);
    font-size: clamp(.95rem, 1.5vw, 1.1rem);
}

.mood-strip {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: clamp(10px, 1.5vw, 16px);
    padding-bottom: 24px;
    margin-bottom: -12px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(201, 169, 110, 0.3) transparent;
}

.mood-strip::-webkit-scrollbar {
    height: 6px;
}
.mood-strip::-webkit-scrollbar-track {
    background: transparent;
}
.mood-strip::-webkit-scrollbar-thumb {
    background-color: rgba(201, 169, 110, 0.4);
    border-radius: 10px;
}

.mcard {
    flex: 0 0 clamp(160px, 22vw, 200px);
    scroll-snap-align: start;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    aspect-ratio: 2/3;
    cursor: pointer;
    color: #fff;
    text-decoration: none;
    transition: transform var(--transition), box-shadow var(--transition);
}

.mcard:visited,
.mcard:hover,
.mcard:focus,
.mcard:active {
    color: #fff;
    text-decoration: none;
}

.mcard:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 24px 80px rgba(13, 10, 7, .2);
}

.mcard-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform .7s cubic-bezier(.16, 1, .3, 1);
    filter: brightness(.72) saturate(.88);
}

.mcard:hover .mcard-bg {
    transform: scale(1.1);
}

.mcard-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(13, 10, 7, .08) 0%, rgba(13, 10, 7, .78) 100%);
}

.mcard-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.mcard-icon {
    font-size: 1.6rem;
    line-height: 1;
    color: var(--glow);
}

.mcard-name {
    font-family: 'Libre Baskerville', serif;
    font-weight: 700;
    font-size: clamp(.85rem, 1.3vw, 1rem);
    color: #fff;
}

.mcard-count {
    font-family: 'Inter', sans-serif;
    font-size: .58rem;
    letter-spacing: .16em;
    color: rgba(255, 255, 255, .75);
}

.pull {
    background: linear-gradient(180deg, #241b15 0%, #1c1510 100%);
    padding: clamp(52px, 8vw, 88px) 0;
    position: relative;
    overflow: hidden;
}

.pull-deco {
    position: absolute;
    top: -60px;
    left: -40px;
    font-family: 'Libre Baskerville', serif;
    font-size: 40rem;
    font-weight: 700;
    line-height: .7;
    color: rgba(250, 246, 239, .025);
    user-select: none;
    pointer-events: none;
}

.pull-inner {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 60px);
    text-align: center;
    position: relative;
    z-index: 1;
}

.pull-rule {
    width: 56px;
    height: 2px;
    background: linear-gradient(90deg, var(--ember), var(--glow));
    margin: 0 auto 28px;
}

.pull-text {
    font-family: 'Libre Baskerville', serif;
    font-style: italic;
    font-size: clamp(1.4rem, 3.2vw, 2.4rem);
    font-weight: 400;
    line-height: 1.4;
    color: rgba(250, 246, 239, .95);
    margin-bottom: 22px;
}

.pull-attr {
    font-family: 'Inter', sans-serif;
    font-size: .65rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgba(250, 246, 239, .62);
}

.founder {
    display: grid;
    grid-template-columns: 5fr 7fr;
    min-height: 600px;
    background: #fff6eb;
    overflow-x: hidden;
}

.founder-visual {
    position: relative;
    overflow: hidden;
    background: #1c130a;
}

.founder-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: sepia(.2) brightness(.85);
    transition: transform .9s cubic-bezier(.16, 1, .3, 1);
}

.founder-visual:hover img {
    transform: scale(1.04);
}

.founder-visual-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px;
    background: linear-gradient(transparent, rgba(13, 10, 7, .88));
    z-index: 2;
}

.fvl-quote {
    font-family: 'Crimson Pro', serif;
    font-style: italic;
    font-size: clamp(.9rem, 1.4vw, 1rem);
    line-height: 1.65;
    color: rgba(250, 246, 239, .88);
    border-left: 3px solid var(--glow);
    padding-left: 16px;
}

.founder-text {
    background: var(--warm-white);
    padding: clamp(52px, 7vw, 88px) clamp(36px, 5.5vw, 72px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 1px solid rgba(26, 18, 8, .12);
}

.founder-text .eyebrow {
    color: var(--ember);
    margin-bottom: 18px;
}

.founder-text .eyebrow::before {
    background: var(--ember);
}

.founder-name {
    font-family: 'Libre Baskerville', serif;
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 700;
    line-height: .95;
    letter-spacing: -.03em;
    color: var(--ink);
    margin-bottom: 6px;
}

.founder-name em {
    display: block;
    font-style: italic;
    color: var(--sepia-mid);
    font-weight: 400;
    font-size: .75em;
}

.founder-rule {
    width: 52px;
    height: 2px;
    background: linear-gradient(90deg, var(--ember), var(--glow));
    margin: 22px 0 26px;
}

.founder-bio {
    font-family: 'Crimson Pro', serif;
    font-size: clamp(.95rem, 1.55vw, 1.1rem);
    line-height: 1.9;
    color: var(--sepia-mid);
    margin-bottom: 14px;
}

.founder-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--ink);
    margin-top: 14px;
    transition: color var(--transition);
}

.founder-link:hover {
    color: var(--ember);
}

.founder-link::after {
    content: '→';
    transition: transform var(--transition);
}

.founder-link:hover::after {
    transform: translateX(6px);
}

.newsletter {
    background: linear-gradient(180deg, #fff7ee 0%, #f5ebdf 100%);
    padding: clamp(88px, 12vw, 136px) 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(26, 18, 8, .08);
}

.newsletter::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='.035'/%3E%3C/svg%3E");
    opacity: .18;
    z-index: 0;
}

.nl-ambient {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Libre Baskerville', serif;
    font-size: clamp(10rem, 20vw, 18rem);
    font-weight: 700;
    font-style: italic;
    color: rgba(26, 18, 8, .04);
    white-space: nowrap;
    user-select: none;
    pointer-events: none;
    letter-spacing: -.04em;
}

.nl-inner {
    max-width: 640px;
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 60px);
    text-align: center;
    position: relative;
    z-index: 1;
}

.nl-inner .eyebrow {
    justify-content: center;
    color: var(--ember);
    margin-bottom: 18px;
}

.nl-inner .eyebrow::before {
    display: none;
}

.nl-title {
    font-family: 'Libre Baskerville', serif;
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -.025em;
    color: var(--ink);
    margin-bottom: 14px;
}

.nl-title em {
    font-style: italic;
    color: var(--sepia-mid);
}

.nl-sub {
    font-family: 'Crimson Pro', serif;
    font-style: italic;
    font-size: clamp(1rem, 1.6vw, 1.15rem);
    line-height: 1.7;
    color: var(--sepia-mid);
    margin-bottom: 44px;
}

.nl-form-wrap {
    position: relative;
    max-width: 480px;
    margin: 0 auto 14px;
}

.nl-input {
    width: 100%;
    padding: 17px 140px 17px 22px;
    font-family: 'Crimson Pro', serif;
    font-size: 1.05rem;
    color: var(--ink);
    background: #fff;
    border: 1px solid rgba(26, 18, 8, .18);
    border-radius: 3px;
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.nl-input::placeholder {
    color: rgba(26, 18, 8, .45);
    font-style: italic;
}

.nl-input:focus {
    border-color: var(--glow);
    box-shadow: 0 0 0 3px rgba(201, 151, 58, .12);
}

.nl-submit {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    padding: 0 22px;
    background: var(--ember);
    color: #fff;
    border: none;
    border-radius: 0 3px 3px 0;
    font-family: 'Inter', sans-serif;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background var(--transition);
}

.nl-submit:hover {
    background: #a83615;
}

.nl-note {
    font-family: 'Inter', sans-serif;
    font-size: .62rem;
    letter-spacing: .1em;
    color: rgba(26, 18, 8, .58);
    text-transform: uppercase;
}

.nl-success {
    display: none;
    font-family: 'Crimson Pro', serif;
    font-style: italic;
    font-size: 1rem;
    color: var(--glow);
    margin-top: 12px;
}

@keyframes tickerMove {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

@media (max-width: 1024px) {
    .bento {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .bc1 {
        grid-column: 1/3;
        grid-row: auto;
    }

    .bc2,
    .bc3,
    .bc4 {
        grid-column: span 1;
        grid-row: auto;
    }



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

    .founder-visual {
        min-height: 380px;
    }
}

@media (max-width: 768px) {
    .bento {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .bc1,
    .bc2,
    .bc3,
    .bc4 {
        grid-column: 1;
        grid-row: auto;
    }

    .bc1 {
        height: 420px;
    }

    .bc2 {
        height: 260px;
    }

    .bc3,
    .bc4 {
        height: 200px;
    }

    .poem-row {
        grid-template-columns: 56px 1fr;
    }

    .pr-thumb {
        display: none;
    }

    .pr-action {
        display: none;
    }


}

@media (max-width: 480px) {


    .nl-input {
        padding-right: 100px;
    }

    .nl-submit {
        font-size: .6rem;
        padding: 0 14px;
    }
}