:root {
    --green: #587f67;
    --darkgreen: #385e47;
    --plum: #58203f;
    --ink: #262725;
    --soft: #f3f6f3;
}
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    color: var(--ink);
    font:
        17px/1.7 system-ui,
        -apple-system,
        BlinkMacSystemFont,
        'Segoe UI',
        sans-serif;
}
a {
    color: var(--plum);
    text-underline-offset: 4px;
}
a:hover {
    color: var(--darkgreen);
}
img {
    max-width: 100%;
    height: auto;
    border-radius: 7px;
}
h1,
h2,
h3 {
    line-height: 1.2;
    letter-spacing: -0.025em;
}
h1 {
    font-size: clamp(2rem, 4vw, 3rem);
}
h2 {
    font-size: clamp(1.7rem, 3vw, 2.4rem);
}
h3 {
    font-size: 1.3rem;
}
p {
    margin: 0 0 1.2em;
}
.wrap {
    width: min(1120px, calc(100% - 48px));
    margin: auto;
}
.nav {
    display: flex;
    gap: 38px;
    align-items: center;
    min-height: 82px;
}
.brand {
    font-size: clamp(1.3rem, 2.6vw, 2rem);
    font-weight: 750;
    white-space: nowrap;
    color: var(--ink);
    text-decoration: none;
}
.desktop-nav {
    display: flex;
    gap: 24px;
    align-items: center;
    margin-left: auto;
    font-size: 14px;
    font-weight: 600;
}
.desktop-nav a {
    color: var(--ink);
    text-decoration: none;
}
.desktop-nav details {
    position: relative;
}
.desktop-nav summary {
    cursor: pointer;
    white-space: nowrap;
}
.desktop-nav details > div {
    position: absolute;
    top: 32px;
    left: -20px;
    width: 290px;
    padding: 16px 20px;
    background: white;
    box-shadow: 0 6px 24px #0002;
    z-index: 20;
    border: 1px solid #ddd;
}
.desktop-nav details a {
    display: block;
    padding: 6px 0;
}
.mobile-nav {
    display: none;
}
.identity {
    background: #1c201d;
    color: white;
    padding: 18px 0;
}
.identity strong {
    font-size: 22px;
}
.identity p {
    font-size: 13px;
    line-height: 1.55;
    margin: 4px 0;
}
.identity a {
    font-size: 14px;
    color: #b4d2bb;
    text-decoration: none;
}
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 45px;
    align-items: center;
    padding-top: 24px;
    padding-bottom: 68px;
    min-height: 470px;
}
.hero h1 {
    line-height: 1.1;
    margin: 0 0 22px;
    font-weight: 750;
}
.hero h1 span {
    color: var(--green);
}
.hero p {
    font-size: 16px;
}
.hero strong {
    color: var(--plum);
}
.button {
    display: inline-block;
    background: var(--plum);
    border: 0;
    color: white;
    padding: 10px 23px;
    border-radius: 24px;
    text-decoration: none;
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    cursor: pointer;
}
.button:hover {
    background: #3d142b;
    color: white;
}
.button span {
    margin-left: 10px;
}
.slideshow {
    position: relative;
}
.hero-photo {
    width: 100%;
    height: 365px;
    object-fit: cover;
}
.hero-photo[hidden] {
    display: none;
}
.slide-control {
    display: block;
    margin: 12px auto 0;
    border: 0;
    background: none;
    color: var(--plum);
    text-decoration: underline;
    cursor: pointer;
    font: inherit;
    font-size: 14px;
}
.green {
    background: var(--green);
    color: white;
    padding: 60px 0;
}
.green a {
    color: white;
}
.content {
    text-align: center;
}
.content p {
    text-align: left;
}
.photo-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 32px;
}
.photo-pair img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}
.section {
    padding-top: 60px;
    padding-bottom: 60px;
}
.section > h2 {
    text-align: center;
}
.cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 32px 0;
}
.card {
    border: 1px solid #d2dad2;
    border-radius: 12px;
    padding: 25px;
    display: flex;
    flex-direction: column;
}
.card h3 {
    margin-top: 0;
}
.card p {
    font-size: 16px;
}
.card a {
    margin-top: auto;
}
.price {
    display: block;
    color: var(--green);
    font-size: 30px;
    margin-top: 18px;
}
.green-button {
    background: var(--darkgreen);
}
.center {
    text-align: center;
}
.soft {
    background: var(--soft);
}
.testimonials {
    columns: 3;
    column-gap: 32px;
}
.testimonials > h2 {
    column-span: all;
}
.testimonials h3 {
    break-after: avoid;
    color: var(--plum);
}
.testimonials p {
    font-size: 16px;
}
.about > img {
    max-width: 44%;
    float: left;
    margin: 0 35px 24px 0;
}
.about::after {
    content: '';
    display: block;
    clear: both;
}
.about img + img {
    max-width: 180px;
}
.link-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.link-grid a {
    border-bottom: 1px solid #ced9cf;
    padding: 14px 0;
}
.page-title {
    background: var(--soft);
    padding: 38px 0;
}
.page-title h1 {
    margin: 0;
}
.article {
    max-width: 900px;
    padding-top: 45px;
    padding-bottom: 60px;
}
.article > img {
    display: block;
    max-height: 440px;
    width: auto;
    max-width: 100%;
    margin: 24px auto;
}
.article h2 {
    margin-top: 1.6em;
}
.article h3 {
    margin-top: 1.4em;
}
.cta {
    text-align: center;
    background: var(--soft);
    padding: 28px 0 45px;
}
.cta a {
    margin: 8px;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}
