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

body {
    font-family: Inter, sans-serif;
    background: #111;
    color: #fff
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background: url('../img/hero.png') center/cover no-repeat
}

.hero::before {
    content: '';
    position: absolute;
    inset: -5%;
    background: url('../img/hero.jpg') center/cover no-repeat;
    animation: zoom 30s ease-in-out infinite alternate;
    z-index: 0
}

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(25, 20, 18, .55), rgba(25, 20, 18, .7));
    z-index: 1
}

.content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 760px;
    padding: 40px
}

.logo {
    width: 240px;
    margin-bottom: 18px
}

.tag {
    letter-spacing: 6px;
    font-size: .85rem;
    color: #d4b483;
    margin-bottom: 50px
}

h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    line-height: 1.05;
    font-weight: 500;
    margin-bottom: 28px
}

.ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin: 0 0 28px
}

.ornament span {
    width: 80px;
    height: 1px;
    background: #b89662
}

.ornament i {
    width: 8px;
    height: 8px;
    border: 1px solid #b89662;
    transform: rotate(45deg);
    display: block
}

p {
    max-width: 620px;
    margin: 0 auto 45px;
    font-size: 1.08rem;
    line-height: 1.9;
    color: #ddd
}

.buttons {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap
}

.btn {
    text-decoration: none;
    color: #fff;
    border: 1px solid rgba(212, 180, 131, .7);
    padding: 18px 34px;
    border-radius: 18px;
    transition: .35s;
    background: rgba(255, 255, 255, .04);
    backdrop-filter: blur(4px)
}

.btn:hover {
    background: #b89662;
    color: #231d19;
    transform: translateY(-3px)
}

footer {
    position: absolute;
    bottom: 28px;
    width: 100%;
    text-align: center;
    z-index: 2;
    letter-spacing: 3px;
    color: #d6c8b4;
    font-size: .8rem
}

@keyframes zoom {
    from {
        transform: scale(1)
    }

    to {
        transform: scale(1.08)
    }
}

@media(max-width:768px) {
    h1 {
        font-size: 2.8rem
    }

    .logo {
        width: 180px
    }

    .buttons {
        flex-direction: column
    }

    .btn {
        width: 100%
    }
}