/* Hotel Solterra - Landing Page CSS */
/* Grand Emily + Lemon Garden inspired design */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600&family=Dancing+Script:wght@400;500&family=Inter:wght@300;400;500&display=swap');

/* ========== Variables ========== */
:root {
    /* Light palette (Lemon Garden) */
    --color-bg: #FAFAF7;
    --color-surface: #FFF;
    --color-text: #1C1C1A;
    --color-text-muted: #1C1C1C;
    --color-text-white: #FAFAF7;
    --color-forest: #2C3B2D;

    /* Dark palette (Grand Emily) */
    --color-dark-bg: #14192F;
    --color-dark-surf: #252520;
    --color-text-light: #F0EDE6;

    /* Accent */
    --color-gold: #C4A265;
    --color-gold-muted: #8B7355;

    /* Borders */
    --color-border: #DDD9D0;

    /* Typography sizes */
    --text-hero: clamp(40px, 9vw, 144px);
    --text-h1: clamp(32px, 5vw, 64px);
    --text-h2: clamp(24px, 3.5vw, 48px);
    --text-h3: clamp(18px, 2vw, 28px);
    --text-body: clamp(15px, 1.2vw, 18px);
    --text-lead: clamp(16px, 1.4vw, 18px);
    --text-base: clamp(14px, 1.2vw, 18px);
    --text-small: clamp(12px, 1vw, 16px);
    --text-label: clamp(12px, 1vw, 14px);
    --text-script: clamp(20px, 2.5vw, 28px);

    /* Spacing tokens */
    --pad-section-y: clamp(56px, 7vw, 96px);
    --pad-section-x: clamp(20px, 5vw, 60px);
}

/* ========== Page Loader ========== */
.page-loader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: #14192F;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.page-loader-restaurant {
    background: #121629;
}

.page-loader.js-leaving {
    opacity: 0;
    visibility: hidden;
}

.page-loader-logo {
    width: clamp(120px, 25vw, 220px);
    height: auto;
    animation: loaderPulse 1.8s ease-in-out infinite;
}

@keyframes loaderPulse {

    0%,
    100% {
        opacity: 0.6;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.04);
    }
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: var(--text-base);
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

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

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

/* ========== Typography ========== */
h1,
h2,
h3 {
    font-family: "Young Serif", serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1.1;
    letter-spacing: 0.02em;
}

h1 {
    font-size: var(--text-h1);
    margin-bottom: 24px;
}

h2 {
    font-size: var(--text-h2);
    margin-bottom: 20px;
}

h3 {
    font-size: var(--text-h3);
    margin-bottom: 12px;
}

.script-accent {
    font-family: 'Dancing Script', cursive;
    font-size: 20px;
    color: var(--color-gold-muted);
    display: block;
    margin-bottom: 8px;
}

/* ========== Navigation ========== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 20px 60px;
    /* background: linear-gradient(to bottom, rgb(0 0 0 / 70%) 0%, rgb(0 0 0 / 35%) 60%, rgba(20, 25, 47, 0) 100%); */
    transition: background 0.4s, backdrop-filter 0.4s;
    background: #14192F;
}

.nav-scrolled {
    background: #14192F;
    backdrop-filter: blur(8px);
}

.nav-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 2600px;
    margin: 0 auto;
}

.nav-menu-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: var(--text-label);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.nav-hamburger {
    display: block;
    width: 32px;
    height: 2px;
    background: transparent;
    position: relative;
}

.nav-hamburger::before,
.nav-hamburger::after {
    content: '';
    position: absolute;
    height: 2px;
    background: white;
    left: 0;
    transition: transform 0.3s, top 0.3s, width 0.3s;
}

.nav-hamburger::before {
    width: 100%;
    top: -5px;
}

.nav-hamburger::after {
    width: 60%;
    top: 5px;
}

.nav-hamburger.js-open::before {
    top: 0;
    transform: rotate(45deg);
    width: 100%;
}

.nav-hamburger.js-open::after {
    top: 0;
    transform: rotate(-45deg);
    width: 100%;
}

.nav-logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.nav-logo-img {
    height: 48px;
    width: auto;
}

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

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

.nav-lang-link {
    font-family: 'Inter', sans-serif;
    font-size: var(--text-label);
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.2s;
}

.nav-lang-link:hover {
    color: white;
}

.nav-lang-link.active {
    color: white;
}

.nav-lang-sep {
    color: rgba(255, 255, 255, 0.3);
    font-size: var(--text-label);
}

.nav-book-btn {
    font-size: var(--text-label);
    padding: 10px 24px;
}

/* ========== Menu Overlay ========== */
.menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    transform: translateX(-100%);
    pointer-events: none;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-overlay.js-active {
    transform: translateX(0);
    pointer-events: all;
}

.menu-overlay-left {
    width: 50%;
    background: #14192F;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 60px clamp(32px, 4vw, 64px);
    position: relative;
    overflow: hidden;
}

/* .menu-overlay-left::before {
    content: '';
    position: absolute;
    right: -15%;
    top: 50%;
    transform: translateY(-50%);
    width: 80%;
    aspect-ratio: 1;
    background: url('/img/logo/hotel-solterra-logo.svg') center / contain no-repeat;
    opacity: 0.04;
    pointer-events: none;
} */

.menu-overlay-right {
    width: 50%;
    position: relative;
    overflow: hidden;
}

.menu-overlay-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu-overlay-close {
    position: absolute;
    top: 26px;
    left: 60px;
    background: none;
    border: none;
    color: white;
    font-size: 40px;
    cursor: pointer;
    z-index: 1;
}

.menu-overlay-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}

.menu-overlay-nav a {
    font-family: "Young Serif", serif;
    font-size: var(--text-h2);
    font-weight: 400;
    color: var(--color-text-light);
    transition: color 0.3s;
}

.menu-overlay-nav a.js-current {
    font-weight: 600;
    color: var(--color-gold);
}

.menu-overlay-nav a:hover {
    color: var(--color-gold);
}

.menu-overlay-lang {
    margin-top: 48px;
    display: flex;
    gap: 16px;
    color: rgba(255, 255, 255, 0.4);
    font-size: var(--text-small);
    letter-spacing: 0.1em;
}

.menu-overlay-lang a.active {
    color: var(--color-gold);
}

.menu-overlay-footer {
    position: absolute;
    bottom: 34px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 32px clamp(32px, 4vw, 64px);
    color: rgba(255, 255, 255, 0.5);
    font-size: var(--text-small);
    line-height: 1.6;
}

.menu-overlay-footer-item {
    display: block;
    color: rgba(255, 255, 255, 0.55);
    font-size: var(--text-small);
    line-height: 1.5;
    margin-top: 6px;
    transition: color 0.2s;
}

.menu-overlay-footer-item:hover {
    color: var(--color-gold);
}

.menu-overlay-footer-title {
    font-family: 'Inter', sans-serif;
    font-size: var(--text-label);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-gold);
    margin-bottom: 8px;
}

.menu-overlay-location {
    text-align: right;
}

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

    .menu-overlay-left {
        width: 100%;
    }
}

/* ========== Buttons ========== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 40px;
    border: 1px solid currentColor;
    font-family: 'Inter', sans-serif;
    font-size: var(--text-small);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: background 0.3s, color 0.3s;
    cursor: pointer;
    background: none;
}

.btn-light {
    color: var(--color-text);
}

.btn-light:hover {
    background: var(--color-text);
    color: var(--color-bg);
}

.btn-dark {
    color: var(--color-text-light);
}

.btn-dark:hover {
    background: var(--color-text-light);
    color: var(--color-dark-bg);
}

.btn-gold {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

.btn-gold:hover {
    background: var(--color-gold);
    color: var(--color-dark-bg);
}

/* ========== Hero ========== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--color-dark-bg);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(20, 20, 16, 0.95));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 32px;
}

.hero-content-bl {
    position: absolute;
    inset: 0;
    z-index: 2;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 24px;
}

.hero-heading {
    font-family: "Young Serif", serif;
    font-size: var(--text-h1);
    font-weight: 400;
    line-height: 1.05;
    margin-bottom: 12px;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(30px);
}

.hero-heading.js-animate {
    animation: heroFadeUp 0.8s ease-out forwards;
}

.hero-script-label {
    font-family: 'Dancing Script', cursive;
    font-size: var(--text-script);
    line-height: 1.1;
    color: var(--color-gold);
    margin: 16px 0 16px;
    display: inline-block;
    max-width: 100%;
    opacity: 0;
    -webkit-clip-path: inset(0 100% 0 0);
    clip-path: inset(0 100% 0 0);
}

.hero-script-label.js-animate {
    animation: heroScriptWrite 1.6s cubic-bezier(.55, .05, .45, .95) 1.3s forwards;
}

@keyframes heroScriptWrite {
    0% {
        opacity: 0;
        -webkit-clip-path: inset(0 100% 0 0);
        clip-path: inset(0 100% 0 0);
    }

    8% {
        opacity: 1;
    }

    100% {
        opacity: 1;
        -webkit-clip-path: inset(0 0 0 0);
        clip-path: inset(0 0 0 0);
    }
}

.hero-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--text-body);
    line-height: 1.6;
    opacity: 0;
    transform: translateY(30px);
}

.hero-desc * {
    font-family: inherit !important;
    font-size: inherit !important;
    font-weight: inherit !important;
    line-height: inherit !important;
    color: inherit !important;
    margin: 0;
    padding: 0;
    background: transparent !important;
}

.hero-desc p+p {
    margin-top: 0.4em;
}

.hero-desc.js-animate {
    animation: heroFadeUp 0.8s ease-out 0.3s forwards;
}

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

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: var(--text-hero);
    font-weight: 300;
    letter-spacing: 0.05em;
    color: white;
    line-height: 0.95;
}

@media (max-width: 768px) {
    .hero-content-bl {
        padding: 0 16px;
    }
}

.hero-room {
    min-height: 100svh;
    height: 100svh;
}

.hero-section {
    min-height: 100svh;
}

.hero-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* ========== Section Hero (split layout used inside content sections) ========== */
.section-hero {
    display: grid;
    grid-template-columns: 1fr 2fr;
    align-items: center;
    background: var(--color-dark-bg);
}

.section-hero-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(60px, 8vw, 120px) clamp(32px, 5vw, 80px);
}

.section-hero-title {
    font-family: 'Young Serif', serif;
    font-size: var(--text-h1);
    font-weight: 400;
    line-height: 1.05;
    color: var(--color-text-light);
}

.section-hero-subtitle {
    color: var(--color-text-light);
    font-size: clamp(15px, 1.4vw, 18px);
    line-height: 1.7;
    margin-top: 24px;
}

.section-hero-subtitle p {
    margin-bottom: 12px;
}

.section-hero-subtitle p:last-child {
    margin-bottom: 0;
}

