:root {
    --canvas: #ffffff;
    --parchment: #fff7f2;
    --ink: #1d1d1f;
    --ink-soft: #48404c;
    --muted: #756b73;
    --line: #ead8cd;
    --dark: #241f2a;
    --dark-2: #33283a;
    --accent: #b73563;
    --accent-strong: #7c2145;
    --on-dark: #ffffff;
    --radius: 8px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--canvas);
    color: var(--ink);
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 17px;
    line-height: 1.5;
    text-rendering: optimizeLegibility;
}

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

.ga-icon {
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 22px;
}

.ga-icon svg {
    width: 100%;
    height: 100%;
}

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

.site-container,
.container {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}

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

.skip-link:focus {
    width: auto;
    height: auto;
    clip: auto;
    left: 20px;
    top: 20px;
    margin: 0;
    padding: 11px 16px;
    background: var(--canvas);
    border: 1px solid var(--line);
    z-index: 999;
}

.topbar {
    background: var(--dark);
    color: rgba(255, 255, 255, .78);
    font-size: 13px;
}

.topbar-inner {
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.topbar-links {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.topbar a {
    color: #fff;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, .98);
    border-bottom: 1px solid var(--line);
}

.admin-bar .site-header {
    top: 32px;
}

.nav-wrap {
    min-height: 76px;
    display: flex;
    align-items: center;
    gap: 28px;
    position: relative;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-right: auto;
    color: var(--ink);
    font-weight: 700;
}

.custom-logo {
    max-height: 58px;
    width: auto;
}

.brand-mark {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: var(--radius);
    background: var(--dark);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
}

.brand-text {
    font-size: 18px;
}

.main-nav {
    display: flex;
    align-items: center;
}

.primary-menu,
.primary-menu ul,
.footer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.primary-menu {
    display: flex;
    align-items: center;
    gap: 22px;
}

.primary-menu li {
    position: relative;
}

.primary-menu a {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    color: #4a4d55;
    font-size: 14px;
    font-weight: 600;
}

.primary-menu a:hover,
.primary-menu .current-menu-item > a {
    color: var(--accent-strong);
}

.primary-menu .sub-menu {
    position: absolute;
    left: 0;
    top: 100%;
    min-width: 220px;
    background: var(--canvas);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}

.primary-menu li:hover > .sub-menu,
.primary-menu li:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header-cta,
.button,
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 11px 22px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
    cursor: pointer;
    transition: transform .18s ease, background-color .18s ease, border-color .18s ease;
}

.header-cta,
.button-primary,
.btn-primary {
    background: var(--accent);
    color: #fff;
}

.header-cta:hover,
.button-primary:hover,
.btn-primary:hover {
    background: var(--accent-strong);
    color: #fff;
    transform: scale(.98);
}

.button-secondary,
.btn-secondary {
    background: transparent;
    color: var(--ink);
    border-color: var(--line);
}

.button-secondary:hover,
.btn-secondary:hover {
    border-color: var(--accent);
    color: var(--accent-strong);
}

.btn-light {
    background: #fff;
    color: var(--dark);
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--canvas);
    padding: 12px;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
}

.menu-toggle span:not(.screen-reader-text) {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--ink);
}

.notice-band {
    background: #fff3ec;
    border-top: 1px solid #f0d9cc;
    border-bottom: 1px solid #e8cfc1;
}

.notice-inner {
    min-height: 64px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 20px;
}

.notice-label,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-strong);
    font-size: 13px;
    font-weight: 800;
}

.notice-label {
    min-height: 34px;
    padding: 0 13px;
    border-radius: 999px;
    background: var(--accent-strong);
    color: #fff;
}

.notice-label .ga-icon {
    width: 17px;
    height: 17px;
}

.notice-window {
    min-width: 0;
    overflow: hidden;
}

.notice-track {
    display: grid;
    width: 100%;
    color: var(--ink);
    font-size: 15px;
    white-space: nowrap;
}

.notice-item {
    width: 100%;
    max-width: 100%;
    display: none;
    align-items: center;
    gap: 10px;
    min-height: 38px;
    padding: 0 18px;
    border: 1px solid #e6cbbd;
    border-radius: 999px;
    background: #fff;
    color: var(--ink);
    font-weight: 700;
    min-width: 0;
}

.notice-item:first-child,
.notice-item.is-active {
    display: inline-flex;
}

.notice-track.is-ready .notice-item {
    display: none;
}

.notice-track.is-ready .notice-item.is-active {
    display: inline-flex;
}

