/* ─── Reset ─────────────────────────────────────────── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'ZirkonRegular';
    src: url('../fonts/GTZirkon-regular.otf') format('opentype');
    font-weight: 400;
}

@font-face {
    font-family: 'ZirkonBold';
    src: url('../fonts/GTZirkon-bold.otf') format('opentype');
    font-weight: 700;
}


@font-face {
    font-family: 'LamaSansRegular';
    src: url('../fonts/LamaSans-LightCondensed.otf') format('opentype');
    font-weight: 600;
}

@font-face {
    font-family: 'LamaSansBold';
    src: url('../fonts/LamaSans-BoldCondensed.otf') format('opentype');
    font-weight: 600;
}

html {
    scroll-behavior: smooth;
}

:root {
    --gold: #c9a96e;
    --gold-light: #e2c99a;
    --dark: #0d0d0d;
    --white: #ffffff;
    --nav-height: 120px;
}

html,
body {
    height: 100%;
    font-family: 'Montserrat', sans-serif;
}

/* ─── HERO SECTION ───────────────────────────────────── */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Background – gradient atmosphere (replace with your image) */
.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;

    /* ── BACKGROUND IMAGE ──────────────────────────────
        Jab aap apni image add karein toh neeche ki line
        uncomment karein aur apna path daalein:
        background: url('images/hero.jpg') center/cover no-repeat;
        Tab wali gradient line comment kar dein.
    ── ─────────────────────────────────────────────── */
    background:
        linear-gradient(135deg,
            #1a1a2e 0%,
            #16213e 30%,
            #0f3460 65%,
            #1a1a2e 100%);
}

/* Decorative glass-tile overlay (mimics the photo texture) */
.hero__bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(45deg,
            rgba(255, 255, 255, .015) 0px,
            rgba(255, 255, 255, .015) 1px,
            transparent 1px,
            transparent 60px),
        repeating-linear-gradient(-45deg,
            rgba(255, 255, 255, .015) 0px,
            rgba(255, 255, 255, .015) 1px,
            transparent 1px,
            transparent 60px);
}

/* Vignette */
.hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 40%, rgba(0, 0, 0, .65) 100%);
}

/* ─── NAVBAR ─────────────────────────────────────────── */
/* .navbar {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--nav-height);
    padding: 0 48px;
} */

.navbar {
    position: absolute;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--nav-height);
    padding: 0 48px;
    background: transparent;
    width: 100%;
}

.navbar__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}




.navbar__logo-img {
    width: 52px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;

}


.logo-icon {
    width: 48px;
    height: 56px;
}

.navbar__logo-text {
    line-height: 1.1;
}

.navbar__logo-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.35rem;
    letter-spacing: .25em;
    color: var(--gold);
}

.navbar__logo-sub {
    font-size: .5rem;
    letter-spacing: .3em;
    color: rgba(255, 255, 255, .6);
    text-transform: uppercase;
}


.navbar__nav {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.navbar__nav a {
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0px;
    color: #ffffff;
    text-transform: uppercase;
    transition: color .25s;
    white-space: nowrap;
    position: relative;
    padding-bottom: 4px;
    font-family: 'ZirkonRegular';
}

.navbar__nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width .3s ease;
}

.navbar__nav a:hover {
    color: var(--gold);
}

.navbar__nav a:hover::after {
    width: 100%;
}


.navbar__cta {
    flex-shrink: 0;
}

.btn-cta {
    display: inline-block;
    padding: 13px 26px;
    border: none;
    background: #AAA174;
    color: white;
    font-family: 'ZirkonRegular';
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 3px;
    transition: background .3s, color .3s, transform .2s;
    cursor: pointer;
    border-radius: 44px;
}

.btn-cta:hover {
    background: var(--gold);
    color: var(--dark);
    transform: translateY(-1px);
}

/* ─── HERO CONTENT ───────────────────────────────────── */
.hero__content {
    position: relative;
    z-index: 5;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 24px;
    animation: fadeUp .9s ease both;
}

.hero__content {
    background: url('../images/hero-carousel.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.hero__content::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(32px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero__eyebrow {
    font-size: .62rem;
    letter-spacing: .45em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 18px;
}

.hero__title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(3rem, 7vw, 6rem);
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 18px;
}

.hero__title span {
    color: var(--gold);
    font-style: italic;
}

.hero__subtitle {
    font-size: .78rem;
    letter-spacing: .22em;
    color: rgba(255, 255, 255, .55);
    text-transform: uppercase;
    margin-bottom: 40px;
}

