:root {
    --ink: #2e2725;
    --muted: #756d69;
    --cream: #fbf8f4;
    --paper: #fffdf9;
    --gold: #c9a16a;
    --line: #e9e1d8;
    --dark: #1e1918;
    --serif: "Cormorant Garamond", Georgia, serif;
    --sans: "Montserrat", Arial, sans-serif;
    --max: 1420px
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth
}

body {
    font-family: var(--sans);
    color: var(--ink);
    background: var(--cream) url("images/updatedbackground.png") center/cover fixed;
    line-height: 1.6
}

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

img {
    display: block;
    width: 100%
}

.site-header {
    position: absolute;
    z-index: 20;
    top: 34px;
    width: 100%;
    color: #fff
}

.site-header.scrolled {
    position: fixed;
    top: 0;
    background: rgba(41, 33, 35, .97);
    box-shadow: 0 4px 20px #0002
}


.nav-wrap {
    width: min(var(--max), calc(100% - 90px));
    height: 108px;
    margin: auto;
    border-bottom: 1px solid rgba(255, 255, 255, .32);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
}

.nav-logo {
    filter: grayscale(1) brightness(0);
    display: block;
    width: 110px;
    height: 110px;
    object-fit: contain;
    object-position: center;
    filter: brightness(0) invert(1);
}

.brand {
    display: flex;
    align-items: center;
    justify-content: center;
    font: 500 37px/.75 var(--serif);
    white-space: nowrap
}

.brand span {
    display: block;
    text-align: center;
    font: 600 8px var(--sans);
    letter-spacing: 5px;
    margin-top: 13px
}

.navlinks {
    display: flex;
    align-items: center;
    gap: 34px
}

.navlinks a {
    text-transform: uppercase;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1.7px;
    transition: .25s
}

.navlinks a:hover,
.navlinks a.active {
    color: #f0c889
}

.navlinks a.active:after {
    content: "";
    display: block;
    width: 42px;
    height: 2px;
    background: var(--gold);
    margin: 9px auto 0
}

.navlinks .offer {
    border: 1px solid rgba(255, 255, 255, .65);
    padding: 12px 20px
}

.navlinks .offer:after {
    display: none
}

.menu-toggle {
    display: none;
    background: none;
    border: 0;
    color: #fff;
    font-size: 28px
}

.hero {
    height: min(800px, 100vh);
    min-height: 650px;
    position: relative;
    overflow: hidden;
    background: url("images/updatedbackground.png") center 42%/cover no-repeat;
    color: #fff
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(24, 18, 17, .78) 0%, rgba(24, 18, 17, .58) 32%, rgba(24, 18, 17, .22) 65%, rgba(24, 18, 17, .10) 100%),
        linear-gradient(180deg, rgba(15, 10, 8, .34) 0%, rgba(15, 10, 8, .02) 35%, rgba(15, 10, 8, .28) 100%);
    z-index: 0
}

.hero-glow {
    position: absolute;
    width: 560px;
    height: 560px;
    left: -160px;
    top: 50%;
    transform: translateY(-42%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 161, 106, .18) 0%, rgba(201, 161, 106, 0) 68%);
    pointer-events: none;
    z-index: 0
}

.hero-inner {
    position: relative;
    z-index: 1;
    width: min(var(--max), calc(100% - 90px));
    height: 100%;
    margin: auto;
    display: flex;
    align-items: center
}

.hero-copy {
    width: 650px;
    padding-top: 72px;
    animation: heroFadeUp .9s ease both
}

.hero-kicker {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #f0cf99;
    font: 600 10px var(--sans);
    letter-spacing: 3px;
    text-transform: uppercase
}

.hero-kicker span {
    display: block;
    width: 38px;
    height: 1px;
    background: currentColor
}

.hero h1 {
    font: 500 clamp(66px, 7vw, 108px)/.82 var(--serif);
    letter-spacing: -2.5px;
    margin: 25px 0 27px;
    text-shadow: 0 4px 24px rgba(0, 0, 0, .20)
}

.hero h1 em {
    color: #f1d5a8;
    font-style: italic;
    font-weight: 400
}

.gold-rule {
    height: 2px;
    width: 82px;
    background: linear-gradient(90deg, var(--gold), #f0d3a0);
    margin-bottom: 22px
}

.hero-lead {
    font-size: 15px;
    line-height: 1.9;
    max-width: 550px;
    color: rgba(255, 255, 255, .92);
    margin-bottom: 28px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, .20)
}

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

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    min-height: 48px;
    padding: 15px 25px;
    border: 1px solid var(--gold);
    background: rgba(201, 161, 106, .96);
    color: #211a17;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    font-size: 9px;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .16);
    transition: .25s
}

.hero-btn:hover {
    background: #fff;
    border-color: #fff;
    color: var(--ink);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .22)
}

.hero-btn span {
    font-size: 15px;
    line-height: 1
}

.hero-btn-ghost {
    background: rgba(255, 255, 255, .08);
    color: #fff;
    border-color: rgba(255, 255, 255, .55);
    box-shadow: none;
    backdrop-filter: blur(5px)
}

.hero-btn-ghost:hover {
    background: rgba(255, 255, 255, .92);
    color: var(--ink);
    border-color: #fff
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, .22);
    max-width: 620px
}

.hero-trust span {
    color: rgba(255, 255, 255, .78);
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase
}

.hero-trust b {
    color: #e5bd83;
    margin-right: 6px;
    font-size: 8px
}

