:root {
    --ink: #171a21;
    --ink-soft: #303640;
    --paper: #fffdf8;
    --white: #ffffff;
    --aqua: #008f91;
    --aqua-dark: #006d70;
    --coral: #ef5a50;
    --yellow: #f4c542;
    --blue: #1769aa;
    --line: #dcdedb;
    --muted: #66707a;
    --content: 1180px;
    --reading: 760px;
    --header: 76px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header) + 18px);
    overflow-x: hidden;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 17px;
    line-height: 1.65;
    letter-spacing: 0;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body.nav-open {
    overflow: hidden;
}

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

a {
    color: inherit;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.2em;
}

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

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

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

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

h1 {
    font-size: 64px;
}

h2 {
    font-size: 42px;
}

h3 {
    font-size: 22px;
}

.sr-only {
    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 {
    position: fixed;
    z-index: 1000;
    left: 16px;
    top: 12px;
    padding: 10px 14px;
    background: var(--white);
    color: var(--ink);
    transform: translateY(-160%);
}

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

.icon {
    width: 1.1em;
    height: 1.1em;
    flex: 0 0 auto;
}

.site-header {
    position: sticky;
    z-index: 100;
    top: 0;
    height: var(--header);
    background: rgba(255, 253, 248, 0.96);
    border-bottom: 1px solid rgba(23, 26, 33, 0.12);
    backdrop-filter: blur(12px);
}

.site-header__inner {
    width: min(calc(100% - 40px), var(--content));
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.wordmark {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: var(--ink);
    font-size: 20px;
    text-decoration: none;
    white-space: nowrap;
}

.wordmark__accent {
    width: 7px;
    height: 34px;
    background: var(--coral);
    box-shadow: 9px 0 0 var(--yellow), 18px 0 0 var(--aqua);
    margin-right: 18px;
}

.wordmark--light {
    color: var(--white);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 26px;
}

.site-nav > a:not(.button) {
    color: var(--ink-soft);
    font-size: 15px;
    font-weight: 650;
    text-decoration: none;
}

.site-nav > a:not(.button):hover {
    color: var(--aqua-dark);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--line);
    border-radius: 4px;
}

.button {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 12px 18px;
    border: 1px solid transparent;
    border-radius: 4px;
    font-weight: 750;
    line-height: 1.25;
    text-decoration: none;
    text-align: center;
    white-space: normal;
    transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

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

.button--small {
    min-height: 42px;
    padding: 9px 14px;
    background: var(--ink);
    color: var(--white);
    font-size: 14px;
}

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

.button--primary:hover {
    background: #d9443b;
}

.button--glass {
    border-color: rgba(255, 255, 255, 0.62);
    background: rgba(16, 21, 27, 0.36);
    color: var(--white);
}

.button--glass:hover {
    background: rgba(16, 21, 27, 0.72);
}

.button--dark {
    background: var(--ink);
    color: var(--white);
}

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

.eyebrow {
    margin-bottom: 14px;
    color: var(--yellow);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.eyebrow--dark {
    color: var(--aqua-dark);
}

.hero {
    position: relative;
    min-height: 670px;
    height: calc(100svh - var(--header) - 74px);
    max-height: 780px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    color: var(--white);
    background: var(--ink);
}

.hero__media,
.hero__shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero__media {
    object-fit: cover;
    object-position: center 42%;
}

.hero__shade {
    background: rgba(10, 15, 22, 0.57);
}

.hero__content {
    position: relative;
    z-index: 1;
    width: min(calc(100% - 40px), var(--content));
    margin: 0 auto;
    padding: 72px 0 54px;
}

.hero h1 {
    max-width: 820px;
    margin-bottom: 18px;
    color: var(--white);
}

.hero__lead {
    max-width: 720px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 24px;
    line-height: 1.45;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero__facts {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 32px 0 0;
    padding: 0;
    list-style: none;
}

.hero__facts li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 14px;
    font-weight: 700;
}

.hero__facts .icon {
    color: var(--yellow);
}

.trust-strip {
    min-height: 74px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--aqua);
    color: var(--white);
}

.trust-strip div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.25);
    min-width: 0;
}

