@font-face {
    font-family: "IBM Plex Sans";
    src: url("../fonts/ibm-plex-sans-cyrillic.woff2") format("woff2");
    font-style: normal;
    font-weight: 100 700;
    font-display: block;
    unicode-range: U+0400-052F, U+1C80-1C8A, U+20B4;
}

@font-face {
    font-family: "IBM Plex Sans";
    src: url("../fonts/ibm-plex-sans-latin.woff2") format("woff2");
    font-style: normal;
    font-weight: 100 700;
    font-display: block;
    unicode-range: U+0000-024F, U+1E00-1EFF, U+2000-206F, U+20AC, U+2122;
}

@font-face {
    font-family: "IBM Plex Sans";
    src: url("../fonts/ibm-plex-sans-italic-cyrillic.woff2") format("woff2");
    font-style: italic;
    font-weight: 100 700;
    font-display: block;
    unicode-range: U+0400-052F, U+1C80-1C8A, U+20B4;
}

@font-face {
    font-family: "IBM Plex Sans";
    src: url("../fonts/ibm-plex-sans-italic-latin.woff2") format("woff2");
    font-style: italic;
    font-weight: 100 700;
    font-display: block;
    unicode-range: U+0000-024F, U+1E00-1EFF, U+2000-206F, U+20AC, U+2122;
}

@font-face {
    font-family: "IBM Plex Serif";
    src: url("../fonts/ibm-plex-serif-600-cyrillic.woff2") format("woff2");
    font-style: normal;
    font-weight: 600;
    font-display: block;
    unicode-range: U+0400-052F, U+1C80-1C8A, U+20B4;
}

@font-face {
    font-family: "IBM Plex Serif";
    src: url("../fonts/ibm-plex-serif-600-latin.woff2") format("woff2");
    font-style: normal;
    font-weight: 600;
    font-display: block;
    unicode-range: U+0000-024F, U+1E00-1EFF, U+2000-206F, U+20AC, U+2122;
}

@font-face {
    font-family: "IBM Plex Serif";
    src: url("../fonts/ibm-plex-serif-700-cyrillic.woff2") format("woff2");
    font-style: normal;
    font-weight: 700;
    font-display: block;
    unicode-range: U+0400-052F, U+1C80-1C8A, U+20B4;
}

@font-face {
    font-family: "IBM Plex Serif";
    src: url("../fonts/ibm-plex-serif-700-latin.woff2") format("woff2");
    font-style: normal;
    font-weight: 700;
    font-display: block;
    unicode-range: U+0000-024F, U+1E00-1EFF, U+2000-206F, U+20AC, U+2122;
}

@font-face {
    font-family: "IBM Plex Serif";
    src: url("../fonts/ibm-plex-serif-italic-500-cyrillic.woff2") format("woff2");
    font-style: italic;
    font-weight: 500;
    font-display: block;
    unicode-range: U+0400-052F, U+1C80-1C8A, U+20B4;
}

@font-face {
    font-family: "IBM Plex Serif";
    src: url("../fonts/ibm-plex-serif-italic-500-latin.woff2") format("woff2");
    font-style: italic;
    font-weight: 500;
    font-display: block;
    unicode-range: U+0000-024F, U+1E00-1EFF, U+2000-206F, U+20AC, U+2122;
}

:root {
    --paper: #f3f0e8;
    --paper-deep: #e8e2d6;
    --white: #fffefb;
    --ink: #1c252d;
    --muted: #5d6670;
    --navy: #102b49;
    --navy-deep: #0a2037;
    --blue: #3b7dd8;
    --blue-dark: #285f9f;
    --red: #b44336;
    --green: #23725b;
    --line: #c9c2b6;
    --line-dark: #8d918f;
    --danger: #a63831;
    --warning: #926b20;
    --body-font: "IBM Plex Sans", Arial, sans-serif;
    --display-font: "IBM Plex Serif", Georgia, serif;
    --condensed-font: "IBM Plex Sans", Arial, sans-serif;
    --container: 1240px;
    --gutter: clamp(20px, 4vw, 52px);
    --edge-bleed: max(var(--gutter), calc((100vw - var(--container)) / 2));
    --section-space: clamp(72px, 8vw, 112px);
    --focus: 0 0 0 4px rgba(59, 125, 216, 0.24);
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--body-font);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.62;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body::selection {
    background: var(--blue);
    color: var(--white);
}

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

a {
    color: var(--blue-dark);
    text-underline-offset: 0.18em;
    text-decoration-thickness: 1px;
}

a:hover {
    color: var(--navy);
}

