:root {
    --gold: #ecac4a;
    --gold-dark: #d98d17;
    --gold-soft: #fff1d9;
    --brown: #3f2c25;
    --brown-medium: #643f35;
    --text: #5e4d47;
    --muted: #81716b;
    --cream: #fffaf4;
    --cream-deep: #f8efe5;
    --white: #ffffff;
    --border: #ead9c6;
    --shadow: 0 18px 50px rgb(63 44 37 / 10%);
    --radius-lg: 22px;
    --radius-md: 14px;
    --content-width: 1320px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--brown);
    background: var(--white);
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

body::before {
    position: fixed;
    z-index: -1;
    inset: 0;
    background:
        radial-gradient(circle at 8% 16%, rgb(236 172 74 / 10%), transparent 24rem),
        linear-gradient(180deg, var(--cream) 0, var(--white) 56rem);
    content: "";
}

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

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

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

button {
    font: inherit;
}

:focus-visible {
    outline: 3px solid rgb(236 172 74 / 55%);
    outline-offset: 4px;
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 12px;
    left: 12px;
    padding: 10px 16px;
    border-radius: 8px;
    color: var(--white);
    background: var(--brown);
    transform: translateY(-150%);
}

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

.site-header {
    position: relative;
    z-index: 20;
    border-bottom: 1px solid rgb(63 44 37 / 8%);
    background: rgb(255 255 255 / 95%);
    box-shadow: 0 4px 22px rgb(63 44 37 / 4%);
}

.header-inner {
    display: grid;
    grid-template-columns: 190px 1fr auto;
    align-items: center;
    width: min(calc(100% - 48px), var(--content-width));
    min-height: 86px;
    margin-inline: auto;
    gap: 32px;
}

.brand {
    display: inline-flex;
    width: fit-content;
}

.brand img,
.footer-logo {
    width: 181px;
    height: auto;
}

.main-navigation {
    display: flex;
    justify-content: center;
    align-items: stretch;
    min-height: 86px;
    gap: clamp(20px, 2.5vw, 42px);
}

.main-navigation a {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: var(--brown);
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
}

.main-navigation a::after {
    position: absolute;
    right: 0;
    bottom: 20px;
    left: 0;
    height: 3px;
    border-radius: 99px;
    background: var(--gold);
    content: "";
    opacity: 0;
    transform: scaleX(.45);
    transition: opacity .2s ease, transform .2s ease;
}

.main-navigation a:hover::after,
.main-navigation a.is-active::after {
    opacity: 1;
    transform: scaleX(1);
}

.header-phone {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    gap: 10px;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 800;
    white-space: nowrap;
}

.header-phone svg {
    width: 24px;
    height: 24px;
    fill: var(--gold);
}

.menu-toggle {
    display: none;
}

.hero {
    display: grid;
    grid-template-columns: minmax(340px, .72fr) minmax(560px, 1.28fr);
    width: min(calc(100% - 48px), var(--content-width));
    margin: 36px auto 96px;
    gap: clamp(42px, 5vw, 82px);
}

.hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    padding: 48px 0 0 20px;
}

.eyebrow {
    margin: 0 0 16px;
    color: var(--gold-dark);
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .11em;
    line-height: 1.3;
    text-transform: uppercase;
}

.eyebrow-light {
    color: #ffd38b;
}

.hero h1,
.article-header h1,
.not-found h1 {
    margin: 0;
    color: var(--brown);
    font-family: "Montserrat", sans-serif;
    font-size: clamp(48px, 5.3vw, 74px);
    font-weight: 800;
    letter-spacing: -.045em;
    line-height: 1.03;
}

.title-line {
    width: 68px;
    height: 3px;
    margin: 28px 0 24px;
    border-radius: 99px;
    background: var(--gold);
}

.hero-intro {
    max-width: 480px;
    margin: 0;
    color: var(--text);
    font-size: clamp(17px, 1.5vw, 20px);
    line-height: 1.55;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
    gap: 14px;
}

.button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 54px;
    padding: 12px 25px;
    border: 2px solid transparent;
    border-radius: 10px;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.2;
    transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

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

