@font-face {
    font-family: "IBM Plex Serif";
    src: url("fonts/IBMPlexSerif-Regular.ttf") format("truetype");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "IBM Plex Serif";
    src: url("fonts/IBMPlexSerif-Italic.ttf") format("truetype");
    font-style: italic;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "IBM Plex Serif";
    src: url("fonts/IBMPlexSerif-Medium.ttf") format("truetype");
    font-style: normal;
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: "IBM Plex Serif";
    src: url("fonts/IBMPlexSerif-SemiBold.ttf") format("truetype");
    font-style: normal;
    font-weight: 600;
    font-display: swap;
}

@font-face {
    font-family: "IBM Plex Serif";
    src: url("fonts/IBMPlexSerif-Bold.ttf") format("truetype");
    font-style: normal;
    font-weight: 700;
    font-display: swap;
}

:root {
    --bg: #070707;
    --bg-deep: #101114;
    --surface: rgba(21, 21, 24, 0.72);
    --surface-strong: rgba(255, 255, 255, 0.08);
    --surface-soft: rgba(255, 255, 255, 0.04);
    --border: rgba(255, 255, 255, 0.12);
    --border-strong: rgba(255, 255, 255, 0.2);
    --text: #f7f1eb;
    --muted: #bdb1aa;
    --accent: #b5131b;
    --accent-bright: #ec404a;
    --shadow-lg: 0 30px 80px rgba(0, 0, 0, 0.48);
    --shadow-md: 0 18px 48px rgba(0, 0, 0, 0.36);
    --radius-xl: 32px;
    --radius-lg: 26px;
    --radius-md: 18px;
    --content-width: min(1200px, calc(100vw - 2rem));
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: "IBM Plex Serif", serif;
    line-height: 1.6;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(181, 19, 27, 0.28), transparent 30%),
        radial-gradient(circle at 85% 18%, rgba(255, 255, 255, 0.07), transparent 16%),
        linear-gradient(155deg, #050505 5%, #121317 50%, #070707 100%);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 120px 120px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.45), transparent 90%);
    pointer-events: none;
    opacity: 0.35;
}

body,
h1,
h2,
h3,
p {
    margin: 0;
}

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

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

.page-shell {
    position: relative;
    overflow: clip;
}

.page-shell::before,
.page-shell::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    filter: blur(24px);
    pointer-events: none;
}

.page-shell::before {
    top: 7rem;
    right: -7rem;
    width: 20rem;
    height: 20rem;
    background: rgba(236, 64, 74, 0.18);
}

.page-shell::after {
    left: -6rem;
    top: 38rem;
    width: 18rem;
    height: 18rem;
    background: rgba(255, 255, 255, 0.07);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(18px);
    background: rgba(7, 7, 7, 0.58);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.navbar,
main,
.site-footer {
    width: var(--content-width);
    margin: 0 auto;
}

.navbar {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
}

.brand,
.nav-cta,
.button,
.eyebrow,
.label-pill,
.stat-label,
.source-tag {
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.brand {
    font-size: 0.95rem;
    font-weight: 700;
}

.nav-links {
    display: flex;
    gap: clamp(0.9rem, 2vw, 1.5rem);
    color: var(--muted);
    justify-self: center;
    justify-content: center;
    flex-wrap: wrap;
    row-gap: 0.35rem;
}

.nav-links a {
    position: relative;
    padding-bottom: 0.2rem;
}

.nav-links a[aria-current="page"] {
    color: var(--text);
}

.nav-links a[aria-current="page"]::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -0.1rem;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(236, 64, 74, 0.92), transparent);
}

.nav-spacer {
    justify-self: end;
    width: 8rem;
}

.nav-links a,
.nav-cta,
.button {
    transition: transform 180ms ease, color 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
    color: var(--text);
}

.nav-cta,
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid var(--border);
    font-size: 0.78rem;
    font-weight: 700;
}

.nav-cta {
    padding: 0.9rem 1.2rem;
    background: rgba(255, 255, 255, 0.04);
}

.button {
    padding: 1rem 1.5rem;
}

.button--primary {
    background: linear-gradient(135deg, var(--accent-bright), var(--accent));
    box-shadow: 0 14px 40px rgba(181, 19, 27, 0.3);
}

.nav-cta:hover,
.nav-cta:focus-visible,
.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
}

.button:disabled,
.button:disabled:hover,
.button:disabled:focus-visible {
    cursor: wait;
    opacity: 0.68;
    transform: none;
}

main {
    padding-bottom: 4rem;
}

.hero {
    padding: 5.5rem 0 3rem;
}

.hero--home {
    min-height: calc(100vh - 7rem);
    display: grid;
    align-items: center;
}

