@import url('https://fonts.googleapis.com/css2?family=DM+Mono:wght@400;500&family=DM+Sans:opsz,wght@9..40,400;9..40,500;9..40,600&family=Playfair+Display:ital,wght@0,500;0,600;1,500;1,600&display=swap');

:root {
    --ink: #243730;
    --sage: #536d61;
    --sage-dark: #3e574b;
    --cream: #f7f3eb;
    --paper: #fcfaf6;
    --sand: #ded8cb;
    --line: #d9d5cb;
    --clay: #c97855;
    --serif: 'Playfair Display', Georgia, serif;
    --sans: 'DM Sans', Arial, sans-serif;
    --mono: 'DM Mono', monospace
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.55
}

a {
    color: inherit
}

.skip-link {
    position: absolute;
    left: -999px
}

.skip-link:focus {
    left: 1rem;
    top: 1rem;
    z-index: 10;
    background: #fff;
    padding: .7rem
}

.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1400px;
    margin: auto;
    padding: 24px 5vw
}

.brand {
    display: flex;
    align-items: center;
    gap: .65rem;
    text-decoration: none
}

.brand svg {
    width: 43px;
    fill: none;
    stroke: var(--sage);
    stroke-width: 1.7
}

.brand strong,
.brand small {
    display: block
}

.brand strong {
    font-family: var(--serif);
    font-size: 1.32rem;
    font-weight: 600;
    line-height: 1
}

.brand small {
    margin-top: 3px;
    color: #65756d;
    font-family: var(--mono);
    font-size: .61rem;
    letter-spacing: .08em;
    text-transform: uppercase
}

nav {
    display: flex;
    align-items: center;
    gap: 1.7rem;
    font-size: .86rem
}

nav a {
    text-decoration: none
}

.nav-cta,
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    background: var(--sage);
    border: 1px solid var(--sage);
    color: #fff !important;
    padding: .85rem 1.15rem;
    transition: .2s ease
}

.nav-cta {
    padding: .65rem 1rem
}

.button {
    text-decoration: none;
    font-weight: 600
}

.button:hover {
    background: var(--sage-dark);
    transform: translateY(-2px)
}

.menu-toggle {
    display: none;
    background: none;
    border: 0;
    font: inherit
}

.hero {
    position: relative;
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    gap: 7vw;
    min-height: 620px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 70px 5vw 100px;
    align-items: center;
    overflow: hidden
}

.hero:before {
    content: '';
    position: absolute;
    width: 44vw;
    height: 44vw;
    border-radius: 50%;
    background: #e8e5d9;
    left: -16vw;
    top: -16vw;
    z-index: -1
}

.hero-copy {
    max-width: 650px
}

.eyebrow {
    margin: 0 0 1rem;
    color: var(--sage);
    font-family: var(--mono);
    font-size: .69rem;
    letter-spacing: .13em;
    text-transform: uppercase
}

.hero h1,
h2 {
    font-family: var(--serif);
    font-weight: 500;
    letter-spacing: -.04em;
    line-height: 1.04
}

.hero h1 {
    margin: .15em 0 .35em;
    font-size: clamp(3.3rem, 6vw, 6.2rem)
}

h1 em {
    color: var(--sage);
    font-weight: 500
}

.intro {
    max-width: 480px;
    margin: 0 0 2rem;
    font-size: 1.12rem;
    color: #4d5d55
}

.hero-image {
    height: 500px;
    overflow: hidden;
    transform: rotate(2.7deg);
    box-shadow: 18px 19px 0 var(--sand)
}

.hero-image img,
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.hero-note {
    position: absolute;
    right: 3.5vw;
    bottom: 47px;
    margin: 0;
    color: #65756d;
    font-family: var(--mono);
    font-size: .65rem;
    letter-spacing: .08em;
    line-height: 1.6;
    text-transform: uppercase;
    text-align: right
}

.section {
    max-width: 1400px;
    margin: auto;
    padding: 115px 5vw
}

.story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12vw;
    background: var(--cream)
}

h2 {
    margin: .1em 0;
    font-size: clamp(2.5rem, 4.4vw, 4.6rem)
}

.story-copy {
    font-size: 1.15rem
}

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

.placeholder-copy {
    color: #7b8079;
    font-size: .95rem;
    font-style: italic
}

.gallery {
    padding-top: 135px
}

.section-heading {
    display: grid;
    grid-template-columns: 1.3fr .7fr;
    gap: 7vw;
    align-items: end;
    margin-bottom: 48px
}

.section-heading .eyebrow {
    grid-column: 1
}

.section-heading h2 {
    grid-column: 1;
    margin-top: -.1em
}

.section-heading>p {
    grid-column: 2;
    grid-row: 1 / span 2;
    color: #5f6963
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1.08fr .92fr .92fr;
    grid-template-rows: 280px 280px;
    gap: 18px
}

.gallery-item {
    margin: 0;
    overflow: hidden;
    background: #e2dfd7
}