.trust-strip div:last-child {
    border-right: 0;
}

.trust-strip strong {
    font-size: 24px;
}

.trust-strip span {
    color: rgba(255, 255, 255, 0.82);
    font-size: 13px;
    font-weight: 650;
}

.section {
    padding: 104px 0;
}

.section__inner {
    width: min(calc(100% - 40px), var(--content));
    margin: 0 auto;
}

.section-lead {
    color: var(--ink-soft);
    font-size: 20px;
    line-height: 1.65;
}

.split {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
    gap: 74px;
    align-items: center;
}

.split__copy h2 {
    max-width: 650px;
    margin-bottom: 24px;
}

.split__media {
    margin: 0;
}

.split__media img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 6px;
}

.split__media figcaption {
    padding-top: 10px;
    color: var(--muted);
    font-size: 13px;
}

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

.principles article {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 18px;
    padding: 22px 0;
    border-bottom: 1px solid var(--line);
}

.principles article > span {
    color: var(--coral);
    font-size: 13px;
    font-weight: 800;
}

.principles h3,
.principles p {
    margin-bottom: 0;
}

.principles p {
    margin-top: 7px;
    color: var(--muted);
}

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

.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 48px;
    margin-bottom: 46px;
}

.section-heading h2,
.section-heading p {
    margin-bottom: 0;
}

.section-heading > p {
    max-width: 490px;
    color: var(--muted);
}

.section-heading--inverse > p {
    color: rgba(255, 255, 255, 0.7);
}

.schedule {
    border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.schedule__row {
    min-height: 76px;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    align-items: center;
    gap: 26px;
    padding: 14px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.schedule__row:nth-child(odd):not(.schedule__head) {
    background: rgba(255, 255, 255, 0.035);
}

.schedule__head {
    min-height: 54px;
    color: var(--yellow);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.schedule__row span {
    color: rgba(255, 255, 255, 0.78);
}

.schedule__note {
    margin: 20px 0 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 13px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--aqua-dark);
    font-weight: 750;
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.steps li {
    min-height: 250px;
    padding: 30px 26px;
    border-right: 1px solid var(--line);
}

.steps li:last-child {
    border-right: 0;
}

.steps li > span {
    display: block;
    margin-bottom: 48px;
    color: var(--coral);
    font-size: 14px;
    font-weight: 850;
}

.steps h3 {
    margin-bottom: 12px;
}

.steps p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 15px;
}

.social-band {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    min-height: 590px;
    background: var(--yellow);
}

.social-band__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.social-band__copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 70px;
}

.social-band__copy > .icon {
    width: 42px;
    height: 42px;
    margin-bottom: 26px;
}

.social-band__copy .eyebrow {
    color: var(--ink);
}

.social-band__copy h2 {
    max-width: 480px;
    margin-bottom: 20px;
}

.social-band__copy p:not(.eyebrow) {
    max-width: 470px;
    margin-bottom: 30px;
    color: var(--ink-soft);
}

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

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

.post-card {
    min-width: 0;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 6px;
}

.post-card__media {
    display: block;
    overflow: hidden;
    background: #eef0ed;
    aspect-ratio: 16 / 10;
}

.post-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 220ms ease;
}

.post-card:hover .post-card__media img {
    transform: scale(1.025);
}

.post-card__body {
    padding: 24px;
}

.post-card time {
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
}

.post-card h2,
.post-card h3 {
    margin: 10px 0 12px;
    overflow-wrap: anywhere;
}

.post-card h2 {
    font-size: 23px;
}

.post-card h3 {
    font-size: 21px;
}

.post-card h2 a,
.post-card h3 a {
    text-decoration: none;
}

.post-card p {
    color: var(--muted);
    font-size: 15px;
}

