:root {
    --green: #507660;
    --darkgreen: #355743;
    --plum: #6b1e4c;
    --ink: #181b21;
    --soft: #f4f7f3;
    --line: #e1e5e1;
    --radius: 7px;
}
body {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 17px;
    line-height: 1.6;
    color: var(--ink);
    background: #fff;
}
h1,
h2,
h3 {
    letter-spacing: -0.025em;
    line-height: 1.18;
}
h1 {
    font-size: clamp(2rem, 3.3vw, 3.3rem);
}
h2 {
    font-size: clamp(1.7rem, 2.7vw, 2.2rem);
}
h3 {
    font-size: 1.17rem;
}
p {
    margin: 0 0 1rem;
}
a {
    color: var(--plum);
}
.wrap {
    width: min(1180px, calc(100% - 10%));
}
.nav {
    min-height: 68px;
    gap: 28px;
}
.brand {
    font-size: clamp(1.35rem, 2.35vw, 1.9rem);
    font-weight: 750;
    letter-spacing: -0.035em;
}
.desktop-nav {
    gap: 20px;
    font-size: 14px;
}
.desktop-nav > a {
    padding: 12px 0;
}
.desktop-nav .nav-contact {
    padding: 9px 15px;
    background: var(--plum);
    color: #fff;
    border-radius: 24px;
}
.desktop-nav > a[aria-current='page'] {
    text-decoration: underline;
    text-underline-offset: 6px;
}
.desktop-nav details > div {
    border-radius: 8px;
    top: 36px;
}
.identity {
    padding: 15px 0;
    background: #1c2720;
}
.identity strong {
    font-size: 20px;
}
.identity p {
    font-size: 13px;
    margin: 1px 0;
    line-height: 1.45;
}
.identity a {
    font-size: 14px;
    color: #fff;
}
.button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    min-height: 46px;
    padding: 11px 23px;
    border-radius: 28px;
    background: var(--plum);
    font-size: 16px;
    line-height: 1.4;
}
.button:hover {
    background: #4a1233;
}
.button img {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1);
    border-radius: 0;
}
.button.secondary {
    background: transparent;
}
.button.secondary:hover {
    background: #f8edf3;
}
.button:disabled {
    cursor: not-allowed;
}
.text-link {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    font-size: 15px;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 4px;
}
.text-link img {
    width: 18px;
    height: 18px;
    border-radius: 0;
}
.home-hero {
    display: grid;
    grid-template-columns: 43.2% 56.8%;
    background: var(--green);
    color: white;
    min-height: 440px;
}
.hero-copy {
    padding: 38px 9% 38px max(24px, calc((100vw - 1180px) / 2));
    align-self: center;
}
.hero-copy .eyebrow {
    color: white;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.24em;
    margin: 0 0 22px;
}
.hero-copy h1 {
    font-size: clamp(2rem, 3.5vw, 3.1rem);
    line-height: 1.08;
    margin: 0 0 22px;
    letter-spacing: -0.02em;
}
.hero-copy p {
    font-size: 20px;
    line-height: 1.45;
    max-width: 410px;
    margin-bottom: 18px;
}
.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.hero-actions > a:not(.button) {
    color: #fff;
    font-size: 15px;
    text-underline-offset: 4px;
}
.hero-image {
    height: 100%;
    min-height: 440px;
    width: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 0;
    display: block;
}
.home-section {
    padding: 24px 0;
}
.home-section h2 {
    margin: 0 0 3px;
}
.section-intro {
    font-size: 19px;
    margin-bottom: 10px;
}
.section-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 18px;
}
.section-heading h2 {
    margin: 0;
}
.service-list {
    display: flex;
    flex-direction: column;
    margin: 0;
}
.service-row {
    display: grid;
    grid-template-columns: 58px 1.15fr 2.1fr 0.72fr 126px;
    gap: 20px;
    align-items: center;
    padding: 19px 0;
    border-bottom: 1px solid var(--line);
    min-height: 93px;
}
.service-row:last-child {
    border-bottom: 0;
}
.service-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    background: var(--soft);
    border-radius: 50%;
}
.service-icon img {
    width: 29px;
    height: 29px;
    border-radius: 0;
}
.service-row h3 {
    margin: 0;
    font-size: 18px;
    letter-spacing: -0.025em;
}
.service-row p {
    font-size: 15px;
    line-height: 1.5;
    margin: 0;
    color: #41464a;
}
.service-fee {
    font-size: 18px;
    font-weight: 700;
}
.service-fee small {
    display: block;
    font-size: 13px;
    font-weight: 400;
    color: #5d6268;
}
.service-row .text-link {
    justify-self: end;
    white-space: nowrap;
}
.services-more {
    display: flex;
    gap: 22px;
    padding-top: 16px;
    margin: 0;
    font-size: 15px;
}
.review-section {
    background: var(--soft);
    padding: 25px 0 30px;
}
.review-section h2 {
    margin: 0 0 4px;
}
.review-section .section-intro {
    margin-bottom: 22px;
}
.review-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}
.review-card {
    border-left: 5px solid var(--plum);
    background: #fff;
    border-radius: 6px;
    padding: 18px 23px;
    margin: 0;
    break-inside: avoid;
    display: flex;
    flex-direction: column;
    min-width: 0;
}
.review-card blockquote {
    padding: 0;
    margin: 0 0 14px;
    font-size: 16px;
    line-height: 1.5;
    color: #3c4047;
}
.review-card figcaption {
    font-size: 15px;
    font-weight: 700;
    color: var(--ink);
    margin-top: auto;
}
.review-all {
    margin: 18px 0 0;
    text-align: right;
}
.reviews-page {
    padding-top: 32px;
    padding-bottom: 48px;
}
.reviews-page .review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
}
.reviews-page .review-card {
    background: var(--soft);
    padding: 25px;
}
.article-list {
    display: flex;
    flex-direction: column;
}
.article-row {
    display: grid;
    grid-template-columns: 205px minmax(0, 1fr) 110px;
    gap: 28px;
    padding: 20px 0;
    border-top: 1px solid var(--line);
    align-items: center;
}
.article-row:first-child {
    border-top: 0;
    padding-top: 0;
}
.article-row > a.image-link {
    display: block;
}
.article-row img {
    width: 100%;
    height: 118px;
    object-fit: cover;
    border-radius: 6px;
    display: block;
}
.article-row h3 {
    font-size: 20px;
    margin: 0 0 10px;
    line-height: 1.25;
}
.article-row h3 a {
    color: var(--ink);
    text-decoration: none;
}
.article-row h3 a:hover {
    text-decoration: underline;
    color: var(--plum);
}
.article-row p {
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
    color: #45484c;
}
.article-row .text-link {
    justify-self: end;
}
.article-row.featured {
    grid-template-columns: 33% minmax(0, 1fr);
    align-items: start;
    row-gap: 0;
}
.article-row.featured .image-link {
    grid-row: span 2;
}
.article-row.featured img {
    height: 175px;
}
.article-row.featured > .text-link {
    grid-column: 2;
    justify-self: start;
    margin-top: 12px;
}
.blog-list {
    padding-top: 35px;
    padding-bottom: 48px;
}
.blog-list .article-row {
    padding: 25px 0;
}
.blog-list .article-row.featured {
    padding-top: 0;
    margin-bottom: 10px;
}
.blog-list .article-row.featured img {
    height: 230px;
}
.blog-list .article-row.featured h3 {
    font-size: 26px;
}
.blog-list .article-row.featured p {
    font-size: 17px;
}
.pagination {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 25px;
}
.pagination a {
    min-width: 44px;
    min-height: 44px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    padding: 7px 15px;
    border-radius: 5px;
}
.pagination a[aria-current] {
    background: var(--plum);
    color: #fff;
}
.page-title {
    background: var(--soft);
    padding: 32px 0;
    border-bottom: 1px solid var(--line);
}
.page-title h1 {
    margin: 0;
    max-width: 900px;
}
.page-title p {
    margin: 0 0 12px;
    font-size: 14px;
}
.article {
    max-width: 820px;
    padding-top: 36px;
    padding-bottom: 48px;
    font-size: 18px;
    line-height: 1.75;
}
.article h2 {
    font-size: 29px;
    margin: 38px 0 16px;
}
.article h3 {
    font-size: 23px;
    margin: 30px 0 14px;
}
.article figure {
    margin: 0 0 30px;
}
.article figure img {
    max-height: 400px;
    width: 100%;
    object-fit: cover;
}
.article figcaption {
    font-size: 13px;
    color: #646a66;
}
.article > img {
    max-height: 380px;
    max-width: 100%;
    object-fit: contain;
    margin: 24px auto;
}
.article > img:first-child {
    margin-top: 0;
}
.article aside {
    background: var(--soft);
    border-left: 4px solid var(--green);
    padding: 22px 28px;
    margin-top: 35px;
    font-size: 16px;
}
.article aside h2 {
    margin: 0 0 12px;
    font-size: 22px;
}
.article li {
    margin-bottom: 10px;
}
.about-page .article > img:first-child {
    float: left;
    width: 32%;
    margin: 0 28px 18px 0;
}
.article::after {
    content: '';
    display: table;
    clear: both;
}
.article > img[src*='8c553'],
.article > img[src*='65c8'] {
    max-width: 230px;
    max-height: 90px;
    display: inline-block;
    margin: 20px 18px 0 0;
}
.home-about {
    border-top: 1px solid var(--line);
    padding-top: 32px;
    padding-bottom: 38px;
    display: grid;
    grid-template-columns: 170px 1fr;
    gap: 30px;
}
.home-about > img {
    width: 170px;
    height: 190px;
    object-fit: cover;
}
.home-about h2 {
    margin: 0 0 12px;
}
.home-about p {
    font-size: 17px;
    max-width: 760px;
}
.home-details {
    margin-top: 24px;
    border-top: 1px solid var(--line);
    padding-top: 18px;
}
.home-details summary {
    cursor: pointer;
    font-weight: 700;
    color: var(--plum);
}
.home-details .content {
    text-align: left;
    padding-top: 20px;
}
.home-details .photo-pair {
    display: none;
}
.home-details .content h2,
.home-details .content h3 {
    font-size: 22px;
}
.home-details .content p {
    font-size: 17px;
}
.home-details .content > h3:first-child {
    display: none;
}
.cta {
    padding: 30px 0;
    background: var(--soft);
    border-top: 1px solid var(--line);
}
.cta h2 {
    font-size: 26px;
    margin: 0 0 14px;
}
.cta a {
    font-weight: 700;
}
.section {
    padding-top: 38px;
    padding-bottom: 42px;
}
.section > h2 {
    text-align: left;
}
.cards {
    grid-template-columns: repeat(2, 1fr);
}
.card {
    border-radius: 6px;
}
.card p {
    line-height: 1.65;
}
.link-grid {
    gap: 24px;
}
.link-grid a {
    min-height: 44px;
}
.contact-grid {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
    align-items: start;
    margin-top: 25px;
}
.contact-grid > div {
    font-size: 18px;
}
.contact-grid > div img {
    display: block;
    margin-top: 25px;
    max-height: 280px;
    width: 100%;
    object-fit: cover;
}
.contact-options {
    padding: 28px;
    border-radius: 8px;
    background: var(--soft);
    border: 1px solid var(--line);
}
.contact-options h2 {
    font-size: 28px;
    line-height: 1.2;
}
.contact-options p {
    font-size: 16px;
}
.contact-options legend {
    position: absolute;
    width: 1px;
    height: 1px;
    clip-path: inset(50%);
    overflow: hidden;
}
.contact-options label {
    font-size: 16px;
    margin-bottom: 20px;
}
input,
textarea {
    min-height: 48px;
    border-radius: 5px;
    border-color: #86968b;
    padding: 11px 13px;
}
.consent {
    align-items: flex-start;
    cursor: pointer;
    line-height: 1.5;
}
.consent input {
    min-height: 22px;
    width: 22px;
    height: 22px;
    margin-top: 1px;
    accent-color: var(--plum);
}
.consent span {
    min-width: 0;
}
.contact-options #message-guidance {
    font-size: 14px;
    color: #555f58;
}
.contact-options .actions {
    margin: 22px 0 12px;
}
.contact-options .actions .button {
    min-width: 165px;
}
.small-print {
    margin-top: 16px;
}
.contact-options [hidden] {
    display: none !important;
}
.contact-options [role='status']:empty {
    display: none;
}
.contact-options #enquiry-result:not(:empty) {
    font-size: 16px;
}
.contact-options #draft-status {
    font-size: 14px;
}
fieldset:disabled {
    opacity: 0.65;
}
.trap {
    left: 0;
    top: 0;
    clip-path: inset(50%);
    pointer-events: none;
}
.text-button {
    color: var(--plum);
}
footer {
    background: #1c2720;
    padding: 36px 0 22px;
    font-size: 14px;
}
.footer-grid {
    grid-template-columns: 1.2fr 0.9fr 1fr 1fr;
    gap: 32px;
}
.footer-grid h2 {
    font-size: 23px;
    margin: 0 0 8px;
}
.footer-grid h3 {
    margin: 0 0 12px;
}
.footer-grid p {
    line-height: 1.5;
}
.footnote {
    margin-top: 24px;
    padding-top: 18px;
}
.footer-grid a {
    padding: 5px 0;
    line-height: 1.4;
}
@media (min-width: 1350px) {
    .hero-copy {
        padding-left: max(5vw, calc((100vw - 1180px) / 2));
    }
    .home-hero {
        min-height: 460px;
    }
    .hero-image {
        min-height: 460px;
    }
}
@media (max-width: 1150px) {
    .nav {
        gap: 20px;
    }
    .brand {
        font-size: 25px;
    }
    .desktop-nav {
        gap: 13px;
        font-size: 13px;
    }
    .desktop-nav .nav-contact {
        padding: 8px 12px;
    }
    .hero-copy {
        padding: 30px 30px 30px 5vw;
    }
    .hero-copy h1 {
        font-size: 38px;
    }
    .hero-copy p {
        font-size: 18px;
    }
    .home-hero,
    .hero-image {
        min-height: 365px;
    }
    .service-row {
        grid-template-columns: 54px 1.15fr 2fr 0.65fr 120px;
        gap: 16px;
    }
    .service-row h3 {
        font-size: 17px;
    }
    .service-row p {
        font-size: 14px;
    }
    .service-icon {
        height: 54px;
        width: 54px;
    }
    .review-grid {
        gap: 24px;
    }
}
@media (max-width: 960px) {
    .desktop-nav {
        display: none;
    }
    .mobile-nav {
        display: block;
        margin-left: auto;
    }
    .mobile-nav nav {
        position: absolute;
        right: 5%;
        left: 5%;
        top: 68px;
        background: white;
        padding: 18px;
        border: 1px solid var(--line);
        border-radius: 8px;
        max-height: 75vh;
        overflow: auto;
        z-index: 40;
    }
    .mobile-nav a {
        display: block;
        min-height: 44px;
        padding: 8px;
    }
    .mobile-nav summary {
        min-height: 44px;
        display: flex;
        align-items: center;
        cursor: pointer;
        font-size: 15px;
        font-weight: 700;
    }
    .service-row {
        grid-template-columns: 54px 1fr 85px 120px;
    }
    .service-row p {
        grid-column: 2/5;
        grid-row: 2;
    }
    .service-row .text-link {
        grid-column: 4;
        grid-row: 1;
    }
    .service-fee {
        grid-column: 3;
        grid-row: 1;
    }
    .review-grid {
        gap: 18px;
    }
    .review-card {
        padding: 18px;
    }
    .contact-grid {
        gap: 28px;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .article-row {
        grid-template-columns: 155px 1fr;
        gap: 22px;
    }
    .article-row > .text-link {
        grid-column: 2;
        justify-self: start;
        margin-top: -8px;
    }
    .article-row .image-link {
        grid-row: span 2;
    }
}
@media (max-width: 620px) {
    body {
        font-size: 16px;
    }
    .wrap {
        width: calc(100% - 40px);
    }
    .nav {
        min-height: 66px;
        gap: 14px;
    }
    .brand {
        font-size: 21px;
        max-width: 250px;
        line-height: 1.2;
        white-space: normal;
    }
    .identity {
        padding: 13px 0;
    }
    .identity strong {
        font-size: 18px;
    }
    .identity p {
        font-size: 12px;
    }
    .identity a {
        font-size: 13px;
    }
    .home-hero {
        display: flex;
        flex-direction: column;
        min-height: 0;
    }
    .hero-copy {
        padding: 29px 20px 27px;
        align-self: auto;
    }
    .hero-copy .eyebrow {
        margin-bottom: 15px;
        font-size: 12px;
    }
    .hero-copy h1 {
        font-size: 36px;
        line-height: 1.08;
        max-width: 390px;
        margin-bottom: 18px;
    }
    .hero-copy p {
        font-size: 18px;
        line-height: 1.5;
        max-width: 400px;
    }
    .hero-actions {
        gap: 15px;
        align-items: center;
    }
    .hero-image {
        width: 100%;
        height: 250px;
        min-height: 0;
        object-position: center;
    }
    .home-section {
        padding: 27px 0;
    }
    .home-section h2,
    .review-section h2 {
        font-size: 28px;
        line-height: 1.2;
        margin-bottom: 8px;
    }
    .section-intro {
        font-size: 17px;
        line-height: 1.5;
    }
    .section-heading {
        display: block;
        margin-bottom: 20px;
    }
    .section-heading .text-link {
        margin-top: 12px;
    }
    .service-row {
        grid-template-columns: 44px 1fr 60px;
        gap: 10px 14px;
        padding: 20px 0;
    }
    .service-icon {
        height: 44px;
        width: 44px;
    }
    .service-icon img {
        width: 25px;
        height: 25px;
    }
    .service-row h3 {
        font-size: 17px;
        line-height: 1.3;
    }
    .service-fee {
        grid-column: 3;
        text-align: right;
        align-self: center;
        font-size: 18px;
    }
    .service-fee small {
        font-size: 12px;
        line-height: 1.3;
    }
    .service-row p {
        grid-row: 2;
        grid-column: 2/4;
        font-size: 15px;
    }
    .service-row .text-link {
        grid-row: 3;
        grid-column: 2/4;
        justify-self: start;
        padding: 6px 0;
    }
    .services-more {
        flex-wrap: wrap;
        font-size: 14px;
        gap: 15px;
    }
    .review-section {
        padding: 28px 0;
    }
    .review-grid,
    .reviews-page .review-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .review-card {
        padding: 22px 23px;
    }
    .review-card blockquote {
        font-size: 17px;
        line-height: 1.55;
    }
    .review-card figcaption {
        font-size: 16px;
    }
    .review-all {
        text-align: left;
    }
    .article-row,
    .article-row.featured {
        grid-template-columns: 96px minmax(0, 1fr);
        gap: 14px;
        padding: 22px 0;
        align-items: start;
    }
    .article-row h3 {
        font-size: 18px;
        line-height: 1.3;
        margin-bottom: 9px;
    }
    .article-row p {
        font-size: 15px;
        line-height: 1.5;
    }
    .article-row img {
        height: 84px;
        object-fit: cover;
    }
    .article-row .image-link {
        grid-row: span 2;
    }
    .article-row > .text-link {
        grid-column: 2;
        margin-top: 0;
    }
    .article-row.featured {
        display: block;
    }
    .article-row.featured img {
        height: 200px;
        margin-bottom: 15px;
    }
    .article-row.featured h3 {
        font-size: 22px;
    }
    .article-row.featured > .text-link {
        margin-top: 12px;
    }
    .blog-list .article-row.featured img {
        height: 215px;
    }
    .blog-list .article-row.featured h3 {
        font-size: 25px;
    }
    .blog-list .article-row.featured p {
        font-size: 16px;
    }
    .page-title {
        padding: 27px 0;
    }
    .page-title h1 {
        font-size: 31px;
        line-height: 1.2;
    }
    .article {
        font-size: 17px;
        line-height: 1.75;
        padding-top: 27px;
    }
    .article h2 {
        font-size: 26px;
    }
    .article h3 {
        font-size: 22px;
    }
    .article aside {
        padding: 20px;
    }
    .about-page .article > img:first-child {
        float: none;
        width: 210px;
        max-width: 100%;
        margin: 0 0 25px;
    }
    .article > img {
        max-height: 300px;
    }
    .home-about {
        display: block;
        padding-top: 28px;
    }
    .home-about > img {
        float: left;
        width: 92px;
        height: 112px;
        margin: 0 18px 10px 0;
    }
    .home-about p {
        font-size: 16px;
    }
    .home-about:after {
        content: '';
        display: table;
        clear: both;
    }
    .home-details {
        clear: both;
        padding-top: 20px;
    }
    .home-details .content {
        width: 100%;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 27px;
        margin-top: 20px;
    }
    .contact-grid > div img {
        max-height: 200px;
    }
    .contact-options {
        padding: 22px 18px;
    }
    .contact-options h2 {
        font-size: 25px;
    }
    .contact-options .actions {
        gap: 15px;
    }
    .contact-options .actions .button {
        width: 100%;
    }
    .section {
        padding-top: 30px;
    }
    .section h1 {
        font-size: 32px;
    }
    .footer-grid {
        gap: 24px;
    }
    .footer-grid > div:first-child {
        grid-column: 1/-1;
    }
    .footer-grid a {
        min-height: 37px;
        font-size: 14px;
    }
    .footer-grid > div:nth-child(3),
    .footer-grid > div:nth-child(4) {
        grid-column: 1/-1;
    }
    .footer-grid > div:nth-child(3) a,
    .footer-grid > div:nth-child(4) a {
        display: inline-block;
        margin-right: 16px;
        padding: 8px 0;
    }
    .cta h2 {
        font-size: 24px;
    }
    .cta .button {
        margin: 8px;
    }
    .cards {
        grid-template-columns: 1fr;
    }
    figure {
        max-width: 100%;
    }
    .article :is(p, a) {
        overflow-wrap: anywhere;
    }
}
.blog-archive {
    max-width: 1180px;
    font-size: 17px;
}
.blog-archive .article-row h3 {
    margin: 0 0 10px;
    font-size: 20px;
}
.blog-list > h2 {
    font-size: 26px;
    margin: 0 0 25px;
}
.reviews-page blockquote p {
    margin: 0;
}
.article > .review-card {
    margin: 22px 0;
    background: var(--soft);
}
.article > .review-card p {
    margin: 0;
}
.article > .review-card figcaption {
    margin-top: 15px;
}
.home-details .content {
    width: 100%;
}
/* Match the selected compact desktop reference; retain touch targets on mobile. */
@media (min-width: 961px) and (max-width: 1150px) {
    .nav {
        min-height: 50px;
    }
    .brand {
        font-size: 25px;
    }
    .desktop-nav {
        gap: 17px;
        font-size: 12px;
    }
    .desktop-nav .nav-contact {
        padding: 7px 12px;
    }
    .identity {
        padding: 10px 0;
    }
    .identity strong {
        font-size: 16px;
    }
    .identity p {
        font-size: 11px;
        line-height: 1.35;
    }
    .identity a {
        font-size: 12px;
        padding: 0;
        min-height: 0;
        line-height: 1.5;
    }
    .home-hero,
    .hero-image {
        min-height: 357px;
    }
    .hero-copy {
        padding: 26px 7% 28px 14%;
    }
    .hero-copy .eyebrow {
        font-size: 11px;
        margin-bottom: 16px;
    }
    .hero-copy h1 {
        font-size: 39px;
        margin-bottom: 17px;
    }
    .hero-copy p {
        font-size: 17px;
        line-height: 1.28;
        margin-bottom: 15px;
    }
    .hero-copy .button {
        min-height: 40px;
        padding: 8px 22px;
        font-size: 15px;
    }
    .hero-actions {
        gap: 12px;
    }
    .hero-actions > a:not(.button) {
        font-size: 13px;
    }
    .wrap {
        width: 88%;
    }
    .service-row {
        padding: 14px 0;
        min-height: 78px;
        gap: 18px;
        grid-template-columns: 55px 1.3fr 2.1fr 0.62fr 110px;
    }
    .service-row h3 {
        font-size: 16px;
    }
    .service-row p {
        font-size: 13px;
    }
    .service-row .text-link {
        font-size: 13px;
    }
    .service-icon {
        width: 55px;
        height: 55px;
    }
    .home-section {
        padding: 20px 0;
    }
    .section-intro {
        font-size: 18px;
    }
    .review-grid {
        gap: 24px;
    }
    .review-card {
        padding: 16px 20px;
    }
    .review-card blockquote {
        font-size: 15px;
    }
    .home-section h2,
    .review-section h2 {
        font-size: 30px;
    }
    .article-row h3 {
        font-size: 18px;
    }
    .article-row p {
        font-size: 14px;
    }
    .article-row {
        padding: 15px 0;
    }
    .article-row.featured img {
        height: 145px;
    }
}
.article-row .text-link {
    white-space: nowrap;
}
.article-row .text-link img,
.article-row.featured .text-link img {
    width: 18px;
    height: 18px;
    min-width: 18px;
    margin: 0;
    object-fit: contain;
    border-radius: 0;
}
@media (min-width: 961px) and (max-width: 1150px) {
    .hero-image {
        height: 357px;
        min-height: 357px;
    }
    .home-hero {
        min-height: 357px;
    }
    .hero-copy {
        padding-top: 24px;
        padding-bottom: 24px;
    }
}
@media (min-width: 621px) {
    .home-hero {
        position: relative;
    }
    .hero-image {
        position: absolute;
        inset: 0 0 0 auto;
        width: 56.8%;
        height: 100%;
        min-height: 0;
    }
}

/* Approved article and About feature layouts. */
.article-row,
.article-row.featured {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 10px 28px;
    align-items: center;
    padding: 24px 0;
}
.article-row .image-link,
.article-row.featured .image-link {
    grid-column: 1;
    grid-row: 1 / span 2;
    align-self: center;
}
.article-row .image-link img,
.article-row.featured .image-link img,
.blog-list .article-row.featured .image-link img {
    width: 220px;
    height: 145px;
    object-fit: cover;
    display: block;
    margin: 0;
    border-radius: 5px;
}
.article-row > div {
    grid-column: 2;
}
.article-row .text-link,
.article-row.featured .text-link {
    grid-column: 2;
    justify-self: start;
    margin: 0;
}
.article-row h3,
.article-row.featured h3,
.blog-list .article-row.featured h3 {
    font-size: 21px;
    line-height: 1.3;
    margin: 0 0 8px;
}
.article-row p {
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
}
.article-row .article-meta {
    font-size: 14px;
    color: #536457;
    margin: 0 0 9px;
}
.home-about-band {
    background: #edf3ed;
    margin-top: 22px;
}
.home-about-band .home-about {
    border: 0;
    padding: 40px 0;
    display: grid;
    grid-template-columns: 170px 1fr;
    gap: 30px;
    align-items: center;
}
.home-about-band .home-about > img {
    width: 170px;
    height: 200px;
    object-fit: cover;
    float: none;
    margin: 0;
    border-radius: 6px;
}
.home-about-band h2 {
    margin: 0 0 12px;
}
.home-about-band .home-details {
    margin-top: 20px;
    border-color: #d1dcd1;
}
.home-about-band .button {
    margin-top: 6px;
}
.blog-intro {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 28px;
}
.blog-intro p {
    margin: 0;
}
.blog-list {
    padding-top: 0;
}
.blog-list h2 {
    display: none;
}
@media (max-width: 620px) {
    .article-row,
    .article-row.featured {
        grid-template-columns: 100px minmax(0, 1fr);
        gap: 10px 16px;
        padding: 22px 0;
        align-items: start;
    }
    .article-row .image-link,
    .article-row.featured .image-link {
        grid-row: 1;
        align-self: start;
    }
    .article-row .image-link img,
    .article-row.featured .image-link img,
    .blog-list .article-row.featured .image-link img {
        width: 100px;
        height: 100px;
        margin: 0;
    }
    .article-row h3,
    .article-row.featured h3,
    .blog-list .article-row.featured h3 {
        font-size: 18px;
        line-height: 1.35;
    }
    .article-row p {
        font-size: 15px;
    }
    .article-row .article-meta {
        font-size: 12px;
        line-height: 1.6;
    }
    .article-row .text-link {
        font-size: 15px;
    }
    .section-heading {
        gap: 12px;
        align-items: start;
        flex-direction: column;
    }
    .home-about-band .home-about {
        grid-template-columns: 90px 1fr;
        gap: 20px;
        padding: 30px 0;
    }
    .home-about-band .home-about > img {
        width: 90px;
        height: 112px;
        align-self: start;
    }
    .home-about-band h2 {
        font-size: 25px;
    }
    .home-about-band .home-details {
        grid-column: 1/-1;
    }
    .home-about-band p {
        font-size: 16px;
    }
    .home-about-band .button {
        font-size: 14px;
        padding: 10px 16px;
    }
    .blog-intro {
        display: block;
        font-size: 14px;
    }
    .blog-intro p + p {
        margin-top: 6px;
    }
}
@media (max-width: 620px) {
    .article-row > div {
        display: contents;
    }
    .article-row h3 {
        grid-column: 2;
        grid-row: 1;
        align-self: center;
        margin: 0;
    }
    .article-row > div > p {
        grid-column: 1/-1;
    }
    .article-row .text-link {
        grid-column: 1/-1;
    }
    .article-row .article-meta {
        margin: 2px 0 0;
    }
    .article-row .image-link {
        grid-row: 1;
    }
    .home-about-band .home-about > div {
        display: contents;
    }
    .home-about-band h2 {
        grid-column: 2;
        align-self: center;
        margin: 0;
    }
    .home-about-band .home-about > div > p {
        grid-column: 1/-1;
        margin: 0;
    }
    .home-about-band .button {
        grid-column: 1/-1;
        justify-self: start;
        margin: 0;
    }
    .home-about-band .home-details {
        grid-column: 1/-1;
        margin: 0;
        width: 100%;
    }
}

.pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 28px 0 38px;
    padding: 20px 0;
    border-top: 1px solid var(--line);
}
.pagination a,
.pagination span {
    display: inline-flex;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    border: 1px solid #d6ded6;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    background: white;
    box-sizing: border-box;
}
.pagination [aria-current] {
    background: var(--plum);
    color: white;
    border-color: var(--plum);
}
.pagination a:hover {
    background: var(--soft);
}
.service-directory {
    padding-top: 16px;
}
.directory-info {
    background: var(--soft);
    padding: 28px 0;
}
.directory-info summary {
    color: var(--plum);
    font-weight: 700;
    cursor: pointer;
}
.directory-info h3 {
    font-size: 22px;
}
.service-detail > img,
.service-image img,
.article-hero img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 480px;
    object-fit: cover;
    border-radius: 6px;
    margin: 0 auto;
}
.article-meta {
    color: #536457;
    font-size: 14px;
}
.article-hero,
.service-image {
    margin: 20px 0 28px;
}
.article-hero figcaption,
.service-image figcaption {
    font-size: 12px;
    color: #5c645e;
    margin-top: 7px;
}
.home-about-band .home-about {
    border-top: 0;
}
.blog-list > .blog-intro {
    padding-bottom: 18px;
}

