/* Salt Paper — editorial base styles */

:root {
    --paper: #F7F1E4;
    --ink: #1A1714;
    --signal: #C45C3E;
    --rule: #D8D0C4;
    --caption: #6B645C;
    --body-soft: #4a443b;
}

html {
    background: var(--paper);
}

body {
    background: var(--paper);
    color: var(--ink);
    font-family: Georgia, Cambria, "Times New Roman", serif;
    -webkit-font-smoothing: antialiased;
    margin: 0;
}

a {
    color: var(--ink);
}

/* ---------- Shared ---------- */

.section-label {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 0.66rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--signal);
    display: inline-block;
}

.caption {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 0.78rem;
    line-height: 1.6;
    color: var(--caption);
    margin: 0 0 0.5rem;
}

.caption-mt {
    margin-top: 1rem;
}

.river-meta {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--caption);
    margin: 0;
}

.page-shell {
    max-width: 76rem;
    margin: 0 auto;
    padding: 0 1.5rem 4rem;
}

.page-title {
    font-family: Georgia, Cambria, "Times New Roman", serif;
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    line-height: 1.05;
    font-weight: 400;
    margin: 2.5rem 0 0.75rem;
}

.page-dek {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--body-soft);
    max-width: 40rem;
    margin: 0 0 2.5rem;
}

/* ---------- Header ---------- */

.site-header {
    border-bottom: 1px solid var(--rule);
    padding: 1.25rem 1.5rem 0;
}

.site-header-inner {
    max-width: 76rem;
    margin: 0 auto;
}

.site-header-top {
    text-align: center;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 0.66rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--caption);
    margin: 0 0 0.9rem;
}

.site-header-brand {
    text-align: center;
    font-family: Georgia, Cambria, "Times New Roman", serif;
    font-size: 1.5rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin: 0 0 0.5rem;
}

.site-header-issue {
    text-align: center;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--caption);
    margin: 0 0 1rem;
}

.site-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.4rem 1.75rem;
    border-top: 1px solid var(--rule);
    padding: 0.85rem 0;
}

.nav-link {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink);
    text-decoration: none;
    padding: 0.2rem 0;
}

.nav-link:hover {
    text-decoration: underline;
    text-underline-offset: 0.3em;
}

/* ---------- Cover (home) ---------- */

.home-cover {
    border-bottom: 1px solid var(--rule);
}

.cover-masthead {
    text-align: center;
    padding: 4.5rem 1.25rem 3rem;
}

.cover-masthead-title {
    font-family: Georgia, Cambria, "Times New Roman", serif;
    font-size: clamp(3.2rem, 10vw, 6.75rem);
    line-height: 0.95;
    letter-spacing: 0.08em;
    font-weight: 400;
    text-transform: uppercase;
    margin: 0;
}

.cover-masthead-issue {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 0.78rem;
    letter-spacing: 0.34em;
    text-transform: uppercase;
    color: var(--caption);
    margin: 1.4rem 0 0;
}

.cover-masthead-rule {
    width: 3rem;
    height: 1px;
    background: var(--ink);
    opacity: 0.8;
    margin: 2rem auto 0;
}

.cover-crop {
    height: min(76vh, 720px);
    overflow: hidden;
}

.cover-crop img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 36%;
    display: block;
}

.cover-caption-col {
    max-width: 26rem;
    margin: 0 auto;
    padding: 1.5rem 1.5rem 0;
}

/* ---------- Story river (home) ---------- */

.story-river {
    max-width: 76rem;
    margin: 0 auto;
    padding: 0 1.5rem 3rem;
}

.river-rule {
    height: 1px;
    background: var(--ink);
    opacity: 0.8;
    margin: 2.5rem 0 0;
}

.river-lead {
    padding: 2.75rem 0;
    border-bottom: 1px solid var(--rule);
    max-width: 54rem;
}

.river-lead-title {
    font-family: Georgia, Cambria, "Times New Roman", serif;
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    line-height: 1.12;
    font-weight: 400;
    margin: 0.9rem 0;
}

.river-lead-title a {
    color: var(--ink);
    text-decoration: none;
}

.river-lead-title a:hover {
    text-decoration: underline;
    text-underline-offset: 0.18em;
}

.river-lead-dek {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--body-soft);
    max-width: 42rem;
    margin: 0 0 1rem;
}

.river-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    border-bottom: 1px solid var(--rule);
}

.river-item {
    grid-column: span 4;
    padding: 2rem 1.75rem 2.5rem;
    border-right: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
}

.river-item:nth-child(3n) {
    border-right: none;
}

.river-item-title {
    font-family: Georgia, Cambria, "Times New Roman", serif;
    font-size: 1.35rem;
    line-height: 1.25;
    font-weight: 400;
    margin: 0.7rem 0 0.6rem;
}

.river-item-title a {
    color: var(--ink);
    text-decoration: none;
}

