:root {
    --green: #0f3425;
    --green-2: #163e2c;
    --red: #8f1f1f;
    --orange: #f15a24;
    --cyan: #97cfc3;
    --tan: #c8a76f;
    --purple: #dcc7f2;
    --black: #09110d;
    --paper: #f4ede2;
    --line: rgba(200, 167, 111, 0.24);
    --line-strong: rgba(241, 90, 36, 0.6);
    --text-soft: rgba(244, 237, 226, 0.78);
    --max: 1320px;
    --radius: 0;
    --shadow: none;
}

* { box-sizing: border-box; }
html { font-size: 100%; }
body {
    margin: 0;
    background: var(--green);
    color: var(--paper);
    font-family: "Barlow", sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

a {
    color: inherit;
    text-decoration: none;
}
img {
    display: block;
    max-width: 100%;
    height: auto;
}
figure { margin: 0; }

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
}

.container {
    width: min(calc(100% - 2.5rem), var(--max));
    margin-inline: auto;
}
.zone { padding: 1.5rem 0; }

.header-rule-top {
    height: 6px;
    background: repeating-linear-gradient(90deg, var(--orange) 0px, var(--orange) 80px, var(--red) 80px, var(--red) 140px);
}
.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(15, 52, 37, 0.97);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(151, 207, 195, 0.12);
}
.site-header__inner {
    display: grid;
    gap: 1.5rem;
    padding: 1.15rem 0 1.05rem;
}
.site-branding {
    display: grid;
    gap: 0.5rem;
}
.site-kicker,
.section-label,
.post-card__tag,
.article-kicker,
.subscribe-box__eyebrow,
.cta-eyebrow,
.nav a,
.site-footer .nav a,
.access-pill {
    font-family: "Barlow Condensed", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.18em;
}
.site-kicker {
    margin: 0;
    color: var(--cyan);
    font-size: 0.78rem;
    font-weight: 700;
}
.site-logo {
    max-width: min(40rem, 100%);
    width: auto;
    max-height: 4.85rem;
    object-fit: contain;
}
.site-title-fallback {
    font-family: "Playfair Display", serif;
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 900;
    color: var(--orange);
}
.site-nav-wrap {
    display: grid;
    gap: 1rem;
    align-items: center;
}
.nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.25rem;
    list-style: none;
    padding: 0;
    margin: 0;
}
.nav a {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--paper);
    opacity: 0.9;
}
.nav-current a,
.nav a:hover,
.section-link,
.story-link,
.post-card__title a:hover,
.feature-story__title a:hover {
    color: var(--orange);
}
.site-nav-actions {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    flex-wrap: wrap;
}
.site-monogram {
    width: 2.4rem;
    height: 2.4rem;
    object-fit: contain;
}
.nav-signin {
    font-size: 0.88rem;
    color: var(--paper);
    opacity: 0.8;
}
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.75rem;
    padding: 0.8rem 1.15rem;
    border: 1px solid var(--line-strong);
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-size: 0.82rem;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.button--small { min-height: 2.5rem; padding-inline: 1rem; }
.button--block { width: 100%; }
.button--primary {
    background: var(--orange);
    color: var(--black);
    border-color: var(--orange);
}
.button--primary:hover { background: var(--paper); border-color: var(--paper); }
.button--ghost {
    background: transparent;
    color: var(--paper);
}
.button--ghost:hover { background: rgba(151, 207, 195, 0.08); border-color: var(--cyan); }

