:root {
    --paper: #ffffff;
    --warm: #fff8df;
    --mist: #f0f5f8;
    --ink: #002733;
    --muted: #495b63;
    --line: #cddee8;
    --pine: #014e66;
    --leaf: #27697d;
    --yellow: #f8c43f;
    --yellow-deep: #d29306;
    --coral: #e46c4f;
    --blue: #02afe4;
    --shadow: 0 24px 60px rgba(0, 39, 51, 0.16);
    --max: 1220px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.55;
    letter-spacing: 0;
}

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

a {
    color: inherit;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    line-height: 1.02;
    letter-spacing: 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
    min-height: 70px;
    padding: 10px max(24px, calc((100vw - var(--max)) / 2));
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 3px solid var(--pine);
    backdrop-filter: blur(18px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 250px;
    text-decoration: none;
}

.brand strong,
.site-footer strong {
    display: block;
    font-size: 0.96rem;
    line-height: 1.08;
}

.brand small {
    display: block;
    color: var(--muted);
    font-size: 0.74rem;
}

.brand-logo {
    width: 43px;
    height: 50px;
    flex: 0 0 auto;
    filter: drop-shadow(0 6px 10px rgba(17, 29, 23, 0.12));
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.nav-links a,
.header-action {
    border-radius: 4px;
    color: var(--ink);
    font-size: 0.87rem;
    font-weight: 820;
    padding: 8px 10px;
    text-decoration: none;
}

.issue-pill {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 7px 12px;
    color: var(--pine);
    border: 1px solid #a8c2ca;
    border-radius: 4px;
    font-size: 0.74rem;
    font-weight: 920;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
}

.nav-links a:hover,
.nav-links a:focus-visible {
    background: var(--mist);
    outline: none;
}

.header-action {
    background: var(--yellow);
    border: 1px solid var(--yellow-deep);
    color: var(--ink);
    padding-inline: 18px;
    box-shadow: 0 10px 24px rgba(210, 147, 6, 0.18);
}

.section,
.article-preview,
.site-footer {
    width: min(var(--max), calc(100% - 48px));
    margin-inline: auto;
}

.hero {
    position: relative;
    isolation: isolate;
    min-height: min(680px, calc(100svh - 70px));
    overflow: hidden;
    border-bottom: 1px solid var(--line);
    background:
        linear-gradient(180deg, #f0f5f8 0, #ffffff 52%),
        var(--paper);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(240, 245, 248, 0.99) 0%, rgba(255, 255, 255, 0.96) 42%, rgba(255, 255, 255, 0.74) 70%, rgba(255, 255, 255, 0.48) 100%),
        linear-gradient(0deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0) 48%);
}

.hero::after {
    content: "";
    position: absolute;
    left: -6vw;
    right: -6vw;
    bottom: -58px;
    height: 118px;
    background: var(--paper);
    border-top: 1px solid rgba(17, 29, 23, 0.14);
    border-radius: 50% 50% 0 0 / 70% 70% 0 0;
}

.hero-inner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(620px, 0.88fr) minmax(320px, 1fr);
    align-items: center;
    width: min(var(--max), calc(100% - 48px));
    min-height: inherit;
    margin-inline: auto;
    padding: 44px 0 76px;
}

.hero-copy {
    max-width: 620px;
}

h1 {
    margin-bottom: 10px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 5.75rem;
    font-weight: 700;
}

h1 span {
    display: block;
}

.hero-subtitle {
    margin-bottom: 20px;
    color: var(--pine);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 3.15rem;
    font-weight: 700;
}

.cover-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 10px;
    margin: 0 0 18px;
    color: var(--pine);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.cover-meta span {
    display: inline-flex;
    align-items: center;
}

.cover-meta span:not(:last-child)::after {
    content: "";
    width: 4px;
    height: 4px;
    margin-left: 10px;
    background: currentColor;
    border-radius: 50%;
}

.hero-text {
    max-width: 510px;
    color: #29382f;
    font-size: 1.06rem;
    font-weight: 650;
}

.hero-actions,
.ask-section {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border: 2px solid transparent;
    border-radius: 4px;
    font-weight: 860;
    padding: 10px 18px;
    text-decoration: none;
}

.button-primary {
    background: var(--yellow);
    border-color: var(--yellow-deep);
    color: var(--ink);
    box-shadow: 0 12px 28px rgba(210, 147, 6, 0.24);
}

.button-secondary {
    background: rgba(255, 255, 255, 0.82);
    border-color: var(--line);
    color: var(--ink);
}

.hero-media {
    position: relative;
    justify-self: end;
    align-self: end;
    width: min(440px, 100%);
    padding: 28px 28px 0;
}