.notice-item span:last-child {
    overflow: hidden;
    text-overflow: ellipsis;
}

.notice-item .ga-icon {
    width: 18px;
    height: 18px;
    color: var(--accent-strong);
}

.notice-item:hover {
    border-color: var(--accent);
    color: var(--accent-strong);
}

.notice-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}

.notice-arrow {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    border: 1px solid #e0bdae;
    border-radius: 999px;
    background: #fff;
    cursor: pointer;
    position: relative;
    transition: background-color .18s ease, border-color .18s ease, transform .18s ease;
}

.notice-arrow::before {
    content: "";
    position: absolute;
    inset: 0;
    width: 8px;
    height: 8px;
    margin: auto;
    border-top: 2px solid var(--accent-strong);
    border-right: 2px solid var(--accent-strong);
}

.notice-prev::before {
    transform: rotate(-135deg);
    left: 3px;
}

.notice-next::before {
    transform: rotate(45deg);
    right: 3px;
}

.notice-arrow:disabled {
    opacity: .35;
    cursor: default;
}

.notice-arrow:not(:disabled):hover {
    background: var(--accent-strong);
    border-color: var(--accent-strong);
    transform: scale(.97);
}

.notice-arrow:not(:disabled):hover::before {
    border-color: #fff;
}

.home-hero {
    background: var(--canvas);
    padding: 74px 0 0;
    position: relative;
    overflow: hidden;
}

.hero-slider-track {
    position: relative;
    min-height: clamp(640px, 78vw, 980px);
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .36s ease, visibility .36s ease;
}

.hero-slide.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.hero-copy {
    text-align: center;
    display: grid;
    justify-items: center;
}

.home-hero h1 {
    max-width: 990px;
    margin: 16px 0 18px;
    font-size: clamp(44px, 7vw, 86px);
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: 0;
}

.home-hero p {
    max-width: 760px;
    margin: 0;
    color: var(--ink-soft);
    font-size: clamp(19px, 2.2vw, 25px);
    line-height: 1.36;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.hero-image {
    width: min(1400px, calc(100% - 32px));
    margin: 58px auto 0;
    overflow: hidden;
    border-radius: 0;
    background: var(--parchment);
}

.hero-image img {
    width: 100%;
    aspect-ratio: 21 / 9;
    object-fit: cover;
}

.hero-slider-controls {
    position: absolute;
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    pointer-events: none;
}

.hero-slider-dots,
.hero-slider-arrows {
    display: flex;
    align-items: center;
    gap: 8px;
    pointer-events: auto;
}

.slider-dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(36, 31, 42, .26);
    cursor: pointer;
}

.slider-dot.is-active {
    width: 24px;
    background: var(--accent-strong);
}

.hero-arrow {
    width: 42px;
    height: 42px;
    border: 1px solid #e0bdae;
    border-radius: 999px;
    background: #fff;
    cursor: pointer;
    position: relative;
}

.hero-arrow::before {
    content: "";
    position: absolute;
    inset: 0;
    width: 9px;
    height: 9px;
    margin: auto;
    border-top: 2px solid var(--accent-strong);
    border-right: 2px solid var(--accent-strong);
}

.slider-prev::before {
    transform: rotate(-135deg);
    left: 4px;
}

.slider-next::before {
    transform: rotate(45deg);
    right: 4px;
}

.metric-strip {
    background: var(--canvas);
    padding: 0 0 72px;
}

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

.metric-grid div {
    padding: 28px 22px;
    border-right: 1px solid var(--line);
}

.metric-grid .ga-icon {
    width: 28px;
    height: 28px;
    margin-bottom: 16px;
    color: var(--accent-strong);
}

.metric-grid div:last-child {
    border-right: 0;
}

.metric-grid strong {
    display: block;
    color: var(--ink);
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1;
}

.metric-grid span {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    font-weight: 600;
}

.editorial-section {
    padding: 96px 0;
    background: var(--canvas);
}

.manifesto-section,
.volunteer-section,
.two-stream-section,
.faq-section {
    background: var(--parchment);
}

.manifesto-grid,
.split-layout,
.timeline-grid,
.quote-grid,
.faq-grid {
    display: grid;
    grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr);
    gap: clamp(42px, 7vw, 92px);
    align-items: start;
}

.section-heading {
    max-width: 820px;
}

