@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=EB+Garamond:ital,wght@0,400..800;1,400..800&family=Jost:ital,wght@0,100..900;1,100..900&family=Literata:ital,opsz,wght@0,7..72,200..900;1,7..72,200..900&family=Outfit:wght@100..900&family=Roboto+Serif:ital,opsz,wght@0,8..144,100..900;1,8..144,100..900&family=Satisfy&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Forum&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Gupter:wght@400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Jacques+Francois+Shadow&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Marcellus&display=swap");

* {
  padding: 0;
  margin: 0;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0px;
  padding: 0px;
  /* overflow-x: clip; */
}
:root {
    --gold-primary: #D4AF37;
    --gold-light: #F3E5AB;
    --gold-dark: #AA7C11;
    --navy-dark: #070B12;
    --navy-card: rgba(14, 22, 36, 0.65);
    --navy-accent: #0C1322;
    --font-cinzel: 'Cinzel', serif;
    --font-sans: 'Plus Jakarta Sans', sans-serif;
}
body {
    font-family: var(--font-sans);
    /* background-color: var(--navy-dark); */
    color: #FFFFFF;
    overflow-x: hidden;

}
.font-cinzel {
    font-family: var(--font-cinzel);
}
.fs-7 {
    font-size: 0.875rem;
}
.fs-8 {
    font-size: 0.75rem;
}
.py-7 {
    padding-top: 7rem;
    padding-bottom: 7rem;
}
.tracking-widest {
    letter-spacing: 0.25em;
}

/* Custom Cursor */
.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--gold-primary);
    position: fixed;
    top: 0;
    left: 0;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease;
}
.cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid var(--gold-primary);
    position: fixed;
    top: 0;
    left: 0;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: all 0.15s ease-out;
    opacity: 0.5;
}

/* Gold Gradients & Text Glows */
.text-gold-gradient {
    background: linear-gradient(135deg, #FFF099 0%, #D4AF37 50%, #AA7C11 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.bg-gold-gradient {
    background: linear-gradient(135deg, #D4AF37, #AA7C11);
}
.glass-card {
    background: var(--navy-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(212, 175, 55, 0.2);
}
.border-gold-hover {
    transition: border-color 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
}
.border-gold-hover:hover {
    border-color: var(--gold-primary);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
}

/* Scroll Animations */
.reveal-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.reveal-up.visible {
    opacity: 1;
    transform: translateY(0);
}
.delay-1 {
    transition-delay: 0.2s;
}
.delay-2 {
    transition-delay: 0.4s;
}
.delay-3 {
    transition-delay: 0.6s;
}
.scroll-down-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 10;
}
.scroll-down-indicator .line {
    width: 1px;
    height: 40px;
    background: var(--gold-primary);
    animation: scrollLine 2s infinite ease-in-out;
}
@keyframes scrollLine {
    0% {
        transform: scaleY(0);
        transform-origin: top;
    }
    50% {
        transform: scaleY(1);
        transform-origin: top;
    }
    51% {
        transform: scaleY(1);
        transform-origin: bottom;
    }
    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }
}
.ambient-glow {
    position: fixed;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}
.glow-1 {
    top: -100px;
    left: -100px;
}
.glow-2 {
    bottom: -100px;
    right: -100px;
}


/* TOP BAR*/
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 42px;
    z-index: 1050;
    background: #201a1a;
    color: #ffffff;
    border-bottom: 1px solid rgba(212, 175, 55, 0.25);
    font-family: "Jost", sans-serif;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.03em;
    transition:
        transform 0.4s ease,
        opacity 0.4s ease;
}
.top-bar.hidden {
    transform: translateY(-100%);
    opacity: 0;
}
.top-bar .container-fluid {
    height: 100%;
}
.top-bar-inner {
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.top-bar-item {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #ffffff;
    text-decoration: none;
    white-space: nowrap;
    transition:  color 0.3s ease;
}
.top-bar-item i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #D4AF37;
    font-size: 0.85rem;
    width: 16px;
    transition:
        color 0.3s ease,
        transform 0.3s ease;
}
.top-bar-item:hover {
    color: #D4AF37;
}
.top-bar-item:hover i {
    color: #ffffff;
    transform: translateY(-1px);
}
.top-bar-contact {
    display: flex;
    align-items: center;
    gap: 30px;
}


/* NAVBAR */
.navbar {
    position: fixed !important;
    top: 42px !important;
    left: 0;
    width: 100%;
    z-index: 1040;
    padding-top: 12px;
    padding-bottom: 12px;
    background: transparent;
    transition:
        top 0.4s ease,
        background-color 0.4s ease,
        padding 0.4s ease,
        box-shadow 0.4s ease,
        backdrop-filter 0.4s ease;
}
.navbar.scrolled {
    top: 0 !important;
    background: rgba(32, 26, 26, 0.92);
    padding-top: 8px;
    padding-bottom: 8px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.25);
}
.navbar .container {
    display: flex;
    align-items: center;
}
.navbar-brand {
    display: flex;
    align-items: center;
    padding: 0;
    margin-right: 30px;
}
.logo {
    display: block;
    width: 130px;
    height: auto;
    transition: width 0.4s ease;
}
.navbar.scrolled .logo {
    width: 115px;
}
.navbar-nav {
    display: flex;
    align-items: center;
    gap: 0;
}
.navbar-nav .nav-item {
    display: flex;
    align-items: center;
}
.navbar .nav-link {
    position: relative;
    color: #ffffff !important;
    font-family: "Jost", sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    padding: 10px 16px !important;
    transition: color 0.3s ease;
}
.navbar .nav-link::after {
    content: "";
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 3px;
    height: 1px;
    background: #D4AF37;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}
.navbar .nav-link:hover {
    color: #D4AF37 !important;
}
.navbar .nav-link:hover::after {
    transform: scaleX(1);
}
.navbar .nav-link.active {
    color: #D4AF37 !important;
}
.navbar .nav-link.active::after {
    transform: scaleX(1);
}
.flag {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    margin: 0;
    border: 1px solid #D4AF37;
    border-radius: 50%;
    overflow: hidden;
    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;
}
.flag a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 0;
}
.flag img {
    display: block;
    width: 22px;
    height: 22px;
    padding: 0 !important;
    object-fit: cover;
}
.flag:hover {
    border-color: #ffffff;
    box-shadow:  0 0 12px rgba(212, 175, 55, 0.45);
    transform: translateY(-1px);
}
.book-now {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 10px 20px;
    margin-left: 20px;
    background: linear-gradient(
            135deg,
            #D4AF37 0%,
            #AA7C11 100%
        );
    color: #000000 !important;
    border: none;
    border-radius: 0;
    font-family: "Jost", sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    transition:
        box-shadow 0.3s ease,
        transform 0.3s ease;
}
.book-now::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.45),
            transparent
        );
    transition: left 0.7s ease;
}
.book-now:hover::before {
    left: 100%;
}
.book-now:hover {
    color: #000000 !important;
    transform: translateY(-1px);
    box-shadow:  0 0 25px rgba(212, 175, 55, 0.6);
}
.book-now1 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border: 1px solid #D4AF37;
    border-radius: 0;
    background: transparent;
    color: #D4AF37;
    font-family: "Jost", sans-serif;
    text-decoration: none;
    transition:
        background 0.3s ease,
        color 0.3s ease,
        box-shadow 0.3s ease;
}
.book-now1:hover {
    background: #D4AF37;
    color: #000000;
    box-shadow:  0 0 20px rgba(212, 175, 55, 0.4);
}
.navbar-toggler {
    padding: 7px 10px;
    border: 1px solid rgba(212, 175, 55, 0.7);
    border-radius: 0;
    background: transparent;
}
.navbar-toggler:hover {
    border-color: #D4AF37;
}
.navbar-toggler:focus {
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.25);
}
.navbar-toggler-icon {
    width: 1.3em;
    height: 1.3em;
}
@media (max-width: 991.98px) {
    .top-bar {
        display: none;
    }
    .navbar,
    .navbar.scrolled {
        top: 0 !important;
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .navbar {
        background: rgba(32, 26, 26, 0.80);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        border-bottom: 1px solid rgba(212, 175, 55, 0.20);
    }
    .navbar.scrolled {
        background: rgba(32, 26, 26, 0.95);
    }
    .logo,
    .navbar.scrolled .logo {
        width: 130px;
    }
    .navbar-collapse {
        margin-top: 12px;
        padding: 15px;
        background: rgba(32, 26, 26, 0.97);
        border-top: 1px solid rgba(212, 175, 55, 0.25);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
    }
    .navbar-nav {
        align-items: stretch;
    }
    .navbar-nav .nav-item {
        display: block;
        text-align: center;
    }
    .navbar .nav-link {
        display: block;
        padding: 12px 15px !important;
        font-size: 0.9rem;
    }
    .navbar .nav-link::after {
        display: none;
    }
    .navbar-nav .flag {
        margin: 8px auto;
    }
    .book-now {
        display: flex;
        width: 100%;
        margin-top: 15px;
        margin-left: 0;
        padding: 12px 20px;
    }
}
@media (max-width: 576px) {
    .navbar {
        padding-left: 5px;
        padding-right: 5px;
    }
    .logo,
    .navbar.scrolled .logo {
        width: 115px;
    }
    .navbar-collapse {
        margin-top: 10px;
        padding: 10px;
    }
    .navbar .nav-link {
        font-size: 0.85rem;
    }
    .book-now {
        font-size: 0.7rem;
        letter-spacing: 0.18em;
    }
}
@media (max-width: 400px) {
    .logo,
    .navbar.scrolled .logo {
        width: 105px;
    }
    .navbar {
        padding-left: 3px;
        padding-right: 3px;
    }
}

/* HERO / CAROUSEL */
.hero-section {
    position: relative;
    background: #000;
    overflow: hidden;
}
#carouselExampleCaptions,
.carousel-inner,
.carousel-item {
    width: 100%;
    height: 100vh;
    min-height: 650px;
}
.carousel-item {
    position: relative;
    overflow: hidden;
    background: #000;
}
.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter:
        brightness(0.48)
        contrast(1.08)
        saturate(0.92);
    transform: scale(1.08);
    transition:
        transform 8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        filter 1.2s ease;
}
.carousel-item.active img {
    transform: scale(1);
}
.carousel-item::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.35) 0%,
            rgba(0, 0, 0, 0.05) 35%,
            rgba(0, 0, 0, 0.18) 65%,
            rgba(0, 0, 0, 0.72) 100%
        );
}
.carousel-item::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background:
        radial-gradient(
            circle at 50% 45%,
            rgba(212, 175, 55, 0.07),
            transparent 55%
        );
}
.carousel-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    right: auto;
    bottom: auto;
    z-index: 5;
    width: min(900px, 90%);
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
}
.hero-title {
    font-family: var(--font-cinzel);
    background:
        linear-gradient(
            135deg,
            #FFF099 0%,
            #D4AF37 50%,
            #AA7C11 100%
        );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: clamp(3rem, 7vw, 5rem);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: 0.08em;
    text-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}
.carousel-caption p {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.82);
    font-family: var(--font-sans);
    font-size: clamp(0.9rem, 1.2vw, 1.05rem);
    line-height: 1.8;
    letter-spacing: 0.04em;
    text-shadow:  0 2px 12px rgba(0, 0, 0, 0.8);
}
.carousel-caption .book-now {
    margin-top: 5px;
    padding: 13px 28px;
    box-shadow:  0 10px 35px rgba(212, 175, 55, 0.18);
}
.carousel-control-prev,
.carousel-control-next {
    width: 58px;
    height: 58px;
    top: 50%;
    margin-top: 0;
    transform: translateY(-50%);
    z-index: 10;
    background:  rgba(255, 255, 255, 0.045);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(212, 175, 55, 0.75);
    border-radius: 50%;
    opacity: 0.75;
    transition:
        background 0.35s ease,
        border-color 0.35s ease,
        opacity 0.35s ease,
        transform 0.35s ease;
}
.carousel-control-prev {
    left: 40px;
}
.carousel-control-next {
    right: 40px;
}
.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
    background: rgba(212, 175, 55, 0.14);
    border-color: #D4AF37;
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.18);
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 18px;
    height: 18px;
    filter:
        brightness(0)
        saturate(100%)
        invert(77%)
        sepia(45%)
        saturate(700%)
        hue-rotate(5deg)
        brightness(90%);
}
.carousel-item {
    transition:
        transform 1.2s ease-in-out,
        opacity 1.2s ease-in-out;
}
@media (max-width: 991.98px) {
    #carouselExampleCaptions,
    .carousel-inner,
    .carousel-item {
        height: 85vh;
        min-height: 600px;
    }
    .carousel-caption {
        width: 85%;
    }
    .hero-title {
        font-size: clamp(2.8rem, 9vw, 4.5rem);
        letter-spacing: 0.05em;
    }
    .carousel-caption p {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    .carousel-control-prev {
        left: 20px;
    }
    .carousel-control-next {
        right: 20px;
    }
}
@media (max-width: 576px) {
    #carouselExampleCaptions,
    .carousel-inner,
    .carousel-item {
        height: 82vh;
        min-height: 560px;
    }
    .carousel-caption {
        width: 88%;
    }
    .hero-title {
        font-size: 2.7rem;
        line-height: 1;
        margin-bottom: 1.5rem !important;
    }
    .carousel-caption p {
        font-size: 0.85rem;
        line-height: 1.65;
        margin-bottom: 2rem !important;
    }
    .carousel-caption .book-now {
        padding: 12px 22px;
    }
    .carousel-control-prev,
    .carousel-control-next {
        width: 45px;
        height: 45px;
    }
    .carousel-control-prev {
        left: 10px;
    }
    .carousel-control-next {
        right: 10px;
    }
}
@media (prefers-reduced-motion: reduce) {
    .carousel-item img {
        transform: none !important;
        transition: none !important;
    }
    .carousel-item {
        transition: none !important;
    }
}

/* ABOUT SECTION */
.about {
    position: relative;
    padding: 110px 0;
    background: #ffffff;
    color: #201a1a;
    overflow: hidden;
}
.about::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    top: -250px;
    right: -180px;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(212, 175, 55, 0.08) 0%,
            transparent 70%
        );

    pointer-events: none;
}
.about .row {
    position: relative;
    z-index: 1;
}
.about img {
    display: block;
    width: 100%;
    height: 560px;
    object-fit: cover;
    border-radius: 0;
    box-shadow: 0 25px 60px rgba(32, 26, 26, 0.12);
    transition:
        transform 0.8s ease,
        box-shadow 0.8s ease;
}
.about img:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 70px rgba(32, 26, 26, 0.18);
}
.about .col-lg-6:last-child {
    padding-left: 40px;
}
.about .text-gold {
    color: var(--gold-dark) !important;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    line-height: 1.5;
}
.about .title {
    color: #201a1a;
    font-family: var(--font-cinzel);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.01em;
}
.about .title::after {
    content: "";
    display: block;
    width: 55px;
    height: 1px;
    margin-top: 22px;
    background:
        linear-gradient(
            90deg,
            var(--gold-primary),
            var(--gold-dark)
        );
}
.about p {
    max-width: 650px;
    color: rgba(32, 26, 26, 0.68) !important;
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.9;
    letter-spacing: 0.01em;
}
.about .book-now1 {
    position: relative;
    padding: 12px 26px;
    border: 1px solid var(--gold-dark);
    color: var(--gold-dark);
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    overflow: hidden;
    transition:
        color 0.4s ease,
        background 0.4s ease,
        border-color 0.4s ease,
        box-shadow 0.4s ease,
        transform 0.4s ease;
}
.about .book-now1:hover {
    background: var(--gold-primary);
    border-color: var(--gold-primary);
    color: #201a1a;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.25);
}
@media (max-width: 991.98px) {
    .about {
        padding: 90px 0;
    }
    .about .col-lg-6:last-child {
        padding-left: 12px;
    }
    .about img {
        height: 500px;
    }
}
@media (max-width: 767.98px) {
    .about {
        padding: 75px 0;
    }
    .about img {
        height: 420px;
    }
    .about .title {
        font-size: 2.25rem;
    }
    .about p {
        font-size: 0.95rem;
        line-height: 1.8;
    }
}
@media (max-width: 576px) {
    .about {
        padding: 65px 0;
    }
    .about img {
        height: 350px;
    }
    .about .title {
        font-size: 2rem;
    }
    .about .text-gold {
        font-size: 0.7rem;
    }
    .about p {
        font-size: 0.9rem;
    }
}