button,
input,
select,
textarea {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

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

h1,
h2,
h3,
p,
ul,
ol,
blockquote,
figure {
    margin-top: 0;
}

h1,
h2,
h3 {
    color: var(--navy);
    font-family: var(--display-font);
    font-weight: 600;
    letter-spacing: -0.025em;
}

h1 {
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: 1;
}

h2 {
    font-size: clamp(2.1rem, 4vw, 3.65rem);
    line-height: 1.08;
}

h3 {
    font-size: clamp(1.35rem, 2vw, 1.7rem);
    line-height: 1.18;
}

.container {
    width: min(100% - (2 * var(--gutter)), var(--container));
    margin-inline: auto;
    padding: 0;
}

.skip-link {
    position: fixed;
    z-index: 2000;
    top: 12px;
    left: 12px;
    transform: translateY(-160%);
    padding: 12px 18px;
    background: var(--white);
    color: var(--navy);
    border: 2px solid var(--navy);
    font-weight: 750;
}

.skip-link:focus {
    transform: translateY(0);
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    color: var(--blue-dark);
    font-family: var(--condensed-font);
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    line-height: 1.2;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 28px;
    height: 4px;
    flex: 0 0 auto;
    background: var(--red);
    content: "";
}

.button {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 13px 24px;
    border: 2px solid transparent;
    border-radius: 2px;
    font-family: var(--condensed-font);
    font-size: 1.05rem;
    font-weight: 780;
    letter-spacing: 0.015em;
    line-height: 1.1;
    text-align: center;
    text-decoration: none;
    transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button--primary {
    background: var(--blue);
    border-color: var(--blue);
    color: var(--white);
}

.button--primary:hover {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--white);
}

.button--secondary {
    background: transparent;
    border-color: var(--navy);
    color: var(--navy);
}

.button--secondary:hover {
    background: var(--navy);
    color: var(--white);
}

.button--light {
    background: var(--white);
    border-color: var(--white);
    color: var(--navy);
}

.button--light:hover {
    background: transparent;
    color: var(--white);
}

.button--danger {
    background: var(--danger);
    border-color: var(--danger);
    color: var(--white);
}

.button--small {
    min-height: 44px;
    padding: 10px 18px;
    font-size: 0.95rem;
}

.button--wide {
    width: 100%;
}

.civic-strip {
    background: var(--navy-deep);
    color: rgba(255, 255, 255, 0.86);
    font-family: var(--condensed-font);
    font-size: 0.86rem;
    font-weight: 620;
    letter-spacing: 0.035em;
}

.civic-strip__inner {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.civic-strip__inner > span {
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

.civic-strip__pulse {
    width: 7px;
    height: 7px;
    display: inline-block;
    background: var(--red);
}

.civic-strip a {
    color: var(--white);
}

.site-header {
    position: sticky;
    z-index: 1000;
    top: 0;
    background: rgba(255, 254, 251, 0.96);
    border-bottom: 1px solid var(--navy);
    backdrop-filter: blur(12px);
}

.site-header__inner {
    min-height: 92px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
}

.brand {
    min-width: 0;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: var(--navy);
    text-decoration: none;
}

.brand:hover {
    color: var(--navy);
}

.brand__mark {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    flex: 0 0 58px;
}

.brand__mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand__text {
    min-width: 0;
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand__text strong {
    font-family: var(--condensed-font);
    font-size: 1.58rem;
    font-weight: 700;
    letter-spacing: -0.025em;
}

.brand__text small {
    margin-top: 6px;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 650;
    letter-spacing: 0.03em;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: clamp(16px, 2vw, 30px);
}

.site-nav > a:not(.button) {
    position: relative;
    padding: 32px 0 28px;
    color: var(--ink);
    font-family: var(--condensed-font);
    font-size: 1rem;
    font-weight: 710;
    text-decoration: none;
}

.site-nav > a:not(.button)::after {
    position: absolute;
    right: 0;
    bottom: 20px;
    left: 0;
    height: 3px;
    transform: scaleX(0);
    transform-origin: left;
    background: var(--blue);
    content: "";
    transition: transform 160ms ease;
}

.site-nav > a:not(.button):hover::after,
.site-nav > a.is-active::after {
    transform: scaleX(1);
}

.nav-toggle {
    width: 50px;
    height: 50px;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: 2px solid var(--navy);
    border-radius: 0;
}

.nav-toggle span:not(.visually-hidden) {
    width: 22px;
    height: 2px;
    background: var(--navy);
}

.hero {
    overflow: hidden;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
}

.hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.16fr) minmax(420px, 0.84fr);
    align-items: stretch;
}

.hero__copy {
    position: relative;
    z-index: 2;
    min-width: 0;
    padding: clamp(68px, 6vw, 96px) clamp(32px, 4vw, 64px) clamp(68px, 6vw, 96px) 0;
}

.hero h1 {
    max-width: 780px;
    margin-bottom: 32px;
    font-size: clamp(3.4rem, 5.2vw, 4.75rem);
    line-height: 0.96;
}

.hero h1 span {
    display: block;
    margin-top: 0.12em;
    color: var(--blue);
    font-style: italic;
    font-weight: 500;
}

.hero__lead {
    max-width: 690px;
    margin-bottom: 34px;
    color: #37424c;
    font-size: clamp(1.08rem, 1.7vw, 1.28rem);
    line-height: 1.58;
}

.hero__lead strong {
    color: var(--navy);
    font-weight: 760;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
}

.hero__trust {
    max-width: 760px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin: 44px 0 0;
    padding: 18px 0;
    border-top: 1px solid var(--line-dark);
    border-bottom: 1px solid var(--line-dark);
    list-style: none;
}

.hero__trust li {
    padding: 0 16px;
    color: var(--navy);
    font-family: var(--condensed-font);
    font-size: 0.96rem;
    font-weight: 720;
    line-height: 1.3;
    text-align: center;
}

.hero__trust li + li {
    border-left: 1px solid var(--line);
}

.hero__visual {
    position: relative;
    min-height: 660px;
    margin-right: calc(var(--edge-bleed) * -1);
    background: var(--navy);
}

.hero__image,
.hero__image img {
    width: 100%;
    height: 100%;
}

.hero__image {
    position: relative;
    overflow: hidden;
}

.hero__image img {
    object-fit: cover;
    object-position: 70% center;
    filter: saturate(0.88) contrast(1.03);
}

.hero__image::after {
    position: absolute;
    z-index: 1;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 32, 55, 0.02) 38%, rgba(10, 32, 55, 0.42) 100%);
    pointer-events: none;
    content: "";
}