.button-primary {
    color: var(--brown);
    background: var(--gold);
    box-shadow: 0 10px 24px rgb(236 172 74 / 26%);
}

.button-primary:hover {
    background: #f4ba5f;
    box-shadow: 0 13px 28px rgb(236 172 74 / 34%);
}

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

.button-secondary:hover {
    background: var(--gold-soft);
}

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

.service-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 54px;
    gap: 12px;
}

.service-links a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 104px;
    padding: 16px 8px;
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--brown);
    background: rgb(255 255 255 / 66%);
    font-family: "Montserrat", sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-align: center;
    gap: 8px;
    transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.service-links a:hover {
    border-color: var(--gold);
    background: var(--white);
    transform: translateY(-3px);
}

.service-links svg {
    width: 31px;
    height: 31px;
    fill: var(--gold);
}

.hero-visual {
    min-width: 0;
}

.hero-visual > img {
    width: 100%;
    aspect-ratio: 1.48 / 1;
    border-radius: var(--radius-lg);
    object-fit: cover;
    box-shadow: var(--shadow);
}

.featured-card {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    min-height: 160px;
    margin: 24px 22px 0 0;
    padding: 26px 28px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: 0 14px 40px rgb(63 44 37 / 8%);
    gap: 24px;
}

.featured-card .card-kicker {
    margin: 0 0 8px;
    color: var(--gold-dark);
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.featured-card h2 {
    max-width: 680px;
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(20px, 2.1vw, 28px);
    line-height: 1.25;
}

.featured-card h2 a:hover {
    color: var(--gold-dark);
}

.featured-card p:last-child {
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 14px;
}

.round-link {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    color: var(--gold-dark);
    font-size: 26px;
    transition: color .2s ease, background .2s ease, transform .2s ease;
}

.round-link:hover {
    color: var(--white);
    background: var(--gold);
    transform: translateX(3px);
}

.round-link-muted {
    border-color: var(--border);
    color: var(--border);
}

.articles-section {
    width: min(calc(100% - 48px), var(--content-width));
    margin: 0 auto;
    padding: 86px 0 104px;
    border-top: 1px solid var(--border);
}

.section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 460px);
    align-items: end;
    gap: 60px;
}

.section-heading h2,
.reassurance h2,
.contact-cta h2,
.article-contact h2 {
    margin: 0;
    color: var(--brown);
    font-family: "Montserrat", sans-serif;
    font-size: clamp(32px, 3.6vw, 48px);
    font-weight: 800;
    letter-spacing: -.035em;
    line-height: 1.14;
}

.section-heading > p {
    margin: 0 0 4px;
    color: var(--muted);
}

.article-filters {
    display: flex;
    flex-wrap: wrap;
    margin: 42px 0 28px;
    gap: 10px;
}

.filter-button {
    min-height: 42px;
    padding: 8px 17px;
    border: 1px solid var(--border);
    border-radius: 99px;
    color: var(--brown);
    background: var(--white);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: color .2s ease, background .2s ease, border-color .2s ease;
}

.filter-button:hover,
.filter-button.is-active {
    border-color: var(--gold);
    color: var(--brown);
    background: var(--gold-soft);
}

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

.article-card {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: 0 12px 34px rgb(63 44 37 / 7%);
    transition: box-shadow .25s ease, transform .25s ease;
}

.article-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-6px);
}

.article-card[hidden] {
    display: none;
}