.hero--centered {
    display: block;
}

.hero--home.hero--centered {
    display: grid;
}

.hero__content {
    position: relative;
}

.hero__content--centered {
    display: grid;
    justify-items: center;
    text-align: center;
    gap: 1.8rem;
    max-width: 980px;
    margin: 0 auto;
}

.hero-copy {
    max-width: 42rem;
    color: var(--muted);
    font-size: 1.02rem;
    line-height: 1.9;
}

.hero-copy--wide {
    max-width: 50rem;
}

.eyebrow {
    font-size: 0.74rem;
    color: rgba(255, 255, 255, 0.78);
}

.hero h1,
.player-name {
    font-family: "IBM Plex Serif", serif;
}

.hero h1 {
    max-width: 13ch;
    font-size: clamp(3.2rem, 7vw, 6.1rem);
    line-height: 1.1;
    letter-spacing: -0.045em;
    font-weight: 700;
}

.comparison-section {
    padding: 1.5rem 0 3rem;
}

.comparison-section--page {
    display: grid;
    gap: 2rem;
}

.comparison-container {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    gap: 1.5rem;
    align-items: center;
}

.comparison-container--duo {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
}

.caption-panel,
.feature-panel {
    width: var(--content-width);
    margin: 0 auto;
    border-radius: 30px;
    border: 1px solid var(--border);
    background:
        radial-gradient(circle at top left, rgba(236, 64, 74, 0.14), transparent 30%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(22px);
}

.caption-panel {
    display: grid;
    gap: 1.2rem;
    padding: 1.6rem;
    color: var(--text);
    line-height: 1.9;
}

.caption-panel p {
    max-width: 72rem;
}

.player-card {
    position: relative;
    padding: 1.35rem;
    border-radius: 30px;
    border: 1px solid var(--border);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03));
    backdrop-filter: blur(24px);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.player-card::before {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 50%;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.34));
    pointer-events: none;
}

.player-card > * {
    position: relative;
    z-index: 1;
}

.player-card--shadow {
    background:
        radial-gradient(circle at top left, rgba(236, 64, 74, 0.18), transparent 32%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
}

.player-card--legend {
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.11), transparent 30%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
}

.card-labels {
    display: flex;
    justify-content: space-between;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.label-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.2rem;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(0, 0, 0, 0.22);
    font-size: 0.72rem;
    font-weight: 700;
}

.label-shadow,
.label-legend {
    background: rgba(181, 19, 27, 0.2);
    border-color: rgba(236, 64, 74, 0.32);
}

.label-role {
    color: rgba(255, 255, 255, 0.82);
}

.player-image-container {
    position: relative;
    aspect-ratio: 16 / 10;
    margin-bottom: 1.25rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-md);
}

.player-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    z-index: 1;
}

.player-card--shadow .player-image-container {
    background:
        radial-gradient(circle at 18% 16%, rgba(236, 64, 74, 0.42), transparent 24%),
        linear-gradient(180deg, #27181a 0%, #171719 54%, #0f1012 100%);
}

.player-card--legend .player-image-container {
    background:
        radial-gradient(circle at 80% 18%, rgba(255, 255, 255, 0.22), transparent 24%),
        linear-gradient(180deg, #241516 0%, #141417 54%, #0d0d10 100%);
}

.player-image-container::before,
.player-image-container::after {
    content: "";
    position: absolute;
    inset: 0;
}

.player-image-container::before {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent 35%, rgba(0, 0, 0, 0.35) 100%),
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.18), transparent 18%);
}

.player-image-container::after {
    background:
        linear-gradient(140deg, rgba(255, 255, 255, 0.06), transparent 40%),
        repeating-linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.05) 0,
            rgba(255, 255, 255, 0.05) 2px,
            transparent 2px,
            transparent 16px
        );
    opacity: 0.3;
    mix-blend-mode: screen;
}

.portrait-placeholder {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    z-index: 1;
    font-family: "Sora", sans-serif;
    font-size: clamp(4.6rem, 12vw, 7rem);
    font-weight: 800;
    line-height: 1;
    color: rgba(255, 255, 255, 0.1);
}

.player-name {
    margin-bottom: 1rem;
    font-size: clamp(2rem, 3vw, 2.75rem);
    line-height: 1;
    letter-spacing: -0.04em;
    font-weight: 600;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    min-height: 5rem;
    padding: 0.95rem 1rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.24);
}

.stat-label {
    font-size: 0.69rem;
    color: rgba(255, 255, 255, 0.68);
}

.stat-value {
    display: inline-flex;
    align-items: center;
    min-height: 1.3rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
}

.stat-value:empty::after {
    content: " ";
}