.gallery-item img {
    transition: transform .5s ease
}

.gallery-item:hover img {
    transform: scale(1.04)
}

.item-1 {
    grid-row: span 2
}

.item-4 {
    grid-column: 2
}

.item-5 {
    grid-column: 3
}

.item-6 {
    display: none
}

.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    background: var(--sage);
    color: #fff;
    padding: 80px max(5vw, calc((100vw - 1400px)/2 + 5vw))
}

.features article {
    border-top: 1px solid #a1b1a9;
    padding-top: 18px
}

.features span {
    font-family: var(--mono);
    font-size: .7rem;
    color: #d6dfd7
}

.features h3 {
    font-family: var(--serif);
    font-size: 1.65rem;
    font-weight: 500;
    margin: .55rem 0
}

.features p {
    max-width: 270px;
    margin: 0;
    color: #e4eae5
}

.location {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 10vw;
    align-items: center
}

.location-card p:not(.eyebrow) {
    max-width: 530px;
    color: #59665f;
    font-size: 1.05rem
}

.text-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--sage);
    font-weight: 600;
    text-underline-offset: 5px
}

.address {
    padding: 55px;
    background: #eee9df;
    text-align: center
}

.address svg {
    width: 37px;
    fill: none;
    stroke: var(--clay);
    stroke-width: 1.7
}

.address p {
    line-height: 1.8
}

.contact {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 11vw;
    background: #eeece5
}

.contact>div>p:not(.eyebrow) {
    color: #5d6862;
    font-size: 1.08rem
}

.contact-email {
    display: inline-block;
    margin-top: 1rem;
    font-family: var(--serif);
    font-size: 1.7rem;
    color: var(--sage);
    text-underline-offset: 5px
}

.contact-placeholder {
    font-family: var(--mono);
    font-size: .68rem !important;
    text-transform: uppercase;
    letter-spacing: .08em
}

.contact-form {
    display: grid;
    gap: 1.1rem
}

.contact-form label {
    display: grid;
    gap: .4rem;
    font-size: .85rem;
    font-weight: 600
}

.contact-form input:not([type=checkbox]),
.contact-form textarea {
    width: 100%;
    border: 1px solid #c5c4bb;
    border-radius: 0;
    background: #fff;
    padding: .85rem;
    font: inherit
}

.contact-form textarea {
    min-height: 125px;
    resize: vertical
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: 2px solid var(--sage);
    outline-offset: 1px
}

.consent {
    grid-template-columns: 20px 1fr;
    align-items: start;
    font-size: .75rem !important;
    font-weight: 400 !important
}

.consent input {
    margin-top: 4px
}

.trap {
    position: absolute;
    left: -9999px
}

.form-message {
    margin: 0;
    padding: .8rem
}

.success {
    background: #d9eadb
}

.error {
    background: #f5d8d0
}

footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1400px;
    margin: auto;
    padding: 38px 5vw;
    color: #66746c;
    font-size: .78rem
}

footer p {
    margin: 0
}

.cf-turnstile {
    min-height: 65px
}

@media(max-width:760px) {
    .site-header {
        padding: 20px 6vw
    }

    .menu-toggle {
        display: block;
        color: var(--sage);
        font-family: var(--mono);
        font-size: .72rem;
        text-transform: uppercase
    }

    nav {
        display: none;
        position: absolute;
        z-index: 5;
        top: 82px;
        right: 6vw;
        left: 6vw;
        padding: 1.4rem;
        background: #fff;
        box-shadow: 0 10px 35px #26382d22;
        flex-direction: column;
        align-items: stretch
    }

    nav.open {
        display: flex
    }

    .hero {
        grid-template-columns: 1fr;
        padding: 50px 6vw 80px;
        gap: 42px;
        min-height: 0
    }

    .hero:before {
        width: 95vw;
        height: 95vw;
        left: -45vw;
        top: -25vw
    }

    .hero h1 {
        font-size: 3.35rem
    }

    .hero-image {
        height: 360px;
        width: 82%;
        justify-self: end
    }

    .hero-note {
        bottom: 36px;
        right: 6vw
    }

    .section {
        padding: 80px 6vw
    }

    .story,
    .location,
    .contact {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .section-heading {
        display: block
    }

    .section-heading>p {
        margin-top: 1.4rem
    }

    .gallery {
        padding-top: 90px
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 240px 190px 190px;
        gap: 10px
    }

    .item-1 {
        grid-row: span 2
    }

    .item-3 {
        display: none
    }

    .item-4 {
        grid-column: 2
    }

    .item-5 {
        grid-column: 1 / span 2
    }

    .features {
        grid-template-columns: 1fr;
        padding: 58px 6vw;
        gap: 2rem
    }

    .address {
        padding: 40px 20px
    }

    footer {
        align-items: flex-start;
        flex-direction: column;
        gap: 1rem;
        padding: 32px 6vw
    }
}