.article-image {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 1.55 / 1;
    background: var(--cream-deep);
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.article-card:hover .article-image img {
    transform: scale(1.035);
}

.upcoming-label {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 7px 11px;
    border-radius: 99px;
    color: var(--brown);
    background: rgb(255 255 255 / 92%);
    box-shadow: 0 5px 18px rgb(63 44 37 / 12%);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.article-card-content {
    padding: 24px 24px 26px;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 10px;
    color: var(--gold-dark);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .045em;
    text-transform: uppercase;
    gap: 10px;
}

.article-meta span + span::before {
    margin-right: 10px;
    color: var(--border);
    content: "•";
}

.article-card h3 {
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(19px, 1.7vw, 23px);
    letter-spacing: -.02em;
    line-height: 1.28;
}

.article-card h3 a:hover {
    color: var(--gold-dark);
}

.article-card-content > p {
    margin: 14px 0 18px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.65;
}

.text-link {
    display: inline-flex;
    align-items: center;
    color: var(--brown);
    font-size: 14px;
    font-weight: 800;
    gap: 8px;
}

.text-link span {
    color: var(--gold-dark);
    font-size: 20px;
    transition: transform .2s ease;
}

.text-link:hover span {
    transform: translateX(4px);
}

.reassurance {
    display: grid;
    grid-template-columns: minmax(280px, .8fr) minmax(460px, 1.2fr);
    width: min(calc(100% - 48px), var(--content-width));
    margin: 0 auto 110px;
    padding: clamp(34px, 5vw, 68px);
    border-radius: var(--radius-lg);
    background: var(--cream-deep);
    gap: clamp(40px, 7vw, 96px);
}

.reassurance-intro > p:last-child {
    margin: 22px 0 0;
    color: var(--muted);
}

.reassurance-list {
    display: grid;
    margin: 0;
    padding: 0;
    list-style: none;
    gap: 1px;
}

.reassurance-list li {
    position: relative;
    padding: 20px 0 20px 38px;
    border-bottom: 1px solid var(--border);
}

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

.reassurance-list li::before {
    position: absolute;
    top: 27px;
    left: 0;
    width: 14px;
    height: 14px;
    border: 4px solid var(--gold);
    border-radius: 50%;
    content: "";
}

.reassurance-list strong {
    display: block;
    margin-bottom: 4px;
    font-family: "Montserrat", sans-serif;
    font-size: 17px;
}

.reassurance-list span {
    display: block;
    color: var(--muted);
    font-size: 14px;
}

.contact-cta {
    color: var(--white);
    background: linear-gradient(112deg, var(--brown) 0%, var(--brown-medium) 100%);
}

.contact-cta-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    width: min(calc(100% - 48px), var(--content-width));
    margin: 0 auto;
    padding: 66px 0;
    gap: 50px;
}

.contact-cta h2 {
    max-width: 760px;
    color: var(--white);
}

.contact-cta p:last-child {
    max-width: 760px;
    margin: 16px 0 0;
    color: #e8d8d1;
}

.site-footer {
    padding: 70px 0 24px;
    color: #d5c5bf;
    background: #2e211c;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr .7fr 1fr;
    width: min(calc(100% - 48px), var(--content-width));
    margin: 0 auto;
    gap: clamp(42px, 8vw, 110px);
}

.footer-grid > div:first-child p {
    max-width: 390px;
}

.footer-logo {
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
    opacity: .96;
}

.site-footer h2 {
    margin: 8px 0 18px;
    color: var(--white);
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.site-footer p,
.site-footer address {
    margin: 0;
    font-size: 14px;
    font-style: normal;
    line-height: 1.9;
}

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

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

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    width: min(calc(100% - 48px), var(--content-width));
    margin: 54px auto 0;
    padding-top: 22px;
    border-top: 1px solid rgb(255 255 255 / 11%);
    font-size: 12px;
    gap: 30px;
}

.preview-notice {
    padding: 10px 24px;
    color: #5c3900;
    background: #fff0c8;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
}

.single-article {
    width: min(calc(100% - 48px), 1180px);
    margin: 0 auto;
    padding: 58px 0 110px;
}

.article-header {
    max-width: 940px;
    margin: 0 auto 42px;
    text-align: center;
}

.breadcrumbs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0 0 30px;
    color: var(--muted);
    font-size: 13px;
    gap: 8px;
}

.breadcrumbs a:hover {
    color: var(--gold-dark);
}

.article-header h1 {
    font-size: clamp(38px, 5vw, 66px);
    text-align: center;
}

.article-excerpt {
    max-width: 760px;
    margin: 24px auto 0;
    color: var(--muted);
    font-size: clamp(17px, 2vw, 20px);
    text-align: justify;
}

.article-byline {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 24px;
    color: var(--muted);
    font-size: 13px;
    gap: 10px 24px;
}

.article-byline span + span::before {
    margin-right: 24px;
    color: var(--border);
    content: "•";
}

