        :root {
            --nav-height: 72px;
            --nav-height-scrolled: 60px;
        }

        .nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            height: var(--nav-height);
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 clamp(16px, 4vw, 48px);
            background: var(--bg-overlay);
            backdrop-filter: blur(0px);
            transition: height 0.4s var(--ease-expo), backdrop-filter 0.4s, background 0.4s, box-shadow 0.4s;
            will-change: height;
            animation: navSlideDown 0.6s var(--ease-expo) both;
        }

        .nav.scrolled {
            height: var(--nav-height-scrolled);
            background: var(--bg-overlay-strong);
            backdrop-filter: blur(28px) saturate(200%);
            box-shadow: 0 1px 0 var(--border-nav), 0 8px 40px var(--shadow-color);
        }

        .nav::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 5%;
            right: 5%;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(var(--theme-rgb), 0.12), transparent);
            pointer-events: none;
        }

        .logo {
            flex-shrink: 0;
            z-index: 2;
        }

        .logo>a {
            display: block;
            text-decoration: none;
        }

        .logo>a>img {
            width: 80px;
            height: auto;
            display: block;
            transition: opacity 0.3s, transform 0.3s;
            filter: brightness(1);
        }

        [data-theme="light"] .logo>a>img {
            filter: brightness(0.15);
        }

        .logo:hover>a>img {
            opacity: 0.85;
            transform: scale(0.97);
        }

        .logo-text {
            font-family: var(--font-body);
            font-size: 1.5rem;
            color: var(--text-primary);
            letter-spacing: -0.02em;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0;
        }

        .logo-text span {
            color: var(--theme);
        }

        .nav-center {
            display: flex;
            align-items: center;
            gap: 2px;
        }

        .links {
            display: flex;
            align-items: center;
            gap: 2px;
            list-style: none;
        }

        .links>li {
            position: relative;
        }

        .links>li>a,
        .nav-link {
            display: flex;
            align-items: center;
            gap: 5px;
            padding: 8px 13px;
            color: var(--nav-link-color);
            text-decoration: none;
            font-family: var(--font-display);
            font-size: 0.78rem;
            font-weight: 600;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            border-radius: 8px;
            transition: color 0.25s, background 0.25s;
            cursor: none;
            white-space: nowrap;
            position: relative;
            background: transparent;
            border: none;
            outline: none;
        }

        .links>li>a:hover,
        .nav-link:hover,
        .links>li.open>.nav-link {
            color: var(--nav-link-hover);
            background: var(--nav-bg-hover);
        }

        .links>li>a.active {
            color: var(--theme);
        }

        .chevron {
            width: 13px;
            height: 13px;
            transition: transform 0.3s var(--ease-expo);
            flex-shrink: 0;
            opacity: 0.45;
        }

        .links>li.open .chevron,
        .links>li:hover .chevron {
            transform: rotate(180deg);
            opacity: 0.8;
        }

        .dropdown {
            position: absolute;
            top: calc(100% + 25px);
            left: 50%;
            transform: translateX(-50%) translateY(-10px);
            min-width: 230px;
            background: var(--bg-panel);
            border: 1px solid var(--border);
            border-radius: 14px;
            box-shadow: 0 24px 60px var(--shadow-color), 0 0 0 1px var(--shadow-color);
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.25s var(--ease-expo), transform 0.3s var(--ease-expo);
            overflow: hidden;
            padding: 6px;
            list-style: none;
            backdrop-filter: blur(20px);
        }

        .dropdown::before {
            content: '';
            position: absolute;
            top: -6px;
            left: 50%;
            transform: translateX(-50%) rotate(45deg);
            width: 11px;
            height: 11px;
            background: var(--bg-panel);
            border-top: 1px solid var(--border);
            border-left: 1px solid var(--border);
        }

        .dropdown::after {
            content: '';
            position: absolute;
            top: -18px;
            left: 0;
            right: 0;
            height: 18px;
        }

        .links>li.open .dropdown,
        .links>li:hover .dropdown {
            opacity: 1;
            pointer-events: all;
            transform: translateX(-50%) translateY(0);
        }

        .dropdown li a {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 9px 12px;
            color: var(--text-muted);
            text-decoration: none;
            font-family: var(--font-display);
            font-size: 0.81rem;
            font-weight: 500;
            border-radius: 9px;
            transition: color 0.2s, background 0.2s, gap 0.25s;
        }

        .dropdown li a::before {
            content: '';
            width: 0;
            height: 1.5px;
            background: var(--theme);
            transition: width 0.3s var(--ease-expo);
            flex-shrink: 0;
        }

        .dropdown li a:hover {
            color: var(--text-primary);
            background: var(--nav-bg-hover);
            gap: 14px;
        }

        .dropdown li a:hover::before {
            width: 12px;
        }

        .dropdown li a .sub-icon {
            width: 15px;
            height: 15px;
            opacity: 0.4;
            flex-shrink: 0;
            transition: opacity 0.2s, color 0.2s;
            color: var(--theme);
        }

        .dropdown li a:hover .sub-icon {
            opacity: 1;
        }

        .dropdown-divider {
            height: 1px;
            background: var(--border);
            margin: 5px 8px;
        }

        .nav-cta {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-left: 10px;
            position: relative;
        }

        .btn-book {
            display: flex;
            align-items: center;
            gap: 7px;
            padding: 9px 18px;
            background: var(--theme);
            color: var(--black);
            font-family: var(--font-display);
            font-size: 0.74rem;
            font-weight: 700;
            letter-spacing: 0.07em;
            text-transform: uppercase;
            border-radius: 100px;
            text-decoration: none;
            transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
            white-space: nowrap;
            position: relative;
            overflow: hidden;
        }

        .btn-book::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
            transform: translateX(-100%);
            transition: transform 0.55s var(--ease-expo);
        }

        .btn-book:hover::before {
            transform: translateX(100%);
        }

        .btn-book:hover {
            box-shadow: 0 8px 28px rgba(var(--theme-rgb), 0.4);
            transform: translateY(-2px);
        }

        .btn-contact {
            display: flex;
            align-items: center;
            gap: 7px;
            padding: 8px 16px;
            background: var(--white-06);
            border: 1px solid var(--border-hover);
            color: var(--text-secondary);
            font-family: var(--font-display);
            font-size: 0.74rem;
            font-weight: 700;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            border-radius: 100px;
            cursor: none;
            text-decoration: none;
            transition: background 0.25s, border-color 0.25s, transform 0.2s, color 0.25s;
            white-space: nowrap;
        }

        .btn-contact:hover {
            background: var(--white-10);
            border-color: var(--theme-border);
            color: var(--text-primary);
        }

        .contact-panel {
            position: absolute;
            top: calc(100% + 12px);
            right: 0;
            width: 300px;
            background: var(--bg-panel);
            border: 1px solid var(--border);
            border-radius: 16px;
            box-shadow: 0 24px 60px var(--shadow-color);
            opacity: 0;
            pointer-events: none;
            transform: translateY(-10px);
            transition: opacity 0.25s var(--ease-expo), transform 0.3s var(--ease-expo);
            padding: 20px;
            list-style: none;
            z-index: 100;
            backdrop-filter: blur(20px);
        }

        .nav-cta.open .contact-panel {
            opacity: 1;
            pointer-events: all;
            transform: translateY(0);
        }

        .contact-panel-title {
            font-family: var(--font-display);
            font-size: 0.65rem;
            font-weight: 700;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: var(--text-faint);
            margin-bottom: 14px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 9px 10px;
            border-radius: 125px;
            text-decoration: none;
            transition: background 0.2s;
            margin-bottom: 4px;
        }

        .contact-item:hover {
            background: var(--nav-bg-hover);
        }

        .contact-item-icon {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            background: rgba(var(--theme-rgb), 0.1);
            border: 1px solid rgba(var(--theme-rgb), 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: background 0.2s;
        }

        .contact-item:hover .contact-item-icon {
            background: rgba(var(--theme-rgb), 0.2);
        }

        .contact-item-icon svg {
            width: 15px;
            height: 15px;
            color: var(--theme);
        }

        .contact-item-info {
            display: flex;
            flex-direction: column;
            gap: 1px;
        }

        .contact-item-label {
            font-size: 0.62rem;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: var(--text-faint);
        }

        .contact-item-value {
            font-size: 0.8rem;
            color: var(--text-secondary);
            font-weight: 500;
        }

        .contact-form-wrap {
            margin-top: 14px;
            padding-top: 14px;
            border-top: 1px solid var(--border);
        }

        .contact-form-wrap input,
        .contact-form-wrap textarea {
            width: 100%;
            background: var(--white-04);
            border: 1px solid var(--border);
            border-radius: 8px;
            padding: 9px 12px;
            color: var(--text-primary);
            font-family: var(--font-display);
            font-size: 0.8rem;
            outline: none;
            transition: border-color 0.2s, background 0.2s;
            margin-bottom: 8px;
        }

        .contact-form-wrap input::placeholder,
        .contact-form-wrap textarea::placeholder {
            color: var(--text-faint);
        }

        .contact-form-wrap input:focus,
        .contact-form-wrap textarea:focus {
            border-color: rgba(var(--theme-rgb), 0.4);
            background: rgba(var(--theme-rgb), 0.04);
        }

        .contact-form-wrap textarea {
            height: 70px;
            resize: none;
        }

        .contact-form-submit {
            width: 100%;
            padding: 9px;
            background: var(--theme);
            border: none;
            border-radius: 125px;
            color: var(--black);
            font-family: var(--font-display);
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.07em;
            text-transform: uppercase;
            cursor: none;
            transition: background 0.2s, transform 0.15s;
        }

        .contact-form-submit:hover {
            background: var(--theme-light);
        }

        .contact-form-submit:active {
            transform: scale(0.97);
        }

        .form-msg {
            margin-top: 8px;
            font-size: 0.75rem;
            text-align: center;
            padding: 6px;
            border-radius: 7px;
        }

        .form-msg.success {
            color: #6ee7b7;
            background: rgba(110, 231, 183, 0.1);
        }

        .form-msg.error {
            color: #fca5a5;
            background: rgba(252, 165, 165, 0.1);
        }

        .hamburger {
            display: none;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 5px;
            width: 40px;
            height: 40px;
            cursor: none;
            border-radius: 9px;
            transition: background 0.2s;
            background: transparent;
            border: none;
            outline: none;
            z-index: 1001;
            flex-shrink: 0;
        }

        .hamburger:hover {
            background: var(--nav-bg-hover);
        }

        .hamburger span {
            display: block;
            height: 1.5px;
            background: var(--hamburger-color);
            border-radius: 2px;
            transition: width 0.3s var(--ease-expo), transform 0.35s var(--ease-expo), opacity 0.25s;
        }

        .hamburger span:nth-child(1) {
            width: 22px;
        }

        .hamburger span:nth-child(2) {
            width: 16px;
        }

        .hamburger span:nth-child(3) {
            width: 22px;
        }

        .hamburger.active span:nth-child(1) {
            width: 20px;
            transform: translateY(6.5px) rotate(45deg);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
            transform: scaleX(0);
        }

        .hamburger.active span:nth-child(3) {
            width: 20px;
            transform: translateY(-6.5px) rotate(-45deg);
        }

        .mobile-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(6px);
            z-index: 998;
            opacity: 0;
            transition: opacity 0.35s;
            pointer-events: none;
        }

        .mobile-overlay.visible {
            opacity: 1;
            pointer-events: all;
        }

        .mobile-menu {
            display: none;
            position: fixed;
            top: 0;
            right: 0;
            bottom: 0;
            width: min(340px, 90vw);
            background: var(--bg-mobile-menu);
            border-left: 1px solid var(--border);
            z-index: 999;
            padding: calc(var(--nav-height) + 16px) 0 32px;
            overflow-y: auto;
            transform: perspective(1200px) rotateY(-45deg) translateX(100%);
            transform-origin: right center;
            opacity: 0;
            transition: transform 0.5s var(--ease-expo), opacity 0.4s;
            box-shadow: -24px 0 80px var(--shadow-color);
            backdrop-filter: blur(20px);
        }

        .mobile-menu.open {
            transform: perspective(1200px) rotateY(0deg) translateX(0);
            opacity: 1;
        }

        .mobile-menu-inner {
            padding: 0 22px;
        }

        .mobile-nav-link {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px 4px;
            color: var(--text-secondary);
            text-decoration: none;
            font-family: var(--font-display);
            font-size: 1rem;
            font-weight: 700;
            letter-spacing: 0.02em;
            border-bottom: 1px solid var(--border);
            transition: color 0.2s;
            cursor: none;
            background: transparent;
            border-top: none;
            border-left: none;
            border-right: none;
            width: 100%;
            text-align: left;
            outline: none;
        }

        .mobile-nav-link:hover,
        .mobile-nav-link.open {
            color: var(--text-primary);
        }

        .mobile-chevron {
            width: 18px;
            height: 18px;
            opacity: 0.38;
            transition: transform 0.3s var(--ease-expo), opacity 0.2s;
            flex-shrink: 0;
        }

        .mobile-nav-link.open .mobile-chevron {
            transform: rotate(180deg);
            opacity: 0.75;
        }

        .mobile-submenu {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s var(--ease-expo);
        }

        .mobile-submenu.open {
            max-height: 700px;
        }

        .mobile-submenu a {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 11px 0 11px 16px;
            color: var(--text-muted);
            text-decoration: none;
            font-family: var(--font-display);
            font-size: 0.86rem;
            font-weight: 500;
            border-bottom: 1px solid var(--white-04);
            transition: color 0.2s, gap 0.25s;
        }

        .mobile-submenu a::before {
            content: '';
            width: 0;
            height: 1.5px;
            background: var(--theme);
            transition: width 0.3s var(--ease-expo);
            flex-shrink: 0;
        }

        .mobile-submenu a:hover {
            color: var(--text-secondary);
            gap: 16px;
        }

        .mobile-submenu a:hover::before {
            width: 14px;
        }

        .mobile-contact-info {
            margin-top: 24px;
            padding: 16px;
            background: var(--white-04);
            border: 1px solid var(--border);
            border-radius: 14px;
        }

        .mobile-contact-info a {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 9px 0;
            color: var(--text-muted);
            text-decoration: none;
            font-family: var(--font-display);
            font-size: 0.84rem;
            transition: color 0.2s;
            border-bottom: 1px solid var(--white-04);
        }

        .mobile-contact-info a:last-child {
            border-bottom: none;
        }

        .mobile-contact-info a:hover {
            color: var(--text-primary);
        }

        .mobile-contact-info a svg {
            width: 14px;
            height: 14px;
            flex-shrink: 0;
            color: var(--theme);
            opacity: 0.7;
        }

        .mobile-book-btn {
            display: block;
            margin-top: 20px;
            padding: 14px;
            background: var(--theme);
            color: var(--black);
            font-family: var(--font-display);
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            text-align: center;
            text-decoration: none;
            border-radius: 100px;
            transition: background 0.2s, transform 0.2s;
            position: relative;
            overflow: hidden;
        }

        .mobile-book-btn::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
            transform: translateX(-100%);
            transition: transform 0.55s var(--ease-expo);
        }

        .mobile-book-btn:hover::before {
            transform: translateX(100%);
        }

        .mobile-book-btn:hover {
            transform: translateY(-2px);
        }

        .mobile-form {
            margin-top: 20px;
            padding: 0 4px;
        }

        .mobile-form-title {
            font-family: var(--font-display);
            font-size: 0.64rem;
            font-weight: 700;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: var(--text-faint);
            margin-bottom: 12px;
        }

        .mobile-form input,
        .mobile-form textarea {
            width: 100%;
            background: var(--white-04);
            border: 1px solid var(--border);
            border-radius: 9px;
            padding: 10px 13px;
            color: var(--text-primary);
            font-family: var(--font-display);
            font-size: 0.84rem;
            outline: none;
            transition: border-color 0.2s, background 0.2s;
            margin-bottom: 9px;
        }

        .mobile-form input::placeholder,
        .mobile-form textarea::placeholder {
            color: var(--text-faint);
        }

        .mobile-form input:focus,
        .mobile-form textarea:focus {
            border-color: rgba(var(--theme-rgb), 0.4);
            background: rgba(var(--theme-rgb), 0.04);
        }

        .mobile-form textarea {
            height: 80px;
            resize: none;
        }

        .mobile-form-submit {
            width: 100%;
            padding: 11px;
            background: var(--white-06);
            border: 1px solid var(--border-hover);
            color: var(--text-primary);
            font-family: var(--font-display);
            font-size: 0.76rem;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            border-radius: 9px;
            cursor: none;
            transition: background 0.2s, border-color 0.2s;
        }

        .mobile-form-submit:hover {
            background: var(--white-10);
        }

        @media (max-width: 900px) {

            .nav-center,
            .nav-cta {
                display: none;
            }

            .hamburger {
                display: flex;
            }

            .mobile-overlay,
            .mobile-menu {
                display: block;
            }
        }