.tagline-band {
    background: var(--cyan);
    color: var(--green);
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    padding: 0.9rem 1rem;
    margin-bottom: 1.4rem;
    border-left: 6px solid var(--orange);
}
.hero-grid {
    display: grid;
    gap: 1.5rem;
}
.feature-story {
    display: grid;
    gap: 1rem;
    align-items: stretch;
}
.feature-story__image {
    aspect-ratio: 3 / 2;
    width: 100%;
    object-fit: cover;
    border: 1px solid var(--line);
}
.feature-story__content,
.about-panel {
    border: 1px solid var(--line);
    padding: 1.1rem;
    background: rgba(0, 0, 0, 0.12);
}
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    margin: 0 0 1rem;
    color: var(--cyan);
    font-weight: 700;
    font-size: 0.8rem;
}
.section-label::before {
    content: "";
    width: 2rem;
    height: 1px;
    background: currentColor;
    opacity: 0.7;
}
.section-label--muted { color: var(--tan); }
.feature-story__title,
.about-panel__title,
.archive-title,
.article-title,
.subscribe-band__title {
    font-family: "Playfair Display", serif;
    line-height: 0.96;
    letter-spacing: -0.02em;
}
.feature-story__title {
    margin: 0 0 1rem;
    color: var(--paper);
    font-size: clamp(2.25rem, 6vw, 4.9rem);
}
.feature-story__excerpt,
.about-panel__copy,
.subscribe-band__copy,
.article-excerpt,
.post-card__meta,
.article-byline,
.gh-content,
.site-footer__copy,
.site-footer__note {
    color: var(--text-soft);
}
.feature-story__excerpt,
.about-panel__copy { font-size: 1.04rem; max-width: 34rem; }
.feature-story__meta,
.article-byline,
.post-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem 1rem;
    font-size: 0.95rem;
}
.feature-story__footer,
.post-card__row,
.article-meta-row,
.section-head,
.subscribe-band__inner,
.site-footer__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.story-link,
.section-link {
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.85rem;
}
.access-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2rem;
    padding: 0.2rem 0.65rem;
    border: 1px solid currentColor;
    font-size: 0.72rem;
    font-weight: 800;
}
.access-pill--public { color: var(--cyan); }
.access-pill--members { color: var(--tan); }
.access-pill--paid { color: var(--orange); }

.about-panel {
    display: grid;
    gap: 1.2rem;
}
.about-panel__title {
    margin: 0 0 1rem;
    font-size: clamp(1.95rem, 5vw, 3rem);
    color: var(--orange);
}
.subscribe-box {
    position: relative;
    padding: 1.6rem 1rem 1rem;
    border: 1px solid var(--line-strong);
    background: rgba(0, 0, 0, 0.18);
}
.subscribe-box__monogram {
    width: 3rem;
    height: 3rem;
    object-fit: contain;
    position: absolute;
    top: 0;
    left: 1rem;
    transform: translateY(-50%);
    background: var(--green);
    padding: 0.2rem;
}
.subscribe-box__eyebrow {
    margin: 0 0 0.9rem;
    color: var(--tan);
    font-size: 0.76rem;
    font-weight: 800;
}
.subscribe-box__title {
    margin: 0 0 0.7rem;
    font-family: "Playfair Display", serif;
    font-size: 1.45rem;
}
.subscribe-box__copy { margin: 0 0 1rem; }
.subscribe-box__actions {
    display: grid;
    gap: 0.7rem;
}

.marquee-strip {
    overflow: hidden;
    border-top: 3px solid var(--red);
    border-bottom: 3px solid var(--red);
    background: var(--cyan);
}
.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 28s linear infinite;
}
.marquee-group {
    display: flex;
    align-items: center;
    padding: 0.9rem 0;
    white-space: nowrap;
}
.marquee-item,
.marquee-sep {
    font-family: "Barlow Condensed", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--red);
    font-weight: 800;
    font-size: 0.9rem;
}
.marquee-item { margin-right: 1rem; }
.marquee-sep { margin-right: 1rem; opacity: 0.85; }
@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.section-head {
    margin-bottom: 1.2rem;
    align-items: end;
}
.card-grid {
    display: grid;
    gap: 1rem;
}
.card-grid--three { grid-template-columns: 1fr; }
.post-card {
    border: 1px solid var(--line);
    background: rgba(0, 0, 0, 0.08);
}
.post-card__image {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    border-bottom: 1px solid var(--line);
}
.post-card__content { padding: 1rem; }
.post-card__tag {
    margin: 0;
    color: var(--cyan);
    font-size: 0.76rem;
    font-weight: 800;
}
.post-card__title {
    margin: 0.8rem 0 0.75rem;
    font-family: "Playfair Display", serif;
    font-size: clamp(1.4rem, 3vw, 2.1rem);
    line-height: 1.05;
}
.post-card__meta {
    margin: 0;
    font-size: 0.95rem;
}
.empty-state {
    color: var(--text-soft);
    border: 1px solid var(--line);
    padding: 1rem;
}