@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(18px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.services-showcase {
    background: var(--paper);
    padding: 54px 5vw 80px;
    position: relative
}

.section-heading {
    text-align: center;
    margin-bottom: 28px
}

.section-heading h2 {
    font: 500 clamp(48px, 5vw, 66px)/.9 var(--serif);
    margin: 10px 0 8px
}

.section-heading p {
    font-size: 13px;
    color: var(--muted)
}

.service-cards {
    width: min(1280px, 100%);
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px
}

.showcase-card {
    display: grid;
    grid-template-columns: 1.25fr .9fr;
    min-height: 185px;
    background: #fff;
    border: 1px solid #eee6de;
    box-shadow: 0 5px 24px rgba(53, 39, 29, .08);
    transition: .3s;
    overflow: hidden
}

.showcase-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(53, 39, 29, .13)
}

.showcase-photo {
    height: 100%;
    min-height: 185px;
    overflow: hidden
}

.showcase-photo img {
    height: 100%;
    object-fit: cover;
    transition: .4s
}

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

.showcase-info {
    padding: 22px 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center
}

.line-icon {
    font: 26px var(--serif);
    color: var(--gold);
    height: 30px
}

.showcase-info h3 {
    font: 600 13px var(--sans);
    letter-spacing: 1px;
    margin: 8px 0
}

.showcase-info p {
    font-size: 13px;
    line-height: 1.55;
    color: var(--muted)
}

.showcase-info span {
    margin-top: 15px;
    font-size: 8px;
    letter-spacing: 1.5px;
    color: var(--gold);
    font-weight: 600
}

.welcome-section {
    padding: 105px 8vw;
    background: #f5efe8
}

.welcome-grid {
    max-width: 1180px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 80px;
    align-items: center
}

.welcome-grid h2 {
    font: 500 clamp(48px, 5vw, 70px)/.9 var(--serif);
    margin-top: 14px
}

.welcome-grid p {
    font-size: 15px;
    line-height: 1.9;
    color: var(--muted);
    margin-bottom: 25px
}

.dark-btn {
    border-color: var(--ink);
    color: var(--ink)
}

.dark-btn:hover {
    background: var(--ink);
    color: #fff
}

.gallery-preview {
    padding: 100px 6vw;
    background: #fff
}

.photo-grid {
    max-width: 1250px;
    margin: 0 auto 34px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px
}

.photo-grid img {
    height: 330px;
    object-fit: cover
}

.center-btn {
    display: flex;
    width: max-content;
    margin: auto
}

footer {
    background: var(--dark);
    color: #fff;
    padding: 65px 7vw 25px
}

.footer-inner {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 70px
}

.footer-brand {
    font: 38px var(--serif);
    margin-bottom: 10px
}

.footer-inner p,
.footer-inner span,
.footer-inner a {
    font-size: 15px;
    color: rgba(255, 255, 255, .65)
}

.footer-inner strong {
    display: block;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 9px;
    color: #d8b581;
    margin-bottom: 16px
}

.footer-inner a,
.footer-inner span {
    display: block;
    margin-bottom: 9px
}

.footer-bottom {
    max-width: 1200px;
    margin: 45px auto 0;
    border-top: 1px solid rgba(255, 255, 255, .12);
    padding-top: 18px;
    font-size: 9px;
    color: rgba(255, 255, 255, .4)
}

@media(max-width:1000px) {

    .nav-wrap,
    .hero-inner {
        width: calc(100% - 42px)
    }

    .navlinks {
        gap: 18px
    }

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

    .showcase-card {
        max-width: 680px;
        margin: auto;
        width: 100%
    }

    .photo-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .welcome-grid {
        grid-template-columns: 1fr;
        gap: 35px
    }

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

@media(max-width:720px) {
    .nav-wrap {
        height: 82px
    }

    .brand {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 29px
    }

    .navlinks {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: auto;
        width: min(86vw, 360px);
        height: 100dvh;
        margin: 0;
        padding: 110px 30px 40px;
        box-sizing: border-box;
        background: rgba(33, 27, 25, .98);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 28px;
        transform: translateX(110%);
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
        transition: transform .3s ease, opacity .3s ease, visibility 0s linear .3s;
        box-shadow: -18px 0 45px rgba(0, 0, 0, .22);
        overflow-y: auto;
    }

    .navlinks.open {
        transform: translateX(0);
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
        transition: transform .3s ease, opacity .3s ease;
    }

    .navlinks a {
        font-size: 11px;
        padding: 6px 10px;
    }

    .navlinks .offer {
        padding: 12px 22px;
    }

    .menu-toggle {
        display: block;
        position: relative;
        z-index: 20
    }

    .hero {
        min-height: 720px;
        height: 100svh;
        background-position: 62% center
    }

    .hero-inner {
        width: calc(100% - 30px)
    }

    .hero-copy {
        padding-top: 55px;
        width: 100%
    }

    .hero-kicker {
        font-size: 8px;
        letter-spacing: 2px
    }

    .hero h1 {
        font-size: clamp(58px, 17vw, 76px);
        letter-spacing: -1.5px;
        margin-top: 22px
    }

    .hero-lead {
        font-size: 15px;
        line-height: 1.75;
        max-width: 420px
    }

    .hero-actions {
        gap: 9px
    }

    .hero-btn {
        min-height: 45px;
        padding: 13px 17px;
        font-size: 8px;
        letter-spacing: 1.4px
    }

    .hero-trust {
        gap: 10px 16px;
        margin-top: 25px
    }

    .hero-trust span {
        font-size: 7px
    }

    .services-showcase {
        padding: 48px 15px 65px
    }

    .showcase-card {
        grid-template-columns: 1.1fr .9fr
    }

    .welcome-section,
    .gallery-preview {
        padding: 70px 22px
    }

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

    .photo-grid img {
        height: 240px
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 35px
    }

    footer {
        padding: 50px 25px 20px
    }
}

@media(max-width:720px) {
    body.menu-open {
        overflow: hidden;
    }
}