.article-hero {
    margin: 0 0 58px;
}

.article-hero img {
    width: 100%;
    max-height: 670px;
    aspect-ratio: 1.67 / 1;
    border-radius: var(--radius-lg);
    object-fit: cover;
    box-shadow: var(--shadow);
}

.article-layout {
    display: grid;
    grid-template-columns: minmax(0, 730px) minmax(250px, 320px);
    justify-content: center;
    gap: 72px;
}

.article-body {
    color: var(--text);
    font-size: 17px;
}

.article-body .article-lead {
    margin-top: 0;
    color: var(--brown);
    font-size: 21px;
    font-weight: 600;
    line-height: 1.55;
}

.article-body h2 {
    margin: 48px 0 18px;
    color: var(--brown);
    font-family: "Montserrat", sans-serif;
    font-size: clamp(25px, 3vw, 34px);
    letter-spacing: -.025em;
    line-height: 1.24;
}

.article-body h3 {
    margin: 34px 0 14px;
    color: var(--brown);
    font-family: "Montserrat", sans-serif;
    font-size: 23px;
}

.article-body p {
    margin: 0 0 22px;
    text-align: justify;
}

.article-body ul,
.article-body ol {
    margin: 0 0 28px;
    padding-left: 24px;
}

.article-body li {
    margin-bottom: 8px;
    padding-left: 5px;
}

.article-body strong {
    color: var(--brown);
}

.article-contact {
    margin-top: 56px;
    padding: 34px;
    border-left: 4px solid var(--gold);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    background: var(--cream-deep);
}

.article-contact h2 {
    font-size: 30px;
}

.article-contact p:not(.eyebrow) {
    margin: 14px 0 24px;
}

.article-sidebar {
    align-self: start;
}

.sidebar-card,
.sidebar-phone {
    display: block;
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: 0 12px 34px rgb(63 44 37 / 7%);
}

.sidebar-title {
    margin: 0 0 12px;
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-weight: 800;
}

.sidebar-card > p:not(.sidebar-title) {
    margin: 0 0 20px;
    color: var(--muted);
    font-size: 14px;
}

.sidebar-phone {
    margin-top: 18px;
    color: var(--white);
    background: var(--brown);
}

.sidebar-phone span {
    display: block;
    color: #d8c7bf;
    font-size: 13px;
}

.sidebar-phone strong {
    display: block;
    margin-top: 3px;
    color: var(--gold);
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
}

.not-found {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: min(calc(100% - 48px), 760px);
    min-height: 580px;
    margin: 0 auto;
    padding: 120px 0;
    text-align: center;
}

.not-found h1 {
    font-size: clamp(38px, 5vw, 62px);
}

.not-found > p:not(.eyebrow) {
    margin: 20px 0 30px;
    color: var(--muted);
}

@media (max-width: 1160px) {
    .header-inner {
        grid-template-columns: 150px 1fr auto;
        gap: 20px;
    }

    .brand img {
        width: 150px;
    }

    .main-navigation {
        gap: 18px;
    }

    .main-navigation a {
        font-size: 12px;
    }

    .header-phone {
        font-size: 14px;
    }

    .hero {
        grid-template-columns: minmax(300px, .78fr) minmax(500px, 1.22fr);
        gap: 42px;
    }

    .hero-copy {
        padding-left: 0;
    }

    .hero h1 {
        font-size: clamp(44px, 5.7vw, 66px);
    }

    .service-links {
        margin-top: 38px;
    }
}

