/* 🎨 CSS Root Variables (Custom Properties)
   -------------------------------------------------
   - These define reusable design tokens (colors,fonts,line heights,etc.) 
     for the whole website, stored in :root (global scope).
   
   ✅ Why useful?
   - Makes design consistent (same color used everywhere).
   - Easy to update (change value in one place = updated globally).
   - Improves readability & maintainability of code.

   💡 Best Practice:
   - Load all brand/theme colors here at the start.
   - Then reuse them across CSS instead of hardcoding colors.
   - Helps maintain brand identity and reduces errors.
*/

@import url('https://fonts.googleapis.com/css2?family=Bree+Serif&family=Comic+Relief:wght@400;700&family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&family=Lora:ital,wght@0,400..700;1,400..700&family=Merriweather+Sans:ital,wght@0,300..800;1,300..800&family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair+Display+SC:ital,wght@0,400;0,700;0,900;1,400;1,700;1,900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&family=Roboto:ital,wght@0,100..900;1,100..900&family=Rokkitt:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    /* brand colors */
    --gold-crayola: #e4c590;
    --quick-silver: hsla(0, 0%, 65%, 1);
    --davys-grey: hsla(30, 3%, 34%, 1);
    --smoky-black-1: hsla(40, 12%, 5%, 1);
    --smoky-black-2: hsla(30, 8%, 5%, 1);
    --smoky-black-3: hsla(0, 3%, 7%, 1);
    --eerie-black-1: #161718;
    --eerie-black-2: hsla(210, 4%, 11%, 1);
    --eerie-black-3: hsla(180, 2%, 8%, 1);
    --eerie-black-4: hsla(0, 0%, 13%, 1);
    --white: hsla(0, 0%, 100%, 1);
    --white-alpha-20: hsla(0, 0%, 100%, 0.2);
    --white-alpha-10: hsla(0, 0%, 100%, 0.1);
    --black: hsla(0, 0%, 0%, 1);
    --black-alpha-80: hsla(0, 0%, 0%, 0.8);
    --black-alpha-15: hsla(0, 0%, 0%, 0.15);

    /* brand gradients */
    --loading-text-gradient: linear-gradient(90deg, transparent 0% 16.66%, var(--smoky-black-3) 33.33% 50%, transparent 66.66% 75%);
    --gradient-1: linear-gradient(to top, hsla(0, 0%, 0%, 0.9), hsla(0, 0%, 0%, 0.7), transparent);

    /* brand fonts */
    --fontFamily-forum: 'Forum', cursive;
    --fontFamily-dm_sans: 'DM Sans', sans-serif;

    --fontSize-display-1: calc(1.3rem + 6.7vw);
    --fontSize-headline-1: calc(2rem + 2.5vw);
    --fontSize-headline-2: calc(1.3rem + 2.4vw);
    --fontSize-title-1: calc(1.6rem + 1.2vw);
    --fontSize-title-2: 2.2rem;
    --fontSize-title-3: 2.1rem;
    --fontSize-title-4: calc(1.6rem + 1.2vw);
    --fontSize-body-1: 2.4rem;
    --fontSize-body-2: 1.6rem;
    --fontSize-body-3: 1.8rem;
    --fontSize-body-4: 1.6rem;
    --fontSize-label-1: 1.4rem;
    --fontSize-label-2: 1.2rem;

    /* brand font-weight */
    --weight-regular: 400;
    --weight-bold: 700;

    /* brand line-height */
    --lineHeight-1: 1em;
    --lineHeight-2: 1.2em;
    --lineHeight-3: 1.5em;
    --lineHeight-4: 1.6em;
    --lineHeight-5: 1.85em;
    --lineHeight-6: 1.4em;

    /* brand spacing */
    /* letter-spacing */
    --letterSpacing-1: 0.15em;
    --letterSpacing-2: 0.4em;
    --letterSpacing-3: 0.2em;
    --letterSpacing-4: 0.3em;
    --letterSpacing-5: 3px;
    /* section-spacing */
    --section-space: 70px;

    /* brand shadow */
    --shadow-1: 0px 0px 25px 0px hsla(0, 0%, 0%, 0.25);

    /* brand radius */
    --radius-24: 24px;
    --radius-circle: 50%;

    /* brand transition*/
    --transition-1: 250ms ease;
    --transition-2: 500ms ease;
    --transition-3: 1000ms ease;



}

ul {
    list-style: none;
}

html {
    scroll-behavior: smooth;
}

/* Reset margins/padding globally and include ::before/::after so pseudo-elements inherit box-sizing and stay consistent */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: playfair display;



}

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: hsl(38, 61%, 73%);
}

::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 8px;
}

::-webkit-scrollbar-thumb {
    background: hsla(38, 61%, 73%, 0.5);
    border-radius: 8px;
    border: 2px solid #1a1a1a;
}

body {
    background-color: var(--eerie-black-1);
    color: white;
    font: monsterrat;
    overflow-x: hidden;
    position: relative;

}

/*#opener {
    width: 100vw;
    height: 100dvh;
    overflow: hidden;
    position: absolute;
}

#opener video {
    position: relative;
    width: 100%;
    height: 100%;
    scale: 1.1;
    object-fit: cover;
    object-position: center;
    z-index: 10;
}*/

.top-bar {
    display: none
}

nav {
    height: clamp(48px, 6.5vw, 56px);
    position: fixed;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 clamp(11px, 2.5vw, 16px) 0 clamp(16px, 2.5vw, 20px);
    margin: 0;
    z-index: 4;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent);
    transition: transform 0.4s cubic-bezier(0, 0, 0.2, 1), opacity 0.4s cubic-bezier(0, 0, 0.2, 1);
}

nav.hide {
    transform: translateY(-100%);
    opacity: 0;
}

.logo img {
    height: 100%;
    width: auto;
    display: block;
    max-width: 100%;
}

.tap-target {
    width: clamp(44px, 6vw, 56px);
    height: clamp(44px, 6vw, 56px);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon {
    width: clamp(24px, 3vw, 32px);
    height: clamp(24px, 3vw, 32px);
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.7));
    color: white;
}

.nav-bar {
    list-style: none;
    display: flex;
    flex-direction: column;
    width: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: var(--eerie-black-1);
    transform: translateX(-100%);
    position: fixed;
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    opacity: 0;
    z-index: 10;
    overflow: auto;
    height: 100vh;
}

.nav-bar .nav-content li:first-child {
    border-block-start: 1px solid rgba(112, 112, 112, 0.8);
}

.nav-bar.menu-open {
    transform: translateX(0);
    opacity: 1;
}

.nav-bar.menu-close-animation {
    transition: transform 0.6s ease-in;
}

nav .logo {
    height: clamp(28px, 4vw, 32px);
    width: auto;
}

.menu-top {
    height: clamp(48px, 6.5vw, 56px);
    padding: clamp(8px, 2vh, 12px) clamp(11px, 2.5vw, 16px) clamp(16px, 2.5vw, 20px) clamp(16px, 2.5vw, 20px);
    margin: clamp(16px, 2.5vw, 24px) 0;
    display: flex;
    align-items: center;
    justify-content: space-between;

}

.menu-top .nav-logo {
    height: clamp(28px, 4vw, 32px);
    width: auto;
}

.menu-top .tap-target-close {
    width: clamp(44px, 6vw, 56px);
    height: clamp(44px, 6vw, 56px);
    border-radius: 2px;
    display: flex;
    justify-content: center;
}

.menu-top .nav-logo img {
    height: 100%;
    width: auto;
    display: block;
    color: black;
    align-self: flex-start;
}

.menu-top .close-button {
    width: clamp(24px, 3vw, 32px);
    height: clamp(24px, 3vw, 32px);
    color: rgb(138, 138, 138);
    font-size: 0.5rem;
    border: 1px solid rgb(138, 138, 138);
    border-radius: 50%;
}

.nav-bar li {
    position: relative;
    transition: color 0.3s ease-out;
}

.nav-bar a {
    text-decoration: none;
    color: inherit;
    z-index: 1;
    font-size: 1rem;
}

.nav-content {
    padding: clamp(16px, 2.5vw, 20px);
}

.nav-content .nav-bar-items {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    max-height: clamp(44px, 6vw, 56px);
    padding-block: clamp(8px, 2.5vw, 12px);
    font-size: clamp(1rem, 2.5vw, 1.15rem);
    font-weight: 300;
    line-height: 1.5;
    border-block-end: 1px solid rgba(112, 112, 112, 0.8);
}

.nav-content .nav-bar-items.active {
    color: var(--gold-crayola);
    scale: 1.02;
}

.nav-content .nav-bar-items span {
    display: inline-block;
    position: relative;
}

