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

:root {
    --ink: #26362f;
    --muted: #67736d;
    --cream: #f5f1e8;
    --paper: #fcfaf5;
    --sage: #cbd3c7;
    --sage-dark: #89998c;
    --line: rgba(38, 54, 47, .18);
    --white: #fff;
    --shadow: 0 20px 60px rgba(38, 54, 47, .12);
    --shell: 1180px;
    --serif: "Italiana", Georgia, serif;
    --sans: "DM Sans", Arial, sans-serif
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: var(--cream);
    color: var(--ink);
    font: 400 1rem/1.75 var(--sans);
    -webkit-font-smoothing: antialiased
}

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

a {
    color: inherit;
    text-underline-offset: .2em
}

h1,
h2,
h3,
p {
    margin-top: 0
}

h1,
h2,
h3 {
    font-family: var(--serif);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -.015em
}

h1 {
    font-size: clamp(3.2rem, 8vw, 7.2rem)
}

h2 {
    font-size: clamp(2.4rem, 5vw, 4.8rem)
}

h3 {
    font-size: clamp(1.65rem, 3vw, 2.4rem)
}

.shell {
    width: min(calc(100% - 3rem), var(--shell));
    margin-inline: auto
}

.skip-link {
    position: fixed;
    left: 1rem;
    top: -5rem;
    background: var(--ink);
    color: #fff;
    padding: .8rem 1rem;
    z-index: 99
}

.skip-link:focus {
    top: 1rem
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0
}

.site-header {
    position: relative;
    z-index: 20;
    background: var(--cream)
}

.header-inner {
    min-height: 106px;
    display: flex;
    align-items: center;
    gap: 2rem
}

.brand {
    display: inline-flex;
    flex-direction: column;
    text-decoration: none;
    line-height: .82
}

.brand-main {
    font: 400 2rem var(--serif);
    letter-spacing: .02em
}

.brand-sub {
    font: 500 .68rem var(--sans);
    text-transform: uppercase;
    letter-spacing: .3em;
    margin: .45rem 0 0 2.1rem
}

.site-nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 1.6rem
}

.site-nav a {
    font-size: .74rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .09em;
    text-decoration: none
}

.site-nav a:hover,
.site-nav a[aria-current=page] {
    opacity: .55
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: .8rem 1.45rem;
    border: 1px solid var(--ink);
    background: var(--ink);
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: .72rem;
    font-weight: 600;
    transition: .2s
}

.button:hover {
    background: transparent;
    color: var(--ink)
}

.button--light {
    background: #fff;
    color: var(--ink);
    border-color: #fff
}

.button--light:hover {
    color: #fff;
    border-color: #fff
}

.button--small {
    min-height: 43px;
    padding: .6rem 1rem
}

.nav-toggle {
    display: none
}

.hero {
    position: relative;
    min-height: calc(100vh - 106px);
    display: grid;
    align-items: end;
    background: center/cover no-repeat;
    color: #fff;
    isolation: isolate
}

.hero:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(20, 35, 29, .12), rgba(20, 35, 29, .65));
    z-index: -1
}

.hero-content {
    padding: 8rem 0 6rem;
    max-width: 900px
}

.eyebrow {
    font-size: .73rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .2em;
    margin-bottom: 1.3rem
}

.hero h1 {
    max-width: 880px;
    margin-bottom: 1.2rem
}

.hero-copy {
    font-size: clamp(1rem, 2vw, 1.3rem);
    max-width: 720px;
    margin-bottom: 2rem
}

.section {
    padding: clamp(5rem, 10vw, 9rem) 0
}

.section--paper {
    background: var(--paper)
}

.section--sage {
    background: var(--sage)
}

.split {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
    gap: clamp(3rem, 8vw, 8rem);
    align-items: center
}

.portrait,
.feature-image {
    width: 100%;
    min-height: 620px;
    object-fit: cover
}

.copy {
    max-width: 650px
}

.copy p {
    color: var(--muted)
}

.copy .lead {
    font-size: 1.2rem;
    color: var(--ink)
}

.text-link {
    display: inline-block;
    margin-top: 1rem;
    font-size: .75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .13em
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line)
}

.feature-card {
    background: var(--sage);
    padding: 3.2rem 2.4rem;
    min-height: 310px;
    display: flex;
    flex-direction: column
}

.feature-card p {
    color: #4c5c54
}

.feature-card .text-link {
    margin-top: auto
}

.image-band {
    min-height: 540px;
    background: center/cover no-repeat;
    background-attachment: fixed
}

.quote-block {
    max-width: 1000px;
    text-align: center
}

.quote-block blockquote {
    font: 400 clamp(2rem, 5vw, 4.3rem)/1.18 var(--serif);
    margin: 0
}

.quote-block cite {
    display: block;
    margin-top: 2rem;
    font-style: normal;
    text-transform: uppercase;
    font-size: .72rem;
    letter-spacing: .18em
}

.testimonials-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 2rem;
    margin-bottom: 3rem
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.4rem
}

.testimonial {
    background: var(--white);
    padding: 2.5rem;
    box-shadow: 0 8px 30px rgba(38, 54, 47, .06)
}

.testimonial p {
    font-family: var(--serif);
    font-size: 1.45rem;
    line-height: 1.45
}

