/* ============================================================
   Night Frame — a magazine of nightlife culture
   Palette: club #0D0D12 · neon violet #7A5CFF · smoke #B8B4C0 · warm #E8C39A
   Composition DNA: dark mosaic of night stills; lead feature two-column
   ============================================================ */

:root {
    --club: #0D0D12;
    --club-2: #13131A;
    --club-3: #191922;
    --neon: #7A5CFF;
    --smoke: #B8B4C0;
    --warm: #E8C39A;
    --white: #F4F2F7;
    --line: rgba(184, 180, 192, 0.16);
    --line-soft: rgba(184, 180, 192, 0.09);
    --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
    --font-ui: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

html {
    color-scheme: dark;
    scroll-behavior: smooth;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: var(--club);
    color: var(--smoke);
    font-family: var(--font-ui);
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img {
    display: block;
    max-width: 100%;
}

.nf-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

::selection {
    background: var(--neon);
    color: #0D0D12;
}

:focus-visible {
    outline: 2px solid var(--neon);
    outline-offset: 3px;
}

#nf-main {
    min-height: 60vh;
}

/* ---------- type helpers ---------- */

.nf-eyebrow {
    margin: 0 0 1rem;
    font-family: var(--font-ui);
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--neon);
}

.nf-eyebrow--warm {
    color: var(--warm);
}

.nf-section-label {
    margin: 0 0 1.25rem;
    font-family: var(--font-ui);
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--smoke);
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.nf-section-label::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--line);
}

/* ---------- site header ---------- */

.nf-header {
    position: sticky;
    top: 0;
    z-index: 60;
    background: rgba(13, 13, 18, 0.97);
    border-bottom: 1px solid var(--line);
}

.nf-header__inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 4.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.nf-brand {
    display: flex;
    align-items: baseline;
    gap: 0.9rem;
    white-space: nowrap;
}

.nf-brand__wordmark {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    color: var(--white);
}

.nf-brand__wordmark--lg {
    font-size: 1.75rem;
}

.nf-brand__issue {
    font-family: var(--font-ui);
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--neon);
}

.nf-nav {
    display: flex;
    align-items: center;
    gap: 1.6rem;
}

.nf-nav__link {
    font-family: var(--font-ui);
    font-size: 0.71875rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--smoke);
    transition: color 180ms var(--ease-out);
}

.nf-nav__link:hover {
    color: var(--white);
}

.nf-nav__link--cta {
    color: var(--club);
    background: var(--neon);
    padding: 0.5rem 1rem;
    border-radius: 2px;
}

.nf-nav__link--cta:hover {
    background: var(--warm);
    color: var(--club);
}

.nf-nav__sep {
    width: 1px;
    height: 1.1rem;
    background: var(--line);
}

.nf-nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    background: none;
    border: 0;
    cursor: pointer;
}

.nf-nav-toggle__bar {
    width: 1.4rem;
    height: 2px;
    background: var(--white);
    transition: transform 200ms var(--ease-out);
}

/* ---------- hero (cover + lead story) ---------- */

.nf-hero {
    position: relative;
    min-height: min(88vh, 880px);
    overflow: hidden;
    border-bottom: 1px solid var(--line);
    background: var(--club-2);
}

.nf-hero__imgwrap {
    position: absolute;
    inset: 0;
}

.nf-hero__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: nf-hero-zoom 1400ms var(--ease-out) both;
}

@keyframes nf-hero-zoom {
    from { transform: scale(1.06); }
    to   { transform: scale(1); }
}

.nf-hero__scrim {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(13, 13, 18, 0.62) 0%, rgba(13, 13, 18, 0.28) 42%, rgba(13, 13, 18, 0.82) 78%, rgba(13, 13, 18, 0.97) 100%);
}

.nf-hero__inner {
    position: relative;
    z-index: 2;
    max-width: 1320px;
    margin: 0 auto;
    padding: 9rem 1.5rem 11.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    min-height: min(88vh, 880px);
}

.nf-hero__eyebrow {
    animation: nf-rise 700ms var(--ease-out) both;
    animation-delay: 120ms;
}

.nf-hero__title {
    margin: 0;
    max-width: 15ch;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(2.5rem, 6vw, 5.1rem);
    line-height: 1.02;
    letter-spacing: -0.01em;
    color: var(--white);
    text-wrap: balance;
    animation: nf-rise 700ms var(--ease-out) both;
    animation-delay: 220ms;
}