.section-hero-image {
    position: relative;
    overflow: hidden;
    height: 100vh;
    padding: clamp(24px, 4vw, 100px) clamp(24px, 4vw, 64px) clamp(24px, 4vw, 64px) 0;
}

.section-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 900px) {
    .section-hero {
        grid-template-columns: 1fr;
    }

    .section-hero-image {
        min-height: 320px;
        order: -1;
    }
}

@media (max-width: 768px) {
    .section-hero {
        min-height: auto;
    }

    .section-hero-text {
        padding: 32px 20px 40px;
    }

    .section-hero-image {
        height: auto;
        min-height: 0;
        padding: 0;
        aspect-ratio: 4/3;
    }

    .section-hero-image img {
        aspect-ratio: 4/3;
    }
}

@media (max-width: 480px) {
    .section-hero-text {
        padding: 24px 16px 32px;
    }

    .section-hero-image {
        aspect-ratio: 1/1;
    }

    .section-hero-image img {
        aspect-ratio: 1/1;
    }
}

/* ========== Hero Carousel ========== */
.hero-carousel {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    touch-action: pan-y;
    cursor: grab;
}

.hero-carousel:active {
    cursor: grabbing;
}

.hero-carousel-track {
    display: flex;
    height: 100%;
    will-change: transform;
    transition: transform 0.6s cubic-bezier(0.25, 0, 0, 1);
}

.hero-carousel-track.is-dragging {
    transition: none;
}

.hero-carousel-slide {
    flex: 0 0 100%;
    height: 100%;
    position: relative;
}

.hero-carousel-slide img,
.hero-carousel-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1);
    transition: transform 5s ease-out;
}

.hero-carousel-slide.is-active img,
.hero-carousel-slide.is-active video {
    transform: scale(1.08);
}

.hero-carousel-slide video {
    object-position: center;
}

.hero-carousel-pager {
    position: absolute;
    bottom: 64px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 16px;
}

.hero-carousel-pager-dot {
    width: 60px;
    height: 4px;
    background: rgba(255, 255, 255, 0.35);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background 0.3s, width 0.3s;
    position: relative;
    overflow: hidden;
}

.hero-carousel-pager-dot.is-active {
    width: 60px;
    background: rgba(255, 255, 255, 0.35);
}

.hero-carousel-pager-dot.is-active::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: white;
    animation: pager-fill 5s linear forwards;
}

@keyframes pager-fill {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-carousel-pager {
        bottom: auto;
        top: 24px;
        right: 24px;
    }
}

/* ========== Search Widget ========== */
.hero-search {
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translate(-50%, 0);
    width: 80%;
    z-index: 3;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    align-items: center;
    opacity: 0;
}

.hero-search.js-animate {
    animation: heroSearchFadeUp 0.8s ease-out 0.5s forwards;
}

@keyframes heroSearchFadeUp {
    from {
        opacity: 0;
        transform: translate(-50%, 30px);
    }

    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

.hero-search-field {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 24px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    cursor: pointer;
    transition: background 0.3s;
}

.hero-search-field-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    color: var(--color-gold);
}

.hero-search-field-body {
    flex: 1;
    min-width: 0;
    text-align: left;
}

.hero-search-field:hover {
    background: rgba(255, 255, 255, 0.08);
}

.hero-search-field label {
    display: block;
    font-size: var(--text-label);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 4px;
}

.hero-search-field input,
.hero-search-field select {
    background: none;
    border: none;
    color: white;
    font-family: 'Inter', sans-serif;
    /* 16px minimum — manje od toga iOS zumira na fokus */
    font-size: max(16px, var(--text-base));
    width: 100%;
    outline: none;
    cursor: pointer;
}

.hero-search-field label {
    cursor: pointer;
}

.hero-search-field input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

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

.hero-search-field option {
    color: var(--color-text);
    background: white;
}

.hero-search-submit {
    background: var(--color-gold);
    color: var(--color-dark-bg);
    padding: 20px 32px;
    border: none;
    border-radius: 0;
    width: 100%;
    height: 100%;
    font-family: 'Inter', sans-serif;
    font-size: var(--text-label);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.3s;
}

.hero-search-submit:hover {
    background: #d4b275;
}

@media (max-width: 1440px) {
    .hero-search-field {
        padding: 16px 24px;
    }
}

@media (max-width: 768px) {
    .hero-search {
        grid-template-columns: 1fr 1fr;
        bottom: 24px;
    }

    .hero-search-field:nth-child(2) {
        border-right: none;
    }

    .hero-search-submit {
        grid-column: 1 / -1;
    }
}

/* ========== Sections ========== */
.section {
    padding: 96px 60px;
    max-width: 2600px;
    margin: 0 auto;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-light {
    background: var(--color-bg);
}

.section-surface {
    background: var(--color-surface);
    max-width: none;
    padding-left: calc((100% - 2600px) / 2 + 32px);
    padding-right: calc((100% - 2600px) / 2 + 32px);
}

.section-dark {
    background: var(--color-dark-bg);
    color: var(--color-text-light);
    max-width: none;
    padding-left: calc((100% - 2600px) / 2 + 32px);
    padding-right: calc((100% - 2600px) / 2 + 32px);
    text-align: center;
}

.section-text {
    min-height: auto !important;
    margin: auto;
    max-width: 1600px;
}

.section-gallery {
    padding: 0px 60px !important;
}

.section-label {
    font-family: 'Dancing Script', cursive;
    font-size: var(--text-script);
    font-style: italic;
    color: var(--color-gold);
    margin-bottom: 12px;
    transform: rotate(-4deg);
    transform-origin: left center;
}

.section-hero-label {
    font-family: 'Dancing Script', cursive;
    font-size: var(--text-script);
    font-style: italic;
    color: var(--color-gold);
    margin-bottom: 16px;
    transform: rotate(-4deg);
    transform-origin: left center;
}

.section-lead {
    font-size: var(--text-lead);
    color: var(--color-text-muted);
    max-width: 700px;
    margin-bottom: 32px;
}

.section-content {
    line-height: 1.8;
}

/* ========== Text With Gallery ========== */
.section-twg {
    display: flex;
    flex-direction: column;
    gap: clamp(16px, 2vw, 32px);
    padding: clamp(60px, 8vw, 140px) 0;
    background: var(--color-bg);
}

.section-twg-text {
    padding-right: clamp(16px, 2vw, 32px);
}

.section-twg-title {
    font-family: 'Young Serif', serif;
    font-size: var(--text-h1);
    font-weight: 400;
    line-height: 1.05;

    color: var(--color-text);
    margin-bottom: 24px;
}

.section-twg-desc {
    font-size: var(--text-body);
    line-height: 1.7;
    color: var(--color-text-muted);
    margin-bottom: 20px;
}

.section-twg-desc p {
    margin-bottom: 12px;
}

.section-twg-desc p:last-child {
    margin-bottom: 0;
}

.section-twg-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding-bottom: 4px;
    border-bottom: 1px solid var(--color-text);
    font-size: var(--text-label);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-text);
    transition: gap 0.2s;
}

.section-twg-link:hover {
    gap: 14px;
}

.section-twg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Top row: text + small image + large image */
.section-twg-top {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 50vh;
    gap: clamp(16px, 2vw, 32px);
    padding: 0 clamp(24px, 4vw, 64px);
}

.section-twg-text {
    grid-column: span 2;
    grid-row: span 1;
}

.section-twg-top-small {
    grid-column: span 2;
    grid-row: span 1;
    overflow: hidden;
    height: 100%;
}

.section-twg-top-large {
    grid-column: span 2;
    grid-row: span 1;
    overflow: hidden;
    height: 100%;
}


/* Bottom row: non-linear grid (5 tile variants) */
.section-twg-bottom {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 50vh;
    gap: clamp(16px, 2vw, 32px);
    padding: 0 clamp(24px, 4vw, 64px);
}

.section-twg-tile {
    overflow: hidden;
}

/* Tile variants create asymmetric flow */
.section-twg-tile-0 {
    grid-column: span 3;
    grid-row: span 2;
}

/* tall left */
.section-twg-tile-1 {
    grid-column: span 3;
    grid-row: span 1;
}

/* wide top-right */
.section-twg-tile-2 {
    grid-column: span 2;
    grid-row: span 1;
}

/* small */
.section-twg-tile-3 {
    grid-column: span 1;
    grid-row: span 1;
}

/* tiny */
.section-twg-tile-4 {
    grid-column: span 6;
    grid-row: span 1;
}

/* full width */

@media (max-width: 900px) {
    .section-twg-top {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
        gap: 24px;
        padding: 0px 16px;
    }

    .section-twg-text {
        padding-left: 0;
        padding-right: 0;
    }

    .section-twg-top-small,
    .section-twg-top-large {
        height: auto;
        aspect-ratio: 4/3;
    }

    .section-twg-top-small img,
    .section-twg-top-large img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .section-twg-bottom {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 160px;
        padding: 0 clamp(12px, 4vw, 64px);
    }

    .section-twg-tile-0,
    .section-twg-tile-1,
    .section-twg-tile-2,
    .section-twg-tile-3,
    .section-twg-tile-4 {
        grid-column: span 1;
        grid-row: span 1;
    }

    .section-twg-tile {
        height: 100%;
    }

    .section-twg-tile img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

/* ========== Rooms Carousel (4 visible, staggered) ========== */
.js-rooms-track {
    padding-bottom: 48px;
    align-items: flex-start;
}

.js-rooms-track .showcase-card-room {
    flex: 0 0 calc(25% - 24px);
    min-width: 280px;
    transition: transform 0.4s ease, margin-top 0.4s ease;
}

.js-rooms-track .showcase-card-room:nth-child(4n+1) {
    margin-top: 0;
}

.js-rooms-track .showcase-card-room:nth-child(4n+2) {
    margin-top: 48px;
}

.js-rooms-track .showcase-card-room:nth-child(4n+3) {
    margin-top: 96px;
}

.js-rooms-track .showcase-card-room:nth-child(4n+4) {
    margin-top: 48px;
}

@media (max-width: 1440px) {
    :root {
        --text-h1: clamp(28px, 4vw, 52px);
        --text-h2: clamp(22px, 3vw, 40px);
    }

    .js-rooms-track .showcase-card-room {
        flex: 0 0 calc(33.333% - 22px);
    }
}

@media (max-width: 900px) {
    .js-rooms-track .showcase-card-room {
        flex: 0 0 calc(50% - 16px);
    }
}

@media (max-width: 600px) {
    .js-rooms-track {
        padding-bottom: 0;
    }

    .js-rooms-track .showcase-card-room {
        flex: 0 0 85%;
        margin-top: 0 !important;
    }
}

/* ========== CTA Section ========== */
.section-cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    min-height: 70vh;
    background: #14192F;
    color: #fff;
}