.hero-media::before {
    content: "";
    position: absolute;
    inset: 72px 0 0;
    z-index: -1;
    background:
        linear-gradient(135deg, rgba(1, 78, 102, 0.97), rgba(39, 105, 125, 0.9)),
        var(--pine);
    border-left: 8px solid var(--yellow);
    border-radius: 4px 4px 0 0;
    box-shadow: var(--shadow);
}

.hero-media img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 28px 34px rgba(0, 39, 51, 0.32));
    object-fit: contain;
}

.hero-stamp {
    position: absolute;
    right: -44px;
    top: 74px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 184px;
    height: 184px;
    padding-left: 58px;
    color: var(--paper);
    border: 2px solid var(--yellow);
    border-radius: 50%;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 0.98rem;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.36);
}

.hero-stamp strong {
    margin-top: 12px;
    font-size: 1.35rem;
    font-style: italic;
}

.editorial-index {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: min(var(--max), calc(100% - 48px));
    margin: 0 auto;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
}

.editorial-index a {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 4px 12px;
    min-height: 102px;
    padding: 20px 18px;
    border-right: 1px solid var(--line);
    text-decoration: none;
}

.editorial-index a:first-child {
    border-left: 1px solid var(--line);
}

.editorial-index span {
    grid-row: 1 / 3;
    color: var(--coral);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.55rem;
    line-height: 1;
}

.editorial-index strong {
    font-size: 0.92rem;
}

.editorial-index small {
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.35;
}

.editorial-index a:hover,
.editorial-index a:focus-visible {
    background: var(--mist);
    outline: none;
}

.article-preview {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 44px;
    align-items: end;
    padding: 34px 0 36px;
    border-bottom: 1px solid var(--line);
}

.article-preview h2 {
    margin-bottom: 0;
    font-size: 2.85rem;
}

.article-preview p:last-child {
    margin-bottom: 0;
    color: var(--muted);
    font-weight: 650;
}

.section {
    padding-block: 74px;
}

.section-heading {
    display: grid;
    grid-template-columns: minmax(260px, 0.72fr) minmax(280px, 1fr);
    gap: 36px;
    align-items: end;
    margin-bottom: 32px;
}

.section-heading.compact {
    display: block;
    max-width: 760px;
}

.section-heading h2,
.ask-section h2,
.felix-copy h2 {
    margin-bottom: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 3.35rem;
}

.section-heading p:not(.section-label),
.felix-copy > p,
.ask-section p {
    color: var(--muted);
    font-size: 1rem;
}

