:root {
    --navy: #0f2347;
    --navy-deep: #081528;
    --navy-mid: #1a3566;
    --white: #ffffff;
    --off-white: #f4f6f9;
    --text: #1c2838;
    --text-muted: #4a5d73;
    --accent: #c41e2a;
    --accent-hover: #9e1822;
    --gold: #b8860b;
    --border: #d8dee8;
    --shadow: 0 12px 40px rgba(8, 21, 40, 0.12);
    --radius: 10px;
    --header-h: 64px;
    --font-sans: "Source Sans 3", system-ui, -apple-system, "Segoe UI", sans-serif;
    --font-serif: "Merriweather", Georgia, "Times New Roman", serif;
    --max-width: 1120px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-sans);
    font-size: 1.0625rem;
    line-height: 1.65;
    color: var(--text);
    background: var(--off-white);
}

img,
video {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--navy-mid);
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

a:hover {
    color: var(--accent);
}

.container {
    width: min(100% - 2rem, var(--max-width));
    margin-inline: auto;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 9999;
    padding: 0.75rem 1rem;
    background: var(--gold);
    color: var(--navy-deep);
    font-weight: 700;
}

.skip-link:focus {
    left: 1rem;
    top: 1rem;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(15, 35, 71, 0.97);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.15);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: var(--header-h);
    gap: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
}

.logo:hover {
    color: var(--white);
}

.logo-mark {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    display: block;
    object-fit: contain;
}

.logo-text em {
    font-style: normal;
    color: #f0c674;
}

.site-nav ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem 1.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-nav a {
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
}

.site-nav a:hover,
.site-nav a:focus-visible {
    color: var(--white);
}

.nav-cta {
    color: #f0c674 !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 6px;
    background: transparent;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    height: 2px;
    width: 22px;
    margin-inline: auto;
    background: var(--white);
    transition: transform 0.2s, opacity 0.2s;
}

.hero {
    position: relative;
    background: var(--navy-deep);
    color: var(--white);
    padding: clamp(3rem, 8vw, 5.5rem) 0 clamp(3.5rem, 7vw, 4.5rem);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(160deg, rgba(8, 21, 40, 0.92) 0%, rgba(15, 35, 71, 0.85) 50%, rgba(26, 53, 102, 0.75) 100%),
        repeating-linear-gradient(
            -12deg,
            transparent,
            transparent 48px,
            rgba(255, 255, 255, 0.02) 48px,
            rgba(255, 255, 255, 0.02) 49px
        );
    pointer-events: none;
}

.hero-inner {
    position: relative;
}

.hero-eyebrow {
    margin: 0 0 1rem;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.78);
    max-width: 42rem;
    border-left: 3px solid var(--gold);
    padding-left: 1rem;
}

.hero h1 {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 5vw, 2.65rem);
    line-height: 1.25;
    margin: 0 0 0.5rem;
    font-weight: 700;
    max-width: 20ch;
}

.hero-brand {
    margin: 0 0 1.25rem;
    font-size: clamp(1.1rem, 3vw, 1.35rem);
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.01em;
}

.hero-brand em {
    font-style: normal;
    color: #fff;
}

.hero-lead,
.hero-questions {
    margin: 0 0 1rem;
    max-width: 40rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-questions {
    font-weight: 600;
    color: #f0c674;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 2rem 0 2.5rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.35rem;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

.btn-primary:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    color: var(--white);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.45);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.hero-address {
    display: inline-block;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius);
}

.hero-address-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.25rem;
}

.hero-address address {
    font-style: normal;
    font-weight: 600;
    margin: 0;
}

.section {
    padding: clamp(2.5rem, 6vw, 4rem) 0;
}

.section:nth-child(odd) {
    background: var(--white);
}

.section:nth-child(even) {
    background: var(--off-white);
}

.section h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    color: var(--navy);
    margin: 0 0 1.25rem;
    line-height: 1.3;
}

.section-intro {
    margin: 0 0 1.5rem;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.prose p {
    margin: 0 0 1rem;
    max-width: 68ch;
}

.prose p:last-child {
    margin-bottom: 0;
}

.pull-quote {
    margin: 2rem 0 0;
    padding: 1.5rem 1.75rem;
    background: var(--off-white);
    border-left: 4px solid var(--accent);
    border-radius: 0 var(--radius) var(--radius) 0;
    max-width: 52rem;
}

.pull-quote p {
    margin: 0 0 0.5rem;
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: var(--navy);
}

.pull-quote p:last-child {
    margin-bottom: 0;
}

.situation-highlight {
    background: var(--white);
}

.situation-highlight__alert {
    margin: 0 0 1.5rem;
    padding: clamp(1.25rem, 3vw, 1.75rem) clamp(1.35rem, 3.5vw, 2rem);
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.08) 0%, var(--off-white) 55%);
    border: 1px solid rgba(196, 30, 58, 0.22);
    border-left: 4px solid var(--accent);
    border-radius: var(--radius);
    max-width: 52rem;
}