.hero__image-caption {
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 25px 34px 27px;
    background: rgba(10, 32, 55, 0.92);
    color: var(--white);
}

.hero__image-caption small {
    color: rgba(255, 255, 255, 0.72);
    font-family: var(--condensed-font);
    font-size: 0.84rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.hero__image-caption strong {
    font-family: var(--display-font);
    font-size: 1.05rem;
    font-weight: 530;
}

.hero__image-caption a {
    position: relative;
    z-index: 1;
    align-self: flex-start;
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.7rem;
    line-height: 1.3;
    text-decoration-color: rgba(255, 255, 255, 0.35);
}

.hero__image-caption a:hover {
    color: var(--white);
}

.section {
    padding-block: var(--section-space);
}

.section--soft {
    background: var(--white);
}

.section-heading {
    max-width: 900px;
    margin-bottom: clamp(44px, 6vw, 72px);
}

.section-heading h2 {
    margin-bottom: 24px;
}

.section-heading > p:last-child {
    max-width: 760px;
    margin-bottom: 0;
    color: var(--muted);
    font-size: 1.12rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 4px solid var(--navy);
    border-bottom: 1px solid var(--navy);
}

.step-card {
    min-width: 0;
    padding: 34px 34px 40px;
}

.step-card + .step-card {
    border-left: 1px solid var(--line);
}

.step-card__number {
    display: block;
    margin-bottom: 45px;
    color: var(--blue);
    font-family: var(--condensed-font);
    font-size: 3.6rem;
    font-weight: 250;
    letter-spacing: -0.04em;
    line-height: 1;
}

.step-card h3 {
    margin-bottom: 14px;
}

.step-card p {
    margin: 0;
    color: var(--muted);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--navy);
    border-left: 1px solid var(--navy);
}

.category-card {
    min-height: 112px;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 22px;
    background: rgba(255, 254, 251, 0.42);
    border-right: 1px solid var(--navy);
    border-bottom: 1px solid var(--navy);
    color: var(--navy);
    text-decoration: none;
    transition: background-color 150ms ease, color 150ms ease, transform 150ms ease;
}

.category-card:hover {
    background: var(--navy);
    color: var(--white);
    transform: translateY(-3px);
}

.category-card__icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    flex: 0 0 46px;
    border: 1px solid currentColor;
    line-height: 1;
}

.category-card__icon svg {
    width: 25px;
    height: 25px;
    overflow: visible;
}

.category-card strong {
    font-family: var(--condensed-font);
    font-size: 1.04rem;
    font-weight: 740;
    line-height: 1.18;
}

.manifesto {
    position: relative;
    overflow: hidden;
    background: var(--navy);
    color: var(--white);
}

.manifesto__image {
    position: absolute;
    inset: 0 auto 0 0;
    width: 50%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.7) contrast(1.08);
}

.manifesto__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    padding-block: clamp(80px, 10vw, 136px);
}

.manifesto blockquote {
    align-self: center;
    margin: 0 48px 0 0;
    padding: 42px;
    background: var(--red);
    color: var(--white);
    font-family: var(--display-font);
    font-size: clamp(1.8rem, 3vw, 3rem);
    font-weight: 530;
    letter-spacing: -0.035em;
    line-height: 1.14;
}

.manifesto blockquote span {
    display: block;
    margin-top: 0.45em;
    color: rgba(255, 255, 255, 0.78);
}

.manifesto__copy {
    padding: 12px 0 12px clamp(48px, 7vw, 96px);
}

.manifesto__copy p {
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.12rem;
}

.manifesto__copy .button {
    margin-top: 18px;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 4px solid var(--blue);
    border-bottom: 1px solid var(--line-dark);
}

.principle {
    padding: 32px 26px 38px;
}

.principle + .principle {
    border-left: 1px solid var(--line);
}

.principle > span {
    display: block;
    margin-bottom: 54px;
    color: var(--red);
    font-family: var(--condensed-font);
    font-size: 0.95rem;
    font-weight: 820;
    letter-spacing: 0.08em;
}

.principle h3 {
    margin-bottom: 13px;
}

.principle p {
    margin: 0;
    color: var(--muted);
}

.cta-band {
    background: var(--blue);
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-band__inner {
    min-height: 260px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 56px;
    padding-block: 54px;
}

.cta-band h2 {
    max-width: 860px;
    margin-bottom: 12px;
    color: var(--white);
    font-size: clamp(2.1rem, 4.2vw, 4rem);
}

.cta-band p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.08rem;
}

.page-hero {
    position: relative;
    overflow: hidden;
    background: var(--paper-deep);
    border-bottom: 1px solid var(--navy);
}

/* .page-hero::after {
    position: absolute;
    top: 0;
    right: max(var(--gutter), calc((100vw - var(--container)) / 2));
    width: 72px;
    height: 12px;
    background: var(--red);
    content: "";
} */

.page-hero__inner {
    max-width: 980px;
    padding-block: clamp(72px, 9vw, 116px);
}

.page-hero h1 {
    margin-bottom: 26px;
}

.page-hero__inner > p:not(.eyebrow) {
    max-width: 780px;
    margin-bottom: 0;
    color: #46515b;
    font-size: clamp(1.08rem, 1.8vw, 1.28rem);
}