.section-cta-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(60px, 8vw, 120px) clamp(32px, 6vw, 100px);
    max-width: 990px;
    margin-left: auto;
}

.section-cta-image {
    position: relative;
    overflow: hidden;
    min-height: 50vh;
}

.section-cta-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.section-cta-label {
    font-family: 'Dancing Script', cursive;
    font-size: var(--text-script);
    font-style: italic;
    color: var(--color-gold);
    margin-bottom: 16px;
    display: inline-block;
    transform: rotate(-3deg);
    transform-origin: left center;
}

.section-cta-title {
    font-family: 'Young Serif', serif;
    font-size: var(--text-h1);
    font-weight: 400;
    line-height: 1.05;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 24px;
}

.section-cta-desc {
    font-size: var(--text-body);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 40px;
}

.section-cta-desc p {
    margin-bottom: 12px;
}

.section-cta-desc p:last-child {
    margin-bottom: 0;
}

.section-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    font-size: var(--text-label);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    transition: all 0.3s;
    align-self: flex-start;
}

.section-cta-link:hover {
    background: var(--color-gold);
    color: #14192F;
    gap: 16px;
}

/* ========== Room Inquiry (CTA-styled) ========== */
.inquiry-cta {
    min-height: auto;
}

.inquiry-cta .section-cta-text {
    padding: clamp(56px, 6vw, 96px) clamp(28px, 5vw, 80px);
}

.inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 0 0 28px;
    max-width: 540px;
}

.inquiry-form input,
.inquiry-form textarea {
    font-family: 'Inter', sans-serif;
    font-size: var(--text-body);
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    outline: none;
    transition: border-color 0.3s, background 0.3s;
}

.inquiry-form input::placeholder,
.inquiry-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.inquiry-form input:focus,
.inquiry-form textarea:focus {
    border-color: var(--color-gold);
    background: rgba(255, 255, 255, 0.1);
}

.inquiry-form textarea {
    resize: vertical;
    min-height: 110px;
}

.inquiry-form .captcha {
    display: flex;
    align-items: center;
    gap: 14px;
    color: rgba(255, 255, 255, 0.75);
    font-size: var(--text-small);
}

.inquiry-form .captcha label {
    letter-spacing: 0.05em;
}

.inquiry-form .captcha input {
    width: 100px;
}

.inquiry-form .section-cta-link {
    align-self: flex-start;
    background: transparent;
    cursor: pointer;
    margin-top: 8px;
}

.inquiry-form .section-cta-link:hover {
    background: var(--color-gold);
}

@media (max-width: 900px) {
    .section-cta {
        grid-template-columns: 1fr;
    }

    .section-cta-text {
        max-width: none;
        margin-left: 0;
    }

    .section-cta-image {
        min-height: 320px;
        order: -1;
    }
}

/* ========== About Section ========== */
.about-section {
    padding: 0;
    max-width: none;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 80px 60px;
    max-width: 2600px;
    margin: 0 auto;
    width: 100%;
    flex: 1;
}

.about-images {
    position: relative;
    height: 100vh;
}

.about-img {
    position: absolute;
    object-fit: cover;
}

.about-img-1 {
    top: 0;
    left: 0;
    width: 58%;
    height: 62%;
    z-index: 1;
    border: 10px solid #fff;
}

.about-img-2 {
    top: 10%;
    left: 48%;
    width: 48%;
    height: 52%;
    z-index: 2;
    border: 10px solid #fff;
}

.about-img-3 {
    bottom: 0;
    left: 15%;
    width: 55%;
    height: 50%;
    z-index: 1;
    border: 10px solid #fff;
}

.about-text {
    max-width: 800px;
    padding-right: 40px;
}

.about-label {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: var(--color-gold);
    text-transform: lowercase;
    display: block;
    margin-bottom: 24px;
}

.about-heading {
    font-family: "Young Serif", serif;
    font-size: var(--text-h1);
    font-weight: 400;
    line-height: 1.15;
    color: var(--color-text);
    margin-bottom: 28px;
}

.about-desc {
    font-family: 'Inter', sans-serif;
    font-size: var(--text-body);
    font-weight: 300;
    line-height: 1.7;
    color: var(--color-text-muted);
    margin-bottom: 32px;
}

.about-link {
    font-family: 'Inter', sans-serif;
    font-size: var(--text-body);
    font-weight: 500;
    letter-spacing: 0px;
    text-transform: uppercase;
    color: var(--color-text);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 6px;
    border-bottom: 1px solid var(--color-text);
    transition: color 0.3s, border-color 0.3s, gap 0.3s;
}

.about-link::after {
    content: '→';
    font-size: 18px;
    transition: transform 0.3s;
}

.about-link:hover {
    color: var(--color-gold);
    border-color: var(--color-gold);
}

.about-link:hover::after {
    transform: translateX(4px);
}

.about-bar {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 60px;
    border-top: 1px solid var(--color-border);
}

.about-bar-num {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text);
}

.about-bar-label {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: var(--color-text-muted);
    letter-spacing: 0.04em;
}
@media (max-width: 1440px) {
     .about-layout {
        grid-template-columns:2fr 1fr;
        gap: 32px;
        padding: 32px 16px;
    }
}

@media (max-width: 1024px) {
    .about-layout {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 32px 16px;
    }

    .about-images {
        height: 500px;
    }

    .about-text {
        max-width: none;
        padding-right: 0;
    }

    .about-bar {
        padding: 20px 32px;
    }
}

@media (max-width: 768px) {
    .about-layout {
        gap: 24px;
        padding: 32px 0;
    }

    /* Horizontalni scroll-snap slider umjesto preklopljene kompozicije */
    .about-images {
        position: static;
        height: auto;
        display: flex;
        gap: 12px;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        padding: 0 0px 0px;
        margin: 0;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .about-images::-webkit-scrollbar {
        display: none;
    }

    .about-img {
        position: static;
        flex: 0 0 82%;
        scroll-snap-align: center;
        scroll-snap-stop: always;
        aspect-ratio: 4/5;
        height: auto;
        width: auto;
        border: unset;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    }

    .about-img-1,
    .about-img-2,
    .about-img-3 {
        position: static;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        width: auto;
        height: auto;
        z-index: auto;
    }

    .about-text {
        padding: 0px;
    }
}

/* ========== Showcase Section (Page Grid) ========== */
.showcase-section {
    padding: 0;
    max-width: none;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.showcase-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    padding: 80px 60px 60px;
    max-width: 2600px;
    margin: 0 auto;
    width: 100%;
    align-items: end;
}

.showcase-header-left {
    position: relative;
}

.showcase-title {
    font-family: "Young Serif", serif;
    font-size: var(--text-h1);
    font-weight: 400;
    line-height: 1.15;
    color: var(--color-text);
    margin-bottom: 0;
    white-space: pre-line;
}

.showcase-header-left .script-accent {
    font-size: 30px;
    margin-top: -20px;
    margin-left: 180px;
    /* white-space: pre-line; */
    transform: translate(10rem, -1em) rotate(-6deg);
}

.showcase-header-right {
    max-width: 800px;
    padding-bottom: 8px;
}

.showcase-desc {
    font-family: 'Inter', sans-serif;
    font-size: var(--text-body);
    font-weight: 300;
    line-height: 1.7;
    color: var(--color-text-muted);
    margin-bottom: 32px;
}

.showcase-carousel {
    overflow: hidden;
    padding: 0 60px;
    max-width: 2600px;
    margin: 0 auto;
    width: 100%;
    flex: 1;
    cursor: grab;
    touch-action: pan-y;
}

.showcase-carousel:active {
    cursor: grabbing;
}

.showcase-track {
    display: flex;
    gap: 32px;
    transition: transform 0.5s cubic-bezier(0.25, 0, 0, 1);
}

.showcase-track.is-dragging {
    transition: none;
}

.showcase-card {
    flex: 0 0 calc(33.333% - 14px);
    min-width: 320px;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    overflow: hidden;
}

.showcase-card-img {
    width: 100%;
    height: 800px;
    overflow: hidden;
}

.showcase-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0, 0, 1);
}

.showcase-card:hover .showcase-card-img img {
    transform: scale(1.04);
}

.showcase-card-body {
    padding: 24px 0;
}

.showcase-card-label {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    display: block;
    margin-bottom: 12px;
}

.showcase-card-title {
    font-family: "Young Serif", serif;
    font-size: var(--text-h2);
    font-weight: 400;
    line-height: 1.15;
    color: var(--color-text);
    margin-bottom: 12px;
    text-transform: uppercase;
}

.showcase-card-desc {
    font-family: 'Inter', sans-serif;
    font-size: var(--text-body);
    font-weight: 300;
    line-height: 1.7;
    color: var(--color-text-muted);
}

.showcase-nav {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 24px 60px 48px;
    max-width: 2600px;
    margin: 0 auto;
    width: 100%;
}

.showcase-nav-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: none;
    color: var(--color-text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s;
}

.showcase-nav-btn:hover {
    color: var(--color-gold);
}

@media (max-width: 1024px) {
    .showcase-header {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 60px 32px 40px;
    }

    .showcase-header-left .script-accent {
        margin-left: 100px;
    }

    .showcase-carousel {
        padding: 0 32px;
    }

    .showcase-card {
        flex: 0 0 85%;
        min-width: 280px;
    }

    .showcase-card-img {
        height: 350px;
    }

    .showcase-nav {
        padding: 24px 32px 40px;
    }
}

@media (max-width: 768px) {
    .showcase-section {
        min-height: auto;
    }

    .showcase-carousel {
        padding: 0 0px;
    }

    .showcase-track {
        gap: 16px;
    }

    .showcase-nav {
        padding: 0px 0px 12px;
    }
}

/* ========== Fullscreen Pages (Hero-style page grid) ========== */
.fullscreen-pages {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.fp-backgrounds {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.fp-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 1s ease, transform 6s ease-out;
}

.fp-bg.is-active {
    opacity: 1;
    transform: scale(1);
}

.fp-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.6) 25%, rgba(0, 0, 0, 0.3) 55%, rgba(0, 0, 0, 0.1) 80%, transparent 100%);
}

.fp-panels {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: end;
}

