@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:wght@500;600;700&display=swap');

:root {
    --green-deep: #2f5646;
    --green-main: #6f9b83;
    --green-soft: #dfece3;
    --green-pale: #f2f7f3;
    --cream: #fbf8f1;
    --white: #ffffff;
    --text: #2e3732;
    --muted: #66736c;
    --gold: #c9a96a;
    --border: #dfe7e1;
    --shadow: 0 20px 50px rgba(44, 81, 64, 0.10);
    --radius-lg: 28px;
    --radius-md: 18px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
    background: var(--cream);
    line-height: 1.7;
}

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

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

button,
input,
select,
textarea {
    font: inherit;
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

.narrow {
    width: min(calc(100% - 40px), 860px);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(251, 248, 241, 0.94);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(47, 86, 70, 0.08);
}

.header-inner {
    min-height: 92px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.brand img {
    width: 185px;
    max-height: 72px;
    object-fit: contain;
}

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

.site-nav a {
    color: var(--green-deep);
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
}

.site-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.25s ease;
}

.site-nav a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    padding: 8px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    height: 2px;
    margin: 6px 0;
    background: var(--green-deep);
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 86px 0 98px;
    background:
        radial-gradient(circle at 85% 25%, rgba(111, 155, 131, 0.18), transparent 27%),
        linear-gradient(135deg, var(--cream), var(--green-pale));
}

.hero::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    left: -250px;
    bottom: -310px;
    background: rgba(223, 236, 227, 0.7);
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 76px;
    align-items: center;
}

.eyebrow,
.section-kicker {
    display: inline-block;
    margin-bottom: 16px;
    color: var(--green-main);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

h1,
h2,
h3,
blockquote {
    font-family: 'Playfair Display', serif;
    color: var(--green-deep);
    line-height: 1.15;
}

h1 {
    margin: 0 0 24px;
    max-width: 700px;
    font-size: clamp(3.2rem, 7vw, 6.5rem);
    font-weight: 600;
    letter-spacing: -0.04em;
}

h2 {
    margin: 0 0 24px;
    font-size: clamp(2.2rem, 4vw, 3.7rem);
    font-weight: 600;
}

h3 {
    margin: 0 0 14px;
    font-size: 1.45rem;
}

.hero-lead {
    max-width: 650px;
    margin: 0;
    color: var(--muted);
    font-size: 1.18rem;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 12px 23px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
    background: var(--green-deep);
    color: var(--white);
    box-shadow: 0 12px 24px rgba(47, 86, 70, 0.16);
}

.btn-primary:hover {
    background: #25473a;
}

.btn-secondary {
    border-color: rgba(47, 86, 70, 0.22);
    color: var(--green-deep);
    background: rgba(255, 255, 255, 0.72);
}

.hero-photo-wrap {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-photo-card {
    width: min(100%, 450px);
    overflow: hidden;
    border-radius: 48% 48% 28px 28px;
    box-shadow: var(--shadow);
    border: 10px solid rgba(255, 255, 255, 0.8);
}

.hero-photo-card img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center top;
}

.leaf {
    position: absolute;
    width: 110px;
    height: 48px;
    border-radius: 100% 0 100% 0;
    background: rgba(111, 155, 131, 0.28);
    transform: rotate(-28deg);
}

.leaf-one {
    right: 0;
    top: 20%;
}

.leaf-two {
    left: 4%;
    bottom: 10%;
    transform: rotate(145deg) scale(0.75);
}

.section {
    padding: 100px 0;
}

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

.about-copy {
    color: var(--muted);
    font-size: 1.05rem;
}

.about-copy p + p {
    margin-top: 20px;
}

.services-section {
    background: var(--green-pale);
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 48px;
}

.centred {
    text-align: center;
}

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

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.service-card {
    min-height: 100%;
    padding: 32px 26px;
    border-radius: var(--radius-md);
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: 0 10px 30px rgba(47, 86, 70, 0.05);
}

.service-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.96rem;
}

.service-icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    margin-bottom: 22px;
    border-radius: 50%;
    background: var(--green-soft);
    color: var(--green-deep);
    font-size: 1.35rem;
}

.quote-section {
    padding: 90px 0;
    text-align: center;
    background: var(--green-deep);
}

.quote-section blockquote {
    max-width: 760px;
    margin: 0 auto 24px;
    color: var(--white);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 500;
}

.quote-mark {
    height: 42px;
    margin: 0;
    color: var(--gold);
    font-family: Georgia, serif;
    font-size: 4.5rem;
    line-height: 1;
}

.quote-name {
    margin: 0;
    color: #eef5f0;
    font-weight: 700;
}

.quote-role {
    margin: 2px 0 0;
    color: #b9cfc2;
    font-size: 0.9rem;
}

.philosophy-section {
    background: var(--cream);
}

.philosophy-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: start;
}

.philosophy-copy {
    padding: 36px;
    border-left: 3px solid var(--gold);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    background: rgba(255, 255, 255, 0.55);
    color: var(--muted);
}

.philosophy-copy p:first-child {
    margin-top: 0;
}

.philosophy-copy p:last-child {
    margin-bottom: 0;
}

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

.contact-grid {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 70px;
    align-items: start;
}

.contact-intro {
    position: sticky;
    top: 130px;
}

.contact-intro p {
    color: var(--muted);
}

.contact-note {
    font-weight: 700;
    color: var(--green-deep) !important;
}

.form-card {
    padding: 38px;
    border-radius: var(--radius-lg);
    background: var(--green-pale);
    border: 1px solid var(--border);
}

.form-row {
    margin-bottom: 20px;
}

.form-row.two-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

label {
    display: block;
    margin-bottom: 7px;
    color: var(--green-deep);
    font-size: 0.9rem;
    font-weight: 700;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid #ccd9d0;
    border-radius: 12px;
    background: var(--white);
    color: var(--text);
    padding: 13px 14px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

textarea {
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--green-main);
    box-shadow: 0 0 0 4px rgba(111, 155, 131, 0.12);
}

.booking-form .btn {
    width: 100%;
    border: 0;
}

.form-helper {
    margin: 14px 0 0;
    text-align: center;
    color: var(--muted);
    font-size: 0.82rem;
}

.site-footer {
    padding: 40px 0;
    background: #27473a;
    color: #dce8e1;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.footer-inner img {
    width: 160px;
    padding: 8px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.92);
}

.footer-inner p {
    margin: 0;
    font-size: 0.9rem;
}

@media (max-width: 980px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-grid,
    .philosophy-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-copy {
        text-align: center;
    }

    .hero-lead {
        margin-inline: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .contact-intro {
        position: static;
    }
}

@media (max-width: 760px) {
    .header-inner {
        min-height: 78px;
    }

    .brand img {
        width: 150px;
    }

    .menu-toggle {
        display: block;
    }

    .site-nav {
        display: none;
        position: absolute;
        top: 78px;
        left: 20px;
        right: 20px;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 12px;
        border-radius: 16px;
        background: var(--white);
        box-shadow: var(--shadow);
    }

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

    .site-nav a {
        padding: 12px 10px;
    }

    .site-nav a::after {
        display: none;
    }

    .hero {
        padding: 62px 0 72px;
    }

    h1 {
        font-size: clamp(2.8rem, 14vw, 4.5rem);
    }

    .section {
        padding: 76px 0;
    }

    .services-grid,
    .form-row.two-cols {
        grid-template-columns: 1fr;
    }

    .form-card {
        padding: 26px 20px;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 520px) {
    .container,
    .narrow {
        width: min(calc(100% - 28px), var(--container));
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .service-card {
        padding: 26px 22px;
    }
}