/* CHILDREN POLICY */
.children-policy {
    padding: 100px 0;
    background-color: #f5f1eb;
}
.children-policy-inner {
    max-width: 750px;
    margin: 0 auto;
    padding: 70px 50px;
    border: 1px solid rgba(168, 138, 90, 0.45);
    position: relative;
}
.children-policy-inner::before {
    content: "";
    position: absolute;
    top: 12px;
    right: 12px;
    bottom: 12px;
    left: 12px;
    border: 1px solid rgba(168, 138, 90, 0.18);
    pointer-events: none;
}
.children-policy-eyebrow {
    display: inline-block;
    margin-bottom: 20px;
    color: #a88a5a;
    font-family: "Jost", sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
}
.children-policy h2 {
    position: relative;
    margin: 0 0 25px;
    color: #26332d;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(48px, 5vw, 70px);
    font-weight: 400;
    line-height: 0.95;
    letter-spacing: -2px;
}
.children-policy h2 span {
    color: #a88a5a;
    font-style: italic;
}
.children-policy p {
    position: relative;
    max-width: 560px;
    margin: 0 auto;
    color: #666b66;
    font-family: "Jost", sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: normal;
}
@media (max-width: 767px) {
    .children-policy {
        padding: 70px 15px;
    }
    .children-policy-inner {
        padding: 60px 25px;
    }
    .children-policy-eyebrow {
        font-size: 10px;
        letter-spacing: 2.5px;
    }
    .children-policy h2 {
        font-size: 46px;
        line-height: 1;
    }
    .children-policy p {
        font-size: 14px;
        line-height: 1.85;
    }
}
@media (max-width: 480px) {
    .children-policy {
        padding: 60px 15px;
    }
    .children-policy-inner {
        padding: 55px 20px;
    }
    .children-policy h2 {
        font-size: 40px;
    }
    .children-policy p {
        font-size: 15px;
    }
} 

/* ACCOMMODATION / ROOMS */
.sector {
    position: relative;
    padding: 110px 0;
    background: #ffffff;
    color: #201a1a;
    overflow: hidden;
}
.sector::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    top: -300px;
    left: -250px;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(212, 175, 55, 0.06) 0%,
            transparent 70%
        );
    pointer-events: none;
}
.sector .text-center {
    position: relative;
    z-index: 1;
}
.sector .text-gold {
    color: var(--gold-dark) !important;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    letter-spacing: 0.25em;
}
.sector .title {
    color: #201a1a;
    font-family: var(--font-cinzel);
    font-size: clamp(2.3rem, 4vw, 3.2rem);
    font-weight: 500;
    line-height: 1.2;
}
.sector .title::after {
    content: "";
    display: block;
    width: 55px;
    height: 1px;
    margin: 20px auto 0;
    background:
        linear-gradient(
            90deg,
            var(--gold-primary),
            var(--gold-dark)
        );
}
.owl-rooms {
    position: relative;
    z-index: 1;
    padding: 10px 5px 25px;
}
.owl-rooms .item {
    height: 100%;
    padding: 10px 5px;
}
.suite-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #ffffff !important;
    border: 1px solid rgba(212, 175, 55, 0.25) !important;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(32, 26, 26, 0.08);
    transition:
        transform 0.5s ease,
        border-color 0.5s ease,
        box-shadow 0.5s ease;
}
.suite-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.8) !important;
    box-shadow: 0 25px 55px rgba(32, 26, 26, 0.14);
}
.suite-img-wrapper {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: #eee;
}
.suite-img-wrapper img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition:
        transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        filter 0.6s ease;
}
.suite-card:hover .suite-img-wrapper img {
    transform: scale(1.06);
    filter:
        brightness(1.03)
        saturate(1.04);
}
.suite-img-wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            transparent 60%,
            rgba(0, 0, 0, 0.18) 100%
        );
    pointer-events: none;
}
.suite-card > .p-4 {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 28px !important;
}
.sector .room-name {
    color: #201a1a;
    font-family: var(--font-cinzel);
    font-size: 1.45rem;
    font-weight: 500;
    line-height: 1.35;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}
.suite-card:hover .room-name {
    color: var(--gold-dark);
}
.suite-card p {
    color: rgba(32, 26, 26, 0.62) !important;
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.8;
    margin-bottom: 24px !important;
}
.suite-card .book-now {
    align-self: flex-start;
    margin-left: 0;
    margin-top: auto;
    padding: 11px 23px;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    box-shadow:  0 8px 20px rgba(212, 175, 55, 0.12);
}
.owl-rooms .owl-nav {
    margin-top: 15px;
}
.owl-rooms .owl-nav button.owl-prev,
.owl-rooms .owl-nav button.owl-next {
    width: 48px;
    height: 48px;

    margin: 0 6px !important;

    border: 1px solid rgba(212, 175, 55, 0.6) !important;

    border-radius: 50% !important;

    background: #ffffff !important;

    color: var(--gold-dark) !important;

    font-size: 22px !important;

    line-height: 1;
    transition:
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}
.owl-rooms .owl-nav button.owl-prev:hover,
.owl-rooms .owl-nav button.owl-next:hover {
    background: var(--gold-primary) !important;
    border-color: var(--gold-primary) !important;
    color: #201a1a !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.2);
}
.owl-rooms .owl-dots {
    margin-top: 10px;
}
.owl-rooms .owl-dot span {
    width: 7px !important;
    height: 7px !important;
    margin: 5px !important;
    background: rgba(32, 26, 26, 0.2) !important;
    transition:
        width 0.3s ease,
        background 0.3s ease;
}
.owl-rooms .owl-dot.active span {
    width: 25px !important;
    background: var(--gold-primary) !important;
}
@media (max-width: 991.98px) {
    .sector {
        padding: 90px 0;
    }
    .suite-img-wrapper {
        height: 260px;
    }
    .suite-card > .p-4 {
        padding: 25px !important;
    }
}
@media (max-width: 767.98px) {
    .sector {
        padding: 75px 0;
    }
    .sector .title {
        font-size: 2.4rem;
    }
    .suite-img-wrapper {
        height: 280px;
    }
    .suite-card > .p-4 {
        padding: 24px !important;
    }
}
@media (max-width: 576px) {
    .sector {
        padding: 65px 0;
    }
    .sector .title {
        font-size: 2.1rem;
    }
    .owl-rooms {
        padding-left: 5px;
        padding-right: 5px;
    }
    .owl-rooms .item {
        padding: 8px 4px;
    }
    .suite-img-wrapper {
        height: 250px;
    }
    .sector .room-name {
        font-size: 1.3rem;
    }
    .suite-card p {
        font-size: 0.84rem;
    }
}

/*  FACILITIES / WHAT WE OFFER */
.facilities {
    position: relative;
    padding: 110px 0;
    background-color: #f5f1eb;
    color: #272535;
    overflow: hidden;
}
.facilities::before {
    content: "";
    position: absolute;
    width: 550px;
    height: 550px;
    top: -300px;
    right: -220px;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(212, 175, 55, 0.10) 0%,
            rgba(212, 175, 55, 0.04) 35%,
            transparent 70%
        );
    pointer-events: none;
}
.facilities::after {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    bottom: -250px;
    left: -220px;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(170, 124, 17, 0.07) 0%,
            transparent 70%
        );
    pointer-events: none;
}
.facilities .container {
    position: relative;
    z-index: 2;
}
.facilities-heading {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}
.facilities-eyebrow {
    display: block;
    margin-bottom: 12px;
    color: #aa7c11;
    font-family: "Jost", sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.30em;
    text-transform: uppercase;
}
.facilities-heading h2 {
    margin: 0;
    color: #272535;
    font-family: var(--font-cinzel);
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.04em;
}
.facilities-line {
    width: 55px;
    height: 2px;
    margin: 20px auto;
    background:
        linear-gradient(
            90deg,
            #aa7c11,
            #d4af37
        );
}
.facilities-heading p {
    max-width: 600px;
    margin: 0 auto;
    color: #77727a;
    font-family: "Jost", sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.8;
}
.facilities .row {
    position: relative;
    z-index: 2;
}
.box-icon {
    position: relative;
    height: 100%;
    padding: 40px 28px 35px;
    text-align: center;
    background:  rgba(255, 255, 255, 0.40);
    border: 1px solid rgba(170, 124, 17, 0.18);
    transition:
        transform 0.45s cubic-bezier(0.165, 0.84, 0.44, 1),
        background-color 0.45s ease,
        border-color 0.45s ease,
        box-shadow 0.45s ease;
    overflow: hidden;
}
.box-icon::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background:
        linear-gradient(
            90deg,
            #aa7c11,
            #d4af37
        );
    transform: translateX(-50%);
    transition: width 0.45s ease;
}
.box-icon::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background: #d4af37;
    transform: translateX(-50%);
    transition: width 0.45s ease;
}
.box-icon:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.75);
    border-color: rgba(212, 175, 55, 0.55);
    box-shadow:
        0 20px 45px rgba(39, 37, 53, 0.10),
        0 5px 20px rgba(212, 175, 55, 0.07);
}
.box-icon:hover::before {
    width: 70px;
}
.box-icon:hover::after {
    width: 35px;
}
.facility-number {
    position: absolute;
    top: 15px;
    right: 18px;
    color: rgba(170, 124, 17, 0.45);
    font-family: "Jost", sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.15em;
}
.circle {
    position: relative;
    width: 82px;
    height: 82px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(212, 175, 55, 0.55);
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(212, 175, 55, 0.11) 0%,
            rgba(255, 255, 255, 0.30) 70%
        );
    transition:
        transform 0.45s ease,
        background 0.45s ease,
        border-color 0.45s ease,
        box-shadow 0.45s ease;
}
.circle::before {
    content: "";
    position: absolute;
    inset: 7px;
    border:  1px solid rgba(212, 175, 55, 0.16);
    border-radius: 50%;
    transition: border-color 0.4s ease;
}
.circle i {
    position: relative;
    z-index: 2;
    color: #aa7c11;
    font-size: 1.7rem;
    transition:
        color 0.35s ease,
        transform 0.35s ease;
}
.box-icon:hover .circle {
    transform: scale(1.08);
    border-color: #d4af37;
    background:
        radial-gradient(
            circle,
            rgba(212, 175, 55, 0.18),
            rgba(255, 255, 255, 0.50)
        );
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.18);
}
.box-icon:hover .circle::before {
    border-color: rgba(212, 175, 55, 0.35);
}
.box-icon:hover .circle i {
    color: #d4af37;
    transform: scale(1.12);
}
.box-icon h3 {
    margin: 0 0 14px;
    color: #272535;
    font-family: var(--font-cinzel);
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.02em;
    transition: color 0.35s ease;
}
.box-icon:hover h3 {
    color: #aa7c11;
}
.box-icon p {
    margin: 0;
    color: #77727a;
    font-family: "Jost", sans-serif;
    font-size: 0.88rem;
    font-weight: 400;
    line-height: 1.75;
}
.facilities .col-lg-3 {
    transition: transform 0.4s ease;
}
@media (max-width: 991.98px) {
    .facilities {
        padding: 90px 0;
    }
    .facilities-heading h2 {
        font-size: 2.7rem;
    }
    .box-icon {
        padding: 35px 22px;
    }
    .circle {
        width: 80px;
        height: 80px;
    }
    .circle i {
        font-size: 1.65rem;
    }
}
@media (max-width: 767.98px) {
    .facilities {
        padding: 80px 0;
    }
    .facilities-heading {
        padding: 0 15px;
    }
    .facilities-heading h2 {
        font-size: 2.35rem;
    }
    .facilities-heading p {
        font-size: 0.9rem;
        line-height: 1.75;
    }
    .facilities .row {
        margin-top: 35px !important;
    }
    .box-icon {
        padding: 35px 25px;
    }
}
@media (max-width: 576px) {
    .facilities {
        padding: 70px 0;
    }
    .facilities-eyebrow {
        font-size: 0.65rem;
        letter-spacing: 0.24em;
    }
    .facilities-heading h2 {
        font-size: 2rem;
    }
    .facilities-heading p {
        font-size: 0.85rem;
    }
    .facilities-line {
        width: 45px;
        margin: 16px auto;
    }
    .box-icon {
        padding: 35px 22px;
    }
    .facility-number {
        top: 12px;
        right: 14px;
    }
    .circle {
        width: 76px;
        height: 76px;
        margin-bottom: 22px;
    }
    .circle i {
        font-size: 1.5rem;
    }
    .box-icon h3 {
        font-size: 1.08rem;
    }
    .box-icon p {
        font-size: 0.84rem;
        line-height: 1.7;
    }
}
@media (max-width: 400px) {
    .facilities {
        padding: 60px 0;
    }
    .facilities-heading h2 {
        font-size: 1.8rem;
    }
    .box-icon {
        padding: 30px 18px;
    }
}
@media (prefers-reduced-motion: reduce) {
    .box-icon,
    .circle,
    .circle i,
    .facilities .col-lg-3 {
        transition: none !important;
    }
}

/* BOOKING / CTA SECTION */
.booking-section {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background:
        linear-gradient(
            90deg,
            rgba(7, 11, 18, 0.82),
            rgba(7, 11, 18, 0.48),
            rgba(7, 11, 18, 0.78)
        ),
        url("../image/booking-bg.jpg") center center / cover no-repeat;
    isolation: isolate;
}
.booking-section::before {
    content: "";
    position: absolute;
    inset: -5%;
    z-index: -2;
    background:
        url("../image/booking-bg.jpg")
        center center / cover no-repeat;
    transform: scale(1.05);
    animation: bookingImageZoom 14s ease-in-out infinite alternate;
}
.booking-section::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(
            180deg,
            rgba(7, 11, 18, 0.72) 0%,
            rgba(7, 11, 18, 0.35) 35%,
            rgba(7, 11, 18, 0.55) 65%,
            rgba(7, 11, 18, 0.88) 100%
        );
    pointer-events: none;
}
.booking-section .container {
    position: relative;
    z-index: 2;
}
.booking-section .container::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background:
        radial-gradient(
            circle,
            rgba(212, 175, 55, 0.12) 0%,
            rgba(212, 175, 55, 0.04) 35%,
            transparent 70%
        );
    pointer-events: none;
    z-index: -1;
}
.booking-content {
    max-width: 850px;
    margin: 0 auto;
    padding: 90px 30px;
}
.booking-content > span {
    display: inline-block;
    margin-bottom: 18px;
    color: #D4AF37;
    font-family: "Jost", sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.38em;
    text-transform: uppercase;
    position: relative;
}
.booking-content > span::before,
.booking-content > span::after {
    content: "";
    display: inline-block;
    width: 38px;
    height: 1px;
    vertical-align: middle;
    background: #D4AF37;
    opacity: 0.7;
}
.booking-content > span::before {
    margin-right: 14px;
}
.booking-content > span::after {
    margin-left: 14px;
}
.booking-content h2 {
    margin: 0 0 25px;
    color: #ffffff;
    font-family: var(--font-cinzel);
    font-size: clamp(2.7rem, 6vw, 5rem);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: 0.03em;
    text-shadow:  0 5px 30px rgba(0, 0, 0, 0.6);
}
.booking-content h2::after {
    content: "";
    display: block;
    width: 70px;
    height: 1px;
    margin: 25px auto 0;
    background:
        linear-gradient(
            90deg,
            transparent,
            #D4AF37,
            transparent
        );
}
.booking-content p {
    max-width: 650px;
    margin: 0 auto 38px;
    color: rgba(255, 255, 255, 0.82);
    font-family: "Jost", sans-serif;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.9;
    letter-spacing: 0.035em;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7);
}
.booking-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}
.booking-buttons .btn-book {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    padding: 14px 28px;
    background:
        linear-gradient(
            135deg,
            #F3D76A 0%,
            #D4AF37 45%,
            #AA7C11 100%
        );

    color: #0b0b0b;
    border: 1px solid #D4AF37;
    border-radius: 0;
    font-family: "Jost", sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(212, 175, 55, 0.2);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}
