﻿:root {
    --ink: #1d2721;
    --muted: #68736c;
    --paper: #fffdf8;
    --warm: #f6efe4;
    --orange: #df6c37;
    --sage: #dce7d5;
    --line: #e9e4da
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: 'DM Sans',Arial,sans-serif
}

.hero {
    max-width: 1280px;
    margin: auto;
    min-height: 360px;
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 50px;
    align-items: center;
    padding: clamp(52px,8vw,112px) clamp(22px,5vw,76px) 68px
}

.eyebrow, .section-label {
    color: var(--orange);
    font-size: .7rem;
    letter-spacing: .16em;
    font-weight: 700;
    text-transform: uppercase
}

.eyebrow {
    margin: 0 0 18px
}

h1, h2, h3 {
    font-family: 'Playfair Display',Georgia,serif
}

h1 {
    font-size: clamp(2.8rem,6vw,5.6rem);
    line-height: .99;
    letter-spacing: -.055em;
    margin: 0
}

.hero-note {
    border-left: 2px solid var(--orange);
    padding: 12px 0 12px 20px;
    color: var(--muted);
    line-height: 1.65;
    max-width: 330px;
    justify-self: end
}

    .hero-note strong {
        color: var(--ink);
        display: block
    }

.story-list {
    max-width: 1130px;
    margin: auto;
    padding: 0 22px 90px
}

.story-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 38px;
    box-shadow: 0 18px 45px rgba(43,48,38,.07)
}

.gallery {
    position: relative;
    background: #e9e5dd
}

.slide img {
    display: block;
    width: 100%;
    height: clamp(260px,55vw,610px);
    object-fit: cover
}

.slick-dots {
    position: absolute;
    bottom: 19px;
    left: 0;
    width: 100%;
    margin: 0;
    padding: 0;
    text-align: center
}

    .slick-dots li {
        display: inline-block;
        margin: 0 4px
    }

    .slick-dots button {
        border: 0;
        border-radius: 99px;
        width: 7px;
        height: 7px;
        padding: 0;
        font-size: 0;
        background: rgba(255,255,255,.58)
    }

    .slick-dots .slick-active button {
        width: 25px;
        background: #fff
    }

.slick-arrow {
    position: absolute;
    top: 50%;
    z-index: 2;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 50%;
    background: #fff;
    color: var(--ink);
    font-size: 0
}

    .slick-arrow:before {
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        font-size: 15px
    }

.slick-prev {
    left: 18px
}

.slick-next {
    right: 18px
}

.slick-prev:before {
    content: '\f053'
}

.slick-next:before {
    content: '\f054'
}

.story-copy {
    max-width: 820px;
    padding: clamp(27px,5vw,60px);
    margin: auto
}

    .story-copy h2 {
        font-size: clamp(1.7rem,3.3vw,2.7rem);
        line-height: 1.15;
        letter-spacing: -.035em;
        margin: 0 0 22px
    }

    .story-copy p {
        color: #3f4943;
        font-size: 1.06rem;
        line-height: 1.85;
        margin: 0
    }

.more-stories {
    background: var(--sage);
    padding: 80px 22px
}

.more-stories-inner {
    max-width: 1130px;
    margin: auto
}

.more-stories-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 25px;
    margin-bottom: 27px;
    padding-bottom: 19px;
    border-bottom: 1px solid rgba(29,39,33,.16)
}

    .more-stories-heading h2 {
        font-size: clamp(2rem,4vw,3.1rem);
        letter-spacing: -.045em;
        margin: 7px 0 0
    }

    .more-stories-heading p {
        color: var(--muted);
        font-size: .9rem
    }

.more-stories-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px
}

.more-story {
    min-height: 290px;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    color: #fff;
    background: #778078
}

    .more-story img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .5s
    }

    .more-story:after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(0deg,rgba(10,16,12,.78),rgba(10,16,12,.05) 65%)
    }

    .more-story:hover img {
        transform: scale(1.05)
    }

.more-story-content {
    position: absolute;
    z-index: 1;
    bottom: 20px;
    left: 20px;
    right: 20px
}

    .more-story-content span {
        color: #ffc6a7;
        font-size: .67rem;
        font-weight: 700;
        letter-spacing: .13em;
        text-transform: uppercase
    }

    .more-story-content h3 {
        margin: 6px 0 0;
        font-size: 1.55rem;
        line-height: 1.1
    }

.conversation {
    background: var(--warm);
    padding: 90px 22px
}

.conversation-inner {
    max-width: 900px;
    margin: auto
}

.conversation h2 {
    font-size: clamp(2rem,4vw,3.1rem);
    letter-spacing: -.04em;
    margin: 10px 0 38px
}

.review-list {
    padding: 10px 32px;
    margin-bottom: 28px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 20px
}

.review {
    padding: 25px 0;
    border-bottom: 1px solid var(--line)
}

    .review:last-child {
        border: 0
    }

.review-name {
    color: var(--orange);
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin: 0 0 8px
}

.review p:last-child {
    color: var(--muted);
    line-height: 1.65
}

.empty {
    color: var(--muted);
    padding: 22px 0
}

.review-form {
    padding: clamp(28px,5vw,52px);
    border-radius: 22px;
    background: var(--ink);
    color: #fff
}

    .review-form h3 {
        font-size: 2rem;
        letter-spacing: -.04em;
        margin: 0 0 8px
    }

    .review-form > p {
        color: #c3cec6;
        margin: 0 0 28px
    }

.field-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px
}

.field {
    margin-bottom: 18px
}

label {
    display: block;
    font-size: .82rem;
    font-weight: 600;
    margin-bottom: 8px
}

input, textarea {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 9px;
    background: rgba(255,255,255,.08);
    color: #fff;
    font: inherit
}

textarea {
    min-height: 130px;
    resize: vertical
}

.submit {
    border: 0;
    border-radius: 99px;
    padding: 13px 21px;
    background: var(--orange);
    color: #fff;
    font-weight: 700;
    cursor: pointer
}

#reviewMessage {
    margin-top: 16px
}

.jump-to-reply {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 10;
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--orange);
    color: #fff;
    box-shadow: 0 8px 24px rgba(190,78,25,.35)
}

@media(max-width:700px) {
    .hero {
        grid-template-columns: 1fr;
        gap: 28px;
        padding-top: 64px
    }

    .hero-note {
        justify-self: start
    }

    .story-list {
        padding: 0 14px 60px
    }

    .story-card {
        border-radius: 16px
    }

    .more-stories {
        padding: 58px 14px
    }

    .more-stories-heading {
        display: block
    }

    .more-stories-grid {
        grid-template-columns: 1fr
    }

    .more-story {
        min-height: 260px
    }

    .review-list {
        padding: 10px 20px
    }

    .field-grid {
        grid-template-columns: 1fr;
        gap: 0
    }
}