.situation-highlight__lead {
    margin: 0 0 1rem;
    font-size: 1.1rem;
    line-height: 1.55;
    color: var(--navy);
}

.situation-highlight__facts {
    margin: 0;
    padding-left: 1.25rem;
    display: grid;
    gap: 0.65rem;
    max-width: 68ch;
    color: var(--text);
}

.situation-highlight__facts li {
    line-height: 1.5;
}

.situation-highlight__prose {
    margin-bottom: 0;
}

.situation-highlight__quote {
    margin-top: 1.75rem;
}

.section-video {
    background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%);
    border-bottom: 1px solid var(--border);
}

.section-video .container {
    min-width: 0;
    max-width: 100%;
}

.video-figure {
    margin: 0;
    min-width: 0;
    max-width: 100%;
}

.video-player-wrap {
    position: relative;
    width: 100%;
    max-width: min(56rem, 100%);
    margin-inline: auto;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--navy-deep);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    box-sizing: border-box;
}

.video-player {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: min(70vh, 720px);
    vertical-align: middle;
    background: var(--navy-deep);
    object-fit: contain;
}

.video-fallback {
    margin: 0;
    padding: 1.5rem;
    color: var(--white);
    text-align: center;
}

.video-fallback a {
    color: #f0c674;
}

.video-missing {
    margin: 0;
    padding: 1.25rem 1.5rem;
    color: var(--white);
    font-size: 0.95rem;
    line-height: 1.55;
    text-align: left;
}

.video-caption {
    margin: 1rem auto 0;
    max-width: 56rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.5;
}

.video-blocks {
    display: grid;
    gap: 2rem;
    margin-top: 1.5rem;
    min-width: 0;
    max-width: 100%;
}

@media (min-width: 1100px) {
    .video-blocks {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

.video-block {
    margin: 0;
    padding: clamp(1.25rem, 3vw, 2rem);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.video-block__eyebrow {
    margin: 0 0 0.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--navy-mid);
}

.video-block--reportage {
    border-top: 4px solid var(--navy-mid);
}

.video-block__title {
    font-family: var(--font-serif);
    font-size: clamp(1.2rem, 2.5vw, 1.45rem);
    color: var(--navy);
    margin: 0 0 0.75rem;
    line-height: 1.35;
}

.video-block__intro {
    margin: 0 0 1.25rem;
    color: var(--text-muted);
    max-width: 68ch;
    line-height: 1.6;
}

.section-documents {
    background: linear-gradient(180deg, #eef2f8 0%, var(--white) 100%);
    border-bottom: 1px solid var(--border);
}

.doc-card {
    margin-top: 0.5rem;
    padding: clamp(1.25rem, 3vw, 2rem);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border-top: 4px solid var(--navy);
}

.doc-card__header {
    margin-bottom: 1.25rem;
}

.doc-badge {
    display: inline-block;
    margin: 0 0 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.2rem 0.6rem;
    background: var(--navy);
    color: var(--white);
    border-radius: 4px;
}

.doc-card__title {
    font-family: var(--font-serif);
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    margin: 0;
    line-height: 1.35;
    color: var(--navy);
}

.doc-meta {
    margin: 0 0 1.5rem;
    padding: 1rem 1.25rem;
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    display: grid;
    gap: 0.75rem;
}

.doc-meta__row {
    display: grid;
    gap: 0.2rem;
}

@media (min-width: 640px) {
    .doc-meta__row {
        grid-template-columns: 9.5rem 1fr;
        gap: 1rem;
    }
}

.doc-meta dt {
    margin: 0;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-muted);
}

.doc-meta dd {
    margin: 0;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.45;
}

.doc-kad {
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

.doc-conclusion {
    margin: 0 0 1.25rem;
    padding: 1.35rem 1.5rem;
    background: linear-gradient(135deg, rgba(15, 35, 71, 0.06) 0%, rgba(196, 30, 42, 0.05) 100%);
    border-left: 4px solid var(--accent);
    border-radius: 0 var(--radius) var(--radius) 0;
}

.doc-conclusion__label {
    margin: 0 0 0.75rem;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--navy-mid);
}

.doc-conclusion p {
    margin: 0 0 0.75rem;
    font-family: var(--font-serif);
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--navy);
}

.doc-conclusion p:last-of-type {
    margin-bottom: 0;
}

.doc-conclusion__verdict {
    font-size: 1.15rem !important;
    padding: 0.75rem 0 0.25rem;
}

.doc-conclusion footer {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: normal;
    font-family: var(--font-sans);
}

.doc-context {
    margin-bottom: 1.25rem;
}

.doc-actions {
    margin-bottom: 1.5rem;
}

.section-documents .btn-primary {
    color: var(--white);
}

.doc-scans {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    min-width: 0;
    max-width: 100%;
}

.doc-scan {
    margin: 0;
}

.doc-scan__trigger {
    display: block;
    width: 100%;
    max-width: 100%;
    padding: 0;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-sizing: border-box;
    background: var(--off-white);
    cursor: zoom-in;
    position: relative;
    box-shadow: var(--shadow);
    transition: box-shadow 0.2s, border-color 0.2s;
}

.doc-scan__trigger:hover,
.doc-scan__trigger:focus-visible {
    border-color: var(--navy-mid);
    box-shadow: 0 16px 48px rgba(8, 21, 40, 0.18);
    outline: none;
}

.doc-scan__trigger img {
    width: 100%;
    max-width: 100%;
    height: auto;
}

.doc-scan__zoom {
    position: absolute;
    right: 0.75rem;
    bottom: 0.75rem;
    padding: 0.35rem 0.65rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--white);
    background: rgba(15, 35, 71, 0.85);
    border-radius: 4px;
    pointer-events: none;
}