.section-heading h2,
.manifesto-grid h2,
.split-layout h2,
.dark-grid h2,
.final-cta h2,
.quote-section h2,
.two-stream-grid h2 {
    margin: 14px 0 16px;
    color: var(--ink);
    font-size: clamp(34px, 5vw, 62px);
    font-weight: 700;
    line-height: 1.07;
    letter-spacing: 0;
}

.section-heading p,
.split-layout p,
.dark-grid p,
.large-copy p,
.final-cta p,
.two-stream-grid > div > p,
.quote-grid > .section-heading p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 19px;
    line-height: 1.5;
}

.large-copy {
    display: grid;
    gap: 22px;
}

.large-copy p {
    font-size: clamp(22px, 3vw, 32px);
    line-height: 1.32;
}

.line-list {
    margin-top: 44px;
    border-top: 1px solid var(--line);
}

.line-item {
    display: grid;
    grid-template-columns: 92px minmax(220px, .72fr) minmax(0, 1fr);
    gap: 32px;
    padding: 34px 0;
    border-bottom: 1px solid var(--line);
    align-items: baseline;
}

.item-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-strong);
    font-size: 13px;
    font-weight: 800;
}

.item-label .ga-icon {
    width: 18px;
    height: 18px;
}

.support-index .item-label,
.principle-grid .item-label {
    color: #fff;
}

.line-item h3,
.timeline-list h3,
.quiet-list h3,
.stream-list h3,
.support-index h3,
.principle-grid h3 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(22px, 2.6vw, 32px);
    line-height: 1.16;
}

.line-item p,
.timeline-list p,
.stream-list p,
.support-index p,
.principle-grid p,
.quote-list p {
    margin: 0;
    color: var(--ink-soft);
}

.dark-section,
.principle-band,
.site-footer {
    background: var(--dark);
    color: var(--on-dark);
}

.dark-section {
    padding: 104px 0;
}

.dark-grid {
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    gap: clamp(44px, 7vw, 94px);
}

.dark-grid h2,
.dark-grid p,
.principle-band h2,
.principle-band p,
.principle-band .section-kicker {
    color: #fff;
}

.support-index {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid rgba(255, 255, 255, .16);
}

.support-index article {
    padding: 28px 28px 28px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .16);
}

.support-index h3,
.support-index p {
    color: #fff;
}

.support-index p {
    color: rgba(255, 255, 255, .72);
    margin-top: 10px;
}

.timeline-grid {
    align-items: start;
}

.sticky-heading {
    position: sticky;
    top: 118px;
}

.timeline-list {
    display: grid;
    border-top: 1px solid var(--line);
}

.timeline-list article {
    padding: 32px 0;
    border-bottom: 1px solid var(--line);
}

.timeline-list h3 {
    margin-top: 10px;
}

.timeline-list p {
    margin-top: 12px;
    max-width: 660px;
}

.text-action {
    display: inline-flex;
    margin-top: 28px;
    color: var(--accent-strong);
    font-weight: 800;
    border-bottom: 1px solid currentColor;
}

.quiet-list {
    display: grid;
    border-top: 1px solid var(--line);
}

.quiet-list article {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 24px;
    padding: 28px 0;
    border-bottom: 1px solid var(--line);
}

.principle-band {
    padding: 100px 0;
}

.narrow-heading {
    max-width: 860px;
    margin-bottom: 54px;
}

.principle-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .14);
}

.principle-grid article {
    background: var(--dark-2);
    padding: 32px;
}

.principle-grid h3,
.principle-grid p {
    color: #fff;
}

.principle-grid h3 {
    margin-top: 16px;
}

.principle-grid p {
    color: rgba(255, 255, 255, .72);
    margin-top: 10px;
}

.two-stream-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(38px, 6vw, 74px);
}

.stream-list {
    margin-top: 34px;
    border-top: 1px solid var(--line);
}

.stream-list article {
    padding: 24px 0;
    border-bottom: 1px solid var(--line);
}

.stream-list h3 {
    margin-top: 8px;
    font-size: 24px;
}

.stream-list p {
    margin-top: 8px;
}

.quote-section {
    padding: 96px 0;
    background: var(--canvas);
}

.quote-list {
    display: grid;
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
}

.quote-list article {
    background: var(--canvas);
    padding: 34px;
}

.quote-list h3 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(26px, 3.6vw, 42px);
    line-height: 1.15;
}

.quote-list p {
    margin-top: 16px;
}

.quote-list .item-label {
    margin-top: 22px;
}

.news-section {
    background: var(--canvas);
}

.news-heading {
    margin-bottom: 40px;
}