.nf-hero__title a {
    transition: color 220ms var(--ease-out);
}

.nf-hero__title a:hover {
    color: var(--warm);
}

.nf-hero__dek {
    margin: 1.25rem 0 0;
    max-width: 46ch;
    font-size: 1.0625rem;
    line-height: 1.6;
    color: rgba(244, 242, 247, 0.82);
    animation: nf-rise 700ms var(--ease-out) both;
    animation-delay: 320ms;
}

.nf-hero__meta {
    margin: 0.9rem 0 0;
    font-family: var(--font-ui);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--warm);
    animation: nf-rise 700ms var(--ease-out) both;
    animation-delay: 400ms;
}

.nf-hero__cta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.25rem;
    margin-top: 1.75rem;
    animation: nf-rise 700ms var(--ease-out) both;
    animation-delay: 480ms;
}

@keyframes nf-rise {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}

.nf-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-ui);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--club);
    background: var(--neon);
    padding: 0.85rem 1.5rem;
    border-radius: 2px;
    transition: background 200ms var(--ease-out), transform 200ms var(--ease-out);
}

.nf-cta:hover {
    background: var(--warm);
    transform: translateY(-2px);
}

.nf-cta--ghost {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(244, 242, 247, 0.4);
}

.nf-cta--ghost:hover {
    border-color: var(--white);
    color: var(--white);
    background: rgba(244, 242, 247, 0.08);
}

.nf-hero__strip {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: rgba(13, 13, 18, 0.85);
    border-top: 1px solid var(--line);
}

.nf-strip-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-left: 1px solid var(--line);
    font-family: var(--font-ui);
    font-size: 0.71875rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--smoke);
    transition: color 200ms var(--ease-out), background 200ms var(--ease-out);
}

.nf-strip-item:first-child {
    border-left: 0;
}

.nf-strip-item:hover {
    color: var(--white);
    background: rgba(122, 92, 255, 0.16);
}

.nf-strip-arrow {
    color: var(--neon);
    font-size: 1rem;
    line-height: 1;
}

/* ---------- mosaic (dark mosaic of night stills) ---------- */

.nf-mosaic-wrap {
    max-width: 1320px;
    margin: 0 auto;
    padding: 5rem 1.5rem 0;
}

.nf-mosaic {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 9.5rem;
    grid-auto-flow: dense;
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
}

.nf-tile {
    position: relative;
    overflow: hidden;
    background: var(--club-3);
}

.nf-tile:first-child {
    grid-column: span 2;
    grid-row: span 2;
}

.nf-tile__link {
    position: absolute;
    inset: 0;
    display: block;
}

.nf-tile__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 520ms var(--ease-out);
}

.nf-tile__link:hover .nf-tile__img {
    transform: scale(1.045);
}

.nf-tile__scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(13, 13, 18, 0) 40%, rgba(13, 13, 18, 0.78) 100%);
    transition: background 300ms var(--ease-out);
}

.nf-tile__link:hover .nf-tile__scrim {
    background: linear-gradient(180deg, rgba(13, 13, 18, 0) 30%, rgba(13, 13, 18, 0.88) 100%);
}

.nf-tile__meta {
    position: absolute;
    left: 1.15rem;
    right: 1.15rem;
    bottom: 1rem;
    z-index: 2;
}

.nf-tile__section {
    margin: 0 0 0.35rem;
    font-family: var(--font-ui);
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--neon);
}

.nf-tile__title {
    margin: 0;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.05rem;
    line-height: 1.22;
    color: var(--white);
    text-wrap: balance;
    transition: color 200ms var(--ease-out);
}

.nf-tile__link:hover .nf-tile__title {
    color: var(--warm);
}

.nf-tile:first-child .nf-tile__title {
    font-size: clamp(1.45rem, 2.6vw, 2.35rem);
    line-height: 1.08;
}

.nf-tile:first-child .nf-tile__section {
    color: var(--warm);
}

.nf-mosaic-foot {
    margin: 1.5rem 0 0;
    display: flex;
    justify-content: flex-end;
}

.nf-textlink {
    font-family: var(--font-ui);
    font-size: 0.71875rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--neon);
    border-bottom: 1px solid transparent;
    transition: border-color 200ms var(--ease-out), color 200ms var(--ease-out);
}

.nf-textlink:hover {
    color: var(--white);
    border-color: var(--neon);
}