.page-hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin-top: 34px;
    border-top: 1px solid var(--line-dark);
    border-bottom: 1px solid var(--line-dark);
}

.meta-pill {
    padding: 11px 18px;
    color: var(--navy);
    font-family: var(--condensed-font);
    font-size: 0.92rem;
    font-weight: 720;
}

.meta-pill + .meta-pill {
    border-left: 1px solid var(--line-dark);
}

.content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.85fr) minmax(280px, 0.72fr);
    align-items: start;
    gap: clamp(42px, 7vw, 94px);
}

.content-grid > * {
    min-width: 0;
}

.content-card {
    background: var(--white);
    border-top: 5px solid var(--navy);
    border-bottom: 1px solid var(--line);
    padding: clamp(30px, 4vw, 56px);
}

.content-card--spaced {
    margin-top: 46px;
}

.sidebar-card {
    padding: 28px 0 30px;
    border-top: 3px solid var(--navy);
}

.sidebar-card + .sidebar-card {
    margin-top: 30px;
}

.sidebar-card h2 {
    margin-bottom: 13px;
    font-size: 1.55rem;
}

.sidebar-card p:last-child,
.sidebar-card ul:last-child {
    margin-bottom: 0;
}

.notice-box {
    margin: 28px 0;
    padding: 22px 24px;
    background: rgba(59, 125, 216, 0.08);
    border-left: 5px solid var(--blue);
    color: var(--ink);
}

.notice-box strong {
    display: block;
    margin-bottom: 6px;
    color: var(--navy);
    font-family: var(--condensed-font);
    font-size: 1.05rem;
    font-weight: 800;
}

.notice-box p:last-child {
    margin-bottom: 0;
}

.notice-box--warning {
    background: rgba(146, 107, 32, 0.1);
    border-left-color: var(--warning);
}

.notice-box--danger {
    background: rgba(166, 56, 49, 0.08);
    border-left-color: var(--danger);
}

.pencho-feature {
    display: grid;
    grid-template-columns: 176px minmax(0, 1fr);
    gap: 30px;
    align-items: stretch;
    margin: 38px 0 46px;
    padding: 26px;
    background: var(--navy);
    color: var(--white);
}

.pencho-feature > img {
    width: 176px;
    height: 220px;
    object-fit: cover;
    object-position: center top;
    background: #aeb0ae;
}

.pencho-feature figcaption {
    align-self: center;
}

.pencho-feature .eyebrow {
    margin-bottom: 12px;
    color: #a8cbff;
}

.pencho-feature h3 {
    margin-bottom: 12px;
    color: var(--white);
}

.pencho-feature p:not(.eyebrow) {
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.82);
}

.pencho-feature small {
    display: block;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.75rem;
    line-height: 1.35;
}

.pencho-feature a {
    color: #c9ddff;
}

.pencho-feature a:hover {
    color: var(--white);
}

.municipality-figure {
    width: 100%;
    margin: 0 0 34px;
    overflow: hidden;
    border-top: 4px solid var(--red);
}

.municipality-figure img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center;
}

.municipality-figure figcaption {
    padding: 12px 0;
    color: var(--muted);
    font-size: 0.76rem;
    line-height: 1.4;
    border-bottom: 1px solid var(--line);
}

.idea-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-top: 4px solid var(--navy);
    border-bottom: 1px solid var(--line-dark);
}

.idea-card {
    padding: 34px;
}

.idea-card + .idea-card {
    border-left: 1px solid var(--line);
}

.idea-card h3 {
    margin-bottom: 14px;
}

.idea-card p {
    margin: 0;
    color: var(--muted);
}

.timeline {
    position: relative;
    max-width: 980px;
    margin-inline: auto;
    border-top: 4px solid var(--navy);
}

.timeline__item {
    display: grid;
    grid-template-columns: 104px 1fr;
    align-items: start;
    padding: 38px 0;
    border-bottom: 1px solid var(--line);
}

.timeline__number {
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    background: var(--navy);
    color: var(--white);
    font-family: var(--condensed-font);
    font-size: 1.5rem;
    font-weight: 780;
}

.timeline__content h2 {
    margin-bottom: 10px;
    font-size: clamp(1.6rem, 2.8vw, 2.3rem);
}

.timeline__content p {
    max-width: 760px;
    margin: 0;
    color: var(--muted);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 4px solid var(--navy);
    border-bottom: 1px solid var(--line-dark);
}

.contact-card {
    min-width: 0;
    padding: 32px;
}

.contact-card + .contact-card {
    border-left: 1px solid var(--line);
}

.contact-card__icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    margin-bottom: 48px;
    border: 2px solid var(--red);
    color: var(--red);
    font-family: var(--condensed-font);
    font-weight: 850;
}

.contact-card h2 {
    margin-bottom: 12px;
    font-size: 1.65rem;
}

.contact-card p {
    min-height: 88px;
    color: var(--muted);
}

.contact-card a {
    overflow-wrap: anywhere;
    font-weight: 720;
}

.legal-content {
    max-width: 930px;
    color: #35404a;
}

.legal-content > h2 {
    margin: 58px 0 18px;
    padding-top: 22px;
    border-top: 2px solid var(--navy);
    font-size: clamp(1.7rem, 3vw, 2.45rem);
}

.legal-content > h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    margin-top: 34px;
}

.legal-content p,
.legal-content li {
    font-size: 1.03rem;
    line-height: 1.72;
}