.news-list {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(300px, .92fr);
    column-gap: clamp(34px, 6vw, 78px);
    border-top: 1px solid var(--line);
}

.news-item {
    background: transparent;
}

.news-item a {
    display: grid;
    align-content: start;
    min-height: 0;
    padding: 24px 0;
    border-bottom: 1px solid var(--line);
}

.news-item:first-child {
    grid-row: span 3;
}

.news-item:first-child a {
    min-height: 360px;
    padding: 34px 0;
    align-content: end;
}

.news-item .item-label {
    color: var(--accent-strong);
    font-size: 13px;
    font-weight: 800;
}

.news-item h3 {
    margin: 18px 0 12px;
    color: var(--ink);
    font-size: 24px;
    line-height: 1.16;
}

.news-item:first-child h3 {
    max-width: 720px;
    font-size: clamp(32px, 4.4vw, 56px);
    line-height: 1.05;
}

.news-item p {
    margin: 0;
    color: var(--ink-soft);
}

.faq-list {
    display: grid;
    gap: 0;
    border-top: 1px solid var(--line);
}

.faq-list details {
    border-bottom: 1px solid var(--line);
    padding: 22px 0;
}

.faq-list summary {
    cursor: pointer;
    color: var(--ink);
    font-weight: 800;
}

.faq-list p {
    margin: 14px 0 0;
    color: var(--ink-soft);
}

.final-cta {
    background: var(--canvas);
    padding: 104px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: .86fr 1.14fr;
    gap: clamp(38px, 7vw, 90px);
    align-items: start;
}

.final-cta h2 {
    max-width: 860px;
}

.final-cta p {
    max-width: 680px;
}

.contact-direct {
    display: grid;
    gap: 12px;
    margin-top: 28px;
}

.contact-direct a {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--accent-strong);
    font-weight: 800;
    border-bottom: 1px solid currentColor;
}

.contact-direct .ga-icon {
    width: 19px;
    height: 19px;
}

.contact-form {
    display: grid;
    gap: 18px;
    padding: 32px;
    background: var(--parchment);
    border: 1px solid var(--line);
}

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

.contact-form label {
    display: grid;
    gap: 8px;
    color: var(--ink);
    font-weight: 700;
}

.contact-form label > span {
    font-size: 14px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--canvas);
    color: var(--ink);
    font: inherit;
}

.contact-form textarea {
    resize: vertical;
}

.check-row {
    grid-template-columns: 20px minmax(0, 1fr);
    align-items: start;
    gap: 10px;
    color: var(--ink-soft);
    font-weight: 500;
}

.check-row input {
    width: 18px;
    min-height: 18px;
    margin-top: 3px;
    padding: 0;
}

.form-message {
    padding: 13px 15px;
    border-radius: var(--radius);
    font-weight: 700;
}

.form-message.success {
    background: #e8f3ec;
    color: #235233;
}

.form-message.error {
    background: #f7e7e3;
    color: #7f2f20;
}

.back-to-top {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 80;
    width: 46px;
    height: 46px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--dark);
    opacity: 0;
    visibility: hidden;
    cursor: pointer;
    transform: translateY(10px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}

.back-to-top::before {
    content: "";
    position: absolute;
    inset: 0;
    width: 11px;
    height: 11px;
    margin: auto;
    border-top: 2px solid #fff;
    border-left: 2px solid #fff;
    transform: rotate(45deg);
    top: 6px;
}

.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.page-hero {
    background: var(--parchment);
    padding: 92px 0 72px;
    border-bottom: 1px solid var(--line);
}

.page-hero-inner {
    max-width: 900px;
}

.page-hero-inner.center {
    text-align: center;
    margin: 0 auto;
}

.page-hero h1 {
    margin: 14px 0 16px;
    color: var(--ink);
    font-size: clamp(38px, 6vw, 70px);
    line-height: 1.06;
    letter-spacing: 0;
}

.page-hero p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 20px;
}

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

.post-card,
.content-card {
    background: var(--canvas);
}

.post-thumb {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--parchment);
}

.post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-card-body,
.content-card {
    padding: 30px;
}

.post-card h2 {
    margin: 14px 0 10px;
    font-size: 24px;
    line-height: 1.18;
}

.post-card p,
.entry-content {
    color: var(--ink-soft);
}

.post-meta {
    color: var(--accent-strong);
    font-size: 13px;
    font-weight: 800;
}

