:root {
            --primary: #3f6b4c;          /* šumsko zelena */
            --primary-dark: #274034;
            --secundary-dark: #63ab88;
            --accent: #d78b4d;          /* topla terakota / drvo */
            --bg: #f6f2eb;              /* topla bež pozadina */
            --card-bg: #fffaf3;         /* blagi ton papira */
            --text: #2f3437;
            --muted: #71767a;
            --shadow-soft: 0 14px 30px rgba(39, 64, 52, 0.18);
            --radius-lg: 18px;
            --radius-xl: 26px;
            --transition: 0.25s ease;
        }

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

        body {
            font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
            --page-background-image: url('/frontend/images/background.jpg');
            background-color: var(--bg);
            color: var(--text);
            line-height: 1.6;
            position: relative;
        }

        body::before {
            content: "";
            position: fixed;
            inset: 0;
            background-image: var(--page-background-image);
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            transform: translateZ(0);
            z-index: -2;
        }

        /* blagi overlay preko pozadinske slike */
        body::after {
            content: "";
            position: fixed;
            inset: 0;
            background: rgba(246, 242, 235, 0.5);
            backdrop-filter: blur(2px);
            z-index: -1;
        }

        @supports (-webkit-touch-callout: none) {
            body::before {
                background-position: center center;
                background-size: cover;
            }

            body::after {
                backdrop-filter: none;
            }
        }

        a { color: inherit; text-decoration: none; }
        img { max-width: 100%; display: block; }

        .bot-trap {
            position: absolute;
            left: -99999px;
            width: 1px;
            height: 1px;
            overflow: hidden;
        }

        .mail-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 2rem;
            height: 2rem;
            border-radius: 999px;
            background: rgba(255, 250, 243, 0.95);
            border: 1px solid rgba(39, 64, 52, 0.18);
            color: var(--primary-dark);
            font-size: 1rem;
            line-height: 1;
            vertical-align: middle;
            transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
        }

        .mail-icon-sm {
            width: 1.7rem;
            height: 1.7rem;
            font-size: .9rem;
        }

        .js-mail-link:hover .mail-icon,
        .js-mail-link:focus-visible .mail-icon {
            transform: translateY(-1px);
            background: linear-gradient(135deg, var(--primary-dark), var(--primary));
            color: #fff;
            box-shadow: 0 10px 22px rgba(39, 64, 52, 0.22);
        }

        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }

        .container {
            width: min(1320px, 100% - 2.5rem);
            margin: 0 auto;
        }

        section { padding: 3.5rem 0; }

        h1, h2, h3 {
            font-weight: 700;
            color: var(--primary-dark);
        }

        h4 {
            font-weight: 700;
            color: var(--secundary-dark);
        }

        .badge {
            display: inline-flex;
            align-items: center;
            gap: .4rem;
            font-size: .75rem;
            text-transform: uppercase;
            letter-spacing: .12em;
            padding: .35rem .75rem;
            border-radius: 999px;
            background: rgba(63, 107, 76, 0.08);
            color: var(--primary-dark);
        }

        .badge span {
            width: 6px; height: 6px;
            border-radius: 50%;
            background: var(--accent);
        }

        /* Top bar */
        .topbar {
            font-size: 0.85rem;
            background: rgba(24, 33, 27, 0.96);
            color: #f5f1ea;
        }

        .topbar-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: .55rem 0;
            gap: 1rem;
        }

        .topbar-left, .topbar-right {
            display: flex;
            align-items: center;
            gap: 1.25rem;
            flex-wrap: wrap;
        }

        .topbar-item {
            display: inline-flex;
            align-items: center;
            gap: .45rem;
            opacity: .92;
        }

        .topbar-item::before {
            content: "";
            width: 7px; height: 7px;
            border-radius: 50%;
            background: var(--accent);
        }

        .topbar a {
            text-decoration: underline;
            text-decoration-thickness: 1px;
            text-underline-offset: 3px;
        }

        /* Header / Nav */
        header {
            position: sticky;
            top: 0;
            z-index: 50;
            backdrop-filter: blur(12px);
            background: rgba(246, 242, 235, 0.92);
            border-bottom: 1px solid rgba(39, 64, 52, 0.08);
        }

        .nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1rem 0;
            gap: 1.1rem;
            flex-wrap: nowrap;
        }

        /* Reserve space on the right for the desktop language rail
           so it never overlaps CTA buttons. */
        header.has-lang-switcher .nav {
            padding-right: clamp(14rem, 19vw, 17rem);
        }

        .logo {
            display: flex;
            align-items: center;
            width: 222px;
            flex: 0 0 auto;
        }

        .logo-mark {
            width: 100%;
            height: auto;
            display: block;
            object-fit: contain;
            background: rgba(255, 255, 255, 0.88);
            border-radius: 12px;
            padding: 0;
            border: 1px solid rgba(39, 64, 52, 0.12);
            box-shadow: 0 10px 22px rgba(39, 64, 52, 0.38);
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 1.35rem;
            font-size: .95rem;
            flex: 1 1 auto;
            min-width: 0;
            justify-content: center;
            flex-wrap: nowrap;
            padding: .85rem 1.6rem;
            border-radius: 999px;
            border: 1px solid rgba(39, 64, 52, 0.1);
            background: rgba(255, 250, 243, 0.72);
            box-shadow: 0 10px 30px rgba(39, 64, 52, 0.08);
            backdrop-filter: blur(8px);
        }

        .nav-links a {
            position: relative;
            display: inline-flex;
            align-items: center;
            min-height: 2.1rem;
            padding: .2rem 0;
            color: #66706b;
            font-weight: 600;
            white-space: nowrap;
        }

        .nav-mobile-langs {
            display: none;
        }

        .nav-links a:is(:hover, :focus-visible) { color: var(--primary-dark); }

        .nav-links a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--accent), var(--primary));
            border-radius: 999px;
            transition: width var(--transition);
        }

        .nav-links a:is(:hover, :focus-visible)::after,
        .nav-links a.active::after {
            width: 100%;
        }

        .nav-cta {
            display: flex;
            align-items: center;
            gap: .75rem;
            flex-shrink: 0;
            margin-left: .2rem;
        }

        .lang-switcher {
            display: grid;
            grid-template-columns: repeat(8, minmax(1.9rem, max-content));
            align-items: center;
            gap: .3rem;
            border: 1px solid rgba(39, 64, 52, 0.18);
            background: rgba(255, 250, 243, 0.95);
            border-radius: 999px;
            padding: .32rem .4rem;
            box-shadow: 0 10px 26px rgba(39, 64, 52, 0.1);
            max-width: none;
            overflow: visible;
            flex-shrink: 0;
            width: max-content;
        }

        .header-lang-rail {
            position: absolute;
            top: 50%;
            right: clamp(.6rem, 2vw, 1.4rem);
            transform: translateY(-50%);
            max-width: none;
            width: max-content;
            pointer-events: none;
        }

        .header-lang-rail .lang-switcher {
            pointer-events: auto;
        }

        .lang-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 1.9rem;
            height: 1.8rem;
            padding: 0 .42rem;
            border-radius: 999px;
            font-size: .68rem;
            letter-spacing: .06em;
            font-weight: 700;
            color: var(--primary-dark);
            transition: var(--transition);
            flex-shrink: 0;
        }

        .lang-link:hover {
            background: rgba(63, 107, 76, 0.1);
        }

        .lang-link.active {
            background: var(--primary-dark);
            color: #fff;
        }

        .btn {
            border: none;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: .92rem;
            font-weight: 600;
            border-radius: 999px;
            padding: .8rem 1.45rem;
            transition: var(--transition);
            white-space: nowrap;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary-dark), var(--primary));
            color: #fff;
            box-shadow: 0 12px 26px rgba(39, 64, 52, 0.32);
        }

        .btn-primary:hover {
            transform: translateY(-1px);
            box-shadow: 0 16px 36px rgba(39, 64, 52, 0.4);
        }

        .btn-outline {
            border: 1px solid rgba(39, 64, 52, 0.22);
            background: rgba(255, 250, 243, 0.95);
            color: var(--primary-dark);
        }

        .btn-outline:hover {
            background: #fffaf3;
            box-shadow: 0 8px 20px rgba(39, 64, 52, 0.18);
        }

        .nav-toggle {
            display: none;
            border: none;
            background: transparent;
            font-size: 1.4rem;
            cursor: pointer;
        }

        /* Hero */
        .hero { padding: 3rem 0 3rem; }

        .hero-inner {
            display: grid;
            grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
            gap: 2.6rem;
            align-items: center;
        }

        .hero-title {
            font-size: clamp(2rem, 3vw, 2.6rem);
            letter-spacing: .01em;
        }

        .hero-brand-title {
            display: block;
            margin-bottom: .55rem;
            font-size: clamp(1.22rem, 1.7vw, 1.55rem);
            font-weight: 800;
            letter-spacing: .14em;
            text-transform: uppercase;
            color: #e2be57;
            -webkit-text-stroke: 0.65px rgba(74, 57, 20, 0.68);
            text-shadow:
                0 1px 0 rgba(90, 70, 24, 0.62),
                0 0 10px rgba(74, 57, 20, 0.18),
                0 0 20px rgba(226, 190, 87, 0.26);
        }

        .hero-stars {
            display: inline-block;
            margin-left: .35rem;
            letter-spacing: .16em;
            color: #f1d67f;
        }

        .hero-title > span { color: var(--primary); }

        .hero-subtitle,
        .section-header p {
            margin-top: 1rem;
            font-size: .98rem;
            color: #2e3638;
            font-weight: 550;
            text-shadow:
                0 1px 0 rgba(255, 250, 243, 0.96),
                0 0 10px rgba(255, 250, 243, 0.72),
                0 2px 4px rgba(255, 250, 243, 0.5);
        }

        .hero-subtitle {
            max-width: 32rem;
        }

        .section-header p {
            max-width: 46rem;
        }

        .hero-actions {
            margin-top: 1.7rem;
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            align-items: center;
        }

        .hero-meta {
            margin-top: 1.3rem;
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            font-size: .85rem;
            color: var(--muted);
        }

        .hero-meta-item {
            display: inline-flex;
            align-items: center;
            gap: .45rem;
            padding: .35rem .8rem;
            border-radius: 999px;
            background: rgba(255, 250, 243, 0.9);
            box-shadow: 0 10px 24px rgba(169, 140, 105, 0.16);
        }

        .hero-meta-dot {
            width: 8px; height: 8px;
            border-radius: 99px;
            background: var(--accent);
        }

        .hero-card {
            position: relative;
            border-radius: var(--radius-xl);
            overflow: hidden;
            background:
                linear-gradient(180deg, rgba(50, 72, 57, 0.76), rgba(28, 38, 31, 0.7)),
                radial-gradient(circle at top, rgba(132, 167, 136, 0.26), rgba(24, 31, 26, 0.16));
            color: #fff;
            box-shadow: var(--shadow-soft);
            isolation: isolate;
            min-height: 260px;
            backdrop-filter: blur(6px);
        }

        .hero-image-overlay {
            position: absolute;
            inset: 0;
            opacity: .6;
            background-image: url('/frontend/images/background.jpg');
            background-repeat: no-repeat;
            background-size: 72% auto;
            background-position: center 42%;
            mix-blend-mode: screen;
        }

        .hero-card-inner {
            position: relative;
            z-index: 1;
            padding: 1.7rem 1.7rem 1.9rem;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            height: 100%;
        }

        .hero-pill {
            font-size: .78rem;
            padding: .35rem .75rem;
            border-radius: 999px;
            border: 1px solid rgba(255, 255, 255, 0.45);
            backdrop-filter: blur(8px);
            background: rgba(8, 16, 10, 0.28);
        }

        .hero-card-title { font-size: 1.05rem; margin-top: .5rem; }

        .hero-floater {
            margin-top: 1.3rem;
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: .9rem;
            font-size: .8rem;
        }

        .hero-floater-box {
            padding: .7rem .8rem;
            border-radius: 1rem;
            background: rgba(255, 250, 243, 0.11);
            border: 1px solid rgba(255, 255, 255, 0.22);
        }

        .hero-floater-label {
            opacity: .85;
            font-size: .75rem;
        }

        .hero-floater-value { margin-top: .15rem; font-weight: 600; }

        .hero-card-bottom {
            margin-top: 1.2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 1.5rem;
            font-size: .82rem;
        }

        .section-header {
            margin-bottom: 2.4rem;
            display: flex;
            flex-direction: column;
            gap: .7rem;
            max-width: 54rem;
        }

        #about .section-header p { margin-top: 1rem; }

        /* About */
        .about-grid {
            display: grid;
            grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
            gap: 2.4rem;
            align-items: flex-start;
        }

        .about-highlights {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 1.1rem;
            margin-top: 1.6rem;
        }

        .about-highlight {
            padding: 1rem 1.05rem;
            border-radius: var(--radius-lg);
            background: var(--card-bg);
            box-shadow: 0 12px 26px rgba(86, 69, 47, 0.14);
            font-size: .85rem;
        }

        .about-highlight strong {
            display: block;
            margin-bottom: .25rem;
            color: var(--primary-dark);
        }

        .about-side-card {
            border-radius: var(--radius-xl);
            overflow: hidden;
            background: radial-gradient(circle at top, #3f6b4c, #151c18);
            color: #fff;
            min-height: 220px;
            box-shadow: var(--shadow-soft);
            position: relative;
        }

        .about-side-media {
            position: absolute; inset: 0;
            background-image: url('/frontend/images/background.jpg');
            background-repeat: no-repeat;
            background-size: 76% auto;
            background-position: center 42%;
            opacity: .58;
        }

        .about-side-inner {
            position: relative;
            padding: 1.7rem 1.7rem 1.9rem;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            height: 100%;
        }

        /* Rooms */
        .rooms-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 250px));
            justify-content: center;
            gap: 1.35rem;
        }

        .rooms-grid-two {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }

        .rooms-grid-two .room-card {
            max-width: none;
        }

        .room-card {
            background: var(--card-bg);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: 0 14px 28px rgba(86, 69, 47, 0.14);
            border: 1px solid rgba(39, 64, 52, 0.08);
            display: flex;
            flex-direction: column;
            min-height: 100%;
            width: 100%;
            max-width: 250px;
            transition: transform var(--transition), box-shadow var(--transition);
        }

        .room-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 18px 34px rgba(86, 69, 47, 0.18);
        }

        .room-image { position: relative; padding-top: 60%; overflow: hidden; }

        .room-image img {
            position: absolute; inset: 0;
            width: 100%; height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .room-card:hover .room-image img { transform: scale(1.05); }

        .room-body {
            padding: 1rem 1rem 1.1rem;
            display: flex;
            flex-direction: column;
            gap: .45rem;
            flex: 1;
            align-items: center;
            text-align: center;
        }

        .room-title {
            font-size: .98rem;
            line-height: 1.35;
            min-height: calc(1em * 1.35 * 2);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .room-meta {
            font-size: .78rem;
            color: var(--muted);
            max-width: 19ch;
        }

        .room-person-pill {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: .32rem .75rem;
            margin-top: .1rem;
            border-radius: 999px;
            background: linear-gradient(135deg, rgba(63, 107, 76, 0.14), rgba(215, 139, 77, 0.18));
            border: 1px solid rgba(63, 107, 76, 0.16);
            color: var(--primary-dark);
            font-weight: 700;
            letter-spacing: .01em;
            box-shadow: 0 8px 18px rgba(63, 107, 76, 0.08);
        }

        .room-subcopy {
            font-size: .78rem;
            line-height: 1.45;
            color: #4d5458;
            display: -webkit-box;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .room-subtitle-card {
            -webkit-line-clamp: 4;
            min-height: calc(1em * 1.45 * 4);
            margin-bottom: .15rem;
        }

        .room-amenities {
            margin-top: .4rem;
            display: flex;
            flex-wrap: wrap;
            gap: .32rem;
            justify-content: center;
            align-content: flex-start;
        }

        .room-amenity {
            font-size: .7rem;
            line-height: 1.15;
            padding: .22rem .48rem;
            border-radius: 999px;
            background: rgba(63, 107, 76, 0.07);
            color: var(--primary-dark);
        }

        .room-footer {
            margin-top: auto;
            padding-top: .9rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: .6rem;
            font-size: .78rem;
            width: 100%;
            text-align: center;
        }

        .room-footer span {
            display: -webkit-box;
            -webkit-line-clamp: 5;
            -webkit-box-orient: vertical;
            overflow: hidden;
            color: #4d5458;
        }

        .room-description-card {
            min-height: calc(1em * 1.45 * 4);
            line-height: 1.45;
        }

        .room-link {
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: .3rem;
            color: var(--primary-dark);
            padding: .45rem .8rem;
            border-radius: 999px;
            background: rgba(63, 107, 76, 0.08);
        }

        .room-link::after { content: ">"; font-size: 1rem; }

        /* Dining + meni sa slikama */
        .specialties {
            background: linear-gradient(135deg, #f6f2eb, #fdf7ef);
            position: relative;
            overflow: hidden;
            isolation: isolate;
        }

        .specialties::before {
            content: "";
            position: absolute;
            inset: 0;
            z-index: 0;
            opacity: .16;
            pointer-events: none;
            background-image: url('/frontend/images/kitchen-pattern.svg');
            background-size: 240px 240px;
            background-repeat: repeat;
            background-position: 0 0;
        }

        .specialties > .container {
            position: relative;
            z-index: 1;
        }

        .menu-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 1.2rem;
            margin-bottom: 1rem;
        }

        .menu-item {
            background: #fff;
            padding: 1.2rem 1.3rem 1.3rem;
            border-radius: 16px;
            box-shadow: 0 10px 24px rgba(86, 69, 47, 0.16);
            position: relative;
            overflow: hidden;
            isolation: isolate;
        }

        .menu-item > * {
            position: relative;
            z-index: 1;
        }

        .menu-item-header {
            margin: -1.2rem -1.3rem .95rem;
            padding: .95rem 1.3rem .85rem;
            background: linear-gradient(180deg, rgba(63, 107, 76, 0.12), rgba(255, 255, 255, 0.92));
            border-bottom: 1px solid rgba(39, 64, 52, 0.1);
        }

        .menu-item h4 {
            font-size: 1rem;
            color: var(--primary-dark);
            line-height: 1.3;
            min-height: calc(1em * 1.3 * 2);
            display: flex;
            align-items: center;
        }

        .menu-copy {
            margin: .75rem 0 0;
            font-size: .88rem;
            color: var(--muted);
        }

        .menu-copy p {
            margin: 0 0 .65rem;
        }

        .menu-copy p:last-child {
            margin-bottom: 0;
        }

        .menu-copy ul,
        .menu-copy ol {
            margin: .55rem 0 0 .95rem;
            padding: 0;
        }

        .menu-copy li + li {
            margin-top: .2rem;
        }

        .menu-copy a {
            text-decoration: underline;
        }

        .menu-copy strong,
        .menu-copy b {
            color: var(--primary-dark);
        }

        .menu-copy h2,
        .menu-copy h3,
        .menu-copy blockquote {
            margin: .7rem 0 .45rem;
        }

        .menu-item p {
            font-size: .88rem;
            color: var(--muted);
            margin: .75rem 0 0;
        }

        .menu-photos {
            margin-top: .8rem;
            display: block;
        }

        .menu-photos img {
            width: 100%;
            height: 170px;
            object-fit: cover;
            border-radius: 12px;
            cursor: pointer;
            transition: .2s;
        }

        .menu-photos img:hover { transform: scale(1.03); }

        /* Lightbox */
        #lightbox {
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,.78);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 999;
            cursor: zoom-out;
        }

        #lightbox img {
            max-width: 92%;
            max-height: 92%;
            border-radius: 12px;
            box-shadow: 0 0 25px rgba(0,0,0,.6);
        }

        /* Contact */
        .contact-grid {
            display: grid;
            grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
            gap: 2.4rem;
            align-items: flex-start;
        }

        .contact-card {
            background: #fff;
            padding: 1.6rem 1.7rem 1.8rem;
            border-radius: var(--radius-xl);
            box-shadow: var(--shadow-soft);
        }

        .contact-group { margin-top: 1.3rem; }
        .contact-item { margin-bottom: .9rem; }

        .contact-label {
            font-size: .78rem;
            text-transform: uppercase;
            letter-spacing: .16em;
            color: var(--muted);
            margin-bottom: .2rem;
        }
        .contact-value { font-weight: 600; color: var(--primary-dark); }

        .map-wrapper {
            border-radius: var(--radius-xl);
            overflow: hidden;
            box-shadow: 0 18px 40px rgba(86, 69, 47, 0.18);
            border: 1px solid rgba(86, 69, 47, 0.12);
        }

        .map-embed { width: 100%; border: 0; height: 320px; }

        .map-link {
            padding: .7rem 1rem;
            font-size: .82rem;
            background: #1b241f;
            color: #f8f4ed;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        /* Footer */
        footer {
            border-top: 1px solid rgba(39, 64, 52, 0.12);
            padding: 1.2rem 0 1.5rem;
            font-size: .8rem;
            color: var(--muted);
            background: rgba(246, 242, 235, 0.94);
        }

        .footer-inner {
            display: flex;
            justify-content: space-between;
            gap: 1rem;
            flex-wrap: wrap;
            align-items: center;
        }

        .footer-nav { display: flex; gap: 1rem; }

        @media (max-width: 1280px) {
            header.has-lang-switcher .nav {
                padding-right: 0;
            }

            .logo {
                width: 190px;
            }

            .nav-links {
                gap: .95rem;
                font-size: .89rem;
                padding: .72rem 1.05rem;
            }

            .nav-cta {
                gap: .5rem;
            }

            .btn {
                padding: .5rem 1rem;
                font-size: .86rem;
            }

            .header-lang-rail {
                position: static;
                transform: none;
                max-width: none;
                padding: 0 1.25rem .7rem;
                display: flex;
                justify-content: flex-end;
                pointer-events: auto;
            }
        }

        /* Responsive */
        @media (max-width: 960px) {
            .nav {
                gap: .9rem;
            }

            header.has-lang-switcher .nav {
                padding-right: 0;
            }

            .header-lang-rail {
                position: static;
                transform: none;
                max-width: none;
                padding: 0 1.25rem .7rem;
                display: flex;
                justify-content: flex-end;
                pointer-events: auto;
            }

            .lang-switcher {
                width: 100%;
                max-width: min(100%, 26rem);
            }

            .nav-links {
                padding: .65rem .9rem;
            }

            .hero-inner,
            .about-grid,
            .contact-grid {
                grid-template-columns: minmax(0, 1fr);
            }
            .hero-copy { order: 1; }
            .hero-card {
                order: 2;
                margin-top: .75rem;
            }
            .rooms-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
            .rooms-grid-two {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
            .menu-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
        }

        @media (max-width: 720px) {
            .topbar-inner { flex-direction: column; align-items: flex-start; }

            .nav {
                display: grid;
                grid-template-columns: 1fr auto 1fr;
                align-items: center;
                gap: 0;
            }

            .logo {
                grid-column: 2;
                justify-self: center;
                width: 180px;
            }

            .nav-toggle {
                grid-column: 3;
                justify-self: end;
            }

            .nav-links {
                position: fixed;
                inset: 60px 0 auto 0;
                padding: 1rem 1.2rem 1.2rem;
                background: rgba(246, 242, 235, 0.98);
                border-bottom: 1px solid rgba(39, 64, 52, 0.08);
                border-radius: 0;
                border-inline: 0;
                box-shadow: 0 20px 40px rgba(39, 64, 52, 0.12);
                backdrop-filter: blur(14px);
                transform: translateY(-120%);
                opacity: 0;
                pointer-events: none;
                flex-direction: column;
                align-items: flex-start;
                gap: .75rem;
                width: 100%;
                min-width: 100%;
                justify-content: flex-start;
                transition: transform var(--transition), opacity var(--transition);
            }

            .nav-links.open {
                transform: translateY(0);
                opacity: 1;
                pointer-events: auto;
            }

            .nav-cta { display: none; }
            .nav-toggle { display: block; }
            .header-lang-rail { display: none; }

            .nav-mobile-langs {
                display: flex;
                width: 100%;
                justify-content: center;
                margin-top: .35rem;
                padding-top: .85rem;
                border-top: 1px solid rgba(39, 64, 52, 0.12);
            }

            .nav-mobile-langs .lang-switcher {
                width: min(100%, 26rem);
                justify-content: center;
            }

            .rooms-grid { grid-template-columns: minmax(0, 1fr); }
            .rooms-grid-two { grid-template-columns: minmax(0, 1fr); }
            .room-card { max-width: none; }
            .menu-grid { grid-template-columns: minmax(0, 1fr); }
            .menu-photos { grid-template-columns: repeat(2, 1fr); }
        }