@media (max-width: 620px) {
    .pagination {
        gap: 4px;
    }
    .pagination a,
    .pagination span {
        font-size: 14px;
        padding: 8px 10px;
        min-width: 44px;
    }
    .pagination a[rel] {
        padding-left: 8px;
        padding-right: 8px;
    }
    .blog-intro {
        gap: 10px;
    }
    .article-hero img,
    .service-image img {
        max-height: none;
    }
    .service-detail > img {
        max-height: none;
    }
}
/* Services overview: choose a starting point, then browse the full range. */
.support-intro {
    padding: 45px 0 24px;
}
.support-intro h2 {
    max-width: 740px;
    margin: 8px 0 16px;
    font-size: 38px;
}
.support-intro > p:not(.eyebrow) {
    max-width: 750px;
    font-size: 19px;
}
.eyebrow {
    color: var(--darkgreen);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
}
.support-jumps {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 24px 0 0;
}
.support-jumps a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 9px 16px;
    border: 1px solid #c9d5cb;
    border-radius: 24px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
}
.support-jumps a:hover {
    background: #edf3ed;
}
.support-section {
    padding: 36px 0 44px;
    scroll-margin-top: 25px;
}
.support-section > h2 {
    margin: 0 0 14px;
    font-size: 30px;
}
.support-lead {
    max-width: 760px;
    margin-bottom: 25px;
}
.support-primary {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-top: 24px;
}
.support-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-width: 0;
}
.support-card > img,
.support-photo img {
    display: block;
    width: 100%;
    height: 190px;
    object-fit: cover;
    border-radius: 0;
}
.support-card > div {
    padding: 23px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.support-card h3 {
    font-size: 22px;
    margin: 0 0 12px;
}
.support-card h3 a {
    color: var(--ink);
    text-decoration: none;
}
.support-card h3 a:hover {
    text-decoration: underline;
}
.support-card p {
    font-size: 16px;
    line-height: 1.6;
}
.support-card .text-link {
    margin-top: auto;
    align-self: flex-start;
    min-height: 44px;
}
.support-card .text-link img {
    width: 18px;
    height: 18px;
}
.primary-card > img {
    height: 280px;
}
.primary-card h3 {
    font-size: 26px;
}
.primary-card .eyebrow {
    font-size: 12px;
    margin: 0 0 9px;
}
.primary-card .button {
    align-self: flex-start;
    margin-top: auto;
}
.primary-card .support-price {
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 20px;
}
.support-price span {
    font-size: 14px;
    font-weight: 400;
    color: #536457;
}
.support-band {
    background: #f1f5f0;
    border-top: 1px solid var(--line);
}
.support-band + .support-band {
    background: #fafbf9;
}
.support-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}
.session-options {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    align-items: center;
    gap: 45px;
    padding-top: 48px;
}
.session-options h2 {
    font-size: 30px;
}
.session-options > img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 7px;
}
.support-help {
    background: #e6eee6;
    padding: 36px 0;
}
.support-help h2 {
    margin: 0 0 12px;
}
.support-help p {
    max-width: 730px;
}
.support-help .button {
    margin-top: 6px;
}
.service-detail .service-image {
    margin: 28px 0;
}
@media (max-width: 960px) {
    .support-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .primary-card > img {
        height: 220px;
    }
    .primary-card h3 {
        font-size: 23px;
    }
}
@media (max-width: 620px) {
    .support-intro {
        padding: 28px 0 14px;
    }
    .support-intro h2 {
        font-size: 30px;
    }
    .support-intro > p:not(.eyebrow) {
        font-size: 17px;
    }
    .support-jumps {
        gap: 8px;
        margin-top: 18px;
    }
    .support-jumps a {
        font-size: 14px;
        padding: 8px 13px;
    }
    .support-primary,
    .support-grid,
    .session-options {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .support-section {
        padding: 28px 0 32px;
    }
    .support-section > h2,
    .session-options h2 {
        font-size: 26px;
    }
    .support-card > div {
        padding: 21px;
    }
    .primary-card > img {
        height: auto;
        aspect-ratio: 3/2;
    }
    .support-photo img {
        height: 195px;
    }
    .support-card h3 {
        font-size: 22px;
    }
    .session-options > img {
        height: auto;
        aspect-ratio: 3/2;
    }
    .support-help {
        padding: 30px 0;
    }
}