.fp-panel {
    padding: 40px 40px 60px;
    color: white;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    transition: background 0.4s;
    cursor: pointer;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.fp-panel:first-child {
    border-left: none;
}

.fp-panel:hover {
    background: rgba(0, 0, 0, 0.15);
}

.fp-panel-label {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    color: var(--color-gold);
    display: block;
    margin-bottom: 12px;
}

.fp-panel-label {
    font-family: 'Dancing Script', cursive;
    font-size: var(--text-script);
    font-style: italic;
    color: var(--color-gold);
    margin-bottom: 8px;
    transform: rotate(-3deg);
    transform-origin: left center;
    line-height: 1.1;
}

.fp-panel-title {
    font-family: "Young Serif", serif;
    font-size: var(--text-h2);
    font-weight: 400;
    line-height: 1.1;
    color: white;
    margin-bottom: 0;
    white-space: pre-line;
    text-transform: uppercase;
    transition: margin-bottom 0.4s;
}

.fp-panel.is-active .fp-panel-title {
    margin-bottom: 16px;
}

.fp-panel-desc {
    font-family: 'Inter', sans-serif;
    font-size: var(--text-body);
    font-weight: 300;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
    max-width: 600px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s ease, opacity 0.4s ease;
}

.fp-panel.is-active .fp-panel-desc {
    max-height: 200px;
    opacity: 1;
}

@media (max-width: 1024px) {
    .fp-panels {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .fp-panel {
        min-height: auto;
        padding: 24px 32px;
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .fp-panel:first-child {
        border-top: none;
    }
}

/* ========== Card Grid ========== */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 32px;
}

.card {
    display: block;
    overflow: hidden;
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-4px);
}

.card-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.25, 0, 0, 1);
}

.card:hover .card-image {
    transform: scale(1.04);
}

.card-body {
    padding: 20px 0;
}

.card-body h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: var(--text-h2);
    margin-bottom: 8px;
}

.card-body p {
    color: var(--color-text-muted);
    font-size: var(--text-small);
    line-height: 1.6;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
    font-size: var(--text-small);
    color: var(--color-text-muted);
}

.card-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    color: var(--color-gold);
}

/* ========== Gallery Slider ========== */
.gallery-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    max-height: 80vh;
    margin: 48px 0;
    background: #000;
    user-select: none;
}

.gallery-slider-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-slider-track.is-dragging {
    transition: none;
}

.gallery-slider-slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
}

.gallery-slider-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.gallery-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    color: var(--color-text);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    z-index: 2;
}

.gallery-slider-btn:hover {
    background: #fff;
}

.gallery-slider-btn-prev {
    left: 24px;
}

.gallery-slider-btn-next {
    right: 24px;
}

.gallery-slider-pager {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2;
}

.gallery-slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.2s;
    padding: 0;
}

.gallery-slider-dot.is-active {
    background: #fff;
}

/* ========== Photo Grid (Lemon Garden asymmetric) ========== */
.photo-grid {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 0;
    margin: 48px 0;
}

.photo-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-grid img:nth-child(1) {
    height: 400px;
    align-self: end;
}

.photo-grid img:nth-child(2) {
    height: 520px;
}

.photo-grid img:nth-child(3) {
    height: 400px;
    align-self: start;
}

@media (max-width: 768px) {
    .photo-grid {
        grid-template-columns: 1fr;
    }

    .photo-grid img,
    .photo-grid img:nth-child(1),
    .photo-grid img:nth-child(2),
    .photo-grid img:nth-child(3) {
        height: 250px;
    }
}

/* ========== Room Primary Bar (overlay at hero bottom) ========== */
.room-primary-bar {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    color: var(--color-text-white);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.55) 60%, rgba(0, 0, 0, 0.75) 100%);
}

.room-primary-bar-inner {
    max-width: 1560px;
    margin: 0 auto;
    padding: 120px 48px 120px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.room-primary-bar-attrs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    flex: 1 1 auto;
}

.room-primary-attr {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 22px;
    color: rgba(255, 255, 255, 0.92);
}

.room-primary-attr-icon {
    width: 22px;
    height: 22px;
    object-fit: contain;
    color: var(--color-gold);
    flex-shrink: 0;
}

.room-primary-attr-key {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

.room-primary-attr-value {
    font-weight: 500;
    letter-spacing: 0.01em;
    color: var(--color-text-white);
}

.room-primary-bar-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 44px;
    background: var(--color-text-white);
    color: var(--color-text);
    font-size: 13px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 0px;
    transition: background 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
}

.room-primary-bar-cta:hover {
    background: var(--color-gold);
    color: var(--color-text-white);
}

@media (max-width: 768px) {
    .room-primary-bar {
        background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 40%, rgba(0, 0, 0, 0.85) 100%);
    }

    .room-primary-bar-inner {
        padding: 60px 16px 24px;
        gap: 12px;
        justify-content: center;
    }

    .room-primary-bar-attrs {
        gap: 10px 20px;
        width: 100%;
        justify-content: center;
    }

    .room-primary-attr {
        font-size: var(--text-body);
        gap: 8px;
    }

    .room-primary-attr-icon {
        width: 18px;
        height: 18px;
    }

    .room-primary-bar-cta {
        width: 100%;
        padding: 14px 24px;
        font-size: var(--text-label);
    }
}

@media (max-width: 480px) {
    .room-primary-bar-inner {
        padding: 56px 14px 18px;
    }

    .room-primary-bar-attrs {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px 14px;
    }

    .room-primary-attr {
        font-size: var(--text-small);
        gap: 6px;
    }

    .room-primary-attr-icon {
        width: 16px;
        height: 16px;
    }
}

/* ========== Room Search Results ========== */
section.room-search {
    padding: 80px clamp(20px, 5vw, 60px) clamp(64px, 8vw, 120px);
    min-height: auto;
    display: block;
}

.page-hero+section.room-search,
.page-hero+section.blog-article-wrap {
    margin-top: -240px;
    padding-top: 0;
    position: relative;
    z-index: 2;
    /* Top 240px transparent so dark hero shows through, then cream bg below */
    background: linear-gradient(180deg, transparent 0, transparent 240px, var(--color-bg) 240px, var(--color-bg) 100%);
}

/* Summary placed inside page-hero needs light text on dark bg */
.page-hero .room-search-summary {
    color: rgba(255, 255, 255, 0.85);
    justify-content: center;
    margin-top: 24px;
}

.page-hero .room-search-summary-divider {
    background: rgba(255, 255, 255, 0.3);
}

.room-search-inner {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.room-search-filter {
    position: fixed;
    inset: 0;
    z-index: 1500;
    background: rgba(20, 25, 47, 0.55);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.room-search-filter.is-hidden {
    opacity: 0;
    pointer-events: none;
}

.room-search-filter .hero-search {
    /* Override hero positioning; inherit bg / border / blur / grid from base .hero-search */
    position: relative;
    inset: auto;
    transform: none;
    width: 80%;
    margin: 0;
    animation: none;
}

.room-search-filter:not(.is-hidden) .hero-search {
    animation: heroSearchOverlayFadeUp 0.6s ease-out 0.1s forwards;
}

/* On mobile keep the field separators visible inside the overlay (override hero's mobile rules) */
@media (max-width: 768px) {
    .room-search-filter .hero-search {
        width: calc(100vw - 48px);
        grid-template-columns: 1fr;
    }

    .room-search-filter .hero-search-field {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }

    .room-search-filter .hero-search-field:last-of-type {
        border-bottom: none;
    }
}

@keyframes heroSearchOverlayFadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

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

.room-search-summary-edit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.room-search-summary-edit svg {
    width: 18px;
    height: 18px;
    color: var(--color-gold);
}

.room-search-summary-edit:hover,
.room-search-summary-edit.is-active {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: #fff;
}

.room-search-summary-edit:hover svg,
.room-search-summary-edit.is-active svg {
    color: #fff;
}

.room-search-header {
    margin-bottom: 40px;
}

.room-search-title {
    font-family: "Young Serif", serif;
    font-weight: 400;
    font-size: var(--text-h1);
    color: var(--color-text);
    margin-bottom: 20px;
    line-height: 1.1;
}

.room-search-summary {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px 18px;
    color: var(--color-text-muted);
    font-size: var(--text-small);
}

.room-search-summary-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.room-search-summary-item svg {
    width: 18px;
    height: 18px;
    color: var(--color-gold);
    flex-shrink: 0;
}

.room-search-summary-divider {
    width: 1px;
    height: 16px;
    background: var(--color-border);
}

.room-search-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.room-search-card {
    display: grid;
    grid-template-columns: 420px 1fr 240px;
    gap: 24px;
    padding: 16px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    transition: border-color 0.3s, box-shadow 0.3s;
}

.room-search-card:hover {
    border-color: var(--color-gold);
    box-shadow: 0 12px 32px rgba(20, 25, 47, 0.06);
}

.room-search-card-image {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--color-bg);
    display: block;
    text-decoration: none;
    color: inherit;
}

/* Prev / next arrows — discrete, gold accent, shown on hover on desktop */
.room-search-card-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(20, 25, 47, 0.6);
    color: var(--color-gold);
    border: 1px solid rgba(196, 162, 101, 0.4);
    border-radius: 999px;
    cursor: pointer;
    padding: 0;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    opacity: 0;
    transition: opacity 0.2s ease, background 0.2s, color 0.2s, border-color 0.2s;
}

.room-search-card-image:hover .room-search-card-arrow {
    opacity: 1;
}

.room-search-card-arrow:hover {
    background: var(--color-gold);
    color: var(--color-dark-bg);
    border-color: var(--color-gold);
}

.room-search-card-arrow-prev {
    left: 12px;
}

.room-search-card-arrow-next {
    right: 12px;
}

/* On touch devices (no hover), keep arrows visible at lower opacity */
@media (hover: none) {
    .room-search-card-arrow {
        opacity: 0.85;
    }
}

.room-search-card-slides {
    display: flex;
    width: 100%;
    height: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.room-search-card-slides::-webkit-scrollbar {
    display: none;
}

.room-search-card-slide {
    flex: 0 0 100%;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    height: 100%;
}

.room-search-card-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.room-search-card-dots {
    display: none;
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    background: rgba(20, 25, 47, 0.55);
    backdrop-filter: blur(4px);
}

.room-search-card-dot {
    width: 18px;
    height: 3px;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background 0.2s, width 0.2s;
}

.room-search-card-dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

.room-search-card-dot.is-active {
    background: #fff;
    width: 22px;
}

.room-search-card-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.room-search-card-title {
    font-family: "Young Serif", serif;
    font-weight: 400;
    font-size: var(--text-h3);
    color: var(--color-text);
    margin-bottom: 10px;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.room-search-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.room-search-card-title a:hover {
    color: var(--color-gold);
}

.room-search-card-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 14px;
    color: var(--color-text-muted);
    font-size: var(--text-small);
    margin-bottom: 14px;
}

.room-search-card-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.room-search-card-meta-item svg {
    width: 16px;
    height: 16px;
    color: var(--color-gold);
    flex-shrink: 0;
}

.room-search-card-meta-divider {
    width: 1px;
    height: 14px;
    background: var(--color-border);
}

.room-search-card-desc {
    color: var(--color-text-muted);
    font-size: var(--text-body);
    line-height: 1.55;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.room-search-card-attrs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 16px;
    margin-top: auto;
    padding-top: 4px;
}

.room-search-card-attr {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: var(--text-small);
    color: var(--color-text);
}

.room-search-card-attr img {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

.room-search-card-price {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    text-align: right;
    border-left: 1px solid var(--color-border);
    padding-left: 24px;
}

.room-search-card-price-label {
    font-size: var(--text-small);
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0 0 4px;
}

.room-search-card-price-value {
    font-family: "Young Serif", serif;
    font-size: var(--text-h2);
    color: var(--color-text);
    line-height: 1.1;
    margin: 0 0 4px;
}

.room-search-card-price-na {
    color: var(--color-text-muted);
    font-size: var(--text-h3);
}

.room-search-card-price-sub {
    font-size: var(--text-small);
    color: var(--color-text-muted);
    margin: 0 0 18px;
}

.room-search-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    font-size: var(--text-label);
}

.room-search-card-cta svg {
    transition: transform 0.3s;
}

.room-search-card-cta:hover svg {
    transform: translateX(3px);
}

.room-search-card-cta.is-disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
    border-color: var(--color-border);
    color: var(--color-text-muted);
}