.section-label {
    margin-bottom: 10px;
    color: var(--coral);
    font-size: 0.76rem;
    font-weight: 920;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.article-section {
    position: relative;
    border-bottom: 1px solid var(--line);
}

.article-layout {
    display: grid;
    grid-template-columns: 0.95fr 0.82fr 1fr;
    gap: 22px;
    align-items: stretch;
}

.article-body,
.article-visual,
.checklist-panel,
.fact-card,
.knowledge-card,
.profile-list article {
    border: 1px solid var(--line);
    border-radius: 4px;
    background: var(--paper);
}

.article-body {
    padding: 28px;
}

.byline {
    margin-bottom: 20px;
    color: var(--coral);
    font-size: 0.76rem;
    font-weight: 920;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.article-body h3 {
    margin-bottom: 6px;
    font-size: 1.25rem;
}

.article-body p {
    margin-bottom: 20px;
    color: #425149;
}

.article-body p:last-child {
    margin-bottom: 0;
}

.article-visual {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 0;
    padding: 12px;
    background: var(--mist);
}

.article-visual img {
    width: 100%;
    min-height: 310px;
    flex: 1 1 auto;
    border-radius: 6px;
    object-fit: cover;
    object-position: 54% 30%;
}

.article-visual figcaption {
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.82);
    border-radius: 6px;
    color: var(--muted);
    font-size: 0.9rem;
}

.article-visual strong {
    display: block;
    margin-bottom: 4px;
    color: var(--ink);
}

.checklist-panel {
    padding: 24px;
    background: var(--pine);
    color: var(--paper);
}

.checklist-panel h3 {
    margin-bottom: 14px;
    font-size: 1.55rem;
}

.signal {
    padding-block: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.signal h4 {
    margin: 0 0 8px;
    color: var(--yellow);
    font-size: 0.98rem;
}

.signal-warning h4 {
    color: #ffb46e;
}

.signal-bad h4 {
    color: #ff8269;
}

.signal ul,
.source-list {
    margin: 0;
    padding-left: 20px;
}

.signal li {
    margin-bottom: 6px;
    color: rgba(255, 255, 255, 0.78);
}

.reifecheck {
    width: 100%;
    max-width: none;
    padding-inline: max(24px, calc((100vw - var(--max)) / 2));
    background:
        linear-gradient(90deg, rgba(2, 175, 228, 0.12), rgba(255, 255, 255, 0) 42%),
        var(--mist);
    border-block: 1px solid var(--line);
}

.checker {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 24px;
    align-items: stretch;
}

.checker-options {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.checker-options label {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 72px;
    padding: 14px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 4px;
    cursor: pointer;
    font-weight: 780;
}

.checker-options input {
    width: 20px;
    height: 20px;
    accent-color: var(--pine);
}

.checker-result {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 230px;
    padding: 28px;
    background: var(--pine);
    border-radius: 4px;
    color: var(--paper);
    box-shadow: var(--shadow);
}

.score-label {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.76rem;
    font-weight: 920;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.checker-result strong {
    font-size: 4.2rem;
    line-height: 1;
}

.meter {
    height: 10px;
    margin: 18px 0;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.24);
    border-radius: 999px;
}

.meter span {
    display: block;
    width: 50%;
    height: 100%;
    background: var(--yellow);
    border-radius: inherit;
    transition: width 180ms ease;
}

.checker-result p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.84);
}

.fact-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.fact-card {
    min-height: 205px;
    padding: 22px;
    background: linear-gradient(180deg, #ffffff, #fbfcf8);
}

.fact-card strong {
    display: block;
    margin-bottom: 8px;
    color: var(--pine);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2.05rem;
    line-height: 1;
}

.fact-card span,
.knowledge-card span {
    display: block;
    color: var(--coral);
    font-size: 0.74rem;
    font-weight: 920;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.fact-card p,
.knowledge-card p,
.profile-list p {
    margin-bottom: 0;
    color: var(--muted);
}

.knowledge-section {
    border-top: 1px solid var(--line);
}

.knowledge-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 4px;
    overflow: hidden;
}

.knowledge-card {
    min-height: 230px;
    padding: 26px;
    border-width: 0 1px 1px 0;
    border-radius: 0;
}

.knowledge-card:nth-child(3n) {
    border-right-width: 0;
}

.knowledge-card:nth-last-child(-n + 3) {
    border-bottom-width: 0;
}

.knowledge-card h3 {
    margin: 14px 0 12px;
    font-size: 1.45rem;
}

.felix-section {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 48px;
    align-items: center;
    width: 100%;
    max-width: none;
    padding-inline: max(24px, calc((100vw - var(--max)) / 2));
    background: var(--pine);
    color: var(--paper);
}

.felix-image img {
    width: 100%;
    height: 590px;
    border-radius: 4px;
    object-fit: cover;
    object-position: 58% 36%;
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.25);
}

.felix-copy > p {
    color: rgba(255, 255, 255, 0.74);
}

.profile-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 28px;
}

.profile-list article {
    min-height: 160px;
    padding: 22px;
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.16);
}

.profile-list h3 {
    margin-bottom: 8px;
    font-size: 1.16rem;
}

.profile-list p {
    color: rgba(255, 255, 255, 0.74);
}

.gallery-section {
    padding-bottom: 62px;
}

.gallery-subtitle {
    margin: 28px 0 12px;
    font-size: 1.25rem;
}

.gallery-strip {
    display: grid;
    grid-template-columns: 1.4fr 0.72fr;
    gap: 14px;
}

.gallery-strip-small {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gallery-strip figure {
    margin: 0;
}

.gallery-strip img {
    width: 100%;
    height: 380px;
    border-radius: 4px;
    object-fit: cover;
    box-shadow: 0 14px 32px rgba(17, 29, 23, 0.09);
}

.gallery-strip figure:first-child img {
    object-position: center;
}

.gallery-strip figure:nth-child(2) img {
    object-position: center 20%;
}

.gallery-strip figcaption {
    margin-top: 9px;
    color: var(--muted);
    font-size: 0.9rem;
}

.ask-section {
    justify-content: space-between;
    padding: 40px;
    background:
        linear-gradient(90deg, rgba(248, 196, 63, 0.3), rgba(2, 175, 228, 0.1)),
        var(--warm);
    border: 1px solid var(--line);
    border-radius: 4px;
}

.ask-section > div {
    max-width: 760px;
}

.source-list {
    columns: 2;
    column-gap: 56px;
}

.source-list li {
    break-inside: avoid;
    margin-bottom: 10px;
    color: var(--muted);
}

.source-list a:hover,
.source-list a:focus-visible {
    color: var(--pine);
}

.site-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 34px 0 48px;
    color: var(--muted);
    border-top: 1px solid var(--line);
}

