html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

:root {

    --color-primary: #524339;
    --color-primary-dark: #4E4540;

    --color-background: #FFF8F2;

    --color-text: #5b514b;

    --color-border: #e8ddd4;

    --font-title: "Cormorant Garamond", serif;
    --font-body: "Montserrat", sans-serif;
}

@font-face {
    font-family: "Montserrat";
    src: url("../assets/fonts/Montserrat/static/Montserrat-Light.ttf") format("truetype");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Montserrat";
    src: url("../assets/fonts/Montserrat/static/Montserrat-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Montserrat";
    src: url("../assets/fonts/Montserrat/static/Montserrat-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Montserrat";
    src: url("../assets/fonts/Montserrat/static/Montserrat-SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}


@font-face {
    font-family: "Cormorant Garamond";
    src: url("../assets/fonts/Cormorant_Garamond/static/CormorantGaramond-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Cormorant Garamond";
    src: url("../assets/fonts/Cormorant_Garamond/static/CormorantGaramond-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Cormorant Garamond";
    src: url("../assets/fonts/Cormorant_Garamond/static/CormorantGaramond-SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-background);

    color: var(--color-text);

    font-family: var(--font-body);

    font-size: 15px;

    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;

    font-family: var(--font-title);

    font-weight: 500;

    color: var(--color-primary);
}

h2 {
    font-size: clamp(38px, 4vw, 52px);

    line-height: 1.1;
}

p {
    margin-bottom: 0;
}

body.menu-open {
    overflow: hidden;
}

.section {
    padding: 8rem 0;
}

.section-label {
    display: inline-block;

    color: #576053;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.075rem;
}

.section-header {
    max-width: 750px;

    margin: 0 auto 60px;
}

.section-header h2 {
    color: #524339;
    text-align: center;
    font-family: "Cormorant Garamond";
    font-size: 3rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.section-header p {
    color: var(--color-primary-dark);
    font-size: 1.125rem;
}

.btn {
    border-radius: 0.5rem;

    padding: 0.75rem 1.25rem;

    font-family: var(--font-body);

    font-size: 0.75rem;

    font-weight: 600;
    transition: all .25s ease;
}

.btn-check:focus+.btn,
.btn:focus {
    outline: none;
}

.btn-primary-custom {
    background-color: var(--color-primary);

    border: 1px solid var(--color-primary);

    color: #ffffff;
}

.btn-primary-custom:hover,
.btn-primary-custom:active,
.btn-primary-custom:focus {
    background-color: #92674D;

    border-color: #92674D;

    color: #FFF8F2;
}

.btn-light-custom {
    background-color: #FFF8F2;

    border: 1px solid #FFF8F2;
    border-radius: 0.75rem;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-style: normal;
    font-weight: 600;
    color: var(--color-primary);
}

.btn-light-custom:hover,
.btn-light-custom:active,
.btn-light-custom:focus {
    background-color: #EBE5D8;

    border-color: #EBE5D8;

    color: var(--color-primary);
}


.site-header {
    background: rgba(255, 248, 242, 0.80);
    backdrop-filter: blur(6px);
}

.site-header .navbar {
    min-height: 80px;
}

.site-header .navbar-toggler {
    padding: 0;
    border: none;
    line-height: 0;
}

.site-header .navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.site-header .navbar-nav {
    gap: 28px;
}

.site-header .nav-link {
    padding: 5px 0 !important;

    color: var(--color-primary-dark);
    font-size: 0.75rem;
    font-style: normal;
    font-weight: 600;
    line-height: 1rem;

    transition: color .2s ease;
}

.site-header .nav-link:hover,
.site-header .nav-link.active {
    color: var(--color-primary);
    font-size: 1rem;
    font-style: normal;
    font-weight: 600;
    line-height: 1.5rem;
    text-decoration: underline;
}

.navbar-toggler .icon-close {
    display: none;
}

.navbar-toggler[aria-expanded="true"] .icon-menu {
    display: none;
}

.navbar-toggler[aria-expanded="true"] .icon-close {
    display: block;
    color: var(--color-primary);
}

.mobile-menu-cta {
    display: contents;
}

.hero {
    position: relative;

    min-height: 645px;

    display: flex;

    align-items: center;

    background-image: url("../assets/images/banner.svg");

    background-size: cover;

    background-position: center;
}

.hero-overlay {
    position: absolute;

    inset: 0;


    background: #56280099;
}

.hero .container {
    position: relative;

    z-index: 1;
}

.hero h1 {
    margin-bottom: 20px;

    color: #FFF8F2;

    font-size: clamp(48px, 6vw, 4rem);
    font-family: "Cormorant Garamond";

    line-height: 1;
}

.hero p {
    max-width: 720px;

    margin: 0 auto 35px;

    color: #FFF8F2;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5rem;
}

.services-section {
    background-color: var(--color-background);
}

.services-group-title {
    border-bottom: 1px solid rgba(128, 117, 111, 0.20);

    font-size: 2rem;
    font-style: normal;
    font-weight: 600;
    line-height: 2rem;
}

.service-card {
    min-height: 168px;

    padding: 2rem;

    margin-top: 2rem;
    margin-bottom: 2rem;
    border-radius: 0.5rem;
    border: 1px solid #E8DCCF;
    background: #FAF2EC;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    gap: 0.95625rem;
}

.service-card-title {
    display: flex;

    align-items: center;

    gap: 14px;

    margin-bottom: 20px;
}

.service-card h4 {
    color: var(--color-primary);
    font-family: "Cormorant Garamond";
    font-size: 1.625rem;
    font-style: normal;
    font-weight: 600;
    line-height: 2rem;
}


.service-card p {
    margin-bottom: 20px;

    color: var(--color-primary-dark);

    line-height: 1.5;
}

.service-link {
    color: #6B5A50;
    font-size: 0.75rem;
    font-style: normal;
    font-weight: 600;
    line-height: 1rem;
    letter-spacing: 0.1125rem;
    text-transform: uppercase;
    text-decoration: none;
}

.service-link:hover {
    color: #92674D;
}

.offer-section {
    position: relative;

    min-height: 385px;

    display: flex;

    align-items: center;

    background-image: url("../assets/images/offer.svg");

    background-size: cover;
    background-position: center;
    backdrop-filter: blur(1px);

}

.offer-overlay {
    position: absolute;
    inset: 0;
    background: rgba(86, 40, 0, 0.60);
}

.offer-section .container {
    position: relative;

    z-index: 1;
}


.offer-content .section-label {
    color: #D7B7B0;
    text-align: center;
    font-family: Montserrat;
    font-size: 1rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.15rem;
    text-transform: uppercase;
}

.offer-content h2 {
    color: #FFF;
    text-align: center;
    font-family: "Cormorant Garamond";
    font-size: 3rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.offer-content p {
    color: #EAD3C6;
    text-align: center;
    font-family: Montserrat;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.story-section {
    background-color: #FAF2EC;
}

.story-image {
    position: relative;
    display: inline-block;
    line-height: 0;
}

.story-image::before {
    content: "";
    position: absolute;
    top: -1rem;
    left: 0rem;
    right: 2rem;
    bottom: 3.5rem;
    border: 1px solid #D9CBBE;
    border-radius: 2rem;
    z-index: 0;
}

.story-image img {
    position: relative;
    z-index: 1;

    display: block;
    width: 100%;
    border-radius: 2rem;
}

.story-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
}

.story-content .section-label {
    color: #8E5144;
    font-family: Montserrat;
    font-size: 1rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.075rem;
    text-transform: uppercase;
}

.story-content h2 {
    color: #524339;
    font-family: "Cormorant Garamond";
    font-size: 2.5rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.story-content p {
    padding-bottom: 2rem;
    color: var(--color-primary-dark);

    line-height: 1.8;
    border-bottom: 1px solid #D9CBBE;
}

.story-content hr {
    margin-top: 30px;

    border: 0;

    border-top: 1px solid var(--color-border);

    opacity: 1;
}

.location-section {
    background: #FFF8F2;
}

.location-content h2 {
    color: #524339;
    font-family: "Cormorant Garamond";
    font-size: 2.5rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.location-content>p {
    color: var(--color-primary-dark);
    font-family: Montserrat;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.6rem;
    /* 160% */
}

.location-address {
    gap: 15px;
}

.location-icon {
    color: #b9c7b4;

    font-size: 24px;
}

.location-address h4 {
    color: #1E1B17;
    font-family: "Cormorant Garamond";
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 600;
    line-height: 1.75rem;
}

.location-address p {
    color: var(--color-primary-dark);
    font-family: Montserrat;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.6rem;
}

.map-container {
    overflow: hidden;

    border: 3px solid #EEE7E0;

    border-radius: 2rem;

    box-shadow: 0 5px 20px rgba(70, 50, 40, .05);
}

.map-container iframe {
    display: block;

    width: 100%;

    height: 500px;

    border: 0;
}

.booking-section {
    background-color: #F4EDE6;
}

.booking-section .section-label {
    color: #524339;
    text-align: center;
    font-family: "Cormorant Garamond";
    font-size: 3rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}


.booking-section p {
    color: #4E4540;
    text-align: center;
    font-family: Montserrat;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.8rem;
}

.site-footer {
    padding: 30px 0;

    background-color: var(--color-primary);

    color: rgba(255, 255, 255, .75);

    font-size: 12px;
}

.social-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon img {
    width: 24px;
    height: 24px;
    transition: opacity .2s ease;
}

.social-icon .icon-hover {
    position: absolute;
    opacity: 0;
}

.social-icon:hover .icon-default,
.social-icon:active .icon-default,
.social-icon:focus-visible .icon-default {
    opacity: 0;
}

.social-icon:hover .icon-hover,
.social-icon:active .icon-hover,
.social-icon:focus-visible .icon-hover {
    opacity: 1;
}

@media (max-width: 991.98px) {

    .navbar-collapse {
        position: fixed;
        top: 80px;
        left: 0;
        z-index: 1020;

        width: 100%;
        max-width: 100vw;

        height: calc(100vh - 80px);

        display: flex;
        flex-direction: column;
        overflow-y: auto;

        padding: 0;
        background-color: var(--color-background);
    }

    .navbar-collapse.collapsing {
        height: auto !important;
        transition: opacity .2s ease;
        opacity: 0;
    }

    .navbar-collapse.show {
        opacity: 1;
    }

    .mobile-menu-header {
        padding: 20px 1.5rem;
        border-bottom: 1px solid var(--color-border);
    }

    .mobile-menu-header .navbar-brand img {
        width: 60px;
    }

    .mobile-menu-close {
        border: none;
        background: none;
        padding: 0;
        color: var(--color-primary);
    }

    .navbar-nav {
        width: 100%;
        margin: 0 !important;
        gap: 0 !important;
    }

    .navbar-nav .nav-item {
        width: 100%;
        border-bottom: 1px solid #524339;
    }

    .navbar-nav .nav-link {
        display: block;
        padding: 2rem !important;
        font-size: 2rem !important;
        line-height: 2.5rem !important;
        text-align: center;
        gap: 0.625rem;
        font-family: "Cormorant Garamond";

    }

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
        background-color: #FDDFC6;
        text-decoration: none;
    }

    .mobile-menu-contact {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
        padding: 1.75rem 1.5rem;
    }

    .mobile-menu-contact a {
        color: var(--color-primary-dark);
        font-size: 0.9rem;
        text-decoration: none;
    }

    .mobile-menu-social {
        display: flex;
        justify-content: center;
        gap: 1.25rem;
        color: var(--color-primary-dark);
    }

    .mobile-menu-cta {
        display: block;
        margin-top: auto;
        padding: 2rem;
        width: 100%;
    }

    .mobile-menu-cta .btn {
        display: block;
        width: 100%;
        padding: 1.5rem 2rem;
        font-size: 1rem;

    }

    .hero {
        min-height: 580px;
    }

    .story-content {
        max-width: none;
    }

}

.site-footer {
    position: relative;

    padding: 5rem 2.5rem;
    background-color: var(--color-background);

    color: var(--color-primary-dark);

    text-align: center;
}

.scroll-top {
    position: absolute;
    top: -1rem;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
}

.scroll-top img {
    width: 24px;
    height: 24px;
    transition: opacity .2s ease;
}

.scroll-top .arrow-hover {
    position: absolute;
    opacity: 0;
}

.scroll-top:focus .arrow-default,
.scroll-top:hover .arrow-default,
.scroll-top:focus-visible .arrow-default,
.scroll-top:active .arrow-default {
    opacity: 0;
}

.scroll-top:focus .arrow-hover,
.scroll-top:hover .arrow-hover,
.scroll-top:focus-visible .arrow-hover,
.scroll-top:active .arrow-hover {
    opacity: 1;
}

.footer-title {
    max-width: 700px;

    margin: 0 auto 2.5rem;

    font-size: clamp(28px, 3vw, 3.5rem);
    line-height: 1.25;
    color: var(--color-primary);
}

.footer-contact {
    margin-bottom: 3rem;
}

.footer-link {
    color: var(--color-primary-dark);
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    font-weight: 400;
    line-height: 1.6rem;
}

.footer-link:hover {
    color: var(--color-primary);
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--color-primary-dark);

    transition: color .2s ease;
}

.footer-social a:hover {
    color: var(--color-primary);
}

.footer-divider {
    max-width: 900px;

    margin: 0 auto 1.5rem;

    border: 0;
    border-top: 1px solid var(--color-border);
    opacity: 1;
}

.footer-bottom {
    color: #B8B2AC;
    text-align: center;
    font-family: Montserrat;
    font-size: 0.75rem;
    font-style: normal;
    font-weight: 600;
    line-height: 1rem;
    letter-spacing: 0.1125rem;
}

@media (max-width: 767.98px) {
    .navbar {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .section {
        padding: 4.375rem 0;
    }

    .hero {
        background-image: url("../assets/images/banner-mobile.jpg");
    }

    .hero {
        min-height: 600px;
    }

    .hero-box {
        padding: 0 3rem;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero p {
        font-size: 1rem;

    }

    .section-label {
        font-size: 0.875rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .service-card {

        margin-top: 1rem;
        margin-bottom: 1rem;
        padding: 2rem;
    }

    .services-group-title {
        font-size: 1.5rem;
    }

    .service-card h4 {
        font-size: 1.125rem;
    }

    .service-link {
        font-size: 0.75rem;

    }

    .scroll-top {
        display: none;
    }

    .offer-section {

        background-image: url("../assets/images/offer-mobile.jpg");
    }

    .offer-content .section-label {
        font-size: 0.875rem;
    }

    .offer-content h2 {
        font-size: 2rem;
    }

    .offer-content p {
        font-size: 1rem;
        line-height: 1.5rem;
    }

    .story-content {
        align-items: center;
        text-align: center;
    }

    .story-content p {
        padding-bottom: 1rem;
    }

    .story-content .section-label {
        font-size: 0.875rem;
        text-align: center;
    }

    .footer-contact {
        flex-direction: column;
    }

    .footer-title {
        font-size: 2rem;
    }

    .map-container iframe {
        height: 400px;
    }

    .site-footer {
        text-align: center;
    }

    .site-footer .text-md-end {
        margin-top: 10px;

        text-align: center !important;
    }

}