.booking-buttons .btn-book::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 80%;
    height: 100%;
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.55),
            transparent
        );
    transform: skewX(-20deg);
    transition: left 0.7s ease;
}
.booking-buttons .btn-book:hover::before {
    left: 140%;
}
.booking-buttons .btn-book:hover {
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}
.booking-buttons .btn-outline-light {
    min-width: 150px;
    padding: 14px 28px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 0;
    background: rgba(255, 255, 255, 0.03);
    color: #ffffff;
    font-family: "Jost", sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    transition:
        color 0.35s ease,
        background 0.35s ease,
        border-color 0.35s ease,
        transform 0.35s ease;
}
.booking-buttons .btn-outline-light:hover {
    color: #000;
    background: #ffffff;
    border-color: #ffffff;
    transform: translateY(-3px);
}
@keyframes bookingImageZoom {
    0% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1.13);
    }
}
@media (max-width: 991.98px) {
    .booking-section {
        min-height: 560px;
    }
    .booking-content {
        padding: 75px 25px;
    }
    .booking-content h2 {
        font-size: clamp(2.5rem, 8vw, 4rem);
    }
}
@media (max-width: 576px) {
    .booking-section {
        min-height: 600px;
        background-position: center;
    }
    .booking-content {
        padding: 70px 18px;
    }
    .booking-content > span {
        font-size: 0.68rem;
        letter-spacing: 0.25em;
    }
    .booking-content > span::before,
    .booking-content > span::after {
        width: 20px;
    }
    .booking-content > span::before {
        margin-right: 8px;
    }
    .booking-content > span::after {
        margin-left: 8px;
    }
    .booking-content h2 {
        font-size: 2.5rem;
        line-height: 1.15;
    }
    .booking-content p {
        font-size: 0.9rem;
        line-height: 1.75;
        margin-bottom: 30px;
    }
    .booking-buttons {
        flex-direction: column;
        width: 100%;
    }
    .booking-buttons .btn-book,
    .booking-buttons .btn-outline-light {
        width: 100%;
        max-width: 280px;
    }
}
@media (prefers-reduced-motion: reduce) {
    .booking-section::before {
        animation: none;
    }
    .booking-buttons .btn-book,
    .booking-buttons .btn-outline-light {
        transition: none;
    }

}

/*  GALLERY SECTION */
.gallery-section {
    position: relative;
    padding: 110px 0 120px;
    background: #ffffff;
    color: #272535;
    overflow: hidden;
}
.gallery-section::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
    background:
        radial-gradient(
            circle,
            rgba(212, 175, 55, 0.08) 0%,
            rgba(212, 175, 55, 0.035) 30%,
            transparent 70%
        );
    pointer-events: none;
}
.gallery-heading {
    position: relative;
    max-width: 750px;
    margin: 0 auto 55px;
    z-index: 2;
}
.gallery-eyebrow {
    display: block;
    margin-bottom: 15px;
    color: #AA7C11;
    font-family: "Jost", sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.35em;
    text-transform: uppercase;
}
.gallery-eyebrow::before,
.gallery-eyebrow::after {
    content: "";
    display: inline-block;
    width: 35px;
    height: 1px;
    margin: 0 12px;
    vertical-align: middle;
    background: #D4AF37;
    opacity: 0.75;
}
.gallery-title {
    margin: 0 0 20px;
    color: #272535;
    font-family: var(--font-cinzel);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: 0.03em;
}
.gallery-description {
    max-width: 620px;
    margin: 0 auto;
    color: rgba(39, 37, 53, 0.62);
    font-family: "Jost", sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.03em;
}
.owl-gallery {
    position: relative;
    width: 100%;
    padding: 0 35px;
    z-index: 2;
}
.owl-gallery .owl-item {
    padding: 0 7px;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    background: #f5f1eb;
    cursor: pointer;
}
.gallery-image {
    position: relative;
    width: 100%;
    height: 430px;
    overflow: hidden;
    border: 1px solid rgba(170, 124, 17, 0.25);
    background: #eeeeee;
    box-shadow:  0 12px 35px rgba(39, 37, 53, 0.08);
}
.gallery-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter:
        brightness(0.92)
        contrast(1.05)
        saturate(0.92);
    transform: scale(1.02);
    transition:
        transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        filter 0.7s ease;
}
.gallery-item:hover .gallery-image img {
    transform: scale(1.10);
    filter:
        brightness(1)
        contrast(1.05)
        saturate(1.05);
}
.gallery-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            transparent 45%,
            rgba(0, 0, 0, 0.58) 100%
        );
    opacity: 0.65;
    pointer-events: none;
    transition: opacity 0.5s ease;
}
.gallery-item:hover .gallery-image::after {
    opacity: 0.4;
}
.gallery-overlay {
    position: absolute;
    left: 22px;
    bottom: 18px;
    z-index: 3;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(212, 175, 55, 0.8);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #D4AF37;
    font-family: "Jost", sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    opacity: 0;
    transform: translateY(10px);
    transition:
        opacity 0.4s ease,
        transform 0.4s ease;
}
.gallery-item:hover .gallery-overlay {
    opacity: 1;
    transform: translateY(0);
}
.owl-gallery .owl-nav {
    margin: 0 !important;
}
.owl-gallery .owl-prev,
.owl-gallery .owl-next {
    position: absolute;
    top: 50%;
    width: 52px;
    height: 52px;
    margin: 0 !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transform: translateY(-50%);
    border: 1px solid rgba(170, 124, 17, 0.65) !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.95) !important;
    color: #AA7C11 !important;
    font-size: 24px !important;
    line-height: 1 !important;
    box-shadow:  0 8px 25px rgba(39, 37, 53, 0.12);
    transition:
        background 0.35s ease,
        color 0.35s ease,
        border-color 0.35s ease,
        transform 0.35s ease,
        box-shadow 0.35s ease;
}
.owl-gallery .owl-prev {
    left: 18px;
}
.owl-gallery .owl-next {
    right: 18px;
}
.owl-gallery .owl-prev:hover,
.owl-gallery .owl-next:hover {
    background: #D4AF37 !important;
    border-color: #D4AF37 !important;
    color: #ffffff !important;
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.28);
}
.owl-gallery .owl-dots {
    margin-top: 35px;
    text-align: center;
}
.owl-gallery .owl-dot {
    margin: 0 5px !important;
}
.owl-gallery .owl-dot span {
    width: 6px !important;
    height: 6px !important;
    margin: 0 !important;
    background: rgba(39, 37, 53, 0.22) !important;
    border-radius: 50%;
    transition:
        width 0.35s ease,
        background 0.35s ease,
        border-radius 0.35s ease;
}
.owl-gallery .owl-dot.active span {
    width: 28px !important;
    background: #D4AF37 !important;
    border-radius: 10px;
}
.gallery-more {
    position: relative;
    margin-top: 45px;
    z-index: 5;
}
.gallery-view-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 13px 28px;
    border: 1px solid #D4AF37;
    border-radius: 0;
    background: transparent;
    color: #272535;
    font-family: "Jost", sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    transition:
        color 0.35s ease,
        background 0.35s ease,
        box-shadow 0.35s ease,
        transform 0.35s ease;
}
.gallery-view-btn span {
    font-size: 1.1rem;
    line-height: 1;
    transition: transform 0.35s ease;
}
.gallery-view-btn:hover {
    color: #ffffff;
    background: #D4AF37;
    border-color: #D4AF37;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.25);
}
.gallery-view-btn:hover span {
    transform: translateX(5px);
}
@media (max-width: 991.98px) {
    .gallery-section {
        padding: 90px 0 100px;
    }
    .gallery-heading {
        margin-bottom: 45px;
    }
    .owl-gallery {
        padding: 0 25px;
    }
    .gallery-image {
        height: 380px;
    }
    .owl-gallery .owl-prev {
        left: 8px;
    }
    .owl-gallery .owl-next {
        right: 8px;
    }
}
@media (max-width: 576px) {
    .gallery-section {
        padding: 75px 0 80px;
    }
    .gallery-heading {
        padding: 0 20px;
        margin-bottom: 35px;
    }
    .gallery-eyebrow {
        font-size: 0.65rem;
        letter-spacing: 0.25em;
    }
    .gallery-eyebrow::before,
    .gallery-eyebrow::after {
        width: 20px;
        margin: 0 7px;
    }
    .gallery-title {
        font-size: 2.35rem;
    }
    .gallery-description {
        font-size: 0.85rem;
        line-height: 1.7;
    }
    .owl-gallery {
        padding: 0 18px;
    }
    .owl-gallery .owl-item {
        padding: 0 4px;
    }
    .gallery-image {
        height: 360px;
    }
    .owl-gallery .owl-prev,
    .owl-gallery .owl-next {
        width: 42px;
        height: 42px;
        font-size: 18px !important;
    }
    .owl-gallery .owl-prev {
        left: 5px;
    }
    .owl-gallery .owl-next {
        right: 5px;
    }
    .gallery-overlay {
        opacity: 1;
        transform: translateY(0);
        width: 36px;
        height: 36px;
        left: 15px;
        bottom: 15px;
    }
    .gallery-more {
        margin-top: 35px;
    }
    .gallery-view-btn {
        padding: 12px 22px;
        font-size: 0.68rem;
        letter-spacing: 0.16em;
    }
}
@media (prefers-reduced-motion: reduce) {
    .gallery-image img {
        transform: none !important;
        transition: none !important;
    }
    .gallery-item:hover .gallery-image img {
        transform: none !important;
    }
}

/* RESTAURANT PREVIEW */
.restaurant-preview {
    position: relative;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    min-height: 650px;
    background: #f5f1eb;
    overflow: hidden;
}
.restaurant-preview-image {
    position: relative;
    min-height: 650px;
    overflow: hidden;
}
.restaurant-preview-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter:
        brightness(0.88)
        contrast(1.06)
        saturate(0.92);
    transform: scale(1.02);
    transition:
        transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        filter 0.8s ease;
}
.restaurant-preview:hover .restaurant-preview-image img {
    transform: scale(1.08);
    filter:
        brightness(0.98)
        contrast(1.04)
        saturate(1);
}
.restaurant-preview-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            transparent 60%,
            rgba(245, 241, 235, 0.95) 100%
        );
    pointer-events: none;
}
.restaurant-preview-content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px clamp(45px, 7vw, 110px);
    z-index: 2;
}
.restaurant-preview-content::before {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    top: 50%;
    left: 20%;
    transform: translate(-50%, -50%);
    background:
        radial-gradient(
            circle,
            rgba(212, 175, 55, 0.12) 0%,
            rgba(212, 175, 55, 0.045) 35%,
            transparent 70%
        );

    pointer-events: none;
    z-index: -1;
}
.restaurant-label {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
    color: #AA7C11;
    font-family: "Jost", sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.35em;
    text-transform: uppercase;
}
.restaurant-label::before {
    content: "";
    display: inline-block;
    width: 38px;
    height: 1px;
    margin-right: 14px;
    vertical-align: middle;
    background: #D4AF37;
    opacity: 0.9;
}
.restaurant-preview-content h2 {
    position: relative;
    margin: 0 0 28px;
    color: #272535;
    font-family: var(--font-cinzel);
    font-size: clamp(2.7rem, 4.5vw, 4.5rem);
    font-weight: 500;
    line-height: 1.12;
    letter-spacing: 0.02em;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
}
.restaurant-preview-content h2::after {
    content: "";
    display: block;
    width: 65px;
    height: 1px;
    margin-top: 25px;
    background:
        linear-gradient(
            90deg,
            #D4AF37,
            rgba(212, 175, 55, 0)
        );
}
.restaurant-preview-content p {
    max-width: 560px;
    margin: 0 0 35px;
    color: rgba(39, 37, 53, 0.68);
    font-family: "Jost", sans-serif;
    font-size: 0.96rem;
    font-weight: 400;
    line-height: 1.9;
    letter-spacing: 0.025em;
}
.restaurant-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    gap: 15px;
    padding: 14px 26px;
    border: 1px solid #B28618;
    background: transparent;
    color: #9A7110;
    font-family: "Jost", sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    overflow: hidden;
    transition:
        color 0.35s ease,
        background 0.35s ease,
        transform 0.35s ease,
        box-shadow 0.35s ease;
}
.restaurant-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 80%;
    height: 100%;
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.5),
            transparent
        );
    transform: skewX(-20deg);
    transition: left 0.7s ease;
}
.restaurant-button:hover::before {
    left: 140%;
}
.restaurant-button span {
    font-size: 1.1rem;
    line-height: 1;
    transition: transform 0.35s ease;
}
.restaurant-button:hover {
    color: #ffffff;
    background: #B28618;
    border-color: #B28618;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(178, 134, 24, 0.25);
}
.restaurant-button:hover span {
    transform: translateX(5px);
}
.restaurant-preview-content {
    border-left: 1px solid rgba(212, 175, 55, 0.12);
}
@media (max-width: 991.98px) {
    .restaurant-preview {
        grid-template-columns: 1fr;
        min-height: auto;
        background: #f5f1eb;
    }
    .restaurant-preview-image {
        min-height: 500px;
        height: 500px;
    }
    .restaurant-preview-image::after {
        background:
            linear-gradient(
                180deg,
                transparent 55%,
                rgba(245, 241, 235, 0.95) 100%
            );
    }
    .restaurant-preview-content {
        padding: 70px 50px 80px;
        border-left: none;
        border-top: 1px solid rgba(212, 175, 55, 0.12);
    }
    .restaurant-preview-content h2 {
        font-size: clamp(2.7rem, 7vw, 4rem);
    }
}
@media (max-width: 576px) {
    .restaurant-preview-image {
        min-height: 360px;
        height: 360px;
    }
    .restaurant-preview-image::after {
        background:
            linear-gradient(
                180deg,
                transparent 45%,
                rgba(245, 241, 235, 0.95) 100%
            );
    }
    .restaurant-preview-content {
        padding: 60px 25px 70px;
    }
    .restaurant-label {
        font-size: 0.63rem;
        letter-spacing: 0.25em;
    }
    .restaurant-label::before {
        width: 25px;
        margin-right: 9px;
    }
    .restaurant-preview-content h2 {
        font-size: 2.45rem;
        line-height: 1.15;
        margin-bottom: 22px;
    }
    .restaurant-preview-content h2::after {
        margin-top: 20px;
    }
    .restaurant-preview-content p {
        font-size: 0.88rem;
        line-height: 1.75;
        margin-bottom: 30px;
        color: rgba(39, 37, 53, 0.7);
    }
    .restaurant-button {
        width: 100%;
        padding: 13px 20px;
        font-size: 0.65rem;
        letter-spacing: 0.13em;
    }
}
@media (prefers-reduced-motion: reduce) {
    .restaurant-preview-image img {
        transform: none !important;
        transition: none !important;
    }
    .restaurant-button {
        transition: none;
    }
}