@media (max-width: 1020px) {
    .site-header {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .nav-links {
        order: 3;
        width: calc(100% - 120px);
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 2px;
    }

    .issue-pill {
        order: 4;
    }

    .hero {
        min-height: auto;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        min-height: 720px;
        padding-top: 50px;
    }

    .hero-bg {
        object-position: 60% center;
    }

    .hero::before {
        background:
            linear-gradient(90deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 255, 255, 0.88) 46%, rgba(255, 255, 255, 0.2) 100%),
            linear-gradient(0deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0) 55%);
    }

    .hero-media {
        justify-self: center;
        width: min(340px, 64vw);
        margin-top: 18px;
        padding-inline: 20px;
    }

    .hero-stamp {
        right: -30px;
        width: 154px;
        height: 154px;
        padding-left: 44px;
        font-size: 0.86rem;
    }

    h1 {
        font-size: 4.8rem;
    }

    .hero-subtitle {
        font-size: 2.75rem;
    }

    .article-preview h2 {
        font-size: 2.35rem;
    }

    .section-heading h2,
    .ask-section h2,
    .felix-copy h2 {
        font-size: 2.72rem;
    }

    .article-preview,
    .editorial-index,
    .section-heading,
    .article-layout,
    .checker,
    .felix-section {
        grid-template-columns: 1fr;
    }

    .checker-options,
    .fact-grid,
    .knowledge-grid,
    .gallery-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .knowledge-card,
    .knowledge-card:nth-child(3n),
    .knowledge-card:nth-last-child(-n + 3) {
        border-width: 0 1px 1px 0;
    }

    .knowledge-card:nth-child(2n) {
        border-right-width: 0;
    }

    .knowledge-card:nth-last-child(-n + 2) {
        border-bottom-width: 0;
    }

    .felix-image img {
        height: 520px;
    }
}

@media (max-width: 680px) {
    .section,
    .article-preview,
    .site-footer {
        width: min(100% - 30px, var(--max));
    }

    .site-header {
        min-height: auto;
        padding: 12px 15px;
    }

    .brand {
        min-width: 0;
    }

    .brand strong {
        font-size: 0.9rem;
    }

    .brand-logo {
        width: 36px;
        height: 42px;
    }

    .header-action {
        margin-left: auto;
        padding-inline: 13px;
    }

    .issue-pill {
        display: none;
    }

    .nav-links {
        width: 100%;
        gap: 4px;
        justify-content: space-between;
        overflow-x: visible;
    }

    .nav-links a {
        padding-inline: 8px;
        font-size: 0.84rem;
    }

    .hero-inner {
        width: min(100% - 30px, var(--max));
        min-height: 740px;
        padding: 44px 0 52px;
        align-items: start;
    }

    .hero-bg {
        height: 48%;
        top: auto;
        object-position: 57% center;
    }

    .hero::before {
        background:
            linear-gradient(180deg, #ffffff 0%, #ffffff 52%, rgba(240, 245, 248, 0) 66%),
            linear-gradient(0deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0) 35%);
    }

    .hero::after {
        display: none;
    }

    h1 {
        font-size: 3.25rem;
    }

    .hero-subtitle {
        font-size: 2rem;
    }

    .hero-stamp {
        display: none;
    }

    .article-preview {
        padding-top: 28px;
    }

    .editorial-index {
        width: min(100% - 30px, var(--max));
        grid-template-columns: 1fr;
    }

    .editorial-index a {
        min-height: auto;
        border-right: 1px solid var(--line);
    }

    .section {
        padding-block: 58px;
    }

    .article-body,
    .checklist-panel,
    .ask-section {
        padding: 22px;
    }

    .checker-options,
    .fact-grid,
    .knowledge-grid,
    .profile-list,
    .gallery-strip,
    .gallery-strip-small {
        grid-template-columns: 1fr;
    }

    .knowledge-card,
    .knowledge-card:nth-child(2n),
    .knowledge-card:nth-last-child(-n + 2) {
        border-width: 0 0 1px 0;
    }

    .knowledge-card:last-child {
        border-bottom-width: 0;
    }

    .fact-card,
    .knowledge-card {
        min-height: auto;
    }

    .reifecheck,
    .felix-section {
        padding-inline: 15px;
    }

    .felix-image img,
    .gallery-strip img {
        height: 360px;
    }

    .article-visual img {
        min-height: 270px;
    }

    .checker-result strong {
        font-size: 3.5rem;
    }

    .source-list {
        columns: 1;
    }

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