:root {
    --navy: #153452;
    --ink: #203e5a;
    --muted: #586c80;
    --pink: #c14375;
    --pink-dark: #a52c5d;
    --blush: #fcf0f4;
    --blue: #edf5fc;
    --border: #e0e8ee;
    --radius: 16px;
    --shadow: 0 8px 30px #16345308;
}
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
    scroll-padding-top: 24px;
}
body {
    margin: 0;
    color: var(--ink);
    background: #fff;
    font-family: 'Avenir Next', Avenir, 'Segoe UI', Arial, sans-serif;
    font-size: 15px;
    line-height: 1.65;
}
a {
    color: inherit;
    text-underline-offset: 4px;
}
button,
input,
select,
textarea {
    font: inherit;
}
button,
a,
input,
textarea,
select,
summary {
    -webkit-tap-highlight-color: transparent;
}
a,
button,
summary {
    touch-action: manipulation;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible {
    outline: 3px solid #1874b5;
    outline-offset: 5px;
}
h1,
h2,
h3,
p {
    margin: 0 0 16px;
}
h1,
h2,
h3 {
    color: var(--navy);
    line-height: 1.16;
    letter-spacing: -0.035em;
}
h1 {
    font-size: clamp(38px, 4.2vw, 60px);
    font-weight: 750;
}
h2 {
    font-size: clamp(26px, 2.4vw, 34px);
    font-weight: 700;
}
h3 {
    font-size: 19px;
    font-weight: 650;
}
em {
    color: var(--pink);
    font-style: normal;
}
p {
    color: var(--muted);
}
img {
    max-width: 100%;
    display: block;
}
.container {
    width: min(1200px, calc(100% - 80px));
    margin-inline: auto;
}
.section {
    padding-block: 64px;
}
.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.17em;
    font-weight: 700;
    font-size: 10px;
    color: var(--pink);
    margin-bottom: 14px;
}
.lead {
    font-size: 20px;
    line-height: 1.5;
    max-width: 680px;
}
.handwritten {
    font-family: 'Bradley Hand', 'Segoe Print', cursive;
    font-size: 22px;
    font-style: italic;
    font-weight: 400;
    line-height: 1.45;
    letter-spacing: 0;
}
.skip-link {
    position: fixed;
    top: -100px;
    background: white;
    padding: 12px;
    z-index: 100;
}
.skip-link:focus {
    top: 8px;
}
.topbar {
    background: var(--navy);
    color: #eaf0f6;
    font-size: 10px;
    letter-spacing: 0.06em;
    padding: 8px 0;
}
.topbar .container {
    display: flex;
    justify-content: space-between;
}
.topbar a {
    text-decoration: none;
}
.topbar a span {
    margin-left: 8px;
}
.site-header {
    background: #fff;
    border-bottom: 1px solid #edf0f2;
    position: relative;
    z-index: 20;
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 124px;
    gap: 28px;
}
.brand {
    display: block;
    text-decoration: none;
    flex-shrink: 0;
}
nav {
    display: flex;
    gap: 27px;
    align-items: center;
}
nav > a:not(.button) {
    text-decoration: none;
    font-size: 13px;
    position: relative;
    padding: 16px 0;
}
nav > a:not(.button):after {
    content: '';
    position: absolute;
    bottom: 7px;
    left: 0;
    right: 100%;
    height: 2px;
    background: var(--pink);
    transition: right 0.2s;
}
nav > a:hover:after,
nav > a.active:after {
    right: 0;
}
nav > a.active {
    color: var(--pink);
}
.button {
    border: 1px solid var(--pink);
    background: var(--pink);
    color: #fff;
    text-decoration: none;
    border-radius: 7px;
    padding: 12px 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-size: 13px;
    font-weight: 650;
    line-height: 1.4;
    cursor: pointer;
    transition:
        background 0.2s,
        transform 0.2s;
    min-height: 45px;
}
.button:hover {
    background: var(--pink-dark);
    border-color: var(--pink-dark);
    transform: translateY(-2px);
}
.button.small {
    padding: 10px 19px;
    margin-left: 10px;
}
.button.outline {
    background: #ffffffb8;
    color: var(--navy);
    border-color: #9daec0;
}
.button.outline:hover {
    background: var(--blue);
}
.button.whatsapp {
    color: #08704c;
    background: #fff;
    border-color: #08704c;
}
.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}
.menu-toggle {
    display: none;
}
.hero {
    position: relative;
    isolation: isolate;
    background: #f0f6fb;
    overflow: hidden;
}
.hero-image {
    position: absolute;
    inset: 0 0 0 30%;
    background: #e8eff1 url('/assets/images/desk.png') center 60% / cover no-repeat;
    z-index: -2;
}
.hero:after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #f1f6fc 0%, #f1f6fc 29%, #f1f6fcec 41%, #f1f6fc00 71%);
    z-index: -1;
}
.hero-inner {
    position: relative;
    min-height: 510px;
    padding-block: 55px 62px;
}
.hero-copy {
    max-width: 620px;
}
.hero h1 {
    font-size: clamp(34px, 3.8vw, 53px);
    line-height: 1.1;
    margin-bottom: 24px;
}
.hero-copy > p:not(.eyebrow):not(.handwritten) {
    max-width: 430px;
}
.hero-copy .lead {
    font-size: 21px;
    line-height: 1.35;
    margin-bottom: 13px;
    color: var(--ink);
}
.hero-copy > p {
    font-size: 15px;
}
.little-line {
    display: inline-block;
    width: 24px;
    height: 1px;
    background: var(--pink);
    vertical-align: middle;
    margin-right: 8px;
}
.hero-copy .hero-signoff {
    font-size: 21px;
    margin: 26px 0 0;
    color: #355476;
}
.hero-signoff span {
    color: var(--pink);
    font-size: 26px;
}
.hero-note {
    position: absolute;
    right: 18px;
    top: 34px;
    width: 148px;
    height: 148px;
    background: #fcedf1dd;
    border: 1px solid #e2b8c6;
    border-radius: 50%;
    outline: 1px solid #e2b8c6;
    outline-offset: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 17px;
    line-height: 1.2;
    transform: rotate(9deg);
    color: var(--navy);
}
.hero-note span {
    color: var(--pink);
    font-size: 29px;
}
.trust-strip {
    position: relative;
    margin-top: -22px;
    background: #fff;
    box-shadow: 0 5px 30px #284f7110;
    border: 1px solid #edf0f2;
    border-radius: 12px;
    padding: 23px 12px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    z-index: 1;
}
.trust-strip > div {
    display: flex;
    align-items: center;
    gap: 13px;
    justify-content: center;
    border-right: 1px solid var(--border);
    padding: 0 12px;
}
.trust-strip > div:last-child {
    border: 0;
}
.trust-strip p {
    margin: 0;
    font-size: 12px;
    line-height: 1.4;
    color: var(--navy);
}
.trust-strip small {
    font-size: 10px;
    color: var(--muted);
}
.trust-icon {
    font-size: 34px;
    color: var(--pink);
    line-height: 1;
}
.blue-text {
    color: #296898;
}
.xero-icon {
    color: #fff;
    background: #08a9d1;
    font-size: 14px;
    letter-spacing: -1px;
    width: 37px;
    height: 37px;
    border-radius: 100%;
    display: grid;
    place-items: center;
}
.aat-icon {
    font-size: 35px;
    color: #008755;
    letter-spacing: -3px;
}
.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
    margin-bottom: 24px;
}
.section-heading p:last-child {
    margin-bottom: 0;
}
.section-heading h2 {
    margin-bottom: 9px;
}
.text-link {
    text-decoration: none;
    font-size: 12px;
    font-weight: 650;
    white-space: nowrap;
    color: var(--navy);
}
.text-link span {
    margin-left: 18px;
}
.text-link:hover {
    color: var(--pink);
}
.pink {
    background: var(--blush);
}
.blue {
    background: var(--blue);
}
.about-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 22px;
}
.about-card {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    border-radius: var(--radius);
    overflow: hidden;
}
.about-card > div:first-child {
    padding: 32px 0 32px 30px;
    z-index: 1;
}
.about-card h2 {
    font-size: 30px;
}
.about-card p {
    font-size: 13px;
}
.about-card .eyebrow {
    font-size: 9px;
}
.about-photo {
    background: url('/assets/images/desk.png') 68% center/auto 115%;
    position: relative;
}
.about-photo:after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, white, transparent 45%);
}
.local-card {
    border-radius: var(--radius);
    padding: 32px;
    background: linear-gradient(130deg, #edf6fd, #e3f0f9);
    position: relative;
    overflow: hidden;
}
.local-card h2 {
    font-size: 27px;
}
.local-card p {
    font-size: 13px;
}
.local-card .eyebrow {
    font-size: 10px;
}
.local-card .handwritten {
    font-size: 19px;
    margin-bottom: 0;
}
.local-illustration {
    height: 66px;
    display: flex;
    align-items: end;
    border-bottom: 1px solid #9cb6c8;
    color: #698eab;
    gap: 17px;
    margin: 4px 0 14px;
}
.local-illustration span {
    font-size: 57px;
    line-height: 1;
}
.local-illustration span:nth-child(2) {
    font-size: 42px;
}
.local-illustration span:nth-child(4) {
    margin-left: auto;
}
.home-bottom {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 42px;
}
.home-bottom h2 {
    font-size: 27px;
}
.home-bottom > div > p:not(.eyebrow) {
    font-size: 13px;
}
.home-bottom .faq-preview {
    border-left: 1px solid var(--border);
    padding-left: 36px;
    padding-top: 28px;
} /* Monthly packages: restrained type and rules instead of coloured panels. */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    margin-top: 28px;
    border-top: 1px solid var(--navy);
    border-bottom: 1px solid var(--border);
}
.price-card {
    min-width: 0;
    margin-block: 22px;
    padding-inline: 18px;
    border-right: 1px solid var(--border);
}
.price-card:first-child {
    padding-left: 0;
}
.price-card:last-child {
    padding-right: 0;
    border-right: 0;
}
.price-heading {
    padding: 0 0 20px;
    text-align: left;
    background: none;
}
.price-heading h3 {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0;
    margin: 0;
    color: var(--navy);
}
.price-heading > span {
    display: none;
}
.price-body {
    padding: 0;
    text-align: left;
}
.price-body > small {
    font-size: 11px;
    color: var(--muted);
}
.price {
    font-size: 32px;
    font-weight: 600;
    letter-spacing: -0.04em;
    color: var(--navy);
    line-height: 1.2;
    margin: 3px 0 15px;
    white-space: nowrap;
}
.price span {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0;
}
.hours {
    font-size: 12px;
    font-weight: 400;
    margin: 0;
    color: var(--muted);
}
.pricing-note {
    font-size: 12px;
    padding: 0;
    background: none;
    margin: 18px 0 0;
    text-align: left;
    line-height: 1.8;
}
.pricing-note a {
    color: var(--navy);
    text-decoration-color: #aebcc7;
    text-decoration-thickness: 1px;
}
.pricing-note a:hover {
    color: var(--pink);
    text-decoration-color: currentColor;
}
.faq {
    border-bottom: 1px solid var(--border);
}
.faq summary {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    list-style: none;
    line-height: 1.5;
    font-size: 13px;
    padding: 16px 0;
    font-weight: 500;
}
.faq summary::-webkit-details-marker {
    display: none;
}
.faq summary span {
    color: var(--pink);
    font-size: 19px;
    line-height: 1;
    flex-shrink: 0;
}
.faq[open] summary span {
    transform: rotate(45deg);
}
.faq p {
    font-size: 13px;
    margin: 0 24px 20px 0;
}
.contact-band {
    background: linear-gradient(105deg, #f9edf2, #eaf3fc);
    padding: 46px 0;
}
.contact-band-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}
.contact-band h2 {
    font-size: 30px;
}
.contact-band p:last-child {
    font-size: 13px;
    margin: 0;
}
.site-footer {
    background: #163452;
    color: #d7e2ed;
    padding: 45px 0 0;
}
.footer-top {
    display: grid;
    grid-template-columns: 1.4fr 0.7fr 1fr;
    gap: 60px;
    padding-bottom: 38px;
}
.footer-brand {
    margin-bottom: 16px;
    display: inline-block;
    background: #fff;
    border-radius: 5px;
    padding: 4px 14px;
}
.footer-top h3 {
    color: #fff;
    font-size: 14px;
    letter-spacing: 0;
    margin-top: 9px;
}
.footer-top p {
    color: #c5d4e1;
    font-size: 12px;
    line-height: 1.9;
}
.footer-top > div > a:not(.brand) {
    display: block;
    font-size: 12px;
    color: #d8e5ef;
    text-decoration: none;
    margin: 8px 0;
}
.footer-top > div > a:hover {
    text-decoration: underline;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    font-size: 10px;
    border-top: 1px solid #ffffff20;
    padding: 22px 0;
    color: #b9ccdd;
}
.footer-bottom .handwritten {
    font-size: 15px;
}
.footer-bottom a {
    text-decoration: none;
}
.page-hero {
    padding: 62px 0;
    background: linear-gradient(110deg, #f1f7fc 40%, #fcf0f4);
    border-bottom: 1px solid #eaf0f6;
}
.page-hero h1 {
    max-width: 900px;
}
.page-hero .lead {
    margin-bottom: 0;
    font-size: 19px;
    max-width: 720px;
}
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.soft-section {
    background: #f7fafc;
}
.steps article {
    display: flex;
    gap: 22px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
}
.steps article > span,
.values-grid article > span {
    color: var(--pink);
    font-size: 12px;
    letter-spacing: 0.15em;
}
.steps h3 {
    margin-bottom: 8px;
}
.steps p {
    font-size: 14px;
    margin: 0;
}
.back-link {
    display: inline-block;
    font-size: 12px;
    text-decoration: none;
    margin-bottom: 28px;
}
.service-detail {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 90px;
    align-items: center;
}
.service-detail .lead {
    font-size: 18px;
}
.detail-card {
    padding: 38px;
    border-radius: var(--radius);
}
.detail-card h2 {
    font-size: 26px;
}
.detail-card p {
    font-size: 13px;
    margin: 24px 0 0;
}
.check-list {
    list-style: none;
    padding: 0;
    margin: 22px 0;
}
.check-list li {
    position: relative;
    padding-left: 26px;
    margin: 13px 0;
    font-size: 14px;
}
.check-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #44769a;
    font-weight: 700;
}
.check-list.large li {
    font-size: 16px;
    margin: 22px 0;
}
.related {
    padding-top: 0;
}
.portrait-scene {
    position: relative;
    height: 420px;
    border-radius: 16px;
    overflow: hidden;
}
.portrait-scene img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 65%;
}
.portrait-scene > span {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: #fffffff0;
    padding: 20px 24px;
    border-radius: 8px;
    color: var(--navy);
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 45px;
    margin-top: 35px;
}
.values-grid h3 {
    margin-top: 14px;
}
.values-grid p {
    margin-bottom: 0;
    font-size: 14px;
}
.full-pricing .pricing-grid {
    margin: 0;
    gap: 0;
}
.full-pricing .price-heading {
    padding: 24px;
}
.full-pricing .price-heading h3 {
    font-size: 23px;
}
.full-pricing .price-heading > span {
    display: block;
    font-size: 12px;
    margin-top: 6px;
}
.full-pricing .price {
    font-size: 48px;
}
.full-pricing .price span {
    font-size: 14px;
}
.full-pricing .hours {
    font-size: 16px;
    margin-bottom: 22px;
}
.full-pricing .price-body > p:not(.price):not(.hours) {
    font-size: 13px;
}
.full-pricing .check-list {
    text-align: left;
    margin: 25px 0;
}
.full-pricing .check-list li {
    font-size: 12px;
}
.full-pricing .button {
    width: 100%;
    gap: 10px;
}
.faq-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
}
.faq-layout .faq summary {
    font-size: 16px;
    padding: 24px 0;
}
.faq-layout .faq p {
    font-size: 15px;
}
.faq-layout aside {
    padding-top: 24px;
}
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    gap: 70px;
}
.contact-email {
    display: inline-block;
    color: var(--pink);
    font-size: 20px;
    text-decoration: none;
    margin: 10px 0 20px;
    overflow-wrap: anywhere;
}
.contact-note {
    background: var(--blue);
    padding: 24px;
    border-radius: 12px;
    margin-top: 28px;
}
.contact-note h3 {
    font-size: 17px;
}
.contact-note p {
    font-size: 13px;
    margin: 0;
}
.enquiry-form {
    padding: 34px;
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: var(--shadow);
}
.enquiry-form h2 {
    font-size: 26px;
}
.enquiry-form > p {
    font-size: 13px;
}
.enquiry-form label {
    display: block;
    font-size: 12px;
    font-weight: 650;
    margin: 15px 0 6px;
}
.enquiry-form label span {
    color: var(--pink);
}
input,
select,
textarea {
    width: 100%;
    border: 1px solid #c7d3de;
    border-radius: 6px;
    padding: 11px;
    background: #fafcfd;
    color: var(--navy);
    font-size: 14px;
    min-height: 45px;
}
textarea {
    resize: vertical;
}
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid #7196b5;
    outline-offset: 2px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.enquiry-form .form-privacy {
    font-size: 11px;
    margin: 16px 0;
}
#form-status {
    padding: 15px;
    background: var(--blue);
    border-radius: 6px;
    margin-top: 16px;
}
.prose {
    max-width: 790px;
}
.prose h2 {
    font-size: 26px;
    margin-top: 30px;
}
.prose h2:first-child {
    margin-top: 0;
}
.notice {
    border-left: 3px solid var(--pink);
    background: var(--blush);
    padding: 18px;
    font-size: 13px;
    margin-top: 30px;
}
@media (min-width: 1500px) {
    .hero-inner {
        min-height: 560px;
        padding-top: 72px;
    }
    .hero-image {
        background-position: center 57%;
    }
}
@media (max-width: 1050px) {
    .container {
        width: calc(100% - 48px);
    }
    nav {
        gap: 18px;
    }
    .button.small {
        margin-left: 0;
    }
    .header-inner {
        gap: 15px;
    }
    .hero-copy {
        max-width: 540px;
    }
    .hero-note {
        right: 0;
        width: 128px;
        height: 128px;
        font-size: 15px;
    }
    .trust-strip > div {
        gap: 8px;
        padding: 0 8px;
    }
    .trust-strip p {
        font-size: 11px;
    }
    .trust-icon {
        font-size: 27px;
    }
    .about-grid {
        grid-template-columns: 1.4fr 1fr;
    }
    .home-bottom {
        gap: 25px;
        grid-template-columns: 1fr 1fr;
    }
    .home-bottom .faq-preview {
        padding-left: 25px;
    }
    .two-col,
    .service-detail,
    .contact-layout {
        gap: 40px;
    }
    .footer-top {
        gap: 35px;
    }
}
@media (max-width: 800px) {
    .topbar a {
        display: none;
    }
    .topbar .container {
        justify-content: center;
    }
    .header-inner {
        min-height: 106px;
    }
    .menu-toggle {
        display: flex;
        align-items: center;
        gap: 14px;
        border: 1px solid var(--border);
        padding: 10px 15px;
        background: white;
        border-radius: 6px;
        color: var(--navy);
        font-size: 13px;
    }
    nav {
        display: none;
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        background: #fff;
        padding: 20px 24px;
        box-shadow: 0 15px 20px #16345215;
        flex-wrap: wrap;
        gap: 12px 25px;
    }
    nav.is-open {
        display: flex;
    }
    nav > a:not(.button) {
        padding: 10px 0;
    }
    nav .button {
        margin-left: auto;
    }
    .hero-inner {
        padding: 42px 0 45px;
        min-height: 500px;
    }
    .hero h1 {
        font-size: 42px;
    }
    .hero-copy {
        max-width: 500px;
    }
    .hero-image {
        left: 20%;
        opacity: 0.5;
    }
    .hero:after {
        background: linear-gradient(90deg, #f1f6fc 10%, #f1f6fced 38%, #f1f6fc55);
    }
    .hero-note {
        display: none;
    }
    .trust-strip {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 20px;
    }
    .trust-strip > div:nth-child(3) {
        border: 0;
    }
    .trust-strip > div:nth-child(4) {
        grid-column: 1 / 2;
    }
    .trust-strip > div:nth-child(5) {
        grid-column: 2 / 4;
    }
    .about-grid {
        grid-template-columns: 1fr;
    }
    .about-card {
        min-height: 320px;
    }
    .local-card {
        padding: 28px;
    }
    .local-illustration {
        position: absolute;
        right: 28px;
        bottom: 55px;
        width: 180px;
    }
    .local-card p {
        max-width: 65%;
    }
    .home-bottom {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .home-bottom .faq-preview {
        padding: 0;
        border: 0;
    }
    .section {
        padding-block: 45px;
    }
    .two-col,
    .service-detail,
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .about-page {
        grid-template-columns: 1fr 1.1fr;
        gap: 26px;
    }
    .portrait-scene {
        height: 430px;
    }
    .about-page h2 {
        font-size: 29px;
    }
    .about-page .lead {
        font-size: 17px;
    }
    .full-pricing .price {
        font-size: 35px;
    }
    .full-pricing .button {
        font-size: 11px;
    }
    .faq-layout {
        grid-template-columns: 1fr 2fr;
        gap: 30px;
    }
    .contact-band h2 {
        font-size: 27px;
    }
    .footer-top {
        grid-template-columns: 1.2fr 0.7fr 1fr;
        gap: 20px;
    }
    .footer-bottom .handwritten {
        display: none;
    }
    .page-hero {
        padding-block: 44px;
    }
}
@media (max-width: 560px) {
    .container {
        width: calc(100% - 36px);
    }
    .topbar {
        font-size: 9px;
    }
    .hero-inner {
        padding-top: 35px;
        min-height: 510px;
    }
    .hero h1 {
        font-size: 36px;
        letter-spacing: -0.045em;
    }
    .hero .eyebrow {
        font-size: 9px;
    }
    .hero-copy .lead {
        font-size: 20px;
    }
    .hero-copy > p:not(.eyebrow):not(.handwritten) {
        max-width: 330px;
    }
    .hero-image {
        left: 0;
        opacity: 0.23;
    }
    .hero:after {
        background: linear-gradient(90deg, #f1f6fc, #f1f6fca8);
    }
    .hero-copy .hero-signoff {
        font-size: 18px;
        max-width: 270px;
    }
    .button {
        font-size: 12px;
        padding: 12px 15px;
        gap: 14px;
    }
    .button-row {
        gap: 9px;
    }
    .trust-strip {
        padding: 19px 8px;
        grid-template-columns: 1fr 1fr;
    }
    .trust-strip > div {
        padding: 0 7px;
        justify-content: flex-start;
        gap: 11px;
    }
    .trust-strip > div:nth-child(2) {
        border: 0;
    }
    .trust-strip > div:nth-child(3) {
        border-right: 1px solid var(--border);
    }
    .trust-strip > div:nth-child(4) {
        grid-column: auto;
        border: 0;
    }
    .trust-strip > div:nth-child(5) {
        grid-column: 1 / 3;
        justify-content: center;
        border-top: 1px solid var(--border);
        padding-top: 15px;
    }
    .trust-strip > div:nth-child(5) p br {
        display: none;
    }
    .trust-strip p {
        font-size: 11px;
    }
    .section-heading {
        gap: 13px;
        align-items: flex-end;
    }
    .section-heading .text-link {
        font-size: 11px;
    }
    .section-heading > div > p:not(.eyebrow) {
        font-size: 13px;
    }
    .section-heading h2 {
        font-size: 28px;
    }
    .section-heading:has(> .text-link) {
        flex-wrap: wrap;
    }
    .about-card {
        grid-template-columns: 1fr 0.5fr;
    }
    .about-card > div:first-child {
        padding: 25px 0 25px 23px;
    }
    .about-card h2 {
        font-size: 27px;
    }
    .about-card .eyebrow {
        font-size: 8px;
    }
    .about-photo {
        background-position: 64%;
    }
    .local-card p {
        max-width: none;
    }
    .local-illustration {
        position: static;
        width: 100%;
        margin-top: 18px;
    }
    .local-card .handwritten {
        font-size: 18px;
    }
    .home-bottom h2 {
        font-size: 26px;
    }
    .contact-band-inner {
        display: block;
    }
    .contact-band .button {
        margin-top: 24px;
    }
    .contact-band h2 {
        font-size: 28px;
    }
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }
    .footer-top > div:first-child {
        grid-column: 1 / 3;
    }
    .footer-top > div:last-child {
        min-width: 0;
    }
    .footer-top > div:last-child a {
        overflow-wrap: anywhere;
    }
    .footer-top p {
        font-size: 11px;
    }
    .footer-bottom {
        font-size: 9px;
        gap: 12px;
    }
    .page-hero h1 {
        font-size: 37px;
    }
    .page-hero .lead {
        font-size: 17px;
    }
    .about-page {
        grid-template-columns: 1fr;
    }
    .portrait-scene {
        height: 300px;
    }
    .values-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .values-grid h3 {
        margin-top: 8px;
    }
    .full-pricing .price {
        font-size: 48px;
    }
    .full-pricing .price span {
        display: inline;
        font-size: 15px;
    }
    .full-pricing .price-heading h3 {
        font-size: 23px;
    }
    .full-pricing .check-list li {
        font-size: 14px;
    }
    .full-pricing .button {
        font-size: 13px;
    }
    .faq-layout {
        display: flex;
        flex-direction: column-reverse;
        gap: 30px;
    }
    .faq-layout .faq summary {
        font-size: 15px;
    }
    .detail-card {
        padding: 26px;
    }
    .enquiry-form {
        padding: 23px 19px;
    }
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .contact-email {
        font-size: 18px;
    }
    .contact-layout {
        gap: 35px;
    }
    nav {
        gap: 9px 23px;
    }
    nav .button {
        width: 100%;
        margin-top: 10px;
    }
    .enquiry-form input,
    .enquiry-form select,
    .enquiry-form textarea {
        font-size: 16px;
    }
}
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    *,
    *:before,
    *:after {
        transition: none !important;
    }
}

/* Additional quotation services */
.additional-services,
.extra-pricing-section {
    padding-top: 0;
}
.additional-pricing {
    display: grid;
    grid-template-columns: 0.85fr 1.3fr;
    gap: 32px;
    align-items: start;
}
.payroll-only,
.additional-price-list {
    padding: 32px;
    border-radius: 16px;
}
.additional-price-list {
    background: var(--blue);
}
.payroll-only .price {
    font-size: 38px;
}
.additional-price-list dl {
    margin: 24px 0;
}
.additional-price-list dl > div {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 18px;
    padding: 13px 0;
    border-bottom: 1px solid #d5e2eb;
    font-size: 13px;
}
.additional-price-list dt a {
    text-decoration: none;
}
.additional-price-list dt a:hover {
    text-decoration: underline;
}
.additional-price-list dd {
    margin: 0;
    text-align: right;
    font-weight: 650;
    color: var(--navy);
}
.service-guide-price {
    padding: 20px;
    background: var(--blue);
    border-radius: 12px;
    margin-top: 24px;
}
.service-guide-price p {
    font-size: 14px;
}
.service-guide-price h3 {
    font-size: 20px;
}
.additional-pricing .pricing-note {
    font-size: 12px;
}
@media (max-width: 800px) {
    .additional-pricing {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 560px) {
    .payroll-only,
    .additional-price-list {
        padding: 24px 20px;
    }
    .additional-price-list dl > div {
        grid-template-columns: 1.2fr 1fr;
        gap: 12px;
        font-size: 12px;
    }
    .payroll-only .price span {
        display: inline;
    }
}

.logo-crop {
    display: block;
    width: 174px;
    height: 110px;
    position: relative;
    overflow: hidden;
    background: #fff;
}
.logo-crop img {
    position: absolute;
    width: 216px;
    max-width: none;
    height: auto;
    left: -21px;
    top: -56px;
}
.footer-brand .logo-crop {
    width: 154px;
    height: 101px;
}
.footer-brand .logo-crop img {
    width: 195px;
    top: -51px;
    left: -20px;
}
@media (max-width: 800px) {
    .logo-crop {
        width: 148px;
        height: 96px;
    }
    .logo-crop img {
        width: 190px;
        top: -50px;
        left: -20px;
    }
}

/* Keep the package comparison comfortable at narrow widths. */
.home-bottom .pricing-grid .price span {
    display: block;
    margin-top: 5px;
}
.full-pricing .price-card {
    padding-inline: 28px;
    margin-block: 28px;
}
.full-pricing .price-card:first-child {
    padding-left: 0;
}
.full-pricing .price-card:last-child {
    padding-right: 0;
}
.full-pricing .price-heading {
    background: none;
    padding: 0 0 24px;
    text-align: left;
}
.full-pricing .price-heading h3 {
    color: var(--navy);
    font-size: 20px;
    font-weight: 600;
}
.full-pricing .price-body {
    padding: 0;
    text-align: left;
}
.full-pricing .hours {
    font-weight: 500;
}
@media (max-width: 1050px) and (min-width: 801px) {
    .price-card {
        padding-inline: 12px;
    }
    .price {
        font-size: 28px;
    }
}
@media (max-width: 560px) {
    .price-card {
        padding-inline: 8px;
        margin-block: 20px;
    }
    .price-heading {
        padding-bottom: 16px;
    }
    .price-heading h3 {
        font-size: 13px;
    }
    .price {
        font-size: 28px;
    }
    .hours {
        font-size: 11px;
    }
    .full-pricing .pricing-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .full-pricing .price-card {
        padding: 24px 0;
        margin: 0;
        border-right: 0;
        border-bottom: 1px solid var(--border);
    }
    .full-pricing .price-card:last-child {
        border-bottom: 0;
    }
}

/* Shared service list with restrained brand colour. */
.service-list {
    background: #fcf6f8;
    border-top: 3px solid var(--pink);
    --service-inset: 30px;
    padding: 0;
    border-radius: 0 0 8px 8px;
}
.service-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr) 36px;
    align-items: center;
    gap: 40px;
    padding: 27px var(--service-inset);
    border-bottom: 1px solid #e8dce2;
    text-decoration: none;
    transition: background-color 0.18s;
}
.service-row:last-child {
    border-bottom: 0;
    border-radius: 0 0 8px 8px;
}
.service-row h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: -0.02em;
}
.service-row p {
    margin: 0;
    max-width: 540px;
    font-size: 15px;
    line-height: 1.6;
}
.service-arrow {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border: 1px solid #dcb6c5;
    border-radius: 50%;
    font-size: 21px;
    line-height: 1;
    color: var(--pink);
    transition:
        background-color 0.18s,
        color 0.18s;
}
.service-row:hover,
.service-row:focus-visible {
    background: #f7eaf0;
}
.service-row:hover .service-arrow,
.service-row:focus-visible .service-arrow {
    background: var(--pink);
    border-color: var(--pink);
    color: #fff;
}
.additional-services .service-list {
    background: #f2f6fa;
    border-top-color: var(--navy);
}
.additional-services .service-row {
    border-bottom-color: #dce5ed;
}
.additional-services .service-row:hover,
.additional-services .service-row:focus-visible {
    background: #e7eff6;
}
.service-row:hover h3,
.service-row:focus-visible h3 {
    color: var(--pink-dark);
}
@media (max-width: 800px) {
    .service-list {
        --service-inset: 24px;
    }
    .service-row {
        gap: 24px;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr) 36px;
    }
    .service-row h3 {
        font-size: 18px;
    }
    .service-row p {
        font-size: 14px;
    }
}
@media (max-width: 560px) {
    .service-list {
        --service-inset: 18px;
    }
    .service-row {
        grid-template-columns: minmax(0, 1fr) 32px;
        gap: 8px 14px;
        padding: 22px var(--service-inset);
    }
    .service-row h3 {
        grid-column: 1;
    }
    .service-row p {
        grid-column: 1;
        grid-row: 2;
    }
    .service-arrow {
        width: 32px;
        height: 32px;
        grid-column: 2;
        grid-row: 1 / 3;
        align-self: center;
    }
}

