:root {
    --ink: #263126;
    --forest: #314436;
    --deep: #203126;
    --cream: #f5f0e7;
    --paper: #fbf9f4;
    --sage: #aebba7;
    --clay: #b16e52;
    --gold: #d5b46f;
    --line: rgba(38, 49, 38, .16);
    --serif: 'Playfair Display', Georgia, serif;
    --sans: 'DM Sans', system-ui, sans-serif;
    --shell: min(1180px, calc(100vw - 44px));
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

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

img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover
}

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

.shell {
    width: var(--shell);
    margin-inline: auto
}

.eyebrow {
    margin: 0 0 18px;
    text-transform: uppercase;
    letter-spacing: .17em;
    font-size: .72rem;
    font-weight: 700;
    color: #657363
}

.eyebrow.light {
    color: #e4e7dc
}

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

h1, h2, h3 {
    font-family: var(--serif);
    font-weight: 500;
    line-height: 1.05
}

h2 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    letter-spacing: -.035em
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border: 1px solid transparent;
    font-size: .84rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    transition: .2s ease;
    cursor: pointer
}

.button-primary {
    background: var(--cream);
    color: var(--deep)
}

.button-primary:hover {
    background: white;
    transform: translateY(-2px)
}

.button-ghost {
    border-color: rgba(255, 255, 255, .6);
    color: white
}

.button-ghost:hover {
    background: rgba(255, 255, 255, .12)
}

.site-header {
    position: absolute;
    z-index: 20;
    top: 0;
    left: 0;
    right: 0;
    height: 90px;
    padding: 0 max(22px, calc((100vw - 1180px) / 2));
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, .22)
}

.brand {
    display: flex;
    align-items: center;
    gap: 13px
}

.brand-mark {
    width: 43px;
    height: 43px;
    border: 1px solid rgba(255, 255, 255, .72);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-family: var(--serif);
    font-size: 1rem
}

.brand-copy {
    display: grid;
    line-height: 1.1
}

.brand-copy strong {
    font-family: var(--serif);
    font-size: 1.3rem;
    font-weight: 500
}

.brand-copy small {
    font-size: .64rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    margin-top: 4px
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    font-size: .82rem;
    font-weight: 600
}

.site-nav > a:not(.nav-cta) {
    opacity: .9
}

.site-nav > a:hover {
    opacity: 1
}

.nav-cta {
    border: 1px solid rgba(255, 255, 255, .65);
    padding: 11px 15px
}

.menu-button {
    display: none;
    background: none;
    color: white;
    border: 1px solid rgba(255, 255, 255, .5);
    padding: 8px 12px
}

.hero {
    height: max(730px, 100svh);
    position: relative;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden
}

.hero-media {
    position: absolute;
    inset: 0;
    background: url('https://static.wixstatic.com/media/d76e7a_3364957eae314c98bf62e55f47fc8fc3~mv2.jpg/v1/fill/w_1800,h_1200,al_c,q_92/d76e7a_3364957eae314c98bf62e55f47fc8fc3~mv2.jpg') center 52%/cover no-repeat;
    transform: scale(1.02)
}

.hero-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(18, 29, 22, .78) 0%, rgba(18, 29, 22, .54) 48%, rgba(18, 29, 22, .14) 80%), linear-gradient(0deg, rgba(11, 19, 14, .5), transparent 45%)
}

.hero-content {
    position: relative;
    padding-top: 80px
}

.hero h1 {
    font-size: clamp(4rem, 8vw, 7.6rem);
    max-width: 990px;
    letter-spacing: -.045em;
    margin-bottom: 25px
}

.hero h1 em {
    font-weight: 500
}