.post-card__link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--aqua-dark);
    font-size: 14px;
    font-weight: 800;
}

.post-card--compact .post-card__body {
    min-height: 210px;
    display: flex;
    flex-direction: column;
}

.post-card--compact .post-card__link {
    margin-top: auto;
}

.section--faq {
    background: #eef7f5;
}

.faq-layout {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 90px;
}

.faq-layout > div:first-child > p:last-child {
    color: var(--muted);
}

.faq-list {
    border-top: 1px solid #bdcfca;
}

.faq-list details {
    border-bottom: 1px solid #bdcfca;
}

.faq-list summary {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    cursor: pointer;
    font-weight: 750;
    list-style: none;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary span {
    color: var(--coral);
    font-size: 26px;
}

.faq-list details[open] summary span {
    transform: rotate(45deg);
}

.faq-list details p {
    padding: 0 48px 24px 0;
    color: var(--muted);
}

.final-cta {
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding: 64px max(20px, calc((100% - var(--content)) / 2));
    background: var(--coral);
    color: var(--white);
}

.final-cta > div {
    max-width: 760px;
}

.final-cta h2 {
    margin-bottom: 0;
}

.site-footer {
    padding: 74px max(20px, calc((100% - var(--content)) / 2)) 24px;
    background: var(--ink);
    color: rgba(255, 255, 255, 0.74);
}

.site-footer__main {
    display: grid;
    grid-template-columns: 1.5fr 0.7fr 0.8fr;
    gap: 70px;
    padding-bottom: 60px;
}

.site-footer__main > div:first-child p {
    max-width: 500px;
    margin: 24px 0 0;
}

.site-footer h2 {
    margin-bottom: 19px;
    color: var(--white);
    font-size: 15px;
}

.site-footer__main > div:not(:first-child) {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.site-footer__main a:not(.wordmark) {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
}

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

.site-footer__bottom {
    display: flex;
    justify-content: space-between;
    gap: 28px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.48);
    font-size: 12px;
}

.page-hero {
    padding: 104px 20px 86px;
    background: var(--ink);
    color: var(--white);
}

.page-hero__inner,
.article-header__inner {
    width: min(100%, var(--content));
    margin: 0 auto;
}

.page-hero h1 {
    max-width: 920px;
    margin-bottom: 20px;
    font-size: 56px;
}

.page-hero p:last-child {
    max-width: 720px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 20px;
}

.post-grid--archive {
    row-gap: 34px;
}

.results-heading {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 28px;
}

.results-heading p {
    font-weight: 750;
}

.empty-state {
    padding: 64px 0;
    text-align: center;
}

.article-header {
    padding: 88px 20px 64px;
    background: var(--ink);
    color: var(--white);
}

.article-header__inner {
    max-width: 980px;
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 26px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
}

.breadcrumbs a {
    color: rgba(255, 255, 255, 0.82);
}

.article-header h1 {
    max-width: 980px;
    margin-bottom: 26px;
    font-size: 54px;
    overflow-wrap: anywhere;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    color: rgba(255, 255, 255, 0.63);
    font-size: 13px;
}

.article-meta span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.article-cover {
    width: min(calc(100% - 40px), 1080px);
    max-height: 620px;
    margin: 52px auto 0;
    overflow: hidden;
    background: #eef0ed;
    border-radius: 6px;
}

.article-cover img {
    width: 100%;
    max-height: 620px;
    object-fit: cover;
}

.article-layout {
    width: min(calc(100% - 40px), 1080px);
    display: grid;
    grid-template-columns: minmax(0, var(--reading)) 280px;
    gap: 60px;
    align-items: start;
    margin: 68px auto 104px;
}

.article--page .article-layout {
    margin-top: 76px;
}

.article-body {
    min-width: 0;
    color: var(--ink-soft);
    overflow-wrap: anywhere;
}

.article-body h2,
.article-body h3,
.article-body h4 {
    margin: 46px 0 18px;
    color: var(--ink);
}

.article-body h2 {
    font-size: 32px;
}

.article-body h3 {
    font-size: 25px;
}

.article-body h4 {
    font-size: 20px;
}

.article-body p,
.article-body ul,
.article-body ol {
    margin-bottom: 22px;
}

.article-body li + li {
    margin-top: 8px;
}

.article-body a {
    color: var(--aqua-dark);
}

.article-body img {
    width: auto;
    max-height: 680px;
    margin: 30px auto;
    border-radius: 4px;
}

.article-body figure {
    max-width: 100%;
    margin: 32px 0;
}

.article-body figcaption {
    color: var(--muted);
    font-size: 13px;
    text-align: center;
}

.article-body blockquote {
    margin: 34px 0;
    padding: 20px 26px;
    border-left: 4px solid var(--coral);
    background: #f5f4ef;
}

.article-body .gb-container,
.article-body .gb-inside-container,
.article-body .gb-grid-wrapper,
.article-body .gb-grid-column {
    width: auto;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.article-body .gb-button-wrapper {
    margin: 24px 0;
}

.article-body .gb-button {
    display: inline-flex;
    padding: 11px 16px;
    border-radius: 4px;
    background: var(--coral);
    color: var(--white);
    font-weight: 750;
    text-decoration: none;
}

.article-aside {
    position: sticky;
    top: calc(var(--header) + 28px);
}

.aside-panel {
    padding: 26px;
    background: #eef7f5;
    border-top: 5px solid var(--aqua);
    border-radius: 4px;
}

.aside-panel h2 {
    margin-bottom: 14px;
    font-size: 24px;
}

.aside-panel p:not(.eyebrow) {
    color: var(--muted);
    font-size: 15px;
}

.aside-panel .button,
.aside-panel .text-link {
    width: 100%;
}

.aside-panel .text-link {
    justify-content: center;
    margin-top: 18px;
    font-size: 14px;
}

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

.contact-page {
    width: min(calc(100% - 40px), var(--content));
    min-height: calc(100svh - var(--header));
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 80px;
    align-items: center;
    margin: 0 auto;
    padding: 80px 0;
}

.contact-page__copy h1 {
    margin-bottom: 24px;
    font-size: 56px;
}

.contact-page__copy > p:last-child {
    color: var(--muted);
    font-size: 19px;
}

.contact-actions {
    display: grid;
    gap: 16px;
}

.contact-action {
    min-height: 180px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-content: center;
    gap: 8px 20px;
    padding: 34px;
    color: var(--white);
    border-radius: 6px;
    text-decoration: none;
}

.contact-action > span,
.contact-action > strong {
    grid-column: 1;
}

.contact-action > span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    font-weight: 750;
}

.contact-action > strong {
    font-size: 25px;
}

.contact-action > .icon {
    grid-column: 2;
    grid-row: 1 / span 2;
    width: 30px;
    height: 30px;
    align-self: center;
}

.contact-action--form {
    background: var(--coral);
}

.contact-action--instagram {
    background: var(--aqua-dark);
}

.error-page {
    min-height: calc(100svh - var(--header));
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: min(calc(100% - 40px), 760px);
    margin: 0 auto;
    padding: 80px 0;
}

.error-page__code {
    margin-bottom: 10px;
    color: var(--coral);
    font-size: 18px;
    font-weight: 850;
}

.error-page h1 {
    margin-bottom: 18px;
    font-size: 54px;
}

.error-page > p:not(.error-page__code) {
    color: var(--muted);
    font-size: 19px;
}

@media (max-width: 980px) {
    h1 {
        font-size: 52px;
    }

    h2 {
        font-size: 36px;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .site-nav {
        position: fixed;
        inset: var(--header) 0 auto;
        max-height: calc(100svh - var(--header));
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 14px 20px 24px;
        overflow-y: auto;
        background: var(--paper);
        border-bottom: 1px solid var(--line);
    }

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

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

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

    .split,
    .faq-layout,
    .article-layout,
    .contact-page {
        grid-template-columns: 1fr;
    }

    .split {
        gap: 48px;
    }

    .split__media img {
        aspect-ratio: 16 / 10;
    }

    .social-band {
        grid-template-columns: 1fr;
    }

    .social-band__image {
        height: 470px;
    }

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

    .steps li:nth-child(2) {
        border-right: 0;
    }

    .steps li:nth-child(-n + 2) {
        border-bottom: 1px solid var(--line);
    }

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

    .article-aside {
        position: static;
    }

    .aside-panel {
        max-width: 620px;
    }

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

    .site-footer__main > div:first-child {
        grid-column: 1 / -1;
    }

    .contact-page {
        gap: 38px;
    }
}

@media (max-width: 680px) {
    :root {
        --header: 66px;
    }

    body {
        font-size: 16px;
    }

    h1,
    .page-hero h1,
    .article-header h1,
    .contact-page__copy h1,
    .error-page h1 {
        font-size: 38px;
    }

    h2,
    .article-body h2 {
        font-size: 31px;
    }

    .site-header__inner,
    .hero__content,
    .section__inner,
    .article-layout,
    .article-cover,
    .contact-page {
        width: min(calc(100% - 32px), var(--content));
    }

    .wordmark {
        font-size: 17px;
    }

    .wordmark__accent {
        width: 5px;
        height: 28px;
        box-shadow: 7px 0 0 var(--yellow), 14px 0 0 var(--aqua);
        margin-right: 14px;
    }

    .hero {
        min-height: 610px;
        height: calc(100svh - var(--header) - 48px);
        max-height: 700px;
    }

    .hero__content {
        padding: 50px 0 34px;
    }

    .hero__lead {
        font-size: 19px;
    }

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

    .hero__facts {
        gap: 10px 18px;
        margin-top: 24px;
    }

    .hero__facts li {
        font-size: 12px;
    }

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

    .trust-strip div:nth-child(2) {
        border-right: 0;
    }

    .trust-strip div:nth-child(-n + 2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    }

    .trust-strip div {
        gap: 7px;
        padding: 12px 8px;
    }

    .trust-strip strong {
        font-size: 22px;
    }

    .section {
        padding: 74px 0;
    }

    .section-heading {
        display: block;
        margin-bottom: 30px;
    }

    .section-heading .text-link {
        margin-top: 18px;
    }

    .schedule__row {
        grid-template-columns: 1fr;
        gap: 5px;
        padding: 18px 8px;
    }

    .schedule__head {
        display: none;
    }

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

    .steps li,
    .steps li:nth-child(2) {
        min-height: 0;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .steps li:last-child {
        border-bottom: 0;
    }

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

    .social-band__image {
        height: 320px;
    }

    .social-band__copy {
        padding: 54px 24px;
    }

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

    .faq-layout {
        gap: 30px;
    }

    .final-cta {
        min-height: 0;
        display: block;
        padding-top: 54px;
        padding-bottom: 54px;
    }

    .final-cta .button {
        width: 100%;
        margin-top: 28px;
    }

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

    .site-footer__main {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .site-footer__main > div:first-child {
        grid-column: auto;
    }

    .site-footer__bottom {
        flex-direction: column;
        gap: 9px;
    }

    .page-hero,
    .article-header {
        padding: 70px 16px 52px;
    }

    .page-hero p:last-child {
        font-size: 17px;
    }

    .article-cover {
        margin-top: 28px;
    }

    .article-layout {
        gap: 44px;
        margin-top: 46px;
        margin-bottom: 74px;
    }

    .article-body h3 {
        font-size: 23px;
    }

    .contact-page {
        padding: 64px 0;
    }

    .contact-action {
        min-height: 160px;
        padding: 26px;
    }

    .contact-action > strong {
        font-size: 21px;
    }
}

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

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