label {
    display: block;
    font-weight: 600;
    margin-bottom: 16px;
}
input,
textarea {
    display: block;
    width: 100%;
    font: inherit;
    line-height: 1.5;
    padding: 12px;
    border: 1px solid #7c8b80;
    border-radius: 5px;
    margin-top: 6px;
    background: white;
    color: var(--ink);
}
textarea {
    resize: vertical;
}
.consent {
    font-size: 15px;
    font-weight: 400;
    display: flex;
    gap: 10px;
}
.consent input {
    width: 22px;
    height: 22px;
    flex: none;
}
.trap {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
form > p {
    font-size: 15px;
}
footer {
    background: #202920;
    color: #e6eee6;
    padding: 48px 0 20px;
    font-size: 14px;
}
footer a {
    display: block;
    color: #e6eee6;
    text-decoration: none;
    padding: 3px 0;
}
footer a:hover {
    color: white;
    text-decoration: underline;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.7fr 1fr 1fr;
    gap: 30px;
}
.footer-grid h2 {
    font-size: 24px;
}
.footer-grid h3 {
    font-size: 17px;
}
.footnote {
    padding-top: 24px;
    margin-top: 30px;
    border-top: 1px solid #ffffff30;
}
.footnote a {
    display: inline;
}
.skip {
    position: absolute;
    left: 10px;
    top: -100px;
    background: white;
    padding: 8px;
    z-index: 50;
}
.skip:focus {
    top: 5px;
}
:focus-visible {
    outline: 3px solid #b16598;
    outline-offset: 4px;
}
button:disabled {
    opacity: 0.6;
    cursor: wait;
}
@media (max-width: 1050px) {
    .desktop-nav {
        gap: 13px;
    }
    .nav {
        gap: 20px;
    }
    .brand {
        font-size: 25px;
    }
    .cards {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 850px) {
    .desktop-nav {
        display: none;
    }
    .mobile-nav {
        display: block;
        margin-left: auto;
    }
    .mobile-nav summary {
        cursor: pointer;
        padding: 10px;
    }
    .mobile-nav nav {
        position: absolute;
        right: 20px;
        top: 70px;
        background: white;
        border: 1px solid #ddd;
        box-shadow: 0 6px 24px #0002;
        padding: 18px;
        z-index: 30;
        max-height: 70vh;
        overflow: auto;
    }
    .mobile-nav a {
        display: block;
        padding: 6px;
    }
    .hero {
        gap: 28px;
        min-height: 0;
    }
    .hero-photo {
        height: 300px;
    }
    .testimonials {
        columns: 2;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .contact-grid {
        gap: 30px;
    }
}
@media (max-width: 600px) {
    .wrap {
        width: calc(100% - 32px);
    }
    .nav {
        min-height: 70px;
    }
    .brand {
        font-size: 21px;
        white-space: normal;
        line-height: 1.2;
    }
    .identity {
        padding: 12px 0;
    }
    .identity strong {
        font-size: 20px;
    }
    .hero {
        grid-template-columns: 1fr;
        padding-top: 32px;
        padding-bottom: 35px;
    }
    .hero h1 {
        font-size: 36px;
    }
    .hero-photo {
        height: 260px;
    }
    .green,
    .section {
        padding-top: 38px;
        padding-bottom: 38px;
    }
    .photo-pair {
        gap: 12px;
    }
    .photo-pair img {
        height: 180px;
    }
    .cards,
    .contact-grid,
    .link-grid {
        grid-template-columns: 1fr;
    }
    .testimonials {
        columns: 1;
    }
    .about > img {
        max-width: 100%;
        float: none;
        margin: 0 0 24px;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }
    .footer-grid > div:first-child {
        grid-column: 1/-1;
    }
    .page-title {
        padding: 28px 0;
    }
    .article {
        padding-top: 28px;
    }
    body {
        font-size: 16px;
    }
    .footnote {
        overflow-wrap: anywhere;
    }
}
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

/* Contact form uses the existing green/plum identity. */
.eyebrow {
    color: var(--darkgreen);
    font-size: 0.8rem;
    font-weight: 750;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}
.actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
    margin: 22px 0;
}
.button.secondary {
    background: white;
    color: var(--plum);
    border: 1px solid var(--plum);
}
.contact-options {
    padding: 28px;
    border: 1px solid #d2dad2;
    border-radius: 14px;
    background: var(--soft);
    min-width: 0;
}
.contact-options h2 {
    margin-top: 0;
}
.contact-grid > * {
    min-width: 0;
    overflow-wrap: anywhere;
}
.contact-options fieldset {
    padding: 0;
    margin: 0;
    border: 0;
    min-width: 0;
}
.contact-options legend {
    font-weight: 700;
    margin: 20px 0;
}
.contact-options input,
.contact-options textarea {
    font-size: 16px;
}
#draft-status,
.small-print {
    font-size: 14px;
    line-height: 1.6;
}
#enquiry-result:not(:empty) {
    border-left: 4px solid var(--darkgreen);
    padding: 14px;
    background: white;
}
@media (max-width: 600px) {
    .contact-options {
        padding: 20px;
    }
    .actions .button {
        min-height: 44px;
    }
    .mobile-nav a {
        min-height: 44px;
    }
}

.text-button {
    background: transparent;
    border: 0;
    color: var(--plum);
    text-decoration: underline;
    font: inherit;
    cursor: pointer;
    padding: 10px 0;
    min-height: 44px;
}