/* ---------- departments strip ---------- */

.nf-departments {
    max-width: 1320px;
    margin: 0 auto;
    padding: 5rem 1.5rem 0;
}

.nf-departments__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--line);
}

.nf-department {
    padding: 1.5rem 1.5rem 1.5rem 0;
    border-left: 1px solid var(--line);
}

.nf-department:first-child {
    border-left: 0;
    padding-left: 0;
}

.nf-department__name {
    margin: 0;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.35rem;
    color: var(--white);
    transition: color 200ms var(--ease-out);
}

.nf-department:hover .nf-department__name {
    color: var(--neon);
}

.nf-department__desc {
    margin: 0.5rem 0 0;
    font-size: 0.8125rem;
    color: var(--smoke);
}

/* ---------- newsletter band ---------- */

.nf-newsletter {
    margin-top: 5rem;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background:
        radial-gradient(60rem 20rem at 85% -20%, rgba(122, 92, 255, 0.16), transparent 60%),
        var(--club-2);
}

.nf-newsletter__inner {
    max-width: 820px;
    margin: 0 auto;
    padding: 4.5rem 1.5rem;
    text-align: center;
}

.nf-newsletter__title {
    margin: 0;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(1.8rem, 3.6vw, 2.6rem);
    color: var(--white);
    text-wrap: balance;
}

.nf-newsletter__dek {
    margin: 0.9rem auto 0;
    max-width: 46ch;
    font-size: 0.9375rem;
    color: var(--smoke);
}

.nf-newsletter__form {
    margin: 1.75rem auto 0;
    max-width: 30rem;
    display: flex;
    border: 1px solid var(--line);
    background: var(--club);
}

.nf-newsletter__input {
    flex: 1;
    min-width: 0;
    padding: 0.9rem 1.1rem;
    background: transparent;
    border: 0;
    color: var(--white);
    font-family: var(--font-ui);
    font-size: 0.875rem;
}

.nf-newsletter__input::placeholder {
    color: rgba(184, 180, 192, 0.55);
}

.nf-newsletter__form:focus-within {
    border-color: var(--neon);
}

.nf-form-error {
    margin: 0.6rem 0 0;
    font-size: 0.75rem;
    line-height: 1.4;
    color: #FF8F8F;
}

.nf-newsletter__submit {
    padding: 0 1.5rem;
    border: 0;
    cursor: pointer;
    background: var(--neon);
    color: var(--club);
    font-family: var(--font-ui);
    font-size: 0.71875rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    transition: background 200ms var(--ease-out);
}

.nf-newsletter__submit:hover {
    background: var(--warm);
}

.nf-newsletter__note {
    margin: 0.9rem 0 0;
    font-size: 0.75rem;
    color: rgba(184, 180, 192, 0.6);
}

/* ---------- footer ---------- */

.nf-footer {
    border-top: 1px solid var(--line);
    background: var(--club-2);
}

.nf-footer__grid {
    max-width: 1320px;
    margin: 0 auto;
    padding: 3.5rem 1.5rem 2.5rem;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 3rem;
}

.nf-footer__dek {
    margin: 0.9rem 0 0;
    max-width: 34ch;
    font-size: 0.875rem;
    color: rgba(184, 180, 192, 0.75);
}

.nf-footer__label {
    margin: 0 0 0.9rem;
    font-family: var(--font-ui);
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--neon);
}

.nf-footer__col {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.nf-footer__col a {
    font-size: 0.875rem;
    color: var(--smoke);
    transition: color 180ms var(--ease-out);
}

.nf-footer__col a:hover {
    color: var(--white);
}

.nf-footer__bottom {
    max-width: 1320px;
    margin: 0 auto;
    padding: 1.25rem 1.5rem 2.5rem;
    border-top: 1px solid var(--line-soft);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.5rem;
    font-family: var(--font-ui);
    font-size: 0.6875rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(184, 180, 192, 0.55);
}

/* ---------- interior pages (about / newsletter) ---------- */

.nf-page {
    max-width: 760px;
    margin: 0 auto;
    padding: 5rem 1.5rem 0;
}

.nf-page__title {
    margin: 0;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(2rem, 4.6vw, 3.2rem);
    line-height: 1.06;
    color: var(--white);
    text-wrap: balance;
}

.nf-page__lead {
    margin: 1.5rem 0 0;
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(244, 242, 247, 0.85);
}

.nf-page__rule {
    border: 0;
    border-top: 1px solid var(--line);
    margin: 2.5rem 0;
}

.nf-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    margin: 2.5rem 0;
}