.room-search-card-cta.is-disabled:hover {
    background: transparent;
    color: var(--color-text-muted);
}

@media (max-width: 1024px) {
    .room-search-card {
        grid-template-columns: 320px 1fr;
        gap: 18px;
        padding: 10px;
    }

    .room-search-card-price {
        grid-column: 1 / -1;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        text-align: left;
        border-left: none;
        border-top: 1px solid var(--color-border);
        padding-left: 0;
        padding-top: 16px;
        gap: 16px;
        flex-wrap: wrap;
    }

    .room-search-card-price-label,
    .room-search-card-price-value,
    .room-search-card-price-sub {
        margin-bottom: 0;
    }

    .room-search-card-price-info {
        display: flex;
        flex-direction: column;
    }

    .room-search-card-cta {
        margin-left: auto;
    }
}

@media (max-width: 768px) {
    section.room-search {
        padding: 110px 16px 48px;
    }

    .room-search-header {
        margin-bottom: 24px;
    }

    .room-search-summary {
        gap: 8px 12px;
        font-size: var(--text-small);
    }

    .room-search-summary-divider {
        display: none;
    }

    .room-search-summary-edit {
        flex: 0 0 100%;
        margin-left: 0;
        margin-top: 8px;
        justify-content: center;
    }

    .room-search-list {
        gap: 16px;
    }
}

@media (max-width: 700px) {
    .room-search-card {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 0;
    }

    .room-search-card-image {
        aspect-ratio: 16/10;
    }

    .room-search-card-info {
        padding: 16px 16px 0;
    }

    .room-search-card-price {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        text-align: left;
        border-top: 1px solid var(--color-border);
        border-left: none;
        padding: 14px 16px;
        gap: 12px;
        flex-wrap: wrap;
    }

    .room-search-card-price-label {
        margin: 0;
    }

    .room-search-card-price-value {
        margin: 0;
        font-size: var(--text-h3);
    }

    .room-search-card-price-sub {
        margin: 0;
        flex: 1 1 100%;
    }

    .room-search-card-cta {
        margin-left: auto;
        padding: 10px 18px;
    }
}

@media (max-width: 480px) {
    section.room-search {
        padding: 100px 12px 40px;
    }

    .room-search-card-info {
        padding: 14px 12px 0;
    }

    .room-search-card-price {
        padding: 12px;
    }
}

/* ========== Reservation Page ========== */
section.reservation-page {
    padding: clamp(120px, 14vw, 180px) clamp(20px, 5vw, 60px) clamp(64px, 8vw, 120px);
    min-height: auto;
    display: block;
}

.reservation-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.reservation-header {
    text-align: center;
    margin-bottom: 48px;
}

.reservation-header .section-label {
    margin-bottom: 8px;
    transform-origin: center;
}

.reservation-title {
    font-family: "Young Serif", serif;
    font-weight: 400;
    font-size: var(--text-h1);
    line-height: 1.1;
    color: var(--color-text);
    margin-bottom: 12px;
}

.reservation-subtitle {
    font-size: var(--text-body);
    color: var(--color-text-muted);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.6;
}

.reservation-alert {
    margin-bottom: 24px;
}

.reservation-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 380px);
    gap: 48px;
    align-items: start;
}

.reservation-form {
    display: flex;
    flex-direction: column;
    gap: 28px;
    width: 100%;
}

.reservation-step {
    border: 1px solid var(--color-border);
    background: var(--color-surface);
    padding: 28px clamp(20px, 3vw, 32px);
    margin: 0;
}

.reservation-step legend {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 12px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    font-family: "Young Serif", serif;
    font-size: var(--text-h4);
    color: var(--color-text);
    width: 200px;
}

.reservation-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--color-gold);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 16px;
}

.form-row-2 {
    grid-template-columns: 1fr 1fr;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-field-full {
    grid-column: 1 / -1;
}

.form-label {
    font-size: var(--text-label);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--color-text-muted);
}

.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="tel"],
.form-field input[type="number"],
.form-field input[type="date"],
.form-field select,
.form-field textarea,
.reservation-form .captcha input {
    font-family: 'Inter', sans-serif;
    font-size: var(--text-body);
    padding: 12px 14px;
    border: 1px solid var(--color-border);
    background: var(--color-bg);
    color: var(--color-text);
    outline: none;
    transition: border-color 0.2s, background 0.2s;
}

.form-field select {
    cursor: pointer;
}

/* ========== Custom Select (used in reservation form) ========== */
.custom-select {
    position: relative;
    width: 100%;
}

.custom-select-native {
    /* Visually hidden but keyboard / form-submission accessible */
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.custom-select-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    padding: 12px 14px;
    font-family: 'Inter', sans-serif;
    font-size: var(--text-body);
    color: var(--color-text);
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    cursor: pointer;
    text-align: left;
    transition: border-color 0.2s, background 0.2s;
}

.custom-select-trigger:hover {
    border-color: rgba(196, 162, 101, 0.5);
}

.custom-select.is-open .custom-select-trigger {
    border-color: var(--color-gold);
    background: #fff;
}

.custom-select-arrow {
    flex-shrink: 0;
    color: var(--color-text-muted);
    transition: transform 0.2s;
}

.custom-select.is-open .custom-select-arrow {
    transform: rotate(180deg);
    color: var(--color-gold);
}