.legal-content ul,
.legal-content ol {
    padding-left: 1.35em;
}

.legal-content li + li {
    margin-top: 10px;
}

.legal-content table {
    width: 100%;
    margin: 26px 0;
    border-collapse: collapse;
}

.legal-content th,
.legal-content td {
    padding: 14px;
    border: 1px solid var(--line);
    text-align: left;
    vertical-align: top;
}

.signal-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.75fr) minmax(270px, 0.62fr);
    align-items: start;
    gap: clamp(36px, 5vw, 72px);
}

.signal-form {
    background: var(--white);
    border-top: 6px solid var(--navy);
    border-bottom: 1px solid var(--navy);
}

.form-section {
    padding: clamp(28px, 5vw, 54px);
}

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

.form-section__heading {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 22px;
    align-items: start;
    margin-bottom: 36px;
}

.form-section__number {
    color: var(--blue);
    font-family: var(--condensed-font);
    font-size: 2.3rem;
    font-weight: 300;
    line-height: 1;
}

.form-section__heading h2 {
    margin-bottom: 8px;
    font-size: clamp(1.7rem, 3vw, 2.3rem);
}

.form-section__heading p {
    margin: 0;
    color: var(--muted);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
}

.form-field {
    min-width: 0;
}

.form-field--full {
    grid-column: 1 / -1;
}

.form-label {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 9px;
    color: var(--navy);
    font-family: var(--condensed-font);
    font-size: 1.02rem;
    font-weight: 760;
}

.form-label small {
    color: var(--muted);
    font-family: var(--body-font);
    font-size: 0.75rem;
    font-weight: 500;
}

.form-control,
.form-select {
    width: 100%;
    min-height: 58px;
    padding: 13px 16px;
    background-color: var(--white);
    border: 1.5px solid var(--line-dark);
    border-radius: 0;
    color: var(--ink);
    font-size: 1.02rem;
    line-height: 1.35;
    box-shadow: none;
}

.form-control:focus,
.form-select:focus {
    background-color: var(--white);
    border-color: var(--blue);
    color: var(--ink);
    box-shadow: var(--focus);
}

textarea.form-control {
    min-height: 190px;
    resize: vertical;
}

.form-control::placeholder {
    color: #838a8f;
    opacity: 1;
}

.field-hint,
.form-actions__note {
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 0.86rem;
    line-height: 1.45;
}

.field-error {
    margin: 8px 0 0;
    color: var(--danger);
    font-size: 0.9rem;
    font-weight: 720;
}

.field-hint.is-error {
    color: var(--danger);
    font-weight: 700;
}

.has-error .form-control,
.has-error .form-select {
    border-color: var(--danger);
}

.required-mark {
    color: var(--red);
}

.dropzone {
    position: relative;
    min-height: 250px;
    display: grid;
    place-items: center;
    padding: 28px;
    background: var(--paper);
    border: 2px dashed var(--line-dark);
    text-align: center;
    transition: background-color 150ms ease, border-color 150ms ease;
}

.dropzone.is-dragging {
    background: rgba(59, 125, 216, 0.08);
    border-color: var(--blue);
}

.dropzone > div {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.dropzone__icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    margin-bottom: 16px;
    border: 2px solid var(--blue);
    color: var(--blue);
    font-size: 2rem;
    line-height: 1;
}

.dropzone strong {
    color: var(--navy);
    font-family: var(--condensed-font);
    font-size: 1.22rem;
}

.dropzone span:not(.dropzone__icon) {
    margin-top: 5px;
    color: var(--muted);
    font-size: 0.88rem;
}

.dropzone label {
    margin-top: 14px;
    color: var(--blue-dark);
    font-weight: 720;
    text-decoration: underline;
    text-underline-offset: 3px;
    cursor: pointer;
}

.dropzone input[type="file"] {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
}

.file-preview {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 18px;
}

.file-preview__item {
    position: relative;
    overflow: hidden;
    background: var(--paper);
    border: 1px solid var(--line);
}