.text-link {
    display: inline-flex;
    margin-top: 8px;
    color: var(--accent-strong);
    font-weight: 800;
    border-bottom: 1px solid currentColor;
}

.pagination-wrap {
    margin-top: 34px;
}

.content-card {
    max-width: 960px;
    margin: 0 auto;
}

.entry-content {
    max-width: 760px;
    margin: 0 auto;
}

.entry-content a {
    color: var(--accent-strong);
    border-bottom: 1px solid currentColor;
    font-weight: 700;
}

.featured-media {
    margin-bottom: 30px;
}

.featured-media img {
    width: 100%;
}

.post-nav {
    display: flex;
    justify-content: space-between;
    gap: 22px;
    margin-top: 34px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
}

.site-footer {
    padding-top: 74px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr 1fr 1fr;
    gap: 38px;
}

.footer-logo {
    color: #fff;
    margin-bottom: 18px;
}

.footer-logo .brand-mark {
    background: #fff;
    color: var(--dark);
}

.footer-grid h2 {
    margin: 0 0 14px;
    color: #fff;
    font-size: 16px;
}

.footer-grid p,
.footer-grid a {
    color: rgba(255, 255, 255, .72);
}

.footer-grid p {
    margin: 0 0 10px;
}

.footer-menu,
.social-links {
    display: grid;
    gap: 10px;
}

.footer-bottom {
    margin-top: 54px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, .14);
    color: rgba(255, 255, 255, .58);
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
}

@media (max-width: 1080px) {
    .manifesto-grid,
    .split-layout,
    .timeline-grid,
    .quote-grid,
    .faq-grid,
    .dark-grid,
    .two-stream-grid {
        grid-template-columns: 1fr;
    }

    .sticky-heading {
        position: static;
    }

    .line-item {
        grid-template-columns: 76px minmax(0, 1fr);
    }

    .line-item p {
        grid-column: 2;
    }

    .principle-grid,
    .post-grid,
    .news-list,
    .contact-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .news-item:first-child {
        grid-row: auto;
    }

    .news-item:first-child a {
        min-height: 0;
    }
}

@media (max-width: 920px) {
    .admin-bar .site-header {
        top: 0;
    }

    .menu-toggle {
        display: inline-flex;
        order: 3;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: calc(100% + 10px);
        left: 20px;
        right: 20px;
        background: var(--canvas);
        border: 1px solid var(--line);
        border-radius: var(--radius);
        padding: 16px;
    }

    .main-nav.is-open {
        display: block;
    }

    .primary-menu {
        display: grid;
        gap: 4px;
    }

    .primary-menu a {
        width: 100%;
        min-height: 44px;
    }

    .primary-menu .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        margin-top: 4px;
    }

    .header-cta {
        display: none;
    }

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

@media (max-width: 700px) {
    .site-container,
    .container {
        width: min(100% - 28px, 1180px);
    }

    .topbar-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px 0;
    }

    .nav-wrap {
        min-height: 70px;
    }

    .home-hero {
        padding-top: 48px;
    }

    .hero-slider-track {
        min-height: 720px;
    }

    .home-hero h1 {
        font-size: 40px;
    }

    .hero-image {
        width: 100%;
        margin-top: 42px;
    }

    .hero-image img {
        aspect-ratio: 4 / 3;
    }

    .hero-slider-controls {
        bottom: 18px;
        width: min(100% - 28px, 1180px);
    }

    .hero-arrow {
        width: 38px;
        height: 38px;
    }

    .metric-grid,
    .support-index {
        grid-template-columns: 1fr;
    }

    .metric-grid div {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .editorial-section,
    .dark-section,
    .principle-band,
    .quote-section,
    .final-cta {
        padding: 64px 0;
    }

    .line-item,
    .quiet-list article {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .line-item p {
        grid-column: auto;
    }

    .hero-actions,
    .final-cta .hero-actions {
        width: 100%;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .button,
    .btn {
        width: 100%;
    }

    .notice-inner {
        grid-template-columns: 1fr auto;
        gap: 12px;
        padding: 12px 0;
    }

    .notice-label {
        grid-column: 1 / 2;
        width: max-content;
    }

    .notice-controls {
        grid-column: 2;
        grid-row: 1;
    }

    .notice-window {
        grid-column: 1 / -1;
        grid-row: 2;
    }

    .notice-item {
        white-space: normal;
    }

    .contact-form {
        padding: 22px;
    }

    .post-nav,
    .footer-bottom-inner {
        flex-direction: column;
    }
}