/* LUXURY TESTIMONIALS */
.testimonials {
    position: relative;
    padding: 100px 0;
    background: #ffffff;
    overflow: hidden;
}
.testimonials::before {
    content: "";
    position: absolute;
    top: 55px;
    left: 8%;
    right: 8%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        #e4dcc8 20%,
        #c7a75b 50%,
        #e4dcc8 80%,
        transparent
    );
    opacity: 0.65;
}
.testimonials::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 180px;
    background: linear-gradient(
        180deg,
        transparent,
        rgba(247, 244, 236, 0.45)
    );
    pointer-events: none;
}
.testimonials .container {
    position: relative;
    z-index: 2;
}
.testimonials .text-gold {
    color: #9a7738 !important;
}
.testimonials .title {
    margin: 0;
    color: #241f17;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 52px;
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -0.4px;
}
.testimonials .gold-line-divider {
    width: 45px;
    height: 1px;
    background: #c7a75b;
    margin-left: auto;
    margin-right: auto;
}
.testimonials .tracking-widest {
    letter-spacing: 0.22em;
}
.testimonials .text-uppercase {
    text-transform: uppercase;
}
.luxury-testimonial-carousel {
    position: relative;
    margin-top: 55px;
    padding: 0 42px;
}
.luxury-testimonial-carousel .owl-stage {
    display: flex;
}
.luxury-testimonial-carousel .owl-item {
    display: flex;
    height: auto;
}
.luxury-testimonial-carousel .item {
    width: 100%;
    height: 100%;
    display: flex;
}
.testimonial-card {
    position: relative;
    width: 100%;
    min-height: 370px;
    display: flex;
    flex-direction: column;
    padding: 45px 42px !important;
    background: #f7f4ec !important;
    border: 1px solid #e4dcc8;
    border-radius: 0 !important;
    box-shadow: none !important;
    overflow: hidden;
    transition:
        background 0.4s ease,
        border-color 0.4s ease,
        transform 0.4s ease;
}
.testimonial-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 55px;
    height: 1px;
    background: #c7a75b;
}
.testimonial-card::after {
    content: "";
    position: absolute;
    right: -80px;
    bottom: -80px;
    width: 190px;
    height: 190px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(199, 167, 91, 0.09) 0%,
        rgba(199, 167, 91, 0.035) 45%,
        transparent 72%
    );
    pointer-events: none;
}
.testimonial-card:hover {
    background: #fbfaf6 !important;
    border-color: #d4c39e;
    transform: translateY(-4px);
}
.testimonial-card .quote-icon {
    position: absolute;
    top: 25px;
    right: 32px;
    color: rgba(199, 167, 91, 0.18);
    font-size: 58px;
    line-height: 1;
    z-index: 0;
}
.rating-stars {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 20px !important;
}
.rating-stars i {
    color: #c7a75b !important;
    font-size: 12px;
    transition: transform 0.3s ease;
}
.testimonial-card:hover .rating-stars i {
    transform: translateY(-1px);
}
.testimonial-card p {
    position: relative;
    z-index: 2;
    flex: 1;
    margin: 0 0 28px !important;
    color: #655e52 !important;
    font-family: "Jost", "Montserrat", sans-serif;
    font-size: 14px !important;
    font-weight: 400 !important;
    line-height: 1.9 !important;
    font-style: italic;
    letter-spacing: 0.05px;
}
.testimonial-card .border-top {
    position: relative;
    z-index: 2;
    border-color: #ded5bd !important;
    padding-top: 18px !important;
    margin-top: auto !important;
}
.testimonial-card h4 {
    color: #241f17 !important;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 19px !important;
    font-weight: 600;
    line-height: 1.2;
}
.testimonial-card .text-gold {
    color: #9a7738 !important;
}
.testimonial-card .tracking-wider {
    letter-spacing: 0.14em;
}
.testimonial-card .fs-8 {
    font-size: 10px !important;
}
.luxury-testimonial-carousel .owl-nav {
    position: static;
    margin: 0;
}
.luxury-testimonial-carousel .owl-nav button.owl-prev,
.luxury-testimonial-carousel .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    width: 46px;
    height: 46px;
    margin: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #241f17 !important;
    background: #ffffff !important;
    border: 1px solid #d8ccb1 !important;
    border-radius: 0 !important;
    transform: translateY(-50%);
    transition:
        background 0.35s ease,
        color 0.35s ease,
        border-color 0.35s ease;
}
.luxury-testimonial-carousel .owl-nav button.owl-prev {
    left: -5px;
}
.luxury-testimonial-carousel .owl-nav button.owl-next {
    right: -5px;
}
.luxury-testimonial-carousel .owl-nav button.owl-prev:hover,
.luxury-testimonial-carousel .owl-nav button.owl-next:hover {
    color: #ffffff !important;
    background: #241f17 !important;
    border-color: #241f17 !important;
}
.luxury-testimonial-carousel .owl-nav button i {
    font-size: 12px;
}
.luxury-testimonial-carousel .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-top: 35px;
}
.luxury-testimonial-carousel .owl-dot {
    margin: 0 !important;
}
.luxury-testimonial-carousel .owl-dot span {
    width: 7px !important;
    height: 7px !important;
    margin: 0 !important;
    border-radius: 50% !important;
    background: #d8cfbd !important;
    transition:
        width 0.35s ease,
        background 0.35s ease;
}
.luxury-testimonial-carousel .owl-dot.active span {
    width: 25px !important;
    border-radius: 10px !important;
    background: #c7a75b !important;
}
.testimonials .glass-card {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
}
.testimonials .reveal-up {
    opacity: 0;
    transform: translateY(25px);
    transition:
        opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1),
        transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.testimonials .reveal-up.visible {
    opacity: 1;
    transform: translateY(0);
}
.testimonials .delay-1 {
    transition-delay: 0.12s;
}
.testimonials .delay-2 {
    transition-delay: 0.24s;
}
.testimonials .delay-3 {
    transition-delay: 0.36s;
}
@media (max-width: 1199px) {
    .testimonials {
        padding: 80px 0;
    }
    .testimonials .title {
        font-size: 46px;
    }
    .luxury-testimonial-carousel {
        padding: 0 35px;
        margin-top: 45px;
    }
    .testimonial-card {
        min-height: 360px;
        padding: 40px 35px !important;
    }
}
@media (max-width: 991px) {
    .testimonials {
        padding: 70px 0;
    }
    .testimonials .title {
        font-size: 42px;
    }
    .luxury-testimonial-carousel {
        padding: 0 30px;
    }
    .testimonial-card {
        min-height: 350px;
        padding: 38px 32px !important;
    }
    .testimonial-card p {
        font-size: 13.5px !important;
        line-height: 1.85 !important;
    }
    .luxury-testimonial-carousel .owl-nav button.owl-prev,
    .luxury-testimonial-carousel .owl-nav button.owl-next {
        width: 42px;
        height: 42px;
    }
}
@media (max-width: 767px) {
    .testimonials {
        padding: 60px 0;
    }
    .testimonials::before {
        top: 35px;
        left: 12%;
        right: 12%;
    }
    .testimonials .title {
        font-size: 36px;
    }
    .testimonials .text-gold {
        font-size: 10px !important;
    }
    .luxury-testimonial-carousel {
        margin-top: 40px;
        padding: 0 10px;
    }
    .testimonial-card {
        min-height: 350px;
        padding: 35px 27px !important;
    }
    .testimonial-card .quote-icon {
        top: 22px;
        right: 22px;
        font-size: 48px;
    }
    .testimonial-card p {
        font-size: 13px !important;
        line-height: 1.8 !important;
    }
    .luxury-testimonial-carousel .owl-nav {
        display: none;
    }
    .luxury-testimonial-carousel .owl-dots {
        margin-top: 25px;
    }
}
@media (max-width: 480px) {
    .testimonials {
        padding: 55px 0;
    }
    .testimonials .title {
        font-size: 32px;
    }
    .testimonial-card {
        min-height: 340px;
        padding: 32px 22px !important;
    }
    .testimonial-card p {
        font-size: 12.5px !important;
        line-height: 1.75 !important;
    }
    .testimonial-card h4 {
        font-size: 18px !important;
    }
    .rating-stars {
        gap: 4px;
    }
    .rating-stars i {
        font-size: 11px;
    }
}
@media (prefers-reduced-motion: reduce) {
    .testimonials .reveal-up {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .testimonial-card,
    .rating-stars i,
    .luxury-testimonial-carousel .owl-nav button {
        transition: none;
    }
}

/* FOOTER */
.footer {
    position: relative;
    overflow: hidden;
    padding: 85px 0 0;
    background:
        linear-gradient(
            135deg,
            #070b12 0%,
            #0b1018 50%,
            #070b12 100%
        );
    color: rgba(255, 255, 255, 0.7);
    font-family: var(--font-sans, "Jost", sans-serif);
    border-top: 1px solid rgba(212, 175, 55, 0.55);
}
.footer::before {
    content: "";
    position: absolute;
    width: 650px;
    height: 650px;
    top: -380px;
    left: 50%;
    transform: translateX(-50%);
    background:
        radial-gradient(
            circle,
            rgba(212, 175, 55, 0.08) 0%,
            rgba(212, 175, 55, 0.025) 35%,
            transparent 70%
        );
    pointer-events: none;
}
.footer::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(212, 175, 55, 0.35),
            transparent
        );

    pointer-events: none;
}
.footer .container {
    position: relative;
    z-index: 2;
}
.footer > .container > .row:first-child {
    padding-bottom: 65px;
}
.footer .logo {
    display: block;
    width: auto;
    max-width: 180px;
    height: auto;
    margin-bottom: 22px;
    object-fit: contain;
}
.footer p {
    margin: 0;
    color: rgba(255, 255, 255, 0.56);
    font-family: "Jost", sans-serif;
    font-size: 0.86rem;
    font-weight: 300;
    line-height: 1.85;
    letter-spacing: 0.025em;
}
.footer .col-lg-3:first-child p {
    max-width: 310px;
}
.footer-title {
    position: relative;
    display: inline-block;
    margin: 3px 0 30px;
    color: var(--gold-primary, #d4af37);
    font-family: var(--font-cinzel, "Cinzel", serif);
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}
.footer-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 35px;
    height: 1px;
    background:
        linear-gradient(
            90deg,
            var(--gold-primary, #d4af37),
            transparent
        );
}
.footer-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin: 0;
    padding: 0;
}
.footer-nav a {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.62);
    font-family: "Jost", sans-serif;
    font-size: 0.86rem;
    font-weight: 300;
    letter-spacing: 0.04em;
    line-height: 1.5;
    text-decoration: none;
    transition:
        color 0.3s ease,
        transform 0.3s ease;
}
.footer-nav a::before {
    content: "";
    display: inline-block;
    width: 0;
    height: 1px;
    margin-right: 0;
    background: var(--gold-primary, #d4af37);
    transition:
        width 0.3s ease,
        margin-right 0.3s ease;
}
.footer-nav a:hover {
    color: var(--gold-primary, #d4af37);
    transform: translateX(4px);
}
.footer-nav a:hover::before {
    width: 17px;
    margin-right: 8px;
}
.contact-list {
    display: flex;
    flex-direction: column;
    gap: 17px;
    margin: 0 0 26px;
    padding: 0;
    list-style: none;
}
.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    margin: 0;
    padding: 0;
}
.contact-list li > i {
    flex: 0 0 18px;
    width: 18px;
    margin-top: 4px;
    color: var(--gold-primary, #d4af37);
    font-size: 14px;
    text-align: center;
    transition:
        color 0.3s ease,
        transform 0.3s ease;
}
.contact-list li:hover > i {
    color: #e2c35a;
    transform: translateY(-2px);
}
.contact-list a {
    color: rgba(255, 255, 255, 0.62);
    font-family: "Jost", sans-serif;
    font-size: 0.84rem;
    font-weight: 300;
    line-height: 1.65;
    letter-spacing: 0.025em;
    text-decoration: none;
    transition: color 0.3s ease;
}
.contact-list a:hover {
    color: var(--gold-primary, #d4af37);
}
.social-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 5px;
}
.social-row a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.025);
    color: var(--gold-primary, #d4af37);
    font-size: 15px;
    text-decoration: none;
    overflow: hidden;
    transition:
        color 0.35s ease,
        background 0.35s ease,
        border-color 0.35s ease,
        transform 0.35s ease,
        box-shadow 0.35s ease;
}
.social-row a::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--gold-primary, #d4af37);
    transform: scale(0);
    transition: transform 0.35s ease;
    z-index: 0;
}
.social-row a i {
    position: relative;
    z-index: 2;
}
.social-row a:hover {
    color: #070b12;
    border-color: var(--gold-primary, #d4af37);
    transform: translateY(-4px);
    box-shadow:  0 10px 25px rgba(212, 175, 55, 0.2);
}
.social-row a:hover::before {
    transform: scale(1);
}
.map {
    display: block;
    width: 100%;
    height: 215px;
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 0;
    opacity: 0.82;
    filter:
        grayscale(0.35)
        contrast(1.05);
    transition:
        opacity 0.4s ease,
        border-color 0.4s ease,
        filter 0.4s ease;
}
.map:hover {
    opacity: 1;
    border-color: rgba(212, 175, 55, 0.65);
    filter:
        grayscale(0)
        contrast(1.05);
}
.footer-bottom {
    position: relative;
    margin-top: 0;
    padding: 25px 0 27px;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
}
.footer-bottom p {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px;
    margin: 0;
    color: rgba(255, 255, 255, 0.4);
    font-family: "Jost", sans-serif;
    font-size: 0.72rem;
    font-weight: 300;
    line-height: 1.7;
    letter-spacing: 0.08em;
    text-align: center;
}
.copyright-separator {
    display: inline-block;
    margin: 0 5px;
    color: rgba(212, 175, 55, 0.5);
}
.footer-bottom a {
    display: inline-flex;
    align-items: center;
    color: var(--gold-primary, #d4af37);
    text-decoration: none;
    transition:  opacity 0.3s ease;
}
.footer-bottom a:hover {
    opacity: 0.75;
}
.powered-logo {
    display: inline-block;
    width: auto;
    max-width: 95px;
    max-height: 21px;
    height: auto;
    margin-left: 6px;
    object-fit: contain;
    vertical-align: middle;
}
@media (min-width: 992px) {
    .footer .col-lg-3:first-child {
        padding-right: 30px;
    }
    .footer .col-lg-2 {
        padding-left: 20px;
        padding-right: 20px;
    }
    .footer .col-lg-4 {
        padding-left: 20px;
        padding-right: 20px;
    }
    .footer .col-lg-3:last-child {
        padding-left: 15px;
    }
}
@media (max-width: 991.98px) {
    .footer {
        padding-top: 70px;
    }
    .footer > .container > .row:first-child {
        padding-bottom: 50px;
    }
    .footer .logo {
        max-width: 165px;
    }
    .footer-title {
        margin-bottom: 27px;
    }
    .map {
        height: 230px;
    }
}
@media (max-width: 767.98px) {
    .footer {
        padding-top: 60px;
    }
    .footer::before {
        width: 400px;
        height: 400px;
        top: -250px;
    }
    .footer > .container > .row:first-child {
        padding-bottom: 40px;
    }
    .footer .row.gy-5 {
        row-gap: 42px !important;
    }
    .footer .logo {
        max-width: 155px;
        margin-bottom: 18px;
    }
    .footer p {
        font-size: 0.84rem;
        line-height: 1.8;
    }
    .footer-title {
        margin-bottom: 26px;
        font-size: 0.9rem;
        letter-spacing: 0.15em;
    }
    .footer-nav {
        gap: 11px;
    }
    .footer-nav a {
        font-size: 0.84rem;
    }
    .contact-list {
        gap: 15px;
    }
    .contact-list a {
        font-size: 0.81rem;
    }
    .social-row {
        margin-top: 8px;
    }
    .social-row a {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }
    .map {
        height: 240px;
    }
    .footer-bottom {
        margin-top: 5px;
        padding: 22px 0 25px;
    }
    .footer-bottom p {
        font-size: 0.66rem;
        line-height: 1.8;
        letter-spacing: 0.05em;
    }
    .powered-logo {
        max-width: 85px;
        max-height: 19px;
        margin-left: 4px;
    }
}
@media (max-width: 420px) {
    .footer {
        padding-top: 50px;
    }
    .footer > .container > .row:first-child {
        padding-bottom: 35px;
    }
    .footer .row.gy-5 {
        row-gap: 35px !important;
    }
    .footer-title {
        font-size: 0.82rem;
        letter-spacing: 0.14em;
    }
    .contact-list li {
        gap: 10px;
    }
    .contact-list li > i {
        flex-basis: 16px;
        width: 16px;
        font-size: 13px;
    }
    .contact-list a {
        font-size: 0.78rem;
    }
    .map {
        height: 215px;
    }
    .footer-bottom {
        padding-bottom: 22px;
    }
    .footer-bottom p {
        display: block;
        font-size: 0.64rem;
    }
    .copyright-separator {
        margin: 0 3px;
    }
    .powered-logo {
        display: inline-block;
        margin-top: 5px;
    }
}
.footer a:focus-visible {
    outline: 1px solid var(--gold-primary, #d4af37);
    outline-offset: 4px;
}
@media (prefers-reduced-motion: reduce) {
    .footer *,
    .footer *::before,
    .footer *::after {
        transition: none !important;
        animation: none !important;
    }
}


/* INNER PAGE HERO */
.page-hero {
    position: relative;
    min-height: 470px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #080c13;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.page-hero-rooms {
    background-image: url("../image/rooms-bg.jpg");
}
.page-hero-about {
    background-image: url("../image/about-bg.jpg");
}
.page-hero-restaurant {
    background-image: url("../image/restaurant-bg.jpg");
}
.page-hero-gallery {
    background-image: url("../image/gallery-bg.jpg");
}
.page-hero-contact {
    background-image: url("../image/contact-bg.jpg");
}
.page-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(5, 9, 15, 0.88) 0%,
            rgba(5, 9, 15, 0.68) 45%,
            rgba(5, 9, 15, 0.48) 100%
        );
    z-index: 1;
}
.page-hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100px;
    background:
        linear-gradient(
            to bottom,
            transparent,
            rgba(7, 11, 18, 0.7)
        );
    pointer-events: none;
    z-index: 1;
}
.page-hero::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background:
        radial-gradient(
            circle,
            rgba(212, 175, 55, 0.10) 0%,
            rgba(212, 175, 55, 0.035) 35%,
            transparent 70%
        );
    pointer-events: none;
    z-index: 1;
}
.page-hero .container {
    position: relative;
    z-index: 3;
}
.page-hero-content {
    max-width: 850px;
    padding-top: 55px;
    padding-bottom: 35px;
}
.page-hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 18px;
    color: var(--gold-primary, #d4af37);
    font-family: "Jost", sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.35em;
    text-transform: uppercase;
}
.page-hero-eyebrow::before {
    content: "";
    width: 40px;
    height: 1px;
    flex-shrink: 0;
    background:
        linear-gradient(
            90deg,
            transparent,
            var(--gold-primary, #d4af37)
        );
}
.page-hero h1 {
    margin: 0 0 28px;
    color: #ffffff;
    font-family: var(--font-cinzel, "Cinzel", serif);
    font-size: clamp(3rem, 6vw, 5.2rem);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: 0.025em;
    text-shadow:  0 5px 30px rgba(0, 0, 0, 0.4);
}
.breadcrumb-nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    color: rgba(255, 255, 255, 0.55);
    font-family: "Jost", sans-serif;
    font-size: 0.76rem;
    font-weight: 300;
    letter-spacing: 0.08em;
}
.breadcrumb-nav a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: color 0.3s ease;
}
.breadcrumb-nav a:hover {
    color: var(--gold-primary, #d4af37);
}
.breadcrumb-nav span:first-of-type {
    color: var(--gold-primary, #d4af37);
    opacity: 0.7;
}
.breadcrumb-nav span:last-child {
    color: rgba(255, 255, 255, 0.85);
}
.page-hero-content h1::after {
    content: "";
    display: block;
    width: 70px;
    height: 1px;
    margin-top: 25px;
    background:
        linear-gradient(
            90deg,
            var(--gold-primary, #d4af37),
            transparent
        );
}
.page-hero {
    background-attachment: scroll;
    transition:  background-position 0.8s ease;
}
@media (min-width: 1200px) {
    .page-hero {
        min-height: 510px;
    }
    .page-hero-content {
        padding-top: 65px;
    }
}
@media (max-width: 991.98px) {
    .page-hero {
        min-height: 410px;
    }
    .page-hero-content {
        padding-top: 45px;
    }
    .page-hero h1 {
        font-size: clamp(2.8rem, 7vw, 4.3rem);
    }
}
@media (max-width: 767.98px) {
    .page-hero {
        min-height: 360px;
        background-position: center center;
    }
    .page-hero-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(5, 9, 15, 0.72) 0%,
                rgba(5, 9, 15, 0.80) 55%,
                rgba(5, 9, 15, 0.92) 100%
            );
    }
    .page-hero::after {
        height: 70px;
    }
    .page-hero-content {
        padding: 35px 20px 25px;
    }
    .page-hero-eyebrow {
        margin-bottom: 15px;
        font-size: 0.62rem;
        letter-spacing: 0.25em;
        gap: 9px;
    }
    .page-hero-eyebrow::before {
        width: 25px;
    }
    .page-hero h1 {
        margin-bottom: 22px;
        font-size: 2.55rem;
        line-height: 1.15;
    }
    .page-hero-content h1::after {
        width: 50px;
        margin-top: 19px;
    }
    .breadcrumb-nav {
        gap: 8px;
        font-size: 0.68rem;
        letter-spacing: 0.06em;
    }
}
@media (max-width: 420px) {
    .page-hero {
        min-height: 330px;
    }
    .page-hero-content {
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-hero h1 {
        font-size: 2.25rem;
    }
    .page-hero-eyebrow {
        font-size: 0.58rem;
        letter-spacing: 0.20em;
    }
    .breadcrumb-nav {
        font-size: 0.64rem;
    }
}
@media (prefers-reduced-motion: reduce) {
    .page-hero {
        transition: none;
    }
}

/* ROOM SECTION */
.sec-room {
    position: relative;
    padding: 90px 0;
    background: #ffffff;
    overflow: hidden;
}
.sec-room:nth-of-type(odd) {
    background: #f7f4ec;
}
.sec-room:nth-of-type(even) {
    background: #f7f4ec;
}
.sec-room:nth-of-type(odd) {
    background: #ffffff;
}
.sec-room:nth-of-type(even) {
    background: #f7f4ec;
}
.sec-room::before {
    content: "";
    position: absolute;
    top: 45px;
    left: 8%;
    right: 8%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        #d8c79f,
        transparent
    );
    opacity: 0.7;
}
.sec-room .container {
    position: relative;
    z-index: 2;
}
.sec-room .row {
    align-items: stretch !important;
    min-height: 500px;
}
.room-image-column,
.rooms-text {
    padding-left: 0 !important;
    padding-right: 0 !important;
}
.room-image-column {
    display: flex;
    min-height: 500px;
}
.room-image-column .room-carousel {
    width: 100%;
    height: 500px;
    position: relative;
}
.room-carousel .owl-stage-outer,
.room-carousel .owl-stage,
.room-carousel .owl-item {
    height: 100%;
}
.room-carousel .owl-item {
    overflow: hidden;
}
.room-slide {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    background: #e7e0d1;
}
.room-slide img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    filter: brightness(0.94)
            contrast(1.04)
            saturate(0.92);
    transition:
        transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1),
        filter 0.6s ease;
}
.room-carousel .owl-item.active .room-slide img {
    animation: roomLuxuryZoom 8s ease-in-out infinite alternate;
}
@keyframes roomLuxuryZoom {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.035);
    }
}
.room-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(20, 17, 12, 0.02) 35%,
            rgba(20, 17, 12, 0.30) 100%
        );
    pointer-events: none;
}
.room-carousel .owl-nav {
    position: absolute;
    right: 28px;
    bottom: 28px;
    display: flex;
    gap: 1px;
    margin: 0;
    z-index: 10;
    border: 1px solid rgba(255,255,255,0.55);
}
.room-carousel .owl-nav button.owl-prev,
.room-carousel .owl-nav button.owl-next {
    width: 48px;
    height: 48px;
    margin: 0 !important;
    border: none !important;
    border-radius: 0 !important;
    background: rgba(20,17,12,0.38) !important;
    color: #ffffff !important;
    backdrop-filter: blur(7px);
    transition:
        background 0.35s ease,
        color 0.35s ease;
}
.room-carousel .owl-nav button.owl-prev {
    border-right: 1px solid rgba(255,255,255,0.4) !important;
}
.room-carousel .owl-nav button.owl-prev:hover,
.room-carousel .owl-nav button.owl-next:hover {
    background: #c7a75b !important;
    color: #201c15 !important;
}
.room-carousel .owl-nav i {
    font-size: 12px;
}
.room-carousel .owl-dots {
    position: absolute;
    left: 30px;
    bottom: 38px;
    margin: 0 !important;
    display: flex;
    align-items: center;
    gap: 7px;
    z-index: 10;
}
.room-carousel .owl-dot {
    margin: 0 !important;
}
.room-carousel .owl-dot span {
    width: 7px !important;
    height: 7px !important;
    margin: 0 !important;
    border-radius: 50% !important;
    background: rgba(255,255,255,0.55) !important;
    transition:
        width 0.35s ease,
        background 0.35s ease;
}
.room-carousel .owl-dot.active span {
    width: 25px !important;
    border-radius: 10px !important;
    background: #c7a75b !important;
}
.rooms-text {
    display: flex;
    align-items: stretch;
    min-height: 500px;
    background: #ffffff;
    border-left: 1px solid #ded5bd;
}
.rooms-text .info {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 65px 70px;
    background: #ffffff;
    border: none;
    overflow: hidden;
}
.rooms-text .info::before {
    content: "";
    position: absolute;
    top: 62px;
    left: 70px;
    width: 45px;
    height: 1px;
    background: #c7a75b;
}
.rooms-text .info::after {
    content: "";
    position: absolute;
    right: -70px;
    bottom: -70px;
    width: 190px;
    height: 190px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(199,167,91,0.10) 0%,
        rgba(199,167,91,0.03) 45%,
        transparent 70%
    );
    pointer-events: none;
}
.room-eyebrow {
    display: inline-block;
    margin-bottom: 18px;
    color: #8a6a32;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 17px;
    font-style: italic;
    font-weight: 500;
    letter-spacing: 0.04em;
}
.rooms-text h1 {
    position: relative;
    margin: 0 0 23px;
    color: #241f17;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 48px;
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.3px;
}
.rooms-text h1::after {
    content: "";
    display: block;
    width: 28px;
    height: 1px;
    margin-top: 18px;
    background: #c7a75b;
}
.rooms-text p {
    max-width: 570px;
    margin: 0 0 28px;
    color: #71695a;
    font-family: "Jost", "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.85;
}
.room-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin: 0 0 32px;
    border-top: 1px solid #e4dcc8;
}
.room-feature {
    display: flex;
    align-items: center;
    gap: 11px;
    min-height: 50px;
    padding: 11px 10px 11px 0;
    color: #302a20;
    border-bottom: 1px solid #e4dcc8;
    transition:
        color 0.3s ease,
        padding-left 0.3s ease;
}
.room-feature:nth-child(odd) {
    border-right: 1px solid #e4dcc8;
}
.room-feature:nth-child(even) {
    padding-left: 18px;
}
.room-feature i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    color: #c7a75b;
    font-size: 13px;
    transition:
        transform 0.3s ease,
        color 0.3s ease;
}
.room-feature span {
    color: #514a3e;
    font-family: "Jost", "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.2px;
}
.room-feature:hover {
    color: #c7a75b;
}
.room-feature:hover i {
    color: #9f7d3d;
    transform: translateY(-2px);
}
.room-book-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    min-width: 145px;
    padding: 15px 30px;
    color: #ffffff !important;
    background: #241f17;
    border: 1px solid #241f17;
    font-family: "Jost", "Montserrat", sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-decoration: none;
    text-transform: uppercase;
    overflow: hidden;
    transition:
        background 0.35s ease,
        color 0.35s ease,
        border-color 0.35s ease,
        transform 0.35s ease;
}
.room-book-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,0.12),
        transparent
    );
    transition: left 0.6s ease;
}
.room-book-btn:hover {
    color: #241f17 !important;
    background: #c7a75b;
    border-color: #c7a75b;
    transform: translateY(-2px);
}
.room-book-btn:hover::before {
    left: 100%;
}
.room-image-column {
    overflow: hidden;
}
.room-image-column:hover .room-slide img {
    filter:
        brightness(0.98)
        contrast(1.04)
        saturate(0.98);
}
@media (max-width: 1199px) {
    .sec-room {
        padding: 75px 0;
    }
    .sec-room .row {
        min-height: 450px;
    }
    .room-image-column,
    .rooms-text {
        min-height: 450px;
    }
    .room-image-column .room-carousel,
    .room-slide,
    .rooms-text .info {
        height: 450px;
    }
    .rooms-text .info {
        padding: 55px 50px;
    }
    .rooms-text .info::before {
        top: 52px;
        left: 50px;
    }
    .rooms-text h1 {
        font-size: 42px;
    }
    .rooms-text p {
        font-size: 13.5px;
    }
}
@media (max-width: 991px) {
    .sec-room {
        padding: 60px 0;
    }
    .sec-room .row {
        min-height: auto;
    }
    .room-image-column {
        min-height: 380px;
        display: block;
    }
    .room-image-column .room-carousel {
        height: 380px;
    }
    .room-slide {
        height: 380px;
    }
    .rooms-text {
        min-height: auto;
        border-left: none;
        border-top: 1px solid #ded5bd;
    }
    .rooms-text .info {
        height: auto;
        min-height: 400px;
        padding: 55px 45px;
    }
    .rooms-text .info::before {
        top: 52px;
        left: 45px;
    }
    .rooms-text h1 {
        font-size: 40px;
    }
}
@media (max-width: 767px) {
    .sec-room {
        padding: 50px 0;
    }
    .room-image-column,
    .room-image-column .room-carousel,
    .room-slide {
        height: 300px;
        min-height: 300px;
    }
    .rooms-text .info {
        min-height: auto;
        padding: 45px 25px;
    }
    .rooms-text .info::before {
        top: 42px;
        left: 25px;
        width: 35px;
    }
    .room-eyebrow {
        font-size: 15px;
        margin-bottom: 14px;
    }
    .rooms-text h1 {
        font-size: 34px;
        line-height: 1.08;
        margin-bottom: 20px;
    }
    .rooms-text h1::after {
        margin-top: 14px;
    }
    .rooms-text p {
        font-size: 13px;
        line-height: 1.8;
        margin-bottom: 25px;
    }
    .room-features {
        margin-bottom: 28px;
    }
    .room-feature {
        min-height: 48px;
    }
    .room-feature:nth-child(even) {
        padding-left: 12px;
    }
    .room-feature span {
        font-size: 11px;
    }
    .room-carousel .owl-nav {
        right: 15px;
        bottom: 15px;
    }
    .room-carousel .owl-nav button.owl-prev,
    .room-carousel .owl-nav button.owl-next {
        width: 40px;
        height: 40px;
    }
    .room-carousel .owl-dots {
        left: 16px;
        bottom: 28px;
    }
    .room-book-btn {
        width: 100%;
    }
}
@media (max-width: 480px) {
    .room-image-column,
    .room-image-column .room-carousel,
    .room-slide {
        height: 240px;

        min-height: 240px;
    }
    .rooms-text .info {
        padding: 40px 20px;
    }
    .rooms-text .info::before {
        left: 20px;
        top: 38px;
    }
    .rooms-text h1 {
        font-size: 30px;
    }
    .rooms-text p {
        font-size: 12.5px;
    }
    .room-feature:nth-child(even) {
        padding-left: 8px;
    }
    .room-feature {
        gap: 7px;
    }
    .room-feature i {
        width: 24px;
        flex-basis: 24px;
        font-size: 12px;
    }
}
@media (prefers-reduced-motion: reduce) {
    .room-carousel .owl-item.active .room-slide img {
        animation: none;
    }
    .reveal-up {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .room-book-btn,
    .room-feature i,
    .room-slide img {
        transition: none;
    }
}

/* RESTAURANT INTRO SECTION */
.restaurant-intro-section {
    position: relative;
    padding: 110px 0 100px;
    background: #f7f4ec;
    overflow: hidden;
}
.restaurant-intro-section::before {
    content: "";
    position: absolute;
    top: 55px;
    left: 8%;
    right: 8%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        #ded2b5 18%,
        #c7a75b 50%,
        #ded2b5 82%,
        transparent
    );
    opacity: 0.65;
}
.restaurant-intro-section::after {
    content: "";
    position: absolute;
    right: -180px;
    bottom: -220px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(199, 167, 91, 0.08) 0%,
        rgba(199, 167, 91, 0.025) 45%,
        transparent 72%
    );
    pointer-events: none;
}
.restaurant-intro-section .container {
    position: relative;
    z-index: 2;
}
.restaurant-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    color: #947238;
    font-family: "Jost", "Montserrat", sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.25em;
    line-height: 1.4;
    text-transform: uppercase;
}
.restaurant-eyebrow::before {
    content: "";
    display: block;
    width: 32px;
    height: 1px;
    background: #c7a75b;
}
.restaurant-title {
    margin: 0;
    color: #241f17;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(52px, 6vw, 82px);
    font-weight: 500;
    line-height: 0.98;
    letter-spacing: -1.2px;
}
.restaurant-title span {
    display: inline-block;
    color: #a9823d;
    font-style: italic;
    font-weight: 400;
}
.restaurant-description {
    position: relative;
    max-width: 480px;
    margin: 0 0 5px auto;
    padding-left: 35px;
    color: #6d6659;
    font-family: "Jost", "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.9;
    letter-spacing: 0.01em;
}
.restaurant-description::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 1px;
    background: linear-gradient(
        180deg,
        #c7a75b,
        rgba(199, 167, 91, 0.15)
    );
}
@media (max-width: 1199px) {
    .restaurant-intro-section {
        padding: 90px 0 85px;
    }
    .restaurant-title {
        font-size: 68px;
    }
    .restaurant-description {
        max-width: 440px;
        padding-left: 28px;
        font-size: 13.5px;
    }
}
@media (max-width: 991px) {
    .restaurant-intro-section {
        padding: 80px 0;
    }
    .restaurant-intro-section::before {
        top: 42px;
    }
    .restaurant-title {
        font-size: 58px;
        margin-bottom: 30px;
    }
    .restaurant-description {
        max-width: 600px;
        margin: 0;
        padding-left: 25px;
        font-size: 14px;
    }
}
@media (max-width: 767px) {
    .restaurant-intro-section {
        padding: 70px 0 65px;
    }
    .restaurant-intro-section::before {
        top: 35px;
        left: 12%;
        right: 12%;
    }
    .restaurant-eyebrow {
        margin-bottom: 14px;
        font-size: 9px;
        letter-spacing: 0.20em;
    }
    .restaurant-eyebrow::before {
        width: 24px;
    }
    .restaurant-title {
        font-size: 48px;
        line-height: 1;
        letter-spacing: -0.6px;
        margin-bottom: 28px;
    }
    .restaurant-description {
        max-width: none;
        padding-left: 20px;
        font-size: 13px;
        line-height: 1.8;
    }
}
@media (max-width: 480px) {
    .restaurant-intro-section {
        padding: 60px 0 55px;
    }
    .restaurant-title {
        font-size: 41px;
    }
    .restaurant-description {
        padding-left: 18px;
        font-size: 12.5px;
        line-height: 1.8;
    }
    .restaurant-intro-section::after {
        width: 350px;
        height: 350px;
        right: -180px;
        bottom: -180px;
    }
}
@media (prefers-reduced-motion: reduce) {
    .restaurant-intro-section::after {
        transition: none;
    }
}