.mobile-menu-bottom {
    margin-block-start: auto;
    margin-block-end: 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.mobile-menu-bottom p:first-child,
.mobile-menu-bottom p:nth-last-child(2) {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    font-weight: 500;
    margin-block: clamp(8px, 2vw, 12px)
}

.make-lighter {
    font-size: clamp(14px, 3.5vw, 16px);
    font-weight: 300;
    line-height: 1.5;
    word-break: break-word;
}

.mobile-menu-bottom .colorise {
    color: var(--gold-crayola);
    margin-block-end: 8px;
}

.separator {
    width: 10px;
    height: 10px;
    transform: rotate(45deg);
    border: 1px solid var(--gold-crayola);
}

.mobile-menu-bottom .separator {
    margin-block: 12px;
}

.navCta {
    display: none;
}



@keyframes bgImgAnimation {
    0% {
        opacity: 0;
        transform: scale(1);
    }

    10% {
        opacity: 1;
    }

    100% {
        transform: scale(1.2);
    }
}

@keyframes staggerAnimation {
    0% {
        transform: translateY(16px);
        opacity: 0;
        scale: 1;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
        scale: 1;
    }
}

@keyframes buttonStaggerAnimation {
    0% {
        transform: translateY(-34px);
        opacity: 0;
    }

    100% {
        transform: translateY(-50px);
        opacity: 1;
    }
}

@keyframes shineMove {
    0% {
        left: -150%;
    }

    100% {
        left: 150%;
    }
}

.background {
    position: absolute;
    z-index: -1;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
}

.bgImages {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    object-fit: cover;
    object-position: center;
    pointer-events: none;
    filter: brightness(90%) contrast(90%);
}

.bgImages.active {
    opacity: 1;
    animation: bgImgAnimation 6s ease-out forwards;
}

.bgImgChanger {
    position: absolute;
    display: none;
    top: 50vh;
}

main {
    position: relative;
}

.hero {
    padding-inline: clamp(16px, 2.5vw, 20px);
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-block-end: clamp(48px, 8vw, 96px);
}

.hero .blackGradient {
    height: 100%;
    position: absolute;
    width: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 40%, var(--eerie-black-1) 100%);
}

.hero .textContent {
    transform: translateY(-50px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    width: 100%;
    padding-inline: clamp(16px, 2.5vw, 24px);
}

.hero .hero-title {
    font-size: clamp(30px, 5.8vw, 52px);
    font-weight: 50;
    font-family: playfair display sc;
    letter-spacing: 4px;
    word-spacing: 6px;
    width: 100%;
    color: white;
    text-wrap: wrap;
    padding: 0;
    line-height: 1.2;
    font-weight: 500;
    margin-block: 20px 12px;
    opacity: 0;
    animation: staggerAnimation 600ms cubic-bezier(0, 0, 0.2, 1) forwards;
    animation-delay: 4200ms;
}

.hero .hero-subtitle {
    font-size: clamp(16px, 3.2vw, 32px);
    color: rgb(153, 153, 153);
    word-spacing: 0.5px;
    font-weight: 100;
    line-height: 1.4;
    opacity: 0;
    animation: staggerAnimation 350ms cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: 4500ms;
}

.hero .supportive-text {
    opacity: 0;
    font-size: clamp(12px, 2.5vw, 14px);
    margin-block: 16px 12px;
    letter-spacing: 8px;
    color: hsl(38, 27%, 64%);
    font-family: playfair;
    font-weight: 100;
    animation: staggerAnimation 200ms cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: 3600ms;
}

.hero .separatorImg {
    height: 10px;
    width: auto;
    opacity: 0;
    animation: staggerAnimation 100ms ease-out forwards;
    animation-delay: 3900ms;
}

.hero .heroCta {
    height: clamp(44px, 7vw, 64px);
    border-radius: 4px;
    font-size: clamp(16px, 2vw, 18px);
    padding: clamp(16px, 2.5vw, 24px);
    margin-top: clamp(24px, 5vw, 48px);
    text-align: center;
    font-family: playfair;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    letter-spacing: 2px;
    font-weight: 700;
    background-color: var(--gold-crayola);
    color: var(--eerie-black-1);

    flex: 0 0 auto;
    width: fit-content;
    align-self: center;

    border: none;

    transform: translateY(-50px);
    opacity: 0;
    animation: buttonStaggerAnimation 350ms cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: 4800ms;
    transition: all 0.1s ease-out;
}

.hero .heroCta:hover {
    color: var(--gold-crayola);
    background-color: transparent;
    border: 2px solid var(--gold-crayola);
    transform: translateY(-8px);
    scale: 1.04;
    cursor: pointer;
}

.hero .heroCta:active {
    color: var(--gold-crayola);
    background-color: transparent;
    border: 2px solid var(--gold-crayola);
    transform: translateY(-8px);
    scale: 0.98;
}

.hero .menu-highlights:hover {
    scale: 1.02;
    cursor: pointer;
}

.hero .menu-highlights:active {
    transform: translateY(-8px);
    scale: 0.98;
}

.menu-highlights {
    border: none;
    text-decoration: underline;
    text-underline-offset: 2px;
    background-color: transparent;
    font-size: clamp(12px, 2vw, 16px);
    letter-spacing: 0.5px;
    border-radius: 4px;
    color: var(--gold-crayola);
    padding: clamp(12px, 2.5vw, 20px);
    margin-top: clamp(4px, 2vw, 8px);
    transform: translateY(-46px);
    opacity: 0;
    animation: buttonStaggerAnimation 350ms cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: 5000ms;
}


.separatorImg {
    height: 10px;
    width: auto;
    opacity: 0;
    animation: staggerAnimation 100ms ease-out forwards;
    animation-delay: 800ms;
}

a {
    cursor: pointer
}





.service {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-block: clamp(48px, 8vw, 96px);
    padding-inline: clamp(16px, 2.5vw, 20px);
    text-align: center;

}

.service .card-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service .card-container .cards {
    width: clamp(320px, 60vw, 600px);
    background-color: rgb(19, 19, 19);
    height: auto;
    position: relative;
    margin-block: 20px;
    display: flex;
    align-items: center;
    flex-direction: column;
    padding-block: 8px;
    border-radius: 8px;
    box-shadow:
        0 6px 12px rgba(0, 0, 0, 0.65),
        0 2px 6px rgba(255, 255, 255, 0.08);
    overflow: hidden;
    transition: background-color 400ms ease-out, transform 0.3s ease-out, box-shadow 0.3s ease-out, scale 0.3s ease-out;

}

.service .card-container .cards::after {
    position: absolute;
    content: '';
    top: 0;
    left: -200%;
    width: 200%;
    height: 100%;
    background: linear-gradient(100deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.06) 45%,
            rgba(255, 255, 255, 0.15) 50%,
            rgba(255, 255, 255, 0.06) 55%,
            rgba(255, 255, 255, 0) 100%);
    transform: skewX(-15deg);
    pointer-events: none;
    z-index: 10;
}