.hero__divider {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto 40px;
}

/* ─── SCROLL INDICATOR ───────────────────────────────── */
.scroll-down {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    text-decoration: none;
}

.scroll-down__label {
    font-size: 16px;
    letter-spacing: 0px;
    color: white;
    text-transform: capitalize;
    font-family: 'ZirkonRegular';
}

.scroll-down__arrow {
    width: 28px;
    height: 28px;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bounce 1.8s ease-in-out infinite;
}

.scroll-down__arrow svg {
    width: 20px;
    height: 20px;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(6px);
    }
}

/* ═══════════════════════════════════════════════════
   ABOUT US SECTION — CSS
   Background: white
   Accent color: gold (#b8a165)
   Font: Montserrat (Google Fonts se link karein)
═══════════════════════════════════════════════════ */

/* Google Font import — apne <head> mein add karein:
   <link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700&display=swap" rel="stylesheet"> */

/* ── Variables ── */
:root {
    --about-bg: #ffffff;
    --about-gold: #b8a165;
    --about-text: #ffffff;
    --about-pattern: #b8a165;
}

/* ── Section wrapper ── */
.about {
    position: relative;
    width: 100%;
    /* background-color: var(--about-bg); */
    padding: 90px 60px;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(to bottom, #1E222B, #40495B);
}

section#about::before {
    content: '';
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 10;
    position: absolute;
}

/* ── Decorative geometric pattern (top-right & bottom-right) ── */
.about__pattern {
    position: absolute;
    width: 220px;
    height: 220px;
    /* background-image: repeating-linear-gradient(45deg,
            var(--about-pattern) 0px,
            var(--about-pattern) 4px,
            transparent 4px,
            transparent 20px),
        repeating-linear-gradient(-45deg,
            var(--about-pattern) 0px,
            var(--about-pattern) 4px,
            transparent 4px,
            transparent 20px); */
    opacity: 0.22;
    z-index: 0;
}

.about__pattern--tr {
    top: 0;
    right: 0;
    border-bottom-left-radius: 4px;
}

.about__pattern--br {
    bottom: 0;
    right: 0;
    border-top-left-radius: 4px;
}

/* ── Inner flex container ── */
.about__inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 70px;
    max-width: 1200px;
    margin: 0 auto;
    z-index: 12;
}

/* ── LEFT: Text block ── */
.about__text {
    flex: 0 0 48%;
    max-width: 48%;
}

.about__heading {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 700;
    letter-spacing: .08em;
    color: #aca274;
    line-height: 1;
    margin-bottom: 159px;
    font-family: 'ZirkonBold', sans-serif;
    letter-spacing: 0px;
}

.about__divider {
    width: 50px;
    height: 2px;
    background: var(--about-gold);
    margin-bottom: 40px;
    opacity: 0.6;
    display: none;
}

.about__para {
    font-size: 19px;
    font-weight: 400;
    line-height: 2;
    letter-spacing: .06em;
    color: #ffffff;
    text-align: left;
    margin-bottom: 28px;
    font-family: "ZirkonRegular";
    letter-spacing: 0px;
}

.about__para:last-child {
    margin-bottom: 0;
}

/* ── RIGHT: Image block ── */
.about__img-wrap {
    flex: 0 0 44%;
    max-width: 44%;
}

/* Real image — use this when you add <img> tag */
.about__img {
    width: 100%;
    height: 606px;
    object-fit: cover;
    display: block;
}

/* Placeholder box — shown until image is added */
.about__img-placeholder {
    width: 100%;
    height: 480px;
    background-color: #e8e8e8;
    border: 2px dashed #cccccc;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Optional: placeholder label */
.about__img-placeholder::after {
    content: 'Your Image Here';
    font-family: 'Montserrat', sans-serif;
    font-size: .75rem;
    letter-spacing: .12em;
    color: #aaaaaa;
    text-transform: uppercase;
}

.about__pattern {
    position: absolute;
    width: 220px;
    height: 220px;
    background-image: url('../images/about-background.png');
    background-repeat: repeat;
    background-size: auto;
    opacity: 1;
    z-index: 0;
}

.about__pattern--tr {
    top: 0;
    right: 0;
    background-position: top right;
    height: 570px;
}

.about__pattern--br {
    bottom: 0;
    right: 0;
    background-position: bottom right;
}

.menu-section {
    width: 100%;
    background-color: #45495d;
    font-family: 'Georgia', serif;
    text-align: center;
    padding: 90px 0px;
    position: relative;
    overflow: hidden;
}

/* Pattern overlay */
.menu-section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-image: url('../images/our-menu-bg.png');
    background-repeat: repeat;
    background-size: auto;
    opacity: 0.40;
    z-index: 0;
}

