@import url('https://fonts.googleapis.com/css2?family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&display=swap');

:root {
    --bg-color: #FBFAF8;
    --gold: #C89848;
    --brown: #271711;
    --brown-text: #3c211775;
    --bg-sec: #F6EFE5;
    --chunk:  Chunk;
    --sundae: Chunky Sundae;
    --google: Google Sans;
    --inter: Inter;
}

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

*button {
    font-family: var(--google);
    transition: 400ms;
    -webkit-tap-highlight-color: transparent;
}
*button:active {
    transform: scale(0.9);
}

@media (min-width: 300px) and (max-width: 450px) {
    body {
        background-color: var(--bg-color);
        /* overflow: hidden; */
    }
    .hero {
        display: none;
    }
    .phone-hero {
        background-color: var(--bg-sec);
        padding: 175px 20px;
        border-radius: 0 0 60px 60px;
        display: flex;
        overflow: hidden;
        height: 100vh;
        height: 800px;
    }
    .phone-hero nav {
        background-color: var(--brown);
        display: flex;
        align-items: center;
        width: 90%;
        padding: 15px 15px 15px 30px;
        position: fixed;
        top: 30px;
        z-index: 99;
        justify-content: space-between;
        border-radius: 50px;
        /* margin: 0 auto; */
    }
    .phone-hero nav .logo img {
        width: 60px;
    }
    .phone-hero  .nav-right {
        display: flex;
        align-items: center;
        gap: 70px;
    }
    .phone-hero nav .links {
        display: none;
        gap: 50px;
        align-items: center;
    }
    .phone-hero nav .links a{
        font-size: 17px;
        color: var(--bg-color);
        text-decoration: none;
    }
    .phone-hero .nav-right button {
        background-color: var(--gold);
        border: none;
        border-radius: 50px;
        padding: 10px 30px;
    }
    .phone-hero .nav-right button img{
        width: 30px;
    }
    .phone-hero nav .phone-nav {
        display: flex;
        flex-direction: column;
        /* padding: 20px 25px 30px 25px; */
        background-color: var(--brown);
        border-radius: 30px 30px 50px 50px;
        position: absolute;
        top: 100px;
        width: 100%;
        left: 0px;
        overflow: hidden;
        max-height: 0px;
        transition: 500ms ease;
        /* opacity: 0; */
        box-shadow: 0px 10px 30px 0px rgba(60, 33, 23, 0.394);
    }
    .phone-hero nav .phone-nav>span{
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 10px 18px 10px;
        font-size: 18px;
        font-weight: 500;
        font-family: var(--google);
        color: var(--bg-color);
        border-bottom: 1px solid rgb(200, 152, 72, 0.3);
        margin-left: 25px;
        margin-right: 25px;
    }
    .phone-hero nav .phone-nav>span:nth-child(1) {
        margin-top: 20px;
    }
    .phone-hero nav .phone-nav>span:nth-child(5) {
        border-bottom: 1px solid rgb(200, 152, 72, 0);
    }
    .phone-hero nav .phone-nav .whatsapp {
        width: calc(100% - 50px);
        display: flex;
        gap: 0px;
        align-items: center;
        margin-top: 15px;
        margin-left: 25px;
        margin-right: 25px;
        margin-bottom: 25px;
    }
    .phone-hero nav .phone-nav .whatsapp button {
        padding: 15px 25px;
        font-size: 18px;
        background-color: var(--gold);
        color: #3c2117;
        font-family: var(--google);
        border-radius: 40px;
        border: none;
        font-weight: 500;
        transition: 400ms;
        cursor: pointer;
        width: calc(100% - 52px);
        display: flex;
        gap: 10px;
        justify-content: center;
        align-items: center;
    }
    .phone-hero nav .phone-nav .whatsapp button img {
        height: 20px;
        
    }
    .phone-hero nav .phone-nav .whatsapp span {
        border-radius: 40px;
        height: 52px;
        width: 52px;
        background-color: var(--gold);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 0px;
    }
    .phone-hero nav .phone-nav.active{
        max-height: 60vh;
        /* opacity: 1; */
        /* transition: 500ms ease-out; */
    }
    .phone-hero .hero-text {
        position: relative;
        z-index: 10;
        /* margin-top: 15%; */
    }
    .phone-hero .hero-text>span{
        display: flex;
        gap: 10px;
        align-items: center;
        color: var(--brown);
        font-weight: 500 !important;
        font-size: 14px;
        background-color: #3c211724;
        width: fit-content;
        padding: 10px 12px 10px 12px;
        border-radius: 30px;
        font-family: var(--google);
    }
    .phone-hero .hero-text span img{
        width: 16px;
    }
    .phone-hero .hero-text h1 {
        font-size: 40px;
        font-family: var(--chunk);
        color: var(--brown);
        font-weight: 100;
        width: 95%;
        margin: 30px 0px 15px ;
    }
    .phone-hero .hero-text p {
        font-size: 16px;
        color: var(--brown);
        font-weight: 400;
        line-height: 24px;
        width: 75%;
        opacity: 0.75;
        margin-bottom: 50px;
        font-family: var(--google);
    }
    .phone-hero .hero-text button {
        padding: 15px 25px;
        font-size: 16px;
        background-color: var(--gold);
        color: #3c2117;
        font-family: var(--google);
        border-radius: 40px;
        border: none;
        font-weight: 500;
        transition: 400ms;
        cursor: pointer;
        display: none;
    }
    .phone-hero .hero-text button:hover {
        background-color: #b48b43;
    }
    .phone-hero .hero-text button:active {
        transform: scale(0.9);
    }
    .phone-hero .rotor {
        position: relative;
        z-index: 10;
        /* bottom: 30px;
        right: 20px; */
        /* overflow: hidden; */
    }
    .rotor .knob {
        width: 120px;
        height: 120px;
        border-radius: 300px 80px 160px 80px;
        background-color: var(--brown);
        position: absolute;
        bottom: -152px;
        right: 0px;
    }
    .rotor img {
        position: absolute;
        z-index: 10;
        width: 505px;
        /* top: 340px; */
        bottom: -376px;
        right: -225px;
        animation: rotate ease-in-out infinite 12s ;
    }
    @keyframes rotate {
        0% {
            transform: rotate(0deg);
        }
        11.10% {
            transform: rotate(0deg);
        }
        16.65% {
            transform: rotate(0deg);
        }
        22.20% {
            transform: rotate(0deg);
        }
        27.75% {
            transform: rotate(90deg);
        }
        33.30% {
            transform: rotate(90deg);
        }
        38.85% {
            transform: rotate(90deg);
        }
        44.40% {
            transform: rotate(90deg);
        }
        49.95% {
            transform: rotate(180deg);
        }
        55.50% {
            transform: rotate(180deg);
        }
        61.05% {
            transform: rotate(180deg);
        }
        66.60% {
            transform: rotate(180deg);
        }
        72.15% {
            transform: rotate(270deg);
        }
        77.70% {
            transform: rotate(270deg);
        }
        83.25% {
            transform: rotate(270deg);
        }
        94.35% {
            transform: rotate(270deg);
        }
        100% {
            transform: rotate(360deg);
        }
    }
    .our-corner {
        position: relative;
        z-index: 10;
        margin: 170px 20px;
    }
    .our-corner .header span{
        display: flex;
        gap: 8px;
        align-items: center;
        color: var(--brown);
        font-weight: 400;
        font-size: 14px;
        background-color: #3c211724;
        width: fit-content;
        padding: 10px 12px 10px 12px;
        border-radius: 30px;
        font-family: var(--inter);
        letter-spacing: -0.2px;
    }
    .our-corner span img{
        width: 16px;
    }
    .our-corner .header h3 {
        font-size: 40px;
        font-family: var(--chunk);
        color: var(--brown);
        font-weight: 100;
        width: 100%;
        margin: 30px 0px 15px ;
    }
    .our-corner .header p {
        font-size: 15px;
        color: var(--brown);
        font-weight: 400;
        line-height: 24px;
        width: 90%;
        opacity: 0.75;
        margin-bottom: 50px;
        font-family: var(--google);
    }
    .corner .spot {
        height: 360px;
        border-radius: 40px;
        position: relative;
        overflow: hidden;
        transition: 400ms !important;
    }
    .corner .spot .info {
        position: absolute;
        z-index: 10;
        top: 230px !important;
        left: 25px !important;
    }
    .corner .spot .info h3{
        font-family: var(--sundae);
        color: #ffffff;
        font-size: 25px;
        font-weight: normal;
    }
    .corner .spot .info p{
        font-size: 18px;
        color: var(--bg-sec);
        font-weight: 300;
        line-height: 26px;
        width: 100% !important;
        opacity: 0.95;
        margin-top: 10px;
        opacity: 0.75;
        font-family: var(--google);
    }
    .corner .spot.cafe .info p, .corner .spot.wine .info p {
        width: 90%;
    }
    .corner .spot::before {
        content: "";
        height: 100%;
        width: 100%;
        background: linear-gradient(
            to bottom,
            #c8994800,
            #c899484b,
            #271711
        );
        position: absolute;
        opacity: 1;
        top: 0px;
    }
    .corner .spot.cafe {
        background-image: url(../img/IMG-20260813-WA0057.webp);
        width: 100%;
        background-size: cover;
        background-position: center;
        transition: 400ms;
        background-repeat: no-repeat;
        transition: 400ms !important;
    }
    .corner .spot.wine {
        background-image: url(../img/IMG-20260813-WA0054.webp);
        width: 100%;
        background-size: cover;
        background-position: center;
        transition: 400ms;
        background-repeat: no-repeat;
        transition: 400ms !important;
    }
    .corner .spot.home {
        background-image: url(../img/toa-heftiba-TWOnvtstmeU-unsplash.webp);
        width: 100%;
        background-size: cover;
        background-position: center;
        transition: 400ms;
        background-repeat: no-repeat;
        transition: 400ms !important;
    }
    .corner .spot.scents {
        background-image: url(../img/IMG-20260813-WA0043.webp);
        width: 100%;
        background-size: cover;
        background-position: center;
        transition: 400ms;
        background-repeat: no-repeat;
        transition: 400ms !important;
    }
    .corner .spot.makeup {
        background-image: url(../img/toa-heftiba-TWOnvtstmeU-unsplash.webp);
        width: 100%;
        background-size: cover;
        background-position: center;
        transition: 400ms;
        background-repeat: no-repeat;
        transition: 400ms !important;
    }
    /* .corner .spot:hover {
        background-size: 200%;
        transition: 400ms !important;
    } */
    /* .corner .spot.cafe:hover {
        background-size: 105%;
    } */
.about-us {
    display: flex;
    flex-direction: column;
    margin: 0px 20px 170px 20px;
    gap: 80px;
}
.about-us .left {
    width: 100% ;
}
.about-us .left>span{
    display: flex;
    gap: 8px;
    align-items: center;
    color: var(--brown);
        font-weight: 500;
        font-size: 14px;
        background-color: #3c211724;
        width: fit-content;
        padding: 10px 12px 10px 12px;
        border-radius: 30px;
        font-family: var(--inter);
        letter-spacing: -0.2px;
}
.about-us .left span img{
    width: 16px;
}
.about-us .left>h3 {
    font-size: 40px;
    font-family: var(--chunk);
    color: var(--brown);
    font-weight: 100;
    margin: 30px 0px 25px ;

}
.about-us .left>p {
    font-size: 16px;
    color: var(--brown);
    font-weight: 400;
    width: 100%;
    line-height: 24px;
    opacity: 0.9;
    margin-bottom: 35px;
    opacity: 0.75;
    font-family: var(--google);
}
.about-us button {
    padding: 15px 25px;
    font-size: 16px;
    background-color: var(--gold);
    color: #3c2117;
    font-family: var(--google);
    border-radius: 40px;
    border: none;
    font-weight: 500;
    transition: 400ms;
    cursor: pointer;
}
.about-us button:hover {
    background-color: #b48b43;
}
.about-us button:active {
    transform: scale(0.9);
}
.about-us .about-img {
    position: relative;
    /* overflow: hidden; */
    width: 100%;
}
.about-img .imgone {
    width: 100%;
    height: 280px;
    background-image: url(../img/roman-bozhko-OXXsAafHDeo-unsplash.webp);
    background-size: cover;
    border-radius: 40px;
    background-repeat: no-repeat;
}
.cafe-section {
    background-color: var(--bg-sec);
    padding: 100px 140px;
    border-radius: 30px 30px 60px 60px;
    padding-left: 20px;
    padding-right: 20px;
} 
.cafe-section .main .header span{
    display: flex;
    gap: 8px;
    align-items: center;
    color: var(--brown);
    font-weight: 500;
    font-size: 14px;
    background-color: #3c211724;
    width: fit-content;
    padding: 10px 12px 10px 12px;
    border-radius: 30px;
    font-family: var(--inter);
    letter-spacing: -0.2px;
}
.cafe-section .main .header span img{
    width: 16px;
}
.cafe-section h3 {
    font-size: 40px;
    font-family: var(--chunk);
    color: var(--brown);
    font-weight: 100;
    width: 100%;
    margin: 30px 0px 15px ;
}
.cafe-section .main .header p {
    font-size: 15px;
    color: var(--brown);
    font-weight: 400;
    line-height: 24px;
    width: 90%;
    opacity: 0.75;
    margin-bottom: 50px;
    font-family: var(--google);
}
.cafe-section .cafe-menu {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    height: fit-content;
    gap: 24px;
    margin-bottom: 70px;
}
.cafe-section .cafe-menu .imgone {
    background-image: url(../img/IMG20260813WA0042_edited_1787679589720.webp);
    transition: 400ms;
    height: 350px;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 40px;
}
.cafe-section .cafe-menu .imgtwo {
    background-image: url(../img/IMG20260813WA0040_edited_1787679590026.webp);
    transition: 400ms;
    height: 225px;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 40px;
}
.cafe-section .cafe-menu .menu {
    background-color: var(--bg-color);
    transition: 400ms;
    height: fit-content;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 40px;
    border: 1px solid #EEE9E8;
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.cafe-section .cafe-menu .menu span {
    display: flex;
    gap: 20px;
    align-items: center;
}
.cafe-section .cafe-menu .menu span i {
    background-color: var(--bg-sec);
    border-radius: 50%;
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cafe-section .cafe-menu .menu span i img {
    width: 20px;
}
.cafe-section .cafe-menu .menu button {
    width: 100%;
    padding: 18px;
    color: var(--bg-color);
    background-color: #562731;
    font-family: var(--google);
    font-size: 16px;
    border-radius: 50px;
    border: none;
    margin-top: 10px;
    font-weight: 500;
    transition: 400ms;
}
.cafe-section .cafe-menu .menu button:active {
    transform: scale(0.9);
}
.cafe-section .cafe-menu .menu span p {
    font-size: 16px;
    color: #1b1b1b;
    font-weight: 400;
    margin: 0px !important;
    font-family: var(--google);
    width: 100%;
}
.cafe-section .meals {
    display: flex;
    gap: 24px;
    width: 100%;
    margin-top: 30px;
}
.cafe-section .meals .meal {
        flex: 0 0 100%; /* 1 (plus a peek of the next) on phones */
        height: 380px;
        border-radius: 40px;
        position: relative;
    }
    .cafe-section .meals .meal .info {
        top: auto;
        bottom: 40px;
        left: 30px;
    }
    .cafe-section .meals .meal .info p {
        width: auto;
        max-width: 320px;
    }

.cafe-section .meals .meal .info {
    position: relative;
    z-index: 10;
    top: 225px;
    left: 25px;
}
.cafe-section .meals .meal .info h3{
    font-family: var(--sundae);
    color: #fafaf8;
    font-size: 25px;
    font-weight: normal;
    width: 100%;
}
.cafe-section .meals .meal .info p{
    font-size: 16px;
    color: var(--bg-sec);
    font-weight: 300;
    line-height: 24px;
    width: 80%;
    opacity: 0.95;
    margin-top: 9px;
    opacity: 0.75;
    font-family: var(--google);
} 
 .cafe-section .meals .meal::before {
    content: "";
    height: 100%;
    width: 100%;
    background: linear-gradient(
        to bottom,
        #c8994800,
        #c899484b,
        #271711
    );
    position: absolute;
    opacity: 1;
    top: 0px;
}
.cafe-section .meals .meal {
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #000000;
    background-position: center 100%;
}
.cafe-section .meals .meal.one {
    background-image: url(../img/cappuccino.webp);
}
.cafe-section .meals .meal.two {
    background-image: url(../img/lemon-margarita.webp);
    background-position: center -80px;
}
.cafe-section .meals .meal.three {
    background-image: url(../img/pepper-turkey.webp);
}
.cafe-section .meals .meal.four {
    background-image: url(../img/tropical-smoothie.webp);
    background-position: center -50px;
}
.cafe-section .meals .meal.five {
    background-image: url(../img/virgin-mojito.webp);  
}
.cafe-section .meals .meal.six {
    background-position: center -90px;
    background-image: url(../img/omelette-sandwich.webp);  
}
.cafe-section .meals .meal .price {
    position: absolute;
    right: 25px;
    top: 25px;
    background-color: var(--bg-color);
    font-size: 14px;
    padding: 10px 10px;
    border-radius: 50px;
    font-family: var(--google);
    font-weight: 500;
    color: #562731;
}
.gallery {
    margin: 170px 20px;
}
.gallery .header span{
    display: flex;
    gap: 8px;
    align-items: center;
    color: var(--brown);
    font-weight: 500;
    font-size: 14px;
    background-color: #3c211724;
    width: fit-content;
    padding: 10px 12px 10px 12px;
    border-radius: 30px;
    font-family: var(--inter);
    letter-spacing: -0.2px;
}
.gallery .header span img{
    width: 16px;
}
.gallery .header h3 {
    font-size: 40px;
    font-family: var(--chunk);
    color: var(--brown);
    font-weight: 100;
    width: 100%;
    margin: 30px 0px 15px ;
}
.gallery .header p {
    font-size: 15px;
    color: var(--brown);
    font-weight: 400;
    line-height: 24px;
    width: 90%;
    opacity: 0.75;
    margin-bottom: 50px;
    font-family: var(--google);
}
.gallery .image-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px !important;
    width: 100%;
}
.gallery .image-grid .top {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px !important;
    height: fit-content;
    width: 100%;
}
.gallery .image-grid .top .img {
    width: 100%;
    height: 300px;
    border-radius: 40px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.gallery .image-grid .img {
    width: 100%;
    height: 100%;
    border-radius: 40px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.gallery .image-grid .top .img.one {
    background-image: url(../img/IMG-20260813-WA0042.webp);
}

.gallery .image-grid .top .img.two {
    background-image: url(../img/IMG0420_edited_1787660854159.webp);
    height: 150px;
    width: calc(50% - 12px);
}

.gallery .image-grid .top .img.three {
    background-image: url(../img/IMG0439_edited_1787660664211.webp);
    height: 150px;
    width: calc(50% - 12px);
}

.gallery .image-grid .top .img.four {
    background-image: url(../img/IMG_0396.webp);
}

.gallery .image-grid .img.five {
    background-image: url(../img/IMG0426_edited_1787660855257.webp);
    height: 300px;
}

.gallery .image-grid .img.six {
    background-image: url(../img/IMG0411_edited_1787660665268.webp);
    height: 200px;
}

.gallery .image-grid .img.seven {
    background-image: url(../img/IMG-20260813-WA0054.webp);
    height: 300px;
}
.our-spaces {
    background-image: url(../img/IMG-20260813-WA0040.webp);
    padding: 100px 20px;
    background-size: cover;
    background-position: center;
    /* height: 100vh; */
    overflow: hidden;
    position: relative;
    border-radius: 30px 30px 60px 60px;
}
.our-spaces::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: linear-gradient(
        to bottom,
        #271711,
        #2717117b,
        #c899484b,
        #c8994820,
        #c899484b,
        #2717117b,
        #271711 );
    opacity: 0.9;
}
.our-spaces .header span{
    display: flex;
    gap: 8px;
    align-items: center;
    color: var(--bg-color);
    font-weight: 500;
    font-size: 14px;
    background-color: #fbfaf824;
    width: fit-content;
    padding: 10px 12px 10px 12px;
    border-radius: 30px;
    font-family: var(--inter);
    letter-spacing: -0.2px;
}
.our-spaces header span img{
    width: 16px;
}
.our-spaces .main .header h3 {
    font-size: 40px;
    font-family: var(--chunk);
    color: #ffffff;
    font-weight: normal;
    width: 90%;
    margin: 30px 0px 15px 0px;
    position: relative;
}
.our-spaces .main .header p {
    font-size: 16px;
    color: #ffffff;
    font-weight: 400;
    line-height: 24px;
    width: 90%;
    opacity: 0.9;
    margin-bottom: 50px;
    font-family: var(--google);
}
.our-spaces .info {
    margin-top: 100px;
    position: relative;
}
.our-spaces .flow-cards {
    overflow: hidden;
    border-radius: 40px;
}
.our-spaces .info .group {
    display: flex;
    flex-direction: row;
    gap: 30px;
    /* overflow-x: scroll; */
    width: fit-content;
}
.our-spaces .group-indicator {
    display: flex;
    gap: 14px;
    margin-bottom: 30px;
    width: 100%;
}
.our-spaces .group-indicator .ind-item {
    display: flex;
    align-items: center;
    justify-content: left;
    gap: 10px;
    height: 40px;
    width: 43px;
    padding: 0 14px 0px 12px;
    border-radius: 20px;
    background: rgba(250, 250, 248, 0.30);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    flex-shrink: 0;
    transition: width 400ms ease, background 400ms ease;
    backdrop-filter: blur(5px);
}
.our-spaces .group-indicator .ind-item.active {
    width: calc(38%);
}
.our-spaces .group-indicator .ind-item h4 {
    position: relative;
    z-index: 2;
    font-size: 15px;
    color: #fff;
    font-weight: normal;
    white-space: nowrap;
}
.our-spaces .group-indicator .ind-item i {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background: var(--gold);
    border-radius: inherit;
    z-index: 1;
}
.our-spaces .group .card {
    background-color: #fafaf8cc;
    padding: 35px 25px;
    border-radius: 40px;
    width: calc(100vw - 40px) !important;
    backdrop-filter: blur(20px);
}
.our-spaces .group .card h3{
    font-size: 30px;
    font-family: var(--chunk);
    color: var(--brown);
    font-weight: normal;
    margin: 0px 0px 15px 0px;
    position: relative;
}
.our-spaces .group .card h4{
    font-size: 18px;
    color: var(--brown);
    font-weight: 600;
    line-height: 26px;
    width: 100%;
    opacity: 0.9;
    margin-bottom: 20px;
}
.our-spaces .group .card p{
    font-size: 16px;
    color: var(--brown);
    font-weight: 400;
    line-height: 24px;
    width: 90%;
    opacity: 0.9;
}
.why-us {
    margin: 170px 20px;
}
.why-us span{
    display: flex;
    gap: 8px;
    align-items: center;
    color: var(--brown);
    font-weight: 500;
    font-size: 14px;
    background-color: #3c211724;
    width: fit-content;
    padding: 10px 12px 10px 12px;
    border-radius: 30px;
    font-family: var(--inter);
    letter-spacing: -0.2px;
}
.why-us .header span img{
    width: 16px;
}
.why-us .header h3 {
    font-size: 40px;
    font-family: var(--chunk);
    color: var(--brown);
    font-weight: 100;
    width: 90%;
    margin: 30px 0px 15px ;
}
.why-us .header p {
    font-size: 16px;
    color: var(--brown);
    font-weight: 400;
    line-height: 24px;
    width: 90%;
    opacity: 0.9;
    opacity: 0.75;
    font-family: var(--google);
}
.why-us .reasons {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    flex-wrap: wrap;
}
.why-us .reasons .card {
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    background-color: var(--bg-sec);
    border-radius: 35px;
}
.why-us .reasons .card h4{
    font-size: 25px;
    font-family: var(--sundae);
    color: var(--brown);
    font-weight: normal;
    width: 100%;
    margin: 10px 0px 0px 0px;
}
.why-us .reasons .card p {
    width: 100%;
    margin-top: -10px !important;
    font-size: 16px;
    line-height: 24px;
}
.why-us .reasons .card span {
    height: 50px;
    width: 50px;
    background-color: var(--brown);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.why-us .reasons .card span img {
    width: 22px;
    fill: var(--bg-color);
}

.testimonials {
    background-color: var(--bg-sec);
    padding: 100px 20px;
    border-radius: 30px 30px 0px 0px;
    position: relative;
}

.testimonials .main .header span {
    display: flex;
    gap: 8px;
    align-items: center;
    color: var(--brown);
    font-weight: 500;
    font-size: 14px;
    background-color: rgba(60, 33, 23, 0.141);
    width: fit-content;
    padding: 10px 12px 10px 12px;
    border-radius: 30px;
    font-family: var(--inter);
    letter-spacing: -0.2px;
}

.testimonials .main .header span img {
    width: 16px;
}

.testimonials .main .header h3 {
    font-size: 40px;
    font-family: var(--chunk);
    color: var(--brown);
    font-weight: 100;
    width: 90%;
    margin: 30px 0px 15px;
}

.testimonials .main .header p {
    font-size: 16px;
    color: var(--brown);
    font-weight: 400;
    line-height: 24px;
    width: 90%;
    opacity: 0.9;
    margin-bottom: 50px;
    opacity: 0.75;
}

.testimonials-wrapper {
    display: flex;
    gap: 30px;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
}

.testimonials-wrapper::-webkit-scrollbar {
    display: none;
}

.testimonials-wrapper.dragging {
    cursor: grabbing;
    scroll-snap-type: none;
}

/* fixed: was .testimonials .testimonial (didn't match your HTML) */
.testimonials-wrapper .testimonial {
    padding: 35px 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 0 0 calc((100% - 60px) / 3);
    /* 3 visible, 2 gaps of 30px */
    background-color: var(--bg-color);
    border-radius: 40px;
    height: fit-content;
    scroll-snap-align: start;
}

@media (max-width: 1024px) {
    .testimonials-wrapper .testimonial {
        flex: 0 0 calc((100% - 30px) / 2);
        /* 2 visible */
    }
}

    .testimonials-wrapper .testimonial {
        flex: 0 0 88%;
        /* 1 + peek */
        padding: 28px 24px;
        border-radius: 40px;
        gap: 24px;
    }

.testimonial span {
    padding: 12px 12px;
    width: fit-content;
    background-color: var(--bg-sec);
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 20px;
}

.testimonial p {
    width: 95%;
    font-size: 18px;
    color: var(--brown);
    font-weight: 400;
    line-height: 30px;
    opacity: 0.75;
    margin-bottom: 20px;
}

.testimonial h4 {
    border-top: 1px solid #2717112b;
    font-size: 30px;
    font-family: var(--sundae);
    color: var(--brown);
    font-weight: normal;
    width: 100%;
    padding-top: 20px;
}

.testimonial p:nth-child(4) {
    margin-top: -10px;
    margin-bottom: 0px;
}

/* dots — identical to the corner section */
.testimonials-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
}

.testimonials-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: width 300ms ease, background 300ms ease, opacity 300ms ease;
}

.testimonials-dots .dot.active {
    width: 26px;
    border-radius: 6px;
    background: #562731 !important;
}
.visit-us {
    padding: 100px 20px;
    overflow: hidden;
    position: relative;
    border-radius: 0px 0px 60px 60px;
    background-color: #000000;
}

.visit-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/IMG_0395.webp);
    background-size: cover;
    background-position: center;
    opacity: 0.6;
}

.visit-us::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: linear-gradient(to bottom,
            #271711,
            #2717117b,
            #c899484b,
            #c8994820,
            #c899484b,
            #2717117b,
            #271711);
    opacity: 0.9;
    z-index: 1;
}
.visit-us .main {
    position: relative;
    z-index: 2;
}
.visit-us .main .header span {
    display: flex;
    gap: 8px;
    align-items: center;
    color: var(--bg-color);
    font-weight: 500;
    font-size: 14px;
    background-color: #fbfaf824;
    width: fit-content;
    padding: 10px 12px 10px 12px;
    border-radius: 30px;
    font-family: var(--inter);
    letter-spacing: -0.2px;
}

.visit-us .main .header span img {
    width: 16px;
}

.visit-us .main .header h3 {
    font-size: 40px;
    font-family: var(--chunk);
    color: #ffffff;
    font-weight: normal;
    width: 90%;
    margin: 30px 0px 15px 0px;
    position: relative;
}

.visit-us .main .header p {
    font-size: 16px;
    color: #ffffff;
    font-weight: 400;
    line-height: 24px;
    width: 90%;
    opacity: 0.9;
    margin-bottom: 50px;
    font-family: var(--google);
}
.visit-content {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    gap: 30px;
}
.visit-container {
    background-color: rgba(251, 250, 248, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 40px;
    padding: 50px 25px 25px 25px;
    width: 100%;
}
.visit-container .left {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.visit-container .left span {
    background-color: var(--bg-sec);
    padding: 10px 12px;
    font-family: Inter;
    display: flex;
    gap: 8px;
    align-items: center;
    border-radius: 30px;
    width: fit-content;
    color: #562731;
    font-weight: 500;
    margin-bottom: 25px;
    font-size: 14px;
    letter-spacing: -0.2;
}
.visit-container .left span img {
    width: 15px;
}
.visit-container .left p {
    font-size: 18px;
    color: #271711;
    font-weight: 400;
    line-height: 28px;
    opacity: 0.9;
    font-family: var(--google);
    font-weight: 500;
}
.visit-container .left .location p {
    width: 95%;
    font-weight: 500;
}
.visit-container .left .opening-hours {
    margin-top: 20px;
}
.visit-container .left .hours {
    display: flex;
    flex-wrap: wrap;
    gap: 0px;
    align-items: start;
}
.visit-container .left .hours span{
    display: flex;
    flex-direction: column;
    gap: 8px;
    background-color: transparent;
    align-items: start;
    padding: 0px 40px 0px 0px;
}
.visit-container .left .hours span p:nth-child(1) {
    font-size: 16px;
    color: #271711;
    opacity: 0.75;
}
.visit-content .map{
    width: 100%;
    padding: 20px 20px 50px 20px;
    height: 100%;
    background-color: #271711;
    /* background-color: #fbfaf8cc; */
    border-radius: 40px;
    backdrop-filter: blur(20px);
}
.visit-content .map iframe {
    width: 100%;
    height: 360px;
    border-radius: 30px;
    border: none;
}
.visit-container .contact-btns {
    display: flex;
    gap: 14px;
    width: 100%;
    margin-top: 50px;
    flex-wrap: wrap;
}
.visit-container .contact-btns button{
    display: flex;
    gap: 10px;
    background-color: #562731;
    color: var(--bg-sec);
    font-size: 16px;
    font-family: var(--google);
    align-items: center;
    width: calc(50% - 7px);
    border: none;
    height: 55px;
    border-radius: 40px;
    justify-content: center;
}
.visit-container .contact-btns button:nth-child(1) {
    width: 100%;
}
.visit-container .contact-btns button img {
    width: 22px;
}
.map .cta{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    margin: 30px 10px 0px 10px ;
}
.map .cta img {
    width: 70px;
}
.map .cta button {
    background-color: var(--bg-color);
    color: var(--brown);
    font-size: 16px;
    height: 50px;
    width: 160px;
    border: none;
    border-radius: 50px;
    font-family: var(--google);
    font-weight: 500;
}
.footer {
    background-color: #1b1b1b;
    padding: 130px 20px 50px 20px;
    /* border-radius: 60px 60px 100px 100px; */
    /* padding-left: calc(1920px - 1800px + 60px);
    padding-right: calc(1920px - 1800px + 60px); */
    display:flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: -60px;
    width: 100%;
    position: relative;
    z-index: -1;
}
.footer > .top {
    display:flex;
    justify-content: space-between;
    width: 100%;
    flex-wrap: wrap;
    gap: 50px;
}
.footer .summary { 
    margin-right: 0px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-bottom: 2px solid #fbfaf815;
    padding-bottom: 20px;
    width: 100%;
}
.footer .summary .top {
    display: flex;
    flex-direction: row;
    gap: 15px;
    align-items: start;
}
.footer .summary img { 
    width: 60px;
    margin-bottom: 15px;
}
.footer .summary h3 { 
    font-size: 23px;
    font-family: var(--chunk);
    font-weight: 100;
    color: var(--bg-color);
    margin-bottom: 8px;
    margin-top: -2px;
    /* -webkit-text-stroke: 0.5px #1b1b1b; */
}
.footer .summary p { 
    font-size: 13px;
    font-family: var(--google);
    font-weight: 500;
    color: var(--gold);
    margin-bottom: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
.footer div {
    width: 90%;
}
.footer div h4 {
    font-size: 22px;
    font-family: var(--chunk);
    font-weight: normal;
    color: var(--bg-color);
    margin-bottom: 8px;
    /* -webkit-text-stroke: 0.5px #1b1b1b; */
    margin-bottom: 25px;
}
.footer div ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.footer div li {
    font-size: 17px;
    color: #fbfaf875;
    transition: 400ms;
    cursor: pointer;
}
.footer div li:hover {
    color: var(--gold);
}
.footer .bottom {
    display: flex;
    flex-direction: column;
    gap: 5px;
    justify-content: space-between;
    width: 100%;
    padding-top: 30px;
    margin-top: 100px;
    border-top: 2px solid #fbfaf815;
}
.footer .bottom p{
    font-size: 14px;
    color: #fbfaf875;
}
.footer .summary .socials {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    position: absolute;
    bottom: 150px;
}
.footer .summary .socials span {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #333333;
    height: 40px;
    width: 40px;
    border-radius: 50%;
}
.footer .summary .socials span img {
    height: 18px;
    margin-bottom: 0px;
}
/* .footer .footer-nav, .footer .business {
    width: calc(50% - 25px);
} */
}