.comparison-footer {
    display: grid;
    gap: 0.55rem;
    justify-items: center;
    padding-top: 1.3rem;
    color: var(--muted);
    text-align: center;
}

.comparison-footer p {
    margin: 0;
}

.source-tag {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.62);
}

.site-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--muted);
}

.footer-copy {
    display: grid;
    gap: 0.3rem;
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.social-link:hover,
.social-link:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(236, 64, 74, 0.4);
    background: rgba(236, 64, 74, 0.14);
}

.social-link svg {
    width: 1rem;
    height: 1rem;
    fill: currentColor;
}

.contact-section {
    padding: 0 0 3rem;
}

.season-previews {
    display: grid;
    gap: 1.5rem;
    padding: 0 0 3rem;
}

.season-previews__header {
    display: grid;
    justify-items: center;
    gap: 0.55rem;
    text-align: center;
}

.season-previews__header h2 {
    font-size: clamp(1.8rem, 4vw, 2.7rem);
    line-height: 1.12;
    letter-spacing: -0.04em;
}

.season-preview-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem;
}

.season-preview-card {
    display: grid;
    align-content: start;
    justify-items: start;
    gap: 1rem;
    min-height: 18rem;
    padding: clamp(1.35rem, 3vw, 2rem);
    border-radius: 30px;
    border: 1px solid var(--border);
    background:
        radial-gradient(circle at top left, rgba(236, 64, 74, 0.14), transparent 30%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(22px);
}

.season-preview-card h3 {
    font-size: clamp(1.55rem, 3vw, 2.15rem);
    line-height: 1.12;
    letter-spacing: -0.04em;
}

.season-preview-card__copy {
    max-width: 34rem;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.9;
}

.season-preview-card .button {
    margin-top: auto;
}

.season-writing-page {
    display: grid;
    gap: 2.5rem;
    padding-bottom: 1rem;
}

.season-editorial {
    width: min(800px, calc(100vw - 2rem));
    margin: 0 auto;
    display: grid;
    gap: 2.5rem;
}

.season-placeholder-page {
    min-height: calc(100vh - 13rem);
    display: grid;
    place-items: center;
    padding: 3rem 0;
}

.season-placeholder {
    display: grid;
    justify-items: center;
    gap: 1rem;
    max-width: 36rem;
    text-align: center;
}

.season-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.3rem;
    padding: 0.55rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(236, 64, 74, 0.34);
    background: rgba(181, 19, 27, 0.18);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.season-placeholder h1 {
    font-size: clamp(2.6rem, 6vw, 4.8rem);
    line-height: 1.04;
    letter-spacing: -0.05em;
}

.season-placeholder p {
    max-width: 30rem;
    color: var(--muted);
    font-size: 1.04rem;
    line-height: 1.9;
}

.longform-page {
    display: grid;
    gap: 2.5rem;
    padding-bottom: 1rem;
}

.article-hero {
    display: grid;
    gap: 1.8rem;
    padding: 4.5rem 0 0;
}

.article-hero__content {
    width: min(800px, calc(100vw - 2rem));
    margin: 0 auto;
    display: grid;
    gap: 1rem;
    text-align: center;
}

.article-hero__content h1 {
    margin: 0 auto;
    max-width: 15ch;
    font-size: clamp(3rem, 6vw, 5.2rem);
    line-height: 1.04;
    letter-spacing: -0.05em;
}

.article-byline {
    color: var(--muted);
    font-size: 1rem;
}

.article-shell {
    width: min(800px, calc(100vw - 2rem));
    margin: 0 auto;
    display: grid;
    gap: 2.5rem;
}

.article-prose {
    display: grid;
    gap: 1.3rem;
}

.article-prose h2 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    line-height: 1.12;
    letter-spacing: -0.04em;
}

.article-prose p {
    color: rgba(247, 241, 235, 0.9);
    font-size: 1.06rem;
    line-height: 1.95;
}

.article-prose--lead p:first-of-type {
    font-size: 1.14rem;
}

.article-prose--lead p:first-of-type::first-letter {
    float: left;
    padding-right: 0.45rem;
    font-size: 4.2rem;
    line-height: 0.88;
    font-weight: 600;
    color: var(--text);
}

.article-figure {
    width: min(960px, calc(100vw - 2rem));
    margin: 0 auto;
    display: grid;
    gap: 0.85rem;
}

.article-figure img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background:
        radial-gradient(circle at top left, rgba(236, 64, 74, 0.18), transparent 32%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    box-shadow: var(--shadow-lg);
}

.article-hero__figure img {
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: center 18%;
}