.nf-stat {
    background: var(--club-2);
    padding: 1.5rem;
}

.nf-stat__num {
    margin: 0;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 2.1rem;
    color: var(--neon);
}

.nf-stat__label {
    margin: 0.25rem 0 0;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--smoke);
}

/* ---------- prose (article body / about copy) ---------- */

.nf-prose {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: rgba(184, 180, 192, 0.92);
}

.nf-prose p {
    margin: 0 0 1.4rem;
}

.nf-prose > p:first-of-type::first-letter {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 3.1em;
    line-height: 0.85;
    float: left;
    padding: 0.08em 0.12em 0 0;
    color: var(--neon);
}

.nf-prose blockquote {
    margin: 2.2rem 0;
    padding: 0.2rem 0 0.2rem 1.4rem;
    border-left: 2px solid var(--neon);
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.35rem;
    line-height: 1.45;
    color: var(--white);
}

.nf-prose blockquote p {
    margin: 0;
}

.nf-prose strong {
    color: var(--white);
    font-weight: 600;
}

/* ---------- article page ---------- */

.nf-article-hero {
    border-bottom: 1px solid var(--line);
    background: var(--club-2);
}

.nf-article-hero__imgwrap {
    position: relative;
    max-width: 1320px;
    margin: 0 auto;
    padding: 3rem 1.5rem 0;
}

.nf-article-hero__img {
    width: 100%;
    max-height: 62vh;
    object-fit: cover;
}

.nf-article-hero__inner {
    max-width: 820px;
    margin: 0 auto;
    padding: 3rem 1.5rem 3.5rem;
}

.nf-article-hero__kicker {
    margin: 0 0 1.1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.2rem;
    align-items: center;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--neon);
}

.nf-article-hero__kicker a:hover {
    color: var(--white);
}

.nf-article-hero__title {
    margin: 0;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(2.1rem, 5vw, 3.4rem);
    line-height: 1.05;
    color: var(--white);
    text-wrap: balance;
}

.nf-article-hero__dek {
    margin: 1.25rem 0 0;
    font-size: 1.125rem;
    line-height: 1.65;
    color: rgba(244, 242, 247, 0.82);
}

.nf-article-hero__meta {
    margin: 1.25rem 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.2rem;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--warm);
}

.nf-article-body {
    max-width: 720px;
    margin: 0 auto;
    padding: 3.5rem 1.5rem 0;
}

.nf-article-end {
    margin: 3rem 0 0;
    padding-top: 1.5rem;
    border-top: 1px solid var(--line);
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(184, 180, 192, 0.6);
}

.nf-more {
    max-width: 1320px;
    margin: 0 auto;
    padding: 4.5rem 1.5rem 0;
}

.nf-more__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
}

.nf-more__tile {
    position: relative;
    overflow: hidden;
    background: var(--club-3);
}

.nf-more__tile .nf-tile__meta {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    padding: 1.1rem;
}

.nf-more__img {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    transition: transform 520ms var(--ease-out);
}

.nf-more__tile:hover .nf-more__img {
    transform: scale(1.04);
}

.nf-more__tile .nf-tile__title {
    font-size: 1.05rem;
}

/* ---------- magazine pages ---------- */

.nf-issue {
    max-width: 1320px;
    margin: 0 auto;
    padding: 4.5rem 1.5rem 0;
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
    gap: 4rem;
    align-items: center;
}

.nf-issue__cover {
    width: 100%;
    max-height: 70vh;
    object-fit: cover;
    border: 1px solid var(--line);
}

.nf-issue__num {
    margin: 0 0 0.9rem;
    font-family: var(--font-ui);
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--neon);
}

.nf-issue__title {
    margin: 0;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(1.9rem, 3.8vw, 2.8rem);
    color: var(--white);
}

.nf-issue__season {
    margin: 0.4rem 0 0;
    font-size: 0.8125rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--warm);
}

.nf-issue__dek {
    margin: 1.2rem 0 0;
    max-width: 46ch;
    font-size: 1.0625rem;
    line-height: 1.7;
    color: rgba(184, 180, 192, 0.9);
}