.river-item-title a:hover {
    text-decoration: underline;
    text-underline-offset: 0.18em;
}

.river-item-dek {
    font-size: 0.92rem;
    line-height: 1.55;
    color: var(--body-soft);
    margin: 0 0 1rem;
}

/* ---------- Magazine ---------- */

.magazine-issue {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 3rem;
    border-bottom: 1px solid var(--rule);
    padding: 3rem 0;
}

.magazine-issue-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4 / 3;
    display: block;
}

.magazine-issue-title {
    font-family: Georgia, Cambria, "Times New Roman", serif;
    font-size: 2.4rem;
    line-height: 1.1;
    font-weight: 400;
    margin: 1rem 0;
}

.magazine-issue-dek {
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--body-soft);
    margin: 0 0 1.25rem;
}

.index-heading {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--caption);
    margin: 3rem 0 0;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid var(--rule);
}

.index-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.index-item {
    display: grid;
    grid-template-columns: 10rem 1fr;
    column-gap: 2.5rem;
    padding: 1.6rem 0;
    border-bottom: 1px solid var(--rule);
}

.index-item-title {
    font-family: Georgia, Cambria, "Times New Roman", serif;
    font-size: 1.5rem;
    line-height: 1.2;
    font-weight: 400;
    margin: 0 0 0.4rem;
}

.index-item-title a {
    color: var(--ink);
    text-decoration: none;
}

.index-item-title a:hover {
    text-decoration: underline;
    text-underline-offset: 0.18em;
}

.index-item-dek {
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--body-soft);
    margin: 0 0 0.6rem;
}

/* ---------- Article detail ---------- */

.article-detail {
    max-width: 56rem;
    margin: 0 auto;
    padding: 3.5rem 1.5rem 4rem;
}

.article-detail-title {
    font-family: Georgia, Cambria, "Times New Roman", serif;
    font-size: clamp(2.4rem, 5.5vw, 3.8rem);
    line-height: 1.08;
    font-weight: 400;
    margin: 1rem 0;
}

.article-detail-dek {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--body-soft);
    max-width: 38rem;
    margin: 0 0 1.4rem;
}

.article-detail-hero {
    margin: 2.5rem 0 0.9rem;
}

.article-detail-hero img {
    width: 100%;
    max-height: 62vh;
    object-fit: cover;
    object-position: 50% 38%;
    display: block;
}

.article-body {
    margin-top: 2.25rem;
}

.article-body p {
    font-size: 1.12rem;
    line-height: 1.8;
    margin: 0 0 1.6rem;
    max-width: 44rem;
}

/* ---------- Section / contributors / newsletter ---------- */

.section-index-header {
    border-bottom: 1px solid var(--rule);
    padding-bottom: 2rem;
}

.contributors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--rule);
    border-left: 1px solid var(--rule);
}

.contributor {
    padding: 2rem 1.75rem 2.5rem;
    border-right: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
}

.contributor-photo {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    display: block;
    margin-bottom: 1.25rem;
}

.contributor-name {
    font-family: Georgia, Cambria, "Times New Roman", serif;
    font-size: 1.35rem;
    font-weight: 400;
    margin: 0 0 0.35rem;
}

.contributor-bio {
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--body-soft);
    margin: 0.9rem 0 0;
}

.newsletter-panel {
    max-width: 40rem;
    border-top: 1px solid var(--ink);
    padding-top: 2.5rem;
    margin-top: 2.5rem;
}

.newsletter-mailto {
    display: inline-block;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--paper);
    background: var(--ink);
    padding: 0.85rem 1.6rem;
    text-decoration: none;
    margin-top: 1.25rem;
}

.newsletter-mailto:hover {
    opacity: 0.85;
}

/* ---------- Footer ---------- */

.site-footer {
    border-top: 1px solid var(--rule);
    padding: 2.5rem 1.5rem 3rem;
}

.site-footer-inner {
    max-width: 76rem;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
}

.footer-brand {
    font-family: Georgia, Cambria, "Times New Roman", serif;
    font-size: 1.4rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    margin: 0 0 0.4rem;
}

.footer-note {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--body-soft);
    max-width: 26rem;
    margin: 0;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem 1.5rem;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 0.74rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.footer-nav a {
    color: var(--ink);
    text-decoration: none;
}

.footer-nav a:hover {
    text-decoration: underline;
    text-underline-offset: 0.3em;
}

.footer-copy {
    grid-column: 1 / -1;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    color: var(--caption);
    margin: 1.5rem 0 0;
    border-top: 1px solid var(--rule);
    padding-top: 1.25rem;
}

/* ---------- Responsive ---------- */

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

    .river-item {
        grid-column: span 1;
        border-right: none;
    }

    .cover-crop {
        height: 56vh;
    }
}

@media (max-width: 800px) {
    .magazine-issue {
        grid-template-columns: 1fr;
    }

    .index-item {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

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

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

    .footer-copy {
        grid-column: 1;
    }
}
