:root {
    --ink: #26332f;
    --muted: #66736d;
    --sage: #718579;
    --sage-dark: #4f685b;
    --rose: #c9877d;
    --cream: #f8f5f0;
    --paper: #fffdf9;
    --line: #e6e0d7;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--cream);
    color: var(--ink);
    font-family: "DM Sans", sans-serif;
}

h1,
h2,
h3,
.brand-logo {
    font-family: "Playfair Display", serif;
}

h2 {
    font-size: clamp(2.1rem, 4vw, 3.25rem);
    line-height: 1.08;
    margin: 0 0 1.2rem;
}

h3 {
    font-size: 1.65rem;
    margin: .8rem 0;
}

p {
    color: var(--muted);
    line-height: 1.75;
}

.container {
    width: 88%;
    max-width: 1180px;
}

.section {
    padding: 6rem 0;
}

.eyebrow {
    color: var(--rose);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.btn,
.btn-large {
    background: var(--sage-dark);
    border-radius: 3px;
    box-shadow: none;
    font-weight: 700;
    letter-spacing: .02em;
}

.btn:hover,
.btn-large:hover {
    background: #3e5649;
    box-shadow: none;
}

.btn.outline {
    background: transparent;
    border: 1px solid var(--sage-dark);
    color: var(--sage-dark);
}

nav {
    background: rgba(248, 245, 240, .94);
    box-shadow: none;
    color: var(--ink);
}

nav .brand-logo {
    color: var(--ink);
    font-size: 1.55rem;
}

nav ul a {
    color: var(--ink);
    font-size: .9rem;
}

nav ul a:hover {
    background: transparent;
    color: var(--rose);
}

.sidenav-trigger {
    align-items: center;
    background: var(--sage-dark);
    border: 1px solid var(--sage-dark);
    border-radius: 3px;
    color: #fff;
    display: flex;
    height: 44px;
    justify-content: center;
    margin: 16px 0 0;
    width: 44px;
}

.sidenav-trigger:hover,
.sidenav-trigger:focus {
    background: #3e5649;
    color: #fff;
}

.sidenav-trigger i {
    color: inherit;
    line-height: 1;
}

.nav-wrap {
    height: 76px;
    line-height: 76px;
}

.sidenav {
    background: var(--paper);
    padding-top: 2rem;
}

.sidenav li>a {
    color: var(--ink);
}

.hero {
    min-height: 650px;
    padding: 6rem 0 5rem;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.hero .container {
    width: 92%;
    max-width: 1600px;
}

.hero:before {
    background: #e8d6cf;
    border-radius: 50%;
    content: "";
    height: 470px;
    position: absolute;
    right: -160px;
    top: -140px;
    width: 470px;
}

.hero-copy {
    padding-top: 2.3rem;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: clamp(3.2rem, 7vw, 6.6rem);
    line-height: .98;
    margin: 1rem 0 1.5rem;
    max-width: 720px;
}

.hero h1 em {
    color: var(--rose);
    font-style: normal;
}

.hero-copy p {
    font-size: 1.1rem;
    max-width: 530px;
}

.hero-actions {
    align-items: center;
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.hero-note {
    color: var(--muted);
    font-size: .82rem;
}

.hero-photo {
    height: 540px;
    margin-top: 1rem;
    object-fit: cover;
    position: relative;
    width: 100%;
    z-index: 1;
}

.photo-label {
    background: var(--paper);
    bottom: -1.5rem;
    left: -2rem;
    padding: 1.15rem 1.4rem;
    position: absolute;
    width: 190px;
    z-index: 2;
}

.photo-label strong {
    display: block;
    font-family: "Playfair Display", serif;
    font-size: 1.25rem;
}

.intro {
    background: var(--sage-dark);
    color: #fff;
}

.intro p,
.intro .eyebrow {
    color: #dce5df;
}

.intro h2 {
    color: #fff;
    max-width: 640px;
}

.stat {
    border-left: 1px solid rgba(255, 255, 255, .35);
    padding-left: 1.4rem;
}

.stat strong {
    display: block;
    font-family: "Playfair Display", serif;
    font-size: 2.2rem;
}

.stat span {
    color: #dce5df;
    font-size: .85rem;
}

.section-head {
    margin-bottom: 3rem;
}

.service-card {
    background: var(--paper);
    border: 1px solid var(--line);
    min-height: 310px;
    padding: 2rem;
    transition: transform .25s, box-shadow .25s;
}

.service-card:hover {
    box-shadow: 0 15px 35px rgba(50, 65, 57, .1);
    transform: translateY(-5px);
}

.service-card.featured {
    background: var(--sage);
    border-color: var(--sage);
    color: #fff;
}

.service-card.featured p,
.service-card.featured li {
    color: #e5eee8;
}

.service-card .material-icons {
    color: var(--rose);
    font-size: 2.2rem;
}

.service-card ul {
    color: var(--muted);
    line-height: 2.1;
    padding-left: 1.2rem;
}

.price {
    font-family: "Playfair Display", serif;
    font-size: 2rem;
    margin-top: 1.3rem;
}

.process {
    border-top: 1px solid var(--line);
    padding-top: 1.5rem;
}

.process-number {
    color: var(--rose);
    font-family: "Playfair Display", serif;
    font-size: 2.5rem;
}

.gallery img {
    display: block;
    height: 275px;
    object-fit: cover;
    width: 100%;
}

.gallery .large-photo {
    height: 570px;
}

.testimonial {
    background: #eee6dc;
    padding: 3rem;
}

.testimonial blockquote {
    border-left-color: var(--rose);
    color: var(--ink);
    font-family: "Playfair Display", serif;
    font-size: 1.45rem;
    line-height: 1.45;
    margin: 0;
}

.testimonial cite {
    color: var(--muted);
    display: block;
    font-family: "DM Sans", sans-serif;
    font-size: .85rem;
    font-style: normal;
    margin-top: 1.5rem;
}

.contact {
    background: var(--paper);
}

.contact-card {
    background: var(--sage-dark);
    color: #fff;
    padding: 3rem;
}

.contact-card h2,
.contact-card p,
.contact-card a {
    color: #fff;
}

.input-field input:focus {
    border-bottom: 1px solid var(--rose) !important;
    box-shadow: 0 1px 0 0 var(--rose) !important;
}

.input-field label {
    color: var(--muted);
}

.input-field label.active {
    color: var(--sage-dark);
}

#form-result {
    min-height: 1.5rem;
    margin-top: 1rem;
}

footer {
    background: var(--ink);
    color: #dce5df;
    padding: 2rem 0;
}

footer p {
    color: #aebbb4;
    margin: 0;
}

@media (max-width:600px) {
    .section {
        padding: 4rem 0;
    }

    .hero {
        min-height: auto;
        padding: 4rem 0 5rem;
    }

    .hero h1 {
        font-size: 3.65rem;
    }

    .hero-photo {
        height: 390px;
        margin-top: 3rem;
    }

    .photo-label {
        bottom: -1.2rem;
        left: 1rem;
    }

    .hero-actions {
        align-items: flex-start;
        flex-direction: column;
    }

    .stat {
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, .35);
        margin-top: 1.5rem;
        padding: 1rem 0 0;
    }

    .gallery .large-photo {
        height: 360px;
    }

    .gallery img {
        height: 210px;
    }

    .testimonial,
    .contact-card {
        padding: 2rem 1.4rem;
    }

    .testimonial blockquote {
        font-size: 1.2rem;
    }
}