.custom-select-value {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.custom-select-options {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    z-index: 20;
    margin: 0;
    padding: 6px 0;
    list-style: none;
    background: #fff;
    border: 1px solid var(--color-border);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    max-height: 320px;
    overflow-y: auto;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-4px);
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.custom-select.is-open .custom-select-options {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.custom-select-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    font-size: var(--text-body);
    color: var(--color-text);
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
}

.custom-select-option-image {
    flex-shrink: 0;
    width: 56px;
    height: 40px;
    object-fit: cover;
    border-radius: 2px;
    background: rgba(196, 162, 101, 0.1);
}

.custom-select-option-image-placeholder {
    display: block;
}

.custom-select-option-label {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-width: 0;
}

.custom-select-option-name {
    font-family: "Young Serif", serif;
    font-size: var(--text-body);
    color: var(--color-text);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.custom-select-option-price {
    flex-shrink: 0;
    display: inline-flex;
    align-items: baseline;
    gap: 2px;
    padding: 4px 10px;
    border: 1px solid rgba(196, 162, 101, 0.4);
    border-radius: 2px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-gold);
    background: rgba(196, 162, 101, 0.08);
    letter-spacing: 0.01em;
}

.custom-select-option-unit {
    font-size: 11px;
    font-weight: 400;
    color: var(--color-text-muted);
    text-transform: lowercase;
    letter-spacing: 0.04em;
}

.custom-select-option.is-selected .custom-select-option-name {
    color: var(--color-gold);
    font-weight: 500;
}

.custom-select-option.is-selected .custom-select-option-price {
    background: var(--color-gold);
    color: white;
    border-color: var(--color-gold);
}

.custom-select-option.is-selected .custom-select-option-unit {
    color: rgba(255, 255, 255, 0.85);
}

.custom-select-trigger-image {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.custom-select-trigger-image[hidden] {
    display: none;
}

.custom-select-trigger-image img {
    width: 40px;
    height: 30px;
    object-fit: cover;
    border-radius: 2px;
}

.custom-select-option:hover {
    background: rgba(196, 162, 101, 0.1);
}

.custom-select-option.is-selected {
    background: rgba(196, 162, 101, 0.15);
    color: var(--color-gold);
    font-weight: 500;
}

.form-field textarea {
    resize: vertical;
    min-height: 100px;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus,
.reservation-form .captcha input:focus {
    border-color: var(--color-gold);
    background: #fff;
}

.form-field-checkbox {
    flex-direction: row;
    align-items: center;
    gap: 10px;
    align-self: end;
    padding: 12px 0;
}

.form-field-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--color-gold);
    cursor: pointer;
}

.form-field-checkbox span {
    font-size: var(--text-body);
}

/* Counter widget */
.counter {
    display: grid;
    grid-template-columns: 44px 1fr 44px;
    align-items: stretch;
    border: 1px solid var(--color-border);
    background: var(--color-bg);
}

.counter-btn {
    background: transparent;
    border: none;
    color: var(--color-text);
    font-size: 18px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.counter-btn:hover {
    background: var(--color-gold);
    color: #fff;
}

.counter input {
    text-align: center;
    border: none !important;
    border-left: 1px solid var(--color-border) !important;
    border-right: 1px solid var(--color-border) !important;
    background: transparent !important;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    -moz-appearance: textfield;
    appearance: textfield;
}

.counter input::-webkit-outer-spin-button,
.counter input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.children-ages {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 12px;
    margin-top: 16px;
}

.children-ages .form-field {
    gap: 4px;
}

.reservation-form .captcha {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
    padding: 14px 16px;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    font-size: var(--text-body);
}

.reservation-form .captcha input {
    width: 90px;
}

.reservation-submit {
    align-self: stretch;
    padding: 18px 32px;
    font-size: var(--text-body);
    font-weight: 500;
    letter-spacing: 0.12em;
    gap: 12px;
}

.reservation-submit svg {
    transition: transform 0.3s;
}

.reservation-submit:hover svg {
    transform: translateX(4px);
}

/* Booking summary sidebar */
.reservation-summary {
    position: sticky;
    top: 100px;
}

.reservation-summary-inner {
    background: #14192F;
    color: #fff;
    overflow: hidden;
}

.reservation-summary-image {
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #1f243f;
}

.reservation-summary-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.reservation-summary-image:empty::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1f243f 0%, #14192F 100%);
}

.reservation-summary-body {
    padding: 24px clamp(20px, 3vw, 28px) 28px;
}

.reservation-summary-label {
    font-family: 'Dancing Script', cursive;
    font-size: var(--text-script);
    color: var(--color-gold);
    margin-bottom: 4px;
}

.reservation-summary-room {
    font-family: "Young Serif", serif;
    font-size: var(--text-h3);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 20px;
    line-height: 1.2;
}

.reservation-summary-list {
    margin: 0 0 20px;
    padding: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.reservation-summary-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: var(--text-small);
}

.reservation-summary-row dt {
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.reservation-summary-row dd {
    color: #fff;
    margin: 0;
    text-align: right;
    font-weight: 500;
}

.reservation-summary-total {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding-top: 16px;
    border-top: 1px solid var(--color-gold);
    margin-top: 4px;
}

.reservation-summary-total-label {
    font-size: var(--text-small);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.7);
}

.reservation-summary-total-value {
    font-family: "Young Serif", serif;
    font-size: var(--text-h2);
    color: var(--color-gold);
}

.reservation-summary-warning {
    margin-top: 12px;
    padding: 10px 12px;
    background: rgba(255, 200, 80, 0.12);
    border-left: 2px solid var(--color-gold);
    color: rgba(255, 255, 255, 0.85);
    font-size: var(--text-small);
}

.reservation-summary-note {
    margin-top: 16px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
}

.is-hidden {
    display: none !important;
}

/* Confirmation page */
section.reservation-confirm {
    padding: clamp(120px, 14vw, 180px) clamp(20px, 5vw, 60px) clamp(80px, 10vw, 140px);
    min-height: auto;
    display: block;
}

.reservation-confirm-inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.reservation-confirm-icon {
    width: 88px;
    height: 88px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(196, 162, 101, 0.12);
    color: var(--color-gold);
    border-radius: 50%;
}

.reservation-confirm-icon svg {
    width: 44px;
    height: 44px;
}

.reservation-confirm-title {
    font-family: "Young Serif", serif;
    font-size: var(--text-h1);
    font-weight: 400;
    line-height: 1.1;
    color: var(--color-text);
    margin: 8px 0 16px;
}

.reservation-confirm-desc {
    font-size: var(--text-body);
    color: var(--color-text-muted);
    max-width: 540px;
    margin: 0 auto 24px;
    line-height: 1.6;
}

.reservation-confirm-id {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    margin-bottom: 32px;
    font-size: var(--text-small);
}

.reservation-confirm-id span {
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.reservation-confirm-id strong {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: var(--color-text);
    letter-spacing: 0.03em;
}

.reservation-confirm-card {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 0;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    text-align: left;
    margin: 0 auto 24px;
    overflow: hidden;
}

.reservation-confirm-card-image {
    overflow: hidden;
}

.reservation-confirm-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.reservation-confirm-card-body {
    padding: 24px clamp(20px, 3vw, 28px);
}

.reservation-confirm-card-body h3 {
    font-family: "Young Serif", serif;
    font-size: var(--text-h3);
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 16px;
    color: var(--color-text);
}

.reservation-confirm-card-body .reservation-summary-list {
    border-top-color: var(--color-border);
    margin-bottom: 16px;
}

.reservation-confirm-card-body .reservation-summary-row {
    border-bottom-color: var(--color-border);
}

.reservation-confirm-card-body .reservation-summary-row dt {
    color: var(--color-text-muted);
}

.reservation-confirm-card-body .reservation-summary-row dd {
    color: var(--color-text);
}

.reservation-confirm-card-body .reservation-summary-total {
    border-top-color: var(--color-gold);
}

.reservation-confirm-card-body .reservation-summary-total-label {
    color: var(--color-text-muted);
}

.reservation-confirm-card-body .reservation-summary-total-value {
    color: var(--color-text);
}

.reservation-confirm-email-sent {
    color: var(--color-text-muted);
    font-size: var(--text-small);
    margin-bottom: 24px;
}

.reservation-confirm-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

@media (max-width: 1024px) {
    .reservation-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .reservation-summary {
        position: static;
        order: -1;
    }
}

@media (max-width: 768px) {
    section.reservation-page {
        padding: 110px 16px 48px;
    }

    .reservation-header {
        margin-bottom: 32px;
        text-align: left;
    }

    .reservation-step {
        padding: 20px 16px;
    }

    .form-row-2 {
        grid-template-columns: 1fr;
    }

    .form-field-checkbox {
        align-self: start;
    }

    .reservation-confirm-card {
        grid-template-columns: 1fr;
    }

    .reservation-confirm-card-image {
        aspect-ratio: 16/9;
    }
}

@media (max-width: 480px) {
    section.reservation-page {
        padding: 100px 12px 40px;
    }

    .reservation-step {
        padding: 16px 12px;
    }

    .reservation-step legend {
        font-size: var(--text-body);
        padding: 4px 8px;
    }

    .reservation-summary-body {
        padding: 16px 14px 18px;
    }
}

/* ========== Room Detail ========== */
.room-detail {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 48px;
    margin: 48px 0;
}

.room-detail-content {
    line-height: 1.8;
}

.room-detail-attr {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--color-border);
    font-size: var(--text-small);
}

.room-detail-attr-key {
    color: var(--color-text-muted);
}

@media (max-width: 768px) {
    .room-detail {
        grid-template-columns: 1fr;
    }
}

/* ========== Forms ========== */
.contact-form {
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* ========== Room Inquiry (form + info + map) ========== */
.inquiry-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 64px;
    align-items: start;
}

.inquiry-left {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.inquiry-info {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 48px;
    padding-top: 16px;
    border-top: 1px solid var(--color-border);
}

.inquiry-info-block p {
    margin: 4px 0;
}

.inquiry-info-block a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.inquiry-info-block a:hover {
    color: var(--color-gold);
}

.inquiry-info-title {
    font-size: var(--text-sm);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-text-muted);
    margin: 0 0 12px;
}

.inquiry-info-address {
    font-style: normal;
    line-height: 1.6;
}

.inquiry-info-route {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    font-size: var(--text-sm);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-gold) !important;
}

.inquiry-socials {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 12px;
}

.inquiry-social {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    color: var(--color-gold);
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}

.inquiry-social:hover {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: white;
}

.inquiry-map {
    position: sticky;
    top: 100px;
    height: 100%;
    min-height: 480px;
}

.inquiry-map a,
.inquiry-map img {
    display: block;
    width: 100%;
    height: 100%;
}

.inquiry-map img {
    object-fit: cover;
}

.inquiry-map-fallback {
    background: #ececec url('/img/contact/map.jpg') center/cover no-repeat;
    min-height: 480px;
}

@media (max-width: 900px) {
    .inquiry-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .inquiry-map {
        position: static;
        min-height: 320px;
    }

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

@media (max-width: 768px) {
    .inquiry-grid {
        gap: 32px;
    }

    .inquiry-left {
        gap: 24px;
    }

    .inquiry-info {
        padding-top: 12px;
    }

    .inquiry-info-block a {
        color: var(--color-text);
    }

    .inquiry-info-route {
        font-size: var(--text-label);
    }

    .inquiry-map,
    .inquiry-map-fallback {
        min-height: 240px;
    }

    .inquiry-social {
        width: 36px;
        height: 36px;
    }
}

.contact-form input,
.contact-form textarea,
.reservation-form input,
.reservation-form textarea,
.reservation-form select {
    font-family: 'Inter', sans-serif;
    font-size: var(--text-base);
    padding: 14px 16px;
    border: 1px solid var(--color-border);
    background: white;
    outline: none;
    transition: border-color 0.3s;
}

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

.captcha {
    display: flex;
    align-items: center;
    gap: 16px;
}

.captcha input {
    width: 100px;
}

/* ========== Alerts ========== */
.alert {
    padding: 16px 24px;
    margin-bottom: 24px;
}

.alert-success {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.alert-error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

/* ========== Empty State ========== */
.empty-state {
    text-align: center;
    padding: 64px 32px;
    color: var(--color-text-muted);
}

.empty-state .btn {
    margin-top: 24px;
}

/* ========== Blog Article ========== */
section.blog-article-wrap {
    padding: 180px var(--pad-section-x) 120px;
    min-height: auto;
    display: block;
}

.blog-article {
    max-width: 800px;
    margin: 0 auto;
}

.blog-article-header {
    text-align: center;
    margin-bottom: 48px;
}

.blog-article-header h1 {
    margin-bottom: 16px;
}

.blog-article-header time {
    display: block;
    font-size: 13px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-gold-muted);
}

.blog-article-hero {
    margin: 0 0 56px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #EFEAE0;
}

.blog-article-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog-article-content {
    line-height: 1.9;
    font-size: var(--text-base);
    color: var(--color-text);
}

.blog-article-content p {
    margin-bottom: 24px;
}

.blog-article-content h2,
.blog-article-content h3 {
    margin-top: 40px;
    margin-bottom: 16px;
}

@media (max-width: 900px) {
    section.blog-article-wrap {
        padding-top: 100px;
        padding-bottom: 80px;
    }

    .blog-article-hero {
        margin-bottom: 36px;
    }
}

@media (max-width: 768px) {
    section.blog-article-wrap {
        padding-top: 120px;
        padding-right: var(--pad-section-x);
        padding-bottom: 56px;
        padding-left: var(--pad-section-x);
    }

    .blog-article-header {
        margin-bottom: 32px;
    }

    .blog-article-hero {
        aspect-ratio: 4/3;
        margin-bottom: 28px;
    }

    .blog-article-content {
        font-size: var(--text-body);
        line-height: 1.75;
    }

    .blog-article-content p {
        margin-bottom: 18px;
    }

    .blog-article-content h2,
    .blog-article-content h3 {
        margin-top: 28px;
        margin-bottom: 12px;
    }
}

@media (max-width: 480px) {
    section.blog-article-wrap {
        padding-top: 104px;
        padding-right: 16px;
        padding-bottom: 40px;
        padding-left: 16px;
    }

    .blog-article-hero {
        aspect-ratio: 1/1;
        margin-bottom: 20px;
    }
}

/* ========== Pre-footer CTA ========== */
.prefooter {
    background: var(--color-surface);
    text-align: center;
    padding: 120px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
}

.prefooter-title {
    font-family: "Young Serif", serif;
    font-size: var(--text-h1);
    font-weight: 400;
    line-height: 1;
    color: var(--color-text);
    margin-bottom: 24px;
    letter-spacing: 0.02em;
    word-break: break-word;
    max-width: 100%;
}

.prefooter-desc {
    font-family: 'Inter', sans-serif;
    font-size: var(--text-body);
    font-weight: 300;
    line-height: 1.6;
    color: var(--color-text-muted);
    max-width: 440px;
    margin-bottom: 32px;
}

.prefooter-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text);
    transition: color 0.3s, transform 0.3s;
}

.prefooter-arrow:hover {
    color: var(--color-gold);
    transform: translateX(4px);
}

