:root {
    --coffee: #2b160c;
    --brown: #4a2816;
    --bronze: #9b6536;
    --gold: #d9ad6a;
    --sand: #ead7b8;
    --cream: #f7f0e5;
    --ink: #1b120d;
    --white: #fffaf2
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: var(--cream);
    color: var(--ink);
    font-family: Manrope, Arial, sans-serif
}

.nav {
    height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 clamp(24px, 6vw, 90px);
    position: fixed;
    inset: 0 0 auto;
    z-index: 20;
    background: rgba(247, 240, 229, .88);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(74, 40, 22, .1)
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--coffee);
    text-decoration: none;
    font-weight: 800;
    letter-spacing: .08em
}

.brand img {
    height: 60px;
    object-fit: cover;
    object-position: center 28%;
}

.brand small {
    display: block;
    font-size: 15px;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-weight: 700
}

.nav nav {
    display: flex;
    align-items: center;
    gap: 28px
}

.nav nav a {
    color: var(--coffee);
    text-decoration: none;
    font-size: 13px;
    font-weight: 700
}

.nav-cta {
    border: 1px solid var(--brown);
    padding: 11px 17px;
    border-radius: 99px
}

.menu {
    display: none;
    background: none;
    border: 0;
    font-size: 24px
}

.hero {
    min-height: 760px;
    padding: 150px clamp(24px, 6vw, 90px) 80px;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: 7vw;
    background: linear-gradient(135deg, #f8f1e7 0%, #ead5b3 100%);
    position: relative;
    overflow: hidden
}

.hero-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(178, 119, 65, .18);
    filter: blur(30px);
    right: -180px;
    top: 80px
}

.eyebrow {
    font-size: 11px;
    letter-spacing: .2em;
    font-weight: 800;
    color: var(--bronze)
}
/*
h1,
h2,
h3,
p {
    margin-top: 0
}*/

.hero h1 {
    font-size: clamp(52px, 7vw, 96px);
    line-height: .94;
    letter-spacing: -.055em;
    margin: 22px 0 28px;
    max-width: 760px
}

.hero h1 em,
.process h2 em {
    font-style: normal;
    color: var(--bronze)
}

.hero-copy>p {
    font-size: 18px;
    line-height: 1.7;
    max-width: 650px;
    color: #604b3d
}

.actions {
    display: flex;
    gap: 12px;
    margin: 34px 0
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    padding: 15px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 800;
    font-size: 13px;
    border: 1px solid var(--brown);
    cursor: pointer;
    font-family: inherit
}

.primary {
    background: var(--coffee);
    color: var(--white)
}

.ghost {
    color: var(--coffee);
    background: transparent
}

.trust {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    font-size: 11px;
    font-weight: 700;
    color: #735a49
}

.frame {
    position: relative;
    border-radius: 180px 180px 18px 18px;
    overflow: hidden;
    min-height: 560px;
    box-shadow: 0 30px 70px rgba(43, 22, 12, .22);
    border: 8px solid rgba(255, 250, 242, .45)
}

.frame>img {
    width: 100%;
    height: 560px;
    object-fit: cover
}

.frame:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(43, 22, 12, .8))
}

.frame-label {
    position: absolute;
    z-index: 2;
    left: 30px;
    bottom: 28px;
    color: white
}

.frame-label b,
.frame-label span {
    display: block
}

.frame-label b {
    font-size: 20px
}

.frame-label span {
    font-size: 12px;
    margin-top: 5px;
    color: #ead7b8
}

.intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 110px 24px 54px
}

.intro h2,
.process h2,
.contact h2 {
    font-size: clamp(36px, 5vw, 62px);
    letter-spacing: -.04em;
    line-height: 1.05;
    margin: 16px 0
}

.intro p,
.contact p {
    color: #735f50;
    line-height: 1.7
}

.services {
    padding: 0 clamp(24px, 6vw, 90px) 110px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px
}

.card {
    height: 430px;
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    background: var(--brown)
}

.card-wide {
    grid-column: span 2;
    height: 480px
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .6s transform
}

.card:hover img {
    transform: scale(1.04)
}

.shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(20, 10, 5, .04) 20%, rgba(20, 10, 5, .9) 100%)
}

.card-copy {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 28px;
    color: white
}

.card-copy>span {
    font-size: 11px;
    color: var(--gold);
    font-weight: 800
}

.card-copy h3 {
    font-size: 27px;
    margin: 7px 0
}

.card-copy p {
    max-width: 560px;
    color: #e7d7c4;
    font-size: 13px
}

.card-copy a {
    color: var(--gold);
    font-weight: 800;
    text-decoration: none;
    font-size: 12px
}

.process {
    background: var(--coffee);
    color: var(--white);
    padding: 110px clamp(24px, 6vw, 90px)
}

.process-head {
    max-width: 900px
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 70px;
    border-top: 1px solid rgba(255, 255, 255, .16)
}

.steps>div {
    padding: 30px 28px 10px 10px;
    border-right: 1px solid rgba(255, 255, 255, .12)
}

.steps b {
    color: var(--gold);
    font-size: 11px
}

.steps h3 {
    margin: 30px 0 10px
}

.steps p {
    font-size: 13px;
    line-height: 1.6;
    color: #cdbda9
}

.contact {
    margin: 0;
    background: var(--sand);
    padding: 110px clamp(24px, 6vw, 90px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8vw
}

.contact>div {
    max-width: 620px
}

.contact form {
    display: grid;
    gap: 12px;
    background: rgba(255, 250, 242, .65);
    padding: 28px;
    border-radius: 18px;
    border: 1px solid rgba(74, 40, 22, .12)
}

input,
select,
textarea {
    width: 100%;
    padding: 15px 14px;
    border: 1px solid rgba(74, 40, 22, .2);
    border-radius: 7px;
    background: #fffaf2;
    font: inherit;
    color: var(--ink);
    outline: none
}

textarea {
    resize: vertical
}

.contact form small {
    color: #796655
}

footer {
    min-height: 120px;
    padding: 28px clamp(24px, 6vw, 90px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #160c07;
    color: #cdbda9;
    font-size: 11px
}

footer .brand {
    color: white
}

footer a {
    color: var(--gold);
    text-decoration: none
}

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

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

@media(max-width:800px) {
    .nav {
        height: 72px
    }

    .nav nav {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        padding: 22px;
        background: var(--cream);
        flex-direction: column
    }

    .nav nav.open {
        display: flex
    }

    .menu {
        display: block
    }

    .hero {
        grid-template-columns: 1fr;
        padding-top: 125px
    }

    .hero-art {
        order: -1
    }

    .frame,
    .frame>img {
        min-height: 380px;
        height: 380px
    }

    .hero h1 {
        font-size: 55px
    }

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

    .card,
    .card-wide {
        grid-column: auto;
        height: 390px
    }

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

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

    footer {
        gap: 20px;
        flex-direction: column;
        text-align: center
    }

    .trust {
        gap: 10px
    }

    .actions {
        flex-direction: column;
        align-items: stretch
    }

    .btn {
        width: 100%
    }
}

@media(max-width:500px) {
    .brand span {
        display: none
    }

    .hero {
        padding-left: 20px;
        padding-right: 20px
    }

    .hero h1 {
        font-size: 48px
    }

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

    .services {
        padding-left: 16px;
        padding-right: 16px
    }

    .card-copy h3 {
        font-size: 23px
    }
}