.file-preview__item img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.file-preview__item > span {
    display: block;
    padding: 8px 10px;
    overflow: hidden;
    font-size: 0.72rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.file-preview__remove {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 34px;
    height: 34px;
    background: var(--navy);
    border: 0;
    color: var(--white);
    font-size: 1.35rem;
    line-height: 1;
}

.checkbox-card {
    display: grid;
    grid-template-columns: 26px minmax(0, 1fr);
    gap: 15px;
    align-items: start;
    padding: 20px 0;
    border-top: 1px solid var(--line);
}

.checkbox-card:last-of-type {
    border-bottom: 1px solid var(--line);
}

.checkbox-card input {
    width: 23px;
    height: 23px;
    margin: 3px 0 0;
    accent-color: var(--blue);
}

.checkbox-card label {
    color: #34404a;
    line-height: 1.54;
    cursor: pointer;
}

.form-actions {
    padding: 0 clamp(28px, 5vw, 54px) clamp(34px, 5vw, 54px);
}

.form-actions .button {
    min-height: 64px;
    font-size: 1.18rem;
}

.form-actions__note {
    text-align: center;
}

.sticky-help {
    position: sticky;
    top: 128px;
}

.help-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.help-list li {
    position: relative;
    padding: 11px 0 11px 25px;
    border-bottom: 1px solid var(--line);
}

.help-list li::before {
    position: absolute;
    top: 18px;
    left: 2px;
    width: 8px;
    height: 8px;
    background: var(--blue);
    content: "";
}

.honeypot {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(0 0 0 0) !important;
    clip-path: inset(50%) !important;
}

.alert {
    margin: 0 0 24px;
    padding: 16px 18px;
    border: 0;
    border-left: 5px solid currentColor;
    border-radius: 0;
    font-weight: 650;
}

.alert--danger {
    background: #f7e9e7;
    color: var(--danger);
}

.alert--success {
    background: #e6f3ee;
    color: var(--green);
}

.success-panel {
    max-width: 820px;
    margin-inline: auto;
    padding: clamp(36px, 6vw, 76px);
    background: var(--white);
    border-top: 7px solid var(--blue);
    border-bottom: 1px solid var(--navy);
    text-align: center;
}

.success-panel__icon {
    width: 72px;
    height: 72px;
    display: grid;
    place-items: center;
    margin: 0 auto 26px;
    background: var(--navy);
    color: var(--white);
    font-family: var(--condensed-font);
    font-size: 2rem;
    font-weight: 820;
}

.success-panel .eyebrow {
    justify-content: center;
}

.success-panel h1 {
    margin-bottom: 22px;
    font-size: clamp(2.4rem, 5vw, 4.4rem);
}

.success-panel > p {
    color: var(--muted);
}

.success-panel .hero__actions {
    justify-content: center;
}

.signal-code {
    margin: 28px 0 !important;
    padding: 16px;
    background: var(--paper);
    border: 1px solid var(--line-dark);
    color: var(--navy) !important;
    font-family: var(--condensed-font);
    font-size: 1.7rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.site-footer {
    padding-top: clamp(66px, 8vw, 96px);
    background: var(--navy-deep);
    color: rgba(255, 255, 255, 0.75);
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 0.75fr 0.9fr 1.2fr;
    gap: clamp(28px, 5vw, 66px);
    padding-bottom: 58px;
}

.site-footer .brand {
    color: var(--white);
}

.site-footer .brand__mark,
.admin-sidebar .brand__mark {
    padding: 5px;
    background: var(--white);
}

.site-footer .brand__text small {
    color: rgba(255, 255, 255, 0.58);
}

.site-footer__brand p {
    max-width: 360px;
    margin: 24px 0 0;
}

.site-footer h2 {
    margin-bottom: 20px;
    color: var(--white);
    font-family: var(--condensed-font);
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.site-footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer li + li {
    margin-top: 10px;
}

.site-footer a {
    color: rgba(255, 255, 255, 0.82);
}

.site-footer a:hover {
    color: var(--white);
}

.site-footer__notice {
    padding-left: 22px;
    border-left: 4px solid var(--red);
}

.site-footer__notice p {
    margin: 0;
}

.photo-credit {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.52);
    font-size: 0.72rem;
    line-height: 1.45;
}

.photo-credit p {
    margin: 0;
}

.photo-credit p + p {
    margin-top: 5px;
}

.site-footer__bottom {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.48);
    font-size: 0.78rem;
}

/* Администраторски панел */
.admin-body {
    background: #eef0f2;
    font-size: 16px;
}

.admin-shell {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
}

.admin-sidebar {
    position: sticky;
    top: 0;
    height: 100vh;
    padding: 30px 24px;
    background: var(--navy-deep);
    color: var(--white);
}

.admin-sidebar .brand {
    color: var(--white);
}

.admin-sidebar .brand__mark {
    width: 50px;
    height: 50px;
    flex-basis: 50px;
}

.admin-sidebar .brand__text strong {
    font-size: 1.45rem;
}

.admin-sidebar .brand__text small {
    color: rgba(255, 255, 255, 0.55);
}

.admin-nav {
    display: grid;
    gap: 6px;
    margin-top: 42px;
}

.admin-nav a,
.admin-nav button {
    width: 100%;
    display: block;
    padding: 12px 14px;
    background: transparent;
    border: 0;
    border-left: 3px solid transparent;
    color: rgba(255, 255, 255, 0.74);
    font-family: var(--condensed-font);
    font-weight: 680;
    text-align: left;
    text-decoration: none;
}

.admin-nav a:hover,
.admin-nav a.is-active,
.admin-nav button:hover {
    background: rgba(255, 255, 255, 0.08);
    border-left-color: var(--blue);
    color: var(--white);
}

.admin-main {
    min-width: 0;
    padding: clamp(24px, 4vw, 52px);
}

.admin-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 30px;
}

.admin-topbar h1 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.2rem);
}

.admin-card {
    margin-bottom: 24px;
    padding: 24px;
    background: var(--white);
    border-top: 4px solid var(--navy);
    border-bottom: 1px solid #c8cdd1;
}

.admin-card__title {
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.admin-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.admin-filters {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr auto;
    align-items: end;
    gap: 14px;
}

.setup-spacing {
    margin-top: 18px;
}

.setup-button {
    margin-top: 22px;
}

.admin-notes {
    min-height: 140px !important;
}

.danger-zone {
    padding-top: 22px;
    border-top: 1px solid #dfb8b4;
}

.official-letter {
    max-width: 850px;
    margin: 0 auto;
    padding: 55px;
    background: #fff;
    border: 1px solid #c7c7c7;
    color: #111;
    font-family: Arial, sans-serif;
}

.official-letter h1 {
    color: #111;
    font-family: Arial, sans-serif;
    font-size: 24px;
    letter-spacing: 0;
}

.admin-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-bottom: 24px;
}