/* =========================================================
   RESTAURANT EXPERIENCE
   Aurum Hotel · Palasë
========================================================= */

.restaurant-experience {
    position: relative;
    padding: 110px 0 120px;
    background: #f7f4ec;
    overflow: hidden;
}

/* Subtle architectural line */
.restaurant-experience::before {
    content: "";
    position: absolute;
    top: 55px;
    left: 8%;
    right: 8%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(199, 167, 91, 0.45),
        transparent
    );
}

/* SECTION HEADING */
.restaurant-section-heading {
    position: relative;
    max-width: 720px;
    margin: 0 auto 55px;
    z-index: 2;
}
.restaurant-eyebrow {
    display: block;
    margin-bottom: 16px;
    color: #8a6a32;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 16px;
    font-style: italic;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.restaurant-section-heading h2 {
    margin: 0;
    color: #241f17;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 54px;
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.5px;
}
.restaurant-section-heading h2 span {
    color: #9d7b38;
    font-style: italic;
}
.restaurant-section-heading h2::after {
    content: "";
    display: block;
    width: 45px;
    height: 1px;
    margin: 24px auto 22px;
    background: #c7a75b;
}
.restaurant-section-heading p {
    max-width: 620px;
    margin: 0 auto;
    color: #71695a;
    font-family: "Jost", "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.9;
}
.restaurant-carousel {
    position: relative;
    width: 100%;
    margin: 0 auto;
    z-index: 2;
}
.restaurant-carousel .item {
    position: relative;
    height: 520px;
    overflow: hidden;
    background: #e8e1d2;
}
.restaurant-carousel .item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter:
        brightness(0.94)
        contrast(1.04)
        saturate(0.94);
    transition:
        transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1),
        filter 0.6s ease;
}
.restaurant-carousel .owl-item.active .item img {
    animation: restaurantLuxuryZoom 9s ease-in-out infinite alternate;
}
@keyframes restaurantLuxuryZoom {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.035);
    }
}
.restaurant-carousel .item::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(20, 17, 12, 0.02) 40%,
            rgba(20, 17, 12, 0.32) 100%
        );
    pointer-events: none;
}
.restaurant-carousel::before {
    content: "";
    position: absolute;
    inset: -10px;
    border: 1px solid rgba(199, 167, 91, 0.35);
    pointer-events: none;
    z-index: 5;
}
.restaurant-carousel .owl-nav {
    position: absolute;
    right: 28px;
    bottom: 28px;
    display: flex;
    gap: 1px;
    margin: 0;
    z-index: 10;
    border: 1px solid rgba(255, 255, 255, 0.55);
}
.restaurant-carousel .owl-nav button.owl-prev,
.restaurant-carousel .owl-nav button.owl-next {
    width: 48px;
    height: 48px;
    margin: 0 !important;
    border: none !important;
    border-radius: 0 !important;
    background: rgba(20, 17, 12, 0.38) !important;
    color: #ffffff !important;
    backdrop-filter: blur(7px);
    transition:
        background 0.35s ease,
        color 0.35s ease;
}
.restaurant-carousel .owl-nav button.owl-prev {
    border-right: 1px solid rgba(255, 255, 255, 0.4) !important;
}
.restaurant-carousel .owl-nav button.owl-prev:hover,
.restaurant-carousel .owl-nav button.owl-next:hover {
    background: #c7a75b !important;
    color: #241f17 !important;
}
.restaurant-carousel .owl-dots {
    position: absolute;
    left: 30px;
    bottom: 38px;
    display: flex;
    align-items: center;
    gap: 7px;
    margin: 0 !important;
    z-index: 10;
}
.restaurant-carousel .owl-dot {
    margin: 0 !important;
}
.restaurant-carousel .owl-dot span {
    width: 7px !important;
    height: 7px !important;
    margin: 0 !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.6) !important;
    transition:
        width 0.35s ease,
        background 0.35s ease;
}
.restaurant-carousel .owl-dot.active span {
    width: 25px !important;
    border-radius: 10px !important;
    background: #c7a75b !important;
}
.restaurant-carousel .item:hover img {
    filter:
        brightness(1)
        contrast(1.04)
        saturate(1);
    transform: scale(1.025);
}
@media (max-width: 1199px) {
    .restaurant-experience {
        padding: 90px 0 100px;
    }
    .restaurant-section-heading {
        margin-bottom: 45px;
    }
    .restaurant-section-heading h2 {
        font-size: 48px;
    }
    .restaurant-carousel .item {
        height: 460px;
    }
}
@media (max-width: 991px) {
    .restaurant-experience {
        padding: 80px 0 90px;
    }
    .restaurant-experience::before {
        top: 40px;
        left: 6%;
        right: 6%;
    }
    .restaurant-section-heading {
        max-width: 650px;
        margin-bottom: 40px;
    }
    .restaurant-section-heading h2 {
        font-size: 44px;
    }
    .restaurant-section-heading p {
        font-size: 13.5px;
    }
    .restaurant-carousel .item {
        height: 400px;
    }
}
@media (max-width: 767px) {
    .restaurant-experience {
        padding: 70px 0 75px;
    }
    .restaurant-experience::before {
        top: 35px;
    }
    .restaurant-section-heading {
        margin-bottom: 32px;
        padding: 0 10px;
    }
    .restaurant-eyebrow {
        font-size: 14px;
        margin-bottom: 12px;
    }
    .restaurant-section-heading h2 {
        font-size: 38px;
        line-height: 1.08;
    }
    .restaurant-section-heading h2::after {
        width: 35px;
        margin: 18px auto 17px;
    }
    .restaurant-section-heading p {
        font-size: 13px;
        line-height: 1.8;
    }
    .restaurant-carousel .item {
        height: 330px;
    }
    .restaurant-carousel::before {
        inset: -6px;
    }
    .restaurant-carousel .owl-nav {
        right: 15px;
        bottom: 15px;
    }
    .restaurant-carousel .owl-nav button.owl-prev,
    .restaurant-carousel .owl-nav button.owl-next {
        width: 40px;
        height: 40px;
    }
    .restaurant-carousel .owl-dots {
        left: 16px;
        bottom: 27px;
    }
}
@media (max-width: 480px) {
    .restaurant-experience {
        padding: 60px 0 65px;
    }
    .restaurant-section-heading h2 {
        font-size: 32px;
    }
    .restaurant-section-heading p {
        font-size: 12.5px;
    }
    .restaurant-carousel .item {
        height: 250px;
    }
    .restaurant-carousel .owl-dots {
        bottom: 22px;
    }
    .restaurant-carousel .owl-dot span {
        width: 6px !important;
        height: 6px !important;
    }
    .restaurant-carousel .owl-dot.active span {
        width: 20px !important;
    }
}
@media (prefers-reduced-motion: reduce) {
    .restaurant-carousel .owl-item.active .item img {
        animation: none;
    }
    .restaurant-carousel .item img {
        transition: none;
    }
    .restaurant-carousel .owl-nav button {
        transition: none;
    }
}