.article-figure figcaption {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.74rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.page-shadow-chaser .hero-copy {
    font-size: 1.145rem;
}

.page-shadow-chaser .caption-panel p {
    font-size: 1.125rem;
}

.page-altar .article-byline {
    font-size: 1.125rem;
}

.page-altar .article-prose p {
    font-size: 1.185rem;
}

.page-altar .article-figure figcaption {
    color: var(--muted);
    font-size: 1.02rem;
    font-style: italic;
    line-height: 1.7;
    letter-spacing: 0;
    text-transform: none;
}

.contact-card {
    width: var(--content-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: 1.5rem;
    padding: 1.75rem;
    border-radius: 30px;
    border: 1px solid var(--border);
    background:
        radial-gradient(circle at top right, rgba(236, 64, 74, 0.14), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(22px);
}

.contact-copy {
    display: grid;
    align-content: start;
    gap: 1rem;
}

.contact-copy h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.15;
    letter-spacing: -0.04em;
}

.contact-form {
    display: grid;
    gap: 1rem;
}

.form-honey {
    display: none;
}

.form-field {
    display: grid;
    gap: 0.45rem;
}

.recaptcha-field {
    display: grid;
    gap: 0.45rem;
    min-width: 0;
}

.g-recaptcha {
    max-width: 100%;
    overflow: hidden;
}

.form-field span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.86);
}

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 0.95rem 1rem;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(0, 0, 0, 0.24);
    color: var(--text);
    font: inherit;
    line-height: 1.6;
}

.form-field textarea {
    resize: vertical;
    min-height: 10rem;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: rgba(255, 255, 255, 0.42);
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: rgba(236, 64, 74, 0.45);
    box-shadow: 0 0 0 3px rgba(236, 64, 74, 0.12);
}

.form-field input[aria-invalid="true"],
.form-field textarea[aria-invalid="true"] {
    border-color: rgba(255, 118, 118, 0.7);
    box-shadow: 0 0 0 3px rgba(255, 118, 118, 0.12);
}

.field-error {
    min-height: 1.1rem;
    color: rgb(255, 158, 158);
    font-size: 0.82rem;
    line-height: 1.35;
}

.form-status {
    display: none;
    padding: 0.9rem 1rem;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.95rem;
    line-height: 1.5;
}

.form-status.is-visible {
    display: block;
}

.form-status.is-success {
    border-color: rgba(87, 214, 139, 0.36);
    background: rgba(87, 214, 139, 0.12);
    color: rgb(205, 255, 225);
}

.form-status.is-error {
    border-color: rgba(255, 118, 118, 0.42);
    background: rgba(255, 118, 118, 0.12);
    color: rgb(255, 218, 218);
}

.form-status strong {
    display: block;
    margin-bottom: 0.25rem;
    color: inherit;
}

@media (max-width: 1080px) {
    .comparison-container {
        grid-template-columns: 1fr;
    }

    .contact-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .navbar,
    .site-footer,
    main {
        width: min(1200px, calc(100vw - 1.5rem));
    }

    .navbar {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .nav-links {
        gap: 1rem;
        flex-wrap: wrap;
    }

    .nav-spacer {
        display: none;
    }

    .hero {
        padding: 4rem 0 2.5rem;
    }

    .hero h1 {
        font-size: clamp(2.7rem, 12vw, 4.3rem);
    }

    .article-hero {
        padding-top: 3.5rem;
        gap: 1.4rem;
    }

    .article-hero__content,
    .article-shell,
    .article-figure {
        width: min(1200px, calc(100vw - 1.5rem));
    }

    .article-hero__content h1 {
        font-size: clamp(2.6rem, 12vw, 4.1rem);
    }

    .article-prose p {
        font-size: 1rem;
        line-height: 1.85;
    }

    .page-shadow-chaser .hero-copy {
        font-size: 1.08rem;
    }

    .page-shadow-chaser .caption-panel p {
        font-size: 1.06rem;
    }

    .page-altar .article-byline {
        font-size: 1rem;
    }

    .page-altar .article-prose p {
        font-size: 1.12rem;
    }

    .page-altar .article-figure figcaption {
        font-size: 0.96rem;
    }

    .article-prose--lead p:first-of-type::first-letter {
        padding-right: 0.35rem;
        font-size: 3.3rem;
    }

    .caption-panel,
    .feature-panel,
    .contact-card,
    .season-preview-card {
        width: min(1200px, calc(100vw - 1.5rem));
        padding: 1.2rem;
        border-radius: 24px;
    }

    .season-preview-grid {
        grid-template-columns: 1fr;
    }

    .season-editorial {
        width: min(1200px, calc(100vw - 1.5rem));
    }

    .player-card {
        padding: 1rem;
        border-radius: 24px;
    }

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

    .site-footer {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .nav-links a,
    .nav-cta,
    .button {
        transition: none;
    }
}