.service .card-container .cards .patternImgContainer {
    width: 96%;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.service .card-container .cards .serviceImg {
    width: 100%;
    height: auto;
    border-radius: 8px;
    transition: scale 0.3s ease-out;
}

.service .card-container .cards .patternImg {
    height: 50%;
    opacity: 0.3;
    z-index: -1;
}

.service .card-title {
    color: var(--gold-crayola);
    font-family: playfair display;
    font-size: clamp(24px, 3.2vw, 36px);
    font-weight: 400;
    padding-bottom: 8px;
    letter-spacing: 2px;
    transition: scale 0.3s ease-out;
}

.service .card-link {
    color: rgb(185, 185, 185);
    text-underline-offset: 2px;
    font-family: montserrat;
    font-size: clamp(8px, 3vw, 16px);
    letter-spacing: -0.5px;
    transition: scale 0.3s ease-out;
    background-color: transparent;
    border: none;
    text-decoration: underline;
}

.service .card-container .cards.hovered {
    background-color: rgb(12, 12, 12);
    transform: translateY(-4px);
    box-shadow:
        0 12px 24px rgba(0, 0, 0, 0.7),
        0 4px 12px rgba(255, 255, 255, 0.08);
    scale: 1.02;
}

.service .card-container .cards.hovered::after {
    animation: shineMove 1.2s forwards;
}

.service .card-container .cards.hovered .serviceImg {
    scale: 1.04;
}

.service .card-container .cards.hovered .card-title {
    scale: 1.02;
}

.service .card-container .cards.hovered .card-link {
    scale: 1.01;
}

.top-text {
    font-size: clamp(12px, 2.5vw, 14px);
    margin-block: 16px 12px;
    letter-spacing: 8px;
    color: hsl(38, 27%, 64%);
    font-family: playfair;
    font-weight: 100;
}

.section-subtitle {
    font-size: clamp(16px, 3.2vw, 32px);
    color: rgb(153, 153, 153);
    word-spacing: 0.5px;
    font-weight: 100;
    line-height: 1.4;

}

.section-title {
    font-size: clamp(30px, 5.8vw, 52px);
    font-family: playfair display sc;
    letter-spacing: 4px;
    word-spacing: 2px;
    width: 100%;
    color: white;
    text-wrap: wrap;
    padding: 0;
    line-height: 1.2;
    font-weight: 500;
    margin-block: 20px 12px;
}

.service .card-container {
    margin-block: 16px;
}

.service .cards:hover button:hover {
    color: whitesmoke;
}

.service .cards:hover button:actve {
    color: rgb(231, 231, 231);
}

.service .modalsContainer {
    position: fixed;
    top: 4%;
    left: 5%;
    width: 90vw;
    height: 90vh;
    overflow: hidden;
    z-index: 10;
    box-shadow:
        0 12px 24px rgba(0, 0, 0, 0.7),
        0 4px 12px rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    opacity: 0;
    pointer-events: none;
}

.service .modalsContainer[style*="opacity: 1"] {
    pointer-events: auto;
}

.service .modals {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-inline: clamp(16px, 2.5vw, 20px);
    justify-content: flex-start;
    background-color: rgb(12, 12, 12);
    overflow-y: auto;
}

.service .modals::-webkit-scrollbar {
    display: none;
}

.service .modalMenuItem {
    display: flex;
    border-block-end: 1px solid rgba(112, 112, 112, 0.6);
    gap: clamp(20px, 3.4vw, 32px);
    padding-block: clamp(16px, 2.5vw, 20px);
}

.service .modalMenuItem:last-child {
    border: none;
}

.service .menuItemContent {
    font-family: playfair;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-start;
    padding-block-start: 0px;
}

.service .menuItemContent .ingredients {
    text-align: left;
    color: rgb(153, 153, 153);
}

.service .modals .menuTitle {
    font-size: clamp(30px, 5.8vw, 52px);
    font-weight: 300;
    font-family: playfair display;
    letter-spacing: 4px;
    word-spacing: 2px;
    width: 100%;
    color: var(--gold-crayola);
    text-wrap: wrap;
    padding: 0;
    line-height: 1.2;
    font-weight: 500;
    margin-block: 20px 10px;

}

.service .modals .price {
    color: var(--gold-crayola);
}

.service .modals .dishTitle {
    color: rgb(196, 196, 196);
    font-family: playfair
}

.service .modals .menuItemImg {
    padding-block-start: clamp(4px, 1.5vw, 8px);
}

.service .modals .separatorImage {
    height: 10px;
    opacity: 0.3;
    margin-block-end: clamp(20px, 4vw, 32px);
}

.service .modals .modal-tap-target-close {
    top: 8px;
    right: 8px;
    position: absolute;
    opacity: 0.3;
}






.about-us {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    margin-block: clamp(48px, 8vw, 96px);
    margin-block-end: 0px;
    padding-block: clamp(48px, 8vw, 96px);
    padding-inline: clamp(16px, 2.5vw, 20px);
    text-align: center;
    background-color: #0c0c0c;
    min-height: 100vh;
}

.separatorImage {
    height: 10px;
    width: auto;
}

.about-us .about-content {
    margin-block: clamp(28px, 3.2vw, 48px);
    font-size: clamp(18px, 3.2vw, 34px);
    color: rgb(207, 207, 207);
    font-weight: 100;
    text-align: center;
    padding-inline: clamp(20px, 2.5vw, 28px);
}

.about-us .imgContainer {
    display: flex;
    margin-block-start: 4px;
    margin-block-end: 16px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    justify-self: center;
    height: auto;
    width: 80vw;
    aspect-ratio: 3/2;
}

.about-us .section-subtitle {
    margin-block-end: 4px;
}

.about-us .underImg {
    object-fit: contain;
    mask-image: url("../Images/mask-img.png");
    mask-position: center;
    mask-repeat: no-repeat;
    border-radius: 8px;
    mask-size: 50%;
    width: 80vw;
}

.about-us .fading-title {
    font-size: clamp(20px, 5.8vw, 42px);
    font-weight: 50;
    font-family: playfair display sc;
    letter-spacing: 4px;
    word-spacing: 2px;
    width: 100%;
    color: rgb(207, 207, 207);
    text-wrap: wrap;
    padding: 0;
    line-height: 1.2;
    font-weight: 500;
    margin-block: 10px 8px;
}

.about-us .masked-container {
    position: relative;
}

.about-us .masked-title {
    top: 0;
    font-size: clamp(20px, 5.8vw, 42px);
    font-weight: 50;
    font-family: playfair display sc;
    letter-spacing: 4px;
    word-spacing: 2px;
    width: 100%;
    color: rgb(207, 207, 207);
    text-wrap: wrap;
    padding: 0;
    line-height: 1.2;
    font-weight: 500;
    position: absolute;
}

.about-us .masked-subtitle {
    color: rgb(153, 153, 153);
    font-weight: 300;
}

.masked-content {
    opacity: 0;
}

.about-us .will-appear {
    opacity: 0;
}





.specialties {
    display: flex;
    justify-content: center;
    flex-direction: column;
    background-color: rgb(12, 12, 12);
    padding-block: clamp(48px, 8vw, 96px);
    padding-inline: clamp(16px, 2.5vw, 20px);
}

.specialties .sectionTop {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.specialties .sectionTop .section-title {
    margin-block: clamp(48px, 8vw, 96px);
    font-family: playfair display sc;
}

.specialties .features {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.specialties .features .feature {
    margin-block: clamp(28px, 4vw, 36px);
    width: clamp(320px, 60vw, 600px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: clamp(16px, 4vw, 24px);
    transition: scale 500ms cubic-bezier(0.25, 0.8, 0.25, 1);
}

.specialties .features .feature .featureTitle {
    font-size: clamp(20px, 5.8vw, 42px);
    margin-block: clamp(8px, 2vw, 12px);
    font-weight: 500;
    color: rgb(230, 230, 230);
}

.specialties .features .feature .featureDescription {
    font-size: clamp(14px, 5.8vw, 16px);
    color: rgb(180, 180, 180);
    padding-inline: clamp(8px, 4vw, 16px);
}





.reservation {
    display: flex;
    flex-direction: column;
    padding-inline: clamp(16px, 2.5vw, 20px);
    font-family: playfair;
    position: relative;
}

.reservationSection {
    padding-block: clamp(48px, 8vw, 96px);
    min-height: 100vh;
    display: flex;
    justify-content: center;

}

.reservationSection .quicker {
    color: rgb(199, 199, 199);
    font-size: 20px;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.reservationSection .or {
    margin-block: 8px;
    color: rgb(168, 168, 168);
}

.highlightIt {
    color: var(--gold-crayola);
}

.reservationSection .fillform {
    color: rgb(201, 201, 201);
    font-size: 20px;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.reservation p {
    color: rgb(196, 196, 196);
}

.reservation .top-text {
    font-size: clamp(12px, 2.5vw, 14px);
    letter-spacing: 4px;
    color: hsl(38, 27%, 64%);
    font-family: playfair;
    font-weight: 100;
}

.reservation .phoneNo {
    color: var(--gold-crayola);
    opacity: 80%;
    text-underline-offset: 2px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.reservation .reservationForm .formTop {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.reservation .preForm {
    text-align: center;
    margin-block: 12px;
}

.reservation .formTitle {
    font-size: clamp(36px, 6.5vw, 60px);
    color: whitesmoke;
    font-family: playfair display sc;
    font-weight: 500;
    margin-block: 20px 32px;
}

.reservationSection .underlay {
    height: 100%;
    left: 0;
    top: 0;
    overflow-y: hidden;
    width: 100%;
    position: absolute;
    background-image: url(../Images/form-pattern.png);
    z-index: -1;
    background-repeat: repeat;
    opacity: 50%;
}

.reservation .reservationForm {
    margin-block: clamp(24px, 4vw, 32px);
    padding-block: clamp(8px, 2vw, 16px);
    background-color: rgb(12, 12, 12);
    border-radius: 8px;
    box-shadow:
        0 6px 12px rgba(0, 0, 0, 0.8),
        0 2px 6px rgba(255, 255, 255, 0.08);
}

.reservationSection .details {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    align-items: center;
    margin-block: 24px;
}

.reservation .labelInput {
    font-family: playfair;
    display: flex;
    flex-direction: column;
    font-size: 16px;
    justify-content: space-between;
    gap: clamp(4px, 1.5vw, 8px);
    padding: clamp(8px, 5.8vw, 12px) clamp(16px, 3vw, 24px);
}

.reservation .reservationForm .formLabels {
    width: max-content;
}

.reservation .reservationForm label {
    color: rgb(196, 196, 196);
    font-size: 16px;
    padding-left: 4px;
}

.reservation .reservationForm .formInputField {
    border-radius: 4px;
    background-color: var(--eerie-black-1);
    padding: 16px 8px;
    font-family: monsterrat;
    font-size: 16px;
    height: 44px;
    border: none;
    color: rgb(196, 196, 196);
    outline: none;
    fill: var(--gold-crayola);
}

.reservation .reservationForm .formInputField:active {
    border: 1px solid var(--gold-crayola);
}

.reservation .reservationForm .formInputField:focus {
    border: 1px solid var(--gold-crayola);
}

.reservation .reservationForm textarea:active {
    border: 1px solid var(--gold-crayola);
}

.reservation .reservationForm textarea:focus {
    border: 1px solid var(--gold-crayola);
}

.reservation .reservationForm textarea {
    border-radius: 4px;
    background-color: var(--eerie-black-1);
    padding: 16px 8px;
    font-family: monsterrat;
    font-size: 16px;
    border: none;
    color: rgb(196, 196, 196);
    outline: none;
    height: clamp(120px, 18vw, 160px);
}

.reservation .reservationForm .cta {
    background-color: var(--gold-crayola);
    padding-block: clamp(16px, 3vw, 24px);
    font-size: clamp(24px, 3vw, 32px);
    font-family: playfair;
    font-weight: 600;
    color: var(--eerie-black-1);
    letter-spacing: 4px;
    border: none;
    border-radius: 4px;
}

.reservation .reservationForm .formSelectField {
    background-color: var(--eerie-black-1);
    color: rgb(196, 196, 196);
    border: none;
    outline: none;
    height: 44px;
    font-family: monsterrat;
    padding-inline-start: 8px;
    font-size: 16px;
}

.reservation .reservationForm option:active {
    background-color: var(--eerie-black-1);
    color: var(--gold-crayola);
}

.reservation .reservationForm option:focus {
    background-color: var(--eerie-black-1);
    color: var(--gold-crayola);
    /* font-family: montserrat; */
}

.reservationModal .form {
    width: 100%;
    margin-block: clamp(12px, 4vw, 28px);
    padding-block: clamp(4px, 2vw, 12px);
}

.reservationModal .formtop {
    margin-block: clamp(16px, 4vw, 28px);
}

.reservationModal .extra {
    font-size: clamp(18px, 2.2vw, 22px);
}

.reservationModal .extra .callUs {
    color: rgb(180, 180, 180);
    margin-bottom: 8px;

}

.reservationModal .extra .or {
    margin-block: 4px;
    font-size: clamp(8px, 3vw, 16px);
    color: rgb(148, 148, 148);
}

.reservationModal .extra .fillForm {
    color: rgb(221, 221, 221);
}

.reservationModal .extra .quicker {
    color: rgb(221, 221, 221);
    letter-spacing: 2px;
    color: var(--gold-crayola);
    margin-bottom: 8px;
    font-family: playfair display;
}

.modalWrapper {
    top: 0;
    height: 100vh;
    width: 100vw;
    position: fixed;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 20;
    pointer-events: none;
    backdrop-filter: blur(5px);
}

.formStatusModal {
    background-color: rgb(0, 0, 0);
    width: 90vw;
    max-width: 600px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 20px;
    position: absolute;
    border-radius: 8px;
    box-shadow:
        0 12px 24px rgba(0, 0, 0, 0.7),
        0 4px 12px rgba(255, 255, 255, 0.08);
    border: 1px solid hsla(38, 61%, 73%, 0.322);
}

.formStatusModal .status-modal-tap-target-close {
    position: absolute;
    top: 8px;
    right: 8px;
    opacity: 50%;
}

.formStatusModal .message {
    font-size: clamp(16px, 4vw, 18px);
    color: var(--gold-crayola);
    font-family: playfair display sc;
    line-height: 1.5;
    word-spacing: 3px;
}

.formStatusModal .statusLoadingSvg {
    display: flex;
}

.labelInput:has(.errorMessage) {
    padding-bottom: 0px;
}

.labelInput:has(.errorMessage) .formInputField.error {
    border-color: red;
    animation: errorShakeAnimation 0.3s;
}

.labelInput:has(.errorMessage) .formInputField.success {
    border-color: green;
}

.errorMessage {
    font-family: monsterrat;
    text-align: left;
    color: red;
    opacity: 60%;
    font-size: 11px;
    visibility: hidden;
}

.errorMessage.active {
    visibility: visible;
}

@keyframes errorShakeAnimation {
    0% {
        transform: translateX(0px);
    }

    25% {
        transform: translateX(-4px);
    }

    50% {
        transform: translateX(0px);
    }

    75% {
        transform: translateX(4px);
    }

    100% {
        transform: translateX(0px);
    }
}

.reservationForm .cta.error {
    opacity: 50%;
    cursor: not-allowed
}

.visitUs .footer-logo {
    height: clamp(28px, 4vw, 32px);
    width: auto;
    margin-bottom: clamp(12px, 2vw, 24px);
    justify-content: left;
    display: flex;
}

.visitUs .footer-logo img {
    height: 100%;
    width: max-content;
}

.visitUs .gridForDesktop {
    width: 100%;
    max-width: 1440px;
}

.visitUs {
    padding-block-start: clamp(28px, 5vw, 60px);
    padding-inline: clamp(16px, 2.5vw, 20px);
    text-align: center;
    background-color: rgb(12, 12, 12);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-block-end: clamp(24px, 4vw, 32px);
}

.visitUs .visit-us-items a span {
    display: inline-block;
    color: rgb(180, 180, 180);
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-color: rgb(184, 183, 183);
    margin-block: clamp(2px, 1.2vw, 4px);
    letter-spacing: 2px;
    transition: scale 150ms ease-out;
    font-family: playfair display;
    font-weight: 500;
    font-size: 14px;
}

.visitUs .separator {
    justify-self: center;
    margin-block-start: clamp(32px, 4vw, 40px);
    margin-block-end: clamp(0px, 2vw, 8px);
}

.visitUs .visit-us-bottom a {
    display: block;
    color: var(--gold-crayola);
    font-family: monsterrrat;
    font-weight: 500;
}

.visitUs .visit-us-bottom {
    margin-block: clamp(24px, 4vw, 32px);
    color: rgb(180, 180, 180);
}

.embeddedMap iframe {
    filter: invert(100%) hue-rotate(180deg) brightness(100%);
    border-radius: 8px;
    border: 1px solid var(--gold-crayola);
}

.embeddedMap iframe.active {
    pointer-events: auto;
}

.visitUs .subscriptionFormInput {
    background-color: #161718;
    outline: none !important;
    border: none !important;
}

#feedbackToast {
    display: none;
    transform: translateX(-50%);
    position: fixed;
    bottom: 100px;
    left: 50%;
    padding: 10px 20px;
    font-size: 14px;
    word-spacing: 2px;
    color: hsl(0, 0%, 80%);
    color: var(--gold-crayola);
    background-color: hsl(0, 0%, 5%);
    font-family: playfair display sc;
    border-radius: 8px;
    white-space: nowrap;
    box-shadow:
        0 12px 24px rgba(0, 0, 0, 0.7),
        0 4px 12px rgba(255, 255, 255, 0.08);
    transition: opacity 0.3s ease;
}

@font-face {
    font-display: block;
    font-family: Roboto;
    src: url(https://assets.brevo.com/font/Roboto/Latin/normal/normal/7529907e9eaf8ebb5220c5f9850e3811.woff2) format("woff2"), url(https://assets.brevo.com/font/Roboto/Latin/normal/normal/25c678feafdc175a70922a116c9be3e7.woff) format("woff")
}

@font-face {
    font-display: fallback;
    font-family: Roboto;
    font-weight: 600;
    src: url(https://assets.brevo.com/font/Roboto/Latin/medium/normal/6e9caeeafb1f3491be3e32744bc30440.woff2) format("woff2"), url(https://assets.brevo.com/font/Roboto/Latin/medium/normal/71501f0d8d5aa95960f6475d5487d4c2.woff) format("woff")
}

@font-face {
    font-display: fallback;
    font-family: Roboto;
    font-weight: 700;
    src: url(https://assets.brevo.com/font/Roboto/Latin/bold/normal/3ef7cf158f310cf752d5ad08cd0e7e60.woff2) format("woff2"), url(https://assets.brevo.com/font/Roboto/Latin/bold/normal/ece3a1d82f18b60bcce0211725c476aa.woff) format("woff")
}

#sib-container input:-ms-input-placeholder {
    text-align: left;
    font-family: playfair;
    color: rgb(165, 165, 165);
}

#sib-container input::placeholder {
    text-align: left;
    font-family: playfair;
    color: rgb(156, 156, 156);
}

#sib-container textarea::placeholder {
    text-align: left;
    font-family: playfair;
    color: #c0ccda;
}

#sib-container a {
    text-decoration: underline;
    color: #2BB2FC;
}

#sib-form-container {
    padding-block-start: 0px;
}

.visitUs .subscriptionForm {
    margin-block-start: 0px;
}

.visitUs .sib-form {
    margin-block-end: 0px;
    padding-block-end: 16px;
    padding-block-start: 0px;
}

.visitUs .socialMedia {
    display: flex;
    gap: 16px;
    margin-block-start: 12px;
    justify-content: center;
}

.visitUs .socialMedia a .socialMediaLinkIcon {
    font-size: 24px;
    color: rgb(175, 175, 175);
}

.visitUs .beforeSocialMedia {
    margin-block-start: 48px;
}

.visitUs .copyrightLine {
    color: rgb(148, 148, 148);
    margin-block: clamp(16px, 2.5vw, 20px) 0px;
    word-spacing: 2px;
}

.visitUs .copyrightLine .highlightDev {
    color: var(--gold-crayola);
    font-family: playfair display;
}

.sib-form-message-panel {
    padding-block-start: 0px;
}




@media (hover:hover) and (pointer: fine) {

    .nav-bar li:hover {
        color: var(--gold-crayola);
    }

    .nav-bar li:hover .hover-lines {
        color: var(--gold-crayola);
        transform: scaleX(1);
    }

    .hover-lines {
        background-color: var(--gold-crayola);
        width: 100%;
        position: absolute;
        transform: scaleX(0);
        transform-origin: center;
        height: 0.05rem;
        margin-top: 0.5rem;
        transition: all 0.2s ease-out;
        z-index: 1;
    }

    #hover-line1 {
        top: 1.08rem;
    }

    #hover-line2 {
        top: 1.28rem;
    }

    .bgImgChanger:hover {
        border: 1px solid var(--gold-crayola);
        color: var(--gold-crayola);
        scale: 1.03;
    }

    .nav-content .nav-bar-items:hover {
        color: var(--gold-crayola);
        scale: 1.05;
    }

    .service .card-container .cards.hovered {
        background-color: rgb(19, 19, 19);
        transform: translateY(0);
        box-shadow:
            0 6px 12px rgba(0, 0, 0, 0.65),
            0 2px 6px rgba(255, 255, 255, 0.08);
        scale: 1;
    }

    .service .card-container .cards.hovered::after {
        animation: shineMove 0 forwards;
    }

    .service .card-container .cards.hovered .serviceImg {
        scale: 1;
    }

    .service .card-container .cards.hovered .card-title {
        scale: 1;
    }

    .service .card-container .cards.hovered .card-link {
        scale: 1;
    }

    .service .card-container .cards:hover {
        background-color: rgb(12, 12, 12);
        transform: translateY(-4px);
        box-shadow:
            0 12px 24px rgba(0, 0, 0, 0.7),
            0 4px 12px rgba(255, 255, 255, 0.08);
        scale: 1.06;
    }

    .service .card-container .cards:hover::after {
        animation: shineMove 1.2s forwards;
    }

    .service .card-container .cards:hover .serviceImg {
        scale: 1.04;
    }

    .service .card-container .cards:hover .card-title {
        scale: 1.02;
    }

    .service .card-container .cards:hover .card-link {
        scale: 1.01;
    }

    .specialties .features .feature.scaled {
        scale: 1;
    }

    .reservation .reservationForm .cta:hover {
        scale: 1.03;
    }

    .visitUs .visit-us-items a span:hover {
        color: var(--gold-crayola);
        scale: 1.05;
    }

    .sib-form-block__button-with-loader:hover {
        scale: 1.03
    }

    .visitUs .socialMedia a .socialMediaLinkIcon:hover {
        scale: 1.05;
        color: var(--gold-crayola)
    }
}





@media (min-width:768px) and (max-width:1023px) {
    .top-bar {
        display: flex;
        position: relative;
        align-items: center;
        justify-content: space-between;
        padding: 0.5vw 1vw;
        padding-bottom: 1vw;
        background: rgba(35, 35, 35, 0.28);
        backdrop-filter: blur(4px);
        /* improves contrast & looks premium */
        border-bottom: 1.5px solid rgba(255, 255, 255, 0.40);
        /* stronger border */
        z-index: 2;
    }

    .cta {
        background-color: var(--gold-crayola);
        width: clamp(3rem, 16vw, 8rem);
        height: clamp(1rem, 8vw, 2rem);
        color: rgb(22, 22, 22);
        font-size: 0.9rem;
        border-radius: 5px;
        cursor: pointer;
        /* ensure */
        display: flex;
        /* makes text center nicely */
        align-items: center;
        justify-content: center;
        border: none;
        z-index: 1;
        font-weight: 600;
    }

    .top-bar-items {
        display: flex;
        align-items: center;
        justify-content: space-between;
        color: rgba(255, 255, 255, 0.92);
        /* brighter text so it stays visible under nav gradient */
        font-weight: 100;
        font-size: 0.9rem;
        letter-spacing: 1px;
        gap: 4px;
        padding-inline-start: 1vw;
    }

    .top-bar-items a {
        display: inline-flex;
        align-items: center;
        text-decoration: none;
        justify-content: space-between;
        color: rgba(235, 235, 235, 0.85);
        margin: 0 8px;
        gap: 4px;
        z-index: 1;
    }

    .tap-target {
        height: clamp(56px, 5.8vw, 60px);
        width: clamp(56px, 5.8vw, 60px);
        border-radius: 4px;
    }

    nav {
        height: clamp(56px, 6vw, 64px);
        padding: clamp(60px, 3vw, 66px) clamp(16px, 2.2vw, 20px) 0 clamp(20px, 2.2vw, 24px);
        top: 0;
    }

    .icon {
        height: clamp(32px, 3.5vw, 36px);
        width: clamp(32px, 3.5vw, 36px);
        filter: drop-shadow(0 1.5px 2.5px rgba(0, 0, 0, 0.7));
    }

    nav .logo {
        height: clamp(32px, 3.5vw, 40px);
        width: auto;
    }

    .nav-bar {
        gap: 20px;
        list-style: none;
    }

    .menu-top {
        height: clamp(56px, 5.8vw, 64px);
        padding: clamp(10px, 2vh, 14px) clamp(16px, 2.2vw, 20px) clamp(18px, 2.2vw, 24px) clamp(20px, 2.2vw, 24px);
        margin: clamp(16px, 2.5vw, 24px) 0;
    }

    .menu-top nav .logo {
        height: clamp(32px, 3.5vw, 40px);
    }

    .tap-target-close {
        height: clamp(56px, 5.8vw, 60px);
        width: clamp(56px, 5.8vw, 60px);
        border-radius: 4px;
    }

    .menu-top .close-button {
        height: clamp(32px, 3.5vw, 36px);
        width: clamp(32px, 3.5vw, 36px);
        filter: drop-shadow(0 1.5px 2.5px rgba(0, 0, 0, 0.7));
    }

    .nav-content {
        padding: clamp(20px, 2vw, 24px);
    }

    .nav-content .nav-bar-items {
        max-height: clamp(56px, 5.5vw, 64px);
        padding-block: clamp(10px, 2vw, 14px);
        font-size: clamp(1.05rem, 2.3vw, 1.25rem);
        font-weight: 300;
        line-height: 1.6;
    }

    .nav-content .nav-bar-items.active {
        scale: 1.03;
        transform: translateX(4px);
    }

    .mobile-menu-bottom {
        margin-block-end: 72px;
    }


    .mobile-menu-bottom {
        margin-block-end: 40px;
    }


    .mobile-menu-bottom p:first-child,
    .mobile-menu-bottom p:nth-last-child(2) {
        font-size: clamp(1.1rem, 1.8vw, 1.4rem);
        margin-block: clamp(10px, 1.5vw, 16px);
    }

    .make-lighter {
        font-size: clamp(15px, 2vw, 18px);
    }

    .separator {
        width: 12px;
        height: 12px;
    }


    .bgImgChanger {
        display: flex;
        justify-content: center;
        align-content: center;
        background-color: rgba(0, 0, 0, 0.5);
        color: rgb(173, 173, 173);
        border: none;
        padding: 8px 16px;
        cursor: pointer;
        font-size: 2rem;
        border-radius: 8px;
    }

    [data-bgImgChangerPrev] {
        left: 1%;
    }

    [data-bgImgChangernext] {
        right: 1%;
    }

    .hero {
        padding-inline: clamp(24px, 2.2vw, 40px);
        margin-block-end: clamp(48px, 6vw, 80px);
    }

    .hero .textContent {
        transform: translateY(-40px);
        padding-inline: clamp(20px, 3vw, 32px);
        margin-block-end: clamp(16px, 1.5vw, 32px);
    }

    .hero .hero-subtitle {
        font-size: clamp(20px, 3vw, 36px);
        margin-top: 14px;
        /* extra breathing room above the big title */
    }

    .hero .supportive-text {
        font-size: clamp(13px, 1.8vw, 16px);
        margin-block: 10px 28px;
        /* less top, more bottom -> distance to title increases */
        letter-spacing: 6px;
    }

    .hero .separatorImg {
        height: 12px;
        margin-block-end: 18px;
        /* more space below separator so title sits lower */
    }

    .hero .heroCta {
        height: clamp(48px, 6.5vw, 64px);
        font-size: clamp(16px, 1.8vw, 20px);
        padding: clamp(18px, 2.2vw, 28px);
        margin-top: clamp(32px, 5vw, 56px);
        /* noticeably lower, still responsive */
        transform: translateY(-36px);
        /* slightly less lift so CTA reads as part of flow */
    }

    .menu-highlights {
        font-size: clamp(13px, 1.6vw, 16px);
        padding: clamp(12px, 2vw, 18px);
        transform: translateY(-36px);
    }

    /* hero ended */

    .service {
        padding-block: clamp(56px, 6.5vw, 112px);
        margin-block-end: clamp(32px, 4vw, 60px);
        padding-inline: clamp(24px, 2.2vw, 40px);
    }

    .top-text {
        font-size: clamp(14px, 2.6vw, 20px);
        letter-spacing: 7px;
        margin-block: 14px 22px;
    }

    .section-subtitle {
        font-size: clamp(32px, 3.2vw, 40px);
        line-height: 1.42;
        margin-block: 8px 16px;
    }

    .section-title {
        font-size: clamp(52px, 6vw, 84px);
        letter-spacing: 6px;
        margin-block: 28px 18px;
        max-width: 95%;
    }

    .service .card-container {
        width: 100%;
        margin-block-start: clamp(40px, 4vw, 68px);
        ;
        display: grid;
        /* make two columns where right column is slightly wider */
        grid-template-columns: 0.8fr 1.2fr;
        grid-template-rows: clamp(330px, 31.25vw + 90px, 410px) clamp(330px, 31.25vw + 90px, 410px);
        height: auto;
        gap: 8px;
        grid-template-areas: "breakfast dinner" "lunch dinner";
        align-items: start;
    }

    .service #menu-breakfast {
        grid-area: breakfast;
    }

    .service #menu-lunch {
        grid-area: lunch;
    }

    .service #menu-dinner {
        grid-area: dinner;
        width: 100%;
        border-radius: 28px;
        padding-bottom: 20px;
    }

    .service .card-container .cards {
        width: 95%;
        padding-block: 16px;
        border-radius: 16px;
    }

    .service .card-container #menu-breakfast .patternImgContainer,
    .service .card-container #menu-lunch .patternImgContainer {
        width: 90%;
        position: relative;
        overflow: hidden;
        border-radius: 8px;
    }

    .service .card-container #menu-dinner .patternImgContainer {
        width: 90%;
        position: relative;
        overflow: hidden;
        border-radius: 12px;
        margin-block: 14px;
    }

    .service .card-container #menu-breakfast .serviceImg,
    .service .card-container #menu-lunch .serviceImg {
        width: 100%;
        height: auto;
        border-radius: 12px;
        aspect-ratio: 12/11;
        padding-bottom: 16px;
    }

    .service #menu-dinner .card-title {
        margin-block-start: 20px;
        font-size: clamp(40px, 5vw, 52px);
        letter-spacing: 2.2px;
        padding-bottom: 16px;
    }

    .service #menu-breakfast .card-title,
    .service #menu-lunch .card-title {
        padding-bottom: 4px;
        font-size: clamp(18px, 2.6vw, 28px);
    }

    .service #menu-breakfast .card-link,
    .service #menu-lunch .card-link {
        font-size: clamp(8px, 2.5vw, 12px);
    }

    .service #menu-dinner .card-link {
        font-size: clamp(8px, 3vw, 16px);
        padding-block-end: 8px;
    }

    .service .modalsContainer {
        top: 4%;
        left: 3%;
        width: 94vw;
        height: 92vh;
        border-radius: 20px;
    }

    .service .modals {
        padding-inline: clamp(20px, 3vw, 28px);
    }

    .service .modalMenuItem {
        gap: clamp(24px, 3.6vw, 40px);
        padding-block: clamp(20px, 3vw, 28px);
    }

    .service .modals .menuTitle {
        font-size: clamp(36px, 6.2vw, 64px);
        line-height: 1.15;
        margin-block: 28px 14px;
    }

    .service .modals .dishTitle {
        margin-bottom: 6px;
    }

    .service .modals .menuItemImg {
        padding-block-start: clamp(8px, 2vw, 12px);
    }

    .service .modals .separatorImage {
        margin-block-start: clamp(8px, 2vw, 16px);
        margin-block-end: clamp(24px, 5vw, 36px);
    }

    .service .modals .modal-tap-target-close {
        top: 12px;
        right: 12px;
    }

    .service .modals .price,
    .service .modals .menuItemContent .ingredients {
        font-size: clamp(14px, 1.8vw, 18px);
    }


    /* service section completed */



    .about-us {
        margin-block-start: clamp(32px, 4vw, 60px);
        padding-block: clamp(56px, 7vw, 112px);
        padding-block-end: clamp(40px, 6vw, 72px);
        padding-inline: clamp(24px, 2.2vw, 40px);
    }

    .about-us .about-content {
        margin-block: clamp(48px, 4vw, 64px);
        font-size: clamp(34px, 3vw, 38px);
        padding-inline: clamp(28px, 3.2vw, 44px);
    }

    .about-us .imgContainer {
        width: 75vw;
        margin-block: clamp(20px, 3vw, 40px);
        border-radius: 20px;
    }

    .about-us .underImg {
        width: 75vw;
    }

    .about-us .section-subtitle {
        margin-block-end: clamp(8px, 1vw, 12px);
    }

    .about-us .fading-title {
        font-size: clamp(42px, 4.8vw, 52px);
        margin-block: clamp(12px, 1.6vw, 20px);
        letter-spacing: 4.5px;
    }

    .about-us .masked-title {
        font-size: clamp(42px, 4.8vw, 52px);
        letter-spacing: 4.5px;
        line-height: 1.15;
    }

    .about-us .masked-subtitle {
        font-size: clamp(28px, 2vw, 20px);
        letter-spacing: 0.5px;
    }

    .specialties {
        padding-inline: clamp(20px, 2.6vw, 36px);
        padding-block-end: clamp(48px, 10vw, 100px);
    }

    .specialties .sectionTop .section-title {
        margin-block: clamp(96px, 6vw + 24px, 140px);
    }

    .specialties .features {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
        width: 100%;
        gap: clamp(12px, 1.76vw, 18px);

        align-items: start;
        padding-block-end: clamp(24px, 3.13vw, 32px);

    }

    .specialties .features .feature {
        width: 100%;
        margin-block: clamp(12px, 2vw, 20px);
        padding: clamp(10px, 1.6vw, 16px);
    }

    .specialties .features .feature .featureTitle {
        font-size: clamp(20px, 3.5vw, 42px);
        margin-block: clamp(8px, 1.8vw, 16px);


        /* margin-block kept previously: clamp(8px, 2vw, 12px); adjust only if needed */
    }

    .specialties .features .feature .featureDescription {
        font-size: clamp(14px, 2.5vw, 24px);
        padding-inline: 0px;
    }

    .specialties .features .feature.scaled {
        scale: 1;
    }

    /* specialties ended  */

    /* reservation started  */

    .reservation {
        padding-inline: clamp(24px, 3vw, 40px);
    }

    .reservationSection {
        padding-block: clamp(48px, 6vw, 96px);

    }

    .reservationSection .quicker {
        font-size: clamp(20px, 2.2vw, 26px);
        margin-bottom: 10px;

    }

    .reservationSection .or {
        margin-block: 10px;
        color: rgb(168, 168, 168);
    }

    .reservationSection .fillform {
        font-size: clamp(20px, 2.2vw, 26px);
        margin-bottom: 10px;
        letter-spacing: 1.2px;

    }

    .reservation .top-text {
        font-size: clamp(14px, 2vw, 18px);

    }

    .reservation .phoneNo {
        font-size: 18px;

    }

    .reservation .preForm {
        margin-block: 16px;
    }

    .reservation .formTitle {
        font-size: clamp(60px, 6vw, 84px);
        margin-block: 24px 36px;
    }

    .reservation .reservationForm {
        margin-block: clamp(32px, 4vw, 48px);
        padding-block-start: clamp(44px, 6vw, 54px);
        padding-block-end: clamp(36px, 5vw, 48px);

        border-radius: 16px;
    }

    .reservationSection .details {
        gap: 12px;
        margin-block: 32px;
        font-size: clamp(24px, 2.5vw, 30px);
    }

    .reservation .form-fields-wrapper {
        display: flex;
        flex-wrap: wrap;
        /* allow items to go to next line */
        gap: 0px 12px;
        /* row-gap | column-gap between fields */
        margin-block-start: clamp(40px, 6.4vw, 92px);
        margin-block-end: clamp(8px, 1.2vw, 12px);

        justify-content: space-between;
        padding-inline: clamp(16px, 3vw, 32px);
    }

    .reservation .labelInput {
        font-size: clamp(18px, 2vw, 22px);
        gap: clamp(6px, 1.5vw, 12px);
        padding-block: clamp(12px, 2vw, 16px);
        padding-inline: 0px;
        width: 48%;
        margin-inline-end: 0px;
    }

    .reservation .labelInput:nth-child(2) {
        margin-block-start: 0px;
    }

    .reservation .form-fields-wrapper .labelInput:last-child {
        width: 100%;
        margin-block-end: clamp(8px, 2vw, 16px);
    }

    .reservation .reservationForm .formInputField {
        border-radius: 6px;
        padding: 20px 12px;
        font-size: clamp(18px, 1.8vw, 22px);
        height: clamp(52px, 6vw, 68px);
    }

    .reservation .reservationForm .formSelectField {
        border-radius: 6px;
        padding: 20px 12px;
        font-size: clamp(18px, 1.8vw, 22px);
        height: clamp(52px, 6vw, 68px);
    }

    .reservation .reservationForm label {
        font-size: clamp(18px, 2vw, 22px);

    }

    .reservation .reservationForm .cta {
        padding-block: clamp(24px, 3.5vw, 36px);
        font-size: clamp(32px, 3vw, 40px);
        letter-spacing: 4px;
        border-radius: 8px;
        width: 50%;
        margin: auto;

    }

    .reservation .reservationForm .form-button-wrapper {
        width: 100%;

    }

    .reservation .reservationForm textarea {
        height: clamp(160px, 22vw, 250px);

    }

    .reservationModal .form {
        width: 100%;
        margin-block: clamp(8px, 1.8vw, 20px);
        padding-block: clamp(6px, 1.5vw, 14px);
    }

    .reservationModal .formtop {
        margin-block: clamp(12px, 2vw, 20px);
    }

    .reservationModal .extra {
        font-size: clamp(22px, 2vw, 26px);
    }

    .reservationModal .extra .callUs {
        color: rgb(180, 180, 180);
        margin-bottom: 10px;
        /* was 8px – small increase */
        /
    }

    .reservationModal .extra .or {
        margin-block: clamp(6px, 1.5vw, 10px);
        font-size: clamp(16px, 2vw, 20px);
    }

    .reservationModal .extra .quicker {
        letter-spacing: 2.4px;
        margin-bottom: 10px;
    }

    .reservationModal .form-fields-wrapper .labelInput:nth-last-child(2) {
        width: 100%;
        margin-block-end: clamp(12px, 2.5vw, 22px);

    }

    .reservationModal .labelInput {
        padding-block: clamp(8px, 1.5vw, 12px);
    }


    .formStatusModal {
        width: 70vw;
        max-width: 520px;
        padding: clamp(40px, 3vw, 56px);
        gap: clamp(20px, 2vw, 28px);
        border-radius: 10px;
    }

    .formStatusModal .status-modal-tap-target-close {
        top: 12px;
        right: 12px;
    }

    .formStatusModal .message {
        font-size: clamp(18px, 2vw, 26px);
        line-height: 1.6;
        word-spacing: 4px;
    }

    .errorMessage {
        font-size: clamp(12px, 1.2vw, 14px);
    }

    .visitUs {
        padding-block-start: clamp(32px, 5vh, 60px);
        padding-inline: clamp(24px, 2.2vw, 40px);
        padding-block-end: clamp(32px, 5vw, 56px);
    }

    .visitUs .footer-logo {
        height: clamp(32px, 3.5vw, 40px);
        width: auto;
        margin-block-end: clamp(32px, 5vw, 56px);
        /* maintain aspect ratio, no extra width */
        justify-content: left;
        display: flex;
    }

    .visitUs .visit-us-items {
        justify-content: left;
        text-align: left;
    }

    .visitUs .visit-us-items a span {
        margin-block: clamp(4px, 1.4vw, 8px);
        letter-spacing: 2.4px;
        font-size: clamp(16px, 1.6vw, 20px);
    }

    .visitUs .forGrid {
        display: grid;
        grid-template-columns: 0.7fr 0.9fr 1.4fr;
        grid-template-rows: auto auto auto;
        grid-template-areas: "row1 row1 row1" "col1 col2 col3" "row3 row3 row3";
        gap: 0px;
    }

    .visitUs .grp1 {
        grid-area: col1;
    }

    .visitUs .grp2 {
        grid-area: col2;
    }

    .visitUs .grp3 {
        grid-area: col3;
    }

    .visitUs .grp4 {
        grid-area: row3;
    }


    .visitUs .separator {
        display: none;
    }

    .visitUs .visit-us-bottom {
        margin-block: clamp(4px, 1.4vw, 8px);
        text-align: left;
        letter-spacing: 2.4px;
        font-size: clamp(16px, 1.6vw, 20px);
    }

    .visitUs .visit-us-bottom a {
        margin-block: clamp(4px, 1.4vw, 8px);
        letter-spacing: 2.4px;
        font-size: clamp(16px, 1.6vw, 20px);

    }

    .embeddedMap iframe {
        margin-block-start: 0px;
        width: clamp(320px, 60vw, 480px);
        margin-block-end: clamp(40px, 4vw, 64px);
        margin-inline-start: 32px;
        width: 90%;
    }

    #feedbackToast {
        bottom: 120px;
        padding: 12px 24px;
        font-size: clamp(16px, 1.6vw, 20px);
    }

    #sib-form-container {
        padding-block-start: 0px;
    }

    .visitUs .subscriptionForm {
        margin-block-start: 4px;
    }

    .visitUs .sib-form {
        padding-block-end: 20px;
    }

    .visitUs .socialMedia {
        gap: 20px;
        margin-block-start: 16px;
    }

    .visitUs .in-form-before-input {
        font-size: 28px;
    }

    .visitUs .socialMedia a .socialMediaLinkIcon {
        font-size: clamp(26px, 2.4vw, 30px);
    }

    .visitUs .beforeSocialMedia {
        margin-block-start: clamp(40px, 4vw, 64px);
        display: none;
    }

    .visitUs .copyrightLine {
        margin-block: clamp(20px, 3vw, 28px) 0px;
    }



}




