:root {
    --background: #19191A;
    --secondary: #FCEFDE;
    --tertiary: #c2945d;
    --tertiary2: #e29940;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Noto Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 200;
    font-style: normal;
    font-variation-settings:
        "wdth" 100;
    font-size: 18px;
    background-color: var(--background);
    color: #fff;
    line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: unset;
}

.d-none {
    display: none !important;
}

.header {
    font-family: "Noto Serif", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings:
        "wdth" 100;
    line-height: 1.1;
}

.dash {
    height: 4px;
    background-image: url('/img/dash.svg');
    background-size: 3840px;
    background-position: center;
}

main {
    position: relative;
    overflow: hidden;
}

.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    background-image: url('/img/hero.webp');
    background-size: cover;
    background-position: center;
    min-height: 700px;
    position: relative;
    padding: 20px;
}

.hero::before, .hero::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.hero::before {
    z-index: 1;
    background-color: rgba(0,0,0,0.65);
}

.hero::after {
    filter: blur(20px);
}

.hero > * {
    position: relative;
    z-index: 2;
}

.hero__img {
    max-width: 400px;
    width: 100%;
}

.book-now-btn {
    color: var(--background);
    text-decoration: none;
    padding: 16px 45px;
    border: solid 2px var(--tertiary2);
    background-color: var(--tertiary2);
    text-align: center;
    font-size: 16px;
    text-transform: uppercase;
    transition: all .4s ease;
    font-weight: 400;
}

.book-now-btn:hover {
    -webkit-backdrop-filter: brightness(.5);
    backdrop-filter: brightness(.5);
    box-shadow: 3px 9px 30px rgba(0,0,0,0.85);
    transform: translateY(-3px);
    transform: scale(1.05);
}

.book-now-btn.--services {
    background-color: transparent;
    color: #fff;
    border-color: #fff;
}

.hero__btns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.container {
    max-width: 992px;
    margin-left: auto;
    margin-right: auto;
    padding: 0px 24px;
}

.intro-section {
    padding-top: 100px;
    padding-bottom: 200px;
    /* background-image: url('/img/razor20.webp');
    background-attachment: fixed;
    background-repeat: no-repeat; 
    background-size: max(30vw,500px);
    background-position: left 2vw center; */
}

.intro {
    border-bottom: solid .5px #fff;
    font-size: 24px;
    position: relative;
}

.intro__header {
    text-align: center;
    font-size: 58px;
    width: 100%;
    opacity: .25;
    margin-bottom: 20px;
}

.section-header {
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: .2em;
    display: flex;
    flex-direction: column;
    gap: 5px;
    justify-content: center;
    align-items: center;
}

.section-header__img {
    max-width: 30px;
}

.intro__copy {
    padding: 16px 0 24px 0;
}

.razor-bg {
    width: 600px;
    object-fit: contain;
    position: absolute;
    z-index: -1;
    left: -400px;
    top: 50%;
    transform: translateY(-50%);
    opacity: .1;
}

.razor {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    margin-block: 50px;
    opacity: .25;
    transform: rotate(90deg);
    position: absolute;
    top: 110px;
    z-index: -1;
    left: calc(1vw - 140px);
}

.services {
    background-color: var(--secondary);
    padding: 100px 0;
    color: var(--background);
    background-image: url('/img/duster.webp');
    background-repeat: no-repeat;
    background-position: right 3vw bottom -150px;
    background-size: clamp(300px, 30vw, 1000px);
}

.services__header {
    text-align: center;
}

.section-subheader {
    text-align: center;
    font-size: 58px;
    width: 100%;
    opacity: .25;
    margin-bottom: 20px;
}

.services-list {
    list-style: none;
    margin: 0;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 100px;
    margin-bottom: 50px;
}

.services-list__item {
    margin: 0;
    position: relative;
    width: 250px;
    border: solid 1px var(--background);
    color: var(--background);
    padding: 30px;
    text-align: center;
    border-radius: 3px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.services-list__img {
    width: 100%; 
}

.services-list__text {
    text-align: center;
    /* background-color: var(--secondary);
    position: absolute;
    left: 50%;
    bottom: -1em;
    transform: translateX(-50%);
    padding: 0 20px;
    width: fit-content;
    white-space: nowrap; */
}

.book-now-btn.--v2 {
    border-color: var(--background);
    color: var(--background);
    border-width: 1px;
}

.btn-swipe-left {
    display: block;
    overflow: hidden;
    text-align: center;
    max-width: 180px;
    padding: 10px;
    margin: auto;
    text-transform: uppercase;
    text-decoration: none;
    transition: 0.5s ease-in-out;
    position: relative;
    color: var(--background);
    font-weight: 400;
    font-size: 16px;
    letter-spacing: .1em;
}

.btn-swipe-left::before {
    content: "";
    transform: translateX(-150%);
    position: absolute;
    left: 0px;
    top: 0px;
    height: 140%;
    width: 240%;
    transition: 0.5s ease-in-out;
}

.btn-swipe-left span {
    z-index: 2;
    position: relative;
    transition: 0.5s ease-in-out;
}

.btn-swipe-left:hover span {
    color: rgb(255, 255, 255);
}

.btn-swipe-left:hover::before {
    transform: translateX(-50%);
}

.btn-swipe-left--black {
    color: var(--background);
    border: 1px solid var(--background);
}

.btn-swipe-left--black::before {
    background-color: var(--background);
}
.map-info-container {
    padding: 100px 0;
}

.map-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 100px;
}

.map-info__text {
    width: 100%;
    max-width: 496px;
    justify-self: end;
}

.map-info__header {
    margin-bottom: 1em;
}

.map-info__info {
    display: block;
    margin-bottom: 3em;
}

a.map-info__info {
    display: inline-block;
}

.map-info__hours {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 200px;
}

footer {
    background-color: black;
    color: #fff;
    font-size: 14px;
    padding: 25px 0;
    text-align: center;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    color: #fff;
}

footer i {
    color: #fff;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 4px;
}

.text-link {
    color: currentColor;
    font-weight: 300;
    text-decoration: underline;
}

@media (min-width: 1920px) {
    .razor-bg {
        left: -25vw;
    }
}

@media (max-width: 1040px) {
    .intro {
        border-bottom: 0;
    }

    .map-info-container {
        padding: 100px 0 0 0;
    }
    
    .map-info {
        grid-template-columns: 1fr;
    }

    .map-info__text {
        max-width: 100%;
        padding: 0 24px;
        text-align: center;
    }

    .map-info__info {
        display: flex;
        flex-direction: column;
        align-items: center;

    }
}

@media (max-width: 768px) {

    .intro {
        font-size: 20px;
    }
    .section-subheader, .intro__header {
        margin-bottom: 0;
        font-size: 40px;
    }
    .services {
        background-image: none;
        padding: 50px 0;
    }

    .intro-section {
        padding: 50px 0;
    }

    .map-info-container {
        padding: 50px 0 0 0;
    }

    .services-list, .map-info {
        margin-top: 50px;
    }
}

@media (max-width: 450px) {
    .hero__btns {
        grid-template-columns: auto;
        width: 100%;
    }

    .book-now-btn {
        padding: 16px;
    }
}