@media (max-width: 960px) {
    .header-inner {
        grid-template-columns: 1fr auto auto;
        min-height: 74px;
    }

    .brand img {
        width: 140px;
    }

    .menu-toggle {
        display: inline-flex;
        align-items: center;
        min-height: 44px;
        padding: 8px 12px;
        border: 1px solid var(--border);
        border-radius: 8px;
        color: var(--brown);
        background: var(--white);
        font-weight: 700;
        cursor: pointer;
        gap: 9px;
    }

    .menu-toggle-bars,
    .menu-toggle-bars::before,
    .menu-toggle-bars::after {
        display: block;
        width: 20px;
        height: 2px;
        border-radius: 99px;
        background: var(--brown);
        content: "";
    }

    .menu-toggle-bars {
        position: relative;
    }

    .menu-toggle-bars::before {
        position: absolute;
        top: -6px;
    }

    .menu-toggle-bars::after {
        position: absolute;
        top: 6px;
    }

    .main-navigation {
        position: absolute;
        top: 74px;
        right: 0;
        left: 0;
        display: none;
        min-height: 0;
        padding: 14px 24px 22px;
        border-top: 1px solid var(--border);
        background: var(--white);
        box-shadow: 0 18px 30px rgb(63 44 37 / 10%);
    }

    .main-navigation.is-open {
        display: grid;
    }

    .main-navigation a {
        min-height: 46px;
        font-size: 14px;
    }

    .main-navigation a::after {
        right: auto;
        bottom: 4px;
        width: 42px;
    }

    .hero {
        grid-template-columns: 1fr;
        margin-top: 24px;
        gap: 50px;
    }

    .hero-copy {
        padding-top: 30px;
    }

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

    .service-links {
        max-width: 570px;
    }

    .featured-card {
        margin-right: 0;
    }

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

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

    .article-layout {
        grid-template-columns: minmax(0, 730px);
        gap: 42px;
    }

    .article-sidebar {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 18px;
    }

    .sidebar-phone {
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin-top: 0;
    }
}

@media (max-width: 720px) {
    .header-inner,
    .hero,
    .articles-section,
    .reassurance,
    .contact-cta-inner,
    .footer-grid,
    .footer-bottom,
    .single-article,
    .not-found {
        width: min(calc(100% - 32px), var(--content-width));
    }

    .header-inner {
        grid-template-columns: 1fr auto;
    }

    .header-phone {
        position: fixed;
        z-index: 18;
        right: 16px;
        bottom: 16px;
        justify-content: center;
        width: 58px;
        height: 58px;
        border-radius: 50%;
        color: var(--brown);
        background: var(--gold);
        box-shadow: 0 10px 30px rgb(63 44 37 / 24%);
    }

    .header-phone span {
        display: none;
    }

    .header-phone svg {
        fill: var(--brown);
    }

    .hero {
        margin-bottom: 72px;
    }

    .hero h1 {
        font-size: clamp(42px, 13vw, 58px);
    }

    .hero-intro {
        font-size: 17px;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .service-links {
        grid-template-columns: 1fr;
        margin-top: 36px;
    }

    .service-links a {
        flex-direction: row;
        justify-content: flex-start;
        min-height: 66px;
        padding: 12px 18px;
        font-size: 13px;
        text-align: left;
    }

    .service-links svg {
        width: 27px;
        height: 27px;
    }

    .hero-visual > img {
        aspect-ratio: 1.2 / 1;
    }

    .featured-card {
        grid-template-columns: 1fr;
        padding: 22px;
    }

    .round-link {
        display: none;
    }

    .articles-section {
        padding: 68px 0 76px;
    }

    .section-heading {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .article-filters {
        flex-wrap: nowrap;
        overflow-x: auto;
        margin-right: -16px;
        padding: 0 16px 6px 0;
        scrollbar-width: thin;
    }

    .filter-button {
        flex: 0 0 auto;
    }

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

    .reassurance {
        margin-bottom: 76px;
        padding: 32px 24px;
    }

    .contact-cta-inner {
        grid-template-columns: 1fr;
        padding: 54px 0;
        gap: 28px;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
    }

    .single-article {
        padding-top: 38px;
    }

    .article-header {
        text-align: left;
    }

    .breadcrumbs,
    .article-byline {
        justify-content: flex-start;
    }

    .article-byline {
        display: grid;
        gap: 2px;
    }

    .article-byline span + span::before {
        display: none;
    }

    .article-hero {
        margin-bottom: 40px;
    }

    .article-hero img {
        aspect-ratio: 1.25 / 1;
    }

    .article-body {
        font-size: 16px;
    }

    .article-body .article-lead {
        font-size: 19px;
    }

    .article-contact {
        padding: 26px;
    }

    .article-sidebar {
        grid-template-columns: 1fr;
    }
}

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

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