/* ========== Footer ========== */
.footer {
    background: var(--color-surface);
    color: var(--color-text);
    padding: 0 60px;
}

.footer-main {
    max-width: 2600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    gap: 48px;
    padding: 60px 0;
    border-top: 1px solid var(--color-border);
}

.footer-brand {
    padding-right: 40px;
}

.footer-logo {
    font-family: "Young Serif", serif;
    font-size: var(--text-h3);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: 0.05em;
    color: var(--color-text);
    margin-bottom: 12px;
}

.footer-tagline {
    font-family: 'Dancing Script', cursive;
    font-size: var(--text-script);
    color: var(--color-gold-muted);
    margin-top: 8px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-col-title {
    font-family: 'Inter', sans-serif;
    font-size: var(--text-label);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text);
    margin-bottom: 8px;
}

.footer-col p,
.footer-col a {
    font-family: 'Inter', sans-serif;
    font-size: var(--text-body);
    font-weight: 300;
    color: var(--color-text-muted);
    transition: color 0.3s;
    text-decoration: none;
}

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

.footer-bottom {
    max-width: 2600px;
    margin: 0 auto;
    padding: 24px 0;
    border-top: 1px solid var(--color-border);
    text-align: center;
}

.footer-bottom p {
    font-family: 'Inter', sans-serif;
    font-size: var(--text-small);
    font-weight: 300;
    color: var(--color-text-muted);
}

.footer-bottom a {
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

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

@media (max-width: 1024px) {
    .footer {
        padding: 0 20px;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-brand {
        grid-column: 1 / -1;
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 0 16px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 40px 0;
    }

    .footer-bottom {
        padding: 16px 0;
    }

    .prefooter {
        padding: 80px 24px;
        min-height: 40vh;
    }
}

@media (max-width: 768px) {
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* ========== Datepicker ========== */
.dp {
    position: fixed;
    z-index: 1000;
    background: rgba(26, 26, 22, 0.96);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 28px;
    width: 380px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 0.25s, transform 0.25s;
}

.dp.is-open {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}

/* Footer with Odaberi + Zatvori buttons — hidden on desktop */
.dp-footer {
    display: none;
    margin-top: 32px;
    flex-direction: column;
    gap: 10px;
}

.dp-apply,
.dp-close {
    width: 100%;
    padding: 14px 20px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    text-align: center;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.dp-apply {
    background: var(--color-gold);
    color: var(--color-dark-bg);
    border: none;
    font-weight: 500;
}

.dp-apply:hover {
    background: #d4b275;
}

.dp-close {
    background: transparent;
    color: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-weight: 400;
}

.dp-close:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
}

/* Backdrop — only used on mobile */
.dp-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s;
}

.dp-backdrop.is-open {
    opacity: 1;
    pointer-events: auto;
}

/* Mobile modal layout: centered on viewport, scrollable, with X + Odaberi */
@media (max-width: 768px) {
    .dp.dp-modal {
        inset: 16px;
        margin: auto;
        width: min(92vw, 380px);
        height: fit-content;
        max-height: calc(100vh - 32px);
        overflow-y: auto;
        box-sizing: border-box;
        transform: translateY(8px);
    }

    .dp.dp-modal.is-open {
        transform: translateY(0);
    }

    .dp.dp-modal .dp-footer {
        display: flex;
    }
}

.dp-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.dp-title {
    font-family: "Young Serif", serif;
    font-size: 18px;
    color: white;
    letter-spacing: 0.02em;
}

.dp-nav {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.6);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: color 0.2s, border-color 0.2s;
}

.dp-nav:hover {
    color: white;
    border-color: rgba(255, 255, 255, 0.4);
}

.dp-days-header {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0;
    margin-bottom: 8px;
}

.dp-day-name {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.35);
    text-align: center;
    padding: 6px 0;
}

.dp-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
}

.dp-cell {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    background: none;
    border: none;
    width: 100%;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
    position: relative;
}

.dp-cell:hover:not(.dp-cell-disabled):not(.dp-cell-empty) {
    background: rgba(196, 162, 101, 0.2);
    color: white;
}

.dp-cell-empty {
    cursor: default;
}

.dp-cell-disabled {
    color: rgba(255, 255, 255, 0.15);
    cursor: default;
}

.dp-cell-today {
    color: var(--color-gold);
    font-weight: 500;
}

.dp-cell-selected {
    background: var(--color-gold);
    color: var(--color-dark-bg);
    font-weight: 600;
}

.dp-cell-selected:hover {
    background: var(--color-gold);
    color: var(--color-dark-bg);
}

.dp-cell-start,
.dp-cell-end {
    background: var(--color-gold);
    color: var(--color-dark-bg);
    font-weight: 600;
}

.dp-cell-range {
    background: rgba(196, 162, 101, 0.15);
    color: var(--color-gold);
}

@media (max-width: 768px) {
    .dp {
        width: calc(100vw - 32px);
        left: 16px !important;
        right: 16px;
    }
}

/* ========== Guests Picker ========== */
.gp {
    position: fixed;
    z-index: 1000;
    background: rgba(26, 26, 22, 0.96);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 6px 28px;
    min-width: 280px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 0.25s, transform 0.25s;
}

.gp.is-open {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}

.gp-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.gp-row+.gp-row {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.gp-label-title {
    font-family: "Young Serif", serif;
    font-size: 16px;
    color: white;
    display: block;
}

.gp-label-sub {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    display: block;
    margin-top: 2px;
}

.gp-controls {
    display: flex;
    align-items: center;
    gap: 16px;
}

.gp-value {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: white;
    min-width: 28px;
    text-align: center;
}

.gp-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--color-gold);
    background: none;
    color: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, opacity 0.2s;
}

.gp-btn:hover:not(.gp-btn-disabled) {
    background: var(--color-gold);
    color: var(--color-dark-bg);
}

.gp-btn-disabled {
    opacity: 0.25;
    cursor: default;
}

@media (max-width: 768px) {
    .gp {
        width: calc(100vw - 32px);
        left: 16px !important;
        right: 16px;
    }
}

/* ========== Animations ========== */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s, transform 0.8s;
}

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

/* ========== Page Hero (dark header band, used by Blog index, Blog details, Room search) ========== */
.page-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 160px 24px 240px;
    text-align: center;
    background: linear-gradient(180deg, #14192F 0%, #14192F 100%);
    border-bottom: 1px solid #030408;
}

.page-hero-inner {
    max-width: 760px;
    margin: 0 auto 24px;
}

.page-hero-title {
    font-family: "Young Serif", serif;
    font-weight: 400;
    font-size: var(--text-h1);
    line-height: 1.1;
    letter-spacing: 0.02em;
    color: var(--color-text-white);
    margin: 16px 0 20px;
}

.page-hero-lead {
    font-size: var(--text-base);
    color: var(--color-text-white);
    line-height: 1.7;
    max-width: 620px;
    margin: 0 auto;
}

/* Inline search widget inside page-hero (e.g. on /pretraga-soba) */
.page-hero-search {
    margin: 36px auto 48px;
    width: 80%;
    max-width: 1400px;
}

.page-hero-search .hero-search {
    position: relative;
    inset: auto;
    transform: none;
    width: 100%;
    opacity: 1;
    animation: none;
}

.blog-list {
    max-width: 1860px;
    margin: -240px auto;
    padding: 80px 24px 240px;
}

.blog-featured {
    position: relative;
    display: block;
    overflow: hidden;
    min-height: clamp(440px, 60vh, 800px);
    margin-bottom: 80px;
    text-decoration: none;
    color: var(--color-text-white);
    border-radius: 2px;
    isolation: isolate;
    transition: transform 0.4s ease;
}

.blog-featured:hover {
    transform: translateY(-2px);
}

/* .blog-featured:hover {
    box-shadow: 0 30px 60px -30px rgba(28, 28, 26, 0.25);
    transform: translateY(-2px);
} */

.blog-featured-media {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    background: #2C3B2D;
}

.blog-featured-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0, 0, 1);
}

.blog-featured-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(20, 25, 47, 0.15) 0%,
            rgba(20, 25, 47, 0.45) 55%,
            rgba(20, 25, 47, 0.85) 100%);
    pointer-events: none;
}

.blog-featured:hover .blog-featured-media img {
    transform: scale(1.05);
}

.blog-featured-body {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    min-height: inherit;
    max-width: 720px;
    padding: 48px clamp(24px, 5vw, 64px);
    color: var(--color-text-white);
}

.blog-featured-body .blog-meta {
    margin-top: 24px;
    /* border-top-color: rgba(255, 255, 255, 0.25); */
    color: rgba(255, 255, 255, 0.85);
}

.blog-tag {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-gold);
    border: 1px solid var(--color-gold);
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 20px;
}

.blog-featured-title {
    font-family: "Young Serif", serif;
    font-weight: 400;
    font-size: var(--text-h1);
    line-height: 1.1;
    letter-spacing: 0.02em;
    color: var(--color-text-white);
    margin: 0 0 16px;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.3);
}

.blog-featured-excerpt {
    font-size: var(--text-base);
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.75;
    margin-bottom: 0;
    max-width: 620px;
}

.blog-featured .blog-tag {
    align-self: flex-start;
    color: #EED9A8;
    border-color: rgba(238, 217, 168, 0.7);
    background: rgba(20, 25, 47, 0.35);
    backdrop-filter: blur(4px);
}

.blog-featured:hover .blog-featured-media img {
    transform: scale(1.04);
}

.blog-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    /* padding-top: 20px; */
    /* border-top: 1px solid var(--color-border); */
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(480px, 1fr));
    gap: 56px 40px;
}

.blog-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    background: transparent;
    transition: transform 0.4s ease;
}

.blog-card:hover {
    transform: translateY(-4px);
}

.blog-card-media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 2;
    background: #EFEAE0;
    margin-bottom: 24px;
}

.blog-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25, 0, 0, 1);
}

.blog-card:hover .blog-card-media img {
    transform: scale(1.06);
}

.blog-card-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(28, 28, 26, 0.15));
    pointer-events: none;
}

.blog-card-date {
    display: block;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-gold-muted);
    margin-bottom: 10px;
}