/* Sabhi direct children z-index 1 pe */
.menu-section>* {
    position: relative;
    z-index: 1;
}

.menu-title {
    font-size: 50px;
    font-weight: 700;
    letter-spacing: 6px;
    color: #aca274;
    text-transform: uppercase;
    margin: 0 0 20px 0;
    font-family: 'ZirkonBold';
    letter-spacing: 0px;
}

.menu-desc {
    font-size: 20px;
    color: #ffffff;
    max-width: 600px;
    margin: 0 auto 40px auto;
    line-height: 1.7;
    font-family: 'ZirkonRegular';
    font-weight: 400;
}

/* .menu-image-wrap {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    display: block;
    line-height: 0;
} */

.menu-image-wrap {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    display: block;
    line-height: 0;
    display: flex;
    justify-content: center;
    align-items: end;
}

.menu-image-wrap img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

/* .explore-btn-wrap {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
    z-index: 10;
} */

.explore-btn-wrap {
    position: absolute;
    bottom: -30px;
}

.explore-btn {
    display: inline-block;
    padding: 30px 48px;
    border: none;
    background: #aaa174;
    color: white;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 40px;
    font-family: 'ZirkonRegular';
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

a.explore-btn:hover {
    background: #c9a96e;
    color: black;
}

.explore-btn:hover {
    background: #b8a86e;
    color: #ffffff;
}








/* ── GALLERY SECTION ── */
.gallery-section {
    width: 100%;
    background-color: #45495d;
    padding: 90px 0px;
    box-sizing: border-box;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1 / 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.06);
}

/* ── LIGHTBOX ── */
.lightbox-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    flex-direction: row;
}

.lightbox-overlay.active {
    display: flex;
    justify-content: space-between;
}

.lb-img-wrap {
    max-width: 80vw;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lb-img-wrap img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 4px;
    user-select: none;
}

.lb-arrow {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 32px;
    cursor: pointer;
    padding: 20px;
    opacity: 0.75;
    transition: opacity 0.2s;
    user-select: none;
    flex-shrink: 0;
}

.lb-arrow:hover {
    opacity: 1;
}

.lb-close {
    position: fixed;
    top: 20px;
    right: 28px;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 26px;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.2s;
    z-index: 10000;
}

.lb-close:hover {
    opacity: 1;
}

.lb-counter {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: #cccccc;
    font-size: 14px;
    font-family: sans-serif;
    letter-spacing: 1px;
}



/* ── PRIVATE EVENTS SECTION ── */
/* .private-events-section {
    width: 100%;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    background-image: url('../images/private-event.png');
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
    overflow: hidden;
} */



.private-events-section {
    width: 100%;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    background-image: url('../images/private-event-2.png');
    background-size: cover;
    background-position: center 14%;
    background-repeat: no-repeat;
    overflow: hidden;
}

/* Left se aata hua dark gradient overlay */
.private-events-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(10, 18, 40, 0.82) 0%,
            rgba(10, 18, 40, 0.60) 35%,
            rgba(10, 18, 40, 0.15) 65%,
            rgba(10, 18, 40, 0.00) 100%);
    z-index: 1;
}

.pe-content {
    position: relative;
    z-index: 2;
    padding: 60px 60px;
    max-width: 1000px;
}

.pe-title {
    font-family: 'ZirkonBold';
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0 0 18px 0;
    line-height: 1.1;
}

.pe-desc {
    font-family: 'ZirkonRegular';
    font-size: 18px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.7;
    margin: 0 0 32px 0;
    max-width: 100%;
}

.pe-btn {
    display: inline-block;
    padding: 20px 36px;
    border: none;
    background: #aaa174;
    color: white;
    font-family: 'ZirkonRegular';
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 40px;
    transition: background 0.25s, color 0.25s;
    cursor: pointer;
}



a.pe-btn:hover {
    background: #c9a96e;
    color: black;
}



/* ── FOOTER ── */
.site-footer {
    width: 100%;
    background-color: #45495d;
    padding: 60px 0;
    box-sizing: border-box;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1.2fr 1.6fr 1fr 1.4fr;
    align-items: start;
    gap: 40px;
}