.subscribe-band__inner {
    border: 1px solid var(--line-strong);
    background: linear-gradient(180deg, rgba(143, 31, 31, 0.95), rgba(98, 20, 20, 0.92));
    padding: 1.5rem;
}
.subscribe-band__title {
    margin: 0 0 0.5rem;
    font-size: clamp(2rem, 4vw, 3.25rem);
}
.subscribe-band__copy {
    margin: 0;
    max-width: 40rem;
    font-size: 1rem;
}
.subscribe-band__actions {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.article-header__container,
.article-content__container {
    max-width: 920px;
}
.article-meta-row { margin-bottom: 1rem; }
.article-kicker a {
    color: var(--cyan);
    font-size: 0.8rem;
    font-weight: 800;
}
.article-title {
    margin: 0 0 1rem;
    font-size: clamp(2.4rem, 7vw, 5.6rem);
}
.article-excerpt {
    margin: 0 0 1rem;
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    max-width: 48rem;
}
.article-byline { margin-bottom: 0.2rem; }
.article-image-wrap { margin-top: 1.2rem; }
.article-image img {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    border: 1px solid var(--line);
}
.gh-content {
    font-size: 1.15rem;
}
.gh-content > * { max-width: 100%; }
.gh-content a {
    color: var(--cyan);
    text-decoration: underline;
    text-underline-offset: 0.15em;
}
.gh-content blockquote {
    margin: 2rem 0;
    padding: 0 0 0 1.2rem;
    border-left: 3px solid var(--orange);
    font-family: "Playfair Display", serif;
    font-size: 1.5rem;
    line-height: 1.35;
    color: var(--paper);
}
.gh-content h2,
.gh-content h3,
.gh-content h4 {
    font-family: "Playfair Display", serif;
    color: var(--paper);
    line-height: 1.1;
    margin-top: 2.4rem;
    margin-bottom: 0.9rem;
}
.gh-content h2 { font-size: clamp(2rem, 4vw, 3rem); }
.gh-content h3 { font-size: clamp(1.55rem, 3vw, 2.2rem); }
.gh-content img,
.gh-content .kg-image,
.gh-content video,
.gh-content iframe {
    max-width: 100%;
    height: auto;
}
.gh-content .kg-width-wide { width: min(100%, 1160px); }
.gh-content .kg-width-full { width: 100vw; margin-left: 50%; transform: translateX(-50%); }
.gh-content .kg-card-hascaption figcaption,
.gh-content figcaption {
    color: rgba(244, 237, 226, 0.62);
    font-size: 0.92rem;
    text-align: center;
    margin-top: 0.55rem;
}
.pagination-wrap { margin-top: 1.5rem; }
.pagination {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}
.pagination a {
    color: var(--orange);
    font-family: "Barlow Condensed", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 800;
}

.site-footer {
    border-top: 1px solid var(--line);
    background: var(--black);
}
.site-footer__inner {
    padding-block: 1.5rem 2rem;
}
.site-footer__brand,
.site-footer__meta {
    display: grid;
    gap: 0.75rem;
}
.site-logo--footer { max-height: 3rem; }
.site-footer__copy,
.site-footer__note {
    font-size: 0.88rem;
    margin: 0;
}

@media (min-width: 760px) {
    .site-header__inner {
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
    }
    .card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .card-grid--three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .subscribe-box__actions { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 980px) {
    .hero-grid {
        grid-template-columns: minmax(0, 1.7fr) minmax(320px, 0.95fr);
        align-items: start;
    }
    .feature-story {
        grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
        gap: 1.4rem;
    }
    .card-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (min-width: 1200px) {
    .card-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
