@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Quicksand:wght@400;500;600;700&display=swap");

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: #f2eadf;
    color: #241308;
    font-family: "Quicksand", Arial, sans-serif;
}

.hero {
    min-height: 76vh;
    padding: 26px clamp(18px, 4vw, 58px) 54px;
    color: #fff4e2;
    background:
        linear-gradient(90deg, rgba(22, 10, 4, 0.92), rgba(22, 10, 4, 0.72) 48%, rgba(22, 10, 4, 0.22)),
        url("/images/zippo-atelier.webp");
    background-size: cover;
    background-position: center;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    max-width: 1120px;
    margin: 0 auto;
}

a {
    color: inherit;
}

.brand {
    text-decoration: none;
}

.brand strong {
    display: block;
    letter-spacing: 0.06em;
}

.brand span {
    display: block;
    margin-top: 2px;
    color: #e5c08b;
    font-size: 0.86rem;
}

.navlinks {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.navlinks a {
    padding-bottom: 6px;
    border-bottom: 1px solid transparent;
    text-decoration: none;
    font-weight: 700;
}

.navlinks a:hover {
    border-color: #d8aa6b;
    color: #efcc92;
}

.hero-copy {
    max-width: 620px;
    margin: 0 auto;
    padding-top: clamp(72px, 15vh, 150px);
}

.eyebrow {
    margin: 0 0 12px;
    color: #e7bf82;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

h1 {
    margin: 0;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(46px, 7vw, 82px);
    font-weight: 600;
    line-height: 0.95;
}

.hero-copy > p:not(.eyebrow) {
    max-width: 560px;
    color: #f3dfc1;
    font-size: 1.08rem;
    line-height: 1.72;
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.primary,
.secondary {
    display: inline-flex;
    align-items: center;
    min-height: 46px;
    padding: 12px 20px;
    border-radius: 3px;
    text-decoration: none;
    font-weight: 800;
}

.primary {
    background: #d6aa6f;
    color: #1e0f06;
}

.secondary {
    border: 1px solid rgba(255, 244, 226, 0.46);
}

main {
    max-width: 1040px;
    margin: 0 auto;
    padding: 42px clamp(18px, 4vw, 58px) 62px;
}

.intro {
    max-width: 780px;
    color: #3d2819;
    font-size: 1.04rem;
    line-height: 1.82;
}

.intro p:first-child {
    color: #241308;
    font-size: 1.18rem;
}

.services {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(82, 49, 25, 0.22);
}

.services article {
    padding-left: 18px;
    border-left: 1px solid rgba(159, 105, 52, 0.34);
}

.services span {
    display: block;
    margin-bottom: 10px;
    color: #a06c36;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.16em;
}

.services strong {
    display: block;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 1.4rem;
}

.services p,
.note p {
    color: #634630;
    line-height: 1.7;
}

.note {
    max-width: 780px;
    margin-top: 38px;
    padding: 20px 0 0;
    border-top: 1px solid rgba(82, 49, 25, 0.16);
}

.note strong {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 1.45rem;
}

.contact {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 24px;
    margin-top: 38px;
    padding-top: 22px;
    border-top: 1px solid rgba(82, 49, 25, 0.16);
}

.contact a {
    color: #4a2c17;
    font-weight: 800;
    text-decoration: none;
    border-bottom: 1px solid rgba(74, 44, 23, 0.26);
}

@media (max-width: 760px) {
    nav {
        display: block;
    }

    .navlinks {
        margin-top: 18px;
    }

    .hero {
        min-height: auto;
    }

    .hero-copy {
        padding-top: 58px;
    }

    h1 {
        font-size: 46px;
    }

    .services {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}