.nf-issue__cta {
    margin-top: 1.75rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.nf-archive {
    max-width: 1320px;
    margin: 0 auto;
    padding: 5rem 1.5rem 0;
}

.nf-archive__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem 2rem;
    margin-top: 2.5rem;
}

.nf-archive__tile {
    display: block;
}

.nf-archive__imgwrap {
    overflow: hidden;
    border: 1px solid var(--line);
    background: var(--club-3);
}

.nf-archive__img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform 520ms var(--ease-out);
}

.nf-archive__tile:hover .nf-archive__img {
    transform: scale(1.04);
}

.nf-archive__meta {
    margin: 0.9rem 0 0;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--neon);
}

.nf-archive__byline {
    color: rgba(184, 180, 192, 0.65);
}

.nf-archive__title {
    margin: 0.4rem 0 0;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1.25;
    color: var(--white);
    text-wrap: balance;
    transition: color 200ms var(--ease-out);
}

.nf-archive__tile:hover .nf-archive__title {
    color: var(--warm);
}

.nf-archive__dek {
    margin: 0.5rem 0 0;
    font-size: 0.875rem;
    color: rgba(184, 180, 192, 0.75);
}

/* ---------- contributors ---------- */

.nf-contributors {
    max-width: 1320px;
    margin: 0 auto;
    padding: 5rem 1.5rem 0;
}

.nf-contributors__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem 2rem;
    margin-top: 2.5rem;
}

.nf-contributor__photo {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border: 1px solid var(--line);
}

.nf-contributor__name {
    margin: 1rem 0 0;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--white);
}

.nf-contributor__role {
    margin: 0.25rem 0 0;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--neon);
}

.nf-contributor__bio {
    margin: 0.7rem 0 0;
    font-size: 0.875rem;
    line-height: 1.65;
    color: rgba(184, 180, 192, 0.78);
}

/* ---------- responsive ---------- */

@media (max-width: 1024px) {
    .nf-mosaic {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 12rem;
    }
    .nf-mosaic .nf-tile:first-child {
        grid-column: span 2;
    }
    .nf-departments__grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 0;
    }
    .nf-department:nth-child(3) {
        border-left: 0;
        padding-left: 0;
    }
    .nf-issue {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .nf-archive__grid,
    .nf-more__grid,
    .nf-contributors__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .nf-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0.5rem 1.5rem 1.25rem;
        background: rgba(13, 13, 18, 0.97);
        border-bottom: 1px solid var(--line);
        display: none;
    }
    .nf-nav.is-open {
        display: flex;
    }
    .nf-nav__link {
        padding: 0.8rem 0;
        border-bottom: 1px solid var(--line-soft);
    }
    .nf-nav__sep {
        display: none;
    }
    .nf-nav__link--cta {
        margin-top: 0.8rem;
        text-align: center;
        border-bottom: 0;
        border-radius: 2px;
    }
    .nf-nav-toggle {
        display: flex;
    }
    .nf-hero__strip {
        grid-template-columns: repeat(2, 1fr);
    }
    .nf-strip-item {
        border-top: 1px solid var(--line);
        border-left: 0;
    }
    .nf-strip-item:nth-child(even) {
        border-left: 1px solid var(--line);
    }
    .nf-footer__grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .nf-header__inner {
        height: 3.9rem;
    }
    .nf-brand__issue {
        display: none;
    }
    .nf-hero__inner {
        padding: 7rem 1.25rem 10rem;
    }
    .nf-hero__cta {
        flex-direction: column;
        align-items: flex-start;
    }
    .nf-mosaic {
        grid-template-columns: 1fr;
        grid-auto-rows: 16rem;
    }
    .nf-mosaic .nf-tile:first-child {
        grid-column: span 1;
        grid-row: span 2;
    }
    .nf-departments__grid {
        grid-template-columns: 1fr;
    }
    .nf-department {
        border-left: 0;
        border-top: 1px solid var(--line);
        padding: 1.25rem 0;
    }
    .nf-department:first-child {
        border-top: 0;
    }
    .nf-footer__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .nf-archive__grid,
    .nf-more__grid,
    .nf-contributors__grid {
        grid-template-columns: 1fr;
    }
    .nf-stats {
        grid-template-columns: 1fr;
    }
    .nf-newsletter__form {
        flex-direction: column;
    }
    .nf-newsletter__submit {
        padding: 0.9rem 1rem;
    }
}

/* ---------- reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 1ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 1ms !important;
    }
}