.admin-stat {
    padding: 20px;
    background: var(--white);
    border-top: 4px solid var(--blue);
    border-bottom: 1px solid #c8cdd1;
}

.admin-stat span {
    display: block;
    color: var(--muted);
    font-family: var(--condensed-font);
    font-weight: 700;
}

.admin-stat strong {
    display: block;
    margin-top: 6px;
    color: var(--navy);
    font-family: var(--display-font);
    font-size: 2.3rem;
    line-height: 1;
}

.admin-table-wrap {
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th,
.admin-table td {
    padding: 13px 11px;
    border-bottom: 1px solid #d8dcdf;
    text-align: left;
    vertical-align: top;
}

.admin-table th {
    color: var(--muted);
    font-family: var(--condensed-font);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.status-badge {
    display: inline-block;
    padding: 4px 8px;
    background: #e7eaed;
    color: var(--ink);
    font-family: var(--condensed-font);
    font-size: 0.76rem;
    font-weight: 780;
}

.status-badge--new {
    background: #e4eefb;
    color: #235b98;
}

.status-badge--sent,
.status-badge--published {
    background: #e2f0ea;
    color: #17624e;
}

.status-badge--rejected {
    background: #f5e5e3;
    color: #8f302b;
}

.admin-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.detail-list {
    margin: 0;
}

.detail-list div {
    padding: 12px 0;
    border-bottom: 1px solid #d8dcdf;
}

.detail-list dt {
    color: var(--muted);
    font-family: var(--condensed-font);
    font-size: 0.82rem;
    font-weight: 760;
}

.detail-list dd {
    margin: 3px 0 0;
    overflow-wrap: anywhere;
}

.signal-description {
    padding: 18px;
    background: #f1f2f3;
    border-left: 4px solid var(--blue);
    white-space: pre-wrap;
}

.admin-images {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.admin-images img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border: 1px solid #c9ced2;
}

.admin-login {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 24px;
    background: var(--paper);
}

.admin-login__card {
    width: min(100%, 520px);
    padding: clamp(30px, 6vw, 54px);
    background: var(--white);
    border-top: 7px solid var(--navy);
    border-bottom: 1px solid var(--navy);
}

.admin-login__card .brand {
    margin-bottom: 38px;
}

.admin-login__card h1 {
    margin-bottom: 12px;
    font-size: 2.4rem;
}

.admin-login__card > p {
    color: var(--muted);
}

.pagination {
    display: flex;
    gap: 7px;
    margin-top: 24px;
}

.pagination a,
.pagination span {
    min-width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    background: var(--white);
    border: 1px solid var(--line-dark);
    color: var(--navy);
    text-decoration: none;
}

.pagination span {
    background: var(--navy);
    color: var(--white);
}

@media (max-width: 1120px) {
    body.nav-open {
        overflow: hidden;
    }

    .site-header__inner {
        min-height: 82px;
    }

    .nav-toggle {
        display: flex;
    }

    .site-nav {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        display: none;
        align-items: stretch;
        flex-direction: column;
        gap: 0;
        padding: 12px var(--gutter) 24px;
        background: var(--white);
        border-bottom: 2px solid var(--navy);
    }

    .site-nav.is-open {
        display: flex;
    }

    .site-nav > a:not(.button) {
        padding: 14px 0;
        border-bottom: 1px solid var(--line);
    }

    .site-nav > a:not(.button)::after {
        display: none;
    }

    .site-nav .button {
        margin-top: 14px;
    }

    .hero__grid {
        grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
    }

    .hero__visual {
        margin-right: calc(var(--gutter) * -1);
    }

    .category-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .principles-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .principle:nth-child(3) {
        border-left: 0;
        border-top: 1px solid var(--line);
    }

    .principle:nth-child(4) {
        border-top: 1px solid var(--line);
    }

    .site-footer__grid {
        grid-template-columns: 1.4fr 0.8fr 1fr;
    }

    .site-footer__notice {
        grid-column: 1 / -1;
        max-width: 760px;
    }

    .admin-shell {
        grid-template-columns: 230px minmax(0, 1fr);
    }

    .admin-filters {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    body {
        font-size: 17px;
    }

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

    .hero__copy {
        padding-right: 0;
    }

    .hero h1 {
        max-width: 760px;
    }

    .hero__visual {
        min-height: 520px;
        margin: 0 calc(var(--gutter) * -1);
    }

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

    .step-card + .step-card,
    .contact-card + .contact-card {
        border-top: 1px solid var(--line);
        border-left: 0;
    }

    .step-card__number,
    .contact-card__icon {
        margin-bottom: 24px;
    }

    .contact-card p {
        min-height: 0;
    }

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .manifesto__image {
        position: relative;
        width: 100%;
        height: 420px;
    }

    .manifesto__inner {
        grid-template-columns: 1fr;
        padding-block: 0 76px;
    }

    .manifesto blockquote {
        margin: -72px 0 0;
    }

    .manifesto__copy {
        padding: 48px 0 0;
    }

    .content-grid,
    .signal-layout {
        grid-template-columns: 1fr;
    }

    .sticky-help {
        position: static;
    }

    .cta-band__inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .cta-band .button {
        justify-self: start;
    }

    .site-footer__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .admin-shell {
        display: block;
    }

    .admin-sidebar {
        position: static;
        width: 100%;
        height: auto;
    }

    .admin-nav {
        grid-template-columns: repeat(3, 1fr);
        margin-top: 24px;
    }

    .admin-nav a,
    .admin-nav button {
        text-align: center;
    }

    .admin-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 680px) {
    :root {
        --gutter: 20px;
        --section-space: 66px;
    }

    body {
        font-size: 17px;
        line-height: 1.58;
    }

    .civic-strip__inner {
        min-height: 34px;
        justify-content: center;
        font-size: 0.78rem;
    }

    .civic-strip a {
        display: none;
    }

    .site-header__inner {
        min-height: 76px;
        gap: 14px;
    }

    .brand {
        gap: 10px;
    }

    .brand__mark {
        width: 48px;
        height: 48px;
        flex-basis: 48px;
    }

    .brand__text strong {
        font-size: 1.42rem;
    }

    .brand__text small {
        font-size: 0.68rem;
    }

    .nav-toggle {
        width: 46px;
        height: 46px;
        flex: 0 0 46px;
    }

    .hero__copy {
        padding-block: 64px 68px;
    }

    .hero h1 {
        margin-bottom: 24px;
        font-size: clamp(2.55rem, 12vw, 3.6rem);
    }

    .hero__lead {
        font-size: 1.05rem;
    }

    .hero__actions,
    .success-panel .hero__actions {
        align-items: stretch;
        flex-direction: column;
    }

    .hero__actions .button {
        width: 100%;
    }

    .hero__trust {
        grid-template-columns: 1fr;
        padding: 0;
    }

    .hero__trust li {
        padding: 13px 8px;
    }

    .hero__trust li + li {
        border-top: 1px solid var(--line);
        border-left: 0;
    }

    .hero__visual {
        min-height: 420px;
    }

    .hero__image-caption {
        padding: 18px 20px 20px;
    }

    .section-heading {
        margin-bottom: 42px;
    }

    .steps-grid,
    .principles-grid,
    .category-grid,
    .idea-grid {
        grid-template-columns: 1fr;
    }

    .step-card,
    .principle,
    .idea-card,
    .contact-card {
        padding: 28px 22px 32px;
    }

    .principle + .principle,
    .idea-card + .idea-card {
        border-top: 1px solid var(--line);
        border-left: 0;
    }

    .principle > span {
        margin-bottom: 24px;
    }

    .manifesto__image {
        height: 330px;
    }

    .manifesto blockquote {
        margin-top: -42px;
        padding: 28px;
        font-size: 1.8rem;
    }

    .page-hero__inner {
        padding-block: 64px;
    }

    .page-hero h1 {
        font-size: clamp(2.9rem, 14vw, 4.3rem);
    }

    .page-hero__meta {
        align-items: stretch;
        flex-direction: column;
    }

    .meta-pill + .meta-pill {
        border-top: 1px solid var(--line-dark);
        border-left: 0;
    }

    .content-card {
        padding: 28px 22px;
    }

    .pencho-feature {
        grid-template-columns: 110px 1fr;
        gap: 18px;
        padding: 18px;
    }

    .pencho-feature > img {
        width: 110px;
        height: 150px;
    }

    .pencho-feature h3 {
        font-size: 1.2rem;
    }

    .pencho-feature p:not(.eyebrow),
    .pencho-feature small {
        grid-column: 1 / -1;
    }

    .timeline__item {
        grid-template-columns: 58px 1fr;
        gap: 16px;
        padding: 30px 0;
    }

    .timeline__number {
        width: 50px;
        height: 50px;
    }

    .signal-form {
        margin-inline: -4px;
    }

    .form-section {
        padding: 30px 20px;
    }

    .form-section__heading {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .form-section__number {
        font-size: 1.25rem;
        font-weight: 780;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .form-control,
    .form-select {
        min-height: 58px;
        font-size: 18px;
    }

    .form-actions {
        padding: 0 20px 30px;
    }

    .file-preview {
        grid-template-columns: repeat(2, 1fr);
    }

    .checkbox-card {
        grid-template-columns: 25px 1fr;
    }

    .cta-band__inner {
        min-height: 0;
        padding-block: 58px;
    }

    .cta-band .button {
        width: 100%;
    }

    .site-footer__grid {
        grid-template-columns: 1fr;
    }

    .site-footer__notice {
        grid-column: auto;
    }

    .site-footer__bottom {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        padding-block: 20px;
    }

    .admin-main {
        padding: 22px 16px;
    }

    .admin-topbar {
        align-items: stretch;
        flex-direction: column;
    }

    .admin-nav {
        grid-template-columns: 1fr;
    }

    .admin-stats,
    .admin-detail-grid,
    .admin-filters {
        grid-template-columns: 1fr;
    }

    .admin-images {
        grid-template-columns: repeat(2, 1fr);
    }

    .official-letter {
        padding: 26px 20px;
    }
}

@media (max-width: 420px) {
    .brand__text small {
        display: none;
    }

    .brand__text strong {
        font-size: 1.32rem;
    }

    .category-card {
        min-height: 94px;
    }

    .pencho-feature {
        grid-template-columns: 1fr;
    }

    .pencho-feature > img {
        width: 110px;
        height: 150px;
    }

    .file-preview,
    .admin-images {
        grid-template-columns: 1fr;
    }
}

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

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}

@media print {
    .no-print,
    .civic-strip,
    .site-header,
    .site-footer,
    .button {
        display: none !important;
    }

    body,
    .admin-body {
        background: #fff;
        color: #000;
    }

    .admin-main {
        padding: 0;
    }

    .official-letter {
        max-width: none;
        padding: 0;
        border: 0;
    }
}