/* Logo column */
.footer-logo-col {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-top: 4px;
}

.footer-logo {
    width: 100px;
    height: auto;
    display: block;
}

/* Headings */
.footer-heading {
    font-family: 'ZirkonBold';
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0 0 20px 0;
}

/* Address list */
.footer-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-family: 'ZirkonRegular';
    font-size: 16px;
    color: #ffffff;
    line-height: 1.5;
}

.footer-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 2px;
    opacity: 0.85;
    filter: brightness(0) invert(1);
}

/* Social icons */
.footer-socials {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 2px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.75;
    transition: opacity 0.2s;
}

.social-link:hover {
    opacity: 1;
}

.social-link img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

/* Opening hours */
.footer-hours {
    font-family: 'ZirkonRegular';
    font-size: 16px;
    color: #ffffff;
    margin: 0;
    line-height: 1.6;
}

ul.footer-list li a {
    color: white;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 900px) {
    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 36px 24px;
    }

    .about__heading {
        margin-bottom: 60px;
    }

    .menu-desc {
        font-size: 16px;
    }
}

@media (max-width: 540px) {

    .about__para {
        font-size: 14px;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }

    .footer-logo {
        width: 100px;
    }

    .menu-section {
        width: 100%;
        background-color: #45495d;
        font-family: 'Georgia', serif;
        text-align: center;
        padding: 90px 20px;
        position: relative;
        overflow: hidden;
    }

    .menu-image-wrap img {
        height: 400px;
    }

    .gallery-section {
        width: 100%;
        background-color: #45495d;
        padding: 20px;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .pe-content {
        padding: 50px 28px;
        max-width: 100%;
    }

    .pe-title {
        font-size: 34px;
    }

    .private-events-section {
        min-height: 420px;
        /* background-position: 70% center; */
    }
}





/* ── Responsive ── */
@media (max-width: 900px) {

    .about__pattern.about__pattern--br {
        display: none;
    }

    .about {
        padding: 60px 30px;
    }

    .about__inner {
        flex-direction: column;
        gap: 40px;
    }

    .about__pattern--tr {
        display: none;
    }

    .about__text,
    .about__img-wrap {
        flex: unset;
        max-width: 100%;
        width: 100%;
    }

    .about__img-placeholder,
    .about__img {
        height: auto;
    }

    .about__para {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .about {
        padding: 50px 20px;
    }

    .about__heading {
        font-size: 2rem;
    }
}

/* ─── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 960px) {
    .navbar {
        padding: 0 28px;
    }

    .navbar__nav {
        gap: 22px;
    }

    .navbar__nav a {
        font-size: .6rem;
    }
}

@media screen and (max-width:1450px) {
    /* .private-events-section {
        background-position-y: bottom;
    } */
}

/* ─── HAMBURGER BUTTON ───────────────────────────────── */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 200;
    padding: 4px;
    flex-shrink: 0;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: transform 0.35s ease, opacity 0.25s ease, width 0.25s ease;
    transform-origin: center;
}

/* X state jab menu open ho */
.hamburger.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.is-open span:nth-child(2) {
    opacity: 0;
    width: 0;
}

.hamburger.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ─── MOBILE NAV DRAWER ──────────────────────────────── */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 12, 20, 0.97);
    z-index: 100;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.mobile-menu.is-open {
    display: flex;
    opacity: 1;
    pointer-events: all;
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-menu ul li a {
    text-decoration: none;
    font-family: 'ZirkonRegular';
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0px;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    display: block;
    padding: 14px 24px;
    transition: color 0.2s;
}

.mobile-menu ul li a:hover {
    color: var(--gold);
}

.mobile-menu .mobile-cta {
    margin-top: 12px;
}

.mobile-menu__close {
    position: absolute;
    top: 22px;
    right: 24px;
    background: none;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    font-size: 18px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.75;
    transition: opacity 0.2s, border-color 0.2s, color 0.2s;
    line-height: 1;
}

.mobile-menu__close:hover {
    opacity: 1;
    border-color: var(--gold);
    color: var(--gold);
}

@media (max-width: 768px) {
    .navbar__nav {
        display: none;
    }

    .navbar__cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .navbar {
        padding: 0 20px;
    }

    .btn-cta {
        padding: 11px 18px;
        font-size: .58rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 1fr);
    }

    .lb-img-wrap {
        max-width: 95vw;
    }
}