/* RESTAURANT STORY */
.restaurant-story {
    position: relative;
    padding: 120px 0;
    background: #ffffff;
    overflow: hidden;
}
.restaurant-story::before {
    content: "";
    position: absolute;
    top: 60px;
    left: 8%;
    right: 8%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(199, 167, 91, 0.35),
        transparent
    );
}
.restaurant-story-content {
    position: relative;
    z-index: 2;
    padding-right: 20px;
}
.restaurant-story .restaurant-eyebrow {
    display: block;
    margin-bottom: 18px;
    color: #8a6a32;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 16px;
    font-style: italic;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.restaurant-story-content h2 {
    margin: 0 0 28px;
    color: #241f17;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 50px;
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.4px;
}
.restaurant-story-content h2 span {
    display: block;
    color: #8d7039;
    font-style: italic;
    font-weight: 400;
}
.restaurant-story-content h2::after {
    content: "";
    display: block;
    width: 44px;
    height: 1px;
    margin-top: 24px;
    background: #c7a75b;
}
.restaurant-story-content p {
    max-width: 510px;
    margin: 0 0 20px;
    color: #6f6759;
    font-family: "Jost", "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.9;
}
.restaurant-story-content p:last-child {
    margin-bottom: 0;
}
.restaurant-story-image {
    position: relative;
    width: 100%;
    padding: 0 0 18px 18px;
}
.restaurant-story-image::before {
    content: "";
    position: absolute;
    top: -14px;
    left: 4px;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(199, 167, 91, 0.45);
    pointer-events: none;
    z-index: 0;
}
.restaurant-story-image img {
    position: relative;
    display: block;
    width: 100%;
    height: 520px;
    object-fit: cover;
    z-index: 1;
    filter:
        brightness(0.96)
        contrast(1.04)
        saturate(0.94);
    transition:
        transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1),
        filter 0.6s ease;
}
.restaurant-story-image::after {
    content: "";
    position: absolute;
    left: 18px;
    right: 0;
    top: 0;
    bottom: 18px;
    background:
        linear-gradient(
            180deg,
            rgba(20, 17, 12, 0) 50%,
            rgba(20, 17, 12, 0.25) 100%
        );
    z-index: 2;
    pointer-events: none;
}
.restaurant-image-number {
    position: absolute;
    right: 24px;
    bottom: 42px;
    z-index: 5;
    color: #ffffff;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 18px;
    font-style: italic;
    letter-spacing: 0.08em;
}
.restaurant-image-number::before {
    content: "";
    display: inline-block;
    width: 30px;
    height: 1px;
    margin-right: 10px;
    vertical-align: middle;
    background: #c7a75b;
}
.restaurant-story-image:hover img {
    transform: scale(1.025);
    filter:
        brightness(1)
        contrast(1.04)
        saturate(1);
}
@media (max-width: 1199px) {
    .restaurant-story {
        padding: 100px 0;
    }
    .restaurant-story-content h2 {
        font-size: 44px;
    }
    .restaurant-story-image img {
        height: 470px;
    }
}
@media (max-width: 991px) {
    .restaurant-story {
        padding: 85px 0;
    }
    .restaurant-story-content {
        padding-right: 0;
        margin-bottom: 55px;
    }
    .restaurant-story-content h2 {
        font-size: 44px;
    }
    .restaurant-story-content p {
        max-width: 650px;
    }
    .restaurant-story-image {
        max-width: 720px;
        margin: 0 auto;
    }
    .restaurant-story-image img {
        height: 500px;
    }
}
@media (max-width: 767px) {
    .restaurant-story {
        padding: 70px 0;
    }
    .restaurant-story::before {
        top: 38px;
        left: 6%;
        right: 6%;
    }
    .restaurant-story-content {
        margin-bottom: 45px;
    }
    .restaurant-story .restaurant-eyebrow {
        font-size: 14px;
        margin-bottom: 14px;
    }
    .restaurant-story-content h2 {
        font-size: 37px;
        line-height: 1.08;
        margin-bottom: 23px;
    }
    .restaurant-story-content h2::after {
        width: 36px;
        margin-top: 19px;
    }
    .restaurant-story-content p {
        font-size: 13px;
        line-height: 1.8;
        margin-bottom: 18px;
    }
    .restaurant-story-image {
        padding: 0 0 12px 12px;
    }
    .restaurant-story-image::before {
        top: -9px;
        left: 3px;
    }
    .restaurant-story-image::after {
        left: 12px;
        bottom: 12px;
    }
    .restaurant-story-image img {
        height: 350px;
    }
    .restaurant-image-number {
        right: 18px;
        bottom: 28px;
        font-size: 16px;
    }
    .restaurant-image-number::before {
        width: 22px;
        margin-right: 7px;
    }
}
@media (max-width: 480px) {
    .restaurant-story {
        padding: 60px 0;
    }
    .restaurant-story-content h2 {
        font-size: 32px;
    }
    .restaurant-story-content p {
        font-size: 12.5px;
    }
    .restaurant-story-image img {
        height: 290px;
    }
}
@media (prefers-reduced-motion: reduce) {
    .restaurant-story-image img {
        transition: none;
    }
}