@media (min-width:1024px) {
    .top-bar {
        display: flex;
        position: relative;
        align-items: center;
        justify-content: space-between;
        padding-block: 12px;
        padding-inline: clamp(20px, 2vw, 40px);
        background: rgba(35, 35, 35, 0.28);
        backdrop-filter: blur(4px);
        /* improves contrast & looks premium */
        border-bottom: 1.5px solid rgba(255, 255, 255, 0.40);
        /* stronger border */
        z-index: 2;
    }


    .cta {
        background-color: var(--gold-crayola);
        width: clamp(3rem, 16vw, 8rem);
        height: clamp(1rem, 8vw, 2rem);
        color: rgb(22, 22, 22);
        font-size: 0.9rem;
        border-radius: 5px;
        cursor: pointer;
        /* ensure */
        display: flex;
        /* makes text center nicely */
        align-items: center;
        justify-content: center;
        border: none;
        z-index: 1;
        font-weight: 600;

    }

    .top-bar-items {
        display: flex;
        align-items: center;
        justify-content: space-between;
        color: rgba(245, 245, 245, 0.753);
        font-weight: 100;
        font-size: clamp(0.95rem, 0.9vw, 1rem);
        letter-spacing: 1.2px;
        gap: clamp(6px, 0.7vw, 12px);
    }

    .top-bar-items a {
        display: inline-flex;
        align-items: center;
        text-decoration: none;
        justify-content: space-between;
        color: rgba(245, 245, 245, 0.753);
        margin-inline: clamp(8px, 1.2vw, 16px);
        gap: clamp(6px, 1.0vw, 12px);
        font-size: clamp(15px, 1.1vw, 17px);
        z-index: 1;
    }

    nav {
        height: clamp(72px, 8.5vw, 90px);
        padding: clamp(60px, 3vw, 66px) clamp(16px, 2.2vw, 20px) 0 clamp(20px, 2.2vw, 24px);
        top: 0;
        z-index: 1;
    }

    .nav-bar {
        display: flex;
        position: relative;
        align-items: center;
        justify-content: space-between;
        text-decoration: none;
        gap: 20px;
        list-style: none;
        background-color: transparent;
        position: sticky;
    }



    .mobile-menu-bottom {
        display: none;
    }

    .menu-top {
        display: none;
    }

    .nav-content {
        display: flex;
        flex-direction: row;
        width: auto;
        gap: 20px;
        justify-content: flex-end;
        white-space: nowrap;
    }

    .tap-target-open {
        display: none;
    }

    .nav-bar {
        transform: translateX(0%);
        opacity: 1;
        flex-direction: row;
        width: clamp(50vw, 42vw, 720px);
        justify-content: flex-end;
        gap: 24px;
        height: auto;
    }

    .nav-bar .nav-content li:first-child {
        border-block-start: 0px;
    }

    .nav-content .nav-bar-items {
        border: none;
    }

    .bgImgChanger {
        /* transform: translateY(-50%); */
        display: flex;
        justify-content: center;
        align-content: center;
        background-color: rgba(0, 0, 0, 0.5);
        color: rgb(173, 173, 173);
        /* height: 2rem; */
        border: none;
        padding: 8px 16px;
        cursor: pointer;
        font-size: 1.5rem;
        border-radius: 8px;
    }


    [data-bgImgChangerPrev] {
        left: 1%;
    }

    [data-bgImgChangernext] {
        right: 1%;
    }

    #hover-line2 {
        display: block;
    }

    .max-width {
        width: 100%;
        max-width: 1440px;
    }

    .hero {
        padding-inline: clamp(40px, 2.6vw, 48px);
        margin-block-end: clamp(80px, 4.5vw, 96px);
    }

    .hero .textContent {
        transform: translateY(0px);
        padding-inline: clamp(32px, 2.4vw, 40px);
        margin-block-end: clamp(32px, 2vw, 40px);
    }

    .service {
        padding-block-start: 72px;
        padding-block-end: 0px;
        padding-inline: clamp(32px, 1.5vw, 96px);
        margin-block-end: 0px;
    }

    .section-subtitle {
        font-size: clamp(18px, 1.8vw, 24px);
        line-height: 1.35;
        margin-block: 6px 12px;
        letter-spacing: 0.6px;
    }

    .section-title {
        font-size: clamp(34px, 3.2vw, 44px);
        line-height: 1.12;
        letter-spacing: 2px;
        margin-block: 18px 12px;
        max-width: 90%;
    }




    .service .card-container {
        display: flex;
        width: 100%;
        flex-direction: row;
        justify-content: space-around;
    }

    .service .card-container .cards {
        width: 29%;
        padding-block: 20px;
        border-radius: 24px;

    }

    .service .card-container .cards .serviceImg {

        width: 96%;
        border-radius: 16px;
        aspect-ratio: 10/11;

    }


    .service .modalsContainer {
        top: 4%;
        left: 3%;
        width: 94vw;
        height: 92vh;
        border-radius: 20px;
        border: 1px solid rgba(128, 128, 128, 0.216);
    }

    .service .modals {
        padding-inline: clamp(20px, 3vw, 28px);
    }

    .service .modalMenuItems {
        display: flex;
        width: 96%;
        flex-wrap: wrap;
        align-items: flex-start;
        justify-content: space-around;
        column-gap: clamp(16px, 2vw, 24px);
    }

    .service .modalMenuItem {
        gap: clamp(24px, 3.6vw, 40px);
        padding-block: clamp(20px, 3vw, 28px);
        flex: 1 1 calc(50% - 24px);
        max-width: 48%;
        border-block-end: 1px solid rgba(112, 112, 112, 0.6);
    }

    .service .modalMenuItem:last-child {
        border-block-end: 1px solid rgba(112, 112, 112, 0.6);
    }

    .service .modals .menuTitle {
        font-size: clamp(36px, 6.2vw, 64px);
        line-height: 1.15;
        margin-block: 28px 14px;
    }

    .service .menuHightightsModal .menuTitle {
        font-size: clamp(36px, 5.5vw, 54px);
        opacity: 0.8;

    }

    .service .modals .dishTitle {
        margin-bottom: 6px;
    }

    .service .modals .menuItemImg {
        padding-block-start: clamp(8px, 2vw, 12px);
    }

    .service .modals .separatorImage {
        margin-block-start: clamp(8px, 2vw, 16px);
        margin-block-end: clamp(24px, 5vw, 36px);
    }

    .service .modals .modal-tap-target-close {
        top: 12px;
        right: 12px;
    }

    .service .modals .price,
    .service .modals .menuItemContent .ingredients {
        font-size: clamp(14px, 1.8vw, 18px);
    }


    .about-us {
        padding-inline: clamp(32px, 1.5vw, 96px);
        padding-block: clamp(48px, 5.5vw, 80px);
        padding-block-end: 0px;
        margin-block-end: 0px;
        min-height: 50vh;
    }

    .about-us .imgContainer,
    .about-us .underImg {
        width: 40vw;
        margin-block: clamp(20px, 3vw, 40px);
        border-radius: 20px;
    }

    .about-us .about-content {
        margin-block: clamp(28px, 3.2vw, 48px);
        font-size: clamp(18px, 2vw, 24px);
        padding-inline: 80px;

    }

    .specialties {
        padding-block: clamp(40px, 4vw, 64px);
        padding-inline: clamp(28px, 2.4vw, 48px);
        min-height: 105vh;
    }

    .specialties .sectionTop .section-title {
        margin-block: clamp(32px, 4vw, 56px);
    }

    .specialties .features {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
        gap: clamp(20px, 2.4vw, 32px);
        width: 100%;
        margin-block-start: clamp(20px, 1.5vw, 40px);
    }

    .specialties .features .feature {
        width: clamp(260px, 22vw, 340px);
        margin-block: clamp(12px, 1.4vw, 20px);
        padding: 0px;
    }

    .specialties .features .feature .featureTitle {
        font-size: clamp(22px, 2vw, 32px);
        margin-block: clamp(6px, 1vw, 12px);
        font-weight: 500;
    }

    .specialties .features .feature .featureDescription {
        font-size: clamp(14px, 1.3vw, 18px);
        padding-inline: 0;
        line-height: 1.45;
    }

    .reservation {
        padding-inline: clamp(32px, 2.4vw, 56px);
        padding-block: clamp(40px, 4vw, 72px);
        display: flex;
        align-items: center;
        justify-content: center;
    }




    .reservationSection {
        padding-block: clamp(40px, 4vw, 72px);
    }

    .reservationSection .quicker,
    .reservationSection .fillform {
        font-size: clamp(16px, 1.2vw, 20px);
        margin-bottom: 6px;
        letter-spacing: 1px;
    }


    .reservationSection .or {
        margin-block: 8px;
    }

    .reservation .top-text {
        font-size: clamp(13px, 1.2vw, 16px);
    }

    .reservation .phoneNo {
        font-size: 18px;
    }

    .reservation .formTitle {
        font-size: clamp(42px, 3.4vw, 64px);
        margin-block: 18px 26px;
    }

    .reservation .reservationForm {
        margin-block: clamp(24px, 3vw, 40px);
        padding-block-start: clamp(28px, 3vw, 40px);
        padding-block-end: clamp(24px, 3vw, 36px);
        border-radius: 16px;
        width: 94%;
    }

    .reservationSection .details {
        gap: 10px;
        margin-block: 20px;
        font-size: clamp(18px, 1.4vw, 22px);
    }

    .reservation .form-fields-wrapper {
        display: flex;
        flex-wrap: wrap;
        margin-block-start: clamp(28px, 3vw, 48px);
        margin-block-end: clamp(6px, 1vw, 12px);
        padding-inline: clamp(20px, 2.2vw, 28px);
        gap: 0px 12px;
        justify-content: space-between;
    }

    .reservation .labelInput {
        width: 49%;
        padding-block: clamp(8px, 1.2vw, 12px);
        font-size: clamp(14px, 1.2vw, 18px);
    }

    .reservation .form-fields-wrapper .labelInput:last-child {
        width: 100%;
        margin-block-end: clamp(6px, 1vw, 12px);
    }

    .reservation .reservationForm .formInputField,
    .reservation .reservationForm .formSelectField {
        height: clamp(36px, 3.2vw, 48px);
        padding: 12px 10px;
        font-size: clamp(14px, 1vw, 17px);
        border-radius: 6px;
    }

    .reservation .reservationForm label {
        font-size: clamp(14px, 1.2vw, 18px);
    }

    .reservation .reservationForm textarea {
        height: clamp(100px, 14vw, 180px);
        font-size: clamp(15px, 1.2vw, 18px);
    }

    .reservation .reservationForm .cta {
        width: 40%;
        padding-block: clamp(14px, 2vw, 24px);
        font-size: clamp(20px, 1.8vw, 28px);
        letter-spacing: 2px;
        border-radius: 8px;
        align-self: center;
        transition: scale 150ms ease-in-out;
    }

    .reservation .reservationForm .form-button-wrapper {
        width: 100%;

    }

    .reservationModal {
        padding: 0px;
        padding-inline: 0px !important;
    }

    /* MAIN MODAL FORM WRAPPER */
    .reservationModal .form {
        width: 100%;
        margin-block: clamp(8px, 1.2vw, 16px);
        padding-block: clamp(6px, 1.2vw, 12px);
        margin-inline: 0px;
    }

    .reservationModal .bookingRequest {
        display: inline-block;
    }

    .reservationModal .formtop {
        margin-block: clamp(10px, 1.4vw, 16px);
    }

    /* "CALL US / OR / QUICKER" TEXT IN MODAL */
    .reservationModal .extra {
        font-size: clamp(16px, 1.4vw, 20px);
    }

    .reservationModal .extra .callUs {
        margin-bottom: 8px;
        color: rgb(180, 180, 180);
    }

    .reservationModal .extra .or {
        margin-block: clamp(4px, 1vw, 8px);
        font-size: clamp(14px, 1.2vw, 18px);
    }

    .reservationModal .extra .quicker {
        letter-spacing: 1.8px;
        margin-bottom: 8px;
    }

    /* LAST ROW BEFORE TEXTAREA / EXTRA FIELD */
    .reservationModal .form-fields-wrapper .labelInput:nth-last-child(2) {
        width: 100%;
        margin-block-end: clamp(10px, 1.8vw, 18px);
    }

    .reservationModal .labelInput {
        padding-block: clamp(6px, 1.1vw, 10px);
    }

    /* STATUS MODAL (AFTER SUBMIT) */
    .formStatusModal {
        width: 50vw;
        max-width: 440px;
        padding: clamp(24px, 2vw, 36px);
        gap: clamp(14px, 1.6vw, 22px);
        border-radius: 10px;
    }

    .formStatusModal .status-modal-tap-target-close {
        top: 10px;
        right: 10px;
    }

    .formStatusModal .message {
        font-size: clamp(15px, 1.4vw, 20px);
        line-height: 1.5;
        word-spacing: 3px;
    }

    .errorMessage {
        font-size: clamp(11px, 0.9vw, 13px);
    }


    .visitUs {
        padding-block-start: clamp(32px, 5vh, 60px);

        /* padding-block-end: clamp(40px, 6vh, 72px); */
        padding-inline: clamp(32px, 4vw, 56px);

        /* background-color: green; */
    }

    .visitUs .footer-logo {
        height: clamp(32px, 3.5vw, 40px);
        width: auto;
        margin-block-end: clamp(12px, 2vw, 24px);
        /* background-color: pink; */
        justify-content: left;
        display: flex;
        /* maintain aspect ratio, no extra width */
    }


    .visitUs .grp1 {
        grid-area: col1;
    }

    .visitUs .grp2 {
        grid-area: col2;
    }

    .visitUs .grp3 {
        grid-area: col3;
    }

    .visitUs .grp4 {
        grid-area: col4;
    }

    .visitUs .forGrid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: auto auto;
        grid-template-areas: "row1 row1 row1 row1" "col1 col2 col3 col4";
        gap: 0px;
    }

    .visitUs .visit-us-items {
        justify-content: left;
        text-align: left;
    }

    .visitUs .visit-us-bottom {
        margin-block: clamp(32px, 4.5vw, 48px);
        text-align: left;
        margin-block: clamp(4px, 1.4vw, 8px);
        font-size: clamp(15px, 1.1vw, 18px);
        letter-spacing: 1.6px;

    }

    .visitUs .separator {
        display: none;
    }

    .visitUs .visit-us-items a span {
        font-size: clamp(15px, 1.1vw, 18px);
        letter-spacing: 1.6px;

    }

    .visitUs .visit-us-bottom a {
        font-size: clamp(15px, 1.1vw, 18px);
        letter-spacing: 1.6px;
    }

    .sib-form {
        padding: 0px;
    }

    .in-form-before-input {
        padding: 0px;
        text-align: left;
    }


    .copyrightLine {
        padding-block-start: clamp(32px, 5vh, 60px);
        margin-block-end: 0px;
    }

    .visitUs .socialMedia {
        gap: 20px;
        margin-block-start: 0px;
    }

    .visitUs .socialMedia a .socialMediaLinkIcon {
        font-size: clamp(26px, 2.4vw, 30px);
    }



}