        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', sans-serif;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            background: #0b0f19;
            color: white;
            overflow-x: hidden;
        }

        .hero {
            height: 100vh;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 20px;
            background:
                linear-gradient(to bottom, rgba(0, 0, 0, 0.35), rgba(11, 15, 25, 1)),
                url('../imgs/chalenoite.jpeg');
            background-size: cover;
            background-position: center;
        }

        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            backdrop-filter: blur(1px);
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 1100px;
            animation: fadeUp 1.2s ease;
        }

        .location {
            margin-top: 1.2rem;
            font-size: 1.4rem;
            text-transform: uppercase;
            letter-spacing: 6px;
            color: rgba(255, 255, 255, 0.75);
            font-weight: 300;
        }

        .badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 12px 20px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.12);
            backdrop-filter: blur(10px);
            margin-bottom: 30px;
        }

        .badge-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #5cff85;
            animation: pulse 1.5s infinite;
        }

        .hero h1 {
            font-size: clamp(4rem, 10vw, 9rem);
            font-weight: 900;
            line-height: 0.95;
            letter-spacing: -5px;
        }

        .hero h1 span {
            color: #f6c667;
            display: block;
        }

        .hero p {
            margin-top: 35px;
            font-size: 1.3rem;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.8);
            max-width: 850px;
            margin-inline: auto;
        }

        .buttons {
            margin-top: 45px;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .btn {
            padding: 18px 34px;
            border-radius: 18px;
            border: none;
            cursor: pointer;
            font-size: 1rem;
            font-weight: 700;
            transition: 0.4s;
        }

        .btn-primary {
            background: #f6c667;
            color: black;
            box-shadow: 0 20px 40px rgba(246, 198, 103, 0.25);
        }

        .btn-primary:hover {
            transform: translateY(-5px) scale(1.03);
        }

        .btn-secondary {
            background: rgba(255, 255, 255, 0.08);
            color: white;
            border: 1px solid rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.16);
        }

        .scroll {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            letter-spacing: 5px;
            font-size: 12px;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.7);
            animation: bounce 2s infinite;
        }

        section {
            padding: 120px 8%;
        }

        .section-title {
            text-align: center;
            margin-bottom: 70px;
        }

        .section-title h2 {
            font-size: clamp(2.5rem, 6vw, 5rem);
            font-weight: 900;
            margin-bottom: 20px;
        }

        .section-title p {
            max-width: 700px;
            margin: auto;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.7;
            font-size: 1.1rem;
        }

        .cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
        }

        .card {
            position: relative;
            height: 500px;
            overflow: hidden;
            border-radius: 32px;
            cursor: pointer;
            border: 1px solid rgba(255, 255, 255, 0.08);
            transition: 0.5s;
        }

        .card:hover {
            transform: translateY(-10px);
            border-color: rgba(246, 198, 103, 0.4);
        }

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

        .card:hover img {
            transform: scale(1.1);
        }

        .card::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.1));
        }

        .card-content {
            position: absolute;
            bottom: 0;
            z-index: 2;
            padding: 35px;
        }

        .card-content h3 {
            font-size: 2rem;
            margin-bottom: 15px;
        }

        .card-content p {
            color: rgba(255, 255, 255, 0.75);
            line-height: 1.7;
        }

        .experience {
            background: #121826;
        }

        .experience-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 70px;
            align-items: center;
        }

        .experience h2 {
            font-size: clamp(3rem, 5vw, 5rem);
            font-weight: 900;
            line-height: 1.1;
            margin: 25px 0;
        }

        .experience p {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.9;
            font-size: 1.1rem;
        }

        .tag {
            display: inline-block;
            padding: 12px 20px;
            border-radius: 999px;
            background: rgba(246, 198, 103, 0.1);
            border: 1px solid rgba(246, 198, 103, 0.2);
            color: #f6c667;
        }

        .features {
            margin-top: 40px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 18px;
        }

        .feature {
            padding: 18px;
            border-radius: 20px;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.08);
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .feature-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #f6c667;
        }

        .experience-image {
            position: relative;
        }

        .experience-image::before {
            content: '';
            position: absolute;
            inset: -20px;
            background: rgba(246, 198, 103, 0.2);
            filter: blur(60px);
            border-radius: 50%;
        }

        .experience-image img {
            position: relative;
            width: 100%;
            border-radius: 40px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }

        .gallery-item {
            overflow: hidden;
            border-radius: 28px;
            height: 260px;
        }

        .gallery-item.large {
            grid-column: span 2;
            grid-row: span 2;
            height: 540px;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: 0.8s;
        }

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

        .cta {
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, #f6c667, #ffe29a);
            text-align: center;
            color: black;
        }

        .cta h2 {
            font-size: clamp(3rem, 6vw, 6rem);
            font-weight: 900;
            line-height: 1.1;
            max-width: 1000px;
            margin: auto;
        }

        .cta p {
            margin-top: 30px;
            font-size: 1.3rem;
            color: rgba(0, 0, 0, 0.7);
            max-width: 800px;
            margin-inline: auto;
            line-height: 1.8;
        }

        .cta .btn {
            margin-top: 40px;
            background: black;
            color: white;
        }

        .reservation {
            background: #121826;
        }

        .reservation-container {
            max-width: 900px;
            margin: auto;
        }

        .reservation-form {
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 35px;
            padding: 45px;
            backdrop-filter: blur(20px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
        }

        .form-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 20px;
        }

        .form-group {
            margin-bottom: 22px;
        }

        .form-group label {
            display: block;
            margin-bottom: 10px;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.9);
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 18px;
            border-radius: 18px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            background: rgba(255, 255, 255, 0.05);
            color: white;
            font-size: 1rem;
            outline: none;
            transition: 0.3s;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            border-color: #f6c667;
            box-shadow: 0 0 0 4px rgba(246, 198, 103, 0.15);
        }

        .form-group textarea {
            resize: vertical;
        }

        .form-button {
            width: 100%;
            margin-top: 10px;
            font-size: 1.1rem;
        }

        select option {
            background: #121826;
        }

        input[type="date"]::-webkit-calendar-picker-indicator {
            filter: invert(1);
        }

        .seo-text {
            width: 100%;
            padding: 8rem 8%;
            background:
                linear-gradient(to bottom,
                    rgba(15, 15, 15, 0.95),
                    rgba(10, 10, 10, 1));
            position: relative;
            overflow: hidden;
        }

        .seo-text::before {
            content: "";
            position: absolute;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle,
                    rgba(255, 255, 255, 0.04),
                    transparent 70%);
            top: -200px;
            right: -200px;
            pointer-events: none;
        }

        .seo-text .section-title {
            text-align: center;
            margin-bottom: 4rem;
        }

        .seo-text .section-title h2 {
            font-size: clamp(2.2rem, 5vw, 4rem);
            font-weight: 800;
            color: #fff;
            margin-bottom: 1rem;
            line-height: 1.1;
        }

        .seo-content {
            max-width: 950px;
            margin: 0 auto;

            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .seo-content p {
            font-size: 1.15rem;
            line-height: 2;
            color: rgba(255, 255, 255, 0.78);

            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.05);

            padding: 2rem;
            border-radius: 24px;

            backdrop-filter: blur(10px);

            transition:
                transform .3s ease,
                border-color .3s ease,
                background .3s ease;
        }

        .final-experience {
            position: relative;
            width: 100%;
            min-height: 95vh;

            overflow: hidden;

            display: flex;
            align-items: center;

            padding: 6rem 8%;
        }

        .final-experience img {
            position: absolute;
            inset: 0;

            width: 100%;
            height: 100%;

            object-fit: cover;
        }

        .final-overlay {
            position: absolute;
            inset: 0;

            background:
                linear-gradient(to right,
                    rgba(0, 0, 0, 0.82) 15%,
                    rgba(0, 0, 0, 0.45) 45%,
                    rgba(0, 0, 0, 0.7) 100%);
        }

        .final-container {
            position: relative;
            z-index: 2;

            width: 100%;

            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            gap: 4rem;
        }

        .final-left {
            max-width: 650px;
        }

        .final-badge {
            display: inline-flex;

            padding: .8rem 1.3rem;

            border-radius: 999px;

            background: rgba(255, 255, 255, 0.08);

            border: 1px solid rgba(255, 255, 255, 0.1);

            backdrop-filter: blur(12px);

            color: rgba(255, 255, 255, 0.92);

            font-size: .9rem;

            margin-bottom: 2rem;
        }

        .final-left h2 {
            font-size: clamp(3.5rem, 8vw, 6.5rem);

            line-height: .95;

            color: #fff;

            font-weight: 800;

            margin-bottom: 2rem;
        }

        .final-left p {
            font-size: 1.2rem;

            line-height: 1.8;

            color: rgba(255, 255, 255, 0.82);

            max-width: 550px;

            margin-bottom: 3rem;
        }

        .final-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .final-right {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .info-card {
            width: 240px;

            padding: 2rem;

            border-radius: 28px;

            background: rgba(255, 255, 255, 0.08);

            border: 1px solid rgba(255, 255, 255, 0.12);

            backdrop-filter: blur(18px);

            transition:
                transform .3s ease,
                background .3s ease;
        }

        .info-card:hover {
            transform: translateX(-6px);

            background: rgba(255, 255, 255, 0.12);
        }

        .info-card h3 {
            font-size: 2rem;
            color: #fff;

            margin-bottom: .5rem;
        }

        .info-card span {
            color: rgba(255, 255, 255, 0.75);

            line-height: 1.5;
        }


        footer {
            padding: 40px 8%;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 20px;
            align-items: center;
        }

        footer h3 {
            font-size: 2rem;
            color: #f6c667;
        }

        footer p {
            margin-top: 8px;
            color: rgba(255, 255, 255, 0.5);
        }

        .footer-links {
            display: flex;
            gap: 25px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.65);
            text-decoration: none;
            transition: 0.3s;
        }

        .footer-links a:hover {
            color: white;
        }

        .hidden {
            opacity: 0;
            transform: translateY(80px);
            transition: 1s;
        }

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

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

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

        @keyframes bounce {

            0%,
            100% {
                transform: translate(-50%, 0);
            }

            50% {
                transform: translate(-50%, -10px);
            }
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(92, 255, 133, 0.5);
            }

            70% {
                box-shadow: 0 0 0 12px rgba(92, 255, 133, 0);
            }

            100% {
                box-shadow: 0 0 0 0 rgba(92, 255, 133, 0);
            }
        }

        @media (max-width: 1200px) {

            section {
                padding: 100px 6%;
            }

            .hero-content {
                max-width: 900px;
            }

            .gallery-item.large {
                height: 420px;
            }
        }


        @media (max-width: 980px) {

            .final-container {
                flex-direction: column;
                align-items: flex-start;
            }

            .final-right {
                width: 100%;
                flex-direction: row;
                flex-wrap: wrap;
            }

            .info-card {
                width: calc(50% - .5rem);
            }

        }

        @media (max-width: 900px) {

            section {
                padding: 90px 24px;
            }

            .hero {
                min-height: 100vh;
                height: auto;
                padding-top: 120px;
                padding-bottom: 120px;
            }

            .hero h1 {
                font-size: clamp(3rem, 13vw, 5rem);
                line-height: 1;
                letter-spacing: -2px;
            }

            .hero p {
                font-size: 1rem;
                line-height: 1.7;
                margin-top: 25px;
            }

            .badge {
                padding: 10px 16px;
                font-size: 14px;
                margin-bottom: 25px;
            }

            .buttons {
                flex-direction: column;
                align-items: center;
                gap: 14px;
                width: 100%;
            }

            .btn {
                width: 100%;
                max-width: 340px;
                padding: 16px 24px;
                font-size: 1rem;
            }

            .scroll {
                display: none;
            }

            .section-title {
                margin-bottom: 45px;
            }

            .section-title h2 {
                font-size: clamp(2rem, 10vw, 3rem);
                line-height: 1.1;
            }

            .section-title p {
                font-size: 1rem;
                line-height: 1.7;
            }

            .cards {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .card {
                height: 400px;
                border-radius: 24px;
            }

            .card-content {
                padding: 24px;
            }

            .card-content h3 {
                font-size: 1.5rem;
            }

            .card-content p {
                font-size: 0.95rem;
            }

            .experience-container {
                grid-template-columns: 1fr;
                gap: 45px;
            }

            .experience h2 {
                font-size: clamp(2.2rem, 10vw, 3.5rem);
                line-height: 1.1;
            }

            .experience p {
                font-size: 1rem;
                line-height: 1.8;
            }

            .features {
                grid-template-columns: 1fr;
                gap: 14px;
            }

            .feature {
                padding: 16px;
                border-radius: 16px;
                font-size: 0.95rem;
            }

            .experience-image img {
                border-radius: 28px;
            }

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

            .gallery-item,
            .gallery-item.large {
                grid-column: span 1;
                grid-row: span 1;
                height: 240px;
                border-radius: 22px;
            }

            .reservation-form {
                padding: 28px 20px;
                border-radius: 26px;
            }

            .form-grid {
                grid-template-columns: 1fr;
                gap: 0;
            }

            .form-group {
                margin-bottom: 18px;
            }

            .form-group input,
            .form-group select,
            .form-group textarea {
                padding: 16px;
                border-radius: 16px;
                font-size: 16px;
            }

            .cta {
                padding: 90px 24px;
            }

            .cta h2 {
                font-size: clamp(2.3rem, 10vw, 4rem);
                line-height: 1.1;
            }

            .cta p {
                font-size: 1rem;
                line-height: 1.8;
            }

            footer {
                flex-direction: column;
                text-align: center;
                gap: 30px;
            }

            .footer-links {
                flex-wrap: wrap;
                justify-content: center;
                gap: 18px;
            }
        }

        @media (max-width: 768px) {

            .seo-text {
                padding: 5rem 6%;
            }

            .seo-content p {
                font-size: 1rem;
                line-height: 1.8;
                padding: 1.5rem;
                border-radius: 20px;
            }

            .seo-text .section-title {
                margin-bottom: 2.5rem;
            }

            .final-experience {
                min-height: auto;
                padding: 5rem 6%;
            }

            .final-left h2 {
                font-size: 3.2rem;
            }

            .final-left p {
                font-size: 1rem;
            }

            .info-card {
                width: 100%;
            }
        }

        @media (max-width: 480px) {

            section {
                padding: 75px 18px;
            }

            .hero {
                padding-top: 100px;
                padding-bottom: 100px;
            }

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

            .hero p {
                font-size: 0.95rem;
            }

            .badge {
                font-size: 12px;
                padding: 8px 14px;
            }

            .btn {
                max-width: 100%;
                font-size: 0.95rem;
            }

            .card {
                height: 340px;
            }

            .gallery-item,
            .gallery-item.large {
                height: 200px;
            }

            .reservation-form {
                padding: 22px 16px;
            }

            .cta h2 {
                font-size: 2.2rem;
            }

            footer h3 {
                font-size: 1.6rem;
            }
        }