.doc-scan figcaption {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
}

.doc-excerpts {
    margin-top: 1.5rem;
    padding: 1rem 1.25rem;
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.doc-excerpts summary {
    font-weight: 700;
    color: var(--navy);
    cursor: pointer;
}

.doc-quote {
    margin: 1rem 0 0;
    padding: 1rem 1.25rem;
    background: var(--white);
    border-left: 3px solid var(--navy-mid);
    border-radius: 0 var(--radius) var(--radius) 0;
}

.doc-quote p {
    margin: 0;
    font-family: var(--font-serif);
    font-size: 0.98rem;
    line-height: 1.55;
    color: var(--navy);
}

.doc-note {
    margin: 0.75rem 0 0;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.doc-lightbox {
    width: min(96vw, 1100px);
    max-width: 96vw;
    max-height: 96vh;
    box-sizing: border-box;
    overflow: hidden;
    padding: 0;
    border: none;
    border-radius: var(--radius);
    background: var(--navy-deep);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

.doc-lightbox::backdrop {
    background: rgba(8, 21, 40, 0.88);
}

.doc-lightbox__toolbar {
    position: sticky;
    top: 0;
    z-index: 2;
    display: flex;
    justify-content: flex-end;
    padding: 0.5rem;
    margin: 0;
    background: linear-gradient(180deg, rgba(8, 21, 40, 0.95) 0%, transparent 100%);
}

.doc-lightbox__close {
    width: 2.5rem;
    height: 2.5rem;
    border: none;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
}

.doc-lightbox__close:hover {
    background: rgba(255, 255, 255, 0.25);
}

.doc-lightbox__img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: calc(96vh - 3rem);
    object-fit: contain;
    margin: 0 auto;
    padding: 0 0.5rem 0.5rem;
    box-sizing: border-box;
}

.section-media {
    background: linear-gradient(180deg, var(--white) 0%, #eef2f8 100%);
}

.media-card {
    margin-top: 0.5rem;
    padding: clamp(1.25rem, 3vw, 2rem);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border-top: 4px solid var(--gold);
}

.media-card__header {
    margin-bottom: 1.25rem;
}

.media-source {
    margin: 0 0 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
}

.media-source__label {
    font-weight: 400;
}

.media-card__title {
    font-family: var(--font-serif);
    font-size: clamp(1.25rem, 2.5vw, 1.6rem);
    margin: 0 0 0.35rem;
    line-height: 1.35;
}

.media-card__title a {
    color: var(--navy);
    text-decoration: none;
}

.media-card__title a:hover {
    color: var(--accent);
    text-decoration: underline;
}

.media-card__subtitle {
    margin: 0 0 0.75rem;
    font-size: 1.05rem;
    color: var(--navy-mid);
    font-weight: 600;
}

.media-meta {
    margin: 0;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.media-meta__sep {
    margin-inline: 0.35rem;
}

.media-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 0.15rem 0.5rem;
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: 4px;
    color: var(--navy-mid);
}

.media-summary {
    margin-bottom: 1.25rem;
}

.media-quote {
    margin: 0 0 1.25rem;
    padding: 1.25rem 1.5rem;
    background: var(--off-white);
    border-left: 4px solid var(--navy-mid);
    border-radius: 0 var(--radius) var(--radius) 0;
}

.media-quote p {
    margin: 0;
    font-family: var(--font-serif);
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--navy);
}

.media-quote footer {
    margin-top: 0.75rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: normal;
}

.media-readmore {
    margin: 1.5rem 0 0.75rem;
}

.media-note {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-muted);
    max-width: 72ch;
}

.question-cards {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
}

.question-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem 1.25rem 1.25rem 1rem;
    box-shadow: var(--shadow);
    position: relative;
    padding-left: 3.5rem;
}