/* A little brand colour, with the same simple package comparison. */
.pricing-grid {
    background: #faf7f5;
    border: 1px solid #e9e2df;
    border-radius: 6px;
    overflow: hidden;
}
.price-card {
    position: relative;
    margin: 0;
    padding: 24px 18px;
    border-right: 1px solid #e9e2df;
}
.price-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #bd6486;
}
.price-card:nth-child(2) {
    background: #eff5f8;
}
.price-card:nth-child(2)::before {
    background: #60849e;
}
.price-card:nth-child(3)::before {
    background: #153452;
}
.price-card:first-child {
    padding-left: 18px;
}
.price-card:last-child {
    padding-right: 18px;
}
.price-heading h3 {
    color: #a43e67;
}
.price-card:nth-child(2) .price-heading h3 {
    color: #426984;
}
.price-card:nth-child(3) .price-heading h3 {
    color: var(--navy);
}
.full-pricing .price-card {
    margin: 0;
    padding: 30px 28px;
}
.full-pricing .price-card:first-child {
    padding-left: 28px;
}
.full-pricing .price-card:last-child {
    padding-right: 28px;
}
.full-pricing .price-heading h3 {
    color: #a43e67;
}
@media (max-width: 1050px) and (min-width: 801px) {
    .home-bottom .price-card {
        padding: 22px 12px;
    }
}
@media (max-width: 560px) {
    .home-bottom .price-card {
        padding: 22px 10px;
    }
    .full-pricing .price-card {
        padding: 28px 24px;
    }
    .full-pricing .price-card:first-child {
        padding-left: 24px;
    }
    .full-pricing .price-card:last-child {
        padding-right: 24px;
    }
}

/* Contact actions: balanced type, matching line icons and quieter edges. */
.contact-buttons {
    gap: 12px;
    align-items: center;
}
.contact-buttons .button,
.contact-band .button {
    min-height: 46px;
    padding: 12px 19px;
    gap: 20px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.4;
    box-shadow: 0 2px 3px #15345208;
    transition:
        background-color 0.18s,
        border-color 0.18s,
        box-shadow 0.18s;
}
.contact-buttons .button:hover,
.contact-band .button:hover {
    transform: none;
    box-shadow: 0 3px 8px #15345212;
}
.contact-buttons .button.outline {
    background: #ffffffc9;
    border-color: #b8c8d4;
    box-shadow: none;
}
.contact-buttons .button.outline:hover {
    background: #fff;
    border-color: #69859b;
}
.contact-buttons .button-icon,
.contact-band .button-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}
@media (max-width: 560px) {
    .contact-buttons {
        gap: 10px;
    }
    .contact-buttons .button,
    .contact-band .button {
        padding: 12px 14px;
        gap: 12px;
        font-size: 13px;
    }
}