.testimonial strong {
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: .15em
}

.contact-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: clamp(3rem, 8vw, 8rem)
}

.contact-details a {
    display: block;
    font: 400 clamp(1.3rem, 3vw, 2.4rem) var(--serif);
    margin: .4rem 0
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem
}

.contact-form label {
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .12em
}

.contact-form label:last-of-type {
    grid-column: 1/-1
}

.contact-form input,
.contact-form textarea {
    display: block;
    width: 100%;
    margin-top: .45rem;
    padding: 1rem;
    border: 1px solid var(--line);
    background: transparent;
    font: inherit;
    color: inherit
}

.contact-form button {
    justify-self: start
}

.form-note {
    grid-column: 1/-1;
    color: var(--muted);
    font-size: .8rem
}

.page-hero {
    min-height: 620px;
    display: grid;
    align-items: end;
    color: #fff;
    background: center/cover no-repeat;
    position: relative;
    isolation: isolate
}

.page-hero:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(26, 43, 35, .12), rgba(26, 43, 35, .6));
    z-index: -1
}

.page-hero .shell {
    padding-bottom: 5rem
}

.page-hero h1 {
    max-width: 1050px
}

.prose {
    max-width: 820px
}

.prose h2 {
    margin-top: 1.6em
}

.prose h3 {
    margin-top: 1.5em
}

.prose p,
.prose li {
    color: var(--muted)
}

.prose blockquote {
    margin: 3rem 0;
    padding: 2rem 0;
    border-block: 1px solid var(--line);
    font: 400 1.8rem/1.45 var(--serif)
}

.benefit-list {
    columns: 2;
    column-gap: 3rem
}

.note {
    border-left: 3px solid var(--sage-dark);
    padding: 1.3rem 1.6rem;
    background: var(--paper);
    margin: 2.5rem 0
}

.faq {
    border-top: 1px solid var(--line)
}

.faq details {
    border-bottom: 1px solid var(--line);
    padding: 1.2rem 0
}

.faq summary {
    cursor: pointer;
    font-family: var(--serif);
    font-size: 1.5rem
}

.price-grid,
.location-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.3rem
}

.price-card,
.location-card {
    background: var(--paper);
    padding: 2.3rem;
    border: 1px solid var(--line)
}

.price-value {
    font: 400 2.5rem var(--serif)
}

.location-grid {
    grid-template-columns: repeat(2, 1fr)
}

.location-card {
    display: flex;
    flex-direction: column
}

.location-card .button {
    margin-top: auto;
    align-self: flex-start
}

.site-footer {
    background: var(--ink);
    color: #fff;
    padding: 5rem 0 2rem
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem
}

.brand--footer {
    margin-bottom: 1.5rem
}

.footer-grid p {
    max-width: 430px;
    color: #cad1cc
}

.footer-grid a:not(.brand) {
    display: block;
    text-decoration: none;
    margin: .35rem 0
}

.footer-heading {
    text-transform: uppercase;
    font-size: .7rem;
    letter-spacing: .15em !important;
    color: #fff !important
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .15);
    margin-top: 3rem;
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    color: #aeb9b2;
    font-size: .72rem
}

.footer-bottom span:last-child {
    text-align: right
}

@media(max-width:1000px) {
    .header-book {
        display: none
    }

    .site-nav {
        gap: 1rem
    }

    .site-nav a {
        font-size: .66rem
    }

    .feature-grid,
    .price-grid {
        grid-template-columns: 1fr
    }

    .feature-card {
        min-height: 0
    }

    .image-band {
        background-attachment: scroll
    }
}

@media(max-width:780px) {
    .shell {
        width: min(calc(100% - 2rem), var(--shell))
    }

    .header-inner {
        min-height: 82px
    }

    .brand-main {
        font-size: 1.65rem
    }

    .nav-toggle {
        display: grid;
        margin-left: auto;
        width: 44px;
        height: 44px;
        border: 0;
        background: transparent;
        place-content: center;
        gap: 7px
    }

    .nav-toggle span:not(.sr-only) {
        width: 25px;
        height: 1px;
        background: var(--ink)
    }

    .site-nav {
        position: absolute;
        top: 82px;
        left: 0;
        right: 0;
        background: var(--cream);
        padding: 1.5rem;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        border-top: 1px solid var(--line);
        box-shadow: var(--shadow)
    }

    .site-nav[data-open=true] {
        display: flex
    }

    .site-nav a {
        font-size: .8rem
    }

    .hero {
        min-height: calc(100svh - 82px)
    }

    .hero-content {
        padding: 5rem 0 4rem
    }

    .split,
    .contact-grid,
    .location-grid {
        grid-template-columns: 1fr
    }

    .portrait,
    .feature-image {
        min-height: 440px
    }

    .testimonials {
        grid-template-columns: 1fr
    }

    .testimonials-head {
        display: block
    }

    .contact-form {
        grid-template-columns: 1fr
    }

    .contact-form label:last-of-type {
        grid-column: auto
    }

    .benefit-list {
        columns: 1
    }

    .page-hero {
        min-height: 500px
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem
    }

    .footer-bottom {
        display: block
    }

    .footer-bottom span {
        display: block;
        margin: .5rem 0
    }

    .footer-bottom span:last-child {
        text-align: left
    }
}