.question-num {
    position: absolute;
    left: 1rem;
    top: 1.15rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.05em;
}

.question-card h3 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.45;
    color: var(--navy);
}

.closing-box {
    text-align: center;
    padding: clamp(2rem, 5vw, 3rem);
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    color: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.closing-box h2 {
    color: var(--white);
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    margin-bottom: 1rem;
}

.closing-text {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 0.75rem;
}

.closing-sub {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    max-width: 48ch;
    margin-inline: auto;
}

.appeal-links {
    margin: 0.75rem 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.65rem;
    max-width: 42rem;
}

.appeal-links__item {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.35rem 0.5rem;
    font-size: 1.05rem;
    line-height: 1.5;
}

.appeal-links__name {
    font-weight: 700;
    color: var(--navy);
}

.appeal-links__sep {
    color: var(--text-muted);
}

.appeal-links__action {
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 0.15em;
}

.appeal-links__action:hover {
    color: var(--accent);
}

.hero--appeal .hero-brand em {
    color: #f0c674;
}

.appeal-letter__salutation {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 700;
}

.appeal-letter__closing {
    margin-top: 2rem;
    padding: 1.25rem 1.5rem;
    background: var(--off-white);
    border-left: 3px solid var(--accent);
}

.appeal-letter__signature {
    margin-top: 2.5rem;
    font-style: italic;
}

.appeal-letter__meta {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    font-style: normal;
    color: var(--text-muted);
}

.appeal-main-link {
    margin: 0;
    padding: 1.25rem 0 0;
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 68ch;
}

.appeal-main-link a {
    font-weight: 600;
}

.content-article > .appeal-main-link.container {
    padding-bottom: 0.5rem;
}

.section-share {
    background: var(--white) !important;
}

.share-panel {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
}

.share-panel .share-copy {
    align-self: flex-start;
    max-width: 100%;
}

.share-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(8.75rem, 1fr));
    gap: 0.65rem;
    width: 100%;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.75rem;
    padding: 0.6rem 0.75rem;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 0.85rem;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    border: 2px solid var(--border);
    background: var(--off-white);
    color: var(--navy);
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.share-btn:hover {
    color: var(--navy-deep);
}

.share-btn--telegram {
    border-color: rgba(34, 158, 217, 0.45);
    background: rgba(34, 158, 217, 0.1);
    color: #1a7db3;
}

.share-btn--vk {
    border-color: rgba(0, 119, 255, 0.4);
    background: rgba(0, 119, 255, 0.08);
    color: #0066dd;
}

.share-btn--ok {
    border-color: rgba(237, 129, 0, 0.45);
    background: rgba(237, 129, 0, 0.1);
    color: #c56d00;
}

.share-btn--max {
    border-color: rgba(0, 119, 255, 0.35);
    background: rgba(124, 58, 237, 0.08);
    color: #5b21b6;
}

.share-btn--whatsapp {
    border-color: rgba(37, 211, 102, 0.45);
    background: rgba(37, 211, 102, 0.1);
    color: #1a9e4b;
}

.share-disclaimer {
    margin: 0;
    font-size: 0.75rem;
    line-height: 1.45;
    color: var(--text-muted);
    max-width: 42rem;
}

.share-url {
    font-size: 0.9rem;
    color: var(--text-muted);
    word-break: break-all;
}

.site-footer {
    background: var(--navy-deep);
    color: rgba(255, 255, 255, 0.85);
    padding: 3rem 0 0;
}

.footer-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    padding-bottom: 2rem;
}

.footer-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    margin: 0 0 0.5rem;
    color: var(--white);
}

.footer-note {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    max-width: 28ch;
}

.footer-heading {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin: 0 0 0.75rem;
    color: rgba(255, 255, 255, 0.55);
}

.footer-address address {
    font-style: normal;
    font-weight: 600;
    color: var(--white);
}

.footer-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.25rem 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom p {
    margin: 0;
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .site-nav {
        position: absolute;
        top: var(--header-h);
        left: 0;
        right: 0;
        background: var(--navy-deep);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .site-nav.is-open {
        max-height: 520px;
    }

    .site-nav ul {
        flex-direction: column;
        padding: 1rem 1.5rem 1.5rem;
        gap: 0.75rem;
    }

    .header-inner {
        position: relative;
        flex-wrap: wrap;
    }

    .site-header {
        position: sticky;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
    }
}