.blog-card-title {
    font-family: "Young Serif", serif;
    font-weight: 400;
    font-size: var(--text-h2);
    line-height: 1.15;
    letter-spacing: 0.02em;
    color: var(--color-text);
    margin: 0 0 12px;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-card-title {
    color: var(--color-gold);
}

.blog-card-excerpt {
    font-size: var(--text-small);
    color: var(--color-text-muted);
    line-height: 1.7;
    margin: 0 0 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-top: auto;
}

.blog-read-more svg {
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-read-more svg,
.blog-featured:hover .blog-read-more svg {
    transform: translateX(6px);
}

@media (max-width: 900px) {
    .blog-featured {
        min-height: 420px;
        margin-bottom: 56px;
    }

    .blog-featured-body {
        padding: 32px 20px;
    }

    .blog-list {
        margin: -60px auto;
        padding: 56px 16px 80px;
    }

    .page-hero {
        padding: 120px 20px 48px;
    }

    .page-hero+section.room-search,
    .page-hero+section.blog-article-wrap {
        margin-top: 0;
        padding-top: 32px;
    }

    .blog-grid {
        gap: 48px 24px;
        grid-template-columns: auto;
    }
}

/* ========== Room Equipment section (custom — image + title + selected attrs) ========== */
.room-equipment {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(32px, 5vw, 96px);
    align-items: center;
    max-width: 1560px;
    margin: 0 auto;
    padding: 96px 32px;
}

.room-equipment-right .room-equipment-media {
    order: 2;
}

.room-equipment-right {
    background: var(--color-dark-bg);
    box-shadow: 0 0 0 100vmax var(--color-dark-bg);
    clip-path: inset(0 -100vmax);
    color: var(--color-text-white);
}

.room-equipment-right .section-label {
    color: var(--color-gold);
}

.room-equipment-right .room-equipment-title {
    color: var(--color-text-white);
}

.room-equipment-right .room-equipment-desc {
    color: rgba(255, 255, 255, 0.78);
}

.room-equipment-right .room-equipment-key {
    color: var(--color-text-white);
}

.room-equipment-right .room-equipment-value {
    color: rgba(255, 255, 255, 0.6);
}

.room-equipment-right .room-equipment-icon {
    color: var(--color-gold);
}

.room-equipment-media {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: #EFEAE0;
}

.room-equipment-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.room-equipment-content .section-label {
    margin-bottom: 14px;
}

.room-equipment-title {
    font-family: "Young Serif", serif;
    font-weight: 400;
    font-size: var(--text-h1);
    line-height: 1.05;
    letter-spacing: 0.01em;
    color: var(--color-text);
    margin: 0 0 24px;
}

.room-equipment-desc {
    font-size: var(--text-body);
    color: var(--color-text-muted);
    line-height: 1.75;
    margin-bottom: 32px;
    max-width: 560px;
}

.room-equipment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 32px;
    max-width: 560px;
}

.room-equipment-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.room-equipment-icon {
    width: 56px;
    height: 56px;
    object-fit: contain;
    color: var(--color-gold);
    flex-shrink: 0;
}

.room-equipment-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.room-equipment-key {
    font-size: var(--text-body);
    color: var(--color-text);
    font-weight: 500;
}

.room-equipment-value {
    font-size: var(--text-small);
    color: var(--color-text-muted);
}

@media (max-width: 900px) {
    .room-equipment {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 16px;
    }

    .room-equipment-right .room-equipment-media {
        order: 0;
    }

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

@media (max-width: 768px) {
    .room-equipment-icon {
        width: 48px;
        height: 48px;
    }

    .room-equipment-grid {
        gap: 12px;
    }

    .room-equipment-item {
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .room-equipment-icon {
        width: 40px;
        height: 40px;
    }
}

/* ========== Admin Bar (logged-in users on public site) ========== */
.admin-bar {
    position: fixed;
    bottom: 15px;
    right: 15px;
    z-index: 200;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 20px;
    background: rgba(28, 28, 26, 0.55);
    backdrop-filter: blur(14px) saturate(160%);
    -webkit-backdrop-filter: blur(14px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 5px;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    width: auto;
}

/* body:has(.admin-bar) .nav {
    top: 36px;
} */

.admin-bar-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    text-decoration: none;
    padding: 4px 6px;
    border-radius: 4px;
    transition: background 0.2s ease, color 0.2s ease;
}

.admin-bar-link:first-of-type {
    font-weight: 500;
}

.admin-bar-link:hover {
    color: var(--color-gold);
}

.admin-bar-close {
    margin-left: auto;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    padding: 4px;
    line-height: 0;
    transition: color 0.2s ease;
}

.admin-bar-close:hover {
    color: #fff;
}

.admin-bar.is-hidden {
    display: none;
}

body:has(.admin-bar.is-hidden) .nav {
    top: 0;
}

/* ====================================================================
   ============== RESPONSIVE OVERRIDES (≤1024 / ≤768 / ≤480) =========
   ==================================================================== */

@media (max-width: 1024px) {

    /* Sekcijski paddinzi koriste tokene */
    .section {
        padding: var(--pad-section-y) var(--pad-section-x);
        min-height: auto;
    }

    .section-surface,
    .section-dark {
        padding-left: var(--pad-section-x);
        padding-right: var(--pad-section-x);
    }

    .section-gallery {
        padding: 0 var(--pad-section-x) !important;
    }

    .nav {
        padding: 16px clamp(16px, 4vw, 32px);
    }
}

@media (max-width: 768px) {

    /* Ujednačeni section title-ovi na mobilu */
    .hero-heading,
    .page-hero-title,
    .section-twg-title,
    .section-cta-title,
    .about-heading,
    .showcase-title,
    .room-equipment-title,
    .blog-featured-title,
    .prefooter-title,
    .section-text h2,
    .section-text h1 {
        font-size: var(--text-h1);
    }

    /* Ujednačeni sub-titles (kartice / item paneli) */
    .showcase-card-title,
    .fp-panel-title,
    .blog-card-title {
        font-size: var(--text-h2);
    }

    /* Hero refinements */
    .hero {
        min-height: 100svh;
    }

    .hero-heading {
        margin-bottom: 8px;
    }

    .hero-script-label {
        margin: 8px 0;
    }

    .hero-desc {
        max-width: 540px;
    }

    /* Sakrij jezični picker u headeru — switch je već u menu overlayu */
    .nav-lang {
        display: none;
    }

    /* Smanjena rotacija script labelsa — manje vizualnih lomova u uskim retcima */
    .section-label,
    .section-hero-label,
    .section-cta-label {
        transform: rotate(-2deg);
    }

    /* Headinzi i razmaci ujednačeni */
    h1 {
        margin-bottom: 18px;
    }

    h2 {
        margin-bottom: 14px;
    }

    h3 {
        margin-bottom: 10px;
    }

    .section-lead,
    .section-twg-desc,
    .about-desc,
    .showcase-desc,
    .section-cta-desc,
    .room-equipment-desc {
        margin-bottom: 20px;
    }

    .section-cta-link {
        padding: 14px 24px;
    }

    /* Showcase */
    .showcase-card-img {
        aspect-ratio: 4/3;
    }

    .showcase-card-title {
        margin-bottom: 8px;
    }

    /* Menu overlay tighter */
    .menu-overlay-nav {
        gap: 16px;
    }

    .menu-overlay-close {
        top: 18px;
        left: 20px;
        font-size: 32px;
    }

    .menu-overlay-footer {
        padding: 24px 20px;
        font-size: var(--text-small);
    }

    /* Gallery: 16/9 je preuzak portrait, prebaci na 4/3 */
    .gallery-slider {
        aspect-ratio: 4/3;
        max-height: none;
        margin: 12px 0;
    }

    /* Fullscreen page grid: vertikalni snap, 1 panel = 1 viewport */
    .fullscreen-pages {
        height: 100svh;
        min-height: 100svh;
        overflow-y: scroll;
        scroll-snap-type: y mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }

    /* Sakrij shared cycling backgroundove i overlay — svaki panel ima svoju sliku */
    .fp-backgrounds,
    .fp-overlay {
        display: none;
    }

    .fp-panels {
        display: block;
        grid-template-columns: none;
        height: auto;
    }

    .fp-panel {
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        height: 100svh;
        min-height: 100svh;
        padding: 40px 24px 56px;
        background-image: var(--fp-panel-bg);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        border-top: none;
        border-left: none;
        color: #fff;
        overflow: hidden;
        scroll-snap-align: start;
        scroll-snap-stop: always;
    }

    .fp-panel::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.25) 55%, rgba(0, 0, 0, 0.1) 100%);
        pointer-events: none;
    }

    .fp-panel-label,
    .fp-panel-title,
    .fp-panel-desc {
        position: relative;
        z-index: 1;
    }

    .fp-panel-title {
        color: #fff;
    }

    .fp-panel-desc,
    .fp-panel.is-active .fp-panel-desc {
        max-height: none;
        opacity: 1;
        margin-top: 12px;
    }

    .fp-panel.is-active .fp-panel-title {
        margin-bottom: 0;
    }

    .fp-panel:hover {
        background-color: transparent;
    }
}

@media (max-width: 480px) {

    /* Najuži mobile */
    .section {
        padding: 16px 16px;
        min-height: auto;
    }

    .section-surface,
    .section-dark {
        padding-left: 16px;
        padding-right: 16px;
    }

    .section-gallery {
        padding: 0 16px 16px !important;
    }

    .nav {
        padding: 12px 16px;
    }

    .nav-logo-img {
        height: 36px;
    }

    .nav-book-btn {
        padding: 8px 14px;
    }

    /* Bez rotacije na najmanjim ekranima */
    .section-label,
    .section-hero-label,
    .section-cta-label {
        transform: none;
    }

    /* Hero search single column */
    .hero-search {
        grid-template-columns: 1fr;
        bottom: 22px;
        width: calc(100% - 40px);
    }

    .hero-search-field {
        padding: 10px 16px;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        min-height: 56px;
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 12px;
    }

    .hero-search-submit {
        padding: 8px 16px;
        grid-column: 1 / -1;
        min-height: 56px;
        height: 56px;
    }

    /* Hero text */
    .hero-content-bl {
        padding: 0 16px;
    }

    /* Showcase: full-width kartice */
    .showcase-card {
        flex: 0 0 calc(100% - 16px);
    }

    .showcase-header {
        padding: 16px 0px 16px;
        gap: 16px;
    }

    /* Menu overlay tightest */
    .menu-overlay-left {
        padding: 64px 24px 180px;
        width: 100%;
        justify-content: center;
    }

    .menu-overlay-nav {
        gap: 12px;
    }

    .menu-overlay-footer {
        position: absolute;
        bottom: 24px;
        left: 0;
        right: 0;
        padding: 24px;
        flex-direction: row;
        gap: 24px;
        text-align: left !important;
    }

    .menu-overlay-location {
        text-align: right !important;
    }

    .menu-overlay-contact,
    .menu-overlay-location {
        flex: 1;
    }

    /* Ujednačeni heading marginsi */
    h1 {
        margin-bottom: 14px;
    }

    h2 {
        margin-bottom: 10px;
    }

    h3 {
        margin-bottom: 8px;
    }

    /* Smanjeni section-twg gap */
    .section-twg {
        padding: 20px 0;
    }

    /* CTA button na full width */
    .section-cta-link {
        width: 100%;
        justify-content: center;
    }
}