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

    :root {
        --bg: #0a0a0a;
        --fg: #e8e0d0;
        --card: #141414;
        --card-fg: #e8e0d0;
        --gold: #c8913a;
        --gold-light: #d4a85c;
        --gold-dark: #8a6424;
        --border: rgba(200, 145, 58, 0.15);
        --muted: #8c8c8c;
        --input: #1a1a1a;
        --charcoal: #111;
        --gradient-gold: linear-gradient(135deg, #c8913a, #d4b06a, #c8913a);
        --shadow-gold: 0 0 40px -10px rgba(200, 145, 58, 0.25);
        --font-display: 'Playfair Display', Georgia, serif;
        --font-body: 'Inter', system-ui, sans-serif;
    }

    html {
        scroll-behavior: smooth
    }

    body {
        background: var(--bg);
        color: var(--fg);
        font-family: var(--font-body);
        -webkit-font-smoothing: antialiased;
        overflow-x: hidden
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        font-family: var(--font-display)
    }

    a {
        color: inherit;
        text-decoration: none
    }

    img {
        display: block;
        max-width: 100%
    }

    .container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 24px
    }

    @media(min-width:1024px) {
        .container {
            padding: 0 48px
        }
    }

    /* Gradient text */

    .text-gold {
        background: var(--gradient-gold);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text
    }

    .bg-gold {
        background: var(--gradient-gold)
    }

    .line-gold {
        background: var(--gradient-gold);
        height: 1px;
        margin: 16px 0;
    }

    /* NAV */
    nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 100;
        background: rgba(10, 10, 10, 0.6);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
    }

    nav .inner {
        display: flex;
        align-items: center;
        height: 56px;
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 24px;
        /* important */
    }

    nav .logo {
        font-family: var(--font-display);
        font-size: 14px;
        letter-spacing: 0.3em;
        text-transform: uppercase;
        font-weight: 700;
        flex-shrink: 0;
    }

    nav .links {
        display: none;
        gap: 40px
    }

    nav .links a {
        font-size: 11px;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: var(--muted);
        transition: color .3s
    }

    nav .links a:hover {
        color: var(--gold)
    }

    nav .cta-btn {
        display: none;
        padding: 8px 20px;
        font-size: 11px;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        font-weight: 600;
        color: var(--bg)
    }

    .nav-toggle-btn {
        display: block;
        background: none;
        border: none;
        color: var(--fg);
        cursor: pointer;
        z-index: 102
    }

    .nav-reserve-btn {
        display: none;
        /* Hidden by default, shown on mobile */
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content;
        margin-bottom: 10px;
        padding: 10px 28px;
        font-size: 11px;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        font-weight: 600;
        color: var(--bg);
    }

    .nav-toggle-btn .icon-close {
        display: none
    }

    /* Desktop Navigation */
    @media(min-width:1024px) {
        nav .inner {
            padding: 0 48px;
            /* same as .container */
            gap: 40px;
        }

        nav .logo {
            margin-right: 80px;
            /* ← main property that moves the menu */
        }

        nav .links {
            display: flex;
            align-items: center;
            gap: 40px;
            margin-top: 10px;
        }

        .nav-toggle-btn {
            display: none;
        }
    }

    @media(max-width:1023px) {
        .nav-reserve-btn {
            display: block
        }

        section.hero {
            align-items: flex-start;
        }

        section.hero .container.content {
            padding-top: 30px !important;
        }

        nav .links {
            position: fixed;
            top: 0;
            right: 0;
            bottom: 0;
            width: 280px;
            background: var(--charcoal);
            flex-direction: column;
            align-items: flex-start;
            justify-content: flex-start;
            gap: 24px;
            padding: 96px 40px;
            transform: translateX(100%);
            transition: transform .5s cubic-bezier(.76, 0, .24, 1);
            z-index: 101
        }

        nav .links a {
            font-size: 1rem;
            color: var(--fg)
        }

        nav.is-open .links {
            display: flex;
            transform: translateX(0)
        }
    }

    nav.is-open .nav-toggle-btn .icon-menu {
        display: none
    }

    nav.is-open .nav-toggle-btn .icon-close {
        display: block
    }

    body.nav-open {
        overflow: hidden
    }

    body.nav-open::before {
        content: '';
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
        z-index: 99
    }

    @media(max-width:1023px) {

        /* When mobile nav is open, hide the main nav bar's background to prevent visual glitches */
        nav.is-open {
            background: transparent;
            backdrop-filter: none;
            -webkit-backdrop-filter: none;
        }
    }

    nav .links .reserve-btn {
        display: inline-flex;
        /* to make inner content flex */
        align-items: center;
        /* center text alignment */
        justify-content: center;
        /* to center the text */
        padding: 8px 16px;
        /* same as regular nav buttons */
        font-size: 11px;
        /* same as nav .links a */
        letter-spacing: 0.2em;
        text-transform: uppercase;
        font-weight: 600;
        color: var(--gold);
        background-color: transparent;
        border: 2px solid var(--gold);
        border-radius: 8px;
        text-decoration: none;
        height: auto;
        /* to prevent stretching */
        transition: all 0.2s ease;
    }

    nav .links .reserve-btn:hover {
        background-color: var(--gold);
        color: var(--bg);
        transform: scale(1.05);
    }

    /* Video Player Styles */

    .video-content-overlay {
        position: absolute;
        inset: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 16px;
    }

    .video-placeholder.is-playing .video-content-overlay,
    .gallery-item.is-playing .video-content-overlay,
    .gallery-item.is-playing .hover-label {
        /* Hide hover label for gallery videos when playing */
        display: none !important;
        /* Use !important to override inline styles if necessary */
    }

    /* HERO */

    .hero {
        position: relative;
        min-height: 100vh;
        display: flex;
        align-items: center;
        overflow: hidden
    }

    .hero-bg {
        position: absolute;
        inset: 0
    }

    .hero-bg img {
        width: 100%;
        height: 100%;
        object-fit: cover
    }

    .hero-bg::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, var(--bg), rgba(10, 10, 10, 0.4), transparent);
    }

    .hero-bg::before {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(10, 10, 10, 0.7);
        z-index: 1
    }

    .hero .content {
        position: relative;
        z-index: 2;
        padding-top: 96px;
        padding-bottom: 15px
    }

    @media(min-width:1024px) {
        .hero .content {
            padding-top: 36px;
            /* ← reduced here */
        }
    }

    .hero .desc {
        font-size: 14px;
        color: var(--muted);
        margin-bottom: 8px
    }

    .apply-btn {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        padding: 20px 40px;
        font-size: 32px;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        font-weight: 600;
        color: var(--bg);
        margin-top: 24px
    }

    .hero-actions {
        display: none
    }

    /* This class is no longer used */

    .countdown {
        text-align: center;
        margin-bottom: 24px;
    }

    .countdown .num {
        font-family: var(--font-display);
        font-size: clamp(2rem, 4vw, 3rem);
        font-weight: 700
    }

    .countdown .num span {
        color: var(--gold);
        font-size: 0.6em;
        margin: 0 4px
    }

    .countdown .label {
        font-size: 10px;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: var(--muted);
        margin-top: 8px
    }

    @media(max-width:767px) {
        .apply-btn {
            padding: 12px 24px;
        }
    }

    @media(max-width:1023px) {
        .hero-grid>div:last-child>.apply-btn {
            /* Center the button under the video on mobile */
            margin-left: auto;
            margin-right: auto;
            display: block;
            width: fit-content;
        }
    }

    .video-placeholder {
        position: relative;
        aspect-ratio: 9/14;
        max-height: 70vh;
        margin: 0 auto 16px;
        overflow: hidden;
        border: 1px solid rgba(200, 145, 58, 0.15);
        background: var(--charcoal)
    }

    @media(min-width:1024px) {
        .video-placeholder {
            margin: 0 0 0 auto
        }
    }

    .video-placeholder .inner {
        position: absolute;
        inset: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 16px
    }

    .play-circle {
        width: 64px;
        height: 64px;
        border-radius: 50%;
        border: 2px solid rgba(200, 145, 58, 0.4);
        display: flex;
        align-items: center;
        justify-content: center
    }

    .corner {
        position: absolute;
        width: 32px;
        height: 32px
    }

    .corner.tl {
        top: 0;
        left: 0;
        border-top: 2px solid rgba(200, 145, 58, 0.4);
        border-left: 2px solid rgba(200, 145, 58, 0.4)
    }

    .corner.tr {
        top: 0;
        right: 0;
        border-top: 2px solid rgba(200, 145, 58, 0.4);
        border-right: 2px solid rgba(200, 145, 58, 0.4)
    }

    .corner.bl {
        bottom: 0;
        left: 0;
        border-bottom: 2px solid rgba(200, 145, 58, 0.4);
        border-left: 2px solid rgba(200, 145, 58, 0.4)
    }

    .corner.br {
        bottom: 0;
        right: 0;
        border-bottom: 2px solid rgba(200, 145, 58, 0.4);
        border-right: 2px solid rgba(200, 145, 58, 0.4)
    }

    /* MARQUEE */

    .marquee-wrap {
        border-top: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
        background: rgba(20, 20, 20, 0.5);
        padding: 16px 0;
        overflow: hidden
    }

    .marquee-track {
        display: flex;
        white-space: nowrap;
        animation: marquee 25s linear infinite
    }

    .marquee-track span {
        margin: 0 32px;
        font-size: 13px;
        letter-spacing: 0.3em;
        text-transform: uppercase;
        font-weight: 600;
        color: rgba(232, 224, 208, 0.8)
    }

    .marquee-track .dot {
        color: var(--gold);
        margin-left: 32px
    }

    @keyframes marquee {
        0% {
            transform: translateX(0)
        }

        100% {
            transform: translateX(-50%)
        }
    }

    /* SECTIONS */

    section {
        padding: 40px 0
    }

    @media(min-width:1024px) {
        section {
            padding: 48px 0
        }
    }

    .section-label {
        font-size: 11px;
        letter-spacing: 0.4em;
        text-transform: uppercase;
        color: var(--gold);
        margin-bottom: 16px
    }

    .section-title {
        font-size: clamp(2rem, 5vw, 3.5rem);
        font-weight: 700;
        line-height: 0.95
    }

    .section-title-lg {
        font-size: clamp(2.5rem, 6vw, 4.5rem)
    }

    .section-bg {
        background: rgba(20, 20, 20, 0.3)
    }

    /* ABOUT GRID */

    .about-grid {
        display: grid;
        border: 1px solid var(--border)
    }

    @media(min-width:768px) {
        .about-grid {
            grid-template-columns: 1fr 1fr
        }
    }

    .about-card {
        padding: 32px;
        transition: background .5s
    }

    @media(min-width:1024px) {
        .about-card {
            padding: 48px
        }
    }

    .about-card:hover {
        background: rgba(20, 20, 20, 0.8)
    }

    .about-card .icon {
        font-size: 2rem;
        color: rgba(200, 145, 58, 0.3);
        transition: color .5s;
        margin-bottom: 8px
    }

    .about-card:hover .icon {
        color: rgba(200, 145, 58, 0.6)
    }

    .about-card h3 {
        font-size: 1.25rem;
        font-weight: 700;
        margin-bottom: 12px
    }

    .about-card p {
        font-size: 13px;
        color: var(--muted);
        line-height: 1.7
    }

    .about-border-b {
        border-bottom: 1px solid var(--border)
    }

    .about-border-r {
        border-right: 1px solid var(--border)
    }

    /* STARS */

    .stars-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px
    }

    @media(min-width:1024px) {
        .stars-grid {
            grid-template-columns: repeat(4, 1fr);
            gap: 16px
        }
    }

    .star-card {
        position: relative;
        overflow: hidden;
        border: 1px solid var(--border);
        transition: border-color .5s
    }

    .star-card:hover {
        border-color: rgba(200, 145, 58, 0.3)
    }

    .star-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .7s
    }

    .star-card:hover img {
        transform: scale(1.05)
    }

    .star-card .overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, var(--bg), rgba(10, 10, 10, 0.2), transparent)
    }

    .star-card .num-watermark {
        position: absolute;
        top: 16px;
        right: 16px;
        font-family: var(--font-display);
        font-size: 3.5rem;
        font-weight: 700;
        color: rgba(255, 255, 255, 0.04);
        transition: color .5s
    }

    .star-card:hover .num-watermark {
        color: rgba(200, 145, 58, 0.1)
    }

    .star-card .info {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 20px
    }

    .star-card .info .reveal-line {
        width: 32px;
        height: 1px;
        opacity: 0;
        transition: opacity .5s;
        margin-bottom: 8px
    }

    .star-card:hover .info .reveal-line {
        opacity: 1
    }

    .star-card .info h3 {
        font-size: 1rem;
        font-weight: 700;
        letter-spacing: 0.1em
    }

    .star-card .info .num-small {
        font-size: 11px;
        letter-spacing: 0.2em;
        color: var(--gold);
        opacity: 0.6
    }

    .star-aspect {
        aspect-ratio: 3/4
    }

    @media(min-width:1024px) {
        .star-offset {
            margin-top: 48px
        }
    }

    /* GALLERY */

    .gallery-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px
    }

    @media(min-width:768px) {
        .gallery-grid {
            grid-template-columns: repeat(3, 1fr);
            grid-auto-rows: 240px
        }
    }

    .gallery-item {
        position: relative;
        overflow: hidden;
        border: 1px solid var(--border);
        background: var(--charcoal);
        cursor: pointer
    }

    .gallery-item .hover-label {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 16px;
        background: linear-gradient(to top, rgba(10, 10, 10, 0.9), transparent);
        opacity: 0;
        transition: opacity .3s
    }

    .gallery-item:hover .hover-label {
        opacity: 1
    }

    .gallery-item .corner-accent {
        position: absolute;
        width: 20px;
        height: 20px;
        opacity: 0;
        transition: opacity .3s
    }

    .gallery-item:hover .corner-accent {
        opacity: 1
    }

    .g-span-2 {
        grid-column: span 2;
        grid-row: span 2
    }

    /* PROGRAM */

    .program-grid {
        display: grid;
        gap: 0
    }

    @media(min-width:1024px) {
        .program-grid {
            grid-template-columns: repeat(3, 1fr)
        }
    }

    .program-card {
        position: relative;
        padding: 32px
    }

    @media(min-width:1024px) {
        .program-card {
            padding: 40px
        }
    }

    .program-card .big-num {
        font-family: var(--font-display);
        font-size: clamp(5rem, 10vw, 8rem);
        font-weight: 700;
        color: rgba(200, 145, 58, 0.04);
        position: absolute;
        top: -16px;
        left: -8px;
        user-select: none
    }

    .program-card .dot {
        width: 8px;
        height: 8px;
        background: var(--gold);
        border-radius: 50%;
        display: inline-block
    }

    .program-card .day-label {
        font-size: 11px;
        letter-spacing: 0.3em;
        text-transform: uppercase;
        color: var(--gold);
        font-weight: 600
    }

    .program-card h3 {
        font-size: clamp(1.25rem, 2.5vw, 1.75rem);
        font-weight: 700;
        margin: 16px 0;
        line-height: 1.1
    }

    .program-border {
        border-right: 1px solid var(--border)
    }

    /* ROOMS */

    .rooms-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px
    }

    @media(min-width:1024px) {
        .rooms-grid {
            grid-template-columns: repeat(3, 1fr)
        }
    }

    .room-card {
        position: relative;
        overflow: hidden;
        border: 1px solid var(--border);
        transition: border-color .5s
    }

    .room-card:hover {
        border-color: rgba(200, 145, 58, 0.2)
    }

    .room-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .7s;
        opacity: 0.6
    }

    .room-card:hover img {
        transform: scale(1.1);
        opacity: 0.8
    }

    .room-card .overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, var(--bg), rgba(10, 10, 10, 0.4), transparent)
    }

    .room-card .info {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 20px
    }

    .room-card h3 {
        font-size: 1rem;
        font-weight: 700
    }

    .room-card p {
        font-size: 11px;
        color: var(--muted);
        margin-top: 4px
    }

    .room-big {
        grid-column: span 2
    }

    @media(min-width:1024px) {
        .room-big {
            grid-column: span 1;
            aspect-ratio: 4/3
        }
    }

    .room-normal {
        aspect-ratio: 16/9
    }

    @media(min-width:1024px) {
        .room-normal {
            aspect-ratio: 4/3
        }
    }

    /* RULES */

    .rules-grid {
        display: grid;
        gap: 16px
    }

    @media(min-width:768px) {
        .rules-grid {
            grid-template-columns: 1fr 1fr
        }
    }

    @media(min-width:1024px) {
        .rules-grid {
            grid-template-columns: repeat(3, 1fr)
        }
    }

    .rule-card {
        display: flex;
        gap: 16px;
        padding: 24px;
        background: var(--card);
        border: 1px solid var(--border)
    }

    .rule-card .star {
        color: var(--gold);
        font-family: var(--font-display);
        font-size: 1.5rem;
        font-weight: 700;
        flex-shrink: 0
    }

    .rule-card h3 {
        font-size: 0.9rem;
        font-weight: 700;
        margin-bottom: 8px
    }

    .rule-card p {
        font-size: 11px;
        color: var(--muted);
        line-height: 1.7
    }

    /* TARIFFS */

    .tariffs-grid {
        display: grid;
        gap: 20px
    }

    @media(min-width:768px) {
        .tariffs-grid {
            grid-template-columns: 1fr 1fr
        }
    }

    @media(min-width:1024px) {
        .tariffs-grid {
            grid-template-columns: repeat(3, 1fr)
        }
    }

    .tariff-card {
        display: flex;
        flex-direction: column;
        padding: 32px;
        border: 1px solid var(--border);
        background: var(--card);
        transition: border-color .5s
    }

    .tariff-card:hover {
        border-color: rgba(200, 145, 58, 0.2)
    }

    .tariff-card.featured {
        border-color: rgba(200, 145, 58, 0.5);
        box-shadow: var(--shadow-gold)
    }

    .tariff-card .persons {
        font-size: 10px;
        letter-spacing: 0.3em;
        text-transform: uppercase;
        color: var(--muted)
    }

    .tariff-card .name {
        font-size: 1.25rem;
        font-weight: 700;
        margin-top: 8px
    }

    .tariff-card .price {
        font-size: 1.75rem;
        font-weight: 700;
        margin: 12px 0 24px
    }

    .tariff-card ul {
        flex: 1;
        list-style: none;
        margin-bottom: 32px
    }

    .tariff-card li {
        display: flex;
        align-items: flex-start;
        gap: 8px;
        font-size: 12px;
        margin-bottom: 12px
    }

    .tariff-card .check {
        color: var(--gold)
    }

    .tariff-card .cross {
        color: rgba(140, 140, 140, 0.5)
    }

    .tariff-card .excluded {
        color: rgba(140, 140, 140, 0.5)
    }

    .tariff-apply {
        text-align: center;
        padding: 12px;
        font-size: 11px;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        font-weight: 600;
        transition: opacity .3s
    }

    .tariff-apply:hover {
        opacity: 0.9
    }

    .tariff-apply.primary {
        color: var(--bg)
    }

    .tariff-apply.outline {
        border: 1px solid rgba(200, 145, 58, 0.3);
        color: var(--gold)
    }

    .tariff-apply.outline:hover {
        background: rgba(200, 145, 58, 0.1)
    }

    /* RESERVE */

    .reserve-form {
        padding: 32px;
        background: var(--card);
        border: 1px solid var(--border)
    }

    .form-label {
        display: block;
        font-size: 11px;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        color: var(--muted);
        margin-bottom: 8px
    }

    .form-group {
        margin-bottom: 20px
    }

    .method-btns {
        display: flex;
        gap: 12px
    }

    .method-btn {
        flex: 1;
        padding: 10px;
        font-size: 11px;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        border: 1px solid var(--border);
        background: transparent;
        color: var(--muted);
        cursor: pointer;
        transition: all .3s;
        font-family: var(--font-body)
    }

    .method-btn.active {
        border-color: var(--gold);
        background: rgba(200, 145, 58, 0.1);
        color: var(--gold)
    }

    .form-input,
    .form-select {
        width: 100%;
        padding: 12px 16px;
        background: var(--input);
        border: 1px solid var(--border);
        color: var(--fg);
        font-size: 14px;
        font-family: var(--font-body);
        outline: none;
        transition: border-color .3s;
        -webkit-appearance: none;
        appearance: none;
        border-radius: 0
    }

    .form-input:focus,
    .form-select:focus {
        border-color: var(--gold)
    }

    .form-input::placeholder {
        color: var(--muted)
    }

    .submit-btn {
        width: 100%;
        padding: 16px;
        font-size: 11px;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        font-weight: 600;
        color: var(--bg);
        border: none;
        cursor: pointer;
        transition: opacity .3s;
        font-family: var(--font-body)
    }

    .submit-btn:hover {
        opacity: 0.9
    }

    /* HOW TO JOIN */

    .join-grid {
        display: grid;
        gap: 16px;
        max-width: 900px;
        margin: 0 auto
    }

    @media(min-width:768px) {
        .join-grid {
            grid-template-columns: 1fr 1fr
        }
    }

    @media(min-width:1024px) {
        .join-grid {
            grid-template-columns: repeat(3, 1fr)
        }
    }

    .join-step {
        display: flex;
        align-items: center;
        gap: 16px;
        padding: 24px;
        background: var(--card);
        border: 1px solid var(--border)
    }

    .join-step .step-num {
        font-family: var(--font-display);
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--gold)
    }

    .join-step .step-text {
        font-size: 13px;
        color: rgba(232, 224, 208, 0.8)
    }

    /* FOOTER */

    footer {
        padding: 48px 0;
        border-top: 1px solid var(--border);
        text-align: center
    }

    footer .brand {
        font-family: var(--font-display);
        font-size: 1rem;
        letter-spacing: 0.3em;
        font-weight: 700;
        margin-bottom: 16px
    }

    footer .copy {
        font-size: 11px;
        color: var(--muted)
    }

    /* LIGHTBOX — OPTIMIZED FOR MOBILE */

    .lightbox {
        position: fixed;
        inset: 0;
        z-index: 10000;
        display: none;
        align-items: center;
        justify-content: center;
        touch-action: none;
    }

    .lightbox-overlay {
        position: absolute;
        inset: 0;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(12px);
    }

    .lightbox-content {
        position: relative;
        width: 100%;
        height: 100%;
        max-width: 100vw;
        max-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px;
    }

    .lightbox-media {
        width: 100%;
        height: 100%;
        max-height: 92vh;
        background: #000;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        border-radius: 8px;
        border: 1px solid var(--border);
    }

    .lightbox-media img,
    .lightbox-media video {
        max-width: 100%;
        max-height: 92vh;
        object-fit: contain;
        user-select: none;
    }

    /* Close button */

    .lightbox-close {
        position: absolute;
        top: 15px;
        right: 15px;
        background: rgba(0, 0, 0, 0.6);
        color: white;
        border: none;
        font-size: 28px;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 20;
        cursor: pointer;
    }

    /* Navigation arrows */

    .lightbox-prev,
    .lightbox-next {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(10, 10, 10, 0.75);
        color: var(--gold);
        border: none;
        width: 50px;
        height: 70px;
        font-size: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 15;
        cursor: pointer;
        user-select: none;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    @media (min-width: 768px) {
        .lightbox-prev {
            left: -20px;
        }

        .lightbox-next {
            right: -20px;
        }
    }

    /* Counter */

    .lightbox-counter {
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        background: rgba(0, 0, 0, 0.6);
        color: var(--muted);
        font-size: 14px;
        padding: 6px 16px;
        border-radius: 20px;
        letter-spacing: 1px;
        font-family: var(--font-body);
        z-index: 15;
    }

    /* THANK YOU OVERLAY — FIXED VERSION */

    .thank-you-overlay {
        position: fixed !important;
        inset: 0 !important;
        background: rgba(10, 10, 10, 0.98) !important;
        backdrop-filter: blur(20px) !important;
        z-index: 99999 !important;
        display: none;
        align-items: center;
        justify-content: center;
        padding: 20px;
        overflow-y: auto;
    }

    .thank-you-content {
        text-align: center;
        max-width: 520px;
        padding: 60px 30px;
        border: 1px solid var(--border);
        background: var(--card);
        box-shadow: 0 0 60px rgba(200, 145, 58, 0.2);
    }

    .thank-you-icon {
        font-size: 68px;
        color: var(--gold);
        margin-bottom: 20px;
        line-height: 1;
    }

    .thank-you-title {
        font-family: var(--font-display);
        font-size: clamp(2rem, 6vw, 3.2rem);
        font-weight: 700;
        margin-bottom: 24px;
    }

    .thank-you-text {
        font-size: 15px;
        line-height: 1.7;
        color: var(--fg);
        margin-bottom: 16px;
    }

    .thank-you-line {
        width: 80px;
        height: 1px;
        background: var(--gradient-gold);
        margin: 32px auto;
    }

    /* SCROLL ANIMATION */

    .reveal {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity .8s ease, transform .8s ease
    }

    .reveal.visible {
        opacity: 1;
        transform: translateY(0)
    }

    /* SCROLLBAR */

    ::-webkit-scrollbar {
        width: 6px
    }

    ::-webkit-scrollbar-track {
        background: var(--bg)
    }

    ::-webkit-scrollbar-thumb {
        background: rgba(200, 145, 58, 0.3);
        border-radius: 3px
    }

    /* ==================== HERO LAYOUT FIX ==================== */


        /* right column */
        .hero .content>div:last-child {
            display: flex;
            flex-direction: column;
        }

        .hero .video-placeholder {
            margin: 0 0 0 auto;
            max-height: 65vh;
        }

        .hero .countdown {
            margin-top: auto;
            text-align: right;
            padding-top: 40px;
        }

    /* Mobile version */

    @media (max-width: 1023px) {
        .hero .apply-btn {
            margin: 24px auto 0 !important;
        }

        .hero .countdown {
            margin-top: 32px;
            text-align: center;
        }
    }

    /* Mobile version fix */

    @media (max-width: 1023px) {
        .hero .apply-btn {
            margin: 24px auto 0 !important;
            padding: 20px 40px;
            font-size: 32px;
        }

        .hero .countdown {
            margin-top: 32px;
            text-align: center;
        }
    }

    @media (min-width: 1024px) {
        .hero-right {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .hero-right .video-placeholder {
            order: 1;
            margin-bottom: 24px;
            /* from video to button */
        }

        .hero-right .apply-btn {
            order: 2;
            padding: 20px 40px;
            /* enlarged button */
            font-size: 32px;
            margin-bottom: 24px;
            /* from button to timer */
        }

        .hero-right .countdown {
            order: 3;
            margin: 0;
            /* remove extra margins */
        }
    }

    @media (min-width: 1024px) {
        .desktop-br {
            display: inline;
            /* line break is visible on desktop */
        }


        .hero-grid>div {
            max-width: 800px;
            /* limit text width */
            margin: 0 auto;
        }

        .hero-grid .desc {
            margin-bottom: 10px;
        }
    }

    .desc-wrapper {
        display: block;
        /* default for mobile */
        gap: 16px;
        /* space between paragraphs */
    }

    @media (min-width: 768px) {

        /* desktop */
        .desc-wrapper {
            display: flex;
            flex-wrap: nowrap;
            justify-content: center;
            gap: 5px;
            margin-bottom: 20px;
        }

        .desc-wrapper .desc {
            margin: 0;
            /* remove default <p> margins */
        }
    }

    /* Desktop: icons next to Apply button */

    .cta-wrapper {
        display: flex;
        align-items: center;
        gap: 12px;
        /* space between button and icons */
    }

    /* Messenger icons navigation for desktop */

    .nav-messengers {
        display: flex;
        /* Icons in a row */
        gap: 12px;
        /* Space between icons */
        align-items: center;
        /* Center alignment */
    }

    .nav-messengers a img {
        width: 24px;
        height: 24px;
        transition: transform 0.3s;
    }

    .nav-messengers a:hover img {
        transform: scale(1.2);
    }

    @media (max-width:1023px) {
        .nav-messengers {
            display: flex;
            /* show in menu */
            justify-content: center;
            /* centered */
            gap: 16px;
            margin-top: 24px;
            flex-wrap: wrap;
        }

        .nav-messengers a img {
            width: 32px;
            height: 32px;
        }
    }

    /* Desktop version mobile icons are hidden */

    @media (min-width:1024px) {
        .mobile-messengers {
            display: none;
        }
    }

    @media(max-width:1023px) {
        nav .inner {
            justify-content: space-between;
            padding: 0 24px;
            /* already exists, just leaving it */
        }
    }

/* ====================== HERO TEXT - COMPACT & CENTERED ====================== */

.hero-grid {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 24px;
    padding-right: 24px;
}

.hero-text-center {
    text-align: center;
    max-width: 760px;
    width: 100%;
}

/* Subtitle */
.subtitle {
    font-size: 13px;
    letter-spacing: 0.45em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
}

/*  */
.hero h1 {
    font-size: clamp(2.7rem, 7vw, 4.9rem);
    line-height: 1.05;
    font-weight: 700;
    margin-bottom: 26px;
}

/*  */
.hero-line {
    height: 1px;
    background: var(--gradient-gold);
    max-width: 180px;
    margin: 0 auto 38px;
}

/* Private night  */
.private-night {
    margin: 24px 0 0;
}

.private-night p {
    font-family: var(--font-display);
    font-size: clamp(0.95rem, 3.2vw, 1.25rem);
    line-height: 1.2;
    color: var(--fg);
    margin-bottom: 12px;
}

.private-night p:last-child {
    font-size: clamp(0.95rem, 3.2vw, 1.25rem);
    color: var(--fg);
    font-weight: 500;
}

/* ====================== DESC ====================== */
@media (min-width: 1024px) {
    .hero-grid {
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .hero h1 {
        font-size: 4.7rem;
    }

    .hero-line {
        max-width: 220px;
        margin-bottom: 46px;
    }

    .private-night p:first-child {
        font-size: 0.95rem;
    }
}