/* RESTAURANT PALASË */
.restaurant-palase {
    position: relative;
    padding: 120px 0;
    background: #f7f4ec;
    overflow: hidden;
}
.restaurant-palase::before {
    content: "";
    position: absolute;
    top: 60px;
    left: 8%;
    right: 8%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(199, 167, 91, 0.4),
        transparent
    );
}
.restaurant-palase-image {
    position: relative;
    width: 100%;
    padding: 18px 18px 0 0;
}
.restaurant-palase-image::before {
    content: "";
    position: absolute;
    top: 4px;
    right: 4px;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(199, 167, 91, 0.45);
    pointer-events: none;
    z-index: 0;
}
.restaurant-palase-image img {
    position: relative;
    display: block;
    width: 100%;
    height: 520px;
    object-fit: cover;
    z-index: 1;
    filter:
        brightness(0.95)
        contrast(1.04)
        saturate(0.94);
    transition:
        transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1),
        filter 0.6s ease;
}
.restaurant-palase-image::after {
    content: "";
    position: absolute;
    left: 0;
    right: 18px;
    top: 18px;
    bottom: 0;
    background:
        linear-gradient(
            180deg,
            rgba(20, 17, 12, 0) 45%,
            rgba(20, 17, 12, 0.28) 100%
        );
    z-index: 2;
    pointer-events: none;
}
.restaurant-palase .restaurant-image-number {
    position: absolute;
    right: 40px;
    bottom: 25px;
    z-index: 5;
    color: #ffffff;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 18px;
    font-style: italic;
    letter-spacing: 0.08em;
}
.restaurant-palase .restaurant-image-number::before {
    content: "";
    display: inline-block;
    width: 30px;
    height: 1px;
    margin-right: 10px;
    vertical-align: middle;
    background: #c7a75b;
}
.restaurant-palase-image:hover img {
    transform: scale(1.025);
    filter:
        brightness(1)
        contrast(1.04)
        saturate(1);
}
.restaurant-palase-content {
    position: relative;
    padding-left: 15px;
    z-index: 2;
}
.restaurant-palase-content .restaurant-eyebrow {
    display: block;
    margin-bottom: 18px;
    color: #8a6a32;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 16px;
    font-style: italic;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.restaurant-palase-content h2 {
    margin: 0 0 28px;
    color: #241f17;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 50px;
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.4px;
}
.restaurant-palase-content h2 span {
    display: block;
    color: #8d7039;
    font-style: italic;
    font-weight: 400;
}
.restaurant-palase-content h2::after {
    content: "";
    display: block;
    width: 44px;
    height: 1px;
    margin-top: 24px;
    background: #c7a75b;
}
.restaurant-palase-content p {
    max-width: 500px;
    margin: 0 0 20px;
    color: #6f6759;
    font-family: "Jost", "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.9;
}
.restaurant-palase-content p:last-child {
    margin-bottom: 0;
}
.restaurant-palase-content::before {
    content: "";
    position: absolute;
    top: -45px;
    left: 15px;
    width: 1px;
    height: 25px;
    background: #c7a75b;
    opacity: 0.7;
}
@media (max-width: 1199px) {
    .restaurant-palase {
        padding: 100px 0;
    }
    .restaurant-palase-content h2 {
        font-size: 44px;
    }
    .restaurant-palase-image img {
        height: 470px;
    }
}
@media (max-width: 991px) {
    .restaurant-palase {
        padding: 85px 0;
    }
    .restaurant-palase-image {
        margin-bottom: 55px;
    }
    .restaurant-palase-content {
        padding-left: 0;
    }
    .restaurant-palase-content::before {
        left: 0;
    }
    .restaurant-palase-content p {
        max-width: 650px;
    }
    .restaurant-palase-image img {
        height: 500px;
    }
}
@media (max-width: 767px) {
    .restaurant-palase {
        padding: 70px 0;
    }
    .restaurant-palase::before {
        top: 38px;
        left: 6%;
        right: 6%;
    }
    .restaurant-palase-image {
        padding: 12px 12px 0 0;
        margin-bottom: 45px;
    }
    .restaurant-palase-image::before {
        top: 3px;
        right: 3px;
    }
    .restaurant-palase-image::after {
        top: 12px;
        right: 12px;
    }
    .restaurant-palase-image img {
        height: 350px;
    }
    .restaurant-palase .restaurant-image-number {
        right: 28px;
        bottom: 18px;
        font-size: 16px;
    }
    .restaurant-palase .restaurant-image-number::before {
        width: 22px;
        margin-right: 7px;
    }
    .restaurant-palase-content .restaurant-eyebrow {
        font-size: 14px;
        margin-bottom: 14px;
    }
    .restaurant-palase-content h2 {
        font-size: 37px;
        line-height: 1.08;
        margin-bottom: 23px;
    }
    .restaurant-palase-content h2::after {
        width: 36px;
        margin-top: 19px;
    }
    .restaurant-palase-content p {
        font-size: 13px;
        line-height: 1.8;
        margin-bottom: 18px;
    }
    .restaurant-palase-content::before {
        display: none;
    }
}
@media (max-width: 480px) {
    .restaurant-palase {
        padding: 60px 0;
    }
    .restaurant-palase-image {
        padding: 9px 9px 0 0;
    }
    .restaurant-palase-image::after {
        top: 9px;
        right: 9px;
    }
    .restaurant-palase-image img {
        height: 290px;
    }
    .restaurant-palase-content h2 {
        font-size: 32px;
    }
    .restaurant-palase-content p {
        font-size: 12.5px;
    }
}
@media (prefers-reduced-motion: reduce) {
    .restaurant-palase-image img {
        transition: none;
    }
}

/* RESTAURANT STORY*/
.restaurant-story {
    position: relative;
    padding: 120px 0;
    background: #f7f4ec;
    overflow: hidden;
}
.restaurant-story::before {
    content: "";
    position: absolute;
    top: 70px;
    left: 8%;
    right: 8%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(199, 167, 91, 0.45),
        transparent
    );
}
.restaurant-story-content {
    padding-right: 30px;
}
.restaurant-eyebrow {
    display: inline-block;
    margin-bottom: 18px;
    color: #9b7a3d;
    font-family: "Jost", sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
}
.restaurant-story h2 {
    margin: 0 0 28px;
    color: #241f17;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 54px;
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.5px;
}
.restaurant-story h2 span {
    display: block;
    color: #9b7a3d;
    font-style: italic;
}
.restaurant-story h2::after {
    content: "";
    display: block;
    width: 42px;
    height: 1px;
    margin-top: 22px;
    background: #c7a75b;
}
.restaurant-story-content p {
    max-width: 500px;
    margin: 0 0 18px;
    color: #6e675a;
    font-family: "Jost", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.9;
}
.restaurant-story-image {
    position: relative;
    width: 100%;
    padding: 12px;
    background: #fff;
    border: 1px solid rgba(199, 167, 91, 0.28);
    box-shadow:
        0 25px 60px rgba(48, 39, 25, 0.10);
}
.restaurant-story-image::before {
    content: "";
    position: absolute;
    top: -18px;
    left: -18px;
    width: 100px;
    height: 100px;
    border-top: 1px solid #c7a75b;
    border-left: 1px solid #c7a75b;
    pointer-events: none;
}
.restaurant-story-image img {
    display: block;
    width: 100%;
    height: 520px;
    object-fit: cover;
    filter:
        brightness(0.96)
        contrast(1.03)
        saturate(0.94);
    transition:
        transform 0.8s ease,
        filter 0.5s ease;
}
.restaurant-story-image:hover img {
    transform: scale(1.015);
    filter:
        brightness(1)
        contrast(1.04)
        saturate(1);
}
.restaurant-image-number {
    position: absolute;
    right: 28px;
    bottom: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    color: #fff;
    background: rgba(36, 31, 23, 0.75);
    border: 1px solid rgba(255,255,255,0.55);
    backdrop-filter: blur(8px);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 22px;
    font-weight: 500;
}
.restaurant-palase {
    position: relative;
    padding: 120px 0;
    background: #ffffff;
    overflow: hidden;
}
.restaurant-palase::after {
    content: "";
    position: absolute;
    right: -180px;
    top: 50%;
    width: 400px;
    height: 400px;
    transform: translateY(-50%);
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(199,167,91,0.08),
        transparent 70%
    );
    pointer-events: none;
}
.restaurant-palase-image {
    position: relative;
    padding: 12px;
    background: #f7f4ec;
    border: 1px solid rgba(199,167,91,0.25);
    box-shadow:
        0 25px 60px rgba(48, 39, 25, 0.09);
}
.restaurant-palase-image::after {
    content: "";
    position: absolute;
    right: -18px;
    bottom: -18px;
    width: 100px;
    height: 100px;
    border-right: 1px solid #c7a75b;
    border-bottom: 1px solid #c7a75b;
    pointer-events: none;
}
.restaurant-palase-image img {
    display: block;
    width: 100%;
    height: 500px;
    object-fit: cover;
    filter:
        brightness(0.96)
        contrast(1.03)
        saturate(0.94);
    transition:
        transform 0.8s ease,
        filter 0.5s ease;
}
.restaurant-palase-image:hover img {
    transform: scale(1.015);
    filter:
        brightness(1)
        contrast(1.04)
        saturate(1);
}
.restaurant-palase-content {
    position: relative;
    z-index: 2;
    padding-left: 10px;
}
.restaurant-palase h2 {
    margin: 0 0 28px;
    color: #241f17;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 54px;
    font-weight: 500;
    line-height: 1.05;
}
.restaurant-palase h2 span {
    display: block;
    color: #9b7a3d;
    font-style: italic;
}
.restaurant-palase h2::after {
    content: "";
    display: block;
    width: 42px;
    height: 1px;
    margin-top: 22px;
    background: #c7a75b;
}
.restaurant-palase-content p {
    max-width: 470px;
    margin: 0 0 18px;
    color: #6e675a;
    font-family: "Jost", sans-serif;
    font-size: 14px;
    line-height: 1.9;
}
.restaurant-evening {
    position: relative;
    background: #1e1a14;
}
.restaurant-evening-image {
    position: relative;
    width: 100%;
    height: 680px;
    overflow: hidden;
}
.restaurant-evening-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    filter:
        brightness(0.62)
        contrast(1.08)
        saturate(0.88);
    transition:
        transform 1.2s ease,
        filter 0.8s ease;
}
.restaurant-evening:hover .restaurant-evening-image img {
    transform: scale(1.025);
    filter:
        brightness(0.67)
        contrast(1.08)
        saturate(0.94);
}
.restaurant-evening-image::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(
            90deg,
            rgba(20,17,12,0.72) 0%,
            rgba(20,17,12,0.38) 45%,
            rgba(20,17,12,0.18) 100%
        );
}
.restaurant-evening-image::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 35%;
    z-index: 1;
    background: linear-gradient(
        transparent,
        rgba(20,17,12,0.55)
    );
    pointer-events: none;
}
.restaurant-evening-overlay {
    position: absolute;
    left: 10%;
    top: 50%;
    z-index: 3;
    max-width: 580px;
    transform: translateY(-50%);
}
.restaurant-evening-overlay .restaurant-eyebrow {
    color: #d8bd7d;
    margin-bottom: 18px;
}
.restaurant-evening-overlay h2 {
    margin: 0 0 25px;
    color: #ffffff;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 62px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.5px;
}
.restaurant-evening-overlay h2 span {
    color: #d3b66d;
    font-style: italic;
}
.restaurant-evening-overlay h2::after {
    content: "";
    display: block;
    width: 45px;
    height: 1px;
    margin-top: 24px;
    background: #d3b66d;
}
.restaurant-evening-overlay p {
    max-width: 470px;
    margin: 0;
    color: rgba(255,255,255,0.78);
    font-family: "Jost", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.9;
}
.restaurant-evening .restaurant-image-number {
    z-index: 5;
    right: 45px;
    bottom: 40px;
    color: #fff;
    background: rgba(20,17,12,0.45);
    border-color: rgba(255,255,255,0.45);
}
@media (max-width: 1199px) {
    .restaurant-story,
    .restaurant-palase {
        padding: 95px 0;
    }
    .restaurant-story h2,
    .restaurant-palase h2 {
        font-size: 48px;
    }
    .restaurant-story-image img,
    .restaurant-palase-image img {
        height: 450px;
    }
    .restaurant-evening-image {
        height: 600px;
    }
    .restaurant-evening-overlay {
        left: 7%;
    }
    .restaurant-evening-overlay h2 {
        font-size: 54px;
    }
}
@media (max-width: 991px) {
    .restaurant-story,
    .restaurant-palase {
        padding: 80px 0;
    }
    .restaurant-story-content {
        padding-right: 0;
        margin-bottom: 55px;
    }
    .restaurant-story-content p {
        max-width: 100%;
    }
    .restaurant-story-image img,
    .restaurant-palase-image img {
        height: 420px;
    }
    .restaurant-palase-content {
        padding-left: 0;
        margin-top: 55px;
    }
    .restaurant-palase-content p {
        max-width: 100%;
    }
    .restaurant-evening-image {
        height: 560px;
    }
    .restaurant-evening-overlay {
        left: 8%;
        right: 8%;
        max-width: 650px;
    }
    .restaurant-evening-overlay h2 {
        font-size: 50px;
    }
}
@media (max-width: 767px) {
    .restaurant-story,
    .restaurant-palase {
        padding: 65px 0;
    }
    .restaurant-story::before {
        top: 35px;
        left: 5%;
        right: 5%;
    }
    .restaurant-eyebrow {
        font-size: 10px;
        letter-spacing: 2.5px;
        margin-bottom: 14px;
    }
    .restaurant-story h2,
    .restaurant-palase h2 {
        font-size: 40px;
        line-height: 1.05;
        margin-bottom: 22px;
    }
    .restaurant-story h2::after,
    .restaurant-palase h2::after {
        margin-top: 17px;
    }
    .restaurant-story-content {
        margin-bottom: 40px;
    }
    .restaurant-story-content p,
    .restaurant-palase-content p {
        font-size: 13px;
        line-height: 1.8;
    }
    .restaurant-story-image,
    .restaurant-palase-image {
        padding: 8px;
    }
    .restaurant-story-image img,
    .restaurant-palase-image img {
        height: 350px;
    }
    .restaurant-story-image::before {
        top: -10px;
        left: -10px;
        width: 70px;
        height: 70px;
    }
    .restaurant-palase-image::after {
        right: -10px;
        bottom: -10px;
        width: 70px;
        height: 70px;
    }
    .restaurant-image-number {
        right: 18px;
        bottom: 18px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    .restaurant-evening-image {
        height: 500px;
    }
    .restaurant-evening-image::before {
        background:
            linear-gradient(
                90deg,
                rgba(20,17,12,0.78),
                rgba(20,17,12,0.35)
            );
    }
    .restaurant-evening-overlay {
        left: 25px;
        right: 25px;
        top: 50%;
        transform: translateY(-50%);
    }
    .restaurant-evening-overlay h2 {
        font-size: 43px;
        line-height: 1.03;
        margin-bottom: 20px;
    }
    .restaurant-evening-overlay h2::after {
        margin-top: 18px;
    }
    .restaurant-evening-overlay p {
        font-size: 13px;
        line-height: 1.8;
    }
    .restaurant-evening .restaurant-image-number {
        right: 20px;
        bottom: 20px;
    }
}
@media (max-width: 480px) {
    .restaurant-story,
    .restaurant-palase {
        padding: 55px 0;
    }
    .restaurant-story h2,
    .restaurant-palase h2 {
        font-size: 34px;
    }
    .restaurant-story-image img,
    .restaurant-palase-image img {
        height: 280px;
    }
    .restaurant-evening-image {
        height: 450px;
    }
    .restaurant-evening-overlay {
        left: 20px;
        right: 20px;
    }
    .restaurant-evening-overlay h2 {
        font-size: 37px;
    }
    .restaurant-evening-overlay p {
        font-size: 12.5px;
    }
}
@media (prefers-reduced-motion: reduce) {
    .restaurant-story-image img,
    .restaurant-palase-image img,
    .restaurant-evening-image img {
        transition: none;
    }
}

/* RESTAURANT CTA*/
.restaurant-cta {
    position: relative;
    padding: 120px 0;
    background: #f7f4ec;
    overflow: hidden;
}
.restaurant-cta::before {
    content: "";
    position: absolute;
    top: -180px;
    left: 50%;
    width: 500px;
    height: 500px;
    transform: translateX(-50%);
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(199, 167, 91, 0.12) 0%,
        rgba(199, 167, 91, 0.04) 40%,
        transparent 70%
    );
    pointer-events: none;
}
.restaurant-cta::after {
    content: "";
    position: absolute;
    left: 8%;
    right: 8%;
    bottom: 45px;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(199, 167, 91, 0.35),
        transparent
    );
}
.restaurant-cta-inner {
    position: relative;
    max-width: 850px;
    margin: 0 auto;
    padding: 75px 60px;
    text-align: center;
    background: #ffffff;
    border: 1px solid rgba(199, 167, 91, 0.35);
    box-shadow:
        0 25px 70px rgba(44, 36, 24, 0.08);
    overflow: hidden;
}
.restaurant-cta-inner::before {
    content: "";
    position: absolute;
    inset: 14px;
    border: 1px solid rgba(199, 167, 91, 0.20);
    pointer-events: none;
}
.restaurant-cta-inner::after {
    content: "";
    position: absolute;
    top: 14px;
    left: 14px;
    width: 65px;
    height: 65px;
    border-top: 1px solid #c7a75b;
    border-left: 1px solid #c7a75b;
    pointer-events: none;
}
.restaurant-cta .restaurant-eyebrow {
    position: relative;
    z-index: 2;
    display: block;
    margin-bottom: 18px;
    color: #9b7a3d;
    font-family: "Jost", sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
}
.restaurant-cta h2 {
    position: relative;
    z-index: 2;
    margin: 0 0 25px;
    color: #241f17;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 58px;
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.4px;
}
.restaurant-cta h2 span {
    color: #9b7a3d;
    font-style: italic;
}
.restaurant-cta h2::after {
    content: "";
    display: block;
    width: 42px;
    height: 1px;
    margin: 22px auto 0;
    background: #c7a75b;
}
.restaurant-cta-inner p {
    position: relative;
    z-index: 2;
    max-width: 560px;
    margin: 0 auto 32px;
    color: #71695a;
    font-family: "Jost", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.9;
}
.restaurant-button {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    min-width: 190px;
    padding: 15px 25px;
    color: #ffffff;
    background: #241f17;
    border: 1px solid #241f17;
    font-family: "Jost", sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.8px;
    text-decoration: none;
    text-transform: uppercase;
    overflow: hidden;
    transition:
        color 0.35s ease,
        background 0.35s ease,
        border-color 0.35s ease,
        transform 0.35s ease;
}
.restaurant-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 80%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,0.18),
        transparent
    );
    transform: skewX(-20deg);
    transition: left 0.65s ease;
}
.restaurant-button span {
    position: relative;
    font-size: 18px;
    line-height: 1;
    color: #d2b66e;
    transition:
        transform 0.35s ease,
        color 0.35s ease;
}
.restaurant-button:hover {
    color: #241f17;
    background: #c7a75b;
    border-color: #c7a75b;
    transform: translateY(-3px);
}
.restaurant-button:hover::before {
    left: 130%;
}
.restaurant-button:hover span {
    color: #241f17;
    transform: translateX(5px);
}
@media (max-width: 991px) {
    .restaurant-cta {
        padding: 90px 0;
    }
    .restaurant-cta-inner {
        max-width: 760px;
        padding: 65px 45px;
    }
    .restaurant-cta h2 {
        font-size: 50px;
    }
}
@media (max-width: 767px) {
    .restaurant-cta {
        padding: 70px 0;
    }
    .restaurant-cta::after {
        left: 5%;
        right: 5%;
        bottom: 25px;
    }
    .restaurant-cta-inner {
        padding: 55px 25px;
        margin: 0 10px;
    }
    .restaurant-cta-inner::before {
        inset: 9px;
    }
    .restaurant-cta-inner::after {
        top: 9px;
        left: 9px;
        width: 45px;
        height: 45px;
    }
    .restaurant-cta .restaurant-eyebrow {
        font-size: 9px;
        letter-spacing: 2.2px;
        margin-bottom: 14px;
    }
    .restaurant-cta h2 {
        font-size: 42px;
        line-height: 1.05;
        margin-bottom: 20px;
    }
    .restaurant-cta h2::after {
        margin-top: 17px;
    }
    .restaurant-cta-inner p {
        font-size: 13px;
        line-height: 1.8;
        margin-bottom: 27px;
    }
    .restaurant-button {
        width: 100%;
        max-width: 240px;
        padding: 14px 20px;
    }
}
@media (max-width: 480px) {
    .restaurant-cta {
        padding: 55px 0;
    }
    .restaurant-cta-inner {
        padding: 48px 20px;
    }
    .restaurant-cta h2 {
        font-size: 36px;
    }
    .restaurant-cta-inner p {
        font-size: 12.5px;
    }
    .restaurant-button {
        font-size: 9px;
        letter-spacing: 1.5px;
    }
}
@media (prefers-reduced-motion: reduce) {
    .restaurant-button,
    .restaurant-button span {
        transition: none;
    }
    .restaurant-button::before {
        display: none;
    }
}