.hero-lede {
    font-size: clamp(1rem, 1.6vw, 1.25rem);
    max-width: 650px;
    color: #eff2eb;
    margin-bottom: 32px
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.scroll-cue {
    position: absolute;
    right: max(22px, calc((100vw - 1180px) / 2));
    bottom: 34px;
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .16em;
    display: flex;
    gap: 12px;
    align-items: center
}

.scroll-cue span {
    font-size: 1rem
}

.quick-proof {
    background: var(--cream);
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    padding: 28px max(22px, calc((100vw - 1180px) / 2));
    gap: 0
}

.quick-proof div {
    padding: 2px 28px;
    border-right: 1px solid var(--line)
}

.quick-proof div:first-child {
    padding-left: 0
}

.quick-proof div:last-child {
    border: 0
}

.quick-proof strong, .quick-proof span {
    display: block
}

.quick-proof strong {
    font-family: var(--serif);
    font-size: 1.1rem;
    font-weight: 500
}

.quick-proof span {
    font-size: .78rem;
    color: #6c756d;
    margin-top: 2px
}

.split-section {
    display: grid;
    grid-template-columns:.9fr 1.1fr;
    gap: clamp(50px, 8vw, 110px);
    align-items: center;
    padding-block: 120px
}

.split-copy h2 {
    margin-bottom: 30px
}

.split-copy > p:not(.eyebrow) {
    font-size: 1.05rem;
    color: #596359;
    max-width: 580px
}

.inline-links {
    display: flex;
    gap: 25px;
    margin-top: 28px;
    font-weight: 700;
    font-size: .84rem
}

.inline-links a {
    padding-bottom: 4px;
    border-bottom: 1px solid var(--ink)
}

.feature-photo {
    margin: 0;
    position: relative;
    height: 620px
}

.feature-photo img {
    border-radius: 2px
}

.feature-photo figcaption {
    position: absolute;
    left: -34px;
    bottom: 32px;
    background: var(--clay);
    color: #fff;
    padding: 18px 24px;
    font-family: var(--serif);
    font-size: 1.15rem
}

.experience-section {
    background: var(--forest);
    color: white;
    padding: 115px 0
}

.section-heading {
    max-width: 850px;
    margin-bottom: 58px
}

.section-heading > p:last-child {
    max-width: 600px;
    color: #69746c;
    font-size: 1.04rem
}

.experience-section .section-heading > p:last-child {
    color: #c7cec6
}

.experience-section h2 {
    margin-bottom: 20px
}

.service-grid {
    display: grid;
    grid-template-columns:repeat(4, 1fr);
    border-top: 1px solid rgba(255, 255, 255, .18)
}

.service-card {
    padding: 34px 28px 8px 0;
    margin-right: 28px;
    border-right: 1px solid rgba(255, 255, 255, .18)
}

.service-card:last-child {
    border-right: 0;
    margin-right: 0
}

.service-number {
    font-size: .72rem;
    opacity: .58
}

.service-card h3 {
    font-size: 2rem;
    margin: 60px 0 16px
}

.service-card p {
    font-size: .9rem;
    color: #cbd1cb;
    min-height: 120px
}

.service-card a {
    font-size: .8rem;
    font-weight: 700;
    border-bottom: 1px solid rgba(255, 255, 255, .65);
    padding-bottom: 4px
}

.gallery-section {
    background: #18251d;
    color: white;
    padding: 120px 0 0
}

.gallery-heading h2 {
    margin-bottom: 65px
}

.gallery-grid {
    display: grid;
    grid-template-columns:1.1fr .9fr .9fr;
    grid-template-rows:330px 390px;
    gap: 12px
}

.gallery-grid figure {
    margin: 0;
    overflow: hidden
}

.gallery-grid img {
    transition: transform .7s ease
}

.gallery-grid figure:hover img {
    transform: scale(1.035)
}

.gallery-tall {
    grid-row: 1/3
}

.gallery-wide {
    grid-column: 2/4
}

.story-section {
    display: grid;
    grid-template-columns:1fr .9fr;
    gap: clamp(55px, 9vw, 120px);
    align-items: center;
    padding-block: 130px
}

.story-photo {
    height: 660px
}

.story-copy > p:not(.eyebrow) {
    color: #626c63;
    font-size: 1.05rem
}

.text-link {
    display: inline-block;
    margin-top: 18px;
    font-weight: 700;
    border-bottom: 1px solid var(--ink);
    padding-bottom: 5px
}

.testimonial-section {
    background: var(--cream);
    padding: 95px 0
}

.testimonial {
    text-align: center;
    max-width: 900px
}

.quote-mark {
    display: block;
    font-family: var(--serif);
    font-size: 6rem;
    line-height: .5;
    color: var(--clay)
}

blockquote {
    font-family: var(--serif);
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.25;
    margin: 30px 0
}

.testimonial p {
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: #747b73
}

.faq-section {
    padding-block: 120px
}

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

details {
    border-bottom: 1px solid var(--line);
    padding: 24px 0
}

summary {
    cursor: pointer;
    font-family: var(--serif);
    font-size: 1.55rem;
    list-style: none;
    display: flex;
    justify-content: space-between;
    gap: 20px
}

summary:after {
    content: '+';
    font-family: var(--sans);
    font-weight: 400
}

details[open] summary:after {
    content: '–'
}

details p {
    max-width: 760px;
    color: #667067;
    margin: 16px 0 0
}

.inquiry-section {
    background: var(--deep);
    color: #fff;
    padding: 120px 0
}

.inquiry-grid {
    display: grid;
    grid-template-columns:.8fr 1.2fr;
    gap: clamp(50px, 9vw, 130px)
}

.inquiry-copy h2 {
    font-size: clamp(3.2rem, 6vw, 5.8rem)
}

.inquiry-copy > p:not(.eyebrow) {
    color: #c8d0c8;
    font-size: 1.1rem
}

.inquiry-copy ul {
    padding-left: 18px;
    color: #d8ddd8
}

.lead-form {
    background: #f8f5ee;
    color: var(--ink);
    padding: 36px
}

.lead-form label {
    display: grid;
    gap: 8px;
    font-size: .74rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 18px
}

.field-row {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 16px
}

input, select, textarea {
    width: 100%;
    border: 1px solid #cfd1c9;
    background: #fff;
    padding: 13px 12px;
    font: inherit;
    color: var(--ink);
    border-radius: 0
}

.lead-form .button {
    background: var(--forest);
    color: white;
    width: 100%
}

.form-note {
    font-size: .72rem;
    color: #777;
    margin: 12px 0 0;
    text-align: center
}

.success-message {
    display: none;
    background: #e7ede5;
    padding: 14px;
    margin: 16px 0 0;
    font-size: .85rem
}

.lead-form.submitted .success-message {
    display: block
}

.site-footer {
    background: #111a15;
    color: #dfe4df;
    padding: 70px 0 28px
}

.footer-grid {
    display: grid;
    grid-template-columns:1.5fr .8fr 1.2fr .8fr;
    gap: 40px
}

.footer-brand {
    font-family: var(--serif);
    font-size: 2rem
}

.footer-grid h3 {
    font-family: var(--sans);
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .16em;
    color: #94a094
}

.footer-grid a, .footer-grid span {
    display: block;
    font-size: .85rem;
    margin-bottom: 8px;
    color: #cbd2cb
}

.footer-cta {
    font-weight: 700 !important;
    color: #fff !important
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    margin-top: 55px;
    padding-top: 20px;
    color: #879188;
    font-size: .7rem
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .7s ease, transform .7s ease
}

.reveal.visible {
    opacity: 1;
    transform: none
}

@media (max-width: 950px) {
    .site-nav {
        display: none;
        position: absolute;
        top: 90px;
        left: 0;
        right: 0;
        background: rgba(24, 37, 29, .97);
        padding: 25px;
        flex-direction: column;
        align-items: stretch
    }

    .site-nav.open {
        display: flex
    }

    .menu-button {
        display: block
    }

    .quick-proof {
        grid-template-columns:1fr
    }

    .quick-proof div {
        border-right: 0;
        border-bottom: 1px solid var(--line);
        padding: 15px 0
    }

    .split-section, .story-section, .inquiry-grid {
        grid-template-columns:1fr
    }

    .feature-photo, .story-photo {
        height: 540px
    }

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

    .service-card {
        min-height: 310px
    }

    .gallery-grid {
        grid-template-columns:1fr 1fr;
        grid-template-rows:450px 300px 330px
    }

    .gallery-tall {
        grid-row: 1/2;
        grid-column: 1/3
    }

    .gallery-wide {
        grid-column: 1/3
    }

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

@media (max-width: 620px) {
    :root {
        --shell: calc(100vw - 32px)
    }

    .site-header {
        height: 76px;
        padding-inline: 16px
    }

    .brand-copy small {
        display: none
    }

    .hero {
        height: 760px
    }

    .hero-content {
        padding-top: 95px
    }

    .hero h1 {
        font-size: 3.8rem
    }

    .scroll-cue {
        display: none
    }

    .quick-proof {
        padding-inline: 16px
    }

    .split-section, .story-section, .faq-section {
        padding-block: 82px
    }

    .feature-photo, .story-photo {
        height: 430px
    }

    .feature-photo figcaption {
        left: 0;
        right: 20px;
        bottom: 18px
    }

    .experience-section, .inquiry-section {
        padding-block: 84px
    }

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

    .service-card {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .18);
        margin: 0;
        padding-right: 0;
        min-height: auto;
        padding-bottom: 35px
    }

    .service-card h3 {
        margin-top: 32px
    }

    .service-card p {
        min-height: 0
    }

    .gallery-section {
        padding-top: 80px
    }

    .gallery-grid {
        display: grid;
        grid-template-columns:1fr;
        grid-template-rows:420px 300px 300px 360px
    }

    .gallery-tall, .gallery-wide {
        grid-column: auto;
        grid-row: auto
    }

    .field-row {
        grid-template-columns:1fr
    }

    .lead-form {
        padding: 24px 18px
    }

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

    .footer-bottom {
        flex-direction: column
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
        width: min(100%, 330px)
    }
}