/* GALLERY */
.gallery-page-section {
    position: relative;
    padding: 110px 0 120px;
    background: #f7f4ec;
    overflow: hidden;
}
.gallery-page-section::before {
    content: "";
    position: absolute;
    top: 45px;
    left: 8%;
    right: 8%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        #d8c79f,
        transparent
    );
    opacity: 0.7;
}
.gallery-page-section::after {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    right: -250px;
    top: 30%;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(199, 167, 91, 0.10) 0%,
        rgba(199, 167, 91, 0.035) 45%,
        transparent 72%
    );
    pointer-events: none;
}
.gallery-page-section .container {
    position: relative;
    z-index: 2;
}
.gallery-page-heading {
    position: relative;
    max-width: 760px;
    margin: 0 auto 65px;
    text-align: center;
}
.gallery-heading-line {
    display: block;
    width: 45px;
    height: 1px;
    margin: 0 auto 20px;
    background: #c7a75b;
}
.gallery-eyebrow {
    display: block;
    margin-bottom: 15px;
    color: #8a6a32;
    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;
    font-size: 16px;
    font-style: italic;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.gallery-page-heading h2 {
    margin: 0;
    color: #241f17;
    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;
    font-size: 54px;
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.5px;
}
.gallery-page-heading h2 span {
    color: #a9853f;
}
.gallery-page-heading p {
    max-width: 650px;
    margin: 22px auto 0;
    color: #71695a;
    font-family:
        "Jost",
        "Montserrat",
        sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.9;
}
.gallery-page-section .row {
    margin-left: -10px;
    margin-right: -10px;
}
.gallery-page-section .row > [class*="col-"] {
    padding-left: 10px;
    padding-right: 10px;
}
.gallery-item {
    position: relative;
    width: 100%;
    height: 310px;
    margin-bottom: 20px;
    overflow: hidden;
    background: #e7e0d1;
    border: 1px solid rgba(199, 167, 91, 0.18);
    box-shadow:
        0 8px 25px rgba(36, 31, 23, 0.06);
    isolation: isolate;
    transition:
        transform 0.45s cubic-bezier(0.165, 0.84, 0.44, 1),
        box-shadow 0.45s ease,
        border-color 0.45s ease;
}
.gallery-item-large {
    height: 390px;
}
.gallery-item a {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    cursor: zoom-in;
    text-decoration: none;
}
.gallery-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter:
        brightness(0.95)
        contrast(1.04)
        saturate(0.92);
    transform: scale(1.001);
    transition:
        transform 1s cubic-bezier(0.165, 0.84, 0.44, 1),
        filter 0.6s ease;
}
.gallery-item a::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(20, 17, 12, 0) 30%,
            rgba(20, 17, 12, 0.38) 100%
        );
    opacity: 0.75;
    pointer-events: none;
    transition:
        opacity 0.5s ease;
}
.gallery-item a::before {
    content: "";
    position: absolute;
    inset: 14px;
    z-index: 3;
    border: 1px solid rgba(255, 255, 255, 0);
    pointer-events: none;
    transition:
        inset 0.45s ease,
        border-color 0.45s ease;
}
.gallery-item::before {
    content: "";
    position: absolute;
    top: 12px;
    left: 12px;
    width: 24px;
    height: 24px;
    z-index: 5;
    border-top: 1px solid rgba(255, 255, 255, 0.7);
    border-left: 1px solid rgba(255, 255, 255, 0.7);
    opacity: 0;
    pointer-events: none;
    transition:
        opacity 0.4s ease,
        top 0.4s ease,
        left 0.4s ease;
}
.gallery-item::after {
    content: "";
    position: absolute;
    right: 12px;
    bottom: 12px;
    width: 24px;
    height: 24px;
    z-index: 5;
    border-right: 1px solid rgba(255, 255, 255, 0.7);
    border-bottom: 1px solid rgba(255, 255, 255, 0.7);
    opacity: 0;
    pointer-events: none;
    transition:
        opacity 0.4s ease,
        right 0.4s ease,
        bottom 0.4s ease;
}
.gallery-item:hover {
    transform: translateY(-5px);
    border-color: rgba(199, 167, 91, 0.45);
    box-shadow:
        0 18px 45px rgba(36, 31, 23, 0.14);
}
.gallery-item:hover img {
    transform: scale(1.07);
    filter:
        brightness(1)
        contrast(1.04)
        saturate(1);
}
.gallery-item:hover a::after {
    opacity: 0.45;
}
.gallery-item:hover a::before {
    inset: 20px;
    border-color:
        rgba(255, 255, 255, 0.45);
}
.gallery-item:hover::before {
    top: 20px;
    left: 20px;
    opacity: 1;
}
.gallery-item:hover::after {
    right: 20px;
    bottom: 20px;
    opacity: 1;
}
.lb-overlay {
    background-color: rgba(20, 17, 12, 0.96) !important;
}
.lb-container {
    padding: 0 !important;
}
.lb-image {
    border: 1px solid rgba(199, 167, 91, 0.45) !important;
    border-radius: 0 !important;
    box-shadow:
        0 25px 80px rgba(0, 0, 0, 0.55);
}
.lb-data .lb-caption {
    color: #e9dfca !important;
    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.5px;
}
.lb-data .lb-number {
    color: #c7a75b !important;
    font-family:
        "Jost",
        "Montserrat",
        sans-serif;
    font-size: 11px;
    letter-spacing: 1px;
}
.lb-close {
    opacity: 0.8;
    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}
.lb-close:hover {
    opacity: 1;
    transform: rotate(90deg);
}
.lb-nav a.lb-prev,
.lb-nav a.lb-next {
    opacity: 0.65;
    transition:
        opacity 0.3s ease;
}
.lb-nav a.lb-prev:hover,
.lb-nav a.lb-next:hover {
    opacity: 1;
}
@media (min-width: 1400px) {
    .gallery-page-section {
        padding: 130px 0 140px;
    }
    .gallery-page-heading {
        margin-bottom: 75px;
    }
    .gallery-page-heading h2 {
        font-size: 60px;
    }
    .gallery-item {
        height: 340px;
    }
    .gallery-item-large {
        height: 420px;
    }
}
@media (max-width: 1199px) {
    .gallery-page-section {
        padding: 90px 0 100px;
    }
    .gallery-page-heading {
        margin-bottom: 55px;
    }
    .gallery-page-heading h2 {
        font-size: 50px;
    }
    .gallery-item {
        height: 285px;
    }
    .gallery-item-large {
        height: 355px;
    }
}
@media (max-width: 991px) {
    .gallery-page-section {
        padding: 75px 0 85px;
    }
    .gallery-page-heading {
        margin-bottom: 45px;
    }
    .gallery-page-heading h2 {
        font-size: 44px;
    }
    .gallery-page-heading p {
        font-size: 13.5px;
    }
    .gallery-item,
    .gallery-item-large {
        height: 320px;
    }
    .gallery-page-section .row {
        margin-left: -8px;
        margin-right: -8px;
    }
    .gallery-page-section .row > [class*="col-"] {
        padding-left: 8px;
        padding-right: 8px;
    }
    .gallery-item {
        margin-bottom: 16px;
    }
}
@media (max-width: 767px) {
    .gallery-page-section {
        padding: 60px 0 70px;
    }
    .gallery-page-section::before {
        left: 5%;
        right: 5%;
    }
    .gallery-page-heading {
        margin-bottom: 38px;
        padding: 0 10px;
    }
    .gallery-heading-line {
        width: 35px;
        margin-bottom: 16px;
    }
    .gallery-eyebrow {
        font-size: 14px;
        letter-spacing: 1.5px;
        margin-bottom: 12px;
    }
    .gallery-page-heading h2 {
        font-size: 38px;
        line-height: 1.08;
    }
    .gallery-page-heading p {
        margin-top: 18px;
        font-size: 13px;
        line-height: 1.8;
    }
    .gallery-page-section .row {
        margin-left: -7px;
        margin-right: -7px;
    }
    .gallery-page-section .row > [class*="col-"] {
        padding-left: 7px;
        padding-right: 7px;
    }
    .gallery-item,
    .gallery-item-large {
        height: 300px;
        margin-bottom: 14px;
    }
    .gallery-item:hover {
        transform: none;
        box-shadow:
            0 8px 25px rgba(36, 31, 23, 0.08);
    }
    .gallery-item:hover img {
        transform: scale(1.03);
    }
    .gallery-item a::before {
        inset: 10px;
    }
    .gallery-item:hover a::before {
        inset: 10px;
    }
}
@media (max-width: 480px) {
    .gallery-page-section {
        padding: 50px 0 60px;
    }
    .gallery-page-heading h2 {
        font-size: 32px;
    }
    .gallery-page-heading p {
        font-size: 12.5px;
    }
    .gallery-item,
    .gallery-item-large {
        height: 250px;
        margin-bottom: 12px;
    }
    .gallery-item a::before {
        inset: 8px;
    }
    .gallery-item::before {
        top: 10px;
        left: 10px;
        width: 20px;
        height: 20px;
    }
    .gallery-item::after {
        right: 10px;
        bottom: 10px;
        width: 20px;
        height: 20px;
    }
}
@media (prefers-reduced-motion: reduce) {
    .gallery-item,
    .gallery-item img,
    .gallery-item a::before,
    .gallery-item a::after,
    .gallery-item::before,
    .gallery-item::after {
        transition: none !important;
    }
    .gallery-item:hover {
        transform: none;
    }
    .gallery-item:hover img {
        transform: none;
    }
}

/* CONTACT INFO */
.contact-info {
    position: relative;
    padding: 100px 0;
    background: #f7f4ec;
    overflow: hidden;
}
.contact-info::before {
    content: "";
    position: absolute;
    top: 45px;
    left: 8%;
    right: 8%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        #d8c79f,
        transparent
    );
    opacity: 0.7;
}
.contact-info::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    right: -180px;
    bottom: -220px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(199, 167, 91, 0.10) 0%,
        rgba(199, 167, 91, 0.04) 45%,
        transparent 72%
    );
    pointer-events: none;
}
.contact-info .container {
    position: relative;
    z-index: 2;
}
.contact-map {
    width: 100%;
    height: 500px;
    overflow: hidden;
    background: #e8e3d8;
    box-shadow:
        0 20px 50px rgba(38, 32, 21, 0.12);
}
.contact-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    filter:
        grayscale(15%)
        contrast(0.96)
        sepia(5%);
    transition:
        filter 0.5s ease;
}
.contact-map:hover iframe {
    filter:
        grayscale(0%)
        contrast(1)
        sepia(0%);
}
.contact-content {
    padding-left: 70px;
}
.contact-content h2 {
    position: relative;
    margin: 0 0 18px;
    color: #8a6a32;
    font-family:
        "Jost",
        "Montserrat",
        sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 3px;
    line-height: 1.2;
}
.contact-content h2::before {
    content: "";
    display: inline-block;
    width: 42px;
    height: 1px;
    margin-right: 13px;
    vertical-align: middle;
    background: #c7a75b;
}
.contact-content h1 {
    max-width: 600px;
    margin: 0 0 42px;
    color: #272535;
    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;
    font-size: 52px;
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.4px;
}
.icons-inff {
    position: relative;
    max-width: 600px;
    margin-bottom: 14px;
    padding: 19px 24px;
    background: #ffffff;
    border: 1px solid #e5dece;
    box-shadow:
        0 10px 30px rgba(38, 32, 21, 0.035);
    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}
.icons-inff:hover {
    transform: translateY(-3px);
    border-color: #d2bc86;
    box-shadow:
        0 16px 35px rgba(38, 32, 21, 0.08);
}
.contact-info-item {
    display: flex;
    align-items: center;
    min-height: 62px;
}
.contact-icon {
    width: 65px;
    min-width: 65px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #e5dece;
}
.contact-icon i {
    color: #c7a75b;
    font-size: 19px;
    transition:
        transform 0.35s ease,
        color 0.35s ease;
}
.icons-inff:hover .contact-icon i {
    color: #9f7d3d;
    transform:
        translateY(-2px)
        scale(1.05);
}
.contact-text {
    padding-left: 23px;
}
.contact-text h6 {
    margin: 0 0 5px;
    color: #8a6a32;
    font-family:
        "Jost",
        "Montserrat",
        sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}
.contact-text p {
    margin: 0;
    color: #5f594f;
    font-family:
        "Jost",
        "Montserrat",
        sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
}
.contact-text a {
    color: inherit;
    text-decoration: none;
    transition:
        color 0.3s ease;
}
.contact-text a:hover {
    color: #9f7d3d;
}
.contact-icon a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #c7a75b;
    text-decoration: none;
}
.contact-icon a:hover {
    color: #9f7d3d;
}
.reveal-up {
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1),
        transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.reveal-up.visible {
    opacity: 1;
    transform: translateY(0);
}
@media (max-width: 1199px) {
    .contact-info {
        padding: 80px 0;
    }
    .contact-map {
        height: 470px;
    }
    .contact-content {
        padding-left: 45px;
    }
    .contact-content h1 {
        font-size: 46px;
    }
}
@media (max-width: 991px) {
    .contact-info {
        padding: 70px 0;
    }
    .contact-map {
        height: 400px;
        margin-bottom: 50px;
    }
    .contact-content {
        padding-left: 15px;
        padding-right: 15px;
    }
    .contact-content h1 {
        max-width: 700px;
        font-size: 44px;
        margin-bottom: 35px;
    }
    .icons-inff {
        max-width: 100%;
    }
}
@media (max-width: 767px) {
    .contact-info {
        padding: 60px 0;
    }
    .contact-info::before {
        left: 12%;
        right: 12%;
    }
    .contact-map {
        height: 320px;
        margin-bottom: 40px;
    }
    .contact-content {
        padding-left: 0;
        padding-right: 0;
    }
    .contact-content h2 {
        font-size: 11px;
        letter-spacing: 2.2px;
    }
    .contact-content h2::before {
        width: 30px;
        margin-right: 9px;
    }
    .contact-content h1 {
        font-size: 38px;
        line-height: 1.08;
        margin-bottom: 30px;
    }
    .icons-inff {
        padding: 17px 18px;
    }
    .contact-icon {
        width: 55px;
        min-width: 55px;
        height: 48px;
    }
    .contact-icon i {
        font-size: 17px;
    }
    .contact-text {
        padding-left: 17px;
    }
    .contact-text h6 {
        font-size: 9px;
        letter-spacing: 1.5px;
    }
    .contact-text p {
        font-size: 13px;
    }
}
@media (max-width: 480px) {
    .contact-info {
        padding: 50px 0;
    }
    .contact-map {
        height: 270px;
        margin-bottom: 35px;
    }
    .contact-content h1 {
        font-size: 32px;
    }
    .icons-inff {
        padding: 15px;
    }
    .contact-icon {
        width: 50px;
        min-width: 50px;
    }
    .contact-icon i {
        font-size: 16px;
    }
    .contact-text {
        padding-left: 14px;
    }
    .contact-text p {
        font-size: 12px;
    }
}
@media (prefers-reduced-motion: reduce) {
    .contact-map iframe,
    .icons-inff,
    .contact-icon i,
    .contact-text a,
    .reveal-up {
        transition: none;
    }
    .reveal-up {
        opacity: 1